/* Life Story Films - standalone palette. Does not touch styles.css. */
:root {
  --bg: #faf7f1;
  --bg-soft: #f2ede4;
  --bg-card: #ffffff;
  --ink: #26241f;
  --ink-soft: #4a463f;
  --muted: #8a8377;
  --line: #e2dbcd;
  --accent: #3f5a4a;
  --accent-soft: rgba(63, 90, 74, 0.08);
  --sand: #b98f57;
  --serif: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.65;
  overflow-x: hidden;
}
::selection { background: var(--accent); color: #fff; }
a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; height: auto; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 32px; }
.narrow { max-width: 720px; margin: 0 auto; }
@media (max-width: 640px) { .container { padding: 0 20px; } }

section { padding: 100px 0; }
@media (max-width: 700px) { section { padding: 68px 0; } }

/* ---------- NAV ---------- */
header.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 247, 241, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.logo { font-family: var(--serif); font-size: 19px; font-weight: 500; letter-spacing: -0.01em; white-space: nowrap; }
.logo em { font-style: italic; color: var(--accent); }
.nav nav ul { display: flex; gap: 30px; list-style: none; }
.nav nav a {
  font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--ink-soft); white-space: nowrap; transition: color .3s var(--ease);
}
.nav nav a:hover, .nav nav a.active { color: var(--ink); }
.nav-cta {
  font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase;
  border: 1px solid var(--line); border-radius: 100px; padding: 10px 20px;
  transition: all .3s var(--ease);
}
.nav-cta:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.hamburger { display: none; background: none; border: 0; font-size: 22px; color: var(--ink); cursor: pointer; }
@media (max-width: 1180px) {
  .nav nav ul { gap: 20px; }
  .nav nav a { font-size: 12px; }
  .nav-cta { padding: 9px 16px; font-size: 12px; }
}

@media (max-width: 1040px) {
  .nav nav, .nav-cta { display: none; }
  .hamburger { display: block; }
}
.drawer {
  position: fixed; inset: 0; z-index: 200; background: var(--bg);
  display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 26px;
  transform: translateY(-100%); transition: transform .5s var(--ease);
}
.drawer.open { transform: translateY(0); }
.drawer a { font-family: var(--serif); font-size: 30px; }
.drawer .close { position: absolute; top: 24px; right: 26px; background: none; border: 0; font-size: 26px; cursor: pointer; color: var(--ink); }

/* ---------- HERO ---------- */
.hero { padding: 90px 0 0; }
.eyebrow {
  display: inline-block; font-size: 12px; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--sand); margin-bottom: 26px;
}
h1 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(46px, 8vw, 104px); line-height: 0.98;
  letter-spacing: -0.035em; max-width: 14ch;
}
h1 em { font-style: italic; color: var(--accent); }
.deck {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(22px, 3vw, 38px); line-height: 1.2;
  letter-spacing: -0.02em; color: var(--ink-soft);
  max-width: 28ch; margin-top: 20px;
}
.hero .lead {
  font-size: clamp(16px, 1.4vw, 18px); color: var(--muted);
  max-width: 52ch; margin-top: 26px;
}
.hero-foot {
  display: flex; flex-wrap: wrap; gap: 14px 34px; margin-top: 34px;
  font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted);
}

/* ---------- FILM ---------- */
.film-wrap { margin-top: 64px; }
.film {
  position: relative; width: 100%; aspect-ratio: 16 / 9;
  background: #17191a; border-radius: 4px; overflow: hidden;
  box-shadow: 0 30px 70px rgba(38, 36, 31, 0.18);
}
.film video { width: 100%; height: 100%; object-fit: cover; }
.film-placeholder {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 14px;
  color: rgba(255,255,255,0.55); text-align: center; padding: 24px;
}
.film-placeholder .ring {
  width: 76px; height: 76px; border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%; display: grid; place-items: center;
}
.film-placeholder .ring::after {
  content: ""; border-left: 13px solid rgba(255,255,255,0.6);
  border-top: 8px solid transparent; border-bottom: 8px solid transparent; margin-left: 4px;
}
.film-placeholder p { font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; }
.film-cap { margin-top: 16px; font-size: 13px; color: var(--muted); }

/* ---------- TEXT ---------- */
.prose p { font-size: clamp(17px, 1.5vw, 19px); color: var(--ink-soft); margin-bottom: 26px; }
.prose p:last-child { margin-bottom: 0; }
.prose strong { font-weight: 500; color: var(--ink); }
h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(30px, 4vw, 48px); line-height: 1.1;
  letter-spacing: -0.02em; margin-bottom: 34px;
}
h2 em { font-style: italic; color: var(--accent); }

