:root {
  --ink: #1e1b18;
  --muted: #6d6258;
  --paper: #fbf8f1;
  --cream: #f3eee3;
  --rose: #b86b6c;
  --olive: #667552;
  --clay: #9f684c;
  --charcoal: #272521;
  --line: rgba(30, 27, 24, 0.14);
  --shadow: 0 18px 50px rgba(36, 30, 23, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body.nav-open {
  overflow: hidden;
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: #fff;
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open,
.site-header.solid {
  background: rgba(251, 248, 241, 0.96);
  color: var(--ink);
  box-shadow: 0 10px 28px rgba(25, 22, 18, 0.1);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-logo {
  width: min(286px, 46vw);
  height: auto;
  max-height: 64px;
  object-fit: contain;
}

.brand-logo-dark,
.site-header.is-scrolled .brand-logo-light,
.site-header.is-open .brand-logo-light,
.site-header.solid .brand-logo-light {
  display: none;
}

.site-header.is-scrolled .brand-logo-dark,
.site-header.is-open .brand-logo-dark,
.site-header.solid .brand-logo-dark {
  display: block;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 26px);
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav a {
  white-space: nowrap;
}

.nav-item {
  position: relative;
}

.has-menu::before {
  content: "";
  position: absolute;
  top: 100%;
  left: -18px;
  right: -18px;
  height: 18px;
}

.has-menu > a::after {
  content: "";
  display: inline-block;
  width: 0.42em;
  height: 0.42em;
  margin-left: 0.45em;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-0.18em) rotate(45deg);
}

.nav-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  z-index: 30;
  display: grid;
  min-width: 190px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(251, 248, 241, 0.98);
  color: var(--ink);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -6px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-menu a {
  padding: 10px 12px;
  border-radius: 6px;
}

.nav-menu a:hover,
.nav-menu a:focus {
  background: var(--cream);
}

.has-menu:hover .nav-menu,
.has-menu:focus-within .nav-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-book,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 20px;
  font-weight: 800;
}

.nav-book {
  background: #fff;
  color: var(--ink);
}

.site-header.is-scrolled .nav-book,
.site-header.is-open .nav-book,
.site-header.solid .nav-book {
  background: var(--ink);
  color: #fff;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: transparent;
  color: inherit;
  padding: 11px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: center;
  padding: 120px clamp(18px, 5vw, 72px) 54px;
  overflow: hidden;
  color: #fff;
}

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

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(20, 18, 15, 0.82), rgba(20, 18, 15, 0.42) 45%, rgba(20, 18, 15, 0.08)),
    linear-gradient(0deg, rgba(20, 18, 15, 0.42), rgba(20, 18, 15, 0) 36%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding-top: 24px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--rose);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffd5c6;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.02;
}

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

h1 {
  max-width: 13ch;
  font-size: clamp(3.5rem, 9vw, 7rem);
}

h2 {
  font-size: clamp(2.2rem, 5.7vw, 5rem);
}

h3 {
  font-size: clamp(1.15rem, 2vw, 1.45rem);
}

.hero-copy {
  max-width: 560px;
  margin: 24px 0 0;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero-actions,
.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button.primary {
  background: var(--rose);
  color: #fff;
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.76);
  color: #fff;
}

.button.secondary.dark {
  border-color: var(--line);
  color: var(--ink);
}

.hero-panel {
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  bottom: 34px;
  z-index: 2;
  width: min(330px, calc(100% - 36px));
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-panel span,
.hero-panel strong,
.hero-panel a {
  display: block;
}

.hero-panel span {
  color: #ffd5c6;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-panel strong {
  margin: 6px 0;
  font-size: 1.35rem;
}

.section,
.service-band,
.why-band {
  padding: clamp(64px, 9vw, 118px) clamp(18px, 5vw, 72px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.7fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: end;
}

.intro p:last-child,
.visit-details p,
.service-card p,
.why-list p,
.stylist-card p {
  color: var(--muted);
}

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

.service-band {
  background: var(--charcoal);
  color: #fff;
}

.section-heading {
  max-width: 860px;
  margin-bottom: 34px;
}

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

.stylist-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-card,
.stylist-card,
.hours-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
}

.service-card {
  min-height: 260px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.service-card.featured {
  background: var(--rose);
}

.service-card span {
  color: #efd0c1;
  font-weight: 900;
}

.service-card p {
  color: rgba(255, 255, 255, 0.72);
  margin: 18px 0 0;
}

.service-card.featured p {
  color: rgba(255, 255, 255, 0.86);
}

.service-link {
  display: inline-flex;
  margin-top: 22px;
  color: #fff;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 5px;
}

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

.service-actions .service-link {
  margin-top: 22px;
}

.stylists {
  background: var(--cream);
}

.stylist-card {
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) minmax(0, 1fr);
  overflow: hidden;
  min-height: 0;
  padding: 0;
}

.stylist-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: center top;
  border-right: 1px solid var(--line);
  background: #fff;
}

