/* ==========================================================================
   Lizzie Bellydance — Design System
   1.  Tokens
   2.  Reset & base
   3.  Typography
   4.  Buttons & links
   5.  Header / navigation
   6.  Hero
   7.  Section furniture (eyebrows, headings, arabesque dividers)
   8.  Marquee
   9.  Intro band & stats
   10. Offer cards
   11. Dance styles
   12. Timetable
   13. Pricing
   14. Reviews
   15. Gallery & lightbox
   16. FAQ accordion
   17. Forms & contact
   18. CTA band
   19. Footer
   20. Utilities (reveal, progress, to-top)
   21. Responsive
   22. Reduced motion & print
   ========================================================================== */

/* 1. TOKENS ================================================================ */

:root {
  /* Ink & paper */
  --ink:        #17110f;
  --ink-2:      #241b18;
  --ink-3:      #3a2c27;
  --paper:      #f7f2ea;
  --paper-2:    #efe6d8;
  --paper-3:    #e4d8c6;
  --white:      #fffdf9;

  /* Accents */
  --coral:      #c0543f;
  --coral-deep: #9c3f2d;
  --coral-soft: #e5a897;
  --gold:       #c8a04e;
  --gold-lit:   #e0c183;
  --gold-soft:  #f0dfba;
  --plum:       #3c2029;

  /* Text roles */
  --text:        var(--ink);
  --text-muted:  #6c5d56;
  --text-invert: var(--paper);
  --text-invert-muted: rgba(247, 242, 234, .68);

  /* Lines */
  --line:        rgba(23, 17, 15, .14);
  --line-strong: rgba(23, 17, 15, .28);
  --line-invert: rgba(247, 242, 234, .18);

  /* Type */
  --serif: 'Cormorant Garamond', 'Iowan Old Style', Georgia, serif;
  --sans:  'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;

  /* Rhythm */
  --gutter: clamp(20px, 5.5vw, 92px);
  --section-y: clamp(72px, 10vw, 148px);
  --maxw: 1320px;
  --maxw-narrow: 760px;

  /* Motion */
  --ease: cubic-bezier(.22, 1, .36, 1);
  --ease-soft: cubic-bezier(.4, 0, .2, 1);
  --dur: .55s;

  /* Elevation */
  --shadow-sm: 0 2px 8px rgba(23, 17, 15, .06);
  --shadow:    0 18px 48px -24px rgba(23, 17, 15, .35);
  --shadow-lg: 0 40px 90px -40px rgba(23, 17, 15, .5);

  --header-h: 86px;
}

/* 2. RESET & BASE ========================================================== */

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }

/* Must beat the component display rules below (e.g. .reviews-nav{display:flex}) */
[hidden] { display: none !important; }

button { font: inherit; color: inherit; }

::selection { background: var(--gold); color: var(--ink); }

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

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  left: 16px; top: -80px;
  z-index: 200;
  background: var(--gold);
  color: var(--ink);
  padding: 12px 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: top .3s var(--ease);
}
.skip-link:focus { top: 14px; }

/* Page enter */
.page-enter {
  animation: pageIn .7s var(--ease) both;
}
@keyframes pageIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* 3. TYPOGRAPHY ============================================================ */

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: .96;
  margin: 0 0 .5em;
  text-wrap: balance;
}

h1 { font-size: clamp(54px, 8.4vw, 132px); line-height: .86; letter-spacing: -.05em; }
h2 { font-size: clamp(38px, 5.4vw, 82px); line-height: .92; letter-spacing: -.042em; }
h3 { font-size: clamp(26px, 2.6vw, 38px); }
h4 { font-size: clamp(20px, 1.8vw, 25px); letter-spacing: -.02em; }

h1 i, h2 i, h3 i { font-style: italic; font-weight: 400; }
h2 i { color: var(--coral); }
.on-dark h2 i, .hero h1 i { color: var(--gold-lit); }

p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

.lede {
  font-size: clamp(17px, 1.55vw, 21px);
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 56ch;
}
.on-dark .lede { color: var(--text-invert-muted); }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--coral);
}
.eyebrow::before {
  content: '';
  width: 30px; height: 1px;
  background: currentColor;
  flex: none;
  opacity: .7;
}
.eyebrow.is-centred { justify-content: center; }
.on-dark .eyebrow { color: var(--gold-lit); }

.script-accent {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
}

/* 4. BUTTONS & LINKS ======================================================= */

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 17px 30px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition: color .4s var(--ease), border-color .4s var(--ease),
              background-color .4s var(--ease), transform .4s var(--ease);
}
.btn span { position: relative; z-index: 1; }
.btn .arr { transition: transform .4s var(--ease); }
.btn:hover .arr { transform: translate(3px, -3px); }
.btn:active { transform: translateY(1px); }

/* fill sweep */
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  transform: translateY(101%);
  transition: transform .5s var(--ease);
}
.btn:hover::after { transform: translateY(0); }

.btn-primary { background: var(--coral); color: var(--white); }
.btn-primary::after { background: var(--ink); }

.btn-dark { background: var(--ink); color: var(--paper); }
.btn-dark::after { background: var(--coral); }

