/* ════════════════════════════════════════════════════════════════
   VY-PREMIUM — Canonical Design-System Elevation Layer  v1
   Hotel Vyankatesh · Mahabaleshwar · Est. 1977
   ----------------------------------------------------------------
   Loaded LAST on every page. Supersedes both the homepage fork and
   the older inner-page fork of the inline CSS, so every page
   resolves to one identical, elevated design system.
   Order: tokens → base → typography → a11y → buttons → nav →
          heroes → cards → forms → modal → footer → FAB → motion
═════════════════════════════════════════════════════════════════ */

/* ── 1 · TOKENS ─────────────────────────────────────────────── */
:root {
  /* palette — reconciled, single source of truth */
  --forest:    #132A24;
  --forest-l:  #1D3D34;
  --forest-d:  #0C1E1A;
  --gold:      #C8A96E;
  --gold-l:    #DECB98;
  --gold-d:    #A88848;
  --gold-aa:   #7B6530;
  --champagne: #D4C2AD;
  --crimson:   #A62B3E;
  --crimson-d: #8A2233;
  --ivory:     #FCFAF7;
  --ivory-d:   #F0EDE6;
  --ink:       #1A1814;
  --stone:     #5E523F;            /* deepened for AA on ivory   */
  --stone-l:   #8A7A66;

  /* type */
  --serif: 'Cormorant Garamond','EB Garamond',Georgia,serif;
  --sans:  'Jost',system-ui,sans-serif;

  /* fluid type scale (minor-third → perfect-fourth at desktop) */
  --fs-display: clamp(3rem, 6.2vw, 5.6rem);
  --fs-h2:      clamp(2.25rem, 4.6vw, 3.8rem);
  --fs-h3:      clamp(1.55rem, 2.9vw, 2.3rem);
  --fs-body:    clamp(.98rem, 1.35vw, 1.0625rem);
  --fs-label:   .72rem;            /* uppercase micro-labels floor */
  --fs-label-s: .68rem;

  /* space */
  --max-w:   1320px;
  --gutter:  clamp(1.25rem, 4vw, 2.5rem);
  --sec-pad: clamp(5rem, 10vw, 9rem);
  --head-mb: clamp(2.75rem, 6vw, 4.25rem);

  /* form + shape */
  --radius:   3px;
  --radius-m: 10px;

  /* elevation */
  --shadow:    0 6px 24px rgba(19,42,36,.10), 0 2px 8px rgba(19,42,36,.06);
  --shadow-l:  0 24px 64px rgba(19,42,36,.18), 0 8px 24px rgba(19,42,36,.08);
  --shadow-premium: 0 20px 60px rgba(0,0,0,.15), 0 8px 24px rgba(0,0,0,.08);
  --shadow-md: 0 12px 32px rgba(19,42,36,.14);   /* fixes undefined var in gallery */

  /* motion */
  --ease:     cubic-bezier(.22,.68,0,1.2);
  --ease-s:   cubic-bezier(.4,0,.2,1);
  --ease-out: cubic-bezier(.23,1,.32,1);
  --dur:      .28s;
}

/* ── 2 · BASE REFINEMENTS ───────────────────────────────────── */
body {
  font-weight: 400;                 /* was 300 — legibility lift  */
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
::selection { background: var(--gold-d); color: #fff; }
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--ivory-d); }
::-webkit-scrollbar-thumb { background: var(--champagne); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-d); }

.container { max-width: var(--max-w); padding: 0 var(--gutter); }
.section-pad { padding: var(--sec-pad) var(--gutter); }
.inner-section { padding: var(--sec-pad) var(--gutter); }

/* anchor targets never hide under fixed nav */
[id] { scroll-margin-top: calc(var(--nav-h, 5rem) + 1.25rem); }
/* native controls follow the brand */
html { accent-color: var(--gold-d); }

