/* ============================================================
   QUEEN Daynight Out Spa — Guwahati
   Luxury Botanical Wellness · Ivory + Sage + Forest + Gold
   ============================================================ */
:root {
  --ivory: #F8F6EF;
  --cream: #F1EDE2;
  --white: #FFFFFF;
  --sage: #A8B5A0;
  --sage-light: #DCE3D7;
  --forest: #294238;
  --forest-deep: #1E332B;
  --gold: #C5A45D;
  --gold-light: #D9C48A;
  --charcoal: #292A27;
  --muted: #6E716A;
  --border: #DDE1D8;
  --shadow-sm: 0 2px 12px rgba(41, 66, 56, .08);
  --shadow-md: 0 18px 45px rgba(41, 66, 56, .14);
  --shadow-lg: 0 30px 70px rgba(41, 66, 56, .20);
  --radius: 18px;
  --radius-lg: 28px;
  --header-h: 76px;
  --font-head: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --font-body: "DM Sans", "Inter", system-ui, -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--ivory);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--font-head); color: var(--forest); line-height: 1.08; margin: 0; font-weight: 600; }
h1 { font-size: clamp(2.6rem, 5.4vw, 4.4rem); letter-spacing: -.01em; }
h1 em, h2 em { font-style: italic; font-weight: 500; color: var(--forest); }
h2 { font-size: clamp(2rem, 3.8vw, 3rem); }
p { margin: 0 0 1rem; }
.container { width: min(1200px, calc(100% - 40px)); margin-inline: auto; }

/* Focus */
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 6px; }