.btn-gold { background: var(--gold); color: var(--ink); }
.btn-gold::after { background: var(--ink); }
.btn-gold:hover { color: var(--gold-lit); }

.btn-light { background: var(--white); color: var(--ink); }
.btn-light::after { background: var(--coral); }
.btn-light:hover { color: var(--white); }

.btn-ghost { background: transparent; border-color: var(--line-strong); color: var(--ink); }
.btn-ghost::after { background: var(--ink); }
.btn-ghost:hover { color: var(--paper); border-color: var(--ink); }

.btn-ghost-light { background: transparent; border-color: rgba(255, 253, 249, .45); color: var(--white); }
.btn-ghost-light::after { background: var(--white); }
.btn-ghost-light:hover { color: var(--ink); border-color: var(--white); }

.btn-sm { padding: 12px 22px; font-size: 10.5px; letter-spacing: .14em; }

/* Underlined text link */
.tlink {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding-bottom: 5px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  color: inherit;
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 100% 1px;
  background-repeat: no-repeat;
  background-position: 0 100%;
  transition: background-size .45s var(--ease), color .3s var(--ease);
}
.tlink:hover { background-size: 30% 1px; color: var(--coral); }
.on-dark .tlink:hover { color: var(--gold-lit); }
.tlink .arr { transition: transform .4s var(--ease); }
.tlink:hover .arr { transform: translate(3px, -3px); }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 22px;
  margin-top: 36px;
}

/* 5. HEADER / NAVIGATION =================================================== */

.announce {
  position: relative;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: var(--ink);
  color: var(--paper);
  padding: 10px var(--gutter);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .17em;
  text-transform: uppercase;
  text-align: center;
}
.announce b { color: var(--gold-lit); font-weight: 700; }
.announce .dot { color: var(--coral); }

/* Socials pinned to the right of the bar; they fall into the flow on narrow
   screens so they can never sit on top of the message. */
.announce { flex-wrap: wrap; }
.announce .announce-socials { gap: 7px; }
.announce-socials .social {
  width: 27px; height: 27px;
  border-color: var(--line-invert);
  color: var(--paper);
}
.announce-socials .social svg { width: 13px; height: 13px; }
.announce-socials .social:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
  transform: translateY(-2px);
}
@media (min-width: 1100px) {
  .announce-socials {
    position: absolute;
    right: var(--gutter);
    top: 50%;
    transform: translateY(-50%);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: var(--header-h);
  padding: 0 var(--gutter);
  background: rgba(247, 242, 234, 0);
  transition: background-color .45s var(--ease), box-shadow .45s var(--ease),
              height .45s var(--ease), border-color .45s var(--ease);
  border-bottom: 1px solid transparent;
}
/* Over-hero (transparent) variant */
.site-header.is-over { color: var(--white); }
.site-header.is-over .brand-name,
.site-header.is-over .brand-name em,
.site-header.is-over .nav-list a { color: var(--white); }
.site-header.is-over .brand-logo { filter: brightness(0) invert(1); }
.site-header.is-over .burger span { background: var(--white); }

/* Scrolled */
.site-header.is-stuck {
  height: 70px;
  background: rgba(247, 242, 234, .88);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 40px -30px rgba(23, 17, 15, .6);
  color: var(--ink);
}
.site-header.is-stuck .brand-name { color: var(--ink); }
.site-header.is-stuck .brand-name em { color: var(--coral); }
.site-header.is-stuck .nav-list a { color: var(--ink); }
.site-header.is-stuck .brand-logo { filter: none; }
.site-header.is-stuck .burger span { background: var(--ink); }

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
  color: var(--ink);
  flex: none;
}
.brand-logo {
  width: 42px; height: 42px;
  object-fit: contain;
  transition: filter .45s var(--ease), transform .6s var(--ease);
}
.brand:hover .brand-logo { transform: rotate(-4deg) scale(1.06); }
.brand-name {
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 600;
  letter-spacing: -.028em;
  line-height: 1;
  white-space: nowrap;
  transition: color .45s var(--ease);
}
.brand-name em {
  display: block;
  margin-top: 3px;
  font-family: var(--sans);
  font-size: 8.5px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--coral);
  transition: color .45s var(--ease);
}

.nav-list {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 38px);
  list-style: none;
  margin: 0; padding: 0;
}
.nav-list a {
  position: relative;
  display: block;
  padding: 6px 0;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: .07em;
  text-decoration: none;
  color: var(--ink);
  transition: color .3s var(--ease);
}
.nav-list a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .45s var(--ease);
}
.nav-list a:hover::after,
.nav-list a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.nav-list a[aria-current="page"] { color: var(--coral); }
.site-header.is-over .nav-list a[aria-current="page"] { color: var(--gold-lit); }

