:root {
  --ink: #141313;
  --ink-soft: #3b3432;
  --paper: #fbfaf8;
  --pearl: #f0ece7;
  --mist: #ede6dc;
  --bg: rgba(251, 250, 248, 0.9);
  --panel-bg: #fff;
  --sage: #607166;
  --rose: #9c514b;   /* Deep accessible rose for light theme */
  --plum: #3b202a;
  --copper: #91683a; /* Deep accessible gold for light theme */
  --line: rgba(20, 19, 19, 0.12);
  --shadow: 0 22px 70px rgba(20, 19, 19, 0.12);
  --radius: 8px;
  --max: 1180px;
}



* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, var(--paper) 0%, var(--pearl) 42%, var(--paper) 100%);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  content: "";
  opacity: 0.035;
  background-image:
    linear-gradient(rgba(20, 19, 19, 0.7) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 19, 19, 0.7) 1px, transparent 1px);
  background-size: 42px 42px;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 120;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #f4c782, #b47670, #607166);
  box-shadow: 0 0 22px rgba(244, 199, 130, 0.55);
  transform-origin: left center;
  transform: scaleX(0);
  will-change: transform;
}

.intro-loader {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: grid;
  place-items: center;
  color: #fff;
  background:
    radial-gradient(ellipse at center, rgba(180, 118, 112, 0.22), transparent 42%),
    linear-gradient(135deg, #090808, #1b1214 58%, #090808);
  transition: opacity 800ms ease, transform 900ms cubic-bezier(0.76, 0, 0.24, 1), visibility 800ms;
}

body.is-ready .intro-loader,
.intro-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-100%);
}

.loader-mark {
  position: relative;
  width: 148px;
  height: 148px;
}

.loader-mark img {
  width: 148px;
  height: 148px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(251, 250, 248, 0.18), rgba(251, 250, 248, 0.04) 68%, transparent 70%);
  animation: loaderLift 1200ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.loader-mark span {
  position: absolute;
  inset: -14px;
  border: 1px solid rgba(244, 199, 130, 0.45);
  border-top-color: rgba(244, 199, 130, 1);
  border-radius: 50%;
  animation: logoOrbit 2600ms linear infinite;
}

.intro-loader p {
  position: absolute;
  bottom: 54px;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.safe-phone {
  display: inline-block;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  width: 100%;
  padding: 18px 42px;
  color: #fff;
  transition: background 240ms ease, color 240ms ease, box-shadow 240ms ease, padding 240ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  padding-top: 12px;
  padding-bottom: 12px;
  background: rgba(251, 250, 248, 0.82);
  box-shadow: 0 18px 60px rgba(20, 19, 19, 0.12);
  backdrop-filter: blur(12px) saturate(1.15);
}

.site-header.is-scrolled .brand img,
.site-header.is-open .brand img {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 700;
}

.brand img {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  border-radius: 50%;
  padding: 5px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(8px);
  transition: background 300ms ease, border-color 300ms ease, box-shadow 300ms ease, backdrop-filter 300ms ease;
}

.brand span {
  white-space: nowrap;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  color: var(--ink);
  background: #fff;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  transition: transform 180ms ease, background 220ms ease, color 220ms ease;
}

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



.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 50%;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  background: currentColor;
  transition: transform 220ms ease;
}

.menu-toggle span + span {
  margin-top: 6px;
}

.menu-open .menu-toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-open .menu-toggle span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 88svh;
  padding: 140px clamp(42px, 6vw, 96px) 34px clamp(150px, 15vw, 240px);
  overflow: hidden;
  color: #fff;
  isolation: isolate;
  background: #090808;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: url("assets/salon_hero_exterior.jpg");
  background-position: center 50%;
  background-size: cover;
  filter: contrast(1.04) brightness(0.82);
  transform: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(8, 7, 7, 0.92), rgba(26, 14, 17, 0.64) 52%, rgba(10, 9, 9, 0.24)),
    linear-gradient(0deg, rgba(8, 8, 8, 0.76), rgba(8, 8, 8, 0.1) 50%),
    linear-gradient(115deg, rgba(244, 199, 130, 0.22), transparent 24%, transparent 72%, rgba(96, 113, 102, 0.22));
}

.strand-canvas {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  opacity: 0.78;
  mix-blend-mode: screen;
}



.hero-content {
  position: relative;
  z-index: 2;
  width: min(960px, 100%);
  padding-bottom: 60px;
}

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

.hero .eyebrow {
  color: #f0c386;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: 0.02em;
}

h1 {
  max-width: none;
  white-space: nowrap;
  font-size: 5.4rem;
  line-height: 1.02;
  font-weight: 700;
}

h1 em, h2 em, h3 em,
h1 .italic, h2 .italic, h3 .italic {
  font-family: "Caveat", "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: var(--copper);
  letter-spacing: normal;
  text-transform: none;
}

h1 .word {
  display: inline-block;
  white-space: nowrap;
}