/* Skip link */
.skip-link { position: absolute; left: -999px; top: 0; background: var(--forest); color: #fff; padding: 12px 18px; z-index: 200; border-radius: 0 0 12px 0; }
.skip-link:focus { left: 0; }

/* Eyebrows / labels */
.eyebrow {
  font-size: .8rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--forest); font-weight: 700; margin: 0 0 14px;
  display: flex; align-items: center; gap: 10px;
}
.eyebrow::before { content: ""; width: 34px; height: 1.5px; background: var(--gold); display: inline-block; }
.eyebrow-center { justify-content: center; }
.eyebrow-center::after { content: ""; width: 34px; height: 1.5px; background: var(--gold); display: inline-block; }
.eyebrow-light { color: var(--gold-light); }
.eyebrow-leaf { color: var(--gold); }
.gold-label {
  display: inline-block; font-size: .75rem; font-weight: 700; letter-spacing: .24em; text-transform: uppercase;
  color: var(--forest); background: linear-gradient(135deg, var(--gold-light), var(--gold));
  padding: 7px 14px; border-radius: 100px; margin: 0 0 16px;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body); font-weight: 700; font-size: .95rem; letter-spacing: .04em;
  padding: 14px 28px; border-radius: 100px; border: 1.5px solid transparent; cursor: pointer;
  text-decoration: none; min-height: 52px; transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-forest { background: var(--forest); color: #fff; box-shadow: 0 12px 28px rgba(41,66,56,.28); }
.btn-forest:hover { background: var(--forest-deep); box-shadow: 0 16px 34px rgba(41,66,56,.34); }
.btn-gold { background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: var(--forest-deep); box-shadow: 0 12px 28px rgba(197,164,93,.4); }
.btn-gold:hover { filter: brightness(1.05); }
.btn-outline { background: transparent; color: var(--forest); border-color: var(--forest); }
.btn-outline:hover { background: var(--forest); color: #fff; }
.btn-ghost-light { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.55); }
.btn-ghost-light:hover { background: #fff; color: var(--forest); }
.btn-sm { padding: 11px 22px; min-height: 46px; font-size: .88rem; }
.btn-lg { padding: 17px 34px; min-height: 58px; font-size: 1rem; }

.text-link {
  background: none; border: 0; cursor: pointer; padding: 0;
  color: var(--forest); font-weight: 700; font-size: 1rem; letter-spacing: .03em;
  text-decoration: none; display: inline-flex; gap: 8px; align-items: center;
  border-bottom: 1.5px solid var(--gold); padding-bottom: 4px;
}
.text-link span { transition: transform .25s ease; }
.text-link:hover span { transform: translateX(6px); }
.text-link-large { font-size: 1.1rem; }

/* ============ HEADER ============ */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  background: var(--white); transition: box-shadow .3s ease;
}
.site-header.scrolled { box-shadow: 0 8px 30px rgba(41,66,56,.12); }
.site-header.scrolled .header-inner { padding-top: 10px; padding-bottom: 10px; }
.header-inner {
  width: min(1300px, calc(100% - 32px)); margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding-top: 14px; padding-bottom: 14px; transition: padding .3s ease;
}
.header-line { display: block; height: 2px; background: linear-gradient(90deg, transparent, var(--sage-light) 15%, var(--sage) 50%, var(--sage-light) 85%, transparent); }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark {
  width: 46px; height: 46px; border-radius: 50%; flex: none;
  background: var(--forest); color: var(--gold-light);
  display: grid; place-items: center; font-family: var(--font-head); font-size: 1.7rem;
  border: 1.5px solid var(--gold);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-family: var(--font-head); font-weight: 700; font-size: 1.45rem; letter-spacing: .18em; color: var(--forest); }
.brand-sub { font-size: .78rem; letter-spacing: .08em; color: var(--muted); }
.main-nav { display: flex; align-items: center; gap: 26px; }
.nav-link { text-decoration: none; font-weight: 500; font-size: .98rem; color: var(--charcoal); position: relative; padding: 6px 0; }
.nav-link::after { content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0; background: var(--gold); transition: width .3s ease; }
.nav-link:hover::after, .nav-link.is-active::after { width: 100%; }
.nav-link.is-active { color: var(--forest); font-weight: 700; }
.nav-cta-mobile { display: none; }
.header-actions { display: flex; align-items: center; gap: 14px; }
.header-phone { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.phone-icon { width: 42px; height: 42px; border-radius: 50%; background: var(--sage-light); color: var(--forest); display: grid; place-items: center; }
.phone-icon svg { width: 20px; height: 20px; }
.phone-text { display: flex; flex-direction: column; line-height: 1.2; }
.phone-text small { font-size: .72rem; text-transform: uppercase; letter-spacing: .14em; color: var(--muted); }
.phone-text strong { color: var(--forest); font-size: 1.02rem; }
.nav-toggle { display: none; flex-direction: column; gap: 6px; background: none; border: 0; cursor: pointer; padding: 10px; min-width: 48px; min-height: 48px; justify-content: center; align-items: center; }
.nav-toggle span { width: 26px; height: 2.5px; background: var(--forest); border-radius: 3px; transition: transform .3s ease, opacity .3s ease; }

/* ============ HERO ============ */
.hero { padding-top: var(--header-h); background: var(--ivory); position: relative; }
.hero-media { position: relative; height: clamp(340px, 52vw, 560px); overflow: hidden; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(41,66,56,.06), transparent 40%, rgba(248,246,239,.35)); }
.hero-leaf-shadow {
  position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background:
    radial-gradient(220px 220px at 8% 20%, rgba(41,66,56,.18), transparent 70%),
    radial-gradient(300px 300px at 92% 12%, rgba(168,181,160,.55), transparent 70%);
  mix-blend-mode: multiply;
}
.hero-badge {
  position: absolute; right: max(20px, calc((100% - 1200px)/2 + 20px)); bottom: 26px;
  background: var(--sage); color: #fff; font-weight: 700; font-size: .82rem; letter-spacing: .14em;
  padding: 12px 20px; border-radius: 100px; display: flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow-md); z-index: 2;
}
.hero-badge .dot { width: 9px; height: 9px; border-radius: 50%; background: #fff; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }
.hero-wrap { width: min(1200px, calc(100% - 40px)); margin-inline: auto; position: relative; z-index: 3; }
.hero-card {
  background: rgba(255,255,255,.94); backdrop-filter: blur(8px);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: clamp(28px, 4vw, 54px);
  max-width: 640px; margin-top: -110px; position: relative;
}
.hero-card::before { content: ""; position: absolute; top: 0; left: 34px; right: 34px; height: 3px; background: linear-gradient(90deg, var(--sage), var(--gold), var(--sage)); border-radius: 0 0 6px 6px; }
.hero-sub { font-size: 1.12rem; color: var(--muted); max-width: 46ch; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin: 22px 0 16px; }
.hero-trust { display: flex; gap: 12px; align-items: center; font-size: .88rem; letter-spacing: .12em; text-transform: uppercase; color: var(--forest); font-weight: 600; margin: 0; }
.hero-trust i { color: var(--gold); font-style: normal; }

/* ============ STRIP ============ */
.strip { background: var(--white); border-block: 1px solid var(--border); padding: 54px 0; }
.strip-head { text-align: center; margin-bottom: 30px; }
.strip-head h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); }
.strip-head p { color: var(--muted); margin: 8px 0 0; }
.strip-grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.strip-item {
  background: var(--ivory); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px 18px; text-align: center; display: flex; flex-direction: column; gap: 6px; align-items: center;
  transition: transform .25s ease, box-shadow .25s ease;
}
.strip-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.strip-icon { width: 54px; height: 54px; border-radius: 50%; background: var(--sage-light); color: var(--forest); display: grid; place-items: center; margin-bottom: 6px; }
.strip-icon svg { width: 26px; height: 26px; }
.strip-item strong { font-family: var(--font-head); font-size: 1.25rem; color: var(--forest); }
.strip-item span:last-child { font-size: .92rem; color: var(--muted); }