.nav-end { display: flex; align-items: center; gap: 18px; flex: none; }

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  padding: 0;
  background: none;
  border: 0;
  cursor: pointer;
}
.burger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--ink);
  transition: transform .4s var(--ease), opacity .3s var(--ease), background-color .45s var(--ease);
}
.burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(.3); }
.burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile drawer */
.nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 45;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: calc(var(--header-h) + 30px) var(--gutter) 48px;
  background: var(--ink);
  color: var(--paper);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity .5s var(--ease), transform .5s var(--ease), visibility .5s;
  overflow-y: auto;
}
.nav-drawer.is-open { opacity: 1; visibility: visible; transform: none; }
.nav-drawer a.drawer-link {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line-invert);
  font-family: var(--serif);
  font-size: clamp(34px, 9vw, 52px);
  font-weight: 500;
  letter-spacing: -.03em;
  line-height: 1;
  color: var(--paper);
  text-decoration: none;
  opacity: 0;
  transform: translateY(18px);
  transition: color .3s var(--ease);
}
.nav-drawer.is-open a.drawer-link {
  animation: drawerIn .6s var(--ease) forwards;
  animation-delay: calc(60ms * var(--i, 0) + 120ms);
}
@keyframes drawerIn { to { opacity: 1; transform: none; } }
.nav-drawer a.drawer-link:hover { color: var(--gold-lit); }
.nav-drawer a.drawer-link .num {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--coral);
}
.drawer-foot {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  opacity: 0;
}
.nav-drawer.is-open .drawer-foot { animation: drawerIn .6s var(--ease) .5s forwards; }
.drawer-foot a.mail {
  font-family: var(--serif);
  font-size: 21px;
  color: var(--gold-lit);
  text-decoration: none;
  border-bottom: 1px solid rgba(224, 193, 131, .4);
}

body.nav-open { overflow: hidden; }

/* 6. HERO ================================================================== */

.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: min(94vh, 900px);
  margin-top: calc(var(--header-h) * -1);
  padding: calc(var(--header-h) + 90px) var(--gutter) clamp(62px, 8vw, 104px);
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}
.hero-media { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  animation: kenburns 22s var(--ease-soft) infinite alternate;
}
@keyframes kenburns {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to   { transform: scale(1.14) translate3d(-1.5%, -1.5%, 0); }
}
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(105deg, rgba(14, 9, 8, .86) 0%, rgba(14, 9, 8, .55) 42%, rgba(14, 9, 8, .12) 78%),
    linear-gradient(to top, rgba(14, 9, 8, .78) 0%, rgba(14, 9, 8, .1) 46%);
}

.hero-inner { width: 100%; max-width: var(--maxw); margin: 0 auto; }
.hero-content { max-width: 760px; }
.hero h1 { margin-bottom: 26px; color: var(--white); }
.hero .lede { color: rgba(255, 253, 249, .82); font-size: clamp(17px, 1.7vw, 21px); max-width: 46ch; }

/* word-by-word reveal */
.hero h1 .w {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}
.hero h1 .w > span {
  display: inline-block;
  transform: translateY(105%);
  animation: wordUp .95s var(--ease) forwards;
  animation-delay: calc(90ms * var(--i, 0) + 180ms);
}
@keyframes wordUp { to { transform: none; } }

.hero-meta {
  position: absolute;
  left: var(--gutter); right: var(--gutter);
  bottom: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255, 253, 249, .72);
  pointer-events: none;
}
.hero-meta .rule { flex: 1; height: 1px; background: rgba(255, 253, 249, .22); max-width: 180px; }

.scroll-cue {
  display: flex;
  align-items: center;
  gap: 10px;
}
.scroll-cue .line {
  position: relative;
  width: 1px; height: 42px;
  background: rgba(255, 253, 249, .28);
  overflow: hidden;
}
.scroll-cue .line::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  animation: cue 2.1s var(--ease-soft) infinite;
}
@keyframes cue {
  0%   { transform: translateY(-100%); }
  55%  { transform: translateY(0); }
  100% { transform: translateY(100%); }
}

/* Page header (interior pages) */
.page-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: min(62vh, 560px);
  margin-top: calc(var(--header-h) * -1);
  padding: calc(var(--header-h) + 72px) var(--gutter) clamp(48px, 6vw, 76px);
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}
.page-hero .hero-media img { animation-duration: 26s; }
.page-hero-inner { width: 100%; max-width: var(--maxw); margin: 0 auto; }
.page-hero h1 { font-size: clamp(46px, 7vw, 104px); margin-bottom: 18px; color: var(--white); }
.page-hero .lede { color: rgba(255, 253, 249, .8); }

.crumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 253, 249, .6);
}
.crumbs a { color: inherit; text-decoration: none; }
.crumbs a:hover { color: var(--gold-lit); }
.crumbs .sep { color: var(--coral); }

/* 7. SECTION FURNITURE ===================================================== */

.section { padding: var(--section-y) var(--gutter); }
.section-inner { max-width: var(--maxw); margin: 0 auto; }
.section-narrow { max-width: var(--maxw-narrow); margin: 0 auto; }

.bg-paper   { background: var(--paper); }
.bg-paper-2 { background: var(--paper-2); }
.bg-white   { background: var(--white); }
.bg-ink     { background: var(--ink); color: var(--text-invert); }
.bg-coral   { background: var(--coral); color: var(--white); }
.bg-plum    { background: var(--plum); color: var(--text-invert); }

