/* ================================================================
   HI STYLE WOMEN'S SALON — STYLESHEET
   Design tokens: Ivory + Deep Charcoal + Rose Gold + Antique Gold
   Display face: Bodoni Moda (fashion-editorial serif)
   Body face: Jost (clean geometric sans)
   Signature motif: the flowing "strand" line used in hero + dividers
   ================================================================ */

/* -----------------------------------------------------------------
   1. RESET & TOKENS
----------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Color tokens */
  --ivory:        #FDF9F5;
  --ivory-deep:    #F7EFE8;
  --blush:         #F3DCD6;
  --blush-soft:    #F8E9E4;
  --rose-gold:     #B8737D;
  --rose-gold-dk:  #9C5865;
  --gold:          #C9A15F;
  --gold-light:    #E4C88A;
  --charcoal:      #1C1714;
  --charcoal-soft: #2A211D;
  --ink:           #322722;
  --white:         #ffffff;

  --grad-gold: linear-gradient(120deg, #C9A15F 0%, #E4C88A 45%, #B8737D 100%);
  --grad-gold-hover: linear-gradient(120deg, #B8737D 0%, #E4C88A 55%, #C9A15F 100%);
  --grad-dark: linear-gradient(180deg, #241C18 0%, #16110F 100%);

  /* Type */
  --font-display: "Bodoni Moda", "Didot", Georgia, serif;
  --font-body: "Jost", -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --container-w: 1240px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --radius-pill: 100px;

  --shadow-soft: 0 10px 40px -12px rgba(28, 23, 20, 0.18);
  --shadow-strong: 0 24px 60px -16px rgba(28, 23, 20, 0.28);
  --shadow-gold: 0 12px 30px -10px rgba(201, 161, 95, 0.55);

  --ease: cubic-bezier(.22, 1, .36, 1);
}

html { scroll-behavior: smooth; }

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

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; font-size: 1rem; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; color: var(--charcoal); }

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

/* Skip link */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 9999;
  background: var(--charcoal); color: var(--gold-light); padding: 12px 20px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* -----------------------------------------------------------------
   2. SHARED / UTILITIES
----------------------------------------------------------------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--rose-gold-dk);
  margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--gold); display: inline-block; }
.eyebrow--light { color: var(--gold-light); }

.section-title { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -0.01em; margin-bottom: 18px; }
.section-title em { font-style: italic; color: var(--rose-gold-dk); }
.section-title--light { color: var(--ivory); }
.section-title--light em { color: var(--gold-light); }

.section-desc { max-width: 560px; color: #6b5c54; font-size: 1.02rem; }
.section-desc--light { color: #d8cdc6; }

.section-head { margin-bottom: 48px; }
.section-head--center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head--center .section-desc { margin-left: auto; margin-right: auto; }

section { padding: 108px 0; position: relative; }
@media (max-width: 768px) { section { padding: 72px 0; } }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 32px; border-radius: var(--radius-pill);
  font-size: 0.92rem; font-weight: 600; letter-spacing: 0.03em;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease), color .35s var(--ease);
  white-space: nowrap;
}
.btn--gold { background: var(--grad-gold); color: var(--charcoal); box-shadow: var(--shadow-gold); background-size: 160% 160%; background-position: 0% 50%; }
.btn--gold:hover { background-position: 100% 50%; transform: translateY(-2px); box-shadow: 0 18px 36px -10px rgba(201,161,95,.65); }
.btn--outline-light { border: 1.5px solid rgba(255,255,255,.55); color: var(--ivory); }
.btn--outline-light:hover { background: rgba(255,255,255,.12); transform: translateY(-2px); }
.btn--outline-dark { border: 1.5px solid var(--charcoal); color: var(--charcoal); }
.btn--outline-dark:hover { background: var(--charcoal); color: var(--ivory); }
.btn--dark { background: var(--charcoal); color: var(--ivory); }
.btn--dark:hover { background: var(--rose-gold-dk); transform: translateY(-2px); }
.btn--sm { padding: 11px 22px; font-size: 0.82rem; }
.btn--block { width: 100%; }

