/* =========================================================
   Northern Weddings — northernweddings.ca
   Editorial wedding-film aesthetic: ivory, ink, sage, blush.
   Fonts: Cormorant Garamond (display) + Jost (body)
   ========================================================= */

:root {
  --ivory: #f7f2eb;
  --cream: #efe7dc;
  --linen: #e6dccf;
  --ink: #1c1a17;
  --ink-2: #2b2723;
  --stone: #8d847a;
  --stone-2: #b9b0a5;
  --sage: #6f7f68;
  --sage-2: #8c9a85;
  --blush: #c9a094;
  --blush-2: #e3c9c0;
  --white: #fffdf9;

  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Jost", "Helvetica Neue", Arial, sans-serif;

  --max: 1280px;
  --gutter: clamp(16px, 5vw, 64px);
  --radius: 4px;
  --shadow: 0 30px 60px -20px rgba(28, 26, 23, .35);
  --ease: cubic-bezier(.22, .61, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 500; line-height: 1.08; margin: 0; letter-spacing: -.01em; }
p { margin: 0 0 1.1em; }
em, .it { font-family: var(--font-display); font-style: italic; font-weight: 500; }
::selection { background: var(--blush-2); color: var(--ink); }

.container { width: min(100% - 2 * var(--gutter), var(--max)); margin-inline: auto; }
.section { padding-block: clamp(72px, 10vw, 140px); }
.section--tight { padding-block: clamp(48px, 7vw, 96px); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 12px; letter-spacing: .28em; text-transform: uppercase; font-weight: 500;
  color: var(--sage); margin-bottom: 22px;
}
.eyebrow::before { content: ""; width: 34px; height: 1px; background: currentColor; }
.eyebrow--center { justify-content: center; }
.eyebrow--center::after { content: ""; width: 34px; height: 1px; background: currentColor; }
.eyebrow--light { color: var(--blush-2); }

.h-xl { font-size: clamp(44px, 7.2vw, 104px); line-height: .98; }
.h-lg { font-size: clamp(36px, 4.8vw, 66px); }
.h-md { font-size: clamp(28px, 3.2vw, 44px); }
.h-sm { font-size: clamp(22px, 2.2vw, 30px); }
.lede { font-size: clamp(17px, 1.35vw, 20px); color: var(--ink-2); max-width: 62ch; }
.muted { color: var(--stone); }
.center { text-align: center; }
.center .lede { margin-inline: auto; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 30px; border-radius: 999px; border: 1px solid var(--ink);
  background: var(--ink); color: var(--ivory);
  font-size: 13px; letter-spacing: .18em; text-transform: uppercase; font-weight: 500;
  transition: transform .35s var(--ease), background .35s, color .35s, border-color .35s;
  white-space: nowrap;
}
.btn:hover { background: var(--sage); border-color: var(--sage); color: #fff; transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--ivory); border-color: var(--ink); }
.btn--light { background: var(--ivory); border-color: var(--ivory); color: var(--ink); }
.btn--light:hover { background: transparent; color: var(--ivory); border-color: var(--ivory); }
.btn--outline-light { background: transparent; border-color: rgba(255,255,255,.7); color: #fff; }
.btn--outline-light:hover { background: var(--ivory); border-color: var(--ivory); color: var(--ink); }
.btn svg { width: 16px; height: 16px; }

/* =========================== NAV =========================== */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding: 22px 0; transition: background .45s, padding .45s, box-shadow .45s;
  color: #fff;
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav.is-scrolled { background: rgba(247, 242, 235, .92); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); color: var(--ink); padding: 12px 0; box-shadow: 0 1px 0 rgba(28,26,23,.08); }
.brand { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: var(--font-display); font-size: 28px; font-weight: 500; letter-spacing: .02em; }
.brand__name span { font-style: italic; font-weight: 400; }
.brand__tag { font-size: 9.5px; letter-spacing: .34em; text-transform: uppercase; opacity: .75; margin-top: 5px; font-weight: 500; white-space: nowrap; }
.nav__links { display: flex; gap: 34px; list-style: none; margin: 0; padding: 0; }
.nav__links a { font-size: 12.5px; letter-spacing: .2em; text-transform: uppercase; font-weight: 500; position: relative; padding: 6px 0; white-space: nowrap; }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1px; background: currentColor; transition: width .35s var(--ease); }
.nav__links a:hover::after { width: 100%; }
.nav__cta { display: inline-flex; }
.nav .btn--nav { padding: 12px 22px; font-size: 11.5px; background: transparent; border-color: rgba(255,255,255,.7); color: #fff; }
.nav.is-scrolled .btn--nav { border-color: var(--ink); color: var(--ink); }
.nav .btn--nav:hover { background: var(--ivory); color: var(--ink); border-color: var(--ivory); }
.nav.is-scrolled .btn--nav:hover { background: var(--ink); color: var(--ivory); }

.burger { display: none; background: none; border: 0; width: 44px; height: 44px; padding: 0; position: relative; color: inherit; }
.burger span { position: absolute; left: 10px; right: 10px; height: 1.5px; background: currentColor; transition: transform .4s var(--ease), opacity .3s, top .4s var(--ease); }
.burger span:nth-child(1) { top: 15px; } .burger span:nth-child(2) { top: 22px; } .burger span:nth-child(3) { top: 29px; }
.burger.is-open span:nth-child(1) { top: 22px; transform: rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { top: 22px; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 90; background: var(--ink); color: var(--ivory);
  display: flex; flex-direction: column; justify-content: center; padding: 100px var(--gutter) 48px;
  transform: translateY(-100%); transition: transform .6s var(--ease); visibility: hidden;
}
.mobile-menu.is-open { transform: none; visibility: visible; }
.mobile-menu a { font-family: var(--font-display); font-size: clamp(34px, 8vw, 52px); line-height: 1.25; display: block; opacity: .92; }
.mobile-menu a:hover { font-style: italic; color: var(--blush-2); }
.mobile-menu__foot { margin-top: 36px; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; opacity: .6; }

/* =========================== HERO =========================== */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; color: #fff; overflow: hidden; isolation: isolate; }
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img, .hero__media video { width: 100%; height: 100%; object-fit: cover; object-position: 62% 30%; }
.hero__media video { position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s; }
.hero__media video.is-ready { opacity: 1; }
.hero__media img { transform: scale(1.06); animation: heroZoom 14s var(--ease) forwards; }
@keyframes heroZoom { to { transform: scale(1); } }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(20,18,16,.62) 0%, rgba(20,18,16,.28) 45%, rgba(20,18,16,0) 75%),
    linear-gradient(180deg, rgba(20,18,16,.5) 0%, rgba(20,18,16,.05) 30%, rgba(20,18,16,.15) 55%, rgba(20,18,16,.85) 100%);
}
.hero--closing::after { background: linear-gradient(180deg, rgba(20,18,16,.72), rgba(20,18,16,.6) 50%, rgba(20,18,16,.85)); }
.hero--closing .hero__media img { object-position: 50% 45%; animation: none; transform: none; }
.hero__content { position: relative; padding-bottom: clamp(48px, 7vw, 96px); padding-top: 160px; }
.hero__title { max-width: 14ch; text-wrap: balance; }
.hero__title em { color: var(--blush-2); font-weight: 400; }
.hero__lede { max-width: 56ch; font-size: clamp(16px, 1.4vw, 20px); margin-top: 26px; opacity: .92; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.hero__stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  border-top: 1px solid rgba(255,255,255,.28); margin-top: clamp(40px, 5vw, 64px); padding-top: 28px;
}
.stat__num { font-family: var(--font-display); font-size: clamp(30px, 3.2vw, 44px); line-height: 1; }
.stat__num small { font-size: .55em; font-style: italic; font-weight: 400; margin-left: 3px; }
.stat__label { font-size: 11.5px; letter-spacing: .22em; text-transform: uppercase; opacity: .75; margin-top: 8px; }
.hero__scroll { position: absolute; right: var(--gutter); bottom: 32px; font-size: 10.5px; letter-spacing: .3em; text-transform: uppercase; opacity: .7; writing-mode: vertical-rl; display: flex; align-items: center; gap: 12px; }
.hero__scroll::after { content: ""; width: 1px; height: 54px; background: linear-gradient(to bottom, #fff, transparent); animation: scrollPulse 2.2s infinite; }
@keyframes scrollPulse { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }
.hero__badge {
  position: absolute; top: 118px; right: var(--gutter);
  border: 1px solid rgba(255,255,255,.4); border-radius: 999px; padding: 9px 18px;
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase; backdrop-filter: blur(6px);
  display: inline-flex; align-items: center; gap: 10px;
}
.hero__badge i { width: 7px; height: 7px; border-radius: 50%; background: #9ad38f; box-shadow: 0 0 0 0 rgba(154,211,143,.7); animation: ping 2s infinite; }
@keyframes ping { 70% { box-shadow: 0 0 0 9px rgba(154,211,143,0); } 100% { box-shadow: 0 0 0 0 rgba(154,211,143,0); } }

/* =========================== MARQUEE =========================== */
.marquee { background: var(--ink); color: var(--ivory); overflow: hidden; padding: 16px 0; border-block: 1px solid rgba(255,255,255,.06); }
.marquee__track { display: flex; gap: 0; width: max-content; animation: marquee 40s linear infinite; }
.marquee__track span { font-family: var(--font-display); font-size: 20px; font-style: italic; padding: 0 28px; display: inline-flex; align-items: center; gap: 28px; white-space: nowrap; }
.marquee__track span::after { content: "✦"; font-style: normal; font-size: 10px; color: var(--blush); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* =========================== INTRO =========================== */
.intro { position: relative; overflow: hidden; }
.intro__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(40px, 6vw, 96px); align-items: center; }
.intro__media { position: relative; }
.intro__media img { aspect-ratio: 4 / 5; object-fit: cover; width: 100%; border-radius: var(--radius); }
.intro__media .frame { position: absolute; inset: 22px -22px -22px 22px; border: 1px solid var(--stone-2); border-radius: var(--radius); z-index: -1; }
.intro__media .polaroid {
  position: absolute; right: -8%; bottom: 8%; width: 42%; background: var(--white); padding: 10px 10px 14px;
  box-shadow: var(--shadow); transform: rotate(4deg);
}
.intro__media .polaroid img { aspect-ratio: 1; }
.intro__media .polaroid figcaption { font-family: var(--font-display); font-style: italic; text-align: center; margin-top: 8px; color: var(--stone); font-size: 15px; }
.intro__copy .h-lg { max-width: 14ch; text-wrap: balance; }
.intro__copy .h-lg em { color: var(--sage); }
.intro__points { list-style: none; padding: 0; margin: 30px 0 0; display: grid; gap: 14px; }
.intro__points li { display: flex; gap: 16px; align-items: flex-start; font-size: 16px; color: var(--ink-2); }
.intro__points li::before { content: ""; flex: 0 0 8px; width: 8px; height: 8px; margin-top: 9px; border-radius: 50%; background: var(--blush); }
.short-notice {
  margin-top: 34px; border-left: 2px solid var(--sage); padding: 14px 20px; background: var(--cream);
  font-size: 15px; color: var(--ink-2);
}
.short-notice strong { font-weight: 500; }

/* =========================== FILMS =========================== */
.films { background: var(--ink); color: var(--ivory); position: relative; }
.films .eyebrow { color: var(--blush-2); }
.films__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; margin-bottom: clamp(36px, 4vw, 60px); }
.films__head p { color: rgba(247,242,235,.7); max-width: 52ch; margin: 0; }
.films__grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.film { position: relative; border-radius: 6px; overflow: hidden; background: #0f0e0d; grid-column: span 2; cursor: pointer; isolation: isolate; box-shadow: 0 20px 50px -20px rgba(0,0,0,.6); border: 1px solid rgba(255,255,255,.06); }
.film--featured { grid-column: span 4; grid-row: span 2; }
.film__poster { width: 100%; height: 100%; aspect-ratio: 16 / 9; object-fit: cover; transform: scale(1.02); transition: transform 1.2s var(--ease), filter .6s; filter: saturate(.9) contrast(1.02); }
.film--featured .film__poster { aspect-ratio: 16 / 10; }
.film:hover .film__poster { transform: scale(1.08); filter: saturate(1) contrast(1.05); }
.film__shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.05) 30%, rgba(0,0,0,.75) 100%); transition: opacity .5s; }
.film__frame { position: absolute; inset: 14px; border: 1px solid rgba(255,255,255,.22); border-radius: 3px; pointer-events: none; transition: inset .5s var(--ease), border-color .5s; }
.film:hover .film__frame { inset: 10px; border-color: rgba(255,255,255,.5); }
.film__play {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 72px; height: 72px; border-radius: 50%; border: 1px solid rgba(255,255,255,.7);
  display: grid; place-items: center; backdrop-filter: blur(8px); background: rgba(255,255,255,.08);
  transition: transform .5s var(--ease), background .4s;
}
.film__play svg { width: 22px; height: 22px; fill: #fff; margin-left: 4px; }
.film:hover .film__play { transform: translate(-50%, -50%) scale(1.12); background: rgba(255,255,255,.2); }
.film--featured .film__play { width: 96px; height: 96px; }
.film__meta { position: absolute; left: 26px; right: 26px; bottom: 24px; display: flex; justify-content: space-between; align-items: flex-end; gap: 12px; }
.film__title { font-family: var(--font-display); font-size: clamp(22px, 2vw, 32px); font-weight: 500; line-height: 1.1; }
.film__title em { font-weight: 400; color: var(--blush-2); }
.film__sub { font-size: 11px; letter-spacing: .22em; text-transform: uppercase; opacity: .75; margin-top: 6px; }
.film__dur { font-size: 11px; letter-spacing: .16em; border: 1px solid rgba(255,255,255,.35); border-radius: 999px; padding: 5px 11px; white-space: nowrap; }
.film.is-placeholder .film__poster { filter: saturate(.75) brightness(.9); }
.films__foot { margin-top: 40px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px; color: rgba(247,242,235,.65); font-size: 14px; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(10,9,8,.94); display: none; align-items: center; justify-content: center; padding: 24px; }
.lightbox.is-open { display: flex; animation: fade .35s; }
@keyframes fade { from { opacity: 0; } }
.lightbox__inner { width: min(100%, 1200px); }
.lightbox__player { position: relative; aspect-ratio: 16 / 9; background: #000; border-radius: 6px; overflow: hidden; box-shadow: 0 40px 100px rgba(0,0,0,.6); }
.lightbox__player iframe, .lightbox__player video { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.lightbox__empty { position: absolute; inset: 0; display: grid; place-items: center; text-align: center; color: var(--ivory); padding: 24px; background: radial-gradient(ellipse at center, #2a2622, #0f0e0d); }
.lightbox__empty h3 { font-size: clamp(26px, 3vw, 40px); }
.lightbox__empty p { color: rgba(247,242,235,.7); max-width: 40ch; margin: 12px auto 0; font-size: 15px; }
.lightbox__caption { display: flex; justify-content: space-between; align-items: center; margin-top: 16px; color: var(--ivory); font-family: var(--font-display); font-size: 22px; }
.lightbox__caption small { font-family: var(--font-body); font-size: 11px; letter-spacing: .22em; text-transform: uppercase; opacity: .7; }
.lightbox__close { position: absolute; top: 22px; right: 22px; width: 48px; height: 48px; border-radius: 50%; border: 1px solid rgba(255,255,255,.4); background: transparent; color: #fff; font-size: 22px; display: grid; place-items: center; }
.lightbox__close:hover { background: #fff; color: var(--ink); }

/* =========================== WHY =========================== */
.why { position: relative; overflow: hidden; }
.why__bg { position: absolute; inset: 0; z-index: -1; opacity: .12; }
.why__bg img { width: 100%; height: 100%; object-fit: cover; }
.why::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, var(--ivory), rgba(247,242,235,.6) 50%, var(--ivory)); }
.why__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--linen); border: 1px solid var(--linen); margin-top: clamp(36px, 4vw, 60px); }
.why__item { background: var(--ivory); padding: clamp(28px, 3vw, 44px); transition: background .4s; }
.why__item:hover { background: var(--white); }
.why__num { font-family: var(--font-display); font-style: italic; color: var(--stone-2); font-size: 20px; margin-bottom: 26px; display: flex; align-items: center; gap: 12px; }
.why__num::after { content: ""; flex: 1; height: 1px; background: var(--linen); }
.why__item h3 { font-size: 27px; margin-bottom: 12px; }
.why__item p { font-size: 15.5px; color: var(--ink-2); margin: 0; }

/* =========================== PACKAGES =========================== */
.packages { background: var(--cream); }
.pack__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: clamp(36px, 4vw, 60px); align-items: stretch; }
.pack { background: var(--ivory); border: 1px solid var(--linen); padding: clamp(28px, 3vw, 44px); display: flex; flex-direction: column; position: relative; transition: transform .5s var(--ease), box-shadow .5s; }
.pack:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.pack--hero { background: var(--ink); color: var(--ivory); border-color: var(--ink); }
.pack__flag { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--blush); color: var(--ink); font-size: 10.5px; letter-spacing: .24em; text-transform: uppercase; font-weight: 500; padding: 7px 16px; border-radius: 999px; white-space: nowrap; }
.pack__name { font-size: 34px; }
.pack__tag { font-family: var(--font-display); font-style: italic; color: var(--stone); font-size: 18px; margin-top: 4px; }
.pack--hero .pack__tag { color: var(--blush-2); }
.pack__price { margin: 26px 0 6px; display: flex; align-items: baseline; gap: 8px; }
.pack__price b { font-family: var(--font-display); font-weight: 500; font-size: clamp(44px, 4vw, 58px); line-height: 1; }
.pack__price span { font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--stone); }
.pack__compare { font-size: 12.5px; letter-spacing: .06em; color: var(--blush); margin-bottom: 18px; }
.pack__compare s { opacity: .8; }
.pack__desc { font-size: 15px; color: var(--ink-2); border-top: 1px solid var(--linen); padding-top: 18px; }
.pack--hero .pack__desc { color: rgba(247,242,235,.8); border-color: rgba(255,255,255,.14); }
.pack ul { list-style: none; padding: 0; margin: 14px 0 28px; display: grid; gap: 11px; flex: 1; }
.pack li { display: flex; gap: 12px; font-size: 15px; align-items: flex-start; }
.pack li strong { font-weight: 500; }
.pack li svg { flex: 0 0 16px; width: 16px; height: 16px; margin-top: 5px; color: var(--sage); }
.pack--hero li svg { color: var(--blush-2); }
.pack .btn { width: 100%; }
.pack--hero .btn { background: var(--ivory); color: var(--ink); border-color: var(--ivory); }
.pack--hero .btn:hover { background: var(--blush-2); border-color: var(--blush-2); }
.pack__note { margin-top: 28px; font-size: 14px; color: var(--stone); text-align: center; max-width: 76ch; margin-inline: auto; }
.pack__note strong { color: var(--ink); font-weight: 500; }

/* =========================== BOUTIQUE VS BIG =========================== */
.compare__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 80px); align-items: center; }
.compare__media img { aspect-ratio: 3 / 4; object-fit: cover; width: 100%; border-radius: var(--radius); }
.compare table { width: 100%; border-collapse: collapse; margin-top: 30px; font-size: 15px; }
.compare th, .compare td { text-align: left; padding: 14px 12px; border-bottom: 1px solid var(--linen); vertical-align: top; }
.compare th { font-weight: 500; font-size: 11.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--stone); }
.compare th:first-child, .compare td:first-child { padding-left: 0; color: var(--stone); }
.compare td.us { color: var(--ink); font-weight: 400; }
.compare td.them { color: var(--stone); }
.compare td.us::before { content: "✓ "; color: var(--sage); }