.on-dark { color: var(--text-invert); }
.on-dark h1, .on-dark h2, .on-dark h3, .on-dark h4 { color: var(--paper); }

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, .75fr);
  align-items: end;
  gap: clamp(24px, 4vw, 70px);
  margin-bottom: clamp(44px, 5vw, 76px);
}
.section-head h2 { margin-bottom: 0; }
.section-head .aside { font-size: 15px; color: var(--text-muted); max-width: 40ch; }
.on-dark .section-head .aside { color: var(--text-invert-muted); }
.section-head.is-centred {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
}
.section-head.is-centred .aside { max-width: 52ch; }

/* Arabesque divider — echoes the mandala in the logo */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 0 auto;
  color: var(--gold);
}
.ornament .rule {
  height: 1px;
  width: clamp(48px, 14vw, 190px);
  background: linear-gradient(to right, transparent, currentColor);
  opacity: .5;
}
.ornament .rule:last-child { background: linear-gradient(to left, transparent, currentColor); }
.ornament svg { width: 30px; height: 30px; flex: none; opacity: .9; }

.section-ornament { padding: 0 var(--gutter); }

/* 8. MARQUEE =============================================================== */

.marquee {
  position: relative;
  display: flex;
  overflow: hidden;
  padding: 22px 0;
  background: var(--ink);
  color: var(--paper);
  border-block: 1px solid var(--line-invert);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex;
  flex: none;
  align-items: center;
  gap: 34px;
  padding-right: 34px;
  white-space: nowrap;
  animation: slide 38s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes slide { to { transform: translateX(-100%); } }
.marquee-track span {
  font-family: var(--serif);
  font-size: clamp(20px, 2.4vw, 32px);
  font-style: italic;
  letter-spacing: -.02em;
}
.marquee-track .star { color: var(--coral); font-style: normal; font-size: 15px; }

/* 9. INTRO BAND & STATS ==================================================== */

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 6vw, 96px);
  align-items: center;
}
.intro-figure {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.intro-figure img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.intro-figure:hover img { transform: scale(1.05); }
.intro-figure .tag {
  position: absolute;
  left: 0; bottom: 0;
  background: var(--gold);
  color: var(--ink);
  padding: 13px 22px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(112px, 1fr));
  gap: clamp(18px, 2.2vw, 34px);
  margin-top: clamp(38px, 4vw, 56px);
  padding-top: clamp(28px, 3vw, 40px);
  border-top: 1px solid var(--line);
}
.on-dark .stats { border-top-color: var(--line-invert); }
.stat .n {
  display: block;
  font-family: var(--serif);
  font-size: clamp(42px, 4.6vw, 62px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -.04em;
  color: var(--coral);
}
.on-dark .stat .n { color: var(--gold-lit); }
.stat .l {
  display: block;
  margin-top: 9px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.on-dark .stat .l { color: var(--text-invert-muted); }

/* 10. OFFER CARDS ========================================================== */

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 34px);
}
.offer {
  position: relative;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform .6s var(--ease), box-shadow .6s var(--ease), border-color .6s var(--ease);
}
.offer:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.offer-media {
  position: relative;
  aspect-ratio: 4 / 3.3;
  overflow: hidden;
}
.offer-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.offer:hover .offer-media img { transform: scale(1.07); }
.offer-media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(14, 9, 8, .5), transparent 55%);
  opacity: 0;
  transition: opacity .6s var(--ease);
}
.offer:hover .offer-media::after { opacity: 1; }
.offer-num {
  position: absolute;
  top: 16px; left: 16px;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(247, 242, 234, .92);
  color: var(--ink);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .06em;
}
.offer-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: clamp(22px, 2.2vw, 32px);
}
.offer-body h3 { margin-bottom: 12px; }
.offer-body p { font-size: 14.5px; color: var(--text-muted); margin-bottom: 20px; }
.offer-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--coral);
}
.offer-cta .arr { transition: transform .45s var(--ease); }
.offer:hover .offer-cta .arr { transform: translate(4px, -4px); }

/* 11. DANCE STYLES ========================================================= */

/* Borders live on the cells, not on a coloured grid gap, so a part-filled
   last row leaves no orphaned block of background behind it. */
.styles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  border-top: 1px solid var(--line-invert);
  border-left: 1px solid var(--line-invert);
}
.style-cell {
  position: relative;
  padding: clamp(26px, 3vw, 40px);
  background: transparent;
  border-right: 1px solid var(--line-invert);
  border-bottom: 1px solid var(--line-invert);
  overflow: hidden;
  transition: background-color .5s var(--ease);
}
.style-cell:hover { background: var(--ink-2); }
.style-cell .k {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 14px;
}
.style-cell h4 { margin-bottom: 10px; color: var(--paper); }
.style-cell p { font-size: 14px; color: var(--text-invert-muted); margin: 0; }
.style-cell::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: linear-gradient(to right, var(--coral), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .6s var(--ease);
}
.style-cell:hover::after { transform: scaleX(1); }

/* 12. TIMETABLE ============================================================ */

.timetable { display: grid; gap: 14px; }

