:root {
  color-scheme: light;
  --ink: #20201d;
  --muted: #67645e;
  --paper: #f7f3ed;
  --porcelain: #fffdf8;
  --juniper: #314a3d;
  --moss: #6f7d5f;
  --clay: #a86f55;
  --charcoal: #141514;
  --line: rgba(32, 32, 29, 0.14);
  --shadow: 0 24px 70px rgba(20, 21, 20, 0.16);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
}

img,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.icon-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.top-strip {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 11;
  display: flex;
  justify-content: center;
  gap: 22px;
  padding: 9px 18px;
  color: var(--porcelain);
  background: var(--charcoal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.92rem;
  font-style: italic;
  font-weight: 500;
  text-align: center;
}

.top-strip a {
  font-style: normal;
  font-weight: 700;
}

.site-header {
  position: fixed;
  top: 34px;
  left: 0;
  right: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--porcelain);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(255, 253, 248, 0.92);
  box-shadow: 0 8px 34px rgba(20, 21, 20, 0.08);
  backdrop-filter: blur(18px);
}

.brand,
.nav,
.header-statement,
.site-footer {
  display: flex;
  align-items: center;
}

.brand {
  position: relative;
  width: 168px;
  height: 52px;
}

.brand-logo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  transition: opacity 180ms ease;
}

.brand-logo-dark {
  opacity: 0;
}

.site-header.is-scrolled .brand-logo-light {
  opacity: 0;
}

.site-header.is-scrolled .brand-logo-dark {
  opacity: 1;
}

.nav {
  gap: clamp(16px, 3vw, 34px);
  font-size: 0.9rem;
}

.header-statement {
  justify-self: end;
  padding: 13px 18px;
  border: 1px solid rgba(255, 253, 248, 0.3);
  border-radius: 8px;
  background: rgba(39, 43, 34, 0.68);
  box-shadow: 0 16px 44px rgba(20, 21, 20, 0.18);
  backdrop-filter: blur(12px);
}

.site-header.is-scrolled .header-statement {
  border-color: rgba(39, 43, 34, 0.18);
  background: rgba(255, 253, 248, 0.82);
  box-shadow: 0 10px 28px rgba(20, 21, 20, 0.1);
}

.header-statement a {
  color: inherit;
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  justify-items: start;
  padding: 170px clamp(20px, 6vw, 80px) 64px;
  overflow: hidden;
  color: var(--porcelain);
  background: var(--charcoal);
}

.hero-video,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(20, 21, 20, 0.74), rgba(20, 21, 20, 0.34) 52%, rgba(20, 21, 20, 0.22)),
    linear-gradient(0deg, rgba(20, 21, 20, 0.7), rgba(20, 21, 20, 0.08) 42%);
}

.hero-card {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--clay);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f0c8ad;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: 4.8rem;
  line-height: 0.88;
}

h2 {
  margin-bottom: 0;
  font-size: 4.6rem;
  line-height: 0.98;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.15rem;
}

p {
  color: var(--muted);
  line-height: 1.72;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
}

.button.primary {
  color: var(--porcelain);
  background: var(--juniper);
}

.button.secondary {
  color: var(--porcelain);
  border-color: rgba(255, 253, 248, 0.58);
}

.hero-card {
  position: absolute;
  right: clamp(20px, 5vw, 70px);
  bottom: 54px;
  display: grid;
  gap: 5px;
  min-width: 250px;
  padding: 22px;
  border: 1px solid rgba(255, 253, 248, 0.24);
  border-radius: 8px;
  color: rgba(255, 253, 248, 0.82);
  background: rgba(20, 21, 20, 0.42);
  backdrop-filter: blur(14px);
}

.hero-card strong {
  color: var(--porcelain);
  font-size: 1.1rem;
}

.section {
  padding: clamp(70px, 10vw, 132px) clamp(20px, 6vw, 80px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(300px, 0.8fr);
  gap: clamp(32px, 8vw, 110px);
  align-items: start;
  background: var(--porcelain);
}

.intro p:last-child {
  margin: 48px 0 0;
  font-size: 1.08rem;
}

.mission-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(300px, 1fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: center;
  padding: 0 clamp(20px, 6vw, 80px) clamp(48px, 8vw, 92px);
  background: var(--porcelain);
}

.mission-media {
  height: clamp(320px, 38vw, 580px);
  overflow: hidden;
  border-radius: 8px;
  background: var(--charcoal);
  box-shadow: var(--shadow);
}

.mission-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mission-copy {
  max-width: 640px;
}

.mission-copy h2 {
  margin-bottom: 22px;
}

.mission-copy p {
  margin-bottom: 18px;
}

.section-heading {
  max-width: 920px;
  margin-bottom: clamp(34px, 6vw, 70px);
}

.service-heading {
  max-width: 780px;
}

.service-heading p:not(.eyebrow) {
  max-width: 620px;
  margin: 18px 0 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-grid article {
  min-height: 290px;
  padding: clamp(22px, 3vw, 34px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.5);
}

.service-grid span {
  display: block;
  margin-bottom: 52px;
  color: var(--moss);
  font-size: 0.82rem;
  font-weight: 800;
}

.service-grid p {
  margin-bottom: 0;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.menu-grid article {
  min-height: 260px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.5);
}

.menu-card {
  display: grid;
  align-content: start;
  width: 100%;
  min-height: 260px;
  padding: clamp(24px, 3vw, 38px);
  border: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.menu-card:hover,
.menu-card:focus-visible {
  background: rgba(112, 122, 85, 0.12);
}

.menu-card:focus-visible {
  outline: 2px solid var(--juniper);
  outline-offset: -2px;
}

.menu-grid h3 {
  text-transform: uppercase;
}

.menu-grid p {
  margin-bottom: 0;
}

.service-dialog {
  width: min(92vw, 680px);
  padding: 0;
  border: 0;
  border-radius: 8px;
  color: var(--ink);
  background: transparent;
  box-shadow: var(--shadow);
}

.service-dialog::backdrop {
  background: rgba(20, 21, 20, 0.58);
  backdrop-filter: blur(4px);
}

.service-dialog-panel {
  position: relative;
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--porcelain);
}

.service-dialog-close {
  position: absolute;
  top: 16px;
  right: 16px;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--juniper);
  background: transparent;
  font-weight: 800;
  cursor: pointer;
}

.service-dialog h2 {
  max-width: 520px;
  margin-bottom: 10px;
  font-size: 3rem;
}

.service-dialog-service {
  color: var(--muted);
  font-weight: 800;
}

.service-dialog-heading,
.service-professional-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
}

.service-dialog-heading {
  margin-top: 28px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
  color: var(--moss);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.service-professional-list {
  display: grid;
}

.service-professional-row {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.service-professional-row strong {
  font-size: 1.05rem;
}

.service-phone {
  color: var(--juniper);
  font-weight: 800;
}

.team-grid a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--juniper);
  font-weight: 800;
  border-bottom: 1px solid currentColor;
}

.split {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(300px, 1fr);
  gap: clamp(32px, 7vw, 88px);
  align-items: center;
  background: #e8e5dc;
}

.split-media img,
.team-panel img {
  width: 100%;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.split-media img {
  aspect-ratio: 4 / 5;
}

.split-copy p {
  max-width: 620px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  padding-left: 22px;
  position: relative;
  color: var(--ink);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--juniper);
}

.policies {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1.2fr);
  gap: clamp(32px, 7vw, 90px);
  color: var(--porcelain);
  background: var(--charcoal);
}

.policies p {
  color: rgba(255, 253, 248, 0.72);
}

.policy-grid {
  display: grid;
  gap: 16px;
}

.policy-grid article {
  padding: 28px;
  border: 1px solid rgba(255, 253, 248, 0.18);
  border-radius: 8px;
}