/* ── 3 · TYPOGRAPHY ELEVATION ───────────────────────────────── */
h1,h2,h3,h4 {
  font-family: var(--serif);
  font-weight: 500;                 /* Cormorant needs 500+ */
  line-height: 1.08;
  letter-spacing: -0.015em;
  text-wrap: balance;
}
h1 { font-size: var(--fs-display); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
p  { font-size: var(--fs-body); line-height: 1.85; color: var(--stone); }

.eyebrow,
.page-hero__eyebrow,
.hero-eyebrow {
  font-size: var(--fs-label-s);
  font-weight: 500;
  letter-spacing: .3em;
  text-transform: uppercase;
}
.section-head { margin-bottom: var(--head-mb); }
.section-head h2 { margin: .9rem 0 1.1rem; }
.section-head p { text-wrap: pretty; }
.section-head--center { margin: 0 auto var(--head-mb); max-width: 560px; }
.section-head--white p { color: rgba(255,255,255,.68); }
.section-head--white .eyebrow { color: rgba(200,169,110,.85); }

.hero-title {
  font-size: var(--fs-display);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.hero-title em { font-size: 1.06em; }
.hero-lead { color: rgba(255,255,255,.7); font-size: clamp(1.02rem,1.35vw,1.15rem); line-height: 1.75; }

.page-hero__title {
  font-size: clamp(2.5rem, 5.4vw, 4.6rem);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.06;
}
.page-hero__eyebrow { color: var(--gold); margin-bottom: 1.1rem; }
.page-hero__lead { color: rgba(255,255,255,.7); font-size: clamp(.98rem,1.4vw,1.1rem); }
.page-hero__rule { height: 1.5px; opacity: .85; }

.inner-heading { font-weight: 500; letter-spacing: -0.01em; font-size: clamp(1.9rem,3.6vw,3rem); }
.inner-lead { font-size: var(--fs-body); color: var(--stone); }
.inner-cta-bar h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(1.7rem,3.2vw,2.4rem); }
.inner-cta-bar p { font-size: .95rem; color: rgba(255,255,255,.62); }

/* contrast patch — dark surfaces (per CONTRAST_PATCH.md, elevated) */
.stat-label, .room-desc, .room-tag { color: rgba(255,255,255,.62); }
.footer-brand p { color: rgba(255,255,255,.55); }
.footer-col h4 { color: rgba(255,255,255,.6); }
.footer-col ul a, .footer-col address a, .footer-col address p { color: rgba(255,255,255,.55); }

/* ── 4 · ACCESSIBILITY — unified focus system ───────────────── */
:focus { outline: none; }
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}
[data-surface="light"] a:focus-visible,
[data-surface="mid"] a:focus-visible,
[data-surface="light"] button:focus-visible,
[data-surface="mid"] button:focus-visible {
  outline-color: var(--gold-aa);
}
.nav-book:focus-visible, .btn-primary:focus-visible, .ab-submit:focus-visible, .cf-submit:focus-visible {
  outline-color: #fff;
}

/* skip-friendly tap targets */
.nav-link, .footer-col ul a, .footer-bottom nav a { min-height: 24px; }

/* ── 5 · BUTTON SYSTEM — one voice, four registers ──────────── */
.btn-primary, .btn-ghost, .btn-ghost--gold, .btn-outline, .btn-wa, .btn-advance,
.ab-submit, .cf-submit, .mobile-nav__btn {
  font-size: var(--fs-label);
  font-weight: 500;
  letter-spacing: .17em;
  text-transform: uppercase;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  transition: background var(--dur) var(--ease-out),
              color var(--dur) var(--ease-out),
              border-color var(--dur) var(--ease-out),
              transform .22s var(--ease-out),
              box-shadow var(--dur) var(--ease-out);
}
.btn-primary, .btn-ghost, .btn-ghost--gold, .btn-outline { padding: .95rem 2.1rem; }