/* Scroll-reveal */
[data-aos] { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
[data-aos].in-view { opacity: 1; transform: translateY(0); }

/* -----------------------------------------------------------------
   3. LOADER
----------------------------------------------------------------- */
.loader {
  position: fixed; inset: 0; z-index: 10000; background: var(--charcoal);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .6s var(--ease), visibility .6s var(--ease);
}
.loader.is-hidden { opacity: 0; visibility: hidden; }
.loader__mark { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.loader__mark span { font-family: var(--font-display); letter-spacing: 0.3em; color: var(--gold-light); font-size: 1rem; }
.loader__strand { width: 110px; height: 36px; }
.loader__strand path { stroke: var(--gold); stroke-width: 2.4; stroke-dasharray: 260; stroke-dashoffset: 260; animation: strand-draw 1.6s var(--ease) infinite; }
@keyframes strand-draw { 0% { stroke-dashoffset: 260; } 60% { stroke-dashoffset: 0; } 100% { stroke-dashoffset: -260; } }

/* -----------------------------------------------------------------
   4. HEADER / NAV
----------------------------------------------------------------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: transparent;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), padding .4s var(--ease);
  padding: 22px 0;
}
.site-header.is-scrolled { background: rgba(253, 249, 245, 0.92); backdrop-filter: blur(14px); box-shadow: 0 4px 30px rgba(28,23,20,.08); padding: 12px 0; }

.site-header__inner { max-width: var(--container-w); margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark {
  width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: var(--grad-gold); color: var(--charcoal); font-family: var(--font-display); font-size: 1.3rem; font-weight: 700;
  box-shadow: var(--shadow-gold); flex-shrink: 0;
}
.brand__type { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; color: var(--charcoal); line-height: 1.1; display: flex; flex-direction: column; }
.site-header:not(.is-scrolled) .brand__type { color: var(--ivory); }
.brand__type em { font-style: normal; font-family: var(--font-body); font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--rose-gold); font-weight: 500; }
.site-header:not(.is-scrolled) .brand__type em { color: var(--gold-light); }

.main-nav ul { display: flex; gap: 34px; }
.nav-link {
  font-size: 0.86rem; font-weight: 500; letter-spacing: 0.02em; color: var(--charcoal);
  position: relative; padding: 6px 0;
}
.site-header:not(.is-scrolled) .nav-link { color: var(--ivory); }
.nav-link::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1.5px; background: var(--gold); transition: width .35s var(--ease); }
.nav-link:hover::after, .nav-link.is-active::after { width: 100%; }

.site-header__actions { display: flex; align-items: center; gap: 18px; }

.nav-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 30px; height: 24px; }
.nav-toggle span { display: block; width: 100%; height: 2px; background: var(--charcoal); transition: transform .3s var(--ease), opacity .3s var(--ease); }
.site-header:not(.is-scrolled) .nav-toggle span { background: var(--ivory); }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-toggle.is-open span { background: var(--charcoal) !important; }

@media (max-width: 900px) {
  .main-nav {
    position: fixed; inset: 0 0 0 auto; width: min(320px, 82vw); height: 100vh;
    background: var(--ivory); padding: 110px 34px 40px; box-shadow: -20px 0 60px rgba(0,0,0,.18);
    transform: translateX(100%); transition: transform .45s var(--ease); z-index: 999;
  }
  .main-nav.is-open { transform: translateX(0); }
  .main-nav ul { flex-direction: column; gap: 26px; }
  .nav-link { color: var(--charcoal) !important; font-size: 1.05rem; }
  .site-header__actions .btn--gold.btn--sm { display: none; }
  .nav-toggle { display: flex; }
}
@media (max-width: 480px) {
  .brand__type { font-size: 0.98rem; }
}

/* -----------------------------------------------------------------
   5. HERO
----------------------------------------------------------------- */
.hero { min-height: 100vh; display: flex; align-items: flex-end; position: relative; overflow: hidden; padding: 0; }
.hero__media { position: absolute; inset: 0; }
.hero__img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; filter: saturate(1.05) contrast(1.02); }
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(0deg, rgba(20,15,13,.92) 0%, rgba(20,15,13,.55) 42%, rgba(28,23,20,.35) 70%, rgba(80,55,50,.25) 100%);
}
.hero__strand {
  position: absolute; left: 0; right: 0; bottom: 40%; width: 100%; height: 140px; opacity: .35; z-index: 1; pointer-events: none;
}
.hero__strand path { stroke: var(--gold-light); stroke-width: 1.4; }