.team {
  background: var(--porcelain);
}

.team-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.86fr) minmax(300px, 0.72fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
}

.team-panel img {
  aspect-ratio: 16 / 10;
}

.team-panel div {
  padding: clamp(18px, 4vw, 44px) 0;
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--juniper);
  font-weight: 800;
  border-bottom: 1px solid currentColor;
}

.team-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.team-grid article {
  display: flex;
  flex-direction: column;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(247, 243, 237, 0.62);
}

.team-grid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.team-grid img.portrait-lower {
  object-position: center top;
}

.team-grid h3 {
  margin: 18px 0 8px;
}

.team-grid p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.team-grid dl {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
}

.team-grid dt {
  color: var(--juniper);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.team-grid dd {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.contact-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  padding-top: 16px;
}

.contact-list a,
.contact-list span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
}

.contact-list span {
  color: var(--muted);
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.social-links a {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-top: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--juniper);
}

.social-links svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.salon-socials {
  margin-top: 18px;
}

.consultation {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(320px, 0.82fr);
  align-items: center;
  gap: clamp(28px, 7vw, 84px);
  padding: clamp(56px, 8vw, 96px) clamp(20px, 6vw, 80px);
  color: var(--porcelain);
  background: var(--juniper);
}

.consultation img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.consultation p {
  color: rgba(255, 253, 248, 0.76);
}

.consultation .button.primary {
  color: var(--juniper);
  background: var(--porcelain);
}

.booking {
  display: grid;
  grid-template-columns: minmax(280px, 760px) auto;
  gap: 26px;
  align-items: center;
  padding: clamp(46px, 8vw, 80px) clamp(20px, 6vw, 80px);
  color: var(--porcelain);
  background: var(--juniper);
}

.booking .eyebrow,
.booking p {
  color: #d8dfc8;
}

.booking .button.primary {
  color: var(--juniper);
  background: var(--porcelain);
}

.visit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.visit-grid article {
  min-height: 220px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.58);
}

.visit-grid p {
  margin-bottom: 0;
}

.site-footer {
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(20px, 6vw, 80px);
  color: rgba(255, 253, 248, 0.76);
  background: var(--charcoal);
  font-size: 0.9rem;
}

.footer-logo {
  width: 180px;
  height: 54px;
  object-fit: contain;
  object-position: left center;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-links svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  h1 {
    font-size: 4.6rem;
  }

  h2 {
    font-size: 3.4rem;
  }

  .nav {
    display: none;
  }

  .intro,
  .mission-band,
  .split,
  .service-heading,
  .team-panel,
  .booking,
  .policies,
  .consultation {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .menu-grid,
  .team-grid,
  .visit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-card {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 42px;
    max-width: 330px;
  }

  .mission-band {
    padding-top: 0;
  }
}

@media (max-width: 640px) {
  .site-header {
    top: 52px;
    padding: 14px 16px;
  }

  .top-strip {
    display: grid;
    gap: 4px;
    padding: 8px 12px;
    font-size: 0.68rem;
  }

  .brand {
    width: 126px;
    height: 42px;
  }

  .header-statement {
    padding: 12px 13px;
  }

  .hero {
    min-height: 94vh;
    padding: 148px 18px 36px;
  }

  h1 {
    font-size: 3.3rem;
  }

  h2 {
    font-size: 2.75rem;
  }

  .button {
    width: 100%;
  }

  .section {
    padding: 64px 18px;
  }

  .mission-band {
    padding-right: 18px;
    padding-left: 18px;
  }

  .mission-media {
    height: 360px;
  }

  .intro p:last-child {
    margin-top: 16px;
  }

  .service-grid,
  .menu-grid,
  .team-grid,
  .visit-grid {
    grid-template-columns: 1fr;
  }

  .service-grid article {
    min-height: auto;
  }

  .service-grid span {
    margin-bottom: 28px;
  }

  .site-footer {
    display: grid;
  }
}