/* sheen sweep on filled CTAs */
.btn-primary::after, .ab-submit::after, .nav-book::after {
  content: '';
  position: absolute; top: 0; left: -80%;
  width: 60%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,.22), transparent);
  transform: skewX(-20deg);
  transition: left .55s var(--ease-out);
  pointer-events: none;
}
.btn-primary:hover::after, .ab-submit:hover::after, .nav-book:hover::after { left: 120%; }

.btn-primary {
  background: var(--crimson);
  border: 1px solid var(--crimson);
  box-shadow: 0 4px 14px rgba(166,43,62,.18);
}
.btn-primary:hover {
  background: var(--crimson-d);
  border-color: var(--crimson-d);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(166,43,62,.32);
}
.btn-primary:active { transform: translateY(0) scale(.985); box-shadow: 0 3px 10px rgba(166,43,62,.25); }

.btn-ghost, .btn-ghost--gold {
  color: var(--gold);
  border: 1px solid rgba(200,169,110,.4);
  background: transparent;
}
.btn-ghost:hover, .btn-ghost--gold:hover {
  background: var(--gold);
  color: var(--forest);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(200,169,110,.25);
}
.btn-ghost:active, .btn-ghost--gold:active { transform: translateY(0) scale(.985); }

.btn-outline {
  color: var(--forest);
  border: 1px solid rgba(19,42,36,.35);
  background: transparent;
}
.btn-outline:hover {
  background: var(--forest);
  color: #fff;
  border-color: var(--forest);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(19,42,36,.22);
}
.btn-outline:active { transform: translateY(0) scale(.985); }

.btn-wa {
  padding: .9rem 1.8rem;
  background: #1FAF54;             /* deepened for contrast */
  border: 1px solid #1FAF54;
  box-shadow: 0 4px 14px rgba(31,175,84,.22);
}
.btn-wa:hover {
  background: #178A42;
  border-color: #178A42;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(31,175,84,.32);
}
.btn-wa:active { transform: translateY(0) scale(.985); }

.btn-advance { padding: .9rem 1.8rem; color: rgba(255,255,255,.8); border: 1px solid rgba(255,255,255,.25); }
.btn-advance:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,.06); transform: translateY(-2px); }