h1 .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.62em) rotateX(62deg);
  transform-origin: bottom center;
  animation: headlineChar 430ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: calc(220ms + var(--char-index) * 16ms);
}

h2 {
  font-size: 3.35rem;
}

h3 {
  font-size: 1.72rem;
}

.hero-copy {
  max-width: 590px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.12rem;
  text-wrap: balance;
}

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

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  overflow: hidden;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 140ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
  isolation: isolate;
}

.button::before {
  position: absolute;
  inset: -1px;
  z-index: -1;
  content: "";
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.38) 42%, transparent 70%);
  transform: translateX(-130%) skewX(-18deg);
}

.button:hover::before,
.button:focus-visible::before {
  animation: buttonSheen 1.2s ease-in-out;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button:active,
.floating-booking a:active,
.header-cta:active {
  transform: translateY(1px) scale(0.99);
}

.button.primary {
  color: var(--ink);
  background: linear-gradient(135deg, #f7d08e, #c0925f);
  box-shadow: 0 16px 42px rgba(244, 199, 130, 0.28);
}

.button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.hero-signature {
  max-width: 580px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.68);
}

.hero-signature p {
  margin: 0;
  font-size: 0.92rem;
}

.button.secondary.light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.34);
}

.button.ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.24);
}

.hero-panel {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  width: min(860px, 100%);
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(17, 16, 16, 0.42);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.24);
  overflow: hidden;
}

.hero-panel::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero-panel div {
  position: relative;
  z-index: 1;
  min-height: 112px;
  padding: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-scroll-cue {
  position: absolute;
  right: clamp(42px, 6vw, 96px);
  bottom: 38px;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-scroll-cue span {
  display: block;
  width: 1px;
  height: 52px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.22);
}

.hero-scroll-cue span::after {
  display: block;
  width: 1px;
  height: 18px;
  content: "";
  background: #f4c782;
  animation: scrollCue 1.6s ease-in-out infinite;
}

.hero-panel div:last-child {
  border-right: 0;
}

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

.hero-panel strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.8rem;
}

.hero-panel span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
}

.section {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 100px 0;
}

.section-heading {
  max-width: 680px;
  margin-bottom: 44px;
}

.section-heading p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--ink-soft);
}

.intro-section {
  padding-top: 64px;
  padding-bottom: 78px;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
}

.intro-media {
  display: grid;
  gap: 16px;
  position: relative;
}

.intro-copy {
  padding: clamp(32px, 5vw, 54px);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
  z-index: 2;
  transform: translateX(28px);
}

.keep-together {
  white-space: nowrap;
}

.intro-copy p {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.owner-signature {
  display: inline-block;
  margin-top: 32px;
  padding-top: 18px;
  border-top: 1px solid rgba(192, 146, 95, 0.28);
}

.owner-signature strong,
.owner-signature span {
  display: block;
}

.owner-signature strong {
  color: var(--rose);
  font-family: "Caveat", cursive;
  font-size: 2.1rem;
  font-weight: 600;
  line-height: 1;
}

.owner-signature span {
  margin-top: 5px;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.signature-card {
  position: relative;
  aspect-ratio: 1 / 1;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.signature-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  z-index: 2;
  pointer-events: none;
}

.signature-card img {
  height: 100%;
}



.welcome-detail {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 20px 24px;
  background: #141313; /* Constant dark background for contrast */
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
  z-index: 3;
  margin-top: -42px;
  margin-left: -48px;
  width: calc(100% + 24px);
}

.welcome-detail span {
  color: #f4c782;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.welcome-detail p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.experience-section {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 92px 0;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(20, 19, 19, 0.03), rgba(20, 19, 19, 0)),
    var(--pearl);
}

.experience-section::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at 16% 18%, rgba(192, 146, 95, 0.14), transparent 28%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.58), transparent 42%);
}

.experience-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: stretch;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.experience-visual {
  position: relative;
  min-height: 0;
  height: 100%;
  overflow: hidden;
  background: var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.experience-visual img {
  position: absolute;
  inset: 0;
  height: 100%;
  filter: saturate(0.92) contrast(1.04);
  transform: none;
}

.motion-frame {
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(244, 199, 130, 0.42);
  pointer-events: none;
}

.motion-frame span {
  position: absolute;
  display: block;
  background: #f4c782;
  opacity: 0.85;
}

.motion-frame span:nth-child(1) {
  top: -1px;
  left: 0;
  width: 48px;
  height: 1px;
}

.motion-frame span:nth-child(2) {
  top: -1px;
  right: 0;
  width: 48px;
  height: 1px;
}

.motion-frame span:nth-child(3) {
  right: -1px;
  bottom: 0;
  width: 1px;
  height: 48px;
}

.experience-copy h2 {
  max-width: 680px;
}

.experience-copy {
  padding: clamp(24px, 3.5vw, 38px);
  background: rgba(251, 250, 248, 0.72);
  border: 1px solid rgba(192, 146, 95, 0.14);
  border-radius: var(--radius);
  box-shadow: 0 18px 60px rgba(20, 19, 19, 0.08);
}

.experience-steps {
  display: grid;
  gap: 16px;
  margin-top: 38px;
}

.experience-step {
  position: relative;
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 20px;
  padding: 14px 0 16px;
  border-bottom: 1px solid var(--line);
}

.experience-step::before {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--copper), transparent);
  transition: width 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.experience-step.is-visible::before {
  width: 100%;
}

