/* Capture Life — public site.
   Layout is done with CSS media queries, not JS width measurement, so the
   page is correct on the first paint and never reflows on resize. */

:root {
  --cream: #F7F1E7;
  --ink: #43251A;
  --accent: #D9483B;
  --sand: #EAE0CE;
  --hf: 'DM Serif Display', Georgia, serif;
  --bf: 'Plus Jakarta Sans', system-ui, sans-serif;
  --line: rgba(67, 37, 26, .14);
  --line-soft: rgba(67, 37, 26, .09);
  --shell: min(1360px, 100%);
  --gut: clamp(18px, 4vw, 26px);
  --base: 16px;
  --head-scale: 1;
  --hero-scale: .85;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  /* An infinite marquee would otherwise snap straight to its end position. */
  .marquee-track { animation: none !important; transform: none !important; }
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--bf);
  font-size: var(--base);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg, iframe { max-width: 100%; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--ink); }
h1, h2, h3, h4 { margin: 0; font-weight: 400; font-family: var(--hf); letter-spacing: -.02em; }
p { margin: 0; text-wrap: pretty; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
input, textarea, select { font: inherit; color: inherit; }
::selection { background: var(--accent); color: #fff; }

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

.shell { width: var(--shell); margin-inline: auto; padding-inline: var(--gut); }
.eyebrow { font-size: 12px; letter-spacing: .22em; text-transform: uppercase; opacity: .5; }
.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;
}

/* Every framed image reserves its box up front — no layout shift as photos
   arrive, which is most of the perceived "slow" on an image-heavy site. */
.frame { position: relative; overflow: hidden; background: rgba(67, 37, 26, .08); }
.frame > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}

/* The fade-in is gated on the `js` class, which an inline script adds. Without
   it every lazy image would start at opacity 0 and nothing would ever set it
   back — the page would render a grid of empty boxes. */
.js .frame > img { opacity: 0; transition: opacity .4s ease; }
.js .frame > img.ready, .js .frame > img[data-eager] { opacity: 1; }

/* Shimmering skeleton while a photo is on its way. It sits behind the image
   and stops as soon as that image reports itself decoded. */
.js .frame::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(100deg,
      transparent 25%,
      rgba(255, 255, 255, .38) 45%,
      transparent 65%)
    rgba(67, 37, 26, .05);
  background-size: 240% 100%;
  animation: clshimmer 1.5s linear infinite;
  transition: opacity .35s ease;
}
.js .frame:has(> img.ready)::after,
.js .frame:has(> img[data-eager])::after { opacity: 0; animation: none; }
@keyframes clshimmer { from { background-position: 160% 0; } to { background-position: -60% 0; } }
@media (prefers-reduced-motion: reduce) { .js .frame::after { animation: none; } }

