:root {
  --bg: #ebe8e7;
  --bg-soft: #f2efee;
  --ink: #22201f;
  --muted: #6f6b68;
  --line: #d5cfcc;
  --line-strong: #beb7b3;
  --container: 1180px;
  --nav-fg: #8f8884;
  --nav-fg-strong: #2b2928;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Karla", "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.6;
}

a {
  color: #4a4745;
  text-decoration: none;
  border-bottom: 1px solid rgba(74, 71, 69, 0.35);
}

a:hover {
  color: #1d1c1b;
  border-bottom-color: currentColor;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: rgba(235, 232, 231, 0.82);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(191, 184, 179, 0.45);
}

.nav-wrap {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: 0.55rem 0;
}

.brand {
  justify-self: center;
  color: #2c2928;
  text-transform: uppercase;
  letter-spacing: 0.38em;
  font-size: 0.8rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
  border-bottom: 0;
}

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0.7rem;
  align-items: center;
}

.nav-left {
  justify-content: flex-start;
}

.nav-right {
  justify-content: flex-end;
}

.nav-links a {
  border-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.53rem;
  font-weight: 700;
  color: var(--nav-fg);
  padding: 0.2rem 0;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--nav-fg-strong);
}

.nav-links .cta-link {
  padding: 0.24rem 0.55rem;
  border-radius: 999px;
  background: #1f1d1c;
  color: #fff;
}

.nav-links .cta-link:hover,
.nav-links .cta-link.is-active {
  color: #fff;
  background: #000;
}

.site-main {
  padding-top: 48px;
  padding-bottom: 2rem;
}

.site-main > * {
  width: min(var(--container), calc(100% - 2rem));
  margin-inline: auto;
}

.site-main > .full-bleed {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.site-main > * + * {
  margin-top: 1.4rem;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.75rem;
  line-height: 1.25;
}

h1 {
  font-size: clamp(1.9rem, 6vw, 4rem);
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

h2 {
  font-size: clamp(1.2rem, 2.8vw, 2rem);
  letter-spacing: 0.05em;
}

h3 {
  font-family: "EB Garamond", Georgia, serif;
  font-size: 1.45rem;
  font-weight: 500;
  color: #3f3b39;
}

p {
  margin: 0 0 0.95rem;
  color: #3f3c3a;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.56rem;
  font-weight: 700;
  color: #b9b3af;
  margin: 0 0 0.65rem;
}

.page-hero {
  position: relative;
  min-height: 66vh;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--hero-overlay, linear-gradient(180deg, rgba(26, 24, 23, 0.45), rgba(26, 24, 23, 0.45)));
}

.page-hero .hero-inner {
  position: relative;
  z-index: 1;
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
  padding: 4.2rem 0;
}

.page-hero h1,
.page-hero h2,
.page-hero h3,
.page-hero p {
  color: #fff;
}

.page-hero p {
  max-width: 68ch;
  color: rgba(255, 255, 255, 0.9);
}

.hero-center .hero-inner {
  text-align: center;
  max-width: 820px;
}

.hero-center p {
  margin-left: auto;
  margin-right: auto;
}

.hero-left .hero-inner {
  max-width: none;
  text-align: left;
}

.hero-tint-light {
  --hero-overlay: linear-gradient(180deg, rgba(206, 178, 168, 0.72), rgba(191, 164, 154, 0.7));
}

.hero-tint-soft {
  --hero-overlay: linear-gradient(180deg, rgba(171, 149, 142, 0.52), rgba(171, 149, 142, 0.52));
}

.hero-tint-dark {
  --hero-overlay: linear-gradient(180deg, rgba(22, 20, 19, 0.55), rgba(22, 20, 19, 0.62));
}

.hero-actions,
.cta-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #23201f;
  border-radius: 999px;
  padding: 0.38rem 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.52rem;
  font-weight: 700;
  border-bottom: 1px solid #23201f;
  transition: opacity 0.2s;
}

.btn:hover {
  opacity: 0.86;
}

.btn-primary {
  background: #1f1d1c;
  color: #fff;
  border-color: #1f1d1c;
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.8);
}

.btn-secondary.light {
  color: #262322;
  border-color: #262322;
}

.page-wrap {
  padding-top: 1.8rem;
}

.split-feature {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 2.2rem;
  align-items: start;
}

.split-feature img {
  width: 100%;
  height: auto;
  display: block;
}

.plain-section {
  padding: 0.4rem 0;
}

.text-small {
  font-size: 0.92rem;
  color: #66615e;
}

.quote-stack {
  padding: 1rem 0 1.6rem;
  text-align: center;
}

.quote-stack p {
  font-family: "EB Garamond", Georgia, serif;
  font-size: 1.25rem;
  line-height: 1.8;
  color: #6d6764;
  max-width: 58ch;
  margin: 0 auto 1.6rem;
}

.center-intro {
  text-align: center;
  padding: 0.6rem 0 0.3rem;
}

.center-intro h2 {
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  text-transform: none;
  color: #6e6966;
}

.center-intro p {
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8d8681;
}

.thumb-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.45rem;
}

.thumb-row img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  opacity: 0.9;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  margin-bottom: 0.8rem;
}

.hero img {
  width: 100%;
  height: auto;
  min-height: 0;
  border: 0;
  border-radius: 0;
}

