/* ==========================================================================
   Y12 Salon DIFC — Master stylesheet
   Niche : Ladies premium hair salon · DIFC Dubai
   Palette : ivory + rose gold + champagne + marble
   ========================================================================== */

:root {
  --cream-bg: #FAF7F2;
  --ivory: #F4EFE7;
  --marble-warm: #EAE2D6;
  --espresso: #1A1614;
  --espresso-soft: #2A231E;
  --taupe: #6B5F52;
  --taupe-light: #9A8C7C;
  --rose-gold: #D4A09C;
  --rose-gold-deep: #B8857E;
  --champagne: #C9A87A;
  --glass-white: rgba(255, 255, 255, 0.55);
  --glass-cream: rgba(250, 247, 242, 0.78);
  --border-soft: rgba(26, 22, 20, 0.08);
  --border-mid: rgba(26, 22, 20, 0.16);
  --shadow-sm: 0 4px 16px rgba(26, 22, 20, 0.05);
  --shadow-md: 0 16px 48px rgba(26, 22, 20, 0.08);
  --shadow-lg: 0 32px 80px rgba(26, 22, 20, 0.12);
  --shadow-rose: 0 8px 32px rgba(184, 133, 126, 0.28);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-pill: 999px;
  --transition-fast: 240ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 480ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 800ms cubic-bezier(0.4, 0, 0.2, 1);
  --display: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --body: "Inter Tight", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--espresso);
  background: var(--cream-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-feature-settings: "ss01", "ss02", "cv11";
}

img, video, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
h1, h2, h3, h4 { margin: 0; font-family: var(--display); font-weight: 350; line-height: 1.08; letter-spacing: -0.018em; color: var(--espresso); }
p { margin: 0 0 1rem; }

::selection { background: var(--rose-gold); color: var(--cream-bg); }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--espresso); color: var(--cream-bg); padding: 12px 18px;
  z-index: 9999;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ===== Container ===== */
.container { max-width: 1240px; margin: 0 auto; padding: 0 28px; }
.container-wide { max-width: 1480px; margin: 0 auto; padding: 0 28px; }
@media (max-width: 640px) {
  .container, .container-wide { padding: 0 20px; }
}

/* ===== Eyebrow ===== */
.eyebrow {
  font-family: var(--body);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--taupe);
  margin: 0 0 18px;
  display: inline-block;
}
.eyebrow-rose { color: var(--rose-gold-deep); }

/* ===== Typography scale ===== */
.h1, h1 { font-size: clamp(2.6rem, 6vw, 5.4rem); font-weight: 300; }
.h2, h2 { font-size: clamp(2rem, 4vw, 3.4rem); font-weight: 350; }
.h3, h3 { font-size: clamp(1.5rem, 2.5vw, 2.2rem); font-weight: 400; }
.h4, h4 { font-size: 1.2rem; font-weight: 500; font-family: var(--body); letter-spacing: 0.01em; }

