/* ==========================================================================
   Public site.

   Ivory pages framed by a deep night header, films band and footer, with one
   accent drawn from the logo's gold. The three brand colours come from
   Settings → Theme and arrive as --brand, --page, --text and --on-accent on
   :root (see theme_style() in bootstrap.php); every other colour below is
   derived from them, so changing them in the admin re-tints the whole site.

   Cormorant Garamond for display, Jost for everything else.
   ========================================================================== */

:root {
  color-scheme: light;

  --brand: #b08a4e;
  --page:  #f7f3ec;
  --text:  #1f1b16;
  --on-accent: #16130f;

  --bg:          var(--page);
  --surface:     #ffffff;
  --surface-2:   color-mix(in srgb, var(--page) 50%, #ffffff);
  --tint:        color-mix(in srgb, var(--text) 4%, var(--page));
  --field:       color-mix(in srgb, var(--page) 35%, #ffffff);
  --ink:         var(--text);
  --ink-2:       color-mix(in srgb, var(--text) 82%, var(--page));
  --muted:       color-mix(in srgb, var(--text) 62%, var(--page));
  --faint:       color-mix(in srgb, var(--text) 40%, var(--page));
  --line:        color-mix(in srgb, var(--text) 11%, var(--page));
  --line-strong: color-mix(in srgb, var(--text) 22%, var(--page));

  --accent:        var(--brand);
  --accent-strong: color-mix(in srgb, var(--brand) 78%, #000);
  --accent-light:  color-mix(in srgb, var(--brand) 70%, #fff);
  --accent-soft:   color-mix(in srgb, var(--brand) 10%, transparent);
  --accent-line:   color-mix(in srgb, var(--brand) 35%, transparent);
  --accent-glow:   color-mix(in srgb, var(--brand) 35%, transparent);

  --good: #2f7d4f; --good-soft: #e6f2ea;
  --bad:  #b4412f; --bad-soft:  #f9e6e2;
  --wa:   #25d366;

  --night:       #12100d;
  --night-2:     #1c1915;
  --night-ink:   #f4eee5;
  --night-muted: rgba(244, 238, 229, 0.66);
  --night-line:  rgba(244, 238, 229, 0.14);

  --shadow-sm: 0 1px 3px rgba(20, 16, 12, 0.06);
  --shadow-md: 0 6px 20px -8px rgba(20, 16, 12, 0.16);
  --shadow-lg: 0 24px 60px -24px rgba(20, 16, 12, 0.3);
  --focus:     0 0 0 3px var(--accent-line);
  --chevron:   url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none' stroke='%239e9890' stroke-width='1.6'%3E%3Cpath d='M1 1l5 5 5-5'/%3E%3C/svg%3E");

  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Jost", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --gutter:  clamp(16px, 4vw, 56px);
  --shell:   1320px;
  --header:  78px;
  --r-sm:    4px;
  --r-md:    8px;
  --r-lg:    10px;
  --r-xl:    14px;
  --section: clamp(64px, 9vw, 128px);
  --ease:    cubic-bezier(0.2, 0.7, 0.2, 1);
}

/* ------------------------------------------------------------------- base */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header);
  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 400 1rem/1.7 var(--sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
body.is-locked { overflow: hidden; }

img, svg, video { display: block; max-width: 100%; }
img, video { height: auto; }
svg { width: 1em; height: 1em; flex: none; }
[hidden] { display: none !important; }
a { color: inherit; text-decoration: none; }
p { margin: 0; }

h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: inherit;
  text-wrap: balance;
}

button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; padding: 0; cursor: pointer; }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
::selection { background: var(--accent-line); color: var(--ink); }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 50%; top: 8px; z-index: 300;
  transform: translate(-50%, -200%);
  padding: 10px 18px; border-radius: var(--r-sm);
  background: var(--surface); border: 1px solid var(--accent); color: var(--ink); font-size: 0.85rem;
}
.skip-link:focus { transform: translate(-50%, 0); }

.shell { width: 100%; max-width: var(--shell); margin-inline: auto; padding-inline: var(--gutter); }

/* ------------------------------------------------------------- typography */

.eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  margin: 0 0 16px;
  font: 500 0.74rem/1.3 var(--sans);
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--accent-strong);
}
.eyebrow::before { content: ""; width: 32px; height: 1px; background: currentColor; opacity: 0.6; }
.eyebrow--light { color: var(--accent-light); }

.section-title { font-size: clamp(2.3rem, 4.6vw, 3.6rem); }
.lede { max-width: 60ch; margin-top: 16px; color: var(--muted); font-size: clamp(1rem, 1.3vw, 1.1rem); }

.link-accent { font-size: 0.9rem; font-weight: 500; color: var(--accent-strong); }
.link-accent:hover { text-decoration: underline; text-underline-offset: 4px; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 10px;
  font: 500 0.78rem/1 var(--sans); letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent-strong);
}
.link-arrow svg { transition: transform 0.25s var(--ease); }
.link-arrow:hover svg { transform: translateX(4px); }

.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }

/* ---------------------------------------------------------------- buttons */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 50px; padding: 0 30px;
  border-radius: var(--r-sm);
  border: 1px solid transparent;
  background: var(--surface);
  color: var(--ink);
  font: 500 0.78rem/1.2 var(--sans); letter-spacing: 0.14em; text-transform: uppercase;
  white-space: nowrap; text-align: center;
  transition: background-color 0.25s, border-color 0.25s, color 0.25s, box-shadow 0.25s, opacity 0.2s;
}
.btn svg { width: 16px; height: 16px; transition: transform 0.25s var(--ease); }
.btn:hover svg { transform: translateX(3px); }
.btn:disabled { opacity: 0.45; cursor: not-allowed; box-shadow: none; }

.btn--accent { background: var(--accent); color: var(--on-accent); }
.btn--accent:hover { background: var(--accent-light); }