@keyframes clmq { to { transform: translateX(-50%); } }
@keyframes clrise { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
@keyframes clfade { from { opacity: 0; } to { opacity: 1; } }
.rise { animation: clrise .3s ease both; }
.fade { animation: clfade .3s ease both; }

/* ------------------------------------------------------------------ pills */

.pill {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: 999px; font-weight: 600; white-space: nowrap;
  padding: 13px 26px; font-size: 15px;
  border: 1px solid transparent;
  transition: transform .2s, box-shadow .2s, background .2s, color .2s, border-color .2s;
}
.pill-solid { background: var(--accent); color: #fff; }
.pill-solid:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 10px 24px -8px rgba(217, 72, 59, .7); }
.pill-ghost { border-color: rgba(67, 37, 26, .28); }
.pill-ghost:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.pill-sm { padding: 10px 18px; font-size: 13.5px; }

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

.hdr {
  position: sticky; top: 0; z-index: 60;
  background: color-mix(in srgb, var(--cream) 88%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(67, 37, 26, .08);
}
@supports not (backdrop-filter: blur(1px)) { .hdr { background: var(--cream); } }

.hdr-in {
  width: var(--shell); margin-inline: auto;
  padding: 13px var(--gut);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}

.logo { display: flex; align-items: center; line-height: .88; font-family: var(--hf); letter-spacing: -.02em; }
.logo-text { font-size: clamp(21px, 2.6vw, 26px); }
.logo-text > span { display: block; }
.logo-text > span + span { text-align: right; font-size: .85em; opacity: .9; }
.logo img { height: var(--logo-h, 44px); width: auto; display: block; }

.nav { display: flex; align-items: center; gap: clamp(15px, 1.9vw, 29px); }
.nav a { font-size: 15px; font-weight: 500; color: inherit; opacity: .72; transition: opacity .2s, color .2s; }
.nav a:hover { opacity: 1; color: var(--accent); }
.nav a[aria-current='page'] { color: var(--accent); opacity: 1; }

.hdr-actions { display: flex; align-items: center; gap: 10px; }
.dot { width: 7px; height: 7px; border-radius: 999px; background: #1F8A4C; }

.burger {
  width: 44px; height: 44px; border-radius: 999px;
  border: 1px solid rgba(67, 37, 26, .18);
  display: none; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.burger i { display: block; width: 18px; height: 1.6px; background: var(--ink); transition: transform .25s; }

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

/* On the narrowest phones the enquiry button shortens rather than wrapping. */
@media (max-width: 420px) {
  .hdr-in { gap: 8px; }
  .hdr-actions { gap: 7px; }
  .hdr-actions .pill-solid { padding: 12px 16px; font-size: 14px; }
  .logo-text { font-size: 19px; }
}

/* Full-screen mobile menu */
.menu {
  position: fixed; inset: 0; z-index: 90;
  background: var(--ink); color: var(--cream);
  padding: 22px var(--gut) calc(22px + env(safe-area-inset-bottom));
  display: flex; flex-direction: column;
  animation: clfade .22s ease;
  overflow-y: auto;
}
.menu-close { align-self: flex-end; font-size: 34px; line-height: 1; padding: 2px 10px; color: inherit; }
.menu-links { margin: auto 0; display: flex; flex-direction: column; gap: 2px; }
.menu-links a { color: inherit; font-family: var(--hf); font-size: clamp(30px, 9vw, 40px); letter-spacing: -.02em; }
.menu-links a:hover, .menu-links a[aria-current='page'] { color: var(--accent); }
.menu-foot {
  display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: space-between;
  font-size: 13px; opacity: .75; padding-top: 20px;
}
.menu-foot .pill-ghost { border-color: rgba(247, 241, 231, .3); color: inherit; }

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

.hero { padding: clamp(30px, 5.5vw, 80px) var(--gut) 0; text-align: center; }
.hero h1 {
  margin-inline: auto; max-width: 15ch;
  font-size: calc(clamp(30px, 6.4vw, 92px) * var(--hero-scale));
  line-height: 1; letter-spacing: -.025em;
  text-wrap: balance;
}
.hero-rule {
  width: min(420px, 58%); height: 13px; margin: 12px auto 0;
  border-bottom: 2px solid var(--ink); border-radius: 0 0 50% 50%; opacity: .5;
}
.hero p { margin: 24px auto 0; max-width: 52ch; font-size: clamp(15px, 1.35vw, 18px); line-height: 1.55; opacity: .72; }

.reel-wrap { position: relative; margin-top: clamp(26px, 4vw, 52px); }
.reel {
  display: flex; align-items: center; gap: clamp(10px, 1.4vw, 22px);
  overflow-x: auto; overflow-y: hidden;
  scroll-snap-type: x proximity; scroll-behavior: smooth;
  padding: 24px clamp(16px, 6vw, 96px) 30px;
  perspective: 1600px;
  scrollbar-width: none;
}
.reel::-webkit-scrollbar { display: none; }
.reel .frame {
  flex: 0 0 auto; scroll-snap-align: center;
  border-radius: 20px;
  /* Tight enough to stay under its own card: a wider blur bleeds past the
     gaps and the nine shadows merge into one grey band across the page. */
  box-shadow: 0 10px 20px -14px rgba(67, 37, 26, .45);
}
.reel-edge {
  position: absolute; top: 0; bottom: 0; width: clamp(20px, 7vw, 110px);
  pointer-events: none;
}
.reel-edge.l { left: 0; background: linear-gradient(90deg, var(--cream), transparent); }
.reel-edge.r { right: 0; background: linear-gradient(270deg, var(--cream), transparent); }
.reel-ctrl { display: flex; align-items: center; justify-content: center; gap: 16px; }
.reel-ctrl button {
  width: 40px; height: 40px; border-radius: 999px;
  border: 1px solid rgba(67, 37, 26, .22);
  display: flex; align-items: center; justify-content: center; font-size: 16px;
  transition: background .2s, color .2s, border-color .2s;
}
.reel-ctrl button:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.reel-ctrl span { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; opacity: .42; }

.promo-row { display: flex; justify-content: center; margin: 30px 0 clamp(46px, 7vw, 92px); }
.promo-row .pill { padding: 16px 34px; font-size: 16px; box-shadow: 0 14px 30px -12px rgba(217, 72, 59, .6); }

.marquee { background: var(--ink); color: var(--cream); padding: 18px 0; overflow: hidden; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track {
  display: flex; width: max-content;
  animation: clmq var(--marquee-duration, 70s) linear infinite;
  font-family: var(--hf); font-size: clamp(20px, 2.3vw, 32px); white-space: nowrap; opacity: .94;
}
.marquee-track > span { padding-right: 26px; }

/* ------------------------------------------------------------- section kit */

.sec { padding-block: clamp(48px, 8vw, 106px); }
.sec-tight { padding-block: 0 clamp(48px, 8vw, 106px); }
.sec-head {
  display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between;
  gap: 18px; margin-bottom: 36px;
}
.sec-head h2 { font-size: calc(clamp(28px, 4.6vw, 60px) * var(--head-scale)); line-height: 1.02; }
.sec-head p { max-width: 34ch; font-size: 15px; line-height: 1.6; opacity: .65; }
.page-head h1 { font-size: calc(clamp(32px, 6vw, 82px) * var(--head-scale)); line-height: 1; letter-spacing: -.025em; }
.page-head p { margin-top: 16px; max-width: 56ch; font-size: 15.5px; line-height: 1.6; opacity: .66; }

/* --------------------------------------------------------------- services */

.svc-grid { display: grid; grid-template-columns: 1fr; gap: clamp(22px, 3.6vw, 56px); align-items: start; }
@media (min-width: 1000px) { .svc-grid { grid-template-columns: .78fr 1.22fr; } }

.svc-preview { position: sticky; top: 110px; display: none; }
@media (min-width: 1000px) { .svc-preview { display: block; } }
.svc-preview .stack {
  position: relative; aspect-ratio: 4/5; border-radius: 22px; overflow: hidden;
  background: rgba(67, 37, 26, .07); box-shadow: 0 36px 70px -46px rgba(67, 37, 26, .9);
}
.svc-preview .stack .frame {
  position: absolute; inset: 0; opacity: 0; transform: scale(1.06);
  transition: opacity .55s ease, transform .9s ease;
}
.svc-preview .stack .frame.on { opacity: 1; transform: none; }
.svc-caption {
  position: absolute; inset: auto 0 0; padding: 64px 22px 20px;
  background: linear-gradient(transparent, rgba(30, 15, 9, .82));
  color: #F7F1E7; pointer-events: none;
}
.svc-caption b { display: block; font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase; opacity: .7; font-weight: 400; }
.svc-caption strong { display: block; margin-top: 7px; font-family: var(--hf); font-size: 29px; line-height: 1.08; font-weight: 400; }
.svc-caption em { display: block; margin-top: 6px; font-size: 13px; font-style: normal; line-height: 1.5; opacity: .75; max-width: 32ch; }

.svc-list { border-top: 1px solid var(--line); }
.svc-row {
  width: 100%; text-align: left;
  border-bottom: 1px solid var(--line);
  padding: clamp(13px, 1.7vw, 21px) 6px;
  display: flex; align-items: center; gap: clamp(12px, 2.4vw, 34px);
  opacity: .72;
  transition: padding-left .3s, background .3s, opacity .3s;
}
.svc-row:hover, .svc-row.on { opacity: 1; padding-left: 16px; background: rgba(67, 37, 26, .05); }
.svc-row .n { font-size: 11.5px; opacity: .4; width: 22px; flex: 0 0 auto; }
.svc-row .name {
  flex: 1; min-width: 0; font-family: var(--hf);
  font-size: clamp(19px, 2.6vw, 34px); line-height: 1.1; letter-spacing: -.02em;
  transition: color .3s;
}
.svc-row:hover .name, .svc-row.on .name { color: var(--accent); }
.svc-row .desc { flex: 0 1 26ch; font-size: 13px; line-height: 1.5; opacity: .6; display: none; }
.svc-row .thumb { flex: 0 0 auto; width: 54px; height: 54px; border-radius: 12px; }
.svc-row .arr { flex: 0 0 auto; color: var(--accent); font-size: 20px; transition: transform .3s; }
.svc-row:hover .arr, .svc-row.on .arr { transform: translateX(6px); }
@media (min-width: 1000px) {
  .svc-row .desc { display: block; }
  .svc-row .thumb { display: none; }
}

/* ------------------------------------------------------------- feature grid */

.feat-grid { display: grid; grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; gap: 14px; }
.feat-grid .frame { border-radius: 18px; }
.feat-grid .frame:first-child { grid-column: span 2; grid-row: span 2; }
@media (min-width: 1000px) { .feat-grid { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 190px; } }

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

.film-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; }
@media (min-width: 680px) { .film-grid { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); } }
.film-card { display: block; width: 100%; text-align: left; }
.film-card .frame { aspect-ratio: 16/10; border-radius: 16px; }
.film-card:hover .frame > img { transform: scale(1.03); }
.film-card .frame > img { transition: opacity .45s ease, transform .5s ease; }
.play {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}
.play i {
  width: 58px; height: 58px; border-radius: 999px; background: rgba(247, 241, 231, .92);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .25);
  transition: transform .25s;
}
.film-card:hover .play i { transform: scale(1.08); }
.play i::after {
  content: ''; width: 0; height: 0; margin-left: 4px;
  border-left: 15px solid var(--accent);
  border-top: 9px solid transparent; border-bottom: 9px solid transparent;
}
.film-tag {
  position: absolute; top: 12px; left: 12px;
  background: rgba(30, 15, 9, .72); color: #F7F1E7;
  padding: 5px 11px; border-radius: 999px;
  font-size: 11px; letter-spacing: .1em; text-transform: uppercase; pointer-events: none;
}
.film-meta { display: flex; justify-content: space-between; gap: 12px; margin-top: 12px; align-items: baseline; }
.film-meta b { font-family: var(--hf); font-size: 22px; font-weight: 400; letter-spacing: -.01em; }
.film-meta span { font-size: 12px; opacity: .55; flex: 0 0 auto; }

.lightbox {
  position: fixed; inset: 0; z-index: 95;
  background: rgba(24, 12, 7, .88);
  display: flex; align-items: center; justify-content: center;
  padding: var(--gut); animation: clfade .2s ease;
}
.lightbox-in { width: min(980px, 100%); }
.lightbox-bar {
  display: flex; justify-content: space-between; align-items: baseline; gap: 16px;
  margin-bottom: 12px; color: #F7F1E7;
}
.lightbox-bar b { font-family: var(--hf); font-size: clamp(19px, 4vw, 26px); font-weight: 400; }
.lightbox-bar button { color: inherit; font-size: 26px; line-height: 1; }
.lightbox-stage { position: relative; aspect-ratio: 16/9; border-radius: 16px; overflow: hidden; background: #1B0E08; }
.lightbox-stage iframe { width: 100%; height: 100%; border: 0; display: block; }
.lightbox-empty {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px;
  color: rgba(247, 241, 231, .75); text-align: center; padding: 24px;
  font-size: 14px; line-height: 1.6;
}
.lightbox-empty i {
  width: 58px; height: 58px; border-radius: 999px; border: 1px solid rgba(247, 241, 231, .4);
  display: flex; align-items: center; justify-content: center;
}
.lightbox-empty i::after {
  content: ''; width: 0; height: 0; margin-left: 4px;
  border-left: 14px solid rgba(247, 241, 231, .8);
  border-top: 9px solid transparent; border-bottom: 9px solid transparent;
}
.lightbox-foot { margin-top: 10px; color: rgba(247, 241, 231, .6); font-size: 13px; }

/* ------------------------------------------------------------------ stats */

.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 24px; text-align: center; }
.stats b { display: block; font-family: var(--hf); font-size: clamp(34px, 5vw, 66px); line-height: 1; color: var(--accent); font-weight: 400; }
.stats span { display: block; margin-top: 8px; font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase; opacity: .55; }

/* ----------------------------------------------------------- testimonials */

.quotes { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 20px; }
.quote { background: #fff; border: 1px solid rgba(67, 37, 26, .1); border-radius: 20px; padding: 26px; }
.quote .stars { color: var(--accent); font-size: 14px; letter-spacing: .2em; }
.quote p { margin: 16px 0 22px; font-family: var(--hf); font-size: 20px; line-height: 1.4; letter-spacing: -.01em; }
.quote footer { display: flex; align-items: center; gap: 12px; }
.quote .frame { width: 44px; height: 44px; flex: 0 0 auto; border-radius: 999px; }
.quote b { display: block; font-size: 14px; font-weight: 600; }
.quote small { display: block; font-size: 12px; opacity: .55; }

/* -------------------------------------------------------------------- faq */

.faq-grid { display: grid; grid-template-columns: 1fr; gap: clamp(22px, 4vw, 62px); align-items: start; }
@media (min-width: 1000px) { .faq-grid { grid-template-columns: .8fr 1.2fr; } }
.faq-grid h2 { font-size: calc(clamp(28px, 4.2vw, 54px) * var(--head-scale)); line-height: 1.03; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; padding: 18px 0;
  display: flex; gap: 18px; align-items: baseline;
}
.faq-q span { flex: 1; font-size: clamp(15.5px, 1.6vw, 19px); font-weight: 600; letter-spacing: -.01em; }
.faq-q i { font-style: normal; font-size: 22px; color: var(--accent); transition: transform .25s; }
.faq-item.open .faq-q i { transform: rotate(45deg); }
.faq-a { padding: 0 0 22px; max-width: 62ch; font-size: 14.5px; line-height: 1.65; opacity: .72; }

/* --------------------------------------------------------------- band/cta */

.band { background: var(--sand); }
.cta-band { background: var(--ink); color: var(--cream); text-align: center; }
.cta-band h2 { margin-inline: auto; max-width: 16ch; font-size: calc(clamp(30px, 5.4vw, 74px) * var(--head-scale)); line-height: 1.02; letter-spacing: -.025em; }
.cta-band p { margin: 20px auto 30px; max-width: 46ch; font-size: 16px; line-height: 1.6; opacity: .72; }
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.cta-band .pill-ghost { border-color: rgba(247, 241, 231, .35); color: inherit; }
.cta-band .pill-ghost:hover { background: rgba(247, 241, 231, .12); color: inherit; border-color: rgba(247, 241, 231, .5); }

/* ---------------------------------------------------------------- gallery */

.chips { display: flex; flex-wrap: wrap; gap: 9px; margin: 30px 0 24px; }
.chip {
  padding: 9px 16px; border-radius: 999px; font-size: 13.5px; font-weight: 500;
  border: 1px solid rgba(67, 37, 26, .2); transition: background .2s, color .2s, border-color .2s;
}
.chip:hover { border-color: var(--accent); }
.chip.on { background: var(--accent); color: #fff; border-color: var(--accent); }
.chip small { opacity: .45; margin-left: 7px; font-size: 11px; }

.gal-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  grid-auto-rows: 140px; gap: 14px;
}
@media (min-width: 680px) { .gal-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); grid-auto-rows: 170px; } }
@media (min-width: 1000px) { .gal-grid { grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); grid-auto-rows: 200px; } }
.gal-cell { border-radius: 16px; cursor: zoom-in; transition: grid-row .3s, grid-column .3s; }
.gal-cell.zoom { cursor: zoom-out; grid-row: span 3 !important; grid-column: span 2; }
.gal-cap {
  position: absolute; inset: auto 0 0; padding: 36px 16px 14px;
  background: linear-gradient(transparent, rgba(30, 15, 9, .75));
  color: #F7F1E7; pointer-events: none; text-align: left;
}
.gal-cap b { display: block; font-family: var(--hf); font-size: 19px; line-height: 1.15; font-weight: 400; }
.gal-cap span { display: block; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; opacity: .75; margin-top: 3px; }
.empty { padding: 70px 0; text-align: center; opacity: .5; font-size: 15px; }