.pull {
  background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.pull blockquote {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(26px, 3.6vw, 42px); line-height: 1.25;
  letter-spacing: -0.02em; text-align: center; max-width: 20ch; margin: 0 auto; color: var(--ink);
}

/* ---------- STEPS ---------- */
.steps { display: grid; gap: 1px; background: var(--line); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.step { background: var(--bg); padding: 38px 0; display: grid; grid-template-columns: 90px 1fr; gap: 30px; align-items: start; }
.step .num { font-family: var(--serif); font-style: italic; font-size: 26px; color: var(--sand); line-height: 1.2; }
.step h4 { font-family: var(--serif); font-weight: 500; font-size: 22px; margin-bottom: 10px; letter-spacing: -0.01em; }
.step p { color: var(--ink-soft); max-width: 62ch; }
@media (max-width: 640px) {
  .step { grid-template-columns: 1fr; gap: 10px; padding: 30px 0; }
}

/* ---------- INCLUDED ---------- */
.included { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.included div { background: var(--bg-card); padding: 32px 28px; }
.included h5 { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; font-weight: 500; }
.included p { font-family: var(--serif); font-size: 19px; color: var(--ink); line-height: 1.35; }
@media (max-width: 860px) { .included { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .included { grid-template-columns: 1fr; } }

/* ---------- PRICE ---------- */
.price-block { background: var(--bg-soft); }
.price-rows { border-top: 1px solid var(--line); margin-top: 20px; }
.price-row {
  display: grid; grid-template-columns: 180px 1fr; gap: 30px;
  padding: 30px 0; border-bottom: 1px solid var(--line); align-items: baseline;
}
.price-row .amount { font-family: var(--serif); font-size: clamp(30px, 3.4vw, 42px); letter-spacing: -0.02em; }
.price-row .amount span { display: block; font-family: var(--sans); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--sand); margin-top: 6px; }
.price-row p { color: var(--ink-soft); max-width: 58ch; }
@media (max-width: 640px) { .price-row { grid-template-columns: 1fr; gap: 10px; } }
.price-note { margin-top: 26px; font-size: 15px; color: var(--muted); }

/* ---------- FORM ---------- */
.form-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 80px; align-items: start; }
@media (max-width: 900px) { .form-grid { grid-template-columns: 1fr; gap: 48px; } }
.form-side h3 { font-family: var(--serif); font-weight: 500; font-size: 30px; margin-bottom: 18px; letter-spacing: -0.02em; }
.form-side p { color: var(--ink-soft); margin-bottom: 26px; }
.contact-detail { display: block; padding: 16px 0; border-bottom: 1px solid var(--line); }
.contact-detail .label { display: block; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.contact-detail .value { font-family: var(--serif); font-size: 18px; }
.field { margin-bottom: 24px; }
.field label { display: block; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.field input, .field textarea {
  width: 100%; background: var(--bg-card); border: 1px solid var(--line);
  padding: 14px 16px; font-family: var(--sans); font-size: 16px; font-weight: 300;
  color: var(--ink); border-radius: 3px; transition: border-color .25s var(--ease);
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent); }
.field textarea { min-height: 130px; resize: vertical; }
.field .hint { font-size: 13px; color: var(--muted); margin-top: 6px; text-transform: none; letter-spacing: 0; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--accent); color: #fff; border: 0; border-radius: 100px;
  padding: 16px 30px; font-family: var(--sans); font-size: 14px;
  letter-spacing: 0.06em; text-transform: uppercase; cursor: pointer;
  transition: all .3s var(--ease);
}
.btn-primary:hover { background: var(--ink); }

/* ---------- FOOTER ---------- */
footer { background: var(--bg-soft); border-top: 1px solid var(--line); padding: 64px 0 30px; }
.footer-main { display: flex; flex-wrap: wrap; gap: 40px; justify-content: space-between; }
.footer-brand p { color: var(--muted); font-size: 15px; margin-top: 8px; max-width: 30ch; }
.footer-col h5 { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; font-weight: 500; }
.footer-col ul { list-style: none; display: grid; gap: 9px; font-size: 15px; }
.footer-col a { color: var(--ink-soft); }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between;
  margin-top: 50px; padding-top: 22px; border-top: 1px solid var(--line);
  font-size: 13px; color: var(--muted);
}

/* ---------- REVEAL ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }
