/* ==========================================================================
   George Hughes Films
   Brand: Newsreader (display) + General Sans (text), warm paper, soft ink,
   and a golden hour accent pulled from the films themselves.
   ========================================================================== */

:root {
  /* Colour */
  --paper: #FBFAF9;
  --paper-2: #F4EFE8;
  --ink: #272726;
  --ink-soft: #5B5955;
  --line: #E4DDD3;
  --night: #1D1C1A;
  --night-2: #282622;
  --on-night: #F4EFE8;
  --on-night-soft: #B9B2A7;
  --accent: #8F6134;        /* golden hour, text safe on paper (5.1:1) */
  --accent-light: #D2A675;  /* golden hour, text safe on night (7.6:1) */

  /* Type */
  --serif: "Newsreader", Georgia, "Times New Roman", serif;
  --sans: "General Sans", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;

  --fs-hero: clamp(2.75rem, 1.6rem + 5.2vw, 6.25rem);
  --fs-h2: clamp(2.35rem, 1.6rem + 3.2vw, 4.5rem);
  --fs-statement: clamp(1.75rem, 1.2rem + 2.2vw, 3.1rem);
  --fs-lede: clamp(1.05rem, 0.98rem + 0.3vw, 1.2rem);

  /* Space */
  --gutter: clamp(1rem, 0.5rem + 3vw, 3.5rem);
  --section: clamp(5rem, 3.5rem + 7vw, 10rem);
  --max: 1320px;

  --radius: 14px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 72px; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
p { margin: 0 0 1.1em; }
h1, h2, h3 { margin: 0; font-weight: 400; }
em { font-style: italic; }
ul, ol { margin: 0; padding: 0; list-style: none; }
figure { margin: 0; }
button { font: inherit; color: inherit; }

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

.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 {
  position: absolute; left: 1rem; top: -4rem; z-index: 100;
  background: var(--ink); color: var(--paper); padding: .6rem 1rem; border-radius: 999px;
  text-decoration: none; transition: top .2s;
}
.skip:focus { top: 1rem; }

/* ---------- Type helpers ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .75rem;
  font-family: var(--sans);
  font-size: .72rem; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.4rem;
}
.eyebrow__num {
  font-family: var(--serif); font-style: italic; font-size: .95rem;
  letter-spacing: 0; text-transform: none; color: var(--ink-soft);
  padding-right: .75rem; border-right: 1px solid currentColor;
  line-height: 1;
}
.eyebrow--light { color: rgba(255,255,255,.85); }
.eyebrow--accent-dark { color: var(--accent-light); }
.eyebrow--accent-dark .eyebrow__num { color: var(--on-night-soft); }

.section-title {
  font-family: var(--serif);
  font-size: var(--fs-h2);
  line-height: 1.02;
  letter-spacing: -0.025em;
  font-weight: 400;
}
.section-title em, .hero__title em, .statement__title em, .enquire__title em, .words blockquote em {
  color: var(--accent);
  font-weight: 300;
}
.section-lede {
  font-size: var(--fs-lede);
  color: var(--ink-soft);
  max-width: 34rem;
  margin: 1.4rem auto 0;
}
.section-lede a { color: var(--accent); text-underline-offset: 3px; }

.section-head { text-align: center; padding: 0 var(--gutter); margin-bottom: clamp(2.5rem, 2rem + 2vw, 4rem); }
.section-head--left { text-align: left; padding: 0; }
.section-head--left .section-lede { margin-left: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  min-height: 48px; padding: .8rem 1.6rem;
  border-radius: 999px;
  background: var(--ink); color: var(--paper);
  border: 1px solid var(--ink);
  font-family: var(--sans); font-size: .9rem; font-weight: 500; letter-spacing: .01em;
  text-decoration: none; cursor: pointer;
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
.btn:hover { background: var(--accent); border-color: var(--accent); }
.btn--small { min-height: 40px; padding: .5rem 1.2rem; font-size: .85rem; }
.btn--light { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.btn--light:hover { background: var(--accent-light); border-color: var(--accent-light); color: var(--night); }
.btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn--ghost-light:hover { background: #fff; color: var(--ink); border-color: #fff; }

.round-btn {
  width: 48px; height: 48px; border-radius: 50%;
  border: 1px solid var(--line); background: transparent;
  cursor: pointer; font-size: 1.1rem;
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.round-btn:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.round-btn:disabled { opacity: .35; cursor: default; background: transparent; color: inherit; border-color: var(--line); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  color: #fff;
  transition: background .4s var(--ease), color .4s var(--ease), box-shadow .4s var(--ease);
}
.site-header__inner {
  max-width: 1600px; margin: 0 auto;
  display: flex; align-items: center; gap: 2rem;
  padding: 1.1rem var(--gutter);
}
.site-header.is-solid {
  background: rgba(251, 250, 249, .92);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  color: var(--ink);
  box-shadow: 0 1px 0 var(--line);
}
.wordmark {
  font-family: var(--serif); font-weight: 500;
  font-size: 1.35rem; letter-spacing: -0.02em; text-transform: uppercase;
  text-decoration: none; white-space: nowrap; line-height: 1;
}
.nav { display: flex; gap: clamp(1.1rem, 2vw - .4rem, 2rem); margin-left: auto; }
.nav a {
  font-size: .85rem; font-weight: 500; text-decoration: none; letter-spacing: .02em;
  position: relative; padding: .4rem 0; white-space: nowrap;
}
.nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: currentColor; transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease);
}
.nav a:hover::after { transform: scaleX(1); }
.btn--header { background: #fff; color: var(--ink); border-color: #fff; }
.site-header.is-solid .btn--header { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn--header:hover, .site-header.is-solid .btn--header:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

.menu-toggle {
  display: none; width: 44px; height: 44px; margin-left: auto;
  border: 0; background: transparent; cursor: pointer; position: relative;
}
.menu-toggle__bars, .menu-toggle__bars::before {
  position: absolute; left: 11px; right: 11px; height: 1.5px; background: currentColor;
  transition: transform .3s var(--ease), top .3s var(--ease);
}
.menu-toggle__bars { top: 18px; }
.menu-toggle__bars::before { content: ""; left: 0; right: 0; top: 7px; }
.menu-open .menu-toggle__bars { top: 21px; transform: rotate(45deg); }
.menu-open .menu-toggle__bars::before { top: 0; transform: rotate(-90deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 40;
  background: var(--paper);
  display: flex; align-items: center; justify-content: center;
}
.mobile-menu[hidden] { display: none; }
.mobile-menu nav { display: flex; flex-direction: column; align-items: center; gap: 1.1rem; }
.mobile-menu a { font-family: var(--serif); font-size: 2.2rem; text-decoration: none; letter-spacing: -0.02em; }
.mobile-menu .mobile-menu__cta { font-style: italic; color: var(--accent); }
.menu-open .site-header { background: var(--paper); color: var(--ink); box-shadow: none; }
.menu-open { overflow: hidden; }

@media (max-width: 1140px) {
  .nav, .btn--header { display: none; }
  .menu-toggle { display: block; }
  .wordmark { font-size: 1.15rem; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100svh;
  display: grid; align-items: end;
  color: #fff; overflow: hidden; isolation: isolate;
  background: var(--night);
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img {
  width: 100%; height: 100%; object-fit: cover; object-position: 50% 45%;
  transform: scale(1.08);
  animation: drift 22s var(--ease) forwards;
}
@keyframes drift { to { transform: scale(1); } }
.hero__shade {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(20,18,15,.45) 0%, rgba(20,18,15,0) 22%),
    linear-gradient(0deg, rgba(20,18,15,.78) 0%, rgba(20,18,15,.25) 45%, rgba(20,18,15,0) 70%);
}
/* a whisper of film grain */
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none; opacity: .14; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero__content {
  width: 100%; max-width: var(--max); margin: 0 auto;
  padding: 8rem var(--gutter) clamp(5rem, 4rem + 6vh, 8rem);
}
.hero__title {
  font-family: var(--serif);
  font-size: var(--fs-hero);
  line-height: .98; letter-spacing: -0.035em;
  max-width: 11ch;
  font-weight: 400;
  text-wrap: balance;
}
.hero__title em { color: var(--accent-light); }
.hero__sub {
  max-width: 30rem; margin: 1.6rem 0 2.2rem;
  font-size: var(--fs-lede); color: rgba(255,255,255,.86);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: .75rem; }
.hero__scroll {
  position: absolute; right: var(--gutter); bottom: clamp(2rem, 1.5rem + 3vh, 3.5rem);
  display: flex; flex-direction: column; align-items: center; gap: .8rem;
  font-size: .68rem; letter-spacing: .25em; text-transform: uppercase; text-decoration: none;
  color: rgba(255,255,255,.8);
  writing-mode: vertical-rl;
}
.hero__scroll::after {
  content: ""; width: 1px; height: 56px; background: linear-gradient(rgba(255,255,255,.8), rgba(255,255,255,0));
  animation: scrollcue 2.4s var(--ease) infinite;
}
@keyframes scrollcue { 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; } }
@media (max-width: 640px) { .hero__scroll { display: none; } }

/* ---------- Statement (dark band) ---------- */
.statement { background: var(--paper-2); color: var(--ink); padding: var(--section) var(--gutter); }
.statement__inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 5fr 7fr; gap: clamp(2rem, 1rem + 5vw, 7rem); align-items: center;
}
.statement__image { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 5; }
.statement__image img { width: 100%; height: 100%; object-fit: cover; }
.statement__title {
  font-family: var(--serif); font-size: var(--fs-statement);
  line-height: 1.12; letter-spacing: -0.02em; margin-bottom: 1.8rem; text-wrap: pretty;
}
.statement__title em { color: var(--accent); }
.statement__body { color: var(--ink-soft); font-size: var(--fs-lede); max-width: 34rem; margin-bottom: 2.2rem; }
@media (max-width: 820px) {
  .statement__inner { grid-template-columns: 1fr; }
  .statement__image { aspect-ratio: 4 / 3; }
}

/* ---------- Rails (films + quotes) ---------- */
[data-rail] {
  display: grid; grid-auto-flow: column;
  overflow-x: auto; overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory; scroll-padding-inline: var(--gutter);
  padding: 0 var(--gutter) 1rem;
  scrollbar-width: none;
}
[data-rail]::-webkit-scrollbar { display: none; }
[data-rail]:focus-visible { outline-offset: -2px; }
.rail-controls {
  max-width: 1600px; margin: 1.5rem auto 0; padding: 0 var(--gutter);
  display: flex; align-items: center; gap: .75rem;
}
.rail-progress { flex: 1; height: 1px; background: var(--line); margin-right: 1rem; position: relative; }
.rail-progress span {
  position: absolute; left: 0; top: -1px; height: 3px; width: 20%;
  background: var(--ink); border-radius: 2px;
  transition: transform .2s linear, width .2s linear;
}