.btn--dark { background: var(--ink); color: var(--page); }
.btn--dark:hover { background: var(--accent-strong); color: #fff; }

.btn--outline { background: transparent; border-color: var(--line-strong); color: var(--ink); }
.btn--outline:hover { border-color: var(--ink); background: var(--ink); color: var(--page); }

.btn--soft { background: color-mix(in srgb, var(--text) 6%, transparent); color: var(--ink); }
.btn--soft:hover { background: color-mix(in srgb, var(--text) 11%, transparent); }

.btn--ghost { background: rgba(255, 255, 255, 0.04); border-color: rgba(255, 255, 255, 0.4); color: #fff; }
.btn--ghost:hover { border-color: #fff; background: #fff; color: var(--night); }

.btn--whatsapp { background: var(--wa); color: #fff; }
.btn--whatsapp:hover { background: #1ebe5a; }
.btn--whatsapp svg { width: 18px; height: 18px; }
.btn--whatsapp:hover svg { transform: none; }

.btn--sm { min-height: 40px; padding: 0 18px; font-size: 0.72rem; }
.btn--block { width: 100%; }

/* ------------------------------------------------------------ media slots */

.frame { position: relative; overflow: hidden; isolation: isolate; background: var(--tint); }
.frame > img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }

.ph {
  position: absolute; inset: 0;
  background: radial-gradient(120% 110% at var(--t-x) var(--t-y), var(--t-accent) 0%, var(--t-inner) 45%, var(--t-outer) 100%);
}
.ph-mark { position: absolute; inset: 0; z-index: 1; display: grid; place-items: center; }
.ph-mark img { width: clamp(28px, 16%, 56px); opacity: 0.4; }
.ph-label { position: absolute; inset: auto 14px 12px; z-index: 2; font-size: 0.72rem; color: var(--ink-2); opacity: 0.8; }

/* ----------------------------------------------------------------- fields */

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(22px, 3vw, 40px);
  box-shadow: var(--shadow-md);
}

.fields { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px 20px; }
.span-all { grid-column: 1 / -1; }

.field { display: block; min-width: 0; }
.field > span:first-child {
  display: block; margin-bottom: 8px;
  font: 500 0.7rem/1.3 var(--sans); letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted);
}
.req { color: var(--accent-strong); font-style: normal; }

.input, .select, .textarea {
  width: 100%; min-height: 50px;
  padding: 12px 16px;
  background: var(--field);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  color: var(--ink);
  font-size: 1rem;
  -webkit-appearance: none; appearance: none;
  transition: border-color 0.2s, box-shadow 0.2s, background-color 0.2s;
}
.textarea { min-height: 110px; resize: vertical; line-height: 1.6; }
.input::placeholder, .textarea::placeholder { color: var(--faint); }
.input:hover, .select:hover, .textarea:hover { border-color: var(--line-strong); }
.input:focus, .select:focus, .textarea:focus { outline: none; background: var(--surface); border-color: var(--accent); box-shadow: var(--focus); }
.select { padding-right: 40px; background-image: var(--chevron); background-repeat: no-repeat; background-position: right 16px center; }

.input-icon { position: relative; display: block; }
.input-icon > svg { position: absolute; left: 16px; top: 50%; translate: 0 -50%; width: 18px; height: 18px; color: var(--faint); pointer-events: none; }
.input-icon > .input { padding-left: 46px; }

.field-error { display: block; margin-top: 6px; font-size: 0.82rem; color: var(--bad); }
.is-invalid { border-color: var(--bad) !important; background: var(--bad-soft); }

.form-submit { margin-top: 26px; }
.consent { margin-top: 14px; font-size: 0.82rem; line-height: 1.6; color: var(--muted); }
.consent a { color: var(--accent-strong); text-decoration: underline; text-underline-offset: 3px; }
.hp { position: absolute; left: -9999px; }

.notice {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 14px 16px; margin-bottom: 22px;
  border-radius: var(--r-md);
  border: 1px solid color-mix(in srgb, var(--good) 30%, transparent);
  background: var(--good-soft);
  font-size: 0.92rem; color: var(--ink);
}
.notice svg { width: 18px; height: 18px; margin-top: 3px; color: var(--good); }
.notice--bad { border-color: color-mix(in srgb, var(--bad) 35%, transparent); background: var(--bad-soft); }
.notice--bad svg { color: var(--bad); }
.notice a { color: var(--accent-strong); text-decoration: underline; text-underline-offset: 3px; }

/* ----------------------------------------------------------------- header */

.header {
  position: fixed; inset: 0 0 auto; z-index: 100;
  padding-top: env(safe-area-inset-top, 0px);
  background: color-mix(in srgb, var(--night) 94%, transparent);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--night-line);
  color: var(--night-ink);
  transition: background-color 0.35s, border-color 0.35s;
}
.header--over:not(.is-stuck) {
  background: linear-gradient(180deg, rgba(10, 8, 6, 0.55), rgba(10, 8, 6, 0));
  -webkit-backdrop-filter: none; backdrop-filter: none;
  border-color: transparent;
}
body.is-locked .header { background: var(--night); border-color: var(--night-line); }

.header__bar { display: flex; align-items: center; gap: 28px; height: var(--header); }

.brand { flex: none; margin-right: auto; }
.brand img { height: 48px; width: auto; }

.nav { display: flex; align-items: center; gap: clamp(18px, 2.2vw, 34px); }
.nav a {
  position: relative; padding: 6px 0;
  font-size: 0.74rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(244, 238, 229, 0.78); transition: color 0.2s;
}
.nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform 0.3s var(--ease);
}
.nav a:hover, .nav a.is-active { color: #fff; }
.nav a:hover::after, .nav a.is-active::after { transform: scaleX(1); }

.header__end { display: flex; align-items: center; gap: 10px; flex: none; }

.burger { display: none; place-items: center; width: 44px; height: 44px; margin-right: -10px; color: #fff; }
.burger i, .burger i::before, .burger i::after {
  display: block; width: 22px; height: 1.5px; border-radius: 2px; background: currentColor;
  transition: transform 0.28s var(--ease), background-color 0.2s;
}
.burger i { position: relative; }
.burger i::before, .burger i::after { content: ""; position: absolute; left: 0; }
.burger i::before { top: -7px; }
.burger i::after { top: 7px; }
.burger[aria-expanded="true"] i { background: transparent; }
.burger[aria-expanded="true"] i::before { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] i::after { transform: translateY(-7px) rotate(-45deg); }

.drawer {
  position: fixed; inset: 0; z-index: 99;
  display: flex; flex-direction: column; gap: 28px;
  padding: calc(var(--header) + 24px + env(safe-area-inset-top, 0px)) var(--gutter) calc(28px + env(safe-area-inset-bottom, 0px));
  background: var(--night); color: var(--night-ink);
  overflow-y: auto;
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.drawer.is-open { opacity: 1; visibility: visible; }
.drawer__nav { display: grid; }
.drawer__nav a {
  padding: 14px 0; border-bottom: 1px solid var(--night-line);
  font-family: var(--serif); font-size: clamp(1.8rem, 7vw, 2.4rem); line-height: 1.1;
  opacity: 0; transform: translateY(10px); transition: opacity 0.4s, transform 0.4s var(--ease), color 0.2s;
}
.drawer__nav a:hover { color: var(--accent-light); }
.drawer.is-open .drawer__nav a { opacity: 1; transform: none; }
.drawer.is-open .drawer__nav a:nth-child(2) { transition-delay: 0.04s; }
.drawer.is-open .drawer__nav a:nth-child(3) { transition-delay: 0.08s; }
.drawer.is-open .drawer__nav a:nth-child(4) { transition-delay: 0.12s; }
.drawer.is-open .drawer__nav a:nth-child(5) { transition-delay: 0.16s; }
.drawer__actions { display: grid; gap: 10px; }
.drawer__meta { display: grid; gap: 12px; margin-top: auto; font-size: 0.92rem; color: var(--night-muted); }
.drawer__meta a { display: inline-flex; align-items: center; gap: 12px; }
.drawer__meta svg { width: 18px; height: 18px; color: var(--accent-light); }

/* ------------------------------------------------------------------- hero */

.hero {
  position: relative; isolation: isolate; overflow: hidden;
  min-height: 100svh;
  display: grid; align-items: end;
  background: var(--night);
  color: #fff;
}
.hero__media { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.hero__media video, .hero__poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__embed {
  position: absolute; top: 50%; left: 50%; border: 0; pointer-events: none;
  width: max(100vw, 177.78svh); height: max(56.25vw, 100svh);
  translate: -50% -50%;
}
.hero__media .ph { filter: brightness(0.45) saturate(0.9); }
.hero__loader { position: absolute; inset: 0; display: none; place-items: center; background: var(--night); }
.hero__media.is-loading .hero__loader { display: grid; }
.hero__media.is-loading .hero__poster ~ .hero__loader { display: none; }
.hero__loader span {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.18); border-top-color: var(--accent);
  animation: spin 0.9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(10, 8, 6, 0.6) 0%, rgba(10, 8, 6, 0.1) 65%),
    linear-gradient(180deg, rgba(10, 8, 6, 0) 40%, rgba(10, 8, 6, 0.85) 100%);
}
.hero__inner {
  padding-block: calc(var(--header) + 48px) clamp(96px, 16vh, 150px);
  display: grid; justify-items: start; gap: 20px;
}
.hero .eyebrow { margin: 0; }
.hero__title {
  max-width: 19ch;
  font-size: clamp(2.6rem, 5.6vw, 5rem); line-height: 1.04; font-weight: 400;
  color: var(--night-ink);
}
.hero__title em { display: block; font-style: italic; color: var(--accent-light); }
.hero__sub { max-width: 52ch; color: var(--night-muted); font-size: clamp(1rem, 1.35vw, 1.15rem); font-weight: 300; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 12px; }
.hero__note {
  display: inline-flex; align-items: center; gap: 10px; margin-top: 4px;
  font-size: 0.86rem; letter-spacing: 0.04em; color: rgba(255, 255, 255, 0.8);
}
.hero__note:hover { color: #fff; }
.hero__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 0 var(--accent-glow); animation: pulse 2s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 10px transparent; } 100% { box-shadow: 0 0 0 0 transparent; } }

.hero__scroll {
  position: absolute; left: 50%; bottom: 28px; translate: -50% 0;
  display: grid; place-items: start center; width: 26px; height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.45); border-radius: 999px;
}
.hero__scroll span { width: 2px; height: 8px; margin-top: 8px; border-radius: 2px; background: #fff; animation: scrollcue 1.8s var(--ease) infinite; }
@keyframes scrollcue { 0% { opacity: 0; transform: translateY(0); } 30% { opacity: 1; } 100% { opacity: 0; transform: translateY(14px); } }

/* numbers strip */
.stats-band { background: var(--night); color: var(--night-ink); border-top: 1px solid var(--night-line); }
.stats { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); margin-block: 0; }
.stat {
  display: flex; flex-direction: column-reverse; align-items: center; gap: 6px;
  padding: clamp(26px, 3.4vw, 44px) 12px; text-align: center;
}
.stat + .stat { border-left: 1px solid var(--night-line); }
.stat dd { margin: 0; font: 400 clamp(2.2rem, 3.6vw, 3.1rem)/1 var(--serif); color: var(--accent-light); }
.stat dt { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--night-muted); }