.experience-step > span {
  color: var(--rose);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.experience-step p {
  margin: 10px 0 0;
  color: var(--ink-soft);
}

.service-section {
  width: 100%;
  padding-right: max(24px, calc((100% - var(--max)) / 2));
  padding-left: max(24px, calc((100% - var(--max)) / 2));
  background:
    radial-gradient(circle at 85% 20%, rgba(192, 146, 95, 0.08), transparent 45%),
    radial-gradient(circle at 15% 80%, rgba(156, 81, 75, 0.05), transparent 45%),
    linear-gradient(180deg, #f7f3ed 0%, #ede6dc 100%);
  border-top: 1px solid rgba(192, 146, 95, 0.14);
  border-bottom: 1px solid rgba(192, 146, 95, 0.14);
}

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

.service-card {
  position: relative;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid rgba(20, 19, 19, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 18px 60px rgba(20, 19, 19, 0.08);
  transform-style: preserve-3d;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  content: "";
  pointer-events: none;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.36) 46%, transparent 68%);
  transform: translateX(-130%);
  transition: transform 360ms cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover {
  border-color: rgba(192, 146, 95, 0.42);
  box-shadow: 0 28px 80px rgba(20, 19, 19, 0.16);
  transform: translateY(-5px);
}

.service-card:hover::before {
  transform: translateX(130%);
}

.service-card img {
  aspect-ratio: 1 / 1;
  height: auto;
  transition: transform 260ms ease, filter 260ms ease;
}

.service-card:hover img {
  filter: saturate(1.06) contrast(1.05);
  transform: scale(1.07);
}

.service-card div {
  padding: 26px;
}

.service-card span {
  display: block;
  margin-bottom: 22px;
  color: var(--copper);
  font-weight: 800;
  letter-spacing: 0.16em;
}

.service-card p {
  margin: 14px 0 0;
  color: var(--ink-soft);
}

.marquee {
  width: 100%;
  overflow: hidden;
  contain: paint;
  color: #fff;
  background: var(--plum);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeMove 16s linear infinite;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.marquee span {
  display: inline-flex;
  align-items: center;
  min-height: 78px;
  padding: 0 34px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  white-space: nowrap;
}

.marquee span::after {
  width: 42px;
  height: 1px;
  margin-left: 34px;
  content: "";
  background: rgba(255, 255, 255, 0.45);
}

.pricing-section {
  padding-bottom: 80px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: start;
}

.price-card {
  position: relative;
  min-height: 100%;
  padding: 30px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 55px rgba(20, 19, 19, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.price-card.featured {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
  box-shadow: var(--shadow);
}

.price-card:hover {
  border-color: rgba(192, 146, 95, 0.36);
  box-shadow: 0 28px 80px rgba(20, 19, 19, 0.16);
  transform: translateY(-5px);
}

.price-card.featured::before {
  position: absolute;
  inset: 0;
  content: "";
  background: radial-gradient(circle at 50% 0%, rgba(244, 199, 130, 0.18), transparent 70%);
  pointer-events: none;
}

.price-card > * {
  position: relative;
  z-index: 1;
}

.price-card-top {
  min-height: 96px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.featured .price-card-top {
  border-color: rgba(255, 255, 255, 0.18);
}

.price-card-top span {
  display: block;
  margin-top: 10px;
  color: var(--sage);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.featured .price-card-top span {
  color: #f0c386;
}

.price-card ul {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.price-card li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.featured li {
  border-color: rgba(255, 255, 255, 0.14);
}

.price-card li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.price-card li span {
  color: var(--ink-soft);
}

.featured li span {
  color: rgba(255, 255, 255, 0.72);
}

.price-card strong {
  white-space: nowrap;
}

.gallery-section {
  padding: 78px 0 100px;
  color: #fff;
  background: var(--ink);
}

.gallery-heading {
  padding-top: 0;
  padding-bottom: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 0.76fr 1fr;
  grid-auto-rows: 280px;
  gap: 16px;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #090808;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item img {
  transition: transform 260ms ease, filter 260ms ease;
}

.gallery-item:hover img,
.gallery-item.is-hovered img {
  filter: saturate(1.04) contrast(1.04);
  transform: scale(1.075);
}

.gallery-item::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(0deg, rgba(9, 8, 8, 0.7), transparent 46%),
    linear-gradient(115deg, transparent 22%, rgba(244, 199, 130, 0.18), transparent 46%);
  opacity: 0.74;
  transition: opacity 360ms ease;
}

.gallery-item:hover::after,
.gallery-item.is-hovered::after {
  opacity: 0.95;
}

.gallery-item figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 1;
  color: #fff;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.58rem;
  line-height: 1.05;
  transform: translateY(8px);
  transition: transform 360ms ease;
}

.gallery-item:hover figcaption,
.gallery-item.is-hovered figcaption {
  transform: translateY(0);
}

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

.stylist {
  position: relative;
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 26px;
  align-items: center;
  padding: 30px 24px;
  background: var(--panel-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 360ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 360ms ease, border-color 360ms ease;
}

.stylist:hover,
.stylist.is-hovered {
  border-color: rgba(192, 146, 95, 0.35);
  box-shadow: 0 28px 80px rgba(20, 19, 19, 0.14);
  transform: translateY(-5px);
}

.stylist-image {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(20, 19, 19, 0.08);
  aspect-ratio: 4 / 5;
}

.stylist-image img {
  transition: transform 360ms cubic-bezier(0.16, 1, 0.3, 1), filter 360ms ease;
}

.stylist:hover .stylist-image img,
.stylist.is-hovered .stylist-image img {
  filter: saturate(1.05);
  transform: scale(1.06);
}

.stylist p {
  margin: 10px 0 16px;
  color: var(--ink-soft);
}

.stylist a {
  color: var(--rose);
  font-weight: 800;
  transition: color 240ms ease;
}

.stylist a:hover {
  color: var(--copper);
}

.testimonial-band {
  background:
    linear-gradient(90deg, rgba(20, 19, 19, 0.85), rgba(59, 32, 42, 0.68)),
    url("https://images.unsplash.com/photo-1560869713-7d0a29430803?auto=format&fit=crop&w=1700&q=86") center / cover;
  color: #fff;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: center;
}

.testimonial-copy h2 {
  max-width: 620px;
}

.testimonial-list {
  display: grid;
  gap: 18px;
}

.yelp-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.9);
}

.yelp-badge .stars {
  color: #f0c386;
  font-size: 0.95rem;
  letter-spacing: 0.14em;
}

/* Testimonial Carousel / Slider */
.testimonial-slider-wrap {
  width: 100%;
  max-width: 620px;
  position: relative;
  min-width: 0;
}

.testimonial-slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  transition: border-color 260ms ease, box-shadow 260ms ease;
  min-width: 0;
  width: 100%;
}

.testimonial-slider:hover {
  border-color: rgba(240, 195, 134, 0.35);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
}

.testimonial-track {
  display: flex;
  width: 100%;
  transition: transform 480ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.testimonial-slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  margin: 0;
  padding: 34px 36px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 240px;
}

.testimonial-slide-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.testimonial-slide-header .review-stars {
  margin-bottom: 0;
  color: #f0c386;
  font-size: 1rem;
  letter-spacing: 0.16em;
}

.testimonial-slide-header .verified-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 4px 12px;
  border-radius: 999px;
}

.testimonial-slide p {
  margin: 0 0 20px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.45rem;
  font-style: italic;
  line-height: 1.35;
  color: #fff;
}

.testimonial-slide cite {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.85rem;
  font-style: normal;
  color: rgba(255, 255, 255, 0.72);
}

.testimonial-slide cite strong {
  color: #fff;
  font-weight: 700;
  font-size: 0.92rem;
}

/* Slider Controls */
.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  padding: 0 4px;
}

.testimonial-pagination {
  display: flex;
  align-items: center;
  gap: 8px;
}

.review-dot {
  position: relative;
  width: 8px;
  height: 8px;
  padding: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  border: none;
  cursor: pointer;
  transition: width 260ms ease, background-color 260ms ease;
}

.review-dot::after {
  content: "";
  position: absolute;
  top: -12px;
  bottom: -12px;
  left: -8px;
  right: -8px;
}

.review-dot.active {
  width: 26px;
  background: #f0c386;
}

.review-dot:hover:not(.active) {
  background: rgba(255, 255, 255, 0.55);
}

.slider-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.review-nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: background-color 220ms ease, border-color 220ms ease, transform 180ms ease, color 220ms ease;
}

.review-nav-btn:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: #f0c386;
  color: #f0c386;
  transform: scale(1.06);
}