/* =========================== TIMELINE =========================== */
.timeline { background: var(--ink); color: var(--ivory); position: relative; overflow: hidden; }
.timeline__bg { position: absolute; inset: 0; opacity: .32; }
.timeline__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.timeline::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(28,26,23,.97) 0%, rgba(28,26,23,.9) 45%, rgba(28,26,23,.72) 100%); }
.timeline .container { position: relative; }
.timeline .eyebrow { color: var(--blush-2); }
.timeline__steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: clamp(36px, 4vw, 64px); }
.step { position: relative; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.22); }
.step::before { content: ""; position: absolute; top: -4px; left: 0; width: 8px; height: 8px; border-radius: 50%; background: var(--blush-2); }
.step__when { font-family: var(--font-display); font-size: clamp(36px, 3.6vw, 52px); line-height: 1; }
.step__when small { font-size: .45em; font-style: italic; font-weight: 400; margin-left: 6px; opacity: .8; }
.step h3 { font-size: 24px; margin: 14px 0 8px; }
.step p { color: rgba(247,242,235,.72); font-size: 15px; margin: 0; }

/* =========================== TESTIMONIALS =========================== */
.kind__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin-top: clamp(36px, 4vw, 60px); }
.quote { background: var(--white); border: 1px solid var(--linen); padding: clamp(28px, 3.2vw, 48px); position: relative; display: flex; flex-direction: column; }
.quote::before { content: "“"; position: absolute; top: 8px; right: 28px; font-family: var(--font-display); font-size: 140px; line-height: 1; color: var(--blush-2); opacity: .6; }
.stars { color: var(--blush); letter-spacing: .12em; font-size: 15px; margin-bottom: 18px; }
.quote blockquote { margin: 0; font-family: var(--font-display); font-size: clamp(20px, 1.7vw, 25px); line-height: 1.45; font-weight: 500; color: var(--ink); flex: 1; }
.quote__who { display: flex; align-items: center; gap: 16px; margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--linen); }
.quote__who img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; object-position: top; border: 2px solid var(--cream); }
.quote__who b { font-weight: 500; display: block; }
.quote__who span { font-size: 13px; color: var(--stone); letter-spacing: .04em; }
.kind__google { margin-top: 32px; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 18px; color: var(--stone); font-size: 14px; }
.kind__google .g { display: inline-flex; align-items: center; gap: 10px; border: 1px solid var(--linen); border-radius: 999px; padding: 10px 18px; background: var(--white); color: var(--ink); font-size: 13px; letter-spacing: .06em; transition: box-shadow .3s; }
.kind__google .g:hover { box-shadow: var(--shadow); }
.kind__google .g svg { width: 18px; height: 18px; }

