:root {
  --ink: #14110d;
  --ink-2: #1d1811;
  --ink-3: #262019;
  --gold: #c19a56;
  --gold-light: #e3c07f;
  --gold-dim: #8a6f3e;
  --cream: #f7f2e9;
  --paper: #fffdf8;
  --text: #211b14;
  --muted: #8a8074;
  --muted-light: #a89f8f;
  --border: #eee5d3;
  --border-dark: #332b20;
  font-size: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; width: 100%; }
body {
  margin: 0;
  overflow-x: hidden;
  width: 100%;
  position: relative;
  font-family: "Manrope", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
}

::-webkit-scrollbar { width: 12px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 8px; border: 3px solid var(--cream); }
::-webkit-scrollbar-thumb:hover { background: var(--gold-dim); }
html { scrollbar-color: var(--gold) var(--cream); scrollbar-width: thin; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); }
.reveal.in-view { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

.back-to-top { position: fixed; left: 22px; bottom: 22px; z-index: 60; width: 48px; height: 48px; display: grid; place-items: center; border-radius: 50%; background: var(--ink); color: var(--gold-light); border: 1px solid var(--border-dark); box-shadow: 0 14px 34px rgba(0,0,0,.35); cursor: pointer; opacity: 0; pointer-events: none; transform: translateY(10px); transition: opacity .25s, transform .25s; }
.back-to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top:hover { background: var(--gold); color: var(--ink); }
@media (max-width: 600px) { .back-to-top { left: 16px; bottom: 16px; width: 44px; height: 44px; } }

.whatsapp-contact { position: fixed; right: 22px; bottom: 22px; z-index: 60; width: 56px; height: 56px; display: grid; place-items: center; border-radius: 50%; background: #25d366; color: #fff; box-shadow: 0 14px 34px rgba(13, 125, 61, .35); transition: transform .2s ease, background .2s ease, box-shadow .2s ease; }
.whatsapp-contact svg { width: 30px; height: 30px; fill: currentColor; }
.whatsapp-contact:hover { background: #1fbd5b; transform: translateY(-3px) scale(1.04); box-shadow: 0 18px 38px rgba(13, 125, 61, .46); }
.whatsapp-contact:focus-visible { outline: 3px solid var(--gold-light); outline-offset: 4px; }
.whatsapp-contact::after { content: attr(data-tooltip); position: absolute; right: 68px; top: 50%; transform: translateY(-50%) translateX(6px); white-space: nowrap; padding: 7px 10px; border-radius: 3px; background: var(--ink); color: #fff; font-size: 12px; font-weight: 700; opacity: 0; pointer-events: none; transition: opacity .2s ease, transform .2s ease; }
.whatsapp-contact:hover::after, .whatsapp-contact:focus-visible::after { opacity: 1; transform: translateY(-50%) translateX(0); }
@media (max-width: 600px) { .whatsapp-contact { right: 16px; bottom: 16px; width: 50px; height: 50px; } .whatsapp-contact svg { width: 27px; height: 27px; } .whatsapp-contact::after { display: none; } }

.shell { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

h1, h2, h3 { font-family: "Playfair Display", Georgia, serif; margin: 0; color: var(--text); font-weight: 600; letter-spacing: .2px; }
h1 { font-weight: 600; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
img { display: block; max-width: 100%; }

.eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 12.5px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold-dim); }
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--gold); display: inline-block; }
.eyebrow.on-dark { color: var(--gold-light); }

.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 30px; border-radius: 2px; font-weight: 700; font-size: 13.5px;
  letter-spacing: .8px; text-transform: uppercase;
  background: var(--gold); color: var(--ink); border: 1px solid var(--gold);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.button:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(193,154,86,.35); }
.button-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.45); }
.button-outline:hover { background: rgba(255,255,255,.08); border-color: #fff; transform: translateY(-2px); }
.button-dark { background: var(--ink); color: var(--gold-light); border-color: var(--ink); }
.button-dark:hover { background: var(--ink-2); transform: translateY(-2px); }

/* Header */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(20,17,13,.85); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(255,255,255,.08); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 18px 24px; }
.logo { display: inline-flex; align-items: center; gap: 12px; white-space: nowrap; }
.logo-mark { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--gold-dim); display: grid; place-items: center; color: var(--gold-light); font-family: "Playfair Display", serif; font-size: 19px; }
.logo-text { color: #fff; font-family: "Playfair Display", serif; font-size: 21px; letter-spacing: .5px; }
.logo-text small { display: block; font-family: "Manrope", sans-serif; font-size: 10px; letter-spacing: 2px; color: var(--muted-light); text-transform: uppercase; font-weight: 600; margin-top: 1px; }
.nav { display: flex; gap: 30px; }
.nav a { position: relative; font-size: 13.5px; font-weight: 600; letter-spacing: .3px; color: rgba(255,255,255,.72); padding-bottom: 4px; }
.nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 1px; background: var(--gold); transition: right .25s ease; }
.nav a:hover { color: #fff; }
.nav a:hover::after { right: 0; }
.nav a.active { color: var(--gold-light); }
.nav a.active::after { right: 0; }
.header-actions { display: flex; align-items: center; gap: 18px; }
.header-actions .phone-link { display: none; }
.nav-toggle { display: none; flex-direction: column; gap: 4px; background: none; border: none; padding: 8px; cursor: pointer; }
.nav-toggle span { width: 22px; height: 2px; background: #fff; display: block; }

@media (min-width: 860px) {
  .header-actions .phone-link { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 600; color: rgba(255,255,255,.75); }
  .header-actions .phone-link:hover { color: var(--gold-light); }
}

@media (max-width: 900px) {
  .nav { position: fixed; top: 68px; left: 0; right: 0; height: calc(100vh - 68px); height: calc(100dvh - 68px); background: var(--ink); flex-direction: column; align-items: flex-start; padding: 28px 24px; gap: 22px; transform: translateX(100%); transition: transform .3s ease; overflow-y: auto; }
  .nav.open { transform: translateX(0); }
  .nav a { font-size: 17px; }
  .nav-toggle { display: flex; }
  .header-inner { padding: 14px 16px; gap: 10px; }
  .header-actions { gap: 8px; }
  .header-actions .button { padding: 11px 14px; font-size: 11.5px; }
  .logo-text { font-size: 17px; }
  .logo-mark { width: 32px; height: 32px; font-size: 16px; }
}

@media (max-width: 360px) {
  .logo-text small { display: none; }
}

/* Small phone layout: keep the header and the primary actions inside the viewport. */
@media (max-width: 600px) {
  .shell { padding-left: 18px; padding-right: 18px; }
  .header-inner { min-width: 0; padding: 12px 16px; }
  .logo { min-width: 0; gap: 9px; }
  .logo-text { font-size: 16px; letter-spacing: .25px; }
  .logo-text small { font-size: 9px; letter-spacing: 1.4px; }
  .header-actions .button { display: none; }
  .hero { min-height: auto; }
  .hero-content { padding: 112px 0 78px; }
  .hero h1 { font-size: clamp(38px, 10.8vw, 42px); }
  .hero-sub { margin-top: 20px; font-size: 16px; line-height: 1.65; }
  .hero-actions { margin-top: 30px; display: grid; grid-template-columns: 1fr; gap: 12px; }
  .hero-actions .button { width: 100%; }
  .hero-meta { margin-top: 42px; gap: 26px; }
  .trust-row { margin-top: 30px; gap: 15px; }
  .trust-item { width: 100%; font-size: 12.5px; }
  .section { padding: 72px 0; }
  .section-heading { margin-bottom: 38px; }
  .service-card { padding: 28px 24px; }
  .page-hero { padding: 118px 0 58px; }
  .page-hero h1 { font-size: 38px; }
  .note-box { gap: 14px; padding: 22px; }
  .voucher-band { padding: 30px 22px; }
  .booking-frame-wrap { padding: 6px; }
  .booking-loading { inset: 6px; }
}

/* Hero */
.hero { position: relative; min-height: 92vh; display: flex; align-items: center; overflow: hidden; background: var(--ink); }
.hero-bg { position: absolute; inset: 0; background: radial-gradient(120% 100% at 15% 0%, #2a2015 0%, #14110d 55%, #0e0c09 100%); }
.hero-bg::after { content: ""; position: absolute; inset: 0; background-image: radial-gradient(1px 1px at 20% 30%, rgba(193,154,86,.25) 1px, transparent 1px), radial-gradient(1px 1px at 70% 60%, rgba(193,154,86,.18) 1px, transparent 1px), radial-gradient(1px 1px at 40% 80%, rgba(193,154,86,.15) 1px, transparent 1px); background-size: 340px 340px; }
.hero-content { position: relative; z-index: 2; padding: 160px 0 120px; }
.hero-content .eyebrow { margin-bottom: 22px; }
.hero h1 { font-size: clamp(40px, 6vw, 74px); line-height: 1.06; color: #fff; max-width: 780px; }
.hero h1 em { color: var(--gold-light); font-style: italic; }
.hero-sub { margin-top: 26px; font-size: 18px; color: rgba(255,255,255,.68); max-width: 540px; line-height: 1.7; }
.hero-actions { margin-top: 42px; display: flex; gap: 18px; flex-wrap: wrap; }
.first-massage-offer { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 18px 26px; padding: 19px 24px; border: 1px solid; }
.first-massage-offer span { font-size: 10.5px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; white-space: nowrap; }
.first-massage-offer strong { font-family: "Playfair Display", Georgia, serif; font-size: clamp(22px, 2.5vw, 30px); line-height: 1.1; }
.first-massage-offer p { font-size: 13.5px; line-height: 1.55; max-width: 265px; }
.first-massage-offer-dark { margin-bottom: 32px; border-color: rgba(227,192,127,.42); background: rgba(193,154,86,.1); color: #fff; }
.first-massage-offer-dark span { color: var(--gold-light); }
.first-massage-offer-dark strong { color: #fff; }
.first-massage-offer-dark p { color: rgba(255,255,255,.68); }
.first-massage-offer-light { margin: 0 auto 28px; max-width: 820px; border-color: var(--border); background: #fffaf0; color: var(--text); }
.first-massage-offer-light span { color: var(--gold-dim); }
.first-massage-offer-light strong { color: var(--ink); }
.first-massage-offer-light p { color: var(--muted); }
.first-massage-offer-hero { max-width: 760px; margin-top: 30px; margin-bottom: 0; }
@media (max-width: 700px) { .first-massage-offer { grid-template-columns: 1fr; gap: 7px; padding: 18px 20px; } .first-massage-offer p { max-width: none; } .first-massage-offer-hero { margin-top: 24px; } }
.hero-meta { margin-top: 64px; display: flex; gap: 40px; flex-wrap: wrap; }
.hero-meta div { display: flex; flex-direction: column; gap: 4px; }
.hero-meta strong { font-family: "Playfair Display", serif; font-size: 30px; color: var(--gold-light); font-weight: 600; }
.hero-meta span { font-size: 12.5px; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,.5); }

/* Photo placeholder */
.photo-slot { position: relative; background: linear-gradient(155deg, #241f18, #161310); border: 1px solid rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.photo-slot img { width: 100%; height: 100%; object-fit: cover; }
.photo-slot .photo-placeholder { display: flex; flex-direction: column; align-items: center; gap: 10px; color: rgba(255,255,255,.32); padding: 24px; text-align: center; }
.photo-slot .photo-placeholder svg { width: 34px; height: 34px; opacity: .7; }
.photo-slot .photo-placeholder span { font-size: 11.5px; letter-spacing: 1.2px; text-transform: uppercase; font-weight: 600; }
.photo-slot.light { background: linear-gradient(155deg, #f1e8d4, #e6d9bd); border-color: var(--border); }
.photo-slot.light .photo-placeholder { color: rgba(33,27,20,.35); }

/* Sections */
.section { padding: 110px 0; }
.section.dark { background: var(--ink); color: #fff; }
.section.dark .muted-text { color: rgba(255,255,255,.6); }
.section.dark h1, .section.dark h2, .section.dark h3 { color: #fff; }
.section.dark .quote-block p.quote { color: #fff; }
.section.dark .quote-block .attribution { color: rgba(255,255,255,.55); }
.section.dark .faq-item summary { color: var(--text); }
.section.dark .about-copy p { color: rgba(255,255,255,.6); }
.section.dark .about-list li { color: #fff; }
.section.paper { background: var(--paper); }
.section-heading { max-width: 640px; margin-bottom: 56px; }
.section-heading h2 { font-size: clamp(30px, 4vw, 44px); margin-top: 18px; line-height: 1.15; }
.section-heading p { margin-top: 18px; font-size: 16.5px; color: var(--muted); line-height: 1.75; }
.muted-text { color: var(--muted); }

/* About split */
.about-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; align-items: center; }
.about-grid .photo-slot { aspect-ratio: 4/5; border-radius: 4px; }
.photo-strip { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.photo-strip .photo-slot { aspect-ratio: 4/5; border-radius: 4px; }
.gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.gallery-grid .photo-slot { aspect-ratio: 3 / 4; border-radius: 6px; transition: transform .25s ease; cursor: zoom-in; }
.gallery-grid .photo-slot:hover { transform: scale(1.02); }

/* Lightbox */
.lightbox { position: fixed; inset: 0; background: rgba(10,9,7,.94); display: none; align-items: center; justify-content: center; z-index: 200; padding: 50px 24px; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 100%; max-height: 100%; border-radius: 4px; box-shadow: 0 30px 80px rgba(0,0,0,.5); }
.lightbox-close { position: fixed; top: 22px; right: 22px; width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.2); color: #fff; font-size: 16px; cursor: pointer; display: grid; place-items: center; }
.lightbox-close:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }
@media (max-width: 600px) { .lightbox { padding: 70px 16px 24px; } .lightbox-close { top: 14px; right: 14px; width: 40px; height: 40px; } }
@media (max-width: 700px) { .gallery-grid { grid-template-columns: repeat(2,1fr); gap: 10px; } }
@media (max-width: 700px) { .photo-strip { grid-template-columns: 1fr; } }
.about-copy p { margin-top: 20px; font-size: 16.5px; color: var(--muted); line-height: 1.8; }
.about-list { margin-top: 32px; display: flex; flex-direction: column; gap: 16px; }
.about-list li { display: flex; align-items: center; gap: 14px; font-size: 15px; color: var(--text); }
.about-list li .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
@media (max-width: 860px) { .about-grid { grid-template-columns: 1fr; gap: 40px; } }

/* Services */
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; background: var(--border-dark); border: 1px solid var(--border-dark); }
.service-card { background: var(--ink-2); padding: 40px; position: relative; transition: background .25s ease; }
.service-card:hover { background: var(--ink-3); }
.service-card .service-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; }
.service-card h3 { color: #fff; font-size: 25px; }
.service-card .price { font-family: "Playfair Display", serif; font-size: 26px; color: var(--gold-light); white-space: nowrap; }
.service-card .duration { display: inline-block; margin-top: 10px; font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: var(--muted-light); }
.service-card p.desc { margin-top: 18px; color: rgba(255,255,255,.55); font-size: 14.5px; line-height: 1.7; }
.service-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.service-tags span { font-size: 10.5px; letter-spacing: .5px; text-transform: uppercase; font-weight: 700; padding: 5px 11px; border-radius: 99px; border: 1px solid rgba(255,255,255,.16); color: rgba(255,255,255,.6); }
@media (max-width: 700px) { .service-grid { grid-template-columns: 1fr; } .service-card { padding: 32px; } }

/* Feature trio */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 44px; }
.feature-card .num { font-family: "Playfair Display", serif; font-size: 44px; color: var(--gold); line-height: 1; }
.feature-card h3 { margin-top: 18px; font-size: 21px; }
.feature-card p { margin-top: 12px; color: var(--muted); font-size: 15px; line-height: 1.75; }
@media (max-width: 860px) { .feature-grid { grid-template-columns: 1fr; gap: 36px; } }

/* CTA band */
.cta-band { background: var(--ink); position: relative; overflow: hidden; padding: 90px 0; }
.cta-band-inner { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-band h2 { color: #fff; font-size: clamp(28px, 3.6vw, 40px); max-width: 480px; }
.cta-band p { margin-top: 14px; color: rgba(255,255,255,.6); max-width: 460px; }
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Testimonial-ish quote */
.quote-block { max-width: 760px; margin: 0 auto; text-align: center; }
.quote-block .mark { font-family: "Playfair Display", serif; font-size: 80px; color: var(--gold); line-height: 1; opacity: .5; }
.quote-block p.quote { font-family: "Playfair Display", serif; font-size: clamp(22px, 3vw, 30px); font-style: italic; color: var(--text); line-height: 1.5; margin-top: -10px; }
.quote-block .attribution { margin-top: 26px; font-size: 13px; letter-spacing: 1.2px; text-transform: uppercase; color: var(--muted); }

/* Contact / hours table */
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; }
.info-card h3 { font-size: 22px; margin-bottom: 22px; }
.hours-row { display: flex; justify-content: space-between; padding: 13px 0; border-bottom: 1px solid var(--border); font-size: 14.5px; }
.hours-row span:first-child { color: var(--text); font-weight: 600; }
.hours-row span:last-child { color: var(--muted); }
.contact-line { display: flex; align-items: center; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--border); font-size: 15px; }
.contact-line .icon { width: 34px; height: 34px; border-radius: 50%; background: var(--ink); color: var(--gold-light); display: grid; place-items: center; flex-shrink: 0; }
@media (max-width: 860px) { .info-grid { grid-template-columns: 1fr; gap: 44px; } }

/* Booking widget slot */
.booking-slot { background: var(--paper); border: 1px solid var(--border); padding: 48px; text-align: center; }
.booking-slot .badge { display: inline-flex; align-items: center; gap: 8px; padding: 7px 14px; border-radius: 999px; background: rgba(193,154,86,.12); color: var(--gold-dim); font-size: 12px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase; margin-bottom: 18px; }

.booking-frame-wrap { position: relative; background: var(--ink); border: 1px solid var(--border-dark); padding: 10px; }
.booking-frame-wrap iframe { width: 100%; height: 640px; border: 0; background: var(--ink); display: block; transition: height .2s ease; opacity: 0; transition: opacity .3s ease, height .2s ease; }
.booking-frame-wrap iframe.is-ready { opacity: 1; }
.booking-loading { position: absolute; inset: 10px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; background: var(--ink); color: var(--muted-light); font-size: 13.5px; letter-spacing: .4px; z-index: 2; transition: opacity .25s ease; }
.booking-loading.is-hidden { opacity: 0; pointer-events: none; }
.booking-spinner { width: 30px; height: 30px; border-radius: 50%; border: 2.5px solid rgba(193,154,86,.25); border-top-color: var(--gold); animation: booking-spin .8s linear infinite; }
@keyframes booking-spin { to { transform: rotate(360deg); } }

/* Footer */
.site-footer { background: var(--ink); color: rgba(255,255,255,.55); padding: 70px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 50px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-grid h4 { color: #fff; font-size: 13px; letter-spacing: 1.2px; text-transform: uppercase; margin-bottom: 20px; font-family: "Manrope", sans-serif; font-weight: 700; }
.footer-grid p { font-size: 14.5px; line-height: 1.8; max-width: 320px; }
.footer-grid ul li { margin-bottom: 12px; font-size: 14.5px; }
.footer-grid ul li a:hover { color: var(--gold-light); }
.footer-bottom { padding-top: 26px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 12.5px; color: rgba(255,255,255,.35); }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr; gap: 34px; } }

/* Trust badges (hero) */
.trust-row { margin-top: 40px; display: flex; flex-wrap: wrap; gap: 28px; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 13px; color: rgba(255,255,255,.6); }
.trust-item svg { width: 18px; height: 18px; color: var(--gold-light); flex-shrink: 0; }

/* Service card icon */
.service-icon { width: 42px; height: 42px; border-radius: 50%; background: rgba(193,154,86,.1); border: 1px solid rgba(193,154,86,.3); display: grid; place-items: center; color: var(--gold-light); margin-bottom: 20px; }
.service-icon svg { width: 20px; height: 20px; }

/* Gift voucher band */
.voucher-band { background: var(--paper); border: 1px solid var(--border); padding: 44px; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.voucher-band .voucher-icon { width: 56px; height: 56px; border-radius: 50%; background: var(--ink); color: var(--gold-light); display: grid; place-items: center; flex-shrink: 0; }
.voucher-band .voucher-icon svg { width: 26px; height: 26px; }
.voucher-copy { display: flex; align-items: center; gap: 22px; }
.voucher-copy h3 { font-size: 24px; margin-bottom: 6px; }
.voucher-copy p { color: var(--muted); font-size: 15px; max-width: 420px; }
@media (max-width: 700px) { .voucher-band { flex-direction: column; text-align: center; } .voucher-copy { flex-direction: column; } }

/* Contraindication note */
.note-box { display: flex; gap: 18px; padding: 28px 32px; background: rgba(193,154,86,.08); border: 1px solid rgba(193,154,86,.25); border-radius: 4px; }
.note-box .note-icon { width: 34px; height: 34px; border-radius: 50%; background: rgba(193,154,86,.15); color: var(--gold-dim); display: grid; place-items: center; flex-shrink: 0; }
.note-box .note-icon svg { width: 17px; height: 17px; }
.note-box .note-thumb { width: 84px; height: 84px; border-radius: 10px; object-fit: cover; flex-shrink: 0; }
@media (max-width: 600px) { .note-box .note-thumb { width: 64px; height: 64px; } }
.note-box h4 { font-family: "Manrope", sans-serif; font-size: 15px; font-weight: 800; margin-bottom: 8px; }
.note-box p { font-size: 14px; color: var(--muted); line-height: 1.7; }
.section.dark .note-box { background: rgba(193,154,86,.1); }
.section.dark .note-box p { color: rgba(255,255,255,.6); }

/* Before/after tips */
.tips-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.tips-card { padding: 32px; background: rgba(193,154,86,.08); border: 1px solid rgba(193,154,86,.25); border-radius: 4px; }
.tips-card h3 { color: var(--gold-light); font-size: 20px; margin-bottom: 18px; }
.tips-card ul { display: flex; flex-direction: column; gap: 12px; }
.tips-card li { position: relative; padding-left: 20px; font-size: 14px; color: rgba(255,255,255,.65); line-height: 1.6; }
.tips-card li::before { content: ""; position: absolute; left: 0; top: 8px; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
@media (max-width: 700px) { .tips-grid { grid-template-columns: 1fr; } }

/* FAQ accordion */
.faq-list { display: flex; flex-direction: column; gap: 2px; max-width: 780px; }
.faq-item { background: var(--paper); border: 1px solid var(--border); }
.faq-item summary { list-style: none; cursor: pointer; padding: 24px 30px; display: flex; justify-content: space-between; align-items: center; gap: 20px; font-family: "Playfair Display", serif; font-size: 19px; font-weight: 600; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .faq-plus { flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%; border: 1px solid var(--border-dark); display: grid; place-items: center; position: relative; color: var(--gold-dim); }
.faq-item summary .faq-plus::before, .faq-item summary .faq-plus::after { content: ""; position: absolute; background: currentColor; transition: transform .2s ease; }
.faq-item summary .faq-plus::before { width: 9px; height: 1px; }
.faq-item summary .faq-plus::after { width: 1px; height: 9px; }
.faq-item[open] summary .faq-plus::after { transform: scaleY(0); }
.faq-item .faq-answer { padding: 0 30px 26px; color: var(--muted); font-size: 15px; line-height: 1.75; max-width: 620px; }
@media (max-width: 600px) { .faq-item summary { padding: 20px; font-size: 17px; } .faq-item .faq-answer { padding: 0 20px 22px; } }

/* Map embed */
.map-embed { border: 0; width: 100%; height: 340px; filter: grayscale(.3) contrast(1.05); display: block; }

/* Page hero (inner pages) */
.page-hero { background: var(--ink); padding: 170px 0 80px; text-align: center; }
.page-hero .eyebrow { justify-content: center; }
.page-hero h1 { color: #fff; margin-top: 20px; font-size: clamp(36px, 5vw, 56px); }
.page-hero p { margin-top: 18px; color: rgba(255,255,255,.6); max-width: 560px; margin-left: auto; margin-right: auto; }