/* ── 6 · NAVIGATION — glass system on every page ────────────── */
#nav {
  min-height: var(--nav-h, 5rem);
  padding: 0 var(--gutter);
  background: linear-gradient(to bottom, rgba(19,42,36,.78) 0%, rgba(19,42,36,.38) 70%, transparent 100%);
  box-shadow: none;
  border-bottom: 1px solid transparent;
  transition: background .35s ease, box-shadow .35s ease, border-color .35s ease;
}
#nav.scrolled {
  background: rgba(19,42,36,.92);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-premium);
  border-bottom-color: rgba(212,194,173,.12);
}
.nav-logo {
  display: flex; align-items: center;      /* normalizes legacy pages where logo img stacked */
  font-family: var(--serif); font-weight: 600; font-size: 1.3rem; letter-spacing: .01em;
}
.nav-logo img { height: 42px; width: auto; flex-shrink: 0; }
.nav-logo span, .nav-logo-sub {
  font-size: .6rem; letter-spacing: .24em;
  color: rgba(200,169,110,.75);
}
.nav-link {
  font-size: .74rem;
  font-weight: 400;
  letter-spacing: .12em;
  color: rgba(255,255,255,.78);
  padding: .35rem 0;
}
.nav-link::after {
  bottom: 0;
  height: 1px;
  background: var(--gold);
  transition: width .32s var(--ease-s);
}
.nav-link:hover, .nav-link[aria-current="page"] { color: #fff; }
.nav-advance {
  background: transparent;                 /* kills legacy gold bg that hid the label */
  padding: .6rem 1.2rem;
  font-size: .64rem;
  font-weight: 500;
  letter-spacing: .16em;
  color: var(--gold-l);
  border: 1px solid rgba(200,169,110,.38);
  transition: background var(--dur), border-color var(--dur), color var(--dur), transform .2s var(--ease-out);
}
.nav-advance:hover { background: rgba(200,169,110,.12); border-color: var(--gold); color: #fff; transform: translateY(-1px); }
.nav-book {
  padding: .6rem 1.3rem;
  font-size: .64rem;
  font-weight: 500;
  letter-spacing: .16em;
  background: var(--crimson);
  border: 1px solid var(--crimson);
  position: relative; overflow: hidden;
  transition: background var(--dur), transform .2s var(--ease-out), box-shadow var(--dur);
}
.nav-book:hover { background: var(--crimson-d); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(166,43,62,.35); }
.nav-phone { font-size: .72rem; color: rgba(255,255,255,.55); }
.nav-phone:hover { color: var(--gold-l); }

/* nav-fit: prevent logo/link collision in the 1025–1500px squeeze zone */
#nav { gap: 1.25rem; }
.nav-logo { flex-shrink: 0; }
.nav-links { min-width: 0; }
.nav-link { flex-shrink: 0; }
@media (max-width: 1500px) { .nav-phone { display: none; } }
@media (min-width: 1280px) and (max-width: 1500px) {
  .nav-links { gap: 1.5rem; }
  .nav-links__primary { gap: 1.35rem; }
}
@media (max-width: 1279px) {
  .nav-logo { font-size: 1.15rem; }
  .nav-links { gap: 1.1rem; }
  .nav-links__primary { gap: 1rem; }
  .nav-link { letter-spacing: .09em; font-size: .7rem; }
  .nav-advance { padding: .55rem .9rem; }
  .nav-book { padding: .55rem 1rem; }
}

/* mobile drawer */
#mobile-nav { background: linear-gradient(170deg, var(--forest-l) 0%, var(--forest-d) 100%); }
.mobile-nav__links a {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.9rem;
  color: rgba(255,255,255,.72);
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: color .2s, padding-left .25s var(--ease-out);
}
.mobile-nav__links a:hover { color: var(--gold-l); padding-left: .35rem; }
.mobile-nav__links a[aria-current="page"] { color: #fff; border-left: 2px solid var(--gold); padding-left: 1rem; }
.mobile-nav__btn { padding: 1.05rem; font-size: var(--fs-label-s); letter-spacing: .18em; }

/* ── 7 · HERO & PAGE-HERO POLISH ────────────────────────────── */
.youtube-curtain { animation-duration: 5.5s; }   /* hold the façade a beat longer before the video reveal */

/* Desktop hero composition:
   — title locked to its intended two lines (copy column was 500px, too narrow for the scale)
   — booking bar shares the text column's left edge instead of hugging the viewport
   — booking bar bottom aligns with the FAB (--float-bottom: 3rem) for one visual baseline */
@media (min-width: 1025px) {
  .hero-title { font-size: clamp(2.75rem, 4.5vw, 4.75rem); }
  .hero-copy { max-width: 640px; }
  .hero-booking-wrap {
    left: max(2rem, calc((100% - var(--max-w)) / 2 + 2rem));
    bottom: var(--float-bottom, 3rem);
  }
}

/* Short desktop viewports: booking bar is absolutely positioned and can ride
   over the map pill — return it to the document flow so they can never collide */
@media (min-width: 1025px) and (max-height: 880px) {
  .hero-booking-wrap {
    position: static;
    margin-top: 1.25rem;
    max-width: 720px;
  }
  .hero-inner { padding-bottom: 2.5rem; }
  .hero-map-pill { margin-bottom: 0; }
}
.hero-rule { height: 1.5px; background: linear-gradient(90deg, var(--gold), rgba(200,169,110,.25)); }
.page-hero { padding-bottom: clamp(3rem, 7vw, 5rem); }
.page-hero__rule { background: linear-gradient(90deg, rgba(200,169,110,.25), var(--gold), rgba(200,169,110,.25)); }

/* ── 8 · CARD CHOREOGRAPHY ──────────────────────────────────── */
.room-card, .exp-card, .exp-place-card, .dining-card, .gallery-card,
.review-card, .pillar-card, .contact-card, .exp-intro-card, .lounge-panel {
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), border-color .35s var(--ease-out);
  will-change: transform;
}
.room-card:hover, .exp-card:hover, .exp-place-card:hover, .dining-card:hover,
.gallery-card:hover, .contact-card:hover, .exp-intro-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-l);
}
.review-card:hover, .pillar-card:hover, .lounge-panel:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.pillar-card { border-top: 2px solid var(--gold-d); }
.pillar-card:hover { border-top-color: var(--gold); }
.pillar-card h3 { font-weight: 600; }