.hero__content { position: relative; z-index: 2; padding-bottom: 96px; padding-top: 160px; }
.hero__title { color: var(--ivory); font-size: clamp(2.4rem, 6vw, 4.6rem); max-width: 820px; margin-bottom: 22px; }
.hero__title em { font-style: italic; color: var(--gold-light); }
.hero__subtitle { color: #e9ddd6; max-width: 540px; font-size: 1.08rem; margin-bottom: 38px; }
.hero__cta { display: flex; gap: 18px; flex-wrap: wrap; margin-bottom: 56px; }
.hero__cta .btn svg { flex-shrink: 0; }

.hero__stats { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.hero__stat { display: flex; flex-direction: column; }
.hero__stat-num { font-family: var(--font-display); font-size: 1.9rem; color: var(--ivory); font-weight: 700; }
.hero__stat-num .star { color: var(--gold-light); font-size: 1.1rem; margin-left: 3px; }
.hero__stat-plus { font-family: var(--font-display); font-size: 1.9rem; color: var(--ivory); font-weight: 700; margin-left: -6px; }
.hero__stat-label { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: #cbb9b2; margin-top: 2px; }
.hero__stat-divider { width: 1px; height: 34px; background: rgba(255,255,255,.25); }
.hero__badge {
  display: flex; align-items: center; gap: 8px; padding: 10px 18px; border-radius: var(--radius-pill);
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.25); backdrop-filter: blur(8px);
  color: var(--gold-light); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.03em;
}

.hero__scroll { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 2; }
.hero__scroll span { display: block; width: 26px; height: 42px; border: 1.5px solid rgba(255,255,255,.5); border-radius: 20px; position: relative; }
.hero__scroll span::before { content: ""; position: absolute; top: 8px; left: 50%; width: 4px; height: 8px; background: var(--gold-light); border-radius: 3px; transform: translateX(-50%); animation: scrollDot 1.8s infinite; }
@keyframes scrollDot { 0% { top: 8px; opacity: 1; } 70% { top: 24px; opacity: 0; } 100% { top: 24px; opacity: 0; } }

@media (max-width: 640px) {
  .hero__content { padding-top: 130px; padding-bottom: 70px; }
  .hero__stats { gap: 16px; }
  .hero__stat-divider:nth-of-type(3) { display: none; }
}

/* -----------------------------------------------------------------
   6. ABOUT
----------------------------------------------------------------- */
.about__grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 90px; align-items: center; }
.about__media { position: relative; }
.about__media-img--main { border-radius: var(--radius-lg); box-shadow: var(--shadow-strong); width: 100%; height: 560px; object-fit: cover; display: block; }
.about__media-secondary {
  position: absolute; top: -34px; right: -34px; width: 42%; aspect-ratio: 1 / 1;
  border-radius: var(--radius-md); overflow: hidden; border: 6px solid var(--ivory);
  box-shadow: var(--shadow-strong); z-index: 2;
}
.about__media-img--secondary { width: 100%; height: 100%; object-fit: cover; display: block; }
.about__media-card {
  position: absolute; bottom: -26px; left: -26px; background: var(--white); border-radius: var(--radius-md);
  padding: 22px 26px; box-shadow: var(--shadow-strong); max-width: 210px; z-index: 2;
}
.about__media-card strong { font-family: var(--font-display); font-size: 2rem; color: var(--rose-gold-dk); display: block; }
.about__media-card span { font-size: 0.82rem; color: #6b5c54; }

.about__lead { font-size: 1.08rem; color: #574a44; margin-bottom: 26px; }
.about__points { display: grid; gap: 14px; margin-bottom: 34px; }
.about__points li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.98rem; color: var(--ink); }
.about__points .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--grad-gold); margin-top: 7px; flex-shrink: 0; }