/* --------------------------------------------------------------- sections */

.section { padding-block: var(--section); }
.section--tint { background: var(--tint); }
.section--dark { background: var(--night); color: var(--night-ink); }
.section--dark .eyebrow { color: var(--accent-light); }
.section--dark .lede { color: var(--night-muted); }

.section__head { margin-bottom: clamp(36px, 5vw, 64px); }
.section__head--center { max-width: 760px; margin-inline: auto; text-align: center; }
.section__head--center .eyebrow::after { content: ""; width: 32px; height: 1px; background: currentColor; opacity: 0.6; }
.section__head--center .lede { margin-inline: auto; }

.section__bar { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: clamp(36px, 5vw, 56px); }
.section__bar .section__head { margin-bottom: 0; }

/* ----------------------------------------------------------------- photos */

.masonry { columns: 4 260px; column-gap: 14px; }
.masonry > * { break-inside: avoid; margin-bottom: 14px; }
.shot { position: relative; display: block; width: 100%; overflow: hidden; border-radius: var(--r-sm); cursor: zoom-in; }
.shot .frame::after {
  content: ""; position: absolute; inset: 0; z-index: 3;
  background: linear-gradient(180deg, rgba(10, 8, 6, 0) 50%, rgba(10, 8, 6, 0.45)); opacity: 0; transition: opacity 0.4s;
}
.shot__zoom {
  position: absolute; right: 14px; bottom: 14px; z-index: 4;
  display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.92); color: var(--night);
  opacity: 0; transform: translateY(6px); transition: opacity 0.35s, transform 0.35s var(--ease);
}
.shot__zoom svg { width: 16px; height: 16px; }
.shot:hover .frame::after, .shot:focus-visible .frame::after { opacity: 1; }
.shot:hover .shot__zoom, .shot:focus-visible .shot__zoom { opacity: 1; transform: none; }
.shot:hover .frame > img { transform: scale(1.04); }

.more-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 20px 36px; margin-top: 48px; }
.more-row small { font-weight: 400; letter-spacing: 0; color: var(--muted); }

/* ------------------------------------------------------------------ films */

.rail-arrows { display: flex; gap: 10px; flex: none; }
.rail-arrow {
  display: grid; place-items: center; width: 50px; height: 50px; border-radius: 50%;
  border: 1px solid var(--night-line); color: var(--night-ink);
  transition: opacity 0.2s, color 0.2s, border-color 0.2s, background-color 0.2s;
}
.rail-arrow svg { width: 18px; height: 18px; }
.rail-arrow:hover:not(:disabled) { background: var(--accent); border-color: var(--accent); color: var(--on-accent); }
.rail-arrow:disabled { opacity: 0.3; cursor: default; }

.rail {
  display: flex; gap: 20px; overflow-x: auto; overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory; scrollbar-width: none;
}
.rail::-webkit-scrollbar { display: none; }

.film {
  position: relative; display: block; text-align: left;
  flex: 0 0 calc((100% - 40px) / 3); scroll-snap-align: start;
  border-radius: var(--r-md); overflow: hidden; background: #000;
}
.film .frame { background: var(--night-2); }
.film:hover .frame > img { transform: scale(1.05); }
.film__veil { position: absolute; inset: 0; z-index: 2; background: linear-gradient(180deg, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0.85) 100%); }
.film__play {
  position: absolute; z-index: 3; top: 36%; left: 50%; translate: -50% -50%;
  display: grid; place-items: center; width: 60px; height: 60px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.14); border: 1px solid rgba(255, 255, 255, 0.55);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  transition: background-color 0.3s, border-color 0.3s, transform 0.3s var(--ease);
}
.film__play svg { width: 18px; height: 18px; margin-left: 3px; fill: #fff; }
.film:hover .film__play { background: var(--accent); border-color: var(--accent); transform: scale(1.08); }
.film:hover .film__play svg { fill: var(--on-accent); }
.film__body { position: absolute; inset: auto 0 0; z-index: 3; display: grid; gap: 2px; padding: 20px 22px; }
.film__couple { font: 500 1.45rem/1.15 var(--serif); color: #fff; }
.film__venue { font-size: 0.78rem; letter-spacing: 0.08em; color: rgba(255, 255, 255, 0.7); }
.film__cta {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 8px;
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent-light);
}
.film__cta svg { width: 14px; height: 14px; transition: transform 0.25s var(--ease); }
.film:hover .film__cta svg { transform: translateX(4px); }
.film__badge {
  position: absolute; z-index: 3; top: 14px; left: 14px;
  padding: 5px 10px; border-radius: var(--r-sm); background: rgba(0, 0, 0, 0.55); color: #fff;
  font-size: 0.7rem; letter-spacing: 0.06em;
}

/* --------------------------------------------------------------- packages */

.pkg-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0 24px; padding-top: 14px; }
.pkg {
  position: relative; display: flex; flex-direction: column; margin-bottom: 24px;
  padding: clamp(28px, 3vw, 44px) clamp(24px, 2.6vw, 38px);
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.35s, transform 0.35s var(--ease);
}
.pkg:hover { box-shadow: var(--shadow-lg); }
.pkg__flag {
  position: absolute; top: 0; left: 50%; translate: -50% -50%;
  padding: 7px 16px; border-radius: 999px; background: var(--accent); color: var(--on-accent);
  font-size: 0.66rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; white-space: nowrap;
}
.pkg__head { text-align: center; }
.pkg__name { font-size: clamp(2rem, 2.6vw, 2.5rem); }
.pkg__tagline { margin-top: 6px; font: italic 400 1.1rem/1.4 var(--serif); color: var(--muted); }
.pkg__price {
  display: grid; justify-items: center; gap: 4px; margin: 24px 0 0; padding: 22px 0;
  border-block: 1px solid var(--line); text-align: center;
}
.pkg__price span { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }
.pkg__price b { font: 500 clamp(2.4rem, 3vw, 2.9rem)/1 var(--serif); color: var(--ink); }
.pkg__price small { font-size: 0.8rem; color: var(--muted); }
.pkg__for { margin-top: 18px; font-size: 0.92rem; text-align: center; color: var(--ink-2); }
.pkg__for b { display: block; margin-bottom: 2px; font-size: 0.66rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent-strong); }
.pkg__list { list-style: none; flex: 1; display: grid; align-content: start; gap: 11px; margin: 24px 0 30px; padding: 0; }
.pkg__list li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.95rem; line-height: 1.5; }
.pkg__list svg { width: 16px; height: 16px; margin-top: 4px; }
.pkg__yes svg { color: var(--accent); stroke-width: 2; }
.pkg__no { color: var(--faint); }
.pkg__no > span { text-decoration: line-through; text-decoration-color: var(--line-strong); }
.pkg__cta { display: grid; gap: 12px; }
.pkg__custom { justify-self: center; font-size: 0.84rem; color: var(--muted); text-decoration: underline; text-decoration-color: var(--line-strong); text-underline-offset: 4px; }
.pkg__custom:hover { color: var(--ink); text-decoration-color: currentColor; }