/* ---------------------------------------------------------------- pricing */

.pack-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; align-items: start; }
.pack { border-radius: 22px; padding: clamp(22px, 2.6vw, 34px); background: #fff; border: 1px solid rgba(67, 37, 26, .12); }
.pack.hot { background: var(--ink); color: var(--cream); border-color: transparent; box-shadow: 0 28px 60px -34px rgba(67, 37, 26, .9); }
.pack .badge {
  display: inline-block; background: var(--accent); color: #fff;
  padding: 5px 13px; border-radius: 999px; font-size: 11px;
  letter-spacing: .12em; text-transform: uppercase; margin-bottom: 16px;
}
.pack h3 { font-size: 29px; letter-spacing: -.01em; }
.pack .tag { font-size: 13.5px; opacity: .62; margin-top: 6px; line-height: 1.5; }
.pack .price { margin: 22px 0 4px; font-family: var(--hf); font-size: 42px; line-height: 1; color: var(--accent); }
.pack .unit { font-size: 12px; opacity: .52; }
.pack hr { border: 0; height: 1px; background: var(--line); margin: 22px 0; }
.pack.hot hr { background: rgba(247, 241, 231, .2); }
.pack ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.pack li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; line-height: 1.45; opacity: .84; }
.pack li::before { content: '✓'; color: var(--accent); flex: 0 0 auto; }
.pack .pill { width: 100%; margin-top: 24px; }
.pack.hot .pill-ghost { border-color: rgba(247, 241, 231, .35); color: inherit; }
.pack.hot .pill-ghost:hover { background: rgba(247, 241, 231, .12); color: inherit; }