/* =========================== AREAS =========================== */
.areas { position: relative; color: #fff; overflow: hidden; }
.areas__bg { position: absolute; inset: 0; z-index: -1; }
.areas__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 60%; }
.areas::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(20,18,16,.75), rgba(20,18,16,.55) 50%, rgba(20,18,16,.85)); }
.areas .eyebrow { color: var(--blush-2); }
.areas__list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: clamp(36px, 4vw, 56px); }
.area { border: 1px solid rgba(255,255,255,.25); padding: 26px 24px; backdrop-filter: blur(6px); background: rgba(255,255,255,.05); transition: background .4s; }
.area:hover { background: rgba(255,255,255,.12); }
.area h3 { font-size: 30px; }
.area p { margin: 8px 0 0; font-size: 14px; opacity: .8; }
.area small { display: block; margin-top: 14px; font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--blush-2); }
.areas__note { margin-top: 28px; font-size: 15px; opacity: .88; max-width: 78ch; }
.areas__note strong { font-family: var(--font-display); font-style: italic; font-weight: 500; font-size: 20px; color: var(--blush-2); }
.areas__travel { margin-top: 44px; border-top: 1px solid rgba(255,255,255,.22); padding-top: 34px; display: grid; grid-template-columns: 1.1fr 1fr auto; gap: 32px; align-items: center; }
.areas__travel .eyebrow { color: var(--blush-2); }
.areas__travel h3 em { color: var(--blush-2); }
.areas__travel p { margin: 0; font-size: 15px; opacity: .85; }
a.area { display: block; color: inherit; }
a.area:hover h3 { font-style: italic; color: var(--blush-2); }