.review-nav-btn svg {
  width: 18px;
  height: 18px;
}

.contact-section {
  padding-bottom: 60px;
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 0.78fr);
  gap: 36px;
  padding: 42px;
  color: #fff;
  background: var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-main p:not(.eyebrow) {
  max-width: 610px;
  color: rgba(255, 255, 255, 0.75);
}

.contact-details {
  display: grid;
  gap: 18px;
}

.contact-details div {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-details div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.contact-details span {
  color: #f0c386;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-details p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.map-wrap {
  height: 360px;
  margin-top: 22px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.8) contrast(0.98);
}

.floating-booking {
  position: fixed;
  right: 26px;
  bottom: 24px;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: min(520px, calc(100% - 52px));
  padding: 10px;
  color: #fff;
  background: rgba(20, 19, 19, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  box-shadow: 0 20px 70px rgba(20, 19, 19, 0.28);
  backdrop-filter: blur(8px);
  animation: bookingEnter 420ms cubic-bezier(0.16, 1, 0.3, 1) 360ms both;
}

.floating-booking::before {
  position: absolute;
  inset: -1px;
  z-index: -1;
  content: "";
  border-radius: inherit;
  background: linear-gradient(110deg, rgba(244, 199, 130, 0.58), transparent 32%, rgba(180, 118, 112, 0.38));
  opacity: 0.76;
}

.floating-booking span {
  padding: 0 8px 0 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
  font-weight: 700;
  white-space: nowrap;
}

.floating-booking a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 38px;
  padding: 0 16px;
  color: var(--ink);
  background: #f4c782;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.floating-booking a:last-child {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

/* ==========================================================================
   Site Footer
   ========================================================================== */

.site-footer {
  position: relative;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(200, 150, 102, 0.07) 0%, transparent 60%),
    linear-gradient(180deg, #24131a 0%, #160a0e 100%);
  border-top: 1px solid rgba(192, 146, 95, 0.2);
  color: #fff;
}

.footer-container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 36px 24px 24px;
}