.addons { margin-top: 40px; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; }
.addon { border: 1px dashed rgba(67, 37, 26, .28); border-radius: 16px; padding: 20px; }
.addon b { font-size: 15px; font-weight: 600; }
.addon span { display: block; font-size: 13px; opacity: .6; margin-top: 5px; }
.footnote { margin-top: 26px; font-size: 13px; opacity: .55; max-width: 70ch; }

/* ------------------------------------------------------------------ about */

.about-grid { display: grid; grid-template-columns: 1fr; gap: clamp(22px, 4vw, 54px); margin-top: 38px; align-items: start; }
@media (min-width: 1000px) { .about-grid { grid-template-columns: .85fr 1.15fr; } }
.about-grid > .frame { border-radius: 20px; aspect-ratio: 4/5; }
.about-body { font-size: clamp(16px, 1.7vw, 20px); line-height: 1.65; opacity: .82; }
.about-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); gap: 20px; margin-top: 32px; }
.about-stats b { display: block; font-family: var(--hf); font-size: 36px; line-height: 1; color: var(--accent); font-weight: 400; }
.about-stats span { display: block; margin-top: 6px; font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase; opacity: .55; }

.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.team-grid .frame { border-radius: 18px; aspect-ratio: 3/4; }
.team-grid b { display: block; margin-top: 12px; font-family: var(--hf); font-size: 21px; font-weight: 400; }
.team-grid span { display: block; font-size: 12.5px; opacity: .58; margin-top: 2px; }