/* image zoom inside known clipped wrappers */
.room-img img, .exp-card img, .dining-img img,
.dining-card__img-wrap img, .exp-card-media img, .gallery-card img,
.about-narrative-img img, .album-img img, .gallery-album-cover img {
  transition: transform .8s var(--ease-out);
}
.room-card:hover .room-img img,
.exp-card:hover img,
.dining-img:hover img,
.dining-card:hover .dining-card__img-wrap img,
.exp-place-card:hover .exp-card-media img,
.gallery-card:hover img,
.gallery-album-cover:hover img {
  transform: scale(1.045);
}

/* ── 9 · FORMS — quiet luxury fields ────────────────────────── */
.ab-label, .cf-label {
  font-size: .64rem;
  font-weight: 500;
  letter-spacing: .16em;
  color: var(--stone);
}
.ab-input, .ab-select, .cf-input, .cf-select, .cf-textarea {
  padding: .85rem 1rem;
  font-size: .95rem;
  font-weight: 400;
  border: 1px solid rgba(19,42,36,.16);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  transition: border-color .22s var(--ease-out), box-shadow .22s var(--ease-out), background .22s;
}
.ab-input:hover, .ab-select:hover, .cf-input:hover, .cf-select:hover, .cf-textarea:hover {
  border-color: rgba(19,42,36,.32);
}
.ab-input:focus, .ab-select:focus, .cf-input:focus, .cf-select:focus, .cf-textarea:focus {
  border-color: var(--gold-d);
  box-shadow: 0 0 0 3px rgba(200,169,110,.22);
  outline: none;
}
.ab-input::placeholder, .cf-input::placeholder, .cf-textarea::placeholder { color: var(--stone-l); }

.ab-submit, .cf-submit {
  padding: 1rem 1.5rem;
  background: var(--crimson);
  border: 1px solid var(--crimson);
  color: #fff;
  box-shadow: 0 4px 14px rgba(166,43,62,.18);
}
.ab-submit:hover, .cf-submit:hover {
  background: var(--crimson-d);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(166,43,62,.32);
}
.ab-submit:active, .cf-submit:active { transform: translateY(0) scale(.985); }

/* ── 10 · MODAL POLISH ──────────────────────────────────────── */
.ab-modal__backdrop { background: rgba(8,18,16,.7); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); }
.ab-modal__panel {
  border-radius: var(--radius-m);
  box-shadow: 0 32px 90px rgba(0,0,0,.35);
  border: 1px solid rgba(212,194,173,.25);
}
.ab-modal__head h2 { font-weight: 500; }
.ab-modal__close {
  transition: background .2s, color .2s, transform .25s var(--ease-out);
}
.ab-modal__close:hover { transform: rotate(90deg); }