.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px 32px;
}

/* Brand & location */
.footer-brand-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-brand-wrap .footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.footer-brand-wrap .footer-brand img {
  width: 40px;
  height: 40px;
  flex-basis: 40px;
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  backdrop-filter: none;
  object-fit: contain;
}

.footer-brand-wrap .footer-brand span {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #fff;
}

.footer-location-tag {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.02em;
  padding-left: 14px;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  line-height: 1.2;
}

/* Inline Nav Links */
.footer-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 20px;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  font-weight: 450;
  text-decoration: none;
  transition: color 180ms ease;
}

.footer-nav a:hover {
  color: #f6d2a2;
}

/* Social pills */
.footer-socials {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.78rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 200ms ease;
}

.social-pill svg {
  flex-shrink: 0;
}

.social-pill:hover {
  background: rgba(200, 150, 102, 0.14);
  border-color: var(--copper);
  color: #f6d2a2;
  transform: translateY(-2px);
}

/* Bottom Bar */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 20px;
  margin-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-copyright {
  margin: 0;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-back-top {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.78rem;
  font-weight: 500;
  text-decoration: none;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 180ms ease;
}

.footer-back-top svg {
  transition: transform 180ms ease;
}

.footer-back-top:hover {
  color: #f6d2a2;
  border-color: rgba(200, 150, 102, 0.4);
  background: rgba(200, 150, 102, 0.1);
}

.footer-back-top:hover svg {
  transform: translateY(-2px);
}

.reveal {
  opacity: 0;
  transition: opacity 380ms ease;
}

.reveal.is-visible {
  opacity: 1;
}

.magnetic {
  will-change: transform;
}

body:not(.is-ready) .site-header,
body:not(.is-ready) .hero-content,
body:not(.is-ready) .hero-panel {
  opacity: 0;
}

body:not(.is-ready) h1 .char {
  animation-play-state: paused;
}

body.is-ready .site-header {
  animation: navDrop 360ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

body.is-ready .hero-content.is-visible {
  animation: heroContentIn 520ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

body.is-ready .hero-panel.is-visible {
  animation: heroPanelIn 520ms cubic-bezier(0.16, 1, 0.3, 1) 120ms both;
}



@keyframes heroDrift {
  from {
    background-position: center 48%;
  }
  to {
    background-position: center 52%;
  }
}

@keyframes loaderLift {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.86);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes logoOrbit {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes navDrop {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroContentIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroPanelIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



@keyframes headlineChar {
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0);
  }
}

@keyframes buttonSheen {
  0%,
  48% {
    transform: translateX(-130%) skewX(-18deg);
  }
  72%,
  100% {
    transform: translateX(130%) skewX(-18deg);
  }
}



@keyframes panelGlide {
  0%,
  46% {
    transform: translateX(-120%);
  }
  72%,
  100% {
    transform: translateX(120%);
  }
}

@keyframes scrollCue {
  0% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(58px);
  }
}

@keyframes frameSlideX {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(45%);
  }
}

@keyframes frameSlideY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(52%);
  }
}

@keyframes featuredSweep {
  to {
    transform: rotate(360deg);
  }
}