/* ---------- Films ---------- */
.films { padding: var(--section) 0; }
.films__rail { grid-auto-columns: min(78vw, 560px); gap: clamp(1rem, .6rem + 1.4vw, 1.75rem); }
.film {
  display: flex; flex-direction: column; align-items: flex-start; text-align: left;
  background: none; border: 0; padding: 0; cursor: pointer;
  scroll-snap-align: start;
}
.film__thumb {
  position: relative; display: block; width: 100%;
  aspect-ratio: 16 / 9; border-radius: var(--radius); overflow: hidden; background: var(--paper-2);
  margin-bottom: 1.1rem;
}
.film__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease), filter .6s var(--ease); }
.film__thumb::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(20,18,15,.35), rgba(20,18,15,0) 50%); }
.film:hover .film__thumb img { transform: scale(1.045); }
.film__play {
  position: absolute; z-index: 1; left: 50%; top: 50%;
  width: 68px; height: 68px; margin: -34px 0 0 -34px; border-radius: 50%;
  background: rgba(251,250,249,.9);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  transition: transform .4s var(--ease), background .4s var(--ease);
}
.film__play::before {
  content: ""; position: absolute; left: 50%; top: 50%; margin: -8px 0 0 -4px;
  border-style: solid; border-width: 8px 0 8px 13px; border-color: transparent transparent transparent var(--ink);
}
.film:hover .film__play { transform: scale(1.1); background: #fff; }
.film__time {
  position: absolute; z-index: 1; right: .9rem; bottom: .8rem;
  font-size: .72rem; font-weight: 500; letter-spacing: .08em; color: #fff;
  font-variant-numeric: tabular-nums;
}
.film__name { font-family: var(--serif); font-size: clamp(1.4rem, 1.2rem + .6vw, 1.75rem); letter-spacing: -0.015em; line-height: 1.15; }
.film__venue { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-soft); margin-top: .35rem; }

/* ---------- About ---------- */
.about { background: var(--paper-2); padding: var(--section) var(--gutter); }
.about__grid {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 1rem + 6vw, 8rem); align-items: center;
}
.about__images { position: relative; padding-bottom: 12%; padding-right: 14%; }
.about__main { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 5; }
.about__main img { width: 100%; height: 100%; object-fit: cover; }
.about__small {
  position: absolute; right: 0; bottom: 0; width: 42%;
  aspect-ratio: 3 / 4; border-radius: var(--radius); overflow: hidden;
  border: 8px solid var(--paper-2);
}
.about__small img { width: 100%; height: 100%; object-fit: cover; }
.about__lead { font-family: var(--serif); font-size: clamp(1.3rem, 1.15rem + .6vw, 1.65rem); line-height: 1.35; letter-spacing: -0.01em; margin-top: 1.8rem; }
.about__text > p:not(.eyebrow):not(.about__lead) { color: var(--ink-soft); max-width: 36rem; }
.facts { margin-top: 2.4rem; padding-top: 1.8rem; border-top: 1px solid var(--line); }
.facts__title { font-size: .72rem; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; color: var(--accent); margin-bottom: 1rem; }
.facts ul { display: grid; grid-template-columns: 1fr 1fr; gap: .7rem 2rem; }
.facts li { font-family: var(--serif); font-style: italic; font-size: 1.08rem; line-height: 1.35; padding-left: 1.2rem; position: relative; }
.facts li::before { content: ""; position: absolute; left: 0; top: .6em; width: 6px; height: 6px; border-radius: 50%; background: var(--accent-light); }
@media (max-width: 860px) {
  .about__grid { grid-template-columns: 1fr; }
  .about__images { max-width: 520px; }
  .facts ul { grid-template-columns: 1fr; }
}

/* ---------- Approach ---------- */
.approach { padding: var(--section) var(--gutter); }
.approach__inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 7fr 5fr; gap: clamp(2.5rem, 1rem + 6vw, 8rem); align-items: center;
}
.approach .section-head { margin-bottom: clamp(1.5rem, 1rem + 1.5vw, 2.5rem); }
.approach__image { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 5; }
.approach__image img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 50%; filter: grayscale(1) contrast(1.06); }
.pillars { display: grid; gap: 0; counter-reset: pillar; }
.pillar {
  display: grid; grid-template-columns: 3.5rem 1fr; column-gap: 1rem;
  padding: 1.6rem 0; border-top: 1px solid var(--line);
}
.pillar:last-child { border-bottom: 1px solid var(--line); }
.pillar__num { grid-row: span 2; font-family: var(--serif); font-style: italic; font-size: 1.3rem; color: var(--accent); line-height: 1.3; }
.pillar h3 { font-family: var(--serif); font-size: clamp(1.5rem, 1.3rem + .6vw, 1.9rem); letter-spacing: -0.015em; line-height: 1.2; margin-bottom: .5rem; }
.pillar p { color: var(--ink-soft); margin: 0; max-width: 32rem; }
@media (max-width: 860px) {
  .approach__inner { grid-template-columns: 1fr; }
  .approach__image { order: -1; aspect-ratio: 4 / 3; max-width: 560px; }
}

/* ---------- Collections ---------- */
.collections { background: var(--paper-2); padding: var(--section) var(--gutter); }
.card-label { font-family: var(--sans); font-size: .72rem; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; color: var(--accent); margin-bottom: 1rem; }
.tiers {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, .5rem + 1.5vw, 1.75rem); align-items: stretch;
}
.tier {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--line); border-radius: calc(var(--radius) + 6px);
  padding: clamp(1.75rem, 1.3rem + 1.5vw, 2.6rem);
}
.tier { position: relative; }
.tier__badge {
  position: absolute; top: 1.4rem; right: 1.4rem;
  display: inline-block; margin: 0; padding: .3rem .75rem; border-radius: 999px;
  font-size: .68rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  background: var(--accent); color: #fff;
}
.tier__name { font-family: var(--serif); font-size: clamp(2rem, 1.7rem + 1.1vw, 2.6rem); letter-spacing: -0.03em; line-height: 1; }
.tier__desc { color: var(--ink-soft); margin: 1rem 0 1.6rem; font-size: .98rem; }
.tier__list { border-top: 1px solid var(--line); margin-bottom: 2rem; }
.tier__list li {
  position: relative; padding: .85rem 0 .85rem 1.9rem; border-bottom: 1px solid var(--line);
  font-family: var(--serif); font-size: 1.12rem; line-height: 1.35; letter-spacing: -0.005em;
}
.tier__list li::before {
  content: ""; position: absolute; left: 0; top: 1.25rem; width: 11px; height: 6px;
  border-left: 1.5px solid var(--accent); border-bottom: 1.5px solid var(--accent); transform: rotate(-45deg);
}
.tier__cta { margin-top: auto; align-self: flex-start; }
.btn--outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }

.tiers__note { max-width: var(--max); margin: 1.75rem auto 0; text-align: center; color: var(--ink-soft); font-family: var(--serif); font-style: italic; font-size: 1.15rem; }
.delivery {
  max-width: var(--max); margin: clamp(2.5rem, 2rem + 2vw, 4rem) auto 0;
  display: grid; grid-template-columns: 4fr 7fr; gap: clamp(1.5rem, 1rem + 3vw, 4rem); align-items: center;
  background: #fff; border: 1px solid var(--line); border-radius: calc(var(--radius) + 6px);
  padding: clamp(1.75rem, 1.2rem + 2vw, 3rem);
}
.delivery__title { font-family: var(--serif); font-size: clamp(1.7rem, 1.4rem + 1.2vw, 2.4rem); line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 1rem; }
.delivery__title em { color: var(--accent); font-weight: 300; }
.delivery__text > p:not(.delivery__title) { color: var(--ink-soft); margin: 0; }
.delivery__cta { margin-top: 1.6rem; }
.delivery__image img { width: 100%; height: auto; }
@media (max-width: 900px) { .delivery { grid-template-columns: 1fr; max-width: 560px; } }
.tier--feature { background: var(--night); color: var(--on-night); border-color: var(--night); }
.tier--feature .tier__desc { color: var(--on-night-soft); }
.tier--feature .tier__list, .tier--feature .tier__list li { border-color: rgba(255,255,255,.12); }
.tier--feature .tier__list li::before { border-color: var(--accent-light); }

@media (max-width: 980px) {
  .tiers { grid-template-columns: 1fr; max-width: 560px; }
}

/* ---------- Joint package ---------- */
.joint { background: var(--paper); padding: var(--section) var(--gutter); }
.joint__grid {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 5fr 6fr; gap: clamp(2.5rem, 1rem + 6vw, 8rem); align-items: center;
}
.joint__image { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 5; }
.joint__image img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; }
.joint__lead { font-family: var(--serif); font-size: clamp(1.3rem, 1.15rem + .6vw, 1.65rem); line-height: 1.35; letter-spacing: -0.01em; margin-top: 1.8rem; }
.joint__text > p:not(.eyebrow):not(.joint__lead) { color: var(--ink-soft); max-width: 36rem; }
.joint__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem 2.5rem; margin: 2.2rem 0 1.4rem; padding-top: 1.8rem; border-top: 1px solid var(--line); }
.joint__col li { font-family: var(--serif); font-size: 1.08rem; line-height: 1.35; padding: 0 0 .7rem 1.2rem; position: relative; }
.joint__col li::before { content: ""; position: absolute; left: 0; top: .55em; width: 6px; height: 6px; border-radius: 50%; background: var(--accent-light); }
.joint__text .joint__small { font-size: .92rem; }
.joint__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.75rem; margin-top: 2rem; }
.text-link { font-weight: 500; font-size: .92rem; text-decoration: underline; text-underline-offset: 4px; text-decoration-color: var(--accent-light); transition: color .25s; }
.text-link:hover { color: var(--accent); }
@media (max-width: 860px) {
  .joint__grid { grid-template-columns: 1fr; }
  .joint__image { aspect-ratio: 4 / 3; }
  .joint__cols { grid-template-columns: 1fr; }
}

/* ---------- Process ---------- */
.process { background: var(--paper-2); padding: var(--section) var(--gutter); }
.steps {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 0;
  border-top: 1px solid var(--line);
}
.step { padding: 2rem 1.5rem 0 0; position: relative; }
.step::before { content: ""; position: absolute; top: -5px; left: 0; width: 9px; height: 9px; border-radius: 50%; background: var(--accent); }
.step__num { display: block; font-family: var(--serif); font-style: italic; color: var(--accent); font-size: 1.1rem; margin-bottom: .8rem; }
.step h3 { font-family: var(--serif); font-size: 1.4rem; line-height: 1.2; letter-spacing: -0.01em; margin-bottom: .5rem; }
.step p { color: var(--ink-soft); font-size: .95rem; margin: 0; }
@media (max-width: 900px) {
  .steps { grid-template-columns: 1fr; border-top: 0; border-left: 1px solid var(--line); margin-left: .5rem; }
  .step { padding: 0 0 2.2rem 2rem; }
  .step::before { top: .35rem; left: -5px; }
}

/* ---------- Kind words (dark) ---------- */
.words { background: var(--paper); color: var(--ink); padding: var(--section) 0; }
.words__feature {
  max-width: var(--max); margin: 0 auto clamp(4rem, 3rem + 4vw, 7rem); padding: 0 var(--gutter);
  display: grid; grid-template-columns: 5fr 7fr; gap: clamp(2rem, 1rem + 5vw, 7rem); align-items: center;
}
.words__image { border-radius: var(--radius); overflow: hidden; aspect-ratio: 1; }
.words__image img { width: 100%; height: 100%; object-fit: cover; }
.words blockquote { margin: 0; }
.words__quote blockquote p {
  font-family: var(--serif); font-size: var(--fs-statement); line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 2rem; text-wrap: pretty;
}
.words blockquote em { color: var(--accent); }
.words__quote footer { font-size: .8rem; letter-spacing: .2em; text-transform: uppercase; }
.words__quote footer span { display: block; color: var(--ink-soft); margin-top: .35rem; letter-spacing: .14em; }
.quotes { grid-auto-columns: min(82vw, 420px); gap: 1.25rem; }
.quote {
  scroll-snap-align: start; margin: 0;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 2rem;
  display: flex; flex-direction: column; justify-content: space-between; gap: 1.6rem;
}
.quote p { font-family: var(--serif); font-size: 1.2rem; line-height: 1.45; margin: 0; color: var(--ink); }
.quote footer { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--accent); }
.rail-controls--dark .rail-progress { background: rgba(255,255,255,.14); }
.rail-controls--dark .rail-progress span { background: var(--on-night); }
.rail-controls--dark .round-btn { border-color: rgba(255,255,255,.2); color: var(--on-night); }
.rail-controls--dark .round-btn:hover { background: var(--on-night); color: var(--night); }
.rail-controls--dark .round-btn:disabled { background: transparent; color: var(--on-night); border-color: rgba(255,255,255,.2); }
@media (max-width: 820px) { .words__feature { grid-template-columns: 1fr; } .words__image { aspect-ratio: 4 / 3; } }

/* ---------- FAQ ---------- */
.faq { background: var(--paper-2); padding: var(--section) var(--gutter); }
.faq__grid {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 4fr 7fr; gap: clamp(2rem, 1rem + 5vw, 7rem); align-items: start;
}
.faq .section-head { position: sticky; top: 110px; }
.faq__list { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 1.5rem;
  padding: 1.35rem 0;
  font-family: var(--serif); font-size: clamp(1.15rem, 1.05rem + .4vw, 1.4rem); letter-spacing: -0.01em; line-height: 1.3;
  transition: color .25s var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--accent); }
.faq summary::after {
  content: ""; flex: none; width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--line);
  background:
    linear-gradient(currentColor, currentColor) center / 10px 1.5px no-repeat,
    linear-gradient(currentColor, currentColor) center / 1.5px 10px no-repeat;
  transition: transform .35s var(--ease), background-color .35s var(--ease);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: var(--ink-soft); max-width: 42rem; padding: 0 3rem 1.5rem 0; margin: 0; }
@media (max-width: 860px) { .faq__grid { grid-template-columns: 1fr; } .faq .section-head { position: static; } }

/* ---------- Enquire (dark) ---------- */
.enquire { background: var(--night); color: var(--on-night); padding: var(--section) var(--gutter); }
.enquire__grid {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 5fr 6fr; gap: clamp(2.5rem, 1rem + 5vw, 7rem); align-items: start;
}
.enquire__intro { position: sticky; top: 110px; }
.enquire__title { font-family: var(--serif); font-size: var(--fs-h2); line-height: 1.02; letter-spacing: -0.03em; margin-bottom: 1.8rem; }
.enquire__title em { color: var(--accent-light); }
.enquire__intro > p { color: var(--on-night-soft); font-size: var(--fs-lede); max-width: 30rem; }
.enquire__call { margin-top: 2.6rem; padding-top: 1.8rem; border-top: 1px solid rgba(255,255,255,.12); display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.5rem; }
.enquire__call p { margin: 0; font-family: var(--serif); font-style: italic; font-size: 1.25rem; }
.enquire__form { background: var(--paper); border-radius: calc(var(--radius) + 6px); padding: clamp(.5rem, .2rem + 1.5vw, 1.5rem); overflow: hidden; }
.enquire__form iframe { display: block; width: 100%; }
@media (max-width: 900px) { .enquire__grid { grid-template-columns: 1fr; } .enquire__intro { position: static; } }