.stylist-card-body {
  display: flex;
  flex-direction: column;
  padding: 28px;
}

.stylist-card h3 {
  margin-top: 0;
}

.stylist-card p {
  margin: 14px 0 0;
}

.stylist-role {
  order: -1;
  margin: 0 0 10px;
  color: var(--rose);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.stylist-details {
  display: grid;
  gap: 8px;
  margin: auto 0 0;
  padding: 22px 0 0;
  color: var(--muted);
  font-weight: 800;
  list-style: none;
}

.stylist-details li {
  padding-top: 8px;
  border-top: 1px solid var(--line);
}

.why-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 90px);
  background: #ffffff;
}

.why-list {
  display: grid;
  gap: 14px;
}

.why-list p {
  margin: 0;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.why-list strong {
  display: block;
  color: var(--ink);
  font-size: 1.08rem;
}

.visit {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: clamp(28px, 6vw, 88px);
  align-items: start;
}

.visit-details p {
  max-width: 650px;
  font-size: 1.08rem;
}

.hours-panel {
  padding: 28px;
  background: #fff;
  box-shadow: var(--shadow);
}

.hours-panel h3 {
  margin-bottom: 20px;
}

.hours-panel dl {
  margin: 0;
}

.hours-panel div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.hours-panel dt {
  color: var(--muted);
}

.hours-panel dd {
  margin: 0;
  font-weight: 800;
  text-align: right;
}

.hours-panel a {
  display: inline-flex;
  margin-top: 22px;
  color: var(--rose);
  font-weight: 900;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 72px);
  background: var(--ink);
  color: #fff;
}

.site-footer img {
  width: 150px;
  height: auto;
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-weight: 800;
}

.pricing-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: clamp(28px, 6vw, 88px);
  align-items: end;
  padding: 150px clamp(18px, 5vw, 72px) clamp(64px, 9vw, 110px);
  background: var(--cream);
}

.pricing-hero h1 {
  max-width: 12ch;
  color: var(--ink);
}

.pricing-hero p {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
}

.color-hero h1 {
  max-width: 13ch;
}

.color-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: end;
}

.color-intro p:last-child {
  max-width: 660px;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.color-showcase {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr 1.15fr;
  gap: 12px;
  padding: 0 clamp(18px, 5vw, 72px) clamp(24px, 4vw, 42px);
}

.color-showcase figure {
  position: relative;
  min-height: clamp(220px, 26vw, 380px);
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--charcoal);
}

.color-showcase figure:nth-child(2),
.color-showcase figure:nth-child(3) {
  transform: translateY(28px);
}

.color-showcase img,
.image-card img {
  width: 100%;
  object-fit: cover;
}

.color-showcase img {
  height: 100%;
}

.color-showcase figcaption {
  position: absolute;
  z-index: 1;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding-top: 42px;
  color: #fff;
  font-weight: 900;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.5);
}

.color-showcase figure::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 54%;
  background: linear-gradient(0deg, rgba(20, 18, 15, 0.76), rgba(20, 18, 15, 0));
}

.feature-split {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  padding: 0 clamp(18px, 5vw, 72px) clamp(64px, 8vw, 96px);
}

.feature-split img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.feature-split p:last-child {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.08rem;
}

.price-note,
.price-card,
.answer-card,
.faq-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.price-note {
  padding: 28px;
  box-shadow: var(--shadow);
}

.price-note span {
  display: block;
  color: var(--rose);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.price-note strong {
  display: block;
  margin: 10px 0;
  font-size: 1.35rem;
  line-height: 1.2;
}

.price-note p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.pricing-section,
.faq-section,
.pricing-cta {
  padding: clamp(64px, 9vw, 118px) clamp(18px, 5vw, 72px);
}

.answer-section {
  padding-bottom: 0;
}

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

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

.answer-card {
  padding: 24px;
}

.color-service-card {
  min-height: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(36, 30, 23, 0.06);
}

.color-service-card.image-card {
  overflow: hidden;
  padding: 0 0 24px;
}

.image-card img {
  height: 220px;
  border-bottom: 1px solid var(--line);
}

.image-card h3,
.image-card p,
.image-card ul {
  margin-inline: 24px;
}

.image-card h3 {
  margin-top: 24px;
}

.answer-card h3,
.color-service-card h3 {
  font-size: 1.15rem;
}

.answer-card p,
.color-service-card p {
  margin: 14px 0 0;
  color: var(--muted);
}

.color-service-card ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.price-menu {
  align-items: start;
  gap: 12px;
}

.price-column {
  display: grid;
  gap: 12px;
}

.price-card {
  padding: 24px 26px;
}

.price-card.wide {
  grid-column: 1 / -1;
}

.price-card p,
.faq-grid p,
.pricing-band p,
.pricing-cta p {
  color: var(--muted);
}

.price-list,
.factor-list {
  list-style: none;
  padding: 0;
}

.price-list {
  margin: 18px 0 0;
}

.price-list li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

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

.price-list strong {
  text-align: right;
}

.pricing-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 90px);
  padding: clamp(64px, 9vw, 118px) clamp(18px, 5vw, 72px);
  background: var(--charcoal);
  color: #fff;
}