.card {
  background: transparent;
  border: 0;
  padding: 0;
  box-shadow: none;
  border-radius: 0;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.8rem;
  margin-bottom: 0.4rem;
}

.grid-2 .card h2 {
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.45rem;
}

.list-clean {
  list-style: none;
  margin: 0;
  padding: 0;
}

.list-clean li {
  padding: 0.28rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
  color: #3d3937;
}

.list-clean li:last-child {
  border-bottom: 0;
}

.section-rule {
  border-top: 1px solid var(--line);
  padding-top: 1rem;
  margin-top: 1rem;
}

.quote {
  border: 0;
  padding: 0;
  font-family: "EB Garamond", Georgia, serif;
  font-size: 1.2rem;
  color: #6c6663;
  line-height: 1.7;
  max-width: 56ch;
}

.image-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
  margin-top: 0.7rem;
}

.image-strip img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 0;
  border-radius: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.5rem;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.services-canvas {
  position: relative;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  padding: 4.5rem 0 4rem;
}

.services-canvas::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(201, 171, 161, 0.78), rgba(190, 160, 151, 0.8));
}

.services-inner {
  position: relative;
  z-index: 1;
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
  color: #fff7f2;
}

.services-inner h1,
.services-inner h2,
.services-inner p,
.services-inner li {
  color: #fff7f2;
}

.services-inner h1 {
  text-align: center;
  margin-bottom: 0.5rem;
}

.services-lede {
  text-align: center;
  text-transform: none;
  letter-spacing: 0.05em;
  font-size: 0.95rem;
  max-width: 68ch;
  margin: 0 auto 1rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem 2.2rem;
  margin-top: 1.3rem;
}

.services-grid h2 {
  font-size: 1.2rem;
  margin-bottom: 0.35rem;
}

.services-grid .list-clean li {
  border-bottom-color: rgba(255, 255, 255, 0.26);
  color: #fff7f2;
  font-size: 0.85rem;
}

.services-note {
  margin-top: 1rem;
  max-width: 64ch;
  font-size: 0.88rem;
  color: #f1e7e2;
}

.stylists-title {
  font-size: 2.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.stylists-sub {
  font-size: 1.05rem;
  color: #8c8582;
  margin-bottom: 0.8rem;
  text-transform: none;
  letter-spacing: 0.03em;
}

.stylists-copy p {
  font-size: 0.9rem;
  color: #514d4b;
}

.stylists-copy .cta-bar .btn-secondary {
  color: #262322;
  border-color: #262322;
  background: transparent;
}

.location-canvas {
  position: relative;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  padding: 4rem 0 3rem;
}

.location-canvas::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(199, 171, 163, 0.74), rgba(194, 166, 158, 0.74));
}

.location-inner {
  position: relative;
  z-index: 1;
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.location-inner h1 {
  color: #fff7f2;
  text-align: center;
  margin-bottom: 1.6rem;
}

.location-lead {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 1.2rem;
  align-items: start;
  max-width: 780px;
  margin: 0 auto 1.5rem;
}

.location-panel {
  background: rgba(255, 252, 250, 0.88);
  padding: 1rem;
}

.location-panel p {
  margin-bottom: 0.5rem;
  color: #3f3b39;
}

.map-frame iframe {
  width: 100%;
  height: 220px;
  border: 0;
  display: block;
}

.location-note {
  text-align: center;
  color: #3f3937;
  font-size: 0.9rem;
  margin: 1rem 0 0.6rem;
}

.photo-mosaic {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.45rem;
}

.photo-mosaic img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.site-footer {
  margin-top: 2rem;
  border-top: 1px solid var(--line);
  background: var(--bg);
  padding: 1.8rem 0 2.2rem;
}

.site-footer a {
  color: #6f6864;
  border-bottom: 0;
}

.site-footer a:hover {
  color: #2a2826;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 3.5rem;
  justify-content: flex-start;
}

.footer-grid h4 {
  margin: 0 0 0.4rem;
  font-size: 0.56rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #8c8582;
}

.footer-grid p {
  margin: 0 0 0.25rem;
  font-size: 0.55rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8c8582;
  line-height: 1.7;
}

.footer-meta {
  text-align: center;
  margin-top: 1.3rem;
}

.footer-meta p {
  margin: 0.12rem 0;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8c8582;
}

.footer-meta a {
  color: #8c8582;
}

@media (max-width: 980px) {
  .nav-wrap {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .brand {
    order: 1;
  }

  .nav-left,
  .nav-right {
    justify-content: center;
    flex-wrap: wrap;
  }

  .site-main {
    padding-top: 84px;
  }

  .split-feature,
  .hero,
  .grid-2,
  .services-grid,
  .location-lead {
    grid-template-columns: 1fr;
  }

  .thumb-row,
  .photo-mosaic {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

@media (max-width: 640px) {
  .site-main {
    padding-top: 96px;
  }

  .page-hero {
    min-height: 52vh;
  }

  .page-hero .hero-inner {
    padding: 2.8rem 0;
  }

  .page-hero h1 {
    font-size: clamp(1.6rem, 11vw, 2.8rem);
  }

  .services-canvas {
    padding: 3.2rem 0;
  }

  .thumb-row,
  .photo-mosaic,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nav-links a {
    font-size: 0.5rem;
  }
}