.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 18px; }
.step { background: #fff; border: 1px solid rgba(67, 37, 26, .1); border-radius: 18px; padding: 22px; }
.step i { font-style: normal; font-size: 12px; letter-spacing: .18em; opacity: .42; }
.step b { display: block; margin-top: 12px; font-size: 17px; font-weight: 600; letter-spacing: -.01em; }
.step span { display: block; margin-top: 8px; font-size: 13.5px; line-height: 1.55; opacity: .66; }

/* ----------------------------------------------------------------- awards */

.award-list { margin-top: 38px; border-top: 1px solid var(--line); }
.award {
  border-bottom: 1px solid var(--line); padding: 20px 4px;
  display: flex; flex-wrap: wrap; gap: 14px; align-items: baseline;
}
.award .yr { flex: 0 0 64px; font-size: 13px; opacity: .45; }
.award .ttl { flex: 1 1 260px; font-family: var(--hf); font-size: clamp(18px, 2.2vw, 28px); letter-spacing: -.01em; }
.award .body { flex: 0 1 24ch; font-size: 13px; opacity: .62; }
.press { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 14px; }
.press div {
  border: 1px solid var(--line); border-radius: 14px; padding: 20px 14px;
  text-align: center; font-family: var(--hf); font-size: 19px; opacity: .74;
}

/* ---------------------------------------------------------------- journal */

.post-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 24px; margin-top: 38px; }
.post .frame { border-radius: 18px; aspect-ratio: 4/3; }
.post .kicker { margin-top: 14px; font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase; opacity: .5; }
.post b { display: block; margin-top: 8px; font-family: var(--hf); font-size: 24px; line-height: 1.2; letter-spacing: -.01em; font-weight: 400; }
.post span { display: block; margin-top: 8px; font-size: 14px; line-height: 1.55; opacity: .66; }