/* ---------- Footer ---------- */
.site-footer { background: var(--night); color: var(--on-night-soft); border-top: 1px solid rgba(255,255,255,.08); }
.site-footer__inner {
  max-width: var(--max); margin: 0 auto; padding: 3.5rem var(--gutter) 2.5rem;
  display: grid; grid-template-columns: 1fr auto; gap: 1.5rem 3rem; align-items: end;
}
.wordmark--footer { color: var(--on-night); font-size: clamp(1.6rem, 1.2rem + 1.8vw, 2.6rem); grid-column: 1 / -1; }
.site-footer__tag { margin: 0; font-family: var(--serif); font-style: italic; }
.site-footer__nav, .site-footer__social { display: flex; flex-wrap: wrap; gap: .6rem 1.6rem; font-size: .85rem; }
.site-footer__nav { grid-column: 1; }
.site-footer__social { grid-column: 2; grid-row: 2; justify-content: flex-end; }
.site-footer a { text-decoration: none; transition: color .25s; }
.site-footer a:hover { color: var(--accent-light); }
.site-footer__legal { grid-column: 1 / -1; margin: 1.5rem 0 0; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.08); font-size: .78rem; }
@media (max-width: 700px) {
  .site-footer__inner { grid-template-columns: 1fr; }
  .site-footer__social { grid-column: 1; grid-row: auto; justify-content: flex-start; }
}