.pkg--featured { background: var(--night); color: var(--night-ink); border-color: var(--accent-line); box-shadow: var(--shadow-lg); }
.pkg--featured .pkg__tagline, .pkg--featured .pkg__price span, .pkg--featured .pkg__price small, .pkg--featured .pkg__custom { color: var(--night-muted); }
.pkg--featured .pkg__price { border-color: var(--night-line); }
.pkg--featured .pkg__price b { color: var(--accent-light); }
.pkg--featured .pkg__for { color: var(--night-ink); }
.pkg--featured .pkg__for b, .pkg--featured .pkg__yes svg { color: var(--accent-light); }
.pkg--featured .pkg__no { color: rgba(244, 238, 229, 0.38); }
.pkg--featured .pkg__custom:hover { color: #fff; }

.pkg-note {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px 32px;
  margin-top: clamp(36px, 5vw, 56px); padding: clamp(24px, 3vw, 36px) clamp(24px, 3.4vw, 44px);
  border: 1px solid var(--line-strong); border-radius: var(--r-md);
}
.pkg-note h3 { font-size: clamp(1.6rem, 2.4vw, 2rem); }
.pkg-note p { margin-top: 4px; color: var(--muted); }

/* ---------------------------------------------------------------- reviews */

.review-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.stars { display: inline-flex; gap: 3px; }
.stars i { width: 14px; height: 14px; background: var(--line); clip-path: polygon(50% 0, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%); }
.stars i.is-on { background: var(--accent); }
.review {
  display: flex; flex-direction: column; gap: 18px;
  padding: clamp(26px, 2.8vw, 36px);
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md);
}
.review blockquote { position: relative; flex: 1; margin: 0; font: italic 400 1.28rem/1.5 var(--serif); color: var(--ink-2); }
.review blockquote::before { content: "\201C"; display: block; height: 0.5em; margin-bottom: 8px; font-size: 3.2rem; line-height: 1; color: var(--accent); }
.review footer { display: flex; align-items: center; gap: 12px; padding-top: 18px; border-top: 1px solid var(--line); }
.review__avatar { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: var(--night); color: var(--accent-light); font-family: var(--serif); font-size: 1.2rem; }
.review footer b { display: block; font-size: 0.95rem; font-weight: 500; }
.review footer small { display: block; font-size: 0.8rem; color: var(--muted); }

/* ---------------------------------------------------------------- enquiry */

.enquiry { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); }
.enquiry__aside {
  display: flex; flex-direction: column;
  padding: clamp(32px, 4.4vw, 60px);
  background: var(--night); color: var(--night-ink);
  border-radius: var(--r-md) 0 0 var(--r-md);
}
.enquiry__intro { margin-top: 16px; color: var(--night-muted); }
.enquiry__form {
  padding: clamp(28px, 4.4vw, 60px);
  background: var(--surface); border-radius: 0 var(--r-md) var(--r-md) 0; box-shadow: var(--shadow-lg);
}

.contact-list { display: grid; gap: 20px; margin: 36px 0 0; padding: 0; list-style: none; }
.contact-list li { display: flex; align-items: flex-start; gap: 16px; }
.contact-list svg {
  width: 42px; height: 42px; padding: 11px; flex: none;
  border: 1px solid var(--night-line); border-radius: 50%; color: var(--accent-light);
}
.contact-list small { display: block; font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--night-muted); }
.contact-list a, .contact-list span { font-size: 0.98rem; overflow-wrap: anywhere; }
.contact-list a:hover { color: var(--accent-light); }

/* ---------------------------------------------------------- quote builder */

.section--quote {
  --warn: #a8661a; --warn-soft: #fbf1e2;
  padding-top: calc(var(--header) + clamp(40px, 6vw, 80px));
  background: var(--tint);
}
.qb-notice { max-width: 1180px; margin-inline: auto; }
.qb { display: grid; grid-template-columns: minmax(0, 1fr); gap: 18px; max-width: 1180px; margin-inline: auto; }
.qb > *, .qb-panel, .qb-step { min-width: 0; }
.qb-card { border-radius: var(--r-lg); padding: clamp(20px, 3vw, 36px); }

/* ---- your details */
.qb-intro { max-width: 640px; margin-inline: auto; }
.qb-howit { display: flex; justify-content: center; gap: 8px; margin: 0 0 28px; padding: 0; list-style: none; }
.qb-howit li { display: flex; align-items: center; gap: 8px; font-size: 0.84rem; color: var(--muted); }
.qb-howit li + li::before { content: ""; width: 26px; height: 1px; margin-right: 2px; background: var(--line-strong); }
.qb-howit b { display: grid; place-items: center; width: 26px; height: 26px; border-radius: 50%; background: var(--surface-2); border: 1px solid var(--line); font-size: 0.76rem; font-weight: 500; color: var(--ink-2); }
.qb-howit li:first-child b { background: var(--accent); border-color: var(--accent); color: var(--on-accent); }
.qb-howit li:first-child { color: var(--ink); font-weight: 500; }
.qb-intro__title { font-size: clamp(1.7rem, 3vw, 2.1rem); text-align: center; }
.qb-intro__lede { margin: 6px 0 26px; text-align: center; color: var(--muted); }
.qb-optional { margin-left: 4px; font-size: 0.72rem; font-weight: 400; letter-spacing: 0; text-transform: none; color: var(--faint); }
.qb-continue { margin-top: 26px; }
.qb-back { margin-top: 12px; text-align: center; font-size: 0.88rem; }
.qb-back a { color: var(--muted); text-decoration: underline; text-underline-offset: 3px; }

.qb-load { margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--line); }
.qb-load summary { list-style: none; cursor: pointer; text-align: center; font-size: 0.92rem; color: var(--muted); }
.qb-load summary::-webkit-details-marker { display: none; }
.qb-load summary span { color: var(--accent-strong); font-weight: 500; text-decoration: underline; text-underline-offset: 3px; }
.qb-load[open] summary { margin-bottom: 14px; }
.qb-load__help { margin-top: 10px; font-size: 0.86rem; color: var(--muted); text-align: center; }
.qb-load__help a { color: var(--accent-strong); }
.qb-load__row, .qb-custom__row { display: flex; flex-wrap: wrap; gap: 8px; }
.qb-load__row .input, .qb-custom__row .input { flex: 1 1 220px; width: auto; }

/* ---- who the quote is for */
.qb-for { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px 20px;
  padding: 14px 18px; border: 1px solid var(--line); border-radius: var(--r-md); background: var(--surface); }