.pricing-band .eyebrow {
  color: #ffd5c6;
}

.pricing-band p {
  color: rgba(255, 255, 255, 0.72);
}

.factor-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.factor-list li {
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  font-weight: 800;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.faq-grid article {
  padding: 28px;
}

.pricing-cta {
  background: var(--cream);
}

.pricing-cta p {
  max-width: 720px;
  font-size: 1.08rem;
}

@media (max-width: 900px) {
  .site-nav {
    position: fixed;
    inset: 80px 16px auto;
    display: grid;
    gap: 4px;
    padding: 16px;
    border-radius: 8px;
    background: var(--paper);
    color: var(--ink);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 12px;
  }

  .nav-item {
    display: grid;
  }

  .has-menu > a::after {
    display: none;
  }

  .has-menu::before {
    display: none;
  }

  .nav-menu {
    position: static;
    min-width: 0;
    margin: 0 0 6px 12px;
    padding: 0 0 0 10px;
    border: 0;
    border-left: 1px solid var(--line);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-menu a {
    padding: 8px 12px;
    color: var(--muted);
  }

  .nav-book {
    background: var(--ink);
    color: #fff;
  }

  .nav-toggle {
    display: block;
  }

  .intro,
  .color-intro,
  .why-band,
  .visit,
  .pricing-hero,
  .pricing-band,
  .feature-split {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .pricing-grid,
  .answer-grid,
  .color-service-grid,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stylist-grid {
    grid-template-columns: 1fr;
  }

  .stylist-card {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .stylist-card img {
    width: min(240px, 72vw);
    height: auto;
    min-height: 0;
    aspect-ratio: 1 / 1;
    margin: 0 auto;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 12px 26px rgba(36, 30, 23, 0.1);
  }

  .stylist-card-body {
    padding: 20px 4px 4px;
  }

  .stylist-role,
  .stylist-card h3 {
    text-align: center;
  }

  .stylist-card h3 {
    font-size: 1.35rem;
  }

  .stylist-card p {
    margin-top: 12px;
  }

  .stylist-details {
    margin-top: 18px;
    padding-top: 8px;
  }

  .color-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .color-showcase figure:nth-child(2),
  .color-showcase figure:nth-child(3) {
    transform: none;
  }
}

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

  .brand-logo {
    width: min(210px, 54vw);
    max-height: 52px;
  }

  .hero {
    min-height: 96svh;
    padding: 104px 18px 190px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(20, 18, 15, 0.78), rgba(20, 18, 15, 0.3)),
      linear-gradient(0deg, rgba(20, 18, 15, 0.62), rgba(20, 18, 15, 0) 55%);
  }

  h1 {
    font-size: clamp(3.3rem, 17vw, 5rem);
  }

  .hero-panel {
    left: 18px;
    right: 18px;
    bottom: 22px;
  }

  .service-grid,
  .stylist-grid,
  .pricing-grid,
  .answer-grid,
  .color-service-grid,
  .faq-grid,
  .factor-list {
    grid-template-columns: 1fr;
  }

  .stylist-card img {
    width: min(220px, 70vw);
  }

  .color-showcase {
    grid-template-columns: 1fr;
    padding-bottom: 0;
  }

  .color-showcase figure {
    min-height: 260px;
  }

  .price-card {
    padding: 22px;
  }

  .pricing-hero {
    padding-top: 120px;
  }

  .price-list li {
    display: block;
  }

  .price-list strong {
    display: block;
    margin-top: 4px;
    text-align: left;
  }

  .service-card {
    min-height: 220px;
  }

  .hours-panel div,
  .site-footer {
    display: block;
  }

  .hours-panel dd {
    text-align: left;
    margin-top: 4px;
  }

  .site-footer div {
    margin-top: 12px;
  }
}