@keyframes bookingEnter {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes mobileCtaIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes marqueeMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    padding: 16px 24px;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .site-nav.is-open {
    position: fixed;
    top: 88px;
    right: 18px;
    left: 18px;
    display: grid;
    gap: 0;
    justify-content: stretch;
    padding: 18px;
    color: var(--ink);
    background: rgba(251, 250, 248, 0.98);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open a {
    padding: 16px 4px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav.is-open a:last-child {
    border-bottom: 0;
  }

  h1 {
    font-size: 4rem;
    white-space: normal;
  }

  h2 {
    font-size: 2.8rem;
  }

  .hero {
    min-height: 84svh;
    padding-right: 24px;
    padding-left: 24px;
  }

  .intro-grid,
  .experience-inner,
  .pricing-grid,
  .testimonial-grid,
  .contact-card {
    grid-template-columns: minmax(0, 1fr);
  }

  .intro-copy {
    transform: none;
  }

  .welcome-detail {
    margin-left: 0;
    margin-top: 16px;
    width: 100%;
  }

  .experience-section {
    padding: 72px 0;
  }

  .experience-visual {
    aspect-ratio: 16 / 10;
    height: auto;
  }

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

  .service-card {
    display: grid;
    grid-template-columns: 0.8fr 1fr;
  }

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

@media (max-width: 720px) {
  html {
    scroll-padding-top: 86px;
    scroll-padding-bottom: 86px;
  }

  body {
    background:
      linear-gradient(180deg, var(--paper) 0%, var(--pearl) 50%, var(--paper) 100%);
  }

  .site-header {
    gap: 14px;
    padding: max(14px, env(safe-area-inset-top)) max(18px, env(safe-area-inset-right)) 14px max(18px, env(safe-area-inset-left));
  }

  .site-header.is-scrolled,
  .site-header.is-open {
    padding-top: max(10px, env(safe-area-inset-top));
    padding-bottom: 10px;
  }

  .brand span {
    max-width: 154px;
    white-space: normal;
    line-height: 1.15;
    font-size: 0.95rem;
  }

  .brand img {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
  }

  .site-nav.is-open {
    top: 76px;
    right: 14px;
    left: 14px;
    max-height: calc(100svh - 96px);
    overflow-y: auto;
    padding: 10px 16px;
  }

  .site-nav.is-open a {
    padding: 15px 2px;
  }

  .hero {
    min-height: auto;
    padding: 108px 18px 108px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(8, 7, 7, 0.94), rgba(26, 14, 17, 0.68) 58%, rgba(10, 9, 9, 0.36)),
      linear-gradient(0deg, rgba(8, 8, 8, 0.82), rgba(8, 8, 8, 0.22) 56%),
      linear-gradient(115deg, rgba(244, 199, 130, 0.2), transparent 28%, transparent 72%, rgba(96, 113, 102, 0.22));
  }



  .strand-canvas {
    opacity: 0.72;
  }

  .hero-content {
    padding-bottom: 22px;
  }

  h1 {
    font-size: 2.72rem;
  }

  h2 {
    font-size: 2.2rem;
  }

  h3 {
    font-size: 1.42rem;
  }

  .hero-copy {
    margin-top: 18px;
    font-size: 1rem;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 26px;
  }

  .hero-actions .button {
    flex: 1 1 0;
    width: auto;
    min-width: 0;
    padding: 0 12px;
  }

  .hero-signature {
    margin-top: 22px;
  }

  .hero-panel {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
  }

  .hero-panel div {
    min-height: 98px;
    padding: 16px 10px;
    border-right: 1px solid rgba(255, 255, 255, 0.16);
    border-bottom: 0;
  }

  .hero-panel div:last-child {
    border-right: 0;
  }

  .hero-panel strong {
    font-size: 1.28rem;
    line-height: 1.08;
  }

  .hero-panel span {
    font-size: 0.74rem;
    line-height: 1.28;
  }

  .hero-scroll-cue {
    display: none;
  }

  .section {
    width: min(var(--max), calc(100% - 32px));
    padding: 64px 0;
  }

  .section-heading {
    margin-bottom: 32px;
  }

  .section-heading h2 br {
    display: none;
  }

  .intro-section {
    padding-top: 52px;
    padding-bottom: 58px;
  }

  .intro-copy {
    padding: 24px;
  }

  .keep-together {
    white-space: normal;
  }

  .signature-card {
    aspect-ratio: 1 / 1;
    min-height: 0;
  }

  .owner-signature {
    width: 100%;
    padding-top: 16px;
  }

  .owner-signature strong {
    font-size: 2.35rem;
  }

  .welcome-detail {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 18px;
  }

  .experience-section {
    padding: 56px 0;
  }

  .experience-inner {
    width: min(var(--max), calc(100% - 32px));
    gap: 24px;
  }

  .experience-visual {
    aspect-ratio: 4 / 3;
  }

  .experience-section::before {
    opacity: 0.8;
  }

  .experience-step {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .service-section {
    padding-right: 16px;
    padding-left: 16px;
  }

  .service-card {
    grid-template-columns: 1fr;
  }

  .service-card img {
    aspect-ratio: 16 / 10;
    max-height: 220px;
    object-fit: cover;
  }

  .service-card div {
    padding: 22px;
  }

  .pricing-grid {
    gap: 16px;
  }

  .price-card {
    padding: 24px;
  }

  .price-card-top {
    min-height: 0;
  }

  .price-card li {
    align-items: flex-start;
    gap: 12px;
  }

  .price-card li span {
    min-width: 0;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 300px;
    width: min(var(--max), calc(100% - 32px));
  }

  .gallery-item.tall,
  .gallery-item.wide {
    grid-row: auto;
    grid-column: auto;
  }

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

  .stylist-image {
    max-height: 340px;
  }

  .testimonial-band {
    padding: 0;
    overflow: hidden;
  }

  .testimonial-grid {
    grid-template-columns: minmax(0, 1fr);
    width: min(var(--max), calc(100% - 32px));
    margin: 0 auto;
    gap: 28px;
  }

  .testimonial-copy h2 {
    font-size: 2.05rem;
    line-height: 1.18;
  }

  .yelp-badge {
    display: inline-flex;
    margin-top: 16px;
    padding: 8px 14px;
    font-size: 0.82rem;
    gap: 8px;
    max-width: 100%;
    flex-wrap: wrap;
    line-height: 1.3;
  }

  .yelp-badge .stars {
    font-size: 0.88rem;
    letter-spacing: 0.1em;
  }

  .testimonial-slider-wrap {
    min-width: 0;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .testimonial-slider {
    min-width: 0;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    touch-action: pan-y;
    background: rgba(18, 14, 16, 0.82);
    border: 1px solid rgba(240, 195, 134, 0.22);
    border-radius: var(--radius);
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.38);
  }

  .testimonial-track {
    display: flex;
    width: 100%;
  }

  .testimonial-slide {
    flex: 0 0 100%;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 24px 18px 20px;
    min-height: 220px;
  }

  .testimonial-slide-header {
    margin-bottom: 14px;
    gap: 8px;
  }

  .testimonial-slide-header .review-stars {
    font-size: 0.95rem;
    letter-spacing: 0.12em;
  }

  .testimonial-slide-header .verified-tag {
    font-size: 0.68rem;
    padding: 3px 10px;
    letter-spacing: 0.08em;
    white-space: nowrap;
  }

  .testimonial-slide p {
    font-size: 1.12rem;
    line-height: 1.42;
    margin: 0 0 16px;
  }

  .testimonial-slide cite {
    font-size: 0.82rem;
    gap: 6px;
  }

  .testimonial-slide cite strong {
    font-size: 0.88rem;
  }

  .testimonial-controls {
    margin-top: 14px;
    padding: 0 2px;
  }

  .contact-card {
    gap: 28px;
    padding: 24px;
  }

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

  .map-wrap {
    height: 300px;
  }

  .stylist a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
  }

  .floating-booking {
    animation: none;
    right: max(14px, env(safe-area-inset-right));
    bottom: max(14px, env(safe-area-inset-bottom));
    left: max(14px, env(safe-area-inset-left));
    justify-content: center;
    max-width: none;
    padding: 8px;
    border-radius: 20px;
    gap: 8px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(20px);
    transition: opacity 340ms cubic-bezier(0.16, 1, 0.3, 1),
                transform 340ms cubic-bezier(0.16, 1, 0.3, 1),
                visibility 340ms ease;
  }

  .floating-booking.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .floating-booking span {
    display: none;
  }

  .floating-booking a {
    flex: 1;
    min-height: 48px;
    padding: 0 14px;
    font-size: 0.86rem;
  }

  .button {
    width: 100%;
  }

  .footer-container {
    padding: 28px max(18px, env(safe-area-inset-right)) calc(96px + env(safe-area-inset-bottom)) max(18px, env(safe-area-inset-left));
  }

  .footer-main {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 18px;
  }

  .footer-brand-wrap {
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }

  .footer-location-tag {
    padding-left: 0;
    border-left: 0;
  }

  .footer-nav {
    justify-content: center;
    gap: 8px 16px;
  }

  .footer-nav a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 6px 12px;
  }

  .footer-socials {
    justify-content: center;
  }

  .footer-social-pill {
    min-height: 44px;
    padding: 0 18px;
  }

  .footer-bottom {
    flex-direction: column-reverse;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    padding-top: 16px;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .hero-actions .button {
    width: 100%;
    min-height: 50px;
    padding: 0 20px;
    font-size: 0.88rem;
  }
}

@media (max-width: 380px) {
  .site-header {
    padding-right: 14px;
    padding-left: 14px;
  }

  .brand {
    gap: 9px;
  }

  .brand img {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .brand span {
    max-width: 126px;
    font-size: 0.88rem;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .hero {
    padding: 102px 16px 102px;
  }

  h1 {
    font-size: 2.48rem;
  }

  h2 {
    font-size: 2.02rem;
  }

  h3 {
    font-size: 1.34rem;
  }

  .button {
    min-height: 46px;
    font-size: 0.78rem;
    letter-spacing: 0.04em;
  }

  .hero-panel div {
    min-height: 92px;
    padding: 14px 8px;
  }

  .hero-panel strong {
    font-size: 1.16rem;
  }

  .hero-panel span {
    font-size: 0.68rem;
  }

  .section,
  .testimonial-grid {
    width: min(var(--max), calc(100% - 28px));
  }

  .intro-copy,
  .contact-card,
  .price-card,
  .stylist {
    padding: 22px;
  }

  .floating-booking {
    right: max(10px, env(safe-area-inset-right));
    left: max(10px, env(safe-area-inset-left));
  }

  .testimonial-slide {
    padding: 20px 14px 18px;
    min-height: 235px;
  }

  .testimonial-slide p {
    font-size: 1.05rem;
    line-height: 1.38;
  }

  .yelp-badge {
    font-size: 0.76rem;
    padding: 6px 12px;
    gap: 6px;
  }

  .testimonial-slide-header .verified-tag {
    font-size: 0.62rem;
    padding: 2px 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

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



/* Gallery Carousel & Lightbox Styles */
.gallery-carousel-container {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.gallery-carousel-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  touch-action: pan-y;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  padding: 24px 0;
  scrollbar-width: none; /* Hide scrollbar Firefox */
  -webkit-overflow-scrolling: touch;
}

.gallery-carousel-track::-webkit-scrollbar {
  display: none; /* Hide scrollbar Chrome/Safari */
}

.gallery-carousel-track .gallery-item {
  flex: 0 0 calc(33.333% - 14px);
  max-width: calc(33.333% - 14px);
  scroll-snap-align: start;
  margin: 0;
  cursor: zoom-in;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: #090808;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow);
  transition: transform 360ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 360ms ease;
}

.gallery-carousel-track .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 360ms cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-carousel-track .gallery-item:hover img {
  transform: scale(1.06);
}

.carousel-nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--ink);
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  box-shadow: var(--shadow);
  transition: transform 180ms ease, background-color 220ms ease, border-color 220ms ease;
  flex-shrink: 0;
}

.carousel-nav-btn:hover {
  background: var(--panel-bg);
  border-color: var(--copper);
  transform: scale(1.05);
}

.carousel-nav-btn svg {
  width: 20px;
  height: 20px;
}

.carousel-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.pagination-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line);
  cursor: pointer;
  transition: background-color 240ms ease, transform 240ms ease;
}

.pagination-dot.active {
  background: var(--copper);
  transform: scale(1.25);
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(9, 8, 8, 0.95);
  backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 360ms ease, visibility 360ms ease;
}

.lightbox-modal.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-close {
  position: absolute;
  top: max(18px, env(safe-area-inset-top));
  right: max(20px, env(safe-area-inset-right));
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 3rem;
  font-weight: 300;
  cursor: pointer;
  z-index: 210;
  transition: transform 180ms ease, color 180ms ease;
}

.lightbox-close:hover {
  color: var(--copper);
  transform: scale(1.1);
}

.lightbox-content {
  max-width: 92vw;
  max-height: min(82vh, 82dvh);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transform: scale(0.92);
  transition: transform 360ms cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox-modal.active .lightbox-content {
  transform: scale(1);
}

.lightbox-content img {
  max-width: 100%;
  max-height: min(72vh, 72dvh);
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.lightbox-content p {
  color: #fbfaf8;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.6rem;
  margin: 0;
  text-align: center;
}

/* Media query responsive widths for carousel items */
@media (max-width: 1040px) {
  .gallery-carousel-track .gallery-item {
    flex: 0 0 calc(50% - 10px);
    max-width: calc(50% - 10px);
  }
}

@media (max-width: 720px) {
  .gallery-section {
    padding: 56px 0 100px;
  }

  .gallery-heading {
    padding-bottom: 24px;
  }

  .gallery-carousel-track {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    overflow: visible;
    scroll-snap-type: none;
    padding: 0;
  }

  .gallery-carousel-track .gallery-item {
    width: 100%;
    max-width: none;
    aspect-ratio: 1 / 1.12;
    flex: none;
    scroll-snap-align: none;
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.22);
  }

  .gallery-carousel-track .gallery-item img {
    height: 100%;
  }

  .gallery-item figcaption {
    right: 10px;
    bottom: 10px;
    left: 10px;
    font-size: 1.05rem;
    line-height: 1.12;
    transform: none;
  }

  .carousel-nav-btn {
    display: none;
  }

  .gallery-carousel-container {
    display: block;
    width: 100%;
    padding: 0 16px;
  }

  .carousel-pagination {
    display: none;
  }
}

@media (max-width: 480px) {
  .gallery-item figcaption {
    font-size: 0.92rem;
    line-height: 1.15;
    padding: 6px 8px;
    right: 8px;
    bottom: 8px;
    left: 8px;
  }
}