.qb-for__who { display: flex; align-items: center; gap: 12px; min-width: 0; }
.qb-for__who b { font-weight: 500; }
.qb-for__avatar { display: grid; place-items: center; flex: none; width: 42px; height: 42px; border-radius: 50%;
  background: var(--night); color: var(--accent-light); font-family: var(--serif); font-size: 1.2rem; }
.qb-for__phone { margin-left: 6px; color: var(--muted); font-size: 0.92rem; }
.qb-for__id { margin-top: 1px; font-size: 0.82rem; color: var(--muted); }
.qb-for__id code { font: 500 0.82rem/1 var(--sans); color: var(--accent-strong); overflow-wrap: anywhere; }
.qb-for__actions { display: flex; flex-wrap: wrap; gap: 8px; }

/* ---- progress */
.qb-progress { position: relative; }
.qb-progress__bar { height: 3px; margin-bottom: 12px; border-radius: 999px; background: var(--line); overflow: hidden; }
.qb-progress__bar i { display: block; height: 100%; border-radius: inherit; background: var(--accent); transition: width 0.4s var(--ease); }
.qb-steps { display: flex; gap: 6px; margin: 0; padding: 0 0 2px; list-style: none; overflow-x: auto; scrollbar-width: none; scroll-behavior: smooth; }
.qb-steps::-webkit-scrollbar { display: none; }
.qb-steps li { flex: 1 0 auto; }
.qb-tab {
  display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%;
  padding: 8px 12px; border-radius: 999px; border: 1px solid transparent; background: none;
  font: 500 0.84rem/1.2 var(--sans); color: var(--faint); white-space: nowrap;
  transition: background-color 0.2s, border-color 0.2s, color 0.2s;
}
.qb-tab > b {
  position: relative; display: grid; place-items: center; flex: none; width: 24px; height: 24px; border-radius: 50%;
  border: 1.5px solid currentColor; font-size: 0.72rem; font-weight: 600;
}
.qb-tab > b svg { position: absolute; width: 12px; height: 12px; stroke-width: 2.6; opacity: 0; }
.qb-tab:not(:disabled) { color: var(--ink-2); }
.qb-tab:not(:disabled):hover { background: var(--surface); border-color: var(--line); }
.qb-tab.is-done > b { background: var(--accent); border-color: var(--accent); color: var(--on-accent); }
.qb-tab.is-done > b span { opacity: 0; }
.qb-tab.is-done > b svg { opacity: 1; }
.qb-tab.is-current { background: var(--surface); border-color: var(--accent); color: var(--ink); box-shadow: var(--shadow-sm); }
.qb-tab.is-current > b { background: var(--accent); border-color: var(--accent); color: var(--on-accent); }
.qb-tab:disabled { cursor: default; }

/* ---- layout */
.qb-layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 22px; align-items: start; }
.qb.is-summary .qb-layout { grid-template-columns: minmax(0, 1fr); }
.qb.is-summary .qb-side, .qb.is-summary .qb-mbar { display: none; }
.qb.is-summary .qb-panel { width: 100%; max-width: 780px; margin-inline: auto; }

.qb-step { display: none; }
.qb-step.is-active { display: block; animation: qbin 0.35s var(--ease); }
@keyframes qbin { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.qb-head { margin-bottom: 24px; }
.qb-head--center { text-align: center; }
.qb-head__count { margin-bottom: 8px; font: 500 0.7rem/1 var(--sans); letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent-strong); }
.qb-head h2 { font-size: clamp(1.7rem, 2.6vw, 2.2rem); }
.qb-help { margin-top: 6px; color: var(--muted); }
.qb-empty { padding: 24px; border: 1px dashed var(--line-strong); border-radius: var(--r-md); text-align: center; color: var(--muted); font-size: 0.94rem; }

/* ---- option tiles */
.qb-grid { display: grid; gap: 10px; grid-template-columns: repeat(var(--cols, 2), minmax(0, 1fr)); }
.qb-grid--events { grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); }

.qb-opt, .qb-qty {
  position: relative; display: flex; gap: 12px; min-height: 64px;
  padding: 14px 16px; border: 1px solid var(--line); border-radius: var(--r-md); background: var(--surface);
  transition: border-color 0.18s, background-color 0.18s, box-shadow 0.18s;
}
.qb-opt { align-items: center; cursor: pointer; }
.qb-opt:hover, .qb-qty:hover { border-color: var(--line-strong); box-shadow: var(--shadow-sm); }
.qb-opt input { position: absolute; opacity: 0; pointer-events: none; }
.qb-opt:has(input:checked), .qb-qty.is-on { background: var(--accent-soft); border-color: var(--accent); box-shadow: inset 0 0 0 1px var(--accent); }
.qb-opt:has(input:focus-visible) { box-shadow: var(--focus); }

.qb-opt__ico { display: grid; place-items: center; flex: none; width: 40px; height: 40px; border-radius: var(--r-md); background: var(--tint); color: var(--accent-strong); }
.qb-opt__ico svg { width: 20px; height: 20px; }
.qb-opt:has(input:checked) .qb-opt__ico { background: var(--surface); }

.qb-box {
  display: grid; place-items: center; flex: none; width: 22px; height: 22px; margin-left: auto;
  border: 1.5px solid var(--line-strong); border-radius: 5px; background: var(--surface);
  transition: background-color 0.18s, border-color 0.18s;
}
.qb-box svg { width: 12px; height: 12px; opacity: 0; color: var(--on-accent); stroke-width: 2.6; }
.qb-opt input:checked ~ .qb-box { background: var(--accent); border-color: var(--accent); }
.qb-opt input:checked ~ .qb-box svg { opacity: 1; }
.qb-grid--single .qb-box { border-radius: 50%; }

.qb-opt__txt, .qb-qty__txt { flex: 1; min-width: 0; }
.qb-opt__name, .qb-qty__name { display: block; font-size: 0.98rem; font-weight: 500; line-height: 1.35; }
.qb-opt__note, .qb-qty__note { display: block; margin-top: 3px; font-size: 0.82rem; line-height: 1.45; color: var(--muted); }
.qb-opt__price, .qb-qty__price { display: block; margin-top: 5px; font-size: 0.86rem; font-weight: 500; color: var(--accent-strong); font-variant-numeric: tabular-nums; }
.qb-opt__price small, .qb-qty__price small { font-weight: 400; color: var(--muted); }
.qb-grid--events .qb-opt__price { font-size: 0.76rem; }

.qb-qty { align-items: center; }
.stepper { display: flex; align-items: center; gap: 2px; flex: none; padding: 3px; border: 1px solid var(--line); border-radius: 999px; background: var(--surface); }
.stepper button { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; font-size: 1.1rem; line-height: 1; transition: background-color 0.18s, color 0.18s; }
.stepper button:hover:not(:disabled) { background: var(--accent-soft); color: var(--accent-strong); }
.stepper button:disabled { opacity: 0.3; cursor: not-allowed; }
.stepper output { min-width: 24px; text-align: center; font-weight: 600; font-variant-numeric: tabular-nums; }

/* ---- item packages */
.qb-packs { display: grid; gap: 14px; margin-top: 18px; }
.qb-pack { margin: 0; padding: 18px; border: 1px solid var(--accent-line); border-radius: var(--r-md);
  background: color-mix(in srgb, var(--brand) 5%, var(--surface)); animation: qbin 0.3s var(--ease); }
.qb-pack.is-missing { border-color: var(--warn); background: var(--warn-soft); }
.qb-pack__head { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 6px 12px; width: 100%; margin-bottom: 12px; padding: 0; }
.qb-pack__title { font-size: 0.96rem; color: var(--ink-2); }
.qb-pack__title b { color: var(--ink); font-weight: 600; }
.qb-pack__need { padding: 3px 10px; border-radius: 999px; background: var(--warn); color: #fff; font-size: 0.76rem; font-weight: 500; }
.qb-pack__grid { display: grid; gap: 10px; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); }