/* ---------- Film player ---------- */
.player {
  width: min(92vw, 1400px); max-width: none; max-height: none;
  padding: 0; border: 0; background: transparent; overflow: visible;
}
.player::backdrop { background: rgba(15, 14, 12, .92); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); }
.player__frame { position: relative; aspect-ratio: 16 / 9; max-height: 82vh; margin: 0 auto; border-radius: var(--radius); overflow: hidden; background: #000; }
.player__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.player__close {
  position: absolute; top: -3.25rem; right: 0;
  background: transparent; border: 1px solid rgba(255,255,255,.35); color: #fff;
  border-radius: 999px; padding: .45rem 1.1rem; cursor: pointer; font-size: .85rem; min-height: 40px;
}
.player__close:hover { background: #fff; color: var(--ink); }

/* ---------- Scroll reveal ---------- */
.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.js .reveal.is-in { opacity: 1; transform: none; }

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

/* ==========================================================================
   Real Weddings (listing + posts)
   ========================================================================== */
.weddings-index { padding: calc(var(--section) + 40px) var(--gutter) var(--section); }
.wcards {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.25rem, 1rem + 1.5vw, 2.25rem);
}
.wcard { display: flex; flex-direction: column; text-decoration: none; }
.wcard__img { display: block; aspect-ratio: 3 / 2; border-radius: var(--radius); overflow: hidden; background: var(--paper-2); margin-bottom: 1rem; }
.wcard__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.wcard:hover .wcard__img img { transform: scale(1.04); }
.wcard__venue { font-size: .72rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: var(--accent); }
.wcard__name { font-family: var(--serif); font-size: clamp(1.4rem, 1.2rem + .6vw, 1.8rem); letter-spacing: -0.015em; line-height: 1.2; margin-top: .3rem; }
.wcard__date { font-size: .85rem; color: var(--ink-soft); margin-top: .2rem; }
@media (max-width: 900px) { .wcards { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .wcards { grid-template-columns: 1fr; } }

.post { padding: calc(var(--section) * .6 + 60px) var(--gutter) var(--section); }
.post__head { max-width: 50rem; margin: 0 auto clamp(2rem, 1.5rem + 2vw, 3rem); text-align: center; }
.crumbs { display: flex; justify-content: center; gap: .6rem; font-size: .8rem; color: var(--ink-soft); margin-bottom: 1.6rem; }
.crumbs a { text-decoration: none; }
.crumbs a:hover { color: var(--accent); }
.post__title { font-family: var(--serif); font-size: clamp(2.4rem, 1.6rem + 3.4vw, 4.6rem); line-height: 1.02; letter-spacing: -0.03em; text-wrap: balance; }
.post__title em { color: var(--accent); font-weight: 300; }
.post__date { margin: 1.2rem 0 0; color: var(--ink-soft); }
.post__hero { max-width: var(--max); margin: 0 auto clamp(2.5rem, 2rem + 3vw, 5rem); border-radius: var(--radius); overflow: hidden; aspect-ratio: 16 / 9; }
.post__hero img { width: 100%; height: 100%; object-fit: cover; }

.prose { max-width: 42rem; margin: 0 auto; font-size: 1.08rem; line-height: 1.75; }
.prose > p:first-child { font-family: var(--serif); font-size: clamp(1.3rem, 1.15rem + .6vw, 1.6rem); line-height: 1.45; letter-spacing: -0.01em; }
.prose h2 { font-family: var(--serif); font-size: clamp(1.7rem, 1.4rem + 1.2vw, 2.3rem); line-height: 1.15; letter-spacing: -0.02em; margin: 2.8rem 0 1rem; }
.prose h3 { font-family: var(--serif); font-size: 1.35rem; margin: 2rem 0 .6rem; }
.prose p { color: #3b3a37; }
.prose a { color: var(--accent); text-underline-offset: 3px; }
.prose ul { margin: 0 0 1.2em; }
.prose li { position: relative; padding: .55rem 0 .55rem 1.3rem; border-bottom: 1px solid var(--line); }
.prose li::before { content: ""; position: absolute; left: 0; top: 1.2em; width: 6px; height: 6px; border-radius: 50%; background: var(--accent-light); }
.prose blockquote { margin: 2.2rem 0; padding: 0 0 0 1.6rem; border-left: 2px solid var(--accent-light); }
.prose blockquote p { font-family: var(--serif); font-style: italic; font-size: clamp(1.3rem, 1.15rem + .6vw, 1.6rem); line-height: 1.45; color: var(--ink); margin: 0; }
.post-faq { padding: 0; margin-top: .5rem; }
.post-faq summary { font-size: 1.2rem; }

.post-film { margin: 2.4rem calc(-1 * clamp(0rem, 6vw - 1rem, 6rem)); }
.post-film__play { position: relative; display: block; width: 100%; aspect-ratio: 16 / 9; padding: 0; border: 0; border-radius: var(--radius); overflow: hidden; background: #000; cursor: pointer; }
.post-film__play img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.post-film__play:hover img { transform: scale(1.03); }
.post-film__play:hover .film__play { transform: scale(1.1); background: #fff; }
.post-film iframe { display: block; width: 100%; aspect-ratio: 16 / 9; border: 0; border-radius: var(--radius); background: #000; }
.post-film figcaption { font-size: .8rem; color: var(--ink-soft); text-align: center; margin-top: .8rem; letter-spacing: .04em; }

.cta-band { background: var(--night); color: var(--on-night); padding: var(--section) var(--gutter); text-align: center; }
.cta-band__inner { max-width: 44rem; margin: 0 auto; }
.cta-band__title { font-family: var(--serif); font-size: var(--fs-h2); line-height: 1.02; letter-spacing: -0.03em; margin-bottom: 1.4rem; text-wrap: balance; }
.cta-band__title em { color: var(--accent-light); font-weight: 300; }
.cta-band p { color: var(--on-night-soft); font-size: var(--fs-lede); }
.cta-band__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: .75rem; margin-top: 2rem; }
.more-weddings { padding: var(--section) var(--gutter); }

.films__more { max-width: 1600px; margin: 1.75rem auto 0; padding: 0 var(--gutter); }

/* Kind Words: centred 2 x 2 grid on larger screens, swipe row on phones */
.quote { text-align: center; align-items: center; }
@media (min-width: 900px) {
  .quotes {
    grid-auto-flow: row; grid-template-columns: repeat(2, 1fr); grid-auto-columns: auto;
    max-width: calc(var(--max) - 2 * var(--gutter)); margin: 0 auto; padding: 0 var(--gutter);
    overflow: visible; scroll-snap-type: none;
    box-sizing: content-box;
  }
  .quote { padding: 2.4rem 2.6rem; }
  .quote p { font-size: 1.3rem; }
}
.rail-controls[hidden] { display: none; }

/* Google reviews badge under Kind Words */
.google-badge-wrap { display: flex; justify-content: center; padding: clamp(2.5rem, 2rem + 2vw, 3.5rem) var(--gutter) 0; }
.google-badge {
  display: inline-flex; align-items: center; flex-wrap: wrap; justify-content: center; gap: .6rem 1.1rem;
  padding: 1rem 1.6rem; border-radius: 999px;
  background: #fff; border: 1px solid var(--line);
  text-decoration: none; transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.google-badge:hover { border-color: var(--accent-light); transform: translateY(-2px); }
.google-badge__stars { color: #D9A441; font-size: 1.15rem; letter-spacing: .12em; line-height: 1; }
.google-badge__text { font-family: var(--serif); font-size: 1.15rem; }
.google-badge__text strong { font-weight: 500; }
.google-badge__link { font-size: .85rem; font-weight: 500; color: var(--accent); }

/* Real Weddings: the film leads each post in place of a hero photo */
.post-film--hero { max-width: var(--max); margin: 0 auto clamp(2.5rem, 2rem + 3vw, 5rem); }
.post-film--hero figcaption { margin-top: 1rem; }

/* "Prices start from" line under the Collections heading */
.price-from { margin: 1.1rem 0 0; font-family: var(--serif); font-style: italic; font-size: clamp(1.25rem, 1.1rem + .5vw, 1.5rem); color: var(--ink); }
.price-from strong { font-style: normal; font-weight: 500; color: var(--accent); }