em, .italic { font-style: italic; font-weight: 350; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-family: var(--body);
  font-size: 0.94rem; font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
  text-align: center;
  line-height: 1;
}
.btn-primary {
  background: var(--rose-gold);
  color: var(--cream-bg);
  box-shadow: var(--shadow-rose);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--rose-gold-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(184, 133, 126, 0.4);
}
.btn-ghost {
  background: transparent;
  color: var(--espresso);
  border: 1px solid var(--border-mid);
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: var(--espresso);
  color: var(--cream-bg);
  border-color: var(--espresso);
}
.btn-light {
  background: var(--cream-bg);
  color: var(--espresso);
}
.btn-light:hover { background: #fff; transform: translateY(-2px); }

.btn-arrow::after {
  content: "→"; display: inline-block;
  transition: transform var(--transition-fast);
}
.btn-arrow:hover::after { transform: translateX(4px); }

/* ===== Navigation ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: all var(--transition-base);
  background: transparent;
}
.nav.scrolled {
  background: var(--glass-cream);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--border-soft);
  padding: 12px 0;
}
.nav-inner {
  max-width: 1480px; margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex; flex-direction: column; align-items: flex-start;
  line-height: 1; gap: 4px;
}
.logo-mark {
  font-family: var(--display); font-style: italic; font-weight: 500;
  font-size: 1.6rem; color: var(--espresso);
}
.logo-sub {
  font-family: var(--body); font-size: 0.62rem; font-weight: 500;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--taupe);
}
.nav.hero-light .logo-mark { color: var(--espresso); }
.nav.hero-light .logo-sub { color: var(--taupe); }

.nav-links {
  list-style: none; padding: 0; margin: 0;
  display: flex; gap: 36px; align-items: center;
}
.nav-links a {
  font-size: 0.92rem; font-weight: 400;
  color: var(--espresso);
  position: relative;
  transition: color var(--transition-fast);
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 1px; background: var(--rose-gold);
  transition: width var(--transition-fast);
}
.nav-links a:hover { color: var(--rose-gold-deep); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--rose-gold-deep); }
.nav-links a.active::after { width: 100%; }

.btn-nav { padding: 11px 24px; font-size: 0.88rem; }

.hamburger {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column; gap: 5px; align-items: center; justify-content: center;
}
.hamburger span {
  width: 22px; height: 1.5px; background: var(--espresso);
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: var(--cream-bg);
  display: flex; flex-direction: column; gap: 20px;
  padding: 100px 32px 40px;
  transform: translateX(100%);
  transition: transform var(--transition-base);
  visibility: hidden;
}
.mobile-menu[data-open="true"] { transform: translateX(0); visibility: visible; }
.mobile-menu a {
  font-family: var(--display); font-size: 2rem; font-weight: 350;
  color: var(--espresso);
}
.mobile-menu .mobile-tel { font-size: 1.2rem; color: var(--taupe); font-family: var(--body); margin-top: 12px; }
.mobile-menu .mobile-cta { margin-top: auto; text-align: center; font-family: var(--body); font-size: 1rem; }

@media (max-width: 980px) {
  .nav-links, .btn-nav { display: none; }
  .hamburger { display: flex; }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  max-height: 920px;
  overflow: hidden;
  display: flex; align-items: center;
  color: var(--cream-bg);
}
.hero-media {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-media video,
.hero-media img {
  width: 100%; height: 100%; object-fit: cover;
  position: absolute; inset: 0;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,22,20,0.12) 0%, rgba(26,22,20,0.42) 50%, rgba(26,22,20,0.62) 100%);
  z-index: 1;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1480px; margin: 0 auto; padding: 0 28px;
  width: 100%;
}
.hero .eyebrow {
  color: rgba(250, 247, 242, 0.82);
  letter-spacing: 0.28em;
}
.hero h1 {
  color: var(--cream-bg);
  font-size: clamp(2.8rem, 7vw, 6.6rem);
  font-weight: 300;
  line-height: 1.02;
  max-width: 13ch;
  margin: 0 0 28px;
}
.hero h1 em { color: var(--rose-gold); font-weight: 350; }
.hero-sub {
  color: rgba(250, 247, 242, 0.86);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  max-width: 52ch;
  line-height: 1.6;
  margin: 0 0 36px;
  font-weight: 300;
}
.hero-ctas {
  display: flex; gap: 14px; flex-wrap: wrap;
}
.hero-ctas .btn-ghost {
  border-color: rgba(250, 247, 242, 0.4);
  color: var(--cream-bg);
}
.hero-ctas .btn-ghost:hover {
  background: var(--cream-bg);
  color: var(--espresso);
}

.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 2;
  font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(250, 247, 242, 0.66);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.hero-scroll::after {
  content: ""; width: 1px; height: 40px;
  background: linear-gradient(180deg, rgba(250,247,242,0.66), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}
@keyframes scroll-line {
  0%, 100% { transform: scaleY(1); opacity: 0.66; }
  50% { transform: scaleY(0.5); opacity: 1; }
}

@media (max-width: 640px) {
  .hero { min-height: 580px; height: 92vh; }
  .hero-scroll { display: none; }
}

/* ===== Section base ===== */
section { position: relative; }
.section {
  padding: clamp(80px, 12vw, 160px) 0;
  position: relative;
}
.section-tight { padding: clamp(60px, 8vw, 100px) 0; }
.section-mesh::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 18% 30%, rgba(212,160,156,0.12), transparent 60%),
    radial-gradient(ellipse 50% 40% at 82% 70%, rgba(201,168,122,0.10), transparent 65%);
  pointer-events: none;
}
.section-content { position: relative; z-index: 1; }