.qb-packopt {
  position: relative; display: flex; flex-direction: column; gap: 4px; padding: 16px 16px 14px;
  border: 1px solid var(--line); border-radius: var(--r-md); background: var(--surface); cursor: pointer;
  transition: border-color 0.18s, box-shadow 0.18s, background-color 0.18s;
}
.qb-packopt:hover { border-color: var(--line-strong); box-shadow: var(--shadow-sm); }
.qb-packopt input { position: absolute; opacity: 0; pointer-events: none; }
.qb-packopt:has(input:checked) { border-color: var(--accent); box-shadow: inset 0 0 0 1px var(--accent), var(--shadow-sm); }
.qb-packopt:has(input:focus-visible) { box-shadow: var(--focus); }
.qb-packopt.is-popular { padding-top: 26px; }
.qb-packopt__badge { position: absolute; top: -1px; left: 14px; padding: 3px 9px; border-radius: 0 0 6px 6px;
  background: var(--accent); color: var(--on-accent); font-size: 0.64rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }
.qb-packopt__name { padding-right: 28px; font-weight: 500; }
.qb-packopt__note { font-size: 0.82rem; line-height: 1.45; color: var(--muted); }
.qb-packopt__price { margin-top: auto; padding-top: 8px; font: 500 1.4rem/1 var(--serif); color: var(--accent-strong); font-variant-numeric: tabular-nums; }
.qb-packopt__mark { position: absolute; top: 14px; right: 14px; display: grid; place-items: center; width: 22px; height: 22px;
  border: 1.5px solid var(--line-strong); border-radius: 50%; background: var(--surface); }
.qb-packopt.is-popular .qb-packopt__mark { top: 24px; }
.qb-packopt__mark svg { width: 12px; height: 12px; color: var(--on-accent); stroke-width: 2.6; opacity: 0; }
.qb-packopt input:checked ~ .qb-packopt__mark { background: var(--accent); border-color: var(--accent); }
.qb-packopt input:checked ~ .qb-packopt__mark svg { opacity: 1; }

/* ---- team per event */
.qb-team { display: grid; gap: 16px; }
.qb-team__event { padding: 18px; border: 1px solid var(--line); border-radius: var(--r-md); background: var(--surface-2); }
.qb-team__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
.qb-team__head h3 { font: 500 1.05rem/1.2 var(--sans); letter-spacing: 0; }
.qb-team__head span { font-size: 0.92rem; font-weight: 500; color: var(--accent-strong); font-variant-numeric: tabular-nums; }
.qb-team__event .qb-qty { background: var(--surface); }
.qb-team__event .qb-qty.is-on { background: var(--accent-soft); }
.qb-team__copy { margin-top: 12px; padding: 7px 14px; border: 1px dashed var(--accent-line); border-radius: 999px; font-size: 0.84rem; font-weight: 500; color: var(--accent-strong); }
.qb-team__copy:hover { background: var(--accent-soft); }

/* ---- custom entries */
.qb-custom { margin-top: 22px; padding-top: 18px; border-top: 1px dashed var(--line-strong); }
.qb-custom__label { margin-bottom: 10px; font-size: 0.92rem; color: var(--ink-2); }
.qb-added { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin: 12px 0 0; padding: 0; }
.qb-added li { display: inline-flex; align-items: center; gap: 6px; padding: 5px 6px 5px 14px; border-radius: 999px;
  background: var(--accent-soft); border: 1px solid var(--accent-line); font-size: 0.88rem; }
.qb-added button { display: grid; place-items: center; width: 22px; height: 22px; border-radius: 50%; color: var(--muted); }
.qb-added button:hover { background: var(--surface); color: var(--ink); }
.qb-added svg { width: 10px; height: 10px; }

.qb-stepnote { margin-top: 18px; padding: 10px 14px; border-radius: var(--r-sm); background: var(--warn-soft); color: var(--warn); font-size: 0.9rem; font-weight: 500; }
.qb-actions { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--line); }
.qb-actions [data-next] { margin-left: auto; }

/* ---- live quote panel */
.qb-side { position: sticky; top: calc(var(--header) + 16px); }
.qb-side__card { padding: 22px; border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--surface); box-shadow: var(--shadow-md); }
.qb-side__card h3 { margin-bottom: 12px; font-size: 1.6rem; }
.qb-side__lines { display: grid; gap: 2px; max-height: 44vh; overflow-y: auto; margin: 0 -6px; padding: 0 6px; }
.qb-side__empty { padding: 14px 0; font-size: 0.9rem; color: var(--muted); }
.qb-sline { display: flex; justify-content: space-between; gap: 12px; padding: 7px 0; border-bottom: 1px solid var(--line); font-size: 0.88rem; }
.qb-sline:last-child { border-bottom: 0; }
.qb-sline small { display: block; font-size: 0.76rem; color: var(--muted); }
.qb-sline b { flex: none; font-weight: 500; font-variant-numeric: tabular-nums; white-space: nowrap; }
.qb-side__figs { display: grid; gap: 4px; margin-top: 10px; padding-top: 10px; border-top: 1px solid var(--line-strong); font-size: 0.86rem; color: var(--muted); }
.qb-side__figs > div { display: flex; justify-content: space-between; font-variant-numeric: tabular-nums; }
.qb-side__total { display: flex; align-items: baseline; justify-content: space-between; margin: 12px 0 16px; }
.qb-side__total span { font-weight: 500; }
.qb-side__total strong { font: 500 1.9rem/1 var(--serif); color: var(--accent-strong); font-variant-numeric: tabular-nums; }
.is-muted { font-weight: 400; color: var(--muted); }
.is-warn { font-weight: 500; color: var(--warn); }

.qb-mbar { display: none; }

/* ---- summary */
.qb-sum { display: grid; border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; }
.qb-sum__group { padding: 14px 18px; background: var(--surface); }
.qb-sum__group + .qb-sum__group { border-top: 1px solid var(--line); }
.qb-sum__group h3 { display: flex; justify-content: space-between; gap: 12px; margin-bottom: 6px; font: 500 0.7rem/1.3 var(--sans); letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent-strong); }
.qb-sum__row { display: flex; justify-content: space-between; gap: 16px; padding: 5px 0; font-size: 0.96rem; }
.qb-sum__row > span:last-child { font-weight: 500; white-space: nowrap; font-variant-numeric: tabular-nums; }
.qb-sum__rate { display: block; font-size: 0.82rem; color: var(--muted); font-variant-numeric: tabular-nums; }
.qb-sum__empty { padding: 26px 16px; text-align: center; color: var(--muted); }

.qb-figures { display: grid; gap: 6px; margin-top: 16px; padding-inline: 4px; }
.qb-figures__row { display: flex; justify-content: space-between; gap: 16px; font-size: 0.94rem; color: var(--muted); font-variant-numeric: tabular-nums; }
.qb-figures__row span:last-child { color: var(--ink); }

.qb-grand {
  display: flex; align-items: baseline; justify-content: space-between; gap: 16px;
  margin-top: 14px; padding: 20px 22px; border-radius: var(--r-md);
  background: var(--night); color: var(--night-ink);
}
.qb-grand span { font-size: 0.74rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; }
.qb-grand strong { font: 500 2.3rem/1 var(--serif); color: var(--accent-light); font-variant-numeric: tabular-nums; }
.qb-advance { margin-top: 10px; text-align: center; font-size: 0.92rem; color: var(--ink-2); }

.qb-summary__note { margin-top: 18px; text-align: center; color: var(--muted); }
.qb-summary__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 18px; }
.qb-summary__actions .btn { min-width: 260px; min-height: 54px; }

