:root {
  color-scheme: light;
  --ink: #211d1a;
  --muted: #6f665f;
  --paper: #faf7f1;
  --ivory: #fffdf8;
  --champagne: #d8c3a4;
  --sage: #748574;
  --clay: #9a6555;
  --plum: #3b2630;
  --charcoal: #171614;
  --line: rgba(33, 29, 26, 0.14);
  --shadow: 0 22px 70px rgba(36, 28, 22, 0.16);
  --radius: 8px;
  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);
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 16px clamp(18px, 4vw, 56px);
  color: var(--ivory);
  transition:
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(250, 247, 241, 0.92);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(18px);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
}

.brand-symbol {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
}

.brand-mark strong,
.brand-mark small {
  display: block;
  line-height: 1.05;
}

.brand-mark strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  font-weight: 500;
}

.brand-mark small {
  margin-top: 4px;
  color: currentColor;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.74;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 3vw, 34px);
  color: currentColor;
  font-size: 14px;
}

.site-nav a {
  opacity: 0.82;
}

.site-nav a:hover {
  opacity: 1;
}

.nav-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  border-radius: 999px;
  font-weight: 700;
}

.nav-action {
  padding: 0 18px;
  border: 1px solid currentColor;
  font-size: 13px;
}

.nav-phone span {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.72;
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 92svh;
  padding: 132px clamp(22px, 6vw, 82px) 82px;
  overflow: hidden;
  color: var(--ivory);
}

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

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

.hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      112deg,
      transparent 0 32%,
      rgba(255, 245, 220, 0.03) 41%,
      rgba(255, 235, 190, 0.16) 48%,
      rgba(255, 245, 220, 0.04) 56%,
      transparent 66% 100%
    );
  content: "";
  mix-blend-mode: screen;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-38%);
  animation: heroLightSweep 9s ease-in-out infinite;
}

.twinkle-layer {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.twinkle {
  position: absolute;
  width: clamp(12px, 1.3vw, 20px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 250, 220, 0.98) 0 8%, rgba(255, 226, 157, 0.56) 20%, rgba(255, 226, 157, 0) 70%);
  filter: blur(0.2px);
  mix-blend-mode: screen;
  opacity: 0.22;
  transform: translate(-50%, -50%) scale(0.7);
  animation: twinkleGlow 3.5s ease-in-out infinite;
}

.twinkle::before,
.twinkle::after {
  position: absolute;
  inset: 22%;
  content: "";
  opacity: 0;
  transform: scale(0.5) rotate(45deg);
  animation: twinkleSpark 4.8s ease-in-out infinite;
}

.twinkle::before {
  background:
    linear-gradient(90deg, transparent 0 42%, rgba(255, 252, 226, 0.95) 48% 52%, transparent 58% 100%),
    linear-gradient(0deg, transparent 0 42%, rgba(255, 252, 226, 0.95) 48% 52%, transparent 58% 100%);
  filter: drop-shadow(0 0 6px rgba(255, 232, 166, 0.78));
}

.twinkle::after {
  inset: 43%;
  border-radius: 50%;
  background: rgba(255, 252, 226, 0.95);
  box-shadow:
    0 0 8px rgba(255, 236, 180, 0.58),
    0 0 18px rgba(255, 216, 141, 0.32);
}

.twinkle-one {
  left: 58.6%;
  top: 18.8%;
  animation-delay: 0.1s;
}

.twinkle-two {
  left: 61.7%;
  top: 16.9%;
  animation-delay: 1.1s;
}

.twinkle-three {
  left: 75.7%;
  top: 15.5%;
  animation-delay: 2.1s;
}

.hero-scrim {
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(18, 15, 13, 0.78), rgba(18, 15, 13, 0.42) 38%, rgba(18, 15, 13, 0.08)),
    linear-gradient(0deg, rgba(18, 15, 13, 0.58), rgba(18, 15, 13, 0));
}

.hero-content {
  position: relative;
  z-index: 4;
  width: min(760px, 100%);
  animation: heroRise 900ms ease both;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--champagne);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

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

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(66px, 11vw, 152px);
  line-height: 0.9;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 5vw, 68px);
  line-height: 1.02;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.hero-copy {
  width: min(610px, 100%);
  margin-bottom: 30px;
  color: rgba(255, 253, 248, 0.84);
  font-size: clamp(18px, 2.1vw, 24px);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  padding: 0 22px;
  border: 1px solid transparent;
  font-size: 14px;
}

.button-primary {
  color: var(--ivory);
  background: var(--clay);
  box-shadow: 0 16px 36px rgba(77, 39, 30, 0.26);
}

.button-secondary {
  color: var(--ivory);
  border-color: rgba(255, 253, 248, 0.62);
  background: rgba(255, 253, 248, 0.06);
}

.intro,
.section,
.visit-section,
.gallery-section {
  padding: clamp(64px, 9vw, 116px) clamp(22px, 6vw, 82px);
}

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