/* ── 11 · FOOTER — unified voice ────────────────────────────── */
.footer-cap__line { background: linear-gradient(90deg, transparent, rgba(212,194,173,.28), transparent); }
.footer-cap__mark { color: rgba(212,194,173,.5); letter-spacing: .22em; font-size: .66rem; }
.footer-col h4 {
  font-size: .66rem;
  font-weight: 500;
  letter-spacing: .22em;
}
.footer-col ul a, .footer-col address a {
  font-size: .88rem;
  transition: color .2s, padding-left .25s var(--ease-out);
}
.footer-col ul a:hover, .footer-col address a:hover { color: var(--gold-l); padding-left: .3rem; }
.footer-brand .logo { font-family: var(--serif); font-weight: 600; }
.social-link { transition: background .25s, color .25s, border-color .25s, transform .22s var(--ease-out); }
.social-link:hover { transform: translateY(-3px); }
.footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.42); }
.footer-bottom nav a { font-size: .78rem; color: rgba(255,255,255,.5); transition: color .2s; }
.footer-bottom nav a:hover { color: var(--gold-l); }

/* ── 12 · FAB & FLOATERS ────────────────────────────────────── */
.fab-enquiry {
  box-shadow: 0 12px 40px rgba(18,140,126,.35), 0 4px 14px rgba(0,0,0,.18);
  transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out), opacity .3s, visibility .3s;
}
.fab-enquiry:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 18px 52px rgba(18,140,126,.45), 0 6px 18px rgba(0,0,0,.22); }
.fab-enquiry:active { transform: translateY(0) scale(.98); }
.fab-title { font-weight: 500; }
.scroll-top { transition: background .25s, color .25s, transform .22s var(--ease-out), opacity .3s, visibility .3s; }
.scroll-top:hover { transform: translateY(-3px); }

/* Gallery album covers — caption legibility + brand serif for titles */
:root { --font-heading: var(--serif); }          /* album h3s reference this undefined var */
.gallery-album-cover { position: relative; }
.gallery-album-cover::before {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 62%;
  z-index: 1;
  background: linear-gradient(to top, rgba(10,20,17,.92) 0%, rgba(10,20,17,.4) 55%, transparent 100%);
  pointer-events: none;
  border-radius: inherit;
}
.gallery-album-cover h3 {
  text-shadow: 0 1px 12px rgba(0,0,0,.45);
  letter-spacing: .01em;
}
.gallery-album-cover p {
  opacity: 1 !important;                          /* inline style sets .9 over busy imagery */
  color: rgba(255,255,255,.96) !important;
  font-size: .92rem !important;
  text-shadow: 0 1px 8px rgba(0,0,0,.55);
  letter-spacing: .02em;
}

/* ── 13 · TABLES / LISTS / MISC COMPONENT LIFTS ─────────────── */
.stat-num { font-family: var(--serif); font-weight: 500; }
.exp-filter-btn { transition: background .22s, color .22s, border-color .22s, transform .2s var(--ease-out); }
.exp-filter-btn:hover { transform: translateY(-1px); }
.gallery-lightbox__close, .gallery-lightbox__next, .gallery-lightbox__prev {
  transition: background .2s, color .2s, transform .22s var(--ease-out);
}
.gallery-lightbox__close:hover { transform: rotate(90deg); }
.policy-list li { font-size: .92rem; }
.pillar-card p { font-size: .92rem; }
.ab-note { font-size: .78rem; }

/* ── 14 · MOTION DISCIPLINE ─────────────────────────────────── */
.reveal, .reveal-l, .reveal-r { transition-duration: .8s; transition-timing-function: var(--ease-out); }

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

/* ── 15 · RESPONSIVE GUARDS ─────────────────────────────────── */
@media (max-width: 768px) {
  :root { --sec-pad: clamp(3.75rem, 12vw, 5rem); }
  .btn-primary, .btn-ghost, .btn-ghost--gold, .btn-outline { padding: .9rem 1.7rem; width: auto; }
  .section-head { margin-bottom: 2.5rem; }
}
@media (max-width: 480px) {
  .hero-title { font-size: clamp(2.5rem, 11vw, 3.2rem); }
  .page-hero__title { font-size: clamp(2.1rem, 9.5vw, 2.8rem); }
}

/* print sanity */
@media print {
  #nav, #mobile-nav, .fab-enquiry, .scroll-top, #float-book { display: none !important; }
}