/* =========================== SHORT NOTICE =========================== */
.notice__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(32px, 5vw, 80px); align-items: center; }
.notice__media { position: relative; }
.notice__media img { aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--radius); }
.notice__media .badge { position: absolute; left: -16px; bottom: 32px; background: var(--ink); color: var(--ivory); padding: 18px 22px; font-family: var(--font-display); font-style: italic; font-size: 22px; line-height: 1.2; box-shadow: var(--shadow); max-width: 240px; }
.notice__copy .h-lg em { color: var(--blush); }

/* =========================== FAQ =========================== */
.faq { background: var(--cream); }
.faq__wrap { max-width: 860px; margin: clamp(30px, 4vw, 50px) auto 0; border-top: 1px solid var(--linen); }
.faq details { border-bottom: 1px solid var(--linen); }
.faq summary { list-style: none; cursor: pointer; padding: 24px 0; display: flex; justify-content: space-between; gap: 24px; align-items: center; font-family: var(--font-display); font-size: clamp(21px, 2vw, 27px); font-weight: 500; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--font-body); font-weight: 300; font-size: 28px; color: var(--stone); transition: transform .4s var(--ease); flex: 0 0 auto; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 0 26px; margin: 0; color: var(--ink-2); max-width: 70ch; font-size: 16px; }