.tt-row {
  display: grid;
  grid-template-columns: 92px minmax(0, 1.5fr) minmax(0, 1.2fr) auto;
  align-items: center;
  gap: clamp(16px, 2.4vw, 36px);
  padding: clamp(20px, 2.2vw, 28px) clamp(22px, 2.4vw, 34px);
  background: var(--white);
  border: 1px solid var(--line);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
}
.tt-row:hover {
  transform: translateX(6px);
  border-color: transparent;
  box-shadow: var(--shadow);
}
.tt-day {
  display: grid;
  place-items: center;
  align-content: center;
  aspect-ratio: 1;
  width: 92px;
  border-radius: 50%;
  background: var(--paper-2);
  text-align: center;
  transition: background-color .5s var(--ease), color .5s var(--ease);
}
.tt-row:hover .tt-day { background: var(--coral); color: var(--white); }
.tt-day .d {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--coral);
  transition: color .5s var(--ease);
}
.tt-row:hover .tt-day .d { color: var(--white); }
.tt-day .t {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -.02em;
}
.tt-main h3 { font-size: clamp(22px, 2.1vw, 30px); margin-bottom: 6px; }
.tt-level {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.tt-level .pip { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.tt-where { font-size: 14px; line-height: 1.5; }
.tt-where strong { display: block; font-weight: 600; }
.tt-where span { color: var(--text-muted); font-size: 13px; }
.tt-book { justify-self: end; }

.tt-note {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-top: 28px;
  padding: 20px 24px;
  background: var(--paper-2);
  border-left: 2px solid var(--gold);
  font-size: 14px;
  color: var(--text-muted);
}
.tt-note svg { flex: none; width: 19px; height: 19px; color: var(--gold); margin-top: 2px; }

/* 13. PRICING ============================================================== */

.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(18px, 2.2vw, 28px);
}
.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 3vw, 40px);
  background: var(--white);
  border: 1px solid var(--line);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.price-card.is-feature {
  background: var(--ink);
  color: var(--text-invert);
  border-color: var(--ink);
}
.price-card.is-feature h3 { color: var(--paper); }
.price-card .badge {
  position: absolute;
  top: -1px; right: clamp(20px, 3vw, 34px);
  background: var(--gold);
  color: var(--ink);
  padding: 7px 14px;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.price-card h3 { font-size: clamp(24px, 2.2vw, 31px); margin-bottom: 6px; }
.price-card .sub {
  font-size: 12.5px;
  color: var(--text-muted);
  margin-bottom: 22px;
}
.price-card.is-feature .sub { color: var(--text-invert-muted); }
.price-card .amount {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.price-card.is-feature .amount { border-bottom-color: var(--line-invert); }
.price-card .amount .v {
  font-family: var(--serif);
  font-size: clamp(44px, 4.4vw, 58px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -.04em;
  color: var(--coral);
}
.price-card.is-feature .amount .v { color: var(--gold-lit); }
.price-card .amount .per { font-size: 12px; color: var(--text-muted); }
.price-card.is-feature .amount .per { color: var(--text-invert-muted); }
.price-list { list-style: none; margin: 0 0 28px; padding: 0; display: grid; gap: 11px; }
.price-list li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-size: 14.5px;
}
.price-list svg { flex: none; width: 16px; height: 16px; margin-top: 4px; color: var(--gold); }
.price-card .btn { margin-top: auto; }

/* 14. REVIEWS ============================================================== */

.reviews { position: relative; overflow: hidden; }

.reviews-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: clamp(26px, 4vw, 60px);
  margin-bottom: clamp(38px, 4vw, 60px);
}

.rating-summary {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 26px;
  border: 1px solid var(--line-invert);
  border-radius: 999px;
  background: rgba(247, 242, 234, .04);
  white-space: nowrap;
}
.rating-summary .score {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -.04em;
  color: var(--gold-lit);
}
.rating-summary .meta { display: grid; gap: 5px; }
.rating-summary .meta small {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-invert-muted);
}

.stars { display: inline-flex; gap: 3px; }
.stars svg { width: 15px; height: 15px; color: var(--gold); }

.reviews-viewport { overflow: hidden; margin-inline: calc(var(--gutter) * -1); padding-inline: var(--gutter); }
.reviews-track {
  display: flex;
  gap: clamp(18px, 2.2vw, 28px);
  transition: transform .7s var(--ease);
  will-change: transform;
}

.review {
  flex: 0 0 calc((100% - 2 * clamp(18px, 2.2vw, 28px)) / 3);
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 3vw, 40px);
  background: rgba(247, 242, 234, .045);
  border: 1px solid var(--line-invert);
  transition: background-color .5s var(--ease), border-color .5s var(--ease), transform .5s var(--ease);
}
.review:hover {
  background: rgba(247, 242, 234, .08);
  border-color: rgba(200, 160, 78, .5);
  transform: translateY(-5px);
}
.review .mark {
  font-family: var(--serif);
  font-size: 68px;
  line-height: .6;
  color: var(--coral);
  opacity: .55;
  margin-bottom: 18px;
}
.review blockquote {
  margin: 0 0 26px;
  font-family: var(--serif);
  font-size: clamp(19px, 1.65vw, 23px);
  font-style: italic;
  line-height: 1.42;
  letter-spacing: -.015em;
  color: var(--paper);
}
.review-foot {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid var(--line-invert);
}
.review-avatar {
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  flex: none;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--coral), var(--coral-deep));
  color: var(--white);
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: .01em;
}
.review-who { display: grid; gap: 3px; min-width: 0; }
.review-who .nm { font-size: 14px; font-weight: 600; color: var(--paper); }
.review-who .loc {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--text-invert-muted);
}
.review-foot .stars { margin-left: auto; flex: none; }

.reviews-nav {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: clamp(32px, 3.5vw, 48px);
}
.rnav-btn {
  display: grid;
  place-items: center;
  width: 50px; height: 50px;
  border: 1px solid var(--line-invert);
  border-radius: 50%;
  background: transparent;
  color: var(--paper);
  cursor: pointer;
  transition: background-color .4s var(--ease), color .4s var(--ease),
              border-color .4s var(--ease), transform .4s var(--ease);
}
.rnav-btn:hover:not(:disabled) { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.rnav-btn:disabled { opacity: .3; cursor: default; }
.rnav-btn svg { width: 17px; height: 17px; }

.rdots { display: flex; gap: 8px; margin-left: 6px; }
.rdot {
  width: 30px; height: 2px;
  padding: 0;
  border: 0;
  background: var(--line-invert);
  cursor: pointer;
  transition: background-color .4s var(--ease);
}
.rdot.is-active { background: var(--gold); }
.reviews-count {
  margin-left: auto;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-invert-muted);
}

/* 15. GALLERY & LIGHTBOX =================================================== */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(10px, 1.2vw, 18px);
}
.gshot {
  position: relative;
  display: block;
  padding: 0;
  border: 0;
  background: var(--paper-3);
  overflow: hidden;
  cursor: zoom-in;
}
.gshot img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease), filter .6s var(--ease);
}
.gshot:hover img { transform: scale(1.06); }
.gshot::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(14, 9, 8, .6), transparent 50%);
  opacity: 0;
  transition: opacity .5s var(--ease);
}
.gshot:hover::after { opacity: 1; }
.gshot .cap {
  position: absolute;
  left: 18px; right: 18px; bottom: 16px;
  z-index: 1;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--white);
  text-align: left;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.gshot:hover .cap { opacity: 1; transform: none; }

/* spans */
.g-6 { grid-column: span 6; aspect-ratio: 3 / 2; }
.g-4 { grid-column: span 4; aspect-ratio: 4 / 5; }
.g-8 { grid-column: span 8; aspect-ratio: 16 / 9; }
.g-12 { grid-column: span 12; aspect-ratio: 21 / 9; }
.g-3 { grid-column: span 3; aspect-ratio: 3 / 4; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: clamp(16px, 4vw, 54px);
  background: rgba(10, 7, 6, .94);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .45s var(--ease), visibility .45s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox figure {
  margin: 0;
  max-width: min(1150px, 100%);
  max-height: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transform: scale(.96);
  transition: transform .5s var(--ease);
}
.lightbox.is-open figure { transform: none; }
.lightbox img {
  max-width: 100%;
  max-height: calc(100vh - 170px);
  width: auto;
  margin: 0 auto;
  object-fit: contain;
  box-shadow: var(--shadow-lg);
}
.lightbox figcaption {
  text-align: center;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255, 253, 249, .7);
}
.lb-btn {
  position: absolute;
  display: grid;
  place-items: center;
  width: 52px; height: 52px;
  border: 1px solid rgba(255, 253, 249, .28);
  border-radius: 50%;
  background: rgba(10, 7, 6, .5);
  color: var(--white);
  cursor: pointer;
  transition: background-color .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
}
.lb-btn:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.lb-btn svg { width: 18px; height: 18px; }
.lb-close { top: clamp(16px, 3vw, 34px); right: clamp(16px, 3vw, 34px); }
.lb-prev { left: clamp(10px, 2.4vw, 34px); top: 50%; transform: translateY(-50%); }
.lb-next { right: clamp(10px, 2.4vw, 34px); top: 50%; transform: translateY(-50%); }

/* 16. FAQ ================================================================== */

.faq { display: grid; gap: 0; border-top: 1px solid var(--line); }
.on-dark .faq { border-top-color: var(--line-invert); }
.faq-item { border-bottom: 1px solid var(--line); }
.on-dark .faq-item { border-bottom-color: var(--line-invert); }

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  padding: clamp(22px, 2.4vw, 30px) 0;
  background: none;
  border: 0;
  text-align: left;
  cursor: pointer;
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 27px);
  font-weight: 500;
  letter-spacing: -.02em;
  line-height: 1.22;
  color: inherit;
  transition: color .35s var(--ease);
}
.faq-q:hover { color: var(--coral); }
.on-dark .faq-q:hover { color: var(--gold-lit); }
.faq-icon {
  position: relative;
  flex: none;
  width: 34px; height: 34px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  transition: background-color .4s var(--ease), border-color .4s var(--ease), transform .5s var(--ease);
}
.on-dark .faq-icon { border-color: var(--line-invert); }
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 12px; height: 1.5px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform .45s var(--ease), opacity .3s var(--ease);
}
.faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-q[aria-expanded="true"] .faq-icon { background: var(--coral); border-color: var(--coral); color: var(--white); transform: rotate(180deg); }
.faq-q[aria-expanded="true"] .faq-icon::after { opacity: 0; }

.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .55s var(--ease);
}
.faq-q[aria-expanded="true"] + .faq-a { grid-template-rows: 1fr; }
.faq-a > div { overflow: hidden; }
.faq-a p {
  max-width: 68ch;
  padding-bottom: clamp(22px, 2.4vw, 30px);
  font-size: 15.5px;
  color: var(--text-muted);
  margin: 0;
}
.on-dark .faq-a p { color: var(--text-invert-muted); }

/* 17. FORMS & CONTACT ====================================================== */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: clamp(36px, 5vw, 86px);
  align-items: start;
}

.contact-list { display: grid; gap: 4px; margin: 34px 0 0; }
.cline {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  transition: padding-left .4s var(--ease);
}
.on-dark .cline { border-bottom-color: var(--line-invert); }
a.cline:hover { padding-left: 8px; }
.cline .ic {
  display: grid;
  place-items: center;
  flex: none;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--paper-2);
  color: var(--coral);
  transition: background-color .4s var(--ease), color .4s var(--ease);
}
.on-dark .cline .ic { background: rgba(247, 242, 234, .07); color: var(--gold-lit); }
a.cline:hover .ic { background: var(--coral); color: var(--white); }
.cline .ic svg { width: 17px; height: 17px; }
.cline .k {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.on-dark .cline .k { color: var(--text-invert-muted); }
.cline .v { font-size: 16px; font-weight: 500; word-break: break-word; }

.form-card {
  padding: clamp(28px, 3.4vw, 48px);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.on-dark .form-card { background: rgba(247, 242, 234, .045); border-color: var(--line-invert); }

.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 8px; }
.field.is-full { grid-column: 1 / -1; }
.field label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.on-dark .field label { color: var(--text-invert-muted); }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 0;
  transition: border-color .35s var(--ease), background-color .35s var(--ease), box-shadow .35s var(--ease);
}
.field textarea { resize: vertical; min-height: 130px; line-height: 1.6; }
.field select { appearance: none; cursor: pointer; background-image: none; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--coral);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(192, 84, 63, .12);
}
.field input::placeholder, .field textarea::placeholder { color: #a2938c; }
.field .err {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: var(--coral-deep);
  min-height: 0;
}
.field.has-error input,
.field.has-error select,
.field.has-error textarea { border-color: var(--coral-deep); }

.form-note {
  margin-top: 18px;
  font-size: 12.5px;
  color: var(--text-muted);
}
.form-status {
  margin-top: 18px;
  padding: 14px 18px;
  background: var(--paper-2);
  border-left: 2px solid var(--gold);
  font-size: 14px;
}
.form-status.is-good { border-left-color: #4b8b5f; }
.form-status.is-bad  { border-left-color: var(--coral); }

/* Honeypot — off-screen rather than display:none, which bots skip. */
.hp {
  position: absolute;
  left: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
}

/* Submit button while the enquiry is in flight */
.btn[aria-busy="true"] { opacity: .65; pointer-events: none; }

/* Social icons */
.socials { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.social {
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  text-decoration: none;
  transition: background-color .4s var(--ease), color .4s var(--ease),
              border-color .4s var(--ease), transform .4s var(--ease);
}
.social svg { width: 18px; height: 18px; }
.social:hover { background: var(--coral); border-color: var(--coral); color: var(--white); transform: translateY(-3px); }
.on-dark .social, .site-footer .social { border-color: var(--line-invert); color: var(--paper); }
.on-dark .social:hover, .site-footer .social:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.socials.is-lg .social { width: 54px; height: 54px; }
.socials.is-lg .social svg { width: 21px; height: 21px; }

/* 18. CTA BAND ============================================================= */

.cta-band {
  position: relative;
  padding: clamp(80px, 11vw, 168px) var(--gutter);
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
  text-align: center;
}
.cta-band .hero-media img { object-position: center 38%; }
.cta-band .hero-scrim { background: linear-gradient(to bottom, rgba(14, 9, 8, .74), rgba(14, 9, 8, .86)); }
.cta-band h2 { color: var(--white); margin-bottom: 20px; }
.cta-band h2 i { color: var(--gold-lit); }
.cta-band .lede { margin: 0 auto; color: rgba(255, 253, 249, .82); }
.cta-band .btn-row { justify-content: center; }

/* 19. FOOTER =============================================================== */

.site-footer {
  background: var(--ink);
  color: var(--text-invert);
  padding: clamp(56px, 7vw, 96px) var(--gutter) 30px;
}
.footer-inner { max-width: var(--maxw); margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr));
  gap: clamp(30px, 4vw, 64px);
  padding-bottom: clamp(40px, 5vw, 64px);
  border-bottom: 1px solid var(--line-invert);
}
.footer-brand { display: grid; gap: 20px; align-content: start; }
.footer-brand img { width: 128px; opacity: .95; }
.footer-brand p { font-size: 14.5px; color: var(--text-invert-muted); max-width: 34ch; margin: 0; }

.fcol h5 {
  margin: 0 0 20px;
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-lit);
}
.fcol ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.fcol a {
  font-size: 14.5px;
  color: var(--text-invert-muted);
  text-decoration: none;
  transition: color .3s var(--ease), padding-left .35s var(--ease);
}
.fcol a:hover { color: var(--paper); padding-left: 5px; }
.fcol .line { font-size: 14px; color: var(--text-invert-muted); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 26px;
}
.footer-bottom small { font-size: 11.5px; color: rgba(247, 242, 234, .48); }
.footer-bottom .legal { display: flex; gap: 20px; }
.footer-bottom .legal a {
  font-size: 11.5px;
  color: rgba(247, 242, 234, .48);
  text-decoration: none;
}
.footer-bottom .legal a:hover { color: var(--paper); }