.qb-idbox { margin-top: 22px; padding: 16px; border-radius: var(--r-md); background: var(--tint); text-align: center; font-size: 0.96rem; }
.qb-idbox strong { color: var(--accent-strong); font-weight: 500; overflow-wrap: anywhere; }
.qb-idbox__hint { margin-top: 2px; font-size: 0.84rem; color: var(--muted); }
.qb-idbox__links { margin-top: 10px; }

.qt-pack { display: block; font-size: 0.8em; color: #6f675d; }

@media (max-width: 1024px) {
  .qb-layout { grid-template-columns: minmax(0, 1fr); }
  .qb-side { display: none; }
  .qb { padding-bottom: 64px; }
  .qb.is-summary { padding-bottom: 0; }
  .qb-mbar {
    position: fixed; inset: auto 0 0; z-index: 80; display: flex; align-items: center; justify-content: space-between; gap: 12px;
    padding: 10px var(--gutter) calc(10px + env(safe-area-inset-bottom, 0px));
    background: color-mix(in srgb, var(--surface) 94%, transparent); border-top: 1px solid var(--line);
    box-shadow: 0 -8px 24px -12px rgba(20, 16, 12, 0.25);
    -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  }
  .qb-mbar small { display: block; font-size: 0.72rem; color: var(--muted); }
  .qb-mbar strong { font: 500 1.6rem/1 var(--serif); color: var(--accent-strong); font-variant-numeric: tabular-nums; }
  body:has(.qb-mbar) .wa-float { bottom: calc(84px + env(safe-area-inset-bottom, 0px)); }
  body:has(.qb.is-summary) .wa-float { bottom: calc(20px + env(safe-area-inset-bottom, 0px)); }
}

/* ----------------------------------------------------------------- footer */

.footer { background: var(--night); color: var(--night-muted); }
.footer__grid {
  display: grid; grid-template-columns: minmax(0, 2fr) minmax(0, 1fr) minmax(0, 1.2fr); gap: 40px;
  padding-block: clamp(56px, 7vw, 96px) clamp(40px, 5vw, 64px);
}
.footer__brand img { height: 56px; width: auto; }
.footer__brand p { max-width: 36ch; margin-top: 18px; font-size: 0.95rem; }
.footer__social { display: flex; gap: 10px; margin-top: 24px; }
.footer__social a {
  display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid var(--night-line); color: var(--night-ink); transition: background-color 0.25s, border-color 0.25s, color 0.25s;
}
.footer__social a:hover { background: var(--accent); border-color: var(--accent); color: var(--on-accent); }
.footer__social svg { width: 18px; height: 18px; }
.footer__col { display: grid; align-content: start; gap: 12px; font-size: 0.95rem; }
.footer__col h2 { margin-bottom: 8px; font: 500 0.7rem/1.3 var(--sans); letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent-light); }
.footer__col a { width: fit-content; transition: color 0.2s; overflow-wrap: anywhere; }
.footer__col a:hover { color: var(--night-ink); }
.footer__bar {
  position: relative;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 10px 24px;
  padding-block: 22px; font-size: 0.84rem;
}
.footer__bar::before { content: ""; position: absolute; top: 0; left: var(--gutter); right: var(--gutter); height: 1px; background: var(--night-line); }
.footer__legal { display: flex; flex-wrap: wrap; gap: 8px 22px; }
.footer__legal a:hover { color: var(--night-ink); }

.wa-float {
  position: fixed; right: 20px; bottom: calc(20px + env(safe-area-inset-bottom, 0px)); z-index: 90;
  display: grid; place-items: center; width: 54px; height: 54px; border-radius: 50%;
  background: var(--wa); color: #fff;
  box-shadow: 0 10px 26px -8px rgba(37, 211, 102, 0.6);
  transition: transform 0.25s var(--ease);
}
.wa-float:hover { transform: scale(1.07); }
.wa-float svg { width: 27px; height: 27px; }

/* ----------------------------------------------------------------- pages */

.page { padding-block: calc(var(--header) + clamp(56px, 8vw, 110px)) var(--section); min-height: 70svh; }
.page .shell { max-width: calc(820px + var(--gutter) * 2); }
.page--center { text-align: center; }
.page--center .eyebrow::after { content: ""; width: 32px; height: 1px; background: currentColor; opacity: 0.6; }
.page--center .actions { justify-content: center; }
.page--center .lede { margin-inline: auto; }
.page__body { margin-top: 32px; }
.page__back { margin-top: 40px; }
.page__body h3, .legal__body h3 { margin: 28px 0 8px; font: 500 1.05rem/1.3 var(--sans); letter-spacing: 0; }
.page__body p, .page__body li, .legal__body p, .legal__body li { margin-bottom: 10px; color: var(--ink-2); }
.page__body ul, .legal__body ul { padding-left: 20px; margin: 0 0 10px; }

/* --------------------------------------------------------------- overlays */