.intro p:last-child,
.split-copy p,
.visit-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.section-light {
  background: #eee5d7;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(240px, 0.46fr);
  gap: 32px;
  align-items: end;
  margin-bottom: clamp(30px, 6vw, 58px);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(33, 29, 26, 0.14);
  background: rgba(33, 29, 26, 0.14);
}

.service-card {
  min-height: 300px;
  padding: 28px;
  background: var(--paper);
}

.service-number {
  display: inline-block;
  margin-bottom: 68px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.service-card p,
.feature-row p,
.contact-panel dd {
  color: var(--muted);
  line-height: 1.62;
}

.gallery-section {
  overflow: hidden;
  background: var(--ivory);
}

.gallery-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(260px, 0.48fr);
  gap: 32px;
  align-items: end;
  margin-bottom: clamp(32px, 6vw, 64px);
}

.gallery-copy p:last-child {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.image-ribbon {
  display: grid;
  grid-template-columns: 0.9fr 1.12fr 0.9fr;
  gap: clamp(14px, 2vw, 26px);
  align-items: center;
}

.photo-card {
  position: relative;
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #ddd0c0;
  box-shadow: var(--shadow);
  transform: translateZ(0);
}

.photo-card.is-featured {
  min-height: 620px;
}

.photo-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition:
    transform 700ms ease,
    filter 700ms ease;
}

.photo-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(23, 22, 20, 0.72), rgba(23, 22, 20, 0.04) 48%);
  content: "";
}

.hair-shimmer::before {
  position: absolute;
  inset: -22% -55%;
  z-index: 1;
  background:
    linear-gradient(
      112deg,
      transparent 0 37%,
      rgba(255, 246, 208, 0.08) 43%,
      rgba(255, 247, 218, 0.38) 49%,
      rgba(255, 246, 208, 0.1) 55%,
      transparent 62% 100%
    );
  content: "";
  mix-blend-mode: screen;
  opacity: 0.76;
  pointer-events: none;
  transform: translateX(-42%) rotate(4deg);
  animation: hairShimmer 5.8s ease-in-out infinite;
}

.photo-card figcaption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  color: rgba(255, 253, 248, 0.82);
  line-height: 1.45;
}

.photo-card figcaption span {
  display: block;
  margin-bottom: 5px;
  color: var(--ivory);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
}

.tilt-card {
  transition:
    transform 260ms ease,
    box-shadow 260ms ease;
}

.tilt-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 90px rgba(36, 28, 22, 0.22);
}

.tilt-card:hover img {
  filter: saturate(1.04) contrast(1.03);
  transform: scale(1.055);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(320px, 0.55fr);
  gap: clamp(28px, 7vw, 96px);
  align-items: center;
  background: var(--ivory);
}

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

.check-list li {
  position: relative;
  padding-left: 28px;
  line-height: 1.55;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.1em;
  color: var(--sage);
  content: "+";
}

.quote-panel {
  display: grid;
  align-items: end;
  min-height: 460px;
  padding: 36px;
  border-radius: var(--radius);
  color: var(--ivory);
  background:
    linear-gradient(145deg, rgba(59, 38, 48, 0.92), rgba(116, 133, 116, 0.76)),
    var(--plum);
  box-shadow: var(--shadow);
}

.quote-panel p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.08;
}

.section-dark {
  color: var(--ivory);
  background: var(--charcoal);
}

.section-dark .section-kicker {
  color: var(--champagne);
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(255, 253, 248, 0.16);
  background: rgba(255, 253, 248, 0.16);
}

.feature-row > div {
  min-height: 240px;
  padding: 30px;
  background: #1f1d1a;
}

.section-dark .feature-row p {
  color: rgba(255, 253, 248, 0.68);
}

.team-intro {
  width: min(760px, 100%);
  margin-bottom: 34px;
  color: rgba(255, 253, 248, 0.7);
  font-size: 18px;
  line-height: 1.7;
}

.stylist-grid {
  display: grid;
  grid-template-columns: repeat(9, minmax(88px, 1fr));
  gap: clamp(14px, 2vw, 24px);
}

.stylist-card {
  display: grid;
  justify-items: center;
  gap: 12px;
  min-width: 0;
}

.stylist-card img {
  width: clamp(78px, 8vw, 112px);
  aspect-ratio: 1;
  border: 4px solid rgba(255, 253, 248, 0.82);
  border-radius: 50%;
  object-fit: cover;
  box-shadow:
    0 0 0 5px rgba(255, 253, 248, 0.12),
    0 18px 38px rgba(0, 0, 0, 0.28);
  transition:
    transform 240ms ease,
    box-shadow 240ms ease;
}

.stylist-card:hover img {
  transform: translateY(-5px) scale(1.03);
  box-shadow:
    0 0 0 5px rgba(216, 195, 164, 0.18),
    0 24px 48px rgba(0, 0, 0, 0.34);
}