@media (max-width: 900px) {
  .about__grid { grid-template-columns: 1fr; gap: 70px; }
  .about__media-img--main { height: 420px; }
  .about__media-card { left: 0; }
  .about__media-secondary { width: 38%; top: -26px; right: 0; }
}
@media (max-width: 480px) {
  .about__media-secondary { width: 44%; top: -20px; }
  .about__media-card { padding: 16px 20px; max-width: 170px; }
}

/* -----------------------------------------------------------------
   7. SERVICES
----------------------------------------------------------------- */
.services { background: var(--ivory-deep); }
.services__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.service-card {
  background: var(--white); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-soft);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-strong); }
.service-card__img-wrap { position: relative; height: 170px; overflow: hidden; }
.service-card__img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.service-card:hover .service-card__img-wrap img { transform: scale(1.08); }
.service-card__placeholder {
  width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  background: linear-gradient(135deg, var(--blush-soft) 0%, var(--ivory-deep) 100%);
  color: var(--rose-gold-dk);
}
.service-card__placeholder-icon { width: 34px; height: 34px; opacity: .55; }
.service-card__placeholder-icon svg { width: 100%; height: 100%; }
.service-card__placeholder-label { font-size: 0.72rem; letter-spacing: .06em; text-transform: uppercase; color: #a98d84; font-weight: 600; }
.service-card__icon {
  position: absolute; bottom: -20px; left: 18px; width: 44px; height: 44px; border-radius: 50%;
  background: var(--grad-gold); display: flex; align-items: center; justify-content: center; color: var(--charcoal);
  box-shadow: var(--shadow-gold);
}
.service-card__body { padding: 32px 20px 22px; flex: 1; display: flex; flex-direction: column; }
.service-card__body h3 { font-size: 1.08rem; margin-bottom: 8px; }
.service-card__body p { font-size: 0.88rem; color: #6b5c54; flex: 1; margin-bottom: 16px; }
.service-card__book { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--rose-gold-dk); display: inline-flex; align-items: center; gap: 6px; }
.service-card__book svg { transition: transform .3s var(--ease); }
.service-card__book:hover svg { transform: translateX(4px); }

@media (max-width: 1080px) { .services__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px) { .services__grid { grid-template-columns: repeat(2, 1fr); gap: 18px; } }
@media (max-width: 460px) { .services__grid { grid-template-columns: 1fr; } }

/* -----------------------------------------------------------------
   8. WHY CHOOSE US
----------------------------------------------------------------- */
.why__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why__card {
  padding: 34px 28px; border-radius: var(--radius-md); background: var(--white); border: 1px solid #f0e4dd;
  transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.why__card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); border-color: var(--gold); }