/* 20. UTILITIES ============================================================ */

/* Scroll progress */
.progress {
  position: fixed;
  top: 0; left: 0;
  z-index: 100;
  height: 2px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(to right, var(--coral), var(--gold));
  pointer-events: none;
}

/* Reveal on scroll */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
  transition-delay: calc(var(--d, 0) * 85ms);
}
[data-reveal="left"]  { transform: translateX(-30px); }
[data-reveal="right"] { transform: translateX(30px); }
[data-reveal="scale"] { transform: scale(.96); }
[data-reveal].is-in { opacity: 1; transform: none; }

/* Back to top */
.to-top {
  position: fixed;
  right: clamp(16px, 2.4vw, 34px);
  bottom: clamp(16px, 2.4vw, 34px);
  z-index: 90;
  display: grid;
  place-items: center;
  width: 50px; height: 50px;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  box-shadow: var(--shadow);
  transition: opacity .45s var(--ease), transform .45s var(--ease),
              visibility .45s, background-color .35s var(--ease);
}
.to-top.is-shown { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--coral); }
.to-top svg { width: 17px; height: 17px; }

.text-centre { text-align: center; }
.mt-lg { margin-top: clamp(38px, 4.5vw, 64px); }

/* 21. RESPONSIVE =========================================================== */

@media (max-width: 1100px) {
  .offer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .review { flex-basis: calc((100% - clamp(18px, 2.2vw, 28px)) / 2); }
  .footer-top { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tt-row { grid-template-columns: 78px minmax(0, 1.4fr) minmax(0, 1fr); }
  .tt-day { width: 78px; }
  .tt-book { grid-column: 2 / -1; justify-self: start; margin-top: 4px; }
}

@media (max-width: 900px) {
  :root { --header-h: 74px; }

  .nav-list, .nav-end .btn { display: none; }
  .burger { display: flex; }

  .intro-grid { grid-template-columns: 1fr; }
  .section-head { grid-template-columns: 1fr; align-items: start; }
  .reviews-head { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .review { flex-basis: 100%; }

  .g-6, .g-4, .g-8, .g-3 { grid-column: span 6; }
  .g-12 { grid-column: span 12; aspect-ratio: 16 / 9; }
  .g-4, .g-3 { aspect-ratio: 3 / 4; }

  .announce { font-size: 9.5px; letter-spacing: .13em; }
  .announce .hide-sm { display: none; }
}

@media (max-width: 680px) {
  .offer-grid { grid-template-columns: 1fr; }
  .field-grid { grid-template-columns: 1fr; }

  .hero { min-height: 640px; align-items: flex-end; }
  .hero-meta { font-size: 9px; }
  .hero-meta .rule { display: none; }

  .tt-row {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 22px;
  }
  .tt-day {
    width: auto;
    aspect-ratio: auto;
    border-radius: 999px;
    padding: 9px 20px;
    display: inline-flex;
    gap: 10px;
    align-items: baseline;
    justify-self: start;
  }
  .tt-day .t { font-size: 18px; }
  .tt-book { grid-column: auto; }

  .rating-summary { width: 100%; border-radius: 0; justify-content: flex-start; }
  .reviews-count { display: none; }

  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .lb-prev { left: 8px; }
  .lb-next { right: 8px; }
  .lb-btn { width: 44px; height: 44px; }
}

@media (max-width: 420px) {
  .g-6, .g-4, .g-8, .g-3 { grid-column: span 12; aspect-ratio: 4 / 3; }
  .btn { padding: 15px 24px; font-size: 10.5px; }
  .btn-row { gap: 12px; }
  .btn-row .btn { width: 100%; }
}

/* 22. REDUCED MOTION & PRINT =============================================== */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .hero h1 .w > span { transform: none !important; }
  .nav-drawer a.drawer-link, .drawer-foot { opacity: 1 !important; transform: none !important; }
  .hero-media img { animation: none !important; transform: scale(1.04); }
}

@media print {
  .site-header, .announce, .nav-drawer, .to-top, .progress,
  .marquee, .cta-band, .lightbox { display: none !important; }
  body { background: #fff; color: #000; }
  .hero, .page-hero { min-height: 0; color: #000; padding: 20px 0; }
  .hero-media, .hero-scrim { display: none; }
  .hero h1, .page-hero h1 { color: #000; }
  a { text-decoration: underline; }
}