.stylist-card h3 {
  margin: 0;
  color: var(--ivory);
  font-size: 15px;
  text-align: center;
}

.visit-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(320px, 0.46fr);
  gap: clamp(28px, 7vw, 92px);
  align-items: start;
  background:
    linear-gradient(90deg, rgba(250, 247, 241, 0.88), rgba(250, 247, 241, 0.98)),
    radial-gradient(circle at 92% 18%, rgba(116, 133, 116, 0.28), transparent 32%);
}

.storefront-card {
  width: min(760px, 100%);
  margin: clamp(28px, 5vw, 54px) 0 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ivory);
  box-shadow: var(--shadow);
}

.storefront-card img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  object-position: center 42%;
}

.storefront-card figcaption {
  margin: 0;
  padding: 14px 18px 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.contact-panel {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ivory);
  box-shadow: var(--shadow);
}

.contact-panel dl {
  display: grid;
  gap: 22px;
  margin: 0 0 28px;
}

.contact-panel div {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.contact-panel dt {
  margin-bottom: 6px;
  color: var(--clay);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.directions-cue {
  margin-left: 8px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.08em;
  opacity: 0.78;
}

.contact-panel dd {
  margin: 0;
  font-size: 17px;
}

.contact-panel .button {
  width: 100%;
}

.social-links,
.hours-list,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hours-list {
  flex-direction: column;
  gap: 4px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.social-links a:hover {
  border-color: rgba(154, 101, 85, 0.54);
  color: var(--clay);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(22px, 6vw, 82px);
  color: rgba(255, 253, 248, 0.72);
  background: var(--charcoal);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--champagne);
}

.footer-links {
  justify-content: flex-end;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.photo-card:nth-child(2).reveal {
  transition-delay: 110ms;
}

.photo-card:nth-child(3).reveal {
  transition-delay: 220ms;
}

@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroLightSweep {
  0%,
  28% {
    opacity: 0;
    transform: translateX(-42%);
  }

  46% {
    opacity: 0.72;
  }

  70% {
    opacity: 0;
    transform: translateX(42%);
  }

  100% {
    opacity: 0;
    transform: translateX(42%);
  }
}

@keyframes twinkleGlow {
  0%,
  100% {
    opacity: 0.08;
    transform: translate(-50%, -50%) scale(0.58);
  }

  28% {
    opacity: 0.46;
    transform: translate(-50%, -50%) scale(0.96);
  }

  42% {
    opacity: 0.18;
    transform: translate(-50%, -50%) scale(0.72);
  }

  58% {
    opacity: 0.34;
    transform: translate(-50%, -50%) scale(0.86);
  }
}

@keyframes twinkleSpark {
  0%,
  20%,
  44%,
  100% {
    opacity: 0;
    transform: scale(0.4) rotate(45deg);
  }

  28% {
    opacity: 0.48;
    transform: scale(0.88) rotate(45deg);
  }

  58% {
    opacity: 0.32;
    transform: scale(0.7) rotate(45deg);
  }
}

@keyframes hairShimmer {
  0%,
  24% {
    transform: translateX(-45%) rotate(4deg);
    opacity: 0;
  }

  42% {
    opacity: 0.72;
  }

  68% {
    transform: translateX(46%) rotate(4deg);
    opacity: 0.18;
  }

  100% {
    transform: translateX(46%) rotate(4deg);
    opacity: 0;
  }
}

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

  .site-nav {
    display: none;
  }

  .intro,
  .section-heading,
  .gallery-copy,
  .split-section,
  .visit-section {
    grid-template-columns: 1fr;
  }

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

  .stylist-grid {
    grid-template-columns: repeat(3, minmax(88px, 1fr));
  }

  .image-ribbon {
    grid-template-columns: 1fr;
  }

  .photo-card,
  .photo-card.is-featured {
    min-height: 480px;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 68px;
    padding: 12px 16px;
  }

  .brand-mark {
    min-width: 0;
  }

  .brand-symbol {
    width: 38px;
    height: 38px;
  }

  .brand-mark strong {
    font-size: 17px;
  }

  .nav-action {
    min-height: 40px;
    padding: 0 13px;
  }

  .hero {
    min-height: 88svh;
    padding: 112px 18px 54px;
  }

  h1 {
    font-size: clamp(58px, 18vw, 86px);
  }

  h2 {
    font-size: 36px;
  }

  .hero-actions,
  .site-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .intro,
  .section,
  .visit-section {
    padding: 58px 18px;
  }

  .service-grid,
  .feature-row {
    grid-template-columns: 1fr;
  }

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

  .photo-card,
  .photo-card.is-featured {
    min-height: 410px;
  }

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

  .service-number {
    margin-bottom: 36px;
  }

  .quote-panel {
    min-height: 320px;
    padding: 26px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