.why__icon { width: 52px; height: 52px; border-radius: 14px; background: var(--blush-soft); color: var(--rose-gold-dk); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.why__icon svg { width: 24px; height: 24px; }
.why__card h3 { font-size: 1.08rem; margin-bottom: 8px; }
.why__card p { font-size: 0.9rem; color: #6b5c54; }

@media (max-width: 900px) { .why__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .why__grid { grid-template-columns: 1fr; } }

/* -----------------------------------------------------------------
   9. GALLERY (grid) + LIGHTBOX
   Uses a standard CSS grid (not multi-column) — grid has far more
   consistent, predictable support across mobile browsers than
   `column-count`, which some mobile WebViews render unreliably.
----------------------------------------------------------------- */
.gallery__masonry {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; grid-auto-flow: dense;
}
.gallery__item { border-radius: var(--radius-md); overflow: hidden; position: relative; cursor: pointer; box-shadow: var(--shadow-soft); aspect-ratio: 3 / 4; }
.gallery__item img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .5s var(--ease); }
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item:nth-child(4n+1), .gallery__item:nth-child(4n+3) { aspect-ratio: 3 / 4.6; }
.gallery__item-overlay {
  position: absolute; inset: 0; background: linear-gradient(0deg, rgba(28,20,17,.78) 0%, transparent 55%);
  display: flex; align-items: flex-end; padding: 18px; opacity: 0; transition: opacity .35s var(--ease);
}
.gallery__item:hover .gallery__item-overlay { opacity: 1; }
.gallery__item-overlay span { color: var(--ivory); font-size: 0.86rem; font-weight: 500; }

@media (max-width: 1080px) { .gallery__masonry { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px) { .gallery__masonry { grid-template-columns: repeat(2, 1fr); gap: 14px; } }
@media (max-width: 460px) { .gallery__masonry { grid-template-columns: 1fr; } .gallery__item { aspect-ratio: 4 / 3; } }

.lightbox {
  position: fixed; inset: 0; background: rgba(15, 11, 9, 0.94); z-index: 3000;
  display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden;
  transition: opacity .4s var(--ease), visibility .4s var(--ease); padding: 40px;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox__img { max-width: min(900px, 90vw); max-height: 78vh; border-radius: var(--radius-md); box-shadow: var(--shadow-strong); }
.lightbox__caption { position: absolute; bottom: 30px; color: var(--ivory); font-size: 0.9rem; letter-spacing: .04em; }
.lightbox__close { position: absolute; top: 26px; right: 30px; color: var(--ivory); font-size: 2.2rem; line-height: 1; }
.lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); color: var(--ivory); font-size: 3rem; padding: 10px 18px; opacity: .8; transition: opacity .3s; }
.lightbox__nav:hover { opacity: 1; color: var(--gold-light); }
.lightbox__nav--prev { left: 10px; }
.lightbox__nav--next { right: 10px; }

/* -----------------------------------------------------------------
   10. BEFORE / AFTER — real transformation photo grid
----------------------------------------------------------------- */
.transform { background: var(--grad-dark); }
.transform__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; max-width: 1100px; margin: 0 auto; }
.transform__item {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; cursor: pointer;
  box-shadow: var(--shadow-strong); aspect-ratio: 3 / 4; border: 1px solid rgba(255,255,255,.08);
}
.transform__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.transform__item:hover img { transform: scale(1.06); }
.transform__item-overlay {
  position: absolute; inset: 0; display: flex; align-items: flex-end; padding: 22px;
  background: linear-gradient(0deg, rgba(15,11,9,.85) 0%, rgba(15,11,9,.05) 45%, transparent 70%);
}
.transform__item-overlay span { color: var(--ivory); font-size: 0.92rem; font-weight: 600; letter-spacing: .01em; }

@media (max-width: 860px) { .transform__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .transform__grid { grid-template-columns: 1fr; max-width: 420px; } .transform__item { aspect-ratio: 4/5; } }