/* ============ INTRO ============ */
.intro { background: var(--white); padding: 90px 0; }
.intro-grid { display: grid; grid-template-columns: 90px 1.1fr 1fr; gap: 40px; align-items: start; }
.vertical-label { margin: 8px 0 0; writing-mode: vertical-rl; transform: rotate(180deg); font-size: .78rem; font-weight: 700; letter-spacing: .32em; text-transform: uppercase; color: var(--sage); }
.intro-title { font-size: clamp(2.2rem, 4.4vw, 3.4rem); }
.intro-copy p { color: var(--muted); font-size: 1.08rem; }
.intro-keywords { background: var(--ivory); border-left: 3px solid var(--gold); padding: 14px 18px; border-radius: 0 14px 14px 0; font-size: 1rem !important; }

/* ============ FEATURE ============ */
.feature { background: var(--ivory); padding: 90px 0; overflow: hidden; }
.feature-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: center; }
.feature-media { position: relative; padding-bottom: 70px; }
.feature-main { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); width: 100%; height: 480px; object-fit: cover; }
.feature-small {
  position: absolute; right: -14px; bottom: 0; width: 46%;
  border-radius: 20px; border: 8px solid var(--ivory); box-shadow: var(--shadow-md);
  height: 240px; object-fit: cover;
}
.feature-arch { position: absolute; left: -30px; top: -30px; width: 170px; height: 170px; border: 1.5px solid var(--gold); border-radius: 50% 50% 0 0; opacity: .5; pointer-events: none; }
.feature-copy h2 { margin-bottom: 16px; }
.feature-copy > p { color: var(--muted); font-size: 1.08rem; }
.feature-list { list-style: none; margin: 22px 0; padding: 0; display: grid; gap: 12px; }
.feature-list li { background: var(--white); border: 1px solid var(--border); border-radius: 14px; padding: 13px 18px; font-size: .99rem; }
.feature-list strong { color: var(--forest); }
.feature-ctas { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }

/* ============ SERVICES ============ */
.services { background: linear-gradient(180deg, #EDF1E8, var(--sage-light)); padding: 96px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 46px; }
.section-sub { color: var(--muted); font-size: 1.1rem; }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.service-card {
  background: var(--white); border-radius: 22px; overflow: hidden; border: 1px solid rgba(41,66,56,.1);
  box-shadow: var(--shadow-sm); transition: transform .3s ease, box-shadow .3s ease;
  display: flex; flex-direction: column; position: relative;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.service-media { position: relative; height: 230px; overflow: hidden; }
.service-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.service-card:hover .service-media img { transform: scale(1.08); }
.service-num { position: absolute; left: 16px; bottom: -2px; font-family: var(--font-head); font-size: 3rem; color: var(--gold); text-shadow: 0 2px 12px rgba(255,255,255,.9); line-height: 1; }
.service-tag { position: absolute; top: 14px; right: 14px; background: var(--forest); color: var(--gold-light); font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; padding: 7px 13px; border-radius: 100px; }
.service-body { padding: 22px 22px 26px; display: flex; flex-direction: column; gap: 8px; flex: 1; position: relative; }
.service-body h3 { font-size: 1.5rem; }
.service-body p { color: var(--muted); font-size: .99rem; flex: 1; }
.service-link { align-self: flex-start; background: none; border: 0; cursor: pointer; color: var(--forest); font-weight: 700; font-size: .98rem; padding: 6px 0; display: inline-flex; gap: 8px; }
.service-link:hover { color: var(--gold); }
.service-rule { display: block; height: 2px; width: 44px; background: var(--gold); border-radius: 4px; transition: width .35s ease; margin-top: 4px; }
.service-card:hover .service-rule { width: 100%; }
.services-note { text-align: center; color: var(--forest); margin: 30px 0 0; font-size: .99rem; }

/* ============ HOME MASSAGE ============ */
.home-massage { background: var(--forest); color: #EDEFE9; padding: 96px 0; position: relative; overflow: hidden; }
.botanical { position: absolute; border: 1.5px solid rgba(217,196,138,.28); pointer-events: none; }
.bg-leaf-1 { width: 420px; height: 420px; border-radius: 50%; right: -140px; top: -140px; }
.bg-leaf-1::after { content: ""; position: absolute; inset: 40px; border: 1px dashed rgba(217,196,138,.25); border-radius: 50%; }
.bg-leaf-2 { width: 300px; height: 300px; border-radius: 50% 50% 0 0; left: -100px; bottom: -100px; opacity: .5; }
.hm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; }
.home-massage h2 { color: #fff; }
.home-massage h2 em { color: var(--gold-light); }
.hm-sub { color: #C9CFC2; font-size: 1.12rem; }
.hm-list { list-style: none; margin: 26px 0; padding: 0; display: grid; gap: 14px; }
.hm-list li { display: flex; align-items: center; gap: 14px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14); padding: 14px 18px; border-radius: 14px; font-weight: 500; }
.check { width: 30px; height: 30px; flex: none; border-radius: 50%; background: var(--gold); color: var(--forest-deep); display: grid; place-items: center; font-weight: 900; }
.hm-ctas { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.hm-phone { color: var(--gold-light); font-weight: 600; text-decoration: none; border-bottom: 1px solid var(--gold); padding-bottom: 2px; }
.hm-media { position: relative; }
.hm-media img { border-radius: var(--radius-lg); height: 480px; width: 100%; object-fit: cover; box-shadow: var(--shadow-lg); }
.hm-card { position: absolute; left: 20px; bottom: 20px; right: 20px; background: rgba(248,246,239,.96); color: var(--forest); border-radius: 16px; padding: 18px 22px; box-shadow: var(--shadow-md); display: flex; flex-direction: column; gap: 2px; }
.hm-card span { color: var(--muted); font-size: .92rem; }

/* ============ WHY ============ */
.why { background: var(--white); padding: 96px 0; }
.why-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 60px; align-items: start; }
.why-list { list-style: none; margin: 34px 0 0; padding: 0; }
.why-list li { display: flex; gap: 24px; padding: 22px 0; border-bottom: 1px solid var(--border); align-items: baseline; }
.why-list li:first-child { border-top: 1px solid var(--border); }
.why-num { font-family: var(--font-head); font-size: 2.1rem; color: var(--gold); font-weight: 600; min-width: 60px; }
.why-list strong { display: block; font-family: var(--font-head); font-size: 1.4rem; color: var(--forest); font-weight: 600; }
.why-list span:last-child, .why-list div > span { color: var(--muted); font-size: .98rem; }
.why-media { position: sticky; top: calc(var(--header-h) + 24px); }
.why-media img { border-radius: var(--radius-lg); height: 640px; width: 100%; object-fit: cover; box-shadow: var(--shadow-md); }
.why-badge { position: absolute; left: 22px; bottom: 22px; background: rgba(41,66,56,.92); color: #fff; padding: 16px 22px; border-radius: 16px; border: 1px solid rgba(217,196,138,.5); display: flex; flex-direction: column; }
.why-media { position: relative; }
.why-badge strong { font-family: var(--font-head); letter-spacing: .2em; color: var(--gold-light); }
.why-badge span { font-size: .85rem; color: #D8DCD2; }

/* ============ STEPS ============ */
.steps { background: var(--sage-light); padding: 90px 0; }
.steps-grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.step { text-align: center; padding: 10px 30px; position: relative; }
.step + .step::before { content: ""; position: absolute; left: -4%; top: 44px; width: 108%; height: 1.5px; background: repeating-linear-gradient(90deg, var(--forest) 0 8px, transparent 8px 14px); opacity: .3; z-index: 0; }
.step-num { position: relative; z-index: 1; width: 88px; height: 88px; margin: 0 auto 18px; border-radius: 50%; background: var(--white); border: 1.5px solid var(--gold); color: var(--forest); display: grid; place-items: center; font-family: var(--font-head); font-size: 1.7rem; box-shadow: var(--shadow-sm); }
.step strong { display: block; font-family: var(--font-head); font-size: 1.45rem; color: var(--forest); margin-bottom: 6px; }
.step span:last-child { color: var(--muted); }
.step a { color: var(--forest); font-weight: 700; }
.steps-cta { text-align: center; margin-top: 36px; }

/* ============ GALLERY ============ */
.gallery { background: var(--ivory); padding: 96px 0; }
.gallery-head { display: flex; justify-content: space-between; align-items: end; gap: 24px; margin-bottom: 36px; flex-wrap: wrap; }
.gallery-sub { color: var(--muted); max-width: 34ch; margin: 0; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 210px; gap: 16px; }
.g-item { border: 0; padding: 0; cursor: zoom-in; border-radius: 18px; overflow: hidden; background: var(--cream); position: relative; min-height: 44px; }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.g-item:hover img { transform: scale(1.07); }
.g-item::after { content: "＋"; position: absolute; right: 12px; bottom: 8px; width: 34px; height: 34px; border-radius: 50%; background: rgba(41,66,56,.8); color: #fff; display: grid; place-items: center; opacity: 0; transition: opacity .3s ease; }
.g-item:hover::after, .g-item:focus-visible::after { opacity: 1; }
.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }

/* ============ TESTIMONIALS ============ */
.testimonials { background: var(--white); padding: 96px 0; border-top: 1px solid var(--border); }
.testi-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 24px; }
.testi-featured { margin: 0; background: var(--forest); color: #fff; border-radius: var(--radius-lg); padding: clamp(30px, 4vw, 52px); position: relative; overflow: hidden; }
.testi-featured::after { content: ""; position: absolute; right: -70px; top: -70px; width: 220px; height: 220px; border: 1.5px solid rgba(217,196,138,.4); border-radius: 50%; }
.quote-mark { font-family: var(--font-head); font-size: 4.5rem; color: var(--gold); line-height: 1; display: block; }
.testi-featured p { font-family: var(--font-head); font-size: clamp(1.5rem, 2.6vw, 2rem); font-style: italic; }
.testi-featured footer, .testi-small footer { display: flex; flex-direction: column; gap: 2px; margin-top: 18px; }
.testi-featured footer span, .testi-small footer span { color: var(--sage); font-size: .88rem; }
.testi-side { display: grid; gap: 24px; }
.testi-small { margin: 0; background: var(--ivory); border: 1px solid var(--border); border-radius: 20px; padding: 30px; }
.testi-small p { font-size: 1.12rem; color: var(--forest); }
.testi-small footer strong { color: var(--forest); }

/* ============ LOCATION ============ */
.location { background: var(--ivory); padding: 96px 0; }
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.loc-address { display: flex; gap: 14px; font-style: normal; font-size: 1.15rem; color: var(--forest); background: var(--white); border: 1px solid var(--border); padding: 20px 22px; border-radius: 16px; margin: 22px 0 14px; line-height: 1.6; }
.pin { width: 44px; height: 44px; flex: none; border-radius: 50%; background: var(--sage-light); display: grid; place-items: center; color: var(--forest); }
.pin svg { width: 22px; height: 22px; }
.loc-phone { font-size: 1.7rem; font-weight: 700; color: var(--forest); text-decoration: none; letter-spacing: .02em; }
.loc-phone:hover { color: var(--gold); }
.loc-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin: 22px 0; }
.loc-note { color: var(--muted); font-size: .99rem; }
.location-card { background: var(--sage-light); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-md); }
.loc-map iframe { width: 100%; height: 300px; border: 0; display: block; filter: saturate(.85); }
.loc-card-body { padding: 26px 28px 30px; display: flex; flex-direction: column; gap: 6px; }
.loc-card-body strong { font-family: var(--font-head); font-size: 1.4rem; color: var(--forest); }
.loc-card-body span { color: var(--muted); }

/* ============ FINAL CTA ============ */
.final-cta { background: linear-gradient(135deg, var(--forest) 0%, var(--forest-deep) 70%); padding: 100px 0; position: relative; overflow: hidden; text-align: center; }
.cta-line-art { position: absolute; inset: 24px; border: 1px solid rgba(217,196,138,.3); border-radius: 26px; pointer-events: none; }
.cta-line-art::before, .cta-line-art::after { content: "❧"; position: absolute; color: var(--gold); font-size: 1.6rem; background: var(--forest-deep); padding: 0 14px; }
.cta-line-art::before { top: -18px; left: 50%; transform: translateX(-50%); }
.cta-line-art::after { bottom: -18px; left: 50%; transform: translateX(-50%) rotate(180deg); }
.final-inner { position: relative; max-width: 680px; }
.final-cta h2 { color: #fff; }
.final-cta h2 em { color: var(--gold-light); }
.final-cta p { color: #C9CFC2; font-size: 1.12rem; }
.final-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 28px; }

/* ============ FOOTER ============ */
.footer { background: var(--cream); border-top: 1px solid var(--border); padding: 70px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 40px; padding-bottom: 46px; }
.footer-logo { font-family: var(--font-head); font-size: 2.2rem; letter-spacing: .22em; color: var(--forest); margin: 0; font-weight: 700; }
.footer-sub { color: var(--forest); font-weight: 600; margin: 6px 0; }
.footer-tag { color: var(--muted); font-size: .95rem; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links strong, .footer-contact strong { font-size: .82rem; letter-spacing: .2em; text-transform: uppercase; color: var(--forest); margin-bottom: 8px; }
.footer-links a { text-decoration: none; color: var(--charcoal); width: fit-content; }
.footer-links a:hover { color: var(--gold); }
.footer-contact address { font-style: normal; color: var(--charcoal); }
.footer-contact a { color: var(--forest); font-weight: 700; text-decoration: none; font-size: 1.2rem; }
.footer-bottom { border-top: 1px solid var(--border); padding: 20px; text-align: center; }
.footer-bottom p { margin: 0; font-size: .9rem; color: var(--muted); }

/* ============ STICKY / TO TOP / LIGHTBOX ============ */
.sticky-cta { display: none; position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 90; background: var(--white); border: 1px solid var(--border); border-radius: 18px; box-shadow: 0 14px 40px rgba(41,66,56,.25); padding: 10px; gap: 10px; }
.sticky-btn { flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 54px; border-radius: 13px; font-weight: 700; text-decoration: none; font-size: .98rem; border: 0; cursor: pointer; }
.sticky-btn svg { width: 22px; height: 22px; }
.sticky-call { background: var(--forest); color: #fff; }
.sticky-wa { background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: var(--forest-deep); }

.to-top {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  width: 52px; height: 52px; border-radius: 50%; border: 1.5px solid var(--gold);
  background: var(--forest); color: #fff; cursor: pointer; display: grid; place-items: center;
  box-shadow: var(--shadow-md); transition: transform .25s ease, opacity .25s ease;
}
.to-top:hover { transform: translateY(-3px); }
.to-top[hidden] { display: none; }
.to-top svg { width: 22px; height: 22px; }

.lightbox { position: fixed; inset: 0; z-index: 300; display: grid; place-items: center; padding: 24px; }
.lightbox[hidden] { display: none; }
.lightbox-backdrop { position: absolute; inset: 0; background: rgba(30,51,43,.94); }
.lightbox-figure { position: relative; margin: 0; max-width: min(1000px, 92vw); }
.lightbox-figure img { max-height: 76vh; width: auto; max-width: 100%; margin-inline: auto; border-radius: 16px; border: 1px solid rgba(217,196,138,.5); box-shadow: var(--shadow-lg); }
.lightbox-figure figcaption { text-align: center; color: #EDEFE9; margin-top: 14px; font-size: .95rem; }
.lb-btn { position: absolute; background: rgba(255,255,255,.1); color: #fff; border: 1.5px solid rgba(255,255,255,.5); border-radius: 50%; width: 52px; height: 52px; cursor: pointer; font-size: 1.5rem; display: grid; place-items: center; transition: background .25s ease; }
.lb-btn:hover { background: var(--gold); color: var(--forest-deep); border-color: var(--gold); }
.lb-close { top: 22px; right: 22px; }
.lb-prev { left: 18px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 18px; top: 50%; transform: translateY(-50%); }

/* ============ REVEAL ANIMATIONS ============ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1080px) {
  .main-nav { gap: 18px; }
  .nav-link { font-size: .92rem; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 960px) {
  :root { --header-h: 68px; }
  .phone-text { display: none; }
  .header-actions .btn-forest { display: none; }
  .nav-toggle { display: inline-flex; }
  .main-nav {
    position: fixed; top: var(--header-h); left: 0; right: 0;
    background: var(--white); flex-direction: column; align-items: stretch; gap: 4px;
    padding: 12px 20px 22px; border-bottom: 1px solid var(--border);
    box-shadow: 0 24px 40px rgba(41,66,56,.16);
    transform: translateY(-130%); transition: transform .35s ease;
  }
  .main-nav.open { transform: none; }
  .nav-link { padding: 13px 6px; border-bottom: 1px solid var(--cream); font-size: 1.05rem; }
  .nav-cta-mobile { display: grid; gap: 10px; margin-top: 14px; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }
  .intro-grid { grid-template-columns: 1fr; gap: 18px; }
  .vertical-label { writing-mode: horizontal-tb; transform: none; }
  .feature-grid, .hm-grid, .why-grid, .location-grid, .testi-grid { grid-template-columns: 1fr; }
  .feature-main { height: 380px; }
  .why-media { position: relative; top: 0; }
  .why-media img { height: 440px; }
  .hm-media img { height: 400px; }
  .steps-grid { grid-template-columns: 1fr; gap: 26px; }
  .step + .step::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .hero-media { height: 300px; }
  .hero-card { margin-top: -60px; padding: 26px 22px; }
  .hero-ctas .btn { flex: 1 1 100%; }
  .hero-badge { bottom: 14px; font-size: .72rem; padding: 10px 16px; }
  .strip-grid { grid-template-columns: repeat(2, 1fr); }
  .service-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 170px; }
  .g-wide { grid-column: span 2; }
  .intro, .feature, .services, .home-massage, .why, .steps, .gallery, .testimonials, .location { padding: 64px 0; }
  .feature-small { right: 6px; height: 170px; }
  .feature-main { height: 320px; }
  .loc-ctas .btn { flex: 1 1 100%; }
  .final-ctas .btn { flex: 1 1 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .sticky-cta { display: flex; }
  .to-top { bottom: 96px; }
  body { padding-bottom: 84px; }
  .lb-prev { left: 8px; } .lb-next { right: 8px; }
}
@media (min-width: 1440px) {
  .container { width: min(1280px, calc(100% - 60px)); }
  h1 { font-size: 4.8rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