.overlay {
  position: fixed; inset: 0; z-index: 150;
  display: grid; place-items: center;
  padding: max(64px, env(safe-area-inset-top, 0px)) 16px max(56px, env(safe-area-inset-bottom, 0px));
  background: rgba(10, 8, 6, 0.95);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0.3s;
}
.overlay.is-open { opacity: 1; visibility: visible; }
.overlay__close, .overlay__nav {
  position: absolute; display: grid; place-items: center; border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25); background: rgba(10, 8, 6, 0.6); color: #fff;
  transition: border-color 0.2s, background-color 0.2s;
}
.overlay__close { top: calc(16px + env(safe-area-inset-top, 0px)); right: 16px; width: 46px; height: 46px; }
.overlay__nav { top: 50%; translate: 0 -50%; width: 50px; height: 50px; }
.overlay__nav[data-dir="prev"] { left: 16px; }
.overlay__nav[data-dir="next"] { right: 16px; }
.overlay__close:hover, .overlay__nav:hover { border-color: #fff; background: rgba(255, 255, 255, 0.1); }
.overlay__close svg, .overlay__nav svg { width: 16px; height: 16px; }
.overlay__count { position: absolute; top: calc(30px + env(safe-area-inset-top, 0px)); left: 24px; font-size: 0.8rem; letter-spacing: 0.14em; color: rgba(255, 255, 255, 0.7); }

.lightbox__stage { width: 100%; max-width: 1200px; display: grid; gap: 12px; justify-items: center; }
.lightbox__frame { display: grid; place-items: center; width: 100%; height: 80svh; }
.lightbox__frame .frame { width: 100%; height: 100%; background: transparent; }
.lightbox__frame .frame > img { object-fit: contain; }
.lightbox__caption { text-align: center; font-size: 0.92rem; color: #fff; }
.lightbox__caption small { display: block; margin-top: 2px; font-size: 0.76rem; color: rgba(255, 255, 255, 0.6); }

.modal__stage { width: min(1100px, 100%); display: grid; gap: 14px; }
.modal__video { position: relative; aspect-ratio: 16/9; border-radius: var(--r-md); overflow: hidden; background: #000; }
.modal__video iframe, .modal__video video { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.modal__soon { position: absolute; inset: 0; display: grid; place-content: center; justify-items: center; gap: 16px; padding: 24px; text-align: center; background: var(--night-2); color: rgba(255, 255, 255, 0.75); }
.modal__soon img { width: 52px; opacity: 0.7; }
.modal__soon p { max-width: 40ch; font-size: 0.94rem; }
.modal__meta { text-align: center; }
.modal__meta h3 { font-size: 1.8rem; color: #fff; }
.modal__meta p { font-size: 0.86rem; color: rgba(255, 255, 255, 0.65); }

.overlay--light { background: rgba(20, 16, 12, 0.6); }
.legal {
  position: relative; width: min(760px, 100%); max-height: 84svh; overflow-y: auto;
  padding: clamp(24px, 4vw, 48px);
  background: var(--surface); color: var(--ink); border-radius: var(--r-lg); box-shadow: var(--shadow-lg);
}
.legal h2 { font-size: 2.2rem; margin-bottom: 14px; padding-right: 40px; }
.legal__close { position: absolute; top: 16px; right: 16px; display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: var(--tint); }
.legal__close svg { width: 14px; height: 14px; }

/* ------------------------------------------------------------- quotation */

.qt-body { background: color-mix(in srgb, var(--text) 8%, var(--page)); padding: 0 16px 48px; }
.qt-bar { position: sticky; top: 0; z-index: 5; display: flex; justify-content: space-between; gap: 10px; max-width: 860px; margin: 0 auto; padding: 14px 0; }
.qt-paper { max-width: 860px; margin: 0 auto; padding: clamp(24px, 5vw, 56px); background: #fff; border-radius: 6px; box-shadow: var(--shadow-lg); color: var(--ink); }
.qt-head { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 24px; padding-bottom: 24px; border-bottom: 2px solid var(--accent); }
.qt-logo { height: 64px; width: auto; }
.qt-meta h1 { font-size: 2.6rem; text-align: right; }
.qt-meta dl { display: grid; grid-template-columns: auto auto; gap: 2px 14px; margin: 8px 0 0; font-size: 0.86rem; }
.qt-meta dt { color: var(--muted); text-align: right; }
.qt-meta dd { margin: 0; font-weight: 500; }
.qt-parties { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin: 24px 0; font-size: 0.92rem; }
.qt-parties h2 { margin-bottom: 6px; font: 500 0.7rem/1 var(--sans); letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent-strong); }
.qt-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.qt-table { width: 100%; border-collapse: collapse; font-size: 0.92rem; }
.qt-table th, .qt-table td { padding: 8px 10px; text-align: left; border-bottom: 1px solid var(--line); }
.qt-table thead th { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); border-bottom: 1px solid var(--line-strong); }
.qt-table .num { text-align: right; font-variant-numeric: tabular-nums; white-space: nowrap; }
.qt-group th { padding-top: 16px; font-size: 0.78rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent-strong); }
.qt-totals { display: grid; gap: 6px; width: min(100%, 380px); margin: 20px 0 0 auto; font-size: 0.94rem; font-variant-numeric: tabular-nums; }
.qt-totals div { display: flex; justify-content: space-between; gap: 16px; }
.qt-grand { margin-top: 6px; padding: 12px 0; border-block: 2px solid var(--ink); font-weight: 600; font-size: 1.1rem; }
.qt-advance { color: var(--muted); font-size: 0.86rem; }
.qt-foot { margin-top: 32px; padding-top: 18px; border-top: 1px solid var(--line); font-size: 0.84rem; color: var(--muted); display: grid; gap: 8px; }

/* ----------------------------------------------------------------- reveal */

.reveal { opacity: 0; transform: translateY(20px); }
.reveal.is-in { opacity: 1; transform: none; transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }

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

/* ------------------------------------------------------------- responsive */

@media (max-width: 1140px) {
  .nav { display: none; }
  .burger { display: grid; }
}

@media (max-width: 1024px) {
  .film { flex-basis: calc((100% - 20px) / 2); }
  .review-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .enquiry { grid-template-columns: minmax(0, 1fr); }
  .enquiry__aside { border-radius: var(--r-md) var(--r-md) 0 0; }
  .enquiry__form { border-radius: 0 0 var(--r-md) var(--r-md); }
  .contact-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer__brand { grid-column: 1 / -1; }
}

/* Heading, price, "best for", inclusions and buttons line up across the cards. */
@supports (grid-template-rows: subgrid) {
  @media (min-width: 961px) {
    .pkg { display: grid; grid-row: span 5; grid-template-rows: subgrid; }
    .pkg__head { align-self: start; }
    .pkg__cta { align-self: end; }
  }
}

/* Packages become a swipeable row, starting on the highlighted one. */
@media (max-width: 960px) {
  .pkg-grid {
    display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none;
    margin-inline: calc(var(--gutter) * -1); padding: 14px var(--gutter) 8px; scroll-padding-inline: var(--gutter);
  }
  .pkg-grid::-webkit-scrollbar { display: none; }
  .pkg { flex: 0 0 min(84%, 380px); margin-bottom: 0; scroll-snap-align: center; }
  .pkg.reveal { opacity: 1; transform: none; }
  .pkg:hover { box-shadow: var(--shadow-sm); }
  .pkg--featured:hover { box-shadow: var(--shadow-lg); }
}

@media (max-width: 767px) {
  :root { --header: 64px; }
  .brand img { height: 38px; }
  .header__cta { display: none; }
  .hero__inner { padding-bottom: 104px; gap: 16px; }
  .hero .eyebrow { letter-spacing: 0.18em; }
  .hero .eyebrow::before { display: none; }
  .film__cta { display: none; }
  .hero__cta { display: grid; width: 100%; grid-template-columns: 1fr 1fr; }
  .hero__cta .btn--accent { grid-column: 1 / -1; }
  .hero__cta .btn { padding-inline: 16px; }
  .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stat:nth-child(3) { border-left: 0; }
  .stat:nth-child(n + 3) { border-top: 1px solid var(--night-line); }
  .masonry { columns: 2; column-gap: 8px; }
  .masonry > * { margin-bottom: 8px; }
  .shot__zoom { display: none; }
  .section__bar { align-items: flex-end; }
  .rail-arrows { display: none; }
  .rail { margin-inline: calc(var(--gutter) * -1); padding-inline: var(--gutter); scroll-padding-inline: var(--gutter); gap: 14px; }
  .film { flex-basis: 84%; }
  .review-grid, .fields, .qb-grid, .qt-parties, .contact-list { grid-template-columns: minmax(0, 1fr); }
  .pkg-note { text-align: center; justify-content: center; }
  .pkg-note .btn { width: 100%; }
  .footer__grid { grid-template-columns: minmax(0, 1fr); gap: 32px; }
  .footer__bar { flex-direction: column; text-align: center; padding-bottom: 90px; }
  .qb-grid--events { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .qb-steps { margin-inline: calc(var(--gutter) * -1); padding-inline: var(--gutter); }
  .qb-steps li { flex: none; }
  .qb-tab > span { display: none; }
  .qb-tab.is-current > span { display: inline; }
  .qb-for__actions { width: 100%; }
  .qb-for__actions .btn { flex: 1; }
  .qb-howit li span { display: none; }
  .qb-howit li:first-child span { display: inline; }
  .qb-packopt__price { font-size: 1.2rem; }
  .qb-actions .btn { flex: 1 1 auto; }
  .qb-qty { flex-wrap: wrap; }
  .stepper { margin-left: auto; }
  .qb-summary__actions .btn { flex: 1 1 100%; min-width: 0; }
  .qb-grand strong { font-size: 1.8rem; }
  .overlay__nav { top: auto; bottom: calc(12px + env(safe-area-inset-bottom, 0px)); translate: none; }
  .qt-meta h1, .qt-meta dt { text-align: left; }
  .qt-table th, .qt-table td { padding: 7px 5px; font-size: 0.84rem; }
}

@media (max-width: 380px) {
  .hero__cta { grid-template-columns: minmax(0, 1fr); }
  .qb-grid--events { grid-template-columns: minmax(0, 1fr); }
}

@media print {
  .header, .drawer, .wa-float, .overlay, .qt-bar { display: none !important; }
  body, .qt-body { background: #fff; padding: 0; }
  .qt-paper { box-shadow: none; padding: 0; max-width: none; }
  .reveal { opacity: 1; transform: none; }
  @page { margin: 14mm; }
}