/* ---------------------------------------------------------------- contact */

.contact-grid { display: grid; grid-template-columns: 1fr; gap: clamp(22px, 3.4vw, 42px); margin-top: 36px; align-items: start; }
@media (min-width: 1000px) { .contact-grid { grid-template-columns: 1.35fr 1fr; } }

.card { background: #fff; border: 1px solid rgba(67, 37, 26, .1); border-radius: 22px; padding: clamp(20px, 3vw, 36px); }
.form-grid { display: grid; grid-template-columns: 1fr; gap: 15px; }
@media (min-width: 680px) { .form-grid { grid-template-columns: 1fr 1fr; } }
.field.full { grid-column: 1 / -1; }
.field label { display: block; font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; opacity: .55; margin-bottom: 7px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 12px 13px;
  border: 1px solid rgba(67, 37, 26, .18); border-radius: 11px;
  background: #FFFDF9; font-size: 16px; resize: vertical;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: 2px solid var(--accent); outline-offset: 1px; border-color: transparent;
}
.field.bad input, .field.bad textarea, .field.bad select { border-color: var(--accent); }
.field .err { margin-top: 6px; font-size: 12px; color: var(--accent); }
.form-note { margin-top: 12px; font-size: 12px; opacity: .5; text-align: center; }
.sent { padding: 36px 10px; text-align: center; }
.sent .tick { font-size: 42px; color: var(--accent); }
.sent b { display: block; margin-top: 12px; font-family: var(--hf); font-size: 29px; letter-spacing: -.01em; font-weight: 400; }
.sent p { margin: 12px auto 22px; max-width: 38ch; font-size: 14.5px; line-height: 1.6; opacity: .68; }

.side { display: flex; flex-direction: column; gap: 18px; }
.cal { background: var(--sand); border-radius: 22px; padding: 22px; }
.cal-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
.cal-head .eyebrow { letter-spacing: .18em; }
.cal-nav { display: flex; gap: 6px; }
.cal-nav button {
  width: 28px; height: 28px; border-radius: 999px;
  border: 1px solid rgba(67, 37, 26, .25);
  display: flex; align-items: center; justify-content: center; font-size: 13px;
}
.cal-title { font-family: var(--hf); font-size: 24px; margin-bottom: 12px; }
.cal-dow, .cal-days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal-dow { font-size: 10.5px; letter-spacing: .06em; text-transform: uppercase; opacity: .45; margin-bottom: 6px; }
.cal-days button, .cal-days span {
  height: 34px; display: flex; align-items: center; justify-content: center;
  border-radius: 8px; font-size: 12.5px; transition: background .15s, color .15s;
}
.cal-days button { background: rgba(67, 37, 26, .09); }
.cal-days button:hover { background: rgba(67, 37, 26, .2); }
.cal-days button.booked { background: var(--accent); color: #fff; opacity: .9; cursor: not-allowed; }
.cal-days button.sel { background: var(--ink); color: var(--cream); }
.cal-key { display: flex; gap: 16px; margin-top: 14px; font-size: 11.5px; opacity: .6; }
.cal-key div { display: flex; align-items: center; gap: 6px; }
.cal-key i { width: 9px; height: 9px; border-radius: 3px; }

.contact-card { border: 1px solid var(--line); border-radius: 22px; padding: 22px; display: flex; flex-direction: column; gap: 14px; }
.contact-card .k { font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; opacity: .5; margin-bottom: 5px; }
.contact-card .v { font-size: 15px; color: inherit; }
.contact-card .v.big { font-family: var(--hf); font-size: 22px; }

/* ----------------------------------------------------------- social row */

.socials { display: flex; flex-wrap: wrap; gap: 9px; }
.socials a {
  width: 40px; height: 40px; border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(67, 37, 26, .2); color: inherit;
  transition: background .2s, color .2s, border-color .2s, transform .2s;
}
.socials a:hover { background: var(--accent); border-color: var(--accent); color: #fff; transform: translateY(-2px); }
.socials svg { width: 18px; height: 18px; fill: currentColor; display: block; }
.socials.on-dark a { border-color: rgba(247, 241, 231, .28); }
.socials.on-dark a:hover { background: var(--cream); border-color: var(--cream); color: var(--ink); }
.socials.sm a { width: 34px; height: 34px; }
.socials.sm svg { width: 15px; height: 15px; }

.follow { text-align: center; }
.follow h2 { font-size: clamp(26px, 4vw, 46px); line-height: 1.05; }
.follow p { margin: 14px auto 24px; max-width: 44ch; font-size: 15px; line-height: 1.6; opacity: .65; }
.follow .socials { justify-content: center; }
.follow .handle { display: block; margin-top: 18px; font-size: 14px; font-weight: 600; }

/* ------------------------------------------------------------ wa + footer */

.wa {
  position: fixed; right: 16px; bottom: max(16px, env(safe-area-inset-bottom)); z-index: 70;
  display: flex; align-items: center; gap: 9px;
  background: #1F8A4C; color: #fff; padding: 13px 18px; border-radius: 999px;
  box-shadow: 0 12px 28px -10px rgba(0, 0, 0, .5);
  font-size: 14px; font-weight: 600;
  transition: transform .2s;
}
.wa:hover { color: #fff; transform: translateY(-2px); }
.wa svg { width: 19px; height: 19px; fill: currentColor; flex: 0 0 auto; }
@media (max-width: 520px) { .wa span { display: none; } .wa { padding: 14px; } }

.foot { background: var(--ink); color: var(--cream); padding: clamp(40px, 6vw, 72px) 0 24px; margin-top: auto; }
.foot-grid { display: grid; grid-template-columns: 1fr; gap: 30px; }
@media (min-width: 680px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .foot-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; } }
.foot .logo-text { font-size: 34px; }
.foot .blurb { margin-top: 16px; font-size: 14px; line-height: 1.65; opacity: .62; max-width: 34ch; }
.foot h4 { font-family: var(--bf); font-size: 11.5px; letter-spacing: .18em; text-transform: uppercase; opacity: .45; margin-bottom: 14px; font-weight: 500; }
.foot-links { display: flex; flex-direction: column; gap: 9px; }
.foot-links a, .foot-lines div { font-size: 14.5px; opacity: .78; color: inherit; }
.foot-links a:hover { opacity: 1; color: var(--accent); }
.foot-lines { display: flex; flex-direction: column; gap: 9px; }
.foot-bar {
  margin-top: 34px; padding-top: 20px;
  border-top: 1px solid rgba(247, 241, 231, .16);
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between;
  font-size: 12.5px; opacity: .5;
}
.foot-bar a { color: inherit; letter-spacing: .12em; text-transform: uppercase; font-size: 11.5px; }
.foot-bar a:hover { color: var(--accent); opacity: 1; }

body { display: flex; flex-direction: column; min-height: 100vh; }
#app { flex: 1 0 auto; display: flex; flex-direction: column; }
main { flex: 1 0 auto; }

/* ------------------------------------------------------------------ toast */

#toast {
  position: fixed; left: 50%; bottom: 24px; z-index: 200;
  transform: translate(-50%, 20px);
  background: #1F8A4C; color: #fff;
  padding: 11px 20px; border-radius: 999px;
  font-size: 13.5px; font-weight: 600;
  box-shadow: 0 14px 30px -12px rgba(0, 0, 0, .5);
  opacity: 0; pointer-events: none;
  transition: opacity .2s, transform .2s;
}
#toast.on { opacity: 1; transform: translate(-50%, 0); }

/* Route transition: the shell stays, only main swaps. */
.routing main { opacity: .35; transition: opacity .12s; }

/* ---------------------------------------------------- server-rendered bits */

/* The FAQ is a <details>, so it opens and closes with no JavaScript. */
.faq-q { list-style: none; cursor: pointer; }
.faq-q::-webkit-details-marker { display: none; }
details.faq-item[open] .faq-q i { transform: rotate(45deg); }
details.faq-item > .faq-a { animation: clrise .25s ease both; }

/* Menu is in the HTML from the start and toggled with [hidden]. */
.menu[hidden] { display: none; }
body.menu-open { overflow: hidden; }

/* The lightbox is opened by ?film=…; the scrim is a link back to the page. */
.lightbox-scrim { position: absolute; inset: 0; display: block; }
.lightbox-in { position: relative; z-index: 1; }
.lightbox-bar a { color: inherit; font-size: 26px; line-height: 1; text-decoration: none; }

/* Calendar arrows and booked days are links/spans server-side. */
.cal-nav a {
  width: 28px; height: 28px; border-radius: 999px;
  border: 1px solid rgba(67, 37, 26, .25);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: inherit; text-decoration: none;
}
.cal-nav a:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.cal-days span.booked {
  background: var(--accent); color: #fff; opacity: .9; cursor: not-allowed;
}

/* Gallery cells and film cards are links now. */
a.gal-cell, a.film-card { color: inherit; text-decoration: none; display: block; }
a.film-card { width: 100%; text-align: left; }

/* Honeypot: never shown to a person, catches bots that fill everything. */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-alert {
  background: #fdecea; color: #8e2318; border-radius: 12px;
  padding: 12px 14px; margin-bottom: 16px; font-size: 14px;
}


/* --------------------------------------------------------- render budget */

/* Sections below the fold are laid out but not painted until they scroll
   near the viewport. The reserved height stops the scrollbar jumping. */
.sec-tight, .band, .cta-band, .foot {
  content-visibility: auto;
  contain-intrinsic-size: auto 600px;
}

/* The hero, reel and services band are above or near the fold on most
   screens, so they are always painted. */
.hero, .reel-wrap, .marquee { content-visibility: visible; }

/* Hint the compositor about what actually moves, and nothing else. */
.marquee-track { will-change: transform; }
.reel { overscroll-behavior-x: contain; }