/* =========================== CONTACT =========================== */
.contact { position: relative; }
.contact__grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(40px, 6vw, 100px); }
.contact__aside .h-lg em { color: var(--sage); }
.contact__ways { list-style: none; padding: 0; margin: 34px 0 0; display: grid; gap: 18px; }
.contact__ways li { display: grid; gap: 4px; padding-bottom: 18px; border-bottom: 1px solid var(--linen); }
.contact__ways small { font-size: 11px; letter-spacing: .24em; text-transform: uppercase; color: var(--stone); }
.contact__ways a { font-family: var(--font-display); font-size: 24px; font-weight: 500; }
.contact__ways a:hover { color: var(--sage); font-style: italic; }
.contact__promise { margin-top: 28px; font-size: 14.5px; color: var(--stone); }
.form { background: var(--white); border: 1px solid var(--linen); padding: clamp(24px, 3.5vw, 48px); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 8px; margin-bottom: 18px; }
.field label { font-size: 11.5px; letter-spacing: .22em; text-transform: uppercase; color: var(--stone); font-weight: 500; }
.field input, .field select, .field textarea {
  width: 100%; border: 0; border-bottom: 1px solid var(--stone-2); background: transparent; padding: 12px 0;
  font: inherit; font-weight: 400; color: var(--ink); border-radius: 0; outline: none; transition: border-color .3s;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--ink); }
