/* =========================================================
   Hollins Heating (DEMO) — Gas Safe heating engineers.

   Ported from the Heatfix Framer template's design language onto a
   hand-coded token system: near-black ink on white, a light grey wash
   band, one hot orange accent, and Figtree throughout.

   The template's signatures, kept deliberately:
     - very tight display tracking (-.037em at h1, -.036em at h2) at
       weight 600 — not 700; the whole page reads lighter than it looks
     - 16px card radii, 100px pills
     - buttons carry a circular icon chip on the RIGHT, which is why
       their padding is asymmetric (7px 7px 7px 22px)
     - white -> #f6f7f9 wash -> white banding, with exactly two
       near-black full-bleed sections (the cover plan and the booking
       form) carrying the whole page's contrast

   PHOTOGRAPHY. Four slots, cropped at build time by
   scripts/make_hollins_images.py — never with object-fit, except in the two
   full-bleed ones where the viewport aspect is unknowable. Two of them (the
   hero and the cover-plan band) sit under a near-black veil that is heaviest
   on the LEFT, because that is where the headings sit and both photographs
   are brightest on that side. Re-frame by editing that script's MANIFEST
   focus/zoom columns and re-running — never by hand-editing a WebP. Unlike
   Marram these are not greyscaled; this demo runs on one hot orange and a
   grey photograph would leave the accent nothing to sit against.
   The originals are NOT in the repo — see the script header.
   ========================================================= */

:root {
  --ink:        #000305;          /* near-black — all body text     */
  --ink-70:     rgba(0, 3, 5, .66);
  --ink-45:     rgba(0, 3, 5, .44);
  --paper:      #ffffff;
  --wash:       #f6f7f9;          /* the one grey band              */
  --accent:     #ff6333;          /* hot orange                     */
  --accent-deep:#e84d1e;
  --accent-soft:rgba(255, 99, 51, .12);

  --line:       rgba(0, 3, 5, .10);
  --line-d:     rgba(255, 255, 255, .14);
  --muted:      var(--ink-70);
  --muted-d:    rgba(255, 255, 255, .68);

  --r-card:     16px;
  --r-inner:    12px;
  --r-pill:     100px;

  --wrap:       1240px;
  --sect:       clamp(74px, 8vw, 124px);
  --ease:       cubic-bezier(.19, 1, .22, 1);
  --f:          "Figtree", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--f); color: var(--ink); background: var(--paper);
  font-size: 16.5px; line-height: 1.62; -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, select, textarea { font: inherit; color: inherit; }

.wrap { width: min(100% - 40px, var(--wrap)); margin-inline: auto; }
.brk { display: none; }
@media (min-width: 900px) { .brk { display: inline; } }

/* Demo badge — every client demo carries one, so nobody mistakes a
   concept build for a live business. */
.demobadge {
  position: fixed; z-index: 90; left: 14px; bottom: 14px;
  background: var(--ink); color: #fff; font-size: 11.5px; font-weight: 600;
  letter-spacing: .01em; padding: 8px 14px; border-radius: var(--r-pill);
  box-shadow: 0 8px 26px rgba(0, 3, 5, .28);
}
.demobadge:hover { background: var(--accent); }

/* ---------------------------------------------------------
   Type scale — the template's, converted to em tracking so it
   holds at every clamp step instead of only at the design width.
   --------------------------------------------------------- */
.shead { max-width: 720px; margin-bottom: clamp(38px, 4vw, 56px); }
.shead__h {
  font-size: clamp(32px, 4.4vw, 56px); line-height: 1.2; font-weight: 600;
  letter-spacing: -.036em;
}
.shead__p { margin-top: 16px; color: var(--muted); font-size: 17px; max-width: 58ch; }
.shead--d .shead__p, .section--ink .shead__p, .cta .shead__p { color: var(--muted-d); }
.section--ink .shead__h, .cta .shead__h { color: #fff; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 600; letter-spacing: .02em;
  color: var(--ink-70); margin-bottom: 18px;
}
.eyebrow--d { color: var(--muted-d); }
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); flex: none; }

.lnk { color: var(--accent); font-weight: 600; }
.lnk:hover { text-decoration: underline; }

/* ---------------------------------------------------------
   Buttons — pill, label first, circular icon chip on the right.
   The asymmetric padding exists to seat that chip; don't tidy it.
   --------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--ink); color: #fff;
  padding: 7px 7px 7px 22px; border-radius: var(--r-pill);
  font-size: 14.5px; font-weight: 600; letter-spacing: -.005em;
  border: 1px solid transparent; cursor: pointer;
  transition: background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
}
.btn__i {
  width: 30px; height: 30px; flex: none; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--accent); color: #fff;
  transition: background .25s var(--ease), transform .35s var(--ease);
}
.btn:hover { background: var(--accent); }
.btn:hover .btn__i { background: #fff; color: var(--accent); transform: rotate(45deg); }

.btn--sm { padding: 5px 5px 5px 18px; font-size: 13.5px; gap: 10px; }
.btn--sm .btn__i { width: 26px; height: 26px; }
.btn--lg { padding: 9px 9px 9px 26px; font-size: 15.5px; }
.btn--lg .btn__i { width: 36px; height: 36px; }
.btn--block { display: flex; justify-content: space-between; width: 100%; }

/* Outlined on light, outlined on dark. Both keep the chip. */
.btn--ghost { background: transparent; color: #fff; border-color: var(--line-d); }
.btn--ghost .btn__i { background: rgba(255, 255, 255, .14); }
.btn--ghost:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn--ghost:hover .btn__i { background: var(--accent); color: #fff; }

.btn--ghost-d { background: rgba(255, 255, 255, .06); color: #fff; border-color: var(--line-d); }
.btn--ghost-d .btn__i { background: rgba(255, 255, 255, .14); }
.btn--ghost-d:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn--ghost-d:hover .btn__i { background: var(--accent); color: #fff; }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

/* ---------------------------------------------------------
   Nav
   --------------------------------------------------------- */
.nav {
  position: sticky; top: 0; z-index: 80;
  background: rgba(255, 255, 255, .86); backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.nav.is-stuck { border-bottom-color: var(--line); }
.nav__inner { display: flex; align-items: center; gap: 26px; height: 74px; }

.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; letter-spacing: -.03em; font-size: 19px; }
.brand__mark {
  width: 32px; height: 32px; flex: none; border-radius: 9px;
  display: grid; place-items: center; background: var(--ink); color: var(--accent);
}
.brand__wm span { color: var(--accent); }

.nav__links { display: none; gap: 26px; margin-inline: auto; }
.nav__links a { font-size: 15px; font-weight: 500; color: var(--ink-70); position: relative; }
.nav__links a:hover { color: var(--ink); }
.nav__links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -5px; height: 2px;
  background: var(--accent); transition: right .3s var(--ease);
}
.nav__links a:hover::after { right: 0; }

.nav__actions { display: flex; align-items: center; gap: 12px; margin-left: auto; }
.nav__tel { display: none; align-items: center; gap: 7px; font-size: 14.5px; font-weight: 600; }
.nav__tel svg { color: var(--accent); }
.nav__tel:hover { color: var(--accent); }

.nav__toggle {
  width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 11px;
  background: transparent; display: grid; place-content: center; gap: 4px; cursor: pointer;
}
.nav__toggle span { display: block; width: 16px; height: 1.8px; background: var(--ink); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s; }
.nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(5.8px) rotate(45deg); }
.nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-5.8px) rotate(-45deg); }

.nav__mobile {
  display: grid; gap: 2px; padding: 0 20px;
  max-height: 0; overflow: hidden; transition: max-height .4s var(--ease), padding .4s var(--ease);
  border-top: 1px solid transparent;
}
.nav.is-open .nav__mobile { max-height: 460px; padding: 14px 20px 22px; border-top-color: var(--line); }
.nav__mobile a { padding: 11px 0; font-size: 16px; font-weight: 500; border-bottom: 1px solid var(--line); }
.nav__mobile .btn { margin-top: 14px; border-bottom: 0; }

/* Below 600px the header CTA wraps to two lines and crowds the burger.
   It is the first thing in the drawer, so drop it rather than shrink it. */
@media (max-width: 599px) { .nav__actions > .btn--sm { display: none; } }
@media (min-width: 1000px) {
  .nav__links { display: flex; }
  .nav__tel { display: inline-flex; }
  .nav__toggle { display: none; }
}

/* ---------------------------------------------------------
   Hero — the drawn stand-in for the template's full-bleed photo.
   .hero__bg is the photo slot: put an <img> in it and the glow and
   grid can stay on top as the veil.
   --------------------------------------------------------- */
.hero { position: relative; background: var(--ink); color: #fff; overflow: hidden; padding: clamp(56px, 6.2vw, 88px) 0 clamp(76px, 7vw, 112px); }
.hero__bg { position: absolute; inset: 0; }
.hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 62% 50%; }
/* The ramp, not a flat scrim: the headline needs near-opaque cover on the left
   (the photograph's left third is white pipework) while the engineer on the
   right stays visible. Flattening this to one alpha loses one or the other. */
.hero__veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(0,3,5,.97) 0%, rgba(0,3,5,.93) 34%, rgba(0,3,5,.72) 58%, rgba(0,3,5,.55) 100%),
    linear-gradient(to top, rgba(0,3,5,.85) 0%, rgba(0,3,5,0) 42%);
}
.hero__glow {
  position: absolute; right: -12%; bottom: -34%; width: 74%; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(255, 99, 51, .44) 0%, rgba(255, 99, 51, .12) 42%, transparent 68%);
  filter: blur(10px);
  mix-blend-mode: screen;
}
.hero__grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(var(--line-d) 1px, transparent 1px), linear-gradient(90deg, var(--line-d) 1px, transparent 1px);
  background-size: 78px 78px; opacity: .35;
  mask-image: radial-gradient(120% 90% at 20% 10%, #000 0%, transparent 72%);
}
.hero__inner { position: relative; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255, 255, 255, .07); border: 1px solid var(--line-d);
  padding: 7px 16px; border-radius: var(--r-pill);
  font-size: 12.5px; font-weight: 600; color: var(--muted-d); margin-bottom: 22px;
}
.hero__h1 {
  font-size: clamp(38px, 6.6vw, 82px); line-height: 1.08; font-weight: 600;
  letter-spacing: -.037em; max-width: 15ch;
}
.hero__sub { margin-top: 22px; max-width: 54ch; font-size: 17.5px; color: var(--muted-d); }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero__cta .btn:not(.btn--ghost) { background: #fff; color: var(--ink); }
.hero__cta .btn:not(.btn--ghost):hover { background: var(--accent); color: #fff; }
.hero__cta .btn:not(.btn--ghost):hover .btn__i { background: #fff; color: var(--accent); }

/* Entrance — one transform, no library. */
.hero__eyebrow, .hero__h1, .hero__sub, .hero__cta, .hero__card {
  opacity: 0; transform: translateY(18px); transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.hero.is-in .hero__eyebrow { opacity: 1; transform: none; transition-delay: .04s; }
.hero.is-in .hero__h1 { opacity: 1; transform: none; transition-delay: .1s; }
.hero.is-in .hero__sub { opacity: 1; transform: none; transition-delay: .18s; }
.hero.is-in .hero__cta { opacity: 1; transform: none; transition-delay: .26s; }
.hero.is-in .hero__card { opacity: 1; transform: none; transition-delay: .34s; }

.hero__card {
  margin-top: clamp(36px, 3.6vw, 52px);
  display: grid; gap: 22px;
  background: rgba(255, 255, 255, .06); border: 1px solid var(--line-d);
  border-radius: var(--r-card); padding: 24px;
  max-width: 640px;
}
.avail__k { font-size: 12.5px; font-weight: 600; color: var(--accent); letter-spacing: .04em; text-transform: uppercase; }
.avail__v { font-size: 26px; font-weight: 600; letter-spacing: -.03em; margin-top: 5px; }
.avail__v--sm { font-size: 19px; }
.avail__s { font-size: 14px; color: var(--muted-d); margin-top: 3px; }
.avail__div { height: 1px; background: var(--line-d); }
@media (min-width: 720px) {
  .hero__card { grid-template-columns: 1fr auto 1fr; align-items: center; gap: 28px; padding: 26px 30px; }
  .avail__div { height: auto; width: 1px; align-self: stretch; }
}

/* ---------------------------------------------------------
   Trust strip
   --------------------------------------------------------- */
.strip { border-bottom: 1px solid var(--line); }
.strip__inner { display: grid; gap: 1px; background: var(--line); }
.strip__i { background: var(--paper); padding: 26px 4px; text-align: center; }
.strip__i strong { display: block; font-size: 21px; font-weight: 600; letter-spacing: -.03em; }
.strip__i span { display: block; font-size: 13.5px; color: var(--muted); margin-top: 3px; }
@media (min-width: 640px) { .strip__inner { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .strip__inner { grid-template-columns: repeat(4, 1fr); } }

/* ---------------------------------------------------------
   Sections
   --------------------------------------------------------- */
.section { padding: var(--sect) 0; }
.section--wash { background: var(--wash); }
.section--ink { background: var(--ink); color: #fff; }

/* A near-black section carrying a photograph under the same veil as the hero,
   so the cover plan — the page's actual product — reads as the hero's twin
   rather than a second flat panel. The .wrap inside needs the stacking context,
   hence position: relative on both. */
.section--photo { position: relative; overflow: hidden; }
.sect__bg { position: absolute; inset: 0; }
.sect__bg img { width: 100%; height: 100%; object-fit: cover; object-position: 52% 46%; }
.sect__veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(0,3,5,.96) 0%, rgba(0,3,5,.9) 40%, rgba(0,3,5,.68) 72%, rgba(0,3,5,.56) 100%),
    linear-gradient(to top, rgba(0,3,5,.92) 0%, rgba(0,3,5,.4) 55%);
}
.section--photo > .wrap { position: relative; }

/* ---------------------------------------------------------
   Services — six cards, hairline on white, price line pinned bottom
   --------------------------------------------------------- */
.svc { display: grid; gap: 18px; }
@media (min-width: 660px) { .svc { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .svc { grid-template-columns: repeat(3, 1fr); } }

.svc__c {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-card);
  padding: 28px 26px 24px; display: flex; flex-direction: column;
  transition: border-color .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
}
.svc__c:hover { border-color: rgba(255, 99, 51, .4); transform: translateY(-3px); box-shadow: 0 16px 40px rgba(0, 3, 5, .07); }
.svc__i {
  width: 46px; height: 46px; border-radius: var(--r-inner); flex: none;
  display: grid; place-items: center; background: var(--accent-soft); color: var(--accent-deep);
  margin-bottom: 20px;
}
.svc__h { font-size: 21px; font-weight: 600; letter-spacing: -.028em; }
.svc__p { margin-top: 9px; color: var(--muted); font-size: 15.5px; }
.svc__m {
  margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--line);
  font-size: 15px; font-weight: 600; color: var(--accent-deep);
}

/* ---------------------------------------------------------
   Cover plans — the page's actual product
   --------------------------------------------------------- */
.plans { display: grid; gap: 18px; }
@media (min-width: 900px) { .plans { grid-template-columns: repeat(3, 1fr); align-items: start; } }

.plan {
  position: relative;
  background: rgba(0, 3, 5, .58); backdrop-filter: blur(7px);
  border: 1px solid var(--line-d);
  border-radius: var(--r-card); padding: 30px 26px;
  display: flex; flex-direction: column;
}
.plan--feat { background: #fff; backdrop-filter: none; color: var(--ink); border-color: #fff; }
.plan__tag {
  position: absolute; top: -12px; left: 26px;
  background: var(--accent); color: #fff; font-size: 11.5px; font-weight: 700;
  letter-spacing: .02em; padding: 5px 13px; border-radius: var(--r-pill);
}
.plan__h { font-size: 19px; font-weight: 600; letter-spacing: -.025em; }
.plan__price { margin-top: 12px; font-size: 15px; color: var(--muted-d); }
.plan--feat .plan__price { color: var(--muted); }
.plan__price span { font-size: 44px; font-weight: 600; letter-spacing: -.04em; color: #fff; margin-right: 2px; }
.plan--feat .plan__price span { color: var(--ink); }
.plan__sub { margin-top: 4px; font-size: 14.5px; color: var(--muted-d); }
.plan--feat .plan__sub { color: var(--muted); }

.plan__l { margin: 22px 0 26px; display: grid; gap: 11px; }
.plan__l li { position: relative; padding-left: 26px; font-size: 15px; color: var(--muted-d); }
.plan--feat .plan__l li { color: var(--muted); }
.plan__l li::before {
  content: ""; position: absolute; left: 0; top: 7px; width: 15px; height: 9px;
  border-left: 2px solid var(--accent); border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg) scale(.86); transform-origin: left bottom;
}
.plan .btn { margin-top: auto; }

.plans__note { margin-top: 26px; text-align: center; font-size: 14.5px; color: var(--muted-d); }

/* ---------------------------------------------------------
   Prices — two columns, a plain rule-separated list
   --------------------------------------------------------- */
.price__grid { display: grid; gap: clamp(36px, 5vw, 72px); }
@media (min-width: 940px) { .price__grid { grid-template-columns: 0.86fr 1fr; align-items: start; } }
.price__side .btn { margin-top: 28px; }
.price__side .shead__p { margin-bottom: 0; }

.price__shot { margin-top: 34px; }
.price__shot img {
  width: 100%; aspect-ratio: 3 / 2; object-fit: cover;
  border-radius: var(--r-card); background: var(--wash);
}
.price__shot figcaption { margin-top: 12px; font-size: 14px; color: var(--muted); max-width: 40ch; }

.price__list { border-top: 1px solid var(--line); }
.price__r {
  display: grid; grid-template-columns: 1fr auto; gap: 4px 20px; align-items: baseline;
  padding: 20px 0; border-bottom: 1px solid var(--line);
}
.price__n { font-size: 17.5px; font-weight: 600; letter-spacing: -.02em; }
.price__d { grid-column: 1; font-size: 14.5px; color: var(--muted); }
.price__v { grid-row: 1 / span 2; grid-column: 2; font-size: 20px; font-weight: 600; letter-spacing: -.03em; color: var(--accent-deep); white-space: nowrap; }

/* ---------------------------------------------------------
   Steps
   --------------------------------------------------------- */
.steps { display: grid; gap: 18px; counter-reset: s; }
@media (min-width: 660px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1060px) { .steps { grid-template-columns: repeat(4, 1fr); } }

.steps__i { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-card); padding: 26px 24px 24px; }
.steps__n {
  display: inline-grid; place-items: center; width: 42px; height: 42px; border-radius: 50%;
  background: var(--ink); color: #fff; font-size: 14px; font-weight: 700; letter-spacing: -.02em;
  margin-bottom: 18px;
}
.steps__i:nth-child(2) .steps__n { background: var(--accent); }
.steps__h { font-size: 19px; font-weight: 600; letter-spacing: -.026em; }
.steps__p { margin-top: 8px; font-size: 15.5px; color: var(--muted); }

/* ---------------------------------------------------------
   Why — 4:5 photograph beside a tick list. The one slot on the page
   that has to show a person; the crop is baked, not object-fit.
   --------------------------------------------------------- */
.why__grid { display: grid; gap: clamp(36px, 5vw, 68px); }
@media (min-width: 940px) { .why__grid { grid-template-columns: 0.82fr 1fr; align-items: center; } }

.why__img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover;
  border-radius: var(--r-card); background: var(--wash);
}

.why__list { display: grid; gap: 22px; margin-top: 32px; }
@media (min-width: 620px) { .why__list { grid-template-columns: repeat(2, 1fr); gap: 26px 30px; } }
.why__i { display: flex; gap: 13px; }
.why__k {
  width: 30px; height: 30px; flex: none; border-radius: 50%;
  display: grid; place-items: center; background: var(--accent-soft); color: var(--accent-deep);
}
.why__i h3 { font-size: 17px; font-weight: 600; letter-spacing: -.024em; }
.why__i p { margin-top: 5px; font-size: 15px; color: var(--muted); }

/* ---------------------------------------------------------
   Quotes
   --------------------------------------------------------- */
.quotes { display: grid; gap: 18px; }
@media (min-width: 860px) { .quotes { grid-template-columns: repeat(3, 1fr); } }
.quote {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-card);
  padding: 28px 26px; display: flex; flex-direction: column;
}
.quote blockquote { font-size: 16.5px; letter-spacing: -.012em; }
.quote blockquote::before { content: "“"; display: block; font-size: 46px; line-height: .7; color: var(--accent); margin-bottom: 10px; }
.quote figcaption { margin-top: auto; padding-top: 20px; font-size: 14px; }
.quote figcaption strong { display: block; font-weight: 600; }
.quote figcaption span { color: var(--muted); }

/* ---------------------------------------------------------
   FAQ
   --------------------------------------------------------- */
.faq__grid { display: grid; gap: clamp(32px, 4vw, 64px); }
@media (min-width: 940px) { .faq__grid { grid-template-columns: 0.72fr 1fr; align-items: start; } }
.faq__side .shead__p { margin-bottom: 0; }

.faq { border-top: 1px solid var(--line); }
.faq__i { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 20px 0; font-size: 17.5px; font-weight: 600; letter-spacing: -.022em;
}
.faq__q span {
  width: 26px; height: 26px; flex: none; border-radius: 50%; position: relative;
  background: var(--accent-soft); transition: background .25s var(--ease), transform .3s var(--ease);
}
.faq__q span::before, .faq__q span::after {
  content: ""; position: absolute; inset: 0; margin: auto; background: var(--accent-deep);
  width: 11px; height: 1.8px; border-radius: 2px; transition: transform .3s var(--ease);
}
.faq__q span::after { transform: rotate(90deg); }
.faq__i.is-open .faq__q span { background: var(--accent); transform: rotate(180deg); }
.faq__i.is-open .faq__q span::before, .faq__i.is-open .faq__q span::after { background: #fff; }
.faq__i.is-open .faq__q span::after { transform: rotate(0deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .38s var(--ease); }
.faq__a p { padding-bottom: 22px; color: var(--muted); font-size: 15.5px; max-width: 62ch; }

/* ---------------------------------------------------------
   Booking — the page's second near-black band
   --------------------------------------------------------- */
.cta { background: var(--ink); color: #fff; }
.cta__grid { display: grid; gap: clamp(36px, 4.5vw, 64px); }
@media (min-width: 940px) { .cta__grid { grid-template-columns: 0.86fr 1fr; align-items: start; } }
.cta .shead__h { max-width: 16ch; }

.cta__facts { margin-top: 30px; display: grid; gap: 14px; }
.cta__facts li { display: flex; align-items: center; gap: 12px; font-size: 15.5px; color: var(--muted-d); }
.cta__facts li span { width: 32px; height: 32px; flex: none; border-radius: 50%; display: grid; place-items: center; background: rgba(255, 255, 255, .08); color: var(--accent); }
.cta__facts a { color: #fff; font-weight: 600; }
.cta__facts a:hover { color: var(--accent); }

.cta__formwrap { position: relative; }
.form {
  background: #fff; color: var(--ink); border-radius: var(--r-card);
  padding: clamp(24px, 3vw, 34px); display: grid; gap: 15px;
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.form.is-off { opacity: 0; transform: scale(.98); pointer-events: none; position: absolute; inset: 0; }
.form__row { display: grid; gap: 15px; }
@media (min-width: 560px) { .form__row { grid-template-columns: 1fr 1fr; } }

.fld { display: grid; gap: 7px; }
.fld > span, .fld legend { font-size: 13.5px; font-weight: 600; letter-spacing: -.01em; }
.fld input, .fld select, .fld textarea {
  border: 1px solid var(--line); border-radius: var(--r-inner);
  padding: 12px 14px; font-size: 15.5px; background: var(--wash);
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.fld textarea { resize: vertical; min-height: 88px; }
.fld input:focus, .fld select:focus, .fld textarea:focus { outline: none; border-color: var(--accent); background: #fff; }
.fld input:user-invalid { border-color: #c8371c; }
.fld--set { border: 0; }
.fld--set legend { margin-bottom: 9px; }

.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip input { position: absolute; opacity: 0; pointer-events: none; }
.chip span {
  display: inline-block; padding: 8px 15px; border-radius: var(--r-pill);
  border: 1px solid var(--line); font-size: 14px; font-weight: 500; cursor: pointer;
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.chip span:hover { border-color: var(--accent); }
.chip input:checked + span { background: var(--ink); color: #fff; border-color: var(--ink); }
.chip input:focus-visible + span { outline: 2px solid var(--accent); outline-offset: 2px; }

.form .btn { margin-top: 4px; }
.form__note { font-size: 13px; color: var(--muted); text-align: center; }

.form__done {
  background: #fff; color: var(--ink); border-radius: var(--r-card);
  padding: clamp(30px, 4vw, 48px); text-align: center;
  opacity: 0; transform: scale(.98); pointer-events: none;
  position: absolute; inset: 0; display: grid; align-content: center; gap: 10px;
  transition: opacity .35s var(--ease) .1s, transform .35s var(--ease) .1s;
}
.form__done.is-on { opacity: 1; transform: none; pointer-events: auto; position: relative; }
.form__tick { width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center; background: var(--accent-soft); color: var(--accent-deep); margin: 0 auto 6px; }
.form__done h3 { font-size: 26px; font-weight: 600; letter-spacing: -.03em; }
.form__done p { color: var(--muted); font-size: 15.5px; }
.form__done a { color: var(--accent); font-weight: 600; }
.form__demo { font-size: 13px; color: var(--ink-45); margin-top: 6px; }

/* ---------------------------------------------------------
   Footer
   --------------------------------------------------------- */
.foot { background: var(--wash); border-top: 1px solid var(--line); padding: clamp(48px, 6vw, 76px) 0 26px; }
.foot__inner { display: grid; gap: 34px; }
@media (min-width: 720px) { .foot__inner { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .foot__inner { grid-template-columns: 1.6fr repeat(3, 1fr); gap: 44px; } }

.brand--f { margin-bottom: 14px; }
.foot__brand p { font-size: 15px; color: var(--muted); max-width: 40ch; }
.foot__reg { margin-top: 10px; font-size: 13px; color: var(--ink-45); }

.foot__col { display: grid; gap: 9px; align-content: start; }
.foot__col h3 { font-size: 13px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-45); margin-bottom: 3px; }
.foot__col a { font-size: 15px; color: var(--muted); }
.foot__col a:hover { color: var(--accent); }
.foot__hrs { font-size: 14px; color: var(--ink-45); }

.foot__base {
  margin-top: clamp(36px, 4vw, 56px); padding-top: 20px; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 6px 22px; justify-content: space-between;
  font-size: 13px; color: var(--ink-45);
}
.foot__base a { color: var(--ink-70); font-weight: 600; }
.foot__base a:hover { color: var(--accent); }

/* ---------------------------------------------------------
   Scroll reveal — opt-in class, and the no-JS state is "visible"
   --------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------------------------------------------------------
   Veils on narrow screens
   The left-heavy ramp on .hero__veil and .sect__veil is correct on desktop,
   where the type occupies the left half and the photograph's subject sits
   right of it. On a phone the type spans the whole width, so the ramp leaves
   the end of every line sitting on the brightest part of the picture. Below
   860px it becomes a flat vertical wash instead — the subject is mostly
   cropped out at that width anyway.
   --------------------------------------------------------- */
@media (max-width: 860px) {
  .hero__veil {
    background: linear-gradient(180deg, rgba(0,3,5,.84) 0%, rgba(0,3,5,.9) 55%, rgba(0,3,5,.95) 100%);
  }
  .sect__veil {
    background: linear-gradient(180deg, rgba(0,3,5,.88) 0%, rgba(0,3,5,.94) 100%);
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .hero__eyebrow, .hero__h1, .hero__sub, .hero__cta, .hero__card { opacity: 1; transform: none; }
}