/* ===== Award strip ===== */
.award-strip {
  background: var(--ivory);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  padding: 28px 0;
}
.award-row {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 16px 48px;
  font-size: 0.82rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--taupe);
  text-align: center;
}
.award-row strong {
  color: var(--espresso); font-weight: 500;
}

/* ===== About section ===== */
.about-grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.about-text h2 { margin-bottom: 28px; }
.about-text p { color: var(--taupe); font-size: 1.04rem; line-height: 1.75; max-width: 60ch; }
.about-text p:last-of-type { color: var(--espresso); }
.about-media {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: var(--marble-warm);
}
.about-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--transition-slow);
}
.about-media:hover img { transform: scale(1.04); }
@media (max-width: 880px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-media { aspect-ratio: 3/4; max-height: 540px; }
}

/* ===== Services preview ===== */
.section-head {
  display: flex; justify-content: space-between; align-items: end;
  gap: 32px; margin-bottom: 64px;
}
.section-head h2 { max-width: 22ch; }
.section-head-link { white-space: nowrap; padding-bottom: 6px; font-weight: 500; font-size: 0.92rem; }
@media (max-width: 720px) {
  .section-head { flex-direction: column; align-items: flex-start; gap: 18px; margin-bottom: 40px; }
}

.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.service-card {
  background: #fff; padding: 40px 32px;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  display: flex; flex-direction: column; gap: 20px;
  position: relative;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--rose-gold);
}
.service-card .service-num {
  font-family: var(--display); font-style: italic; font-weight: 400;
  font-size: 1.4rem; color: var(--rose-gold-deep);
}
.service-card h3 {
  font-family: var(--display); font-weight: 400; font-size: 1.6rem;
  line-height: 1.15;
}
.service-card p { color: var(--taupe); font-size: 0.94rem; line-height: 1.65; margin: 0; }
.service-card .price {
  margin-top: auto; padding-top: 20px; border-top: 1px solid var(--border-soft);
  color: var(--espresso); font-weight: 500; font-size: 0.88rem;
  letter-spacing: 0.04em;
}
.service-card .price span { color: var(--taupe); font-weight: 400; }
@media (max-width: 880px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ===== Gallery ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: var(--marble-warm);
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--transition-slow), filter var(--transition-slow);
}
.gallery-item:hover img { transform: scale(1.04); filter: saturate(1.1); }
/* Editorial asymmetric layout */
.g-1 { grid-column: span 5; aspect-ratio: 3/4; }
.g-2 { grid-column: span 7; aspect-ratio: 4/3; }
.g-3 { grid-column: span 4; aspect-ratio: 1/1; }
.g-4 { grid-column: span 4; aspect-ratio: 1/1; }
.g-5 { grid-column: span 4; aspect-ratio: 1/1; }
.g-6 { grid-column: span 7; aspect-ratio: 4/3; }
.g-7 { grid-column: span 5; aspect-ratio: 3/4; }
@media (max-width: 720px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .g-1, .g-2, .g-3, .g-4, .g-5, .g-6, .g-7 { grid-column: span 1; aspect-ratio: 1/1; }
  .g-1, .g-6 { grid-column: span 2; aspect-ratio: 4/3; }
}