.field textarea { min-height: 120px; resize: vertical; }
.field select { appearance: none; -webkit-appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--stone) 50%), linear-gradient(135deg, var(--stone) 50%, transparent 50%); background-position: calc(100% - 14px) 50%, calc(100% - 9px) 50%; background-size: 5px 5px; background-repeat: no-repeat; padding-right: 30px; }
.form__foot { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px; margin-top: 8px; }
.form__foot small { color: var(--stone); font-size: 13px; max-width: 42ch; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* =========================== FOOTER =========================== */
.footer { background: var(--ink); color: var(--ivory); padding: clamp(56px, 7vw, 96px) 0 32px; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer .brand__name { font-size: 34px; }
.footer__blurb { color: rgba(247,242,235,.65); font-size: 14.5px; max-width: 34ch; margin-top: 18px; }
.footer h4 { font-family: var(--font-body); font-size: 11px; letter-spacing: .26em; text-transform: uppercase; font-weight: 500; color: rgba(247,242,235,.55); margin-bottom: 18px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; font-size: 15px; }
.footer ul a:hover { color: var(--blush-2); }
.footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; padding-top: 24px; font-size: 12.5px; color: rgba(247,242,235,.5); letter-spacing: .04em; }
.footer__bottom a:hover { color: var(--ivory); }
.footer__parent { display: inline-flex; align-items: center; gap: 8px; }
.footer__parent b { font-weight: 500; color: rgba(247,242,235,.85); }

/* =========================== REVEAL =========================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .12s; } .reveal[data-delay="2"] { transition-delay: .24s; } .reveal[data-delay="3"] { transition-delay: .36s; } .reveal[data-delay="4"] { transition-delay: .48s; } .reveal[data-delay="5"] { transition-delay: .6s; }

/* =========================== SUB PAGES =========================== */
.page { padding: 180px 0 100px; min-height: 80svh; }
.page .prose { max-width: 760px; }
.page .prose h2 { font-size: 30px; margin: 40px 0 12px; }
.page .prose p, .page .prose li { color: var(--ink-2); font-size: 16px; }
.nav--solid { background: var(--ivory); color: var(--ink); box-shadow: 0 1px 0 rgba(28,26,23,.08); }
.nav--solid .btn--nav { border-color: var(--ink); color: var(--ink); }
.nav--solid .btn--nav:hover { background: var(--ink); color: var(--ivory); }
.nav--solid .nav__cta { display: inline-flex; }
@media (max-width: 600px) { .nav--solid .nav__cta { display: none; } }
.thanks { text-align: center; padding: 200px 0 140px; }
.thanks .h-xl { max-width: 12ch; margin-inline: auto; text-wrap: balance; }
.thanks .h-xl em { color: var(--sage); }

/* =========================== RESPONSIVE =========================== */
@media (max-width: 1100px) {
  .nav__links { gap: 20px; }
  .nav__links a { font-size: 11.5px; letter-spacing: .14em; }
  .nav .btn--nav { padding: 11px 16px; font-size: 10.5px; }
  .films__grid { grid-template-columns: repeat(2, 1fr); }
  .film, .film--featured { grid-column: span 1; grid-row: auto; }
  .film--featured { grid-column: span 2; }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr 1fr; }
  .areas__list { grid-template-columns: repeat(2, 1fr); }
  .areas__travel { grid-template-columns: 1fr; gap: 18px; }
}
@media (max-width: 900px) {
  .nav__links, .nav__cta { display: none; }
  .burger { display: block; }
  .intro__grid, .compare__grid, .notice__grid, .contact__grid { grid-template-columns: 1fr; }
  .intro__media { margin-right: 24px; }
  .pack__grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
  .pack--hero { order: -1; }
  .timeline__steps { grid-template-columns: 1fr; gap: 28px; }
  .kind__grid { grid-template-columns: 1fr; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
  .hero__badge { top: 92px; right: auto; left: var(--gutter); font-size: 10px; padding: 7px 14px; max-width: calc(100% - 2 * var(--gutter)); }
  .hero__content { padding-top: 160px; }
  .hero__scroll { display: none; }
  .films__head { flex-direction: column; align-items: flex-start; gap: 18px; }
  .compare__media { display: none; }
  .notice__media { max-width: 480px; }
  .notice__media .badge { left: 12px; }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .films__grid { grid-template-columns: 1fr; }
  .film--featured { grid-column: span 1; }
  .film__meta { left: 18px; right: 18px; bottom: 16px; }
  .film__frame { inset: 10px; }
  .why__grid { grid-template-columns: 1fr; }
  .areas__list { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .form__row { grid-template-columns: 1fr; gap: 0; }
  .hero__content { padding-top: 150px; }
  .hero__actions .btn { width: 100%; }
  .hero__stats { gap: 18px; }
  .intro__media .polaroid { right: -4px; width: 46%; }
  .intro__media .frame { inset: 14px -14px -14px 14px; }
  .brand__name { font-size: 24px; }
  .lightbox { padding: 12px; }
  .lightbox__close { top: 12px; right: 12px; }
  .compare th, .compare td { padding: 12px 8px; font-size: 14px; }
  .marquee__track span { font-size: 17px; padding: 0 18px; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__media img { animation: none; }
  .marquee__track { animation: none; }
  html { scroll-behavior: auto; }
}

/* =========================== LOCATION PAGES =========================== */
.loc-hero { position: relative; min-height: 62svh; display: flex; align-items: flex-end; color: #fff; isolation: isolate; }
.loc-hero__media { position: absolute; inset: 0; z-index: -2; }
.loc-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.loc-hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(20,18,16,.5), rgba(20,18,16,.25) 40%, rgba(20,18,16,.85)); }
.loc-hero .container { padding: 160px 0 56px; }
.loc-hero h1 { max-width: 18ch; text-wrap: balance; }
.loc-hero h1 em { color: var(--blush-2); font-weight: 400; }
.loc-hero .lede { color: rgba(255,255,255,.9); margin-top: 20px; }
.loc-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(36px, 6vw, 90px); align-items: start; }
.loc-grid .prose p { color: var(--ink-2); font-size: 16.5px; }
.loc-grid .prose h2 { font-size: clamp(26px, 2.6vw, 36px); margin: 36px 0 12px; }
.loc-grid .prose h2:first-child { margin-top: 0; }
.towns { display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0 6px; padding: 0; list-style: none; }
.towns li { border: 1px solid var(--linen); background: var(--white); border-radius: 999px; padding: 6px 14px; font-size: 13.5px; color: var(--ink-2); }
.loc-aside { position: sticky; top: 100px; display: grid; gap: 18px; }
.loc-card { background: var(--white); border: 1px solid var(--linen); padding: 28px; }
.loc-card h3 { font-size: 24px; margin-bottom: 8px; }
.loc-card p { font-size: 15px; color: var(--ink-2); margin: 0 0 14px; }
.loc-card .price-row { display: flex; justify-content: space-between; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--linen); font-size: 15px; }
.loc-card .price-row b { font-family: var(--font-display); font-size: 22px; font-weight: 500; }
.loc-card .btn { width: 100%; margin-top: 16px; }
.loc-card--dark { background: var(--ink); color: var(--ivory); border-color: var(--ink); }
.loc-card--dark p { color: rgba(247,242,235,.75); }
.loc-card--dark .btn { background: var(--ivory); color: var(--ink); border-color: var(--ivory); }
.loc-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.loc-links a { border: 1px solid var(--stone-2); border-radius: 999px; padding: 9px 16px; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; }
.loc-links a:hover { background: var(--ink); color: var(--ivory); border-color: var(--ink); }
@media (max-width: 900px) { .loc-grid { grid-template-columns: 1fr; } .loc-aside { position: static; } .loc-hero .container { padding-top: 130px; } }