/* -----------------------------------------------------------------
   11. REVIEWS
----------------------------------------------------------------- */
.reviews__rating { display: flex; align-items: center; justify-content: center; gap: 12px; color: #6b5c54; font-size: 0.92rem; margin-top: 6px; }
.reviews__rating .stars { color: var(--gold); letter-spacing: 2px; }

.reviews__track-wrap { position: relative; display: flex; align-items: center; gap: 18px; }
.reviews__track { display: flex; gap: 24px; overflow: hidden; scroll-behavior: smooth; flex: 1; }
.review-card {
  flex: 0 0 calc(33.333% - 16px); background: var(--white); border-radius: var(--radius-md); padding: 32px 28px;
  box-shadow: var(--shadow-soft); border: 1px solid #f0e4dd;
}
.review-card__stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 14px; font-size: .92rem; }
.review-card p { font-size: 0.95rem; color: var(--ink); margin-bottom: 20px; font-style: italic; }
.review-card__meta { display: flex; align-items: center; gap: 10px; }
.review-card__avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--blush-soft); color: var(--rose-gold-dk); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; }
.review-card__meta strong { font-size: 0.86rem; display: block; }
.review-card__meta span { font-size: 0.76rem; color: #8a7a72; }

.reviews__arrow {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%; border: 1px solid #e4d5cd; color: var(--charcoal);
  display: flex; align-items: center; justify-content: center; font-size: 1.4rem; transition: all .3s var(--ease);
}
.reviews__arrow:hover { background: var(--charcoal); color: var(--ivory); border-color: var(--charcoal); }
.reviews__dots { display: flex; justify-content: center; gap: 8px; margin-top: 26px; }
.reviews__dots button { width: 8px; height: 8px; border-radius: 50%; background: #e4d5cd; transition: all .3s var(--ease); }
.reviews__dots button.is-active { background: var(--gold); width: 22px; border-radius: 5px; }

@media (max-width: 900px) { .review-card { flex: 0 0 calc(50% - 12px); } }
@media (max-width: 620px) { .review-card { flex: 0 0 100%; } .reviews__arrow { display: none; } }

/* -----------------------------------------------------------------
   12. APPOINTMENT / BOOKING FORM
----------------------------------------------------------------- */
.appointment { background: var(--grad-dark); }
.appointment__grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 70px; align-items: start; }
.appointment__info { margin-top: 32px; display: grid; gap: 18px; }
.appointment__info li { display: flex; align-items: center; gap: 12px; color: #d8cdc6; font-size: 0.92rem; }
.appointment__info svg { color: var(--gold-light); flex-shrink: 0; }
.link-gold { color: var(--gold-light); font-weight: 600; }

.booking-form {
  background: var(--white); border-radius: var(--radius-lg); padding: 42px; box-shadow: var(--shadow-strong);
  display: flex; flex-direction: column; gap: 20px;
}
.booking-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-size: 0.82rem; font-weight: 600; color: var(--charcoal); }
.field label span { color: var(--rose-gold-dk); }
.field input, .field select, .field textarea {
  padding: 13px 16px; border: 1.5px solid #ecdfd8; border-radius: var(--radius-sm); background: var(--ivory);
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease); color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 4px rgba(201,161,95,.15); }
.field textarea { resize: vertical; min-height: 90px; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: #c0554f; }
.field__error { font-size: 0.76rem; color: #c0554f; min-height: 14px; }
.booking-form__note { font-size: 0.78rem; color: #8a7a72; text-align: center; }

@media (max-width: 900px) { .appointment__grid { grid-template-columns: 1fr; gap: 50px; } }
@media (max-width: 560px) { .booking-form { padding: 26px; } .booking-form__row { grid-template-columns: 1fr; } }

/* Success Modal */
.modal { position: fixed; inset: 0; z-index: 3000; display: flex; align-items: center; justify-content: center; padding: 20px; background: rgba(15,11,9,.6); opacity: 0; visibility: hidden; transition: opacity .35s var(--ease), visibility .35s var(--ease); }
.modal.is-open { opacity: 1; visibility: visible; }
.modal__panel { background: var(--white); border-radius: var(--radius-lg); padding: 44px 38px; max-width: 420px; text-align: center; position: relative; box-shadow: var(--shadow-strong); transform: scale(.9); transition: transform .35s var(--ease); }
.modal.is-open .modal__panel { transform: scale(1); }
.modal__close { position: absolute; top: 16px; right: 20px; font-size: 1.6rem; color: #8a7a72; }
.modal__icon { width: 64px; height: 64px; border-radius: 50%; background: var(--grad-gold); color: var(--charcoal); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.modal__panel h3 { font-size: 1.4rem; margin-bottom: 10px; }
.modal__panel p { color: #6b5c54; margin-bottom: 24px; font-size: 0.94rem; }

/* -----------------------------------------------------------------
   13. CONTACT
----------------------------------------------------------------- */
.contact__grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 36px; }
.contact__card { background: var(--white); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-soft); display: flex; flex-direction: column; gap: 26px; }
.contact__item { display: flex; gap: 16px; align-items: flex-start; }
.contact__icon { width: 44px; height: 44px; border-radius: 12px; background: var(--blush-soft); color: var(--rose-gold-dk); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact__item h4 { font-size: 0.95rem; margin-bottom: 4px; }
.contact__item p { font-size: 0.9rem; color: #6b5c54; }
.contact__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 8px; }
.contact__map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); min-height: 380px; }

@media (max-width: 900px) { .contact__grid { grid-template-columns: 1fr; } .contact__card { padding: 30px; } }

/* -----------------------------------------------------------------
   14. FOOTER
----------------------------------------------------------------- */
.site-footer { background: var(--charcoal); color: #c9beb7; padding-top: 80px; }
.site-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 50px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,.08); }
.brand--footer .brand__type { color: var(--ivory); }
.site-footer__brand p { margin: 18px 0 20px; font-size: 0.9rem; max-width: 300px; }
.site-footer__social { display: flex; gap: 12px; }
.site-footer__social a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,.18); display: flex; align-items: center; justify-content: center; transition: all .3s var(--ease); }
.site-footer__social a:hover { background: var(--gold); color: var(--charcoal); border-color: var(--gold); }
.site-footer__col h4 { color: var(--ivory); font-size: 0.92rem; margin-bottom: 20px; letter-spacing: .04em; }
.site-footer__col ul { display: grid; gap: 12px; font-size: 0.88rem; }
.site-footer__col a:hover { color: var(--gold-light); }
.site-footer__contact li { color: #b4a89f; }

.site-footer__bottom-inner { display: flex; justify-content: space-between; align-items: center; padding: 26px 0; font-size: 0.82rem; flex-wrap: wrap; gap: 12px; }
.site-footer__legal { display: flex; gap: 22px; }
.site-footer__legal a:hover { color: var(--gold-light); }

@media (max-width: 900px) { .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 560px) { .site-footer__grid { grid-template-columns: 1fr; } }

/* -----------------------------------------------------------------
   15. FLOATING ACTIONS + BACK TO TOP
----------------------------------------------------------------- */
.floating-actions { position: fixed; right: 24px; bottom: 24px; z-index: 900; display: flex; flex-direction: column; gap: 14px; align-items: flex-end; }
.fab {
  width: 54px; height: 54px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-strong); transition: transform .3s var(--ease);
}
.fab:hover { transform: scale(1.08); }
.fab--call { background: var(--charcoal); color: var(--gold-light); }
.fab--whatsapp { background: #25D366; color: #fff; }
.fab--book { background: var(--grad-gold); color: var(--charcoal); width: auto; border-radius: var(--radius-pill); padding: 0 22px; gap: 8px; font-size: 0.85rem; font-weight: 600; }

.back-to-top {
  position: fixed; left: 24px; bottom: 24px; z-index: 900; width: 46px; height: 46px; border-radius: 50%;
  background: var(--white); color: var(--charcoal); box-shadow: var(--shadow-soft); display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transform: translateY(10px); transition: all .35s var(--ease);
}
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--charcoal); color: var(--gold-light); }

@media (max-width: 560px) {
  .fab--book span { display: none; }
  .fab--book { width: 54px; padding: 0; }
}

/* -----------------------------------------------------------------
   16. MISC
----------------------------------------------------------------- */
::selection { background: var(--gold); color: var(--charcoal); }