/* ===== Testimonials ===== */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.testimonial {
  background: var(--ivory);
  padding: 40px 36px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-soft);
  display: flex; flex-direction: column; gap: 20px;
  transition: all var(--transition-base);
}
.testimonial:hover {
  transform: translateY(-4px);
  border-color: var(--rose-gold);
  box-shadow: var(--shadow-sm);
}
.testimonial::before {
  content: """;
  font-family: var(--display); font-style: italic;
  font-size: 3.6rem; line-height: 0.6;
  color: var(--rose-gold);
  display: block; height: 16px;
}
.testimonial q {
  font-family: var(--display); font-size: 1.14rem; line-height: 1.5;
  font-style: italic; font-weight: 400;
  color: var(--espresso);
  quotes: none;
}
.testimonial q::before, .testimonial q::after { content: ""; }
.testimonial .author {
  font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--taupe);
  margin-top: auto;
}
@media (max-width: 880px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* ===== Visit / Contact ===== */
.visit-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  align-items: stretch;
}
.visit-info {
  background: var(--ivory);
  padding: 56px 48px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-soft);
}
.visit-info h2 { margin-bottom: 28px; }
.visit-info-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px 32px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border-soft);
}
.visit-info-item .label {
  display: block;
  font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 8px;
}
.visit-info-item .value {
  font-family: var(--display); font-size: 1.12rem; font-weight: 400;
  color: var(--espresso);
  line-height: 1.4;
}
.visit-info-item a.value:hover { color: var(--rose-gold-deep); }
.visit-info-item.span-2 { grid-column: span 2; }

.visit-cta-row {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-top: 32px;
}

.visit-map {
  border-radius: var(--radius-sm);
  overflow: hidden;
  min-height: 420px;
  border: 1px solid var(--border-soft);
  position: relative;
}
.visit-map iframe { width: 100%; height: 100%; border: 0; min-height: 420px; }

@media (max-width: 880px) {
  .visit-grid { grid-template-columns: 1fr; }
  .visit-info { padding: 36px 28px; }
  .visit-info-grid { grid-template-columns: 1fr; gap: 24px; }
  .visit-info-item.span-2 { grid-column: span 1; }
}

/* ===== CTA banner ===== */
.cta-banner {
  background: var(--espresso);
  color: var(--cream-bg);
  text-align: center;
  padding: clamp(80px, 10vw, 140px) 28px;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 30% 40%, rgba(212,160,156,0.18), transparent 60%),
    radial-gradient(ellipse 50% 50% at 70% 60%, rgba(201,168,122,0.14), transparent 60%);
  pointer-events: none;
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 {
  color: var(--cream-bg);
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  margin-bottom: 18px;
  max-width: 18ch; margin-left: auto; margin-right: auto;
}
.cta-banner h2 em { color: var(--rose-gold); }
.cta-banner p { color: rgba(250, 247, 242, 0.78); max-width: 56ch; margin: 0 auto 36px; }
.cta-banner-row { display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.cta-banner-row .btn-ghost { border-color: rgba(250,247,242,0.36); color: var(--cream-bg); }
.cta-banner-row .btn-ghost:hover { background: var(--cream-bg); color: var(--espresso); }

/* ===== Footer ===== */
footer {
  background: var(--ivory);
  padding: 80px 0 36px;
  border-top: 1px solid var(--border-soft);
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px;
  margin-bottom: 60px;
}
.footer-brand .logo-mark { font-size: 2.2rem; }
.footer-brand p {
  color: var(--taupe); font-size: 0.92rem; max-width: 30ch; margin-top: 12px;
}
.footer-col h4 {
  font-family: var(--body); font-size: 0.74rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 18px;
}
.footer-col a, .footer-col p { display: block; color: var(--espresso); font-size: 0.94rem; margin-bottom: 8px; }
.footer-col a:hover { color: var(--rose-gold-deep); }
.footer-bottom {
  border-top: 1px solid var(--border-soft);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  font-size: 0.82rem; color: var(--taupe);
}
.footer-bottom a:hover { color: var(--rose-gold-deep); }
@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ===== Scroll animations ===== */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 800ms cubic-bezier(0.4, 0, 0.2, 1), transform 800ms cubic-bezier(0.4, 0, 0.2, 1); }
.fade-up.is-visible { opacity: 1; transform: none; }
.fade-up.delay-1 { transition-delay: 80ms; }
.fade-up.delay-2 { transition-delay: 160ms; }
.fade-up.delay-3 { transition-delay: 240ms; }
.fade-up.delay-4 { transition-delay: 320ms; }

/* ===== Page hero (sub pages) ===== */
.page-hero {
  padding: 180px 0 80px;
  background: var(--cream-bg);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 18% 30%, rgba(212,160,156,0.14), transparent 60%),
    radial-gradient(ellipse 50% 40% at 82% 70%, rgba(201,168,122,0.10), transparent 65%);
  pointer-events: none;
}
.page-hero > * { position: relative; z-index: 1; }
.page-hero h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.8rem);
  max-width: 16ch;
  margin: 0 0 24px;
}
.page-hero h1 em { color: var(--rose-gold-deep); }
.page-hero .sub {
  color: var(--taupe);
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  max-width: 56ch;
  line-height: 1.6;
}

/* ===== Service price list (services.html) ===== */
.price-section { padding: clamp(60px, 8vw, 100px) 0; border-top: 1px solid var(--border-soft); }
.price-section:first-of-type { border-top: 0; }
.price-grid {
  display: grid; grid-template-columns: 1fr 2fr; gap: 64px;
}
.price-grid h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); }
.price-grid .desc { color: var(--taupe); font-size: 0.96rem; margin-top: 18px; max-width: 32ch; }
.price-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; }
.price-item {
  display: grid; grid-template-columns: 1fr auto; gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border-soft);
  align-items: baseline;
}
.price-item:first-child { padding-top: 0; }
.price-item .name {
  font-family: var(--display); font-size: 1.24rem; font-weight: 400;
}
.price-item .price-tag {
  font-family: var(--body); font-size: 0.92rem; color: var(--espresso); font-weight: 500;
  letter-spacing: 0.04em; white-space: nowrap;
}
.price-item .detail {
  color: var(--taupe); font-size: 0.92rem; margin-top: 6px; line-height: 1.55;
  grid-column: 1 / -1;
  max-width: 64ch;
}
@media (max-width: 880px) {
  .price-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* ===== FAQ ===== */
.faq-section { padding: clamp(60px, 8vw, 100px) 0; background: var(--ivory); }
.faq-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 64px; }
.faq-list { display: flex; flex-direction: column; gap: 4px; }
.faq-item {
  border-bottom: 1px solid var(--border-soft);
  padding: 22px 0;
}
.faq-item summary {
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--display); font-size: 1.2rem; font-weight: 400;
  color: var(--espresso);
  gap: 24px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-family: var(--body); font-size: 1.4rem; color: var(--rose-gold-deep);
  transition: transform var(--transition-fast);
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p { color: var(--taupe); font-size: 0.96rem; line-height: 1.7; margin: 14px 0 6px; max-width: 64ch; }
@media (max-width: 880px) { .faq-grid { grid-template-columns: 1fr; gap: 24px; } }

/* ===== Booking form (booking.html) ===== */
.booking-wrap {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px;
  padding: 40px 0 120px;
}
.booking-side {
  position: sticky; top: 120px; align-self: start;
  background: var(--ivory);
  padding: 40px 36px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-soft);
}
.booking-side h3 { font-size: 1.2rem; font-family: var(--body); font-weight: 500; letter-spacing: 0.04em; margin-bottom: 14px; }
.booking-side p { color: var(--taupe); font-size: 0.92rem; line-height: 1.65; }
.booking-summary { margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--border-soft); }
.booking-summary dt { font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--taupe); margin-top: 14px; }
.booking-summary dd { margin: 4px 0 0; font-family: var(--display); font-size: 1.05rem; color: var(--espresso); }
.booking-summary dd.placeholder { color: var(--taupe-light); font-style: italic; }

.booking-form {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  padding: 48px 40px;
}
.step-bar {
  display: flex; gap: 0; margin-bottom: 40px;
  border-bottom: 1px solid var(--border-soft);
  padding-bottom: 0;
}
.step {
  flex: 1; padding: 14px 0; text-align: center;
  font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--taupe-light);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all var(--transition-fast);
}
.step.active { color: var(--rose-gold-deep); border-bottom-color: var(--rose-gold); }
.step.done { color: var(--espresso); }
.step .step-num { display: inline-block; margin-right: 6px; font-family: var(--display); font-style: italic; font-weight: 400; }

.step-panel { display: none; }
.step-panel.active { display: block; animation: panel-in 480ms cubic-bezier(0.4,0,0.2,1); }
@keyframes panel-in { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

.option-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.option {
  display: flex; flex-direction: column; gap: 6px;
  padding: 22px 24px;
  background: var(--cream-bg);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
  text-align: left;
  position: relative;
}
.option:hover { border-color: var(--rose-gold); transform: translateY(-2px); }
.option.selected {
  border-color: var(--rose-gold);
  background: #fff;
  box-shadow: var(--shadow-rose);
}
.option.selected::after {
  content: "✓"; position: absolute; top: 14px; right: 16px;
  color: var(--rose-gold-deep); font-size: 1rem;
}
.option-name { font-family: var(--display); font-size: 1.18rem; font-weight: 400; }
.option-meta { font-size: 0.84rem; color: var(--taupe); line-height: 1.5; }
.option-price { font-size: 0.84rem; color: var(--rose-gold-deep); font-weight: 500; letter-spacing: 0.04em; margin-top: 2px; }
@media (max-width: 560px) { .option-grid { grid-template-columns: 1fr; } }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.field label {
  font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--taupe); font-weight: 500;
}
.field input, .field textarea, .field select {
  font: inherit;
  padding: 14px 16px;
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-sm);
  background: var(--cream-bg);
  color: var(--espresso);
  transition: all var(--transition-fast);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--rose-gold);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(212, 160, 156, 0.12);
}
.field textarea { min-height: 120px; resize: vertical; font-family: var(--body); }
.field .field-help { font-size: 0.82rem; color: var(--taupe-light); margin-top: -2px; }
.field.error input, .field.error textarea, .field.error select {
  border-color: #C04A4A;
}
.field .field-error { font-size: 0.82rem; color: #C04A4A; display: none; }
.field.error .field-error { display: block; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }

.date-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(110px, 1fr)); gap: 10px; }
.date-pill, .time-pill {
  padding: 12px 8px; text-align: center;
  background: var(--cream-bg);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex; flex-direction: column; gap: 4px;
  font-size: 0.9rem;
}
.date-pill .dow { font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--taupe); }
.date-pill .day { font-family: var(--display); font-size: 1.4rem; font-weight: 400; line-height: 1; color: var(--espresso); }
.date-pill .month { font-size: 0.74rem; color: var(--taupe); letter-spacing: 0.06em; }
.date-pill:hover, .time-pill:hover { border-color: var(--rose-gold); transform: translateY(-1px); }
.date-pill.selected, .time-pill.selected {
  border-color: var(--rose-gold);
  background: #fff;
  box-shadow: var(--shadow-rose);
}
.time-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(86px, 1fr)); gap: 10px;
  margin-top: 18px;
}
.time-pill { padding: 14px 8px; font-family: var(--display); font-size: 1.06rem; }

.form-nav {
  display: flex; justify-content: space-between; gap: 14px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--border-soft);
}
.form-nav .btn { min-width: 120px; }
.form-nav .right { display: flex; gap: 14px; margin-left: auto; }

.confirmation {
  text-align: center; padding: 40px 20px;
}
.confirmation .check {
  width: 72px; height: 72px; margin: 0 auto 28px;
  border-radius: 50%; background: var(--rose-gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--cream-bg); font-size: 2rem;
}
.confirmation h3 { font-size: 1.8rem; margin-bottom: 14px; }
.confirmation p { color: var(--taupe); max-width: 48ch; margin: 0 auto 12px; }
.confirmation .ref { font-family: "JetBrains Mono", "Courier New", monospace; font-size: 0.82rem; color: var(--rose-gold-deep); letter-spacing: 0.08em; margin-top: 18px; }

@media (max-width: 880px) {
  .booking-wrap { grid-template-columns: 1fr; gap: 32px; }
  .booking-side { position: static; }
  .booking-form { padding: 32px 22px; }
}

/* ===== Payment page ===== */
.payment-wrap {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px;
  padding: 40px 0 120px;
}
.payment-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  padding: 48px 40px;
}
.payment-card h2 { margin-bottom: 28px; font-size: 1.8rem; }
.pay-method-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px;
  margin-bottom: 28px;
}
.pay-method {
  padding: 14px 8px; text-align: center;
  background: var(--cream-bg);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  font-size: 0.84rem; font-weight: 500; color: var(--espresso);
  cursor: pointer;
  transition: all var(--transition-fast);
}
.pay-method:hover { border-color: var(--rose-gold); }
.pay-method.selected { border-color: var(--rose-gold); background: #fff; box-shadow: var(--shadow-rose); }
@media (max-width: 600px) { .pay-method-row { grid-template-columns: 1fr 1fr; } }

.summary-card {
  background: var(--ivory);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  padding: 36px 32px;
  position: sticky; top: 120px; align-self: start;
}
.summary-card h3 {
  font-family: var(--body); font-size: 0.78rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--taupe); font-weight: 500;
  margin-bottom: 22px;
}
.summary-row {
  display: flex; justify-content: space-between; padding: 14px 0;
  border-bottom: 1px solid var(--border-soft);
  font-size: 0.94rem;
}
.summary-row:last-of-type { border-bottom: 0; }
.summary-row .label { color: var(--taupe); }
.summary-row .value { color: var(--espresso); font-weight: 500; }
.summary-total {
  display: flex; justify-content: space-between; padding: 22px 0;
  margin-top: 14px;
  border-top: 1px solid var(--border-mid);
  align-items: baseline;
}
.summary-total .label { font-family: var(--display); font-size: 1.2rem; }
.summary-total .value { font-family: var(--display); font-size: 1.6rem; color: var(--rose-gold-deep); }

.trust-row {
  display: flex; gap: 8px; flex-wrap: wrap; align-items: center;
  font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--taupe);
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border-soft);
}
.trust-row .badge {
  padding: 6px 10px; background: var(--cream-bg);
  border: 1px solid var(--border-soft); border-radius: var(--radius-pill);
  color: var(--espresso); font-weight: 500;
}

@media (max-width: 880px) {
  .payment-wrap { grid-template-columns: 1fr; }
  .summary-card { position: static; order: -1; }
}

/* ===== Stylist cards ===== */
.stylist-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
  margin-top: 28px;
}
.stylist {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 22px 24px;
  background: var(--cream-bg);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
  text-align: left; width: 100%;
}
.stylist:hover { border-color: var(--rose-gold); transform: translateY(-2px); }
.stylist.selected { border-color: var(--rose-gold); background: #fff; box-shadow: var(--shadow-rose); }
.stylist-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--rose-gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--cream-bg); font-family: var(--display); font-size: 1.3rem; font-weight: 400;
  flex-shrink: 0;
}
.stylist-name { font-family: var(--display); font-size: 1.18rem; font-weight: 400; line-height: 1.2; }
.stylist-role { font-size: 0.82rem; color: var(--taupe); margin-top: 4px; line-height: 1.5; }
@media (max-width: 560px) { .stylist-grid { grid-template-columns: 1fr; } }

/* ===== Misc ===== */
.divider {
  height: 1px; background: var(--border-soft); margin: clamp(40px, 6vw, 80px) 0;
}
.text-center { text-align: center; }
.muted { color: var(--taupe); }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .fade-up { opacity: 1; transform: none; }
}

/* Print */
@media print { .nav, .hamburger, .mobile-menu, .hero-scroll, .cta-banner { display: none; } }
