/* ============================================================
   VCEVfoto — Design System
   Elegant · minimalist · editorial · premium
   ============================================================ */

:root {
  /* Palette — warm neutrals + muted gold */
  --bg:          #FDFBF7;  /* soft ivory / warm white */
  --bg-alt:      #F4EFE7;  /* light beige panel */
  --ink:         #1B1815;  /* near-black charcoal */
  --ink-soft:    #6A6055;  /* warm grey text */
  --ink-faint:   #A79E90;  /* faint labels */
  --line:        #E7E0D4;  /* hairline */
  --line-strong: #D4CABA;
  --accent:      #A98B5D;  /* muted gold — used sparingly */
  --accent-deep: #8A6F45;

  /* Type */
  --font-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-alt:     'Playfair Display', Georgia, serif;
  --font-body:    'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, 'SF Mono', monospace;

  /* Rhythm */
  --pad-x: clamp(24px, 6vw, 120px);
  --maxw: 1440px;
  --ease: cubic-bezier(0.2, 0.7, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

::selection { background: var(--accent); color: var(--bg); }

/* ---------- Typography helpers ---------- */
.display {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.02em;
}
.display em { font-style: italic; font-weight: 500; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 400; letter-spacing: -0.02em; line-height: 1; }
h1 em, h2 em, h3 em { font-style: italic; font-weight: 500; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--accent);
}
.eyebrow--center::before { display: none; }

.lead {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 30px);
  line-height: 1.4;
  color: var(--ink-soft);
}

.section { padding: clamp(80px, 12vh, 160px) var(--pad-x); }
.section--tight { padding: clamp(60px, 8vh, 110px) var(--pad-x); }
.section__head { max-width: 720px; margin-bottom: clamp(40px, 6vh, 72px); }
.section__head .eyebrow { margin-bottom: 24px; }
.section__title { font-size: clamp(38px, 6vw, 86px); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--ink);
  transition: background .4s var(--ease), color .4s var(--ease), border-color .4s var(--ease);
  line-height: 1;
}
.btn .arrow { transition: transform .4s var(--ease); }
.btn:hover { border-color: var(--ink); }
.btn:hover .arrow { transform: translateX(5px); }
.btn--solid { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.btn--solid:hover { background: var(--accent-deep); border-color: var(--accent-deep); }
.btn--gold { background: var(--accent); color: var(--bg); border-color: var(--accent); }
.btn--gold:hover { background: var(--accent-deep); border-color: var(--accent-deep); }
.btn--ghost { border-color: transparent; padding-left: 0; padding-right: 0; }
.btn--lg { padding: 20px 36px; font-size: 13px; }
.btn--light { color: var(--bg); border-color: rgba(255,255,255,.35); }
.btn--light:hover { border-color: var(--bg); background: var(--bg); color: var(--ink); }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px var(--pad-x);
  transition: background .4s var(--ease), padding .4s var(--ease), box-shadow .4s var(--ease);
}
.nav.scrolled {
  background: rgba(253, 251, 247, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding-top: 16px; padding-bottom: 16px;
  box-shadow: 0 1px 0 var(--line);
}
.nav__logo {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.nav__logo em { font-style: italic; color: var(--accent); }
.nav__menu {
  display: flex;
  gap: 34px;
  list-style: none;
  align-items: center;
}
.nav__menu a {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  position: relative;
  transition: color .3s;
}
.nav__menu a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width .35s var(--ease);
}
.nav__menu a:hover { color: var(--ink); }
.nav__menu a:hover::after,
.nav__menu a.active::after { width: 100%; }
.nav__menu a.active { color: var(--ink); }
.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: var(--ink);
  color: var(--bg) !important;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: background .4s var(--ease);
}
.nav__cta:hover { background: var(--accent); }
.nav__cta .arrow { transition: transform .4s var(--ease); }
.nav__cta:hover .arrow { transform: translateX(4px); }
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
}
.nav__burger span {
  width: 26px; height: 1.5px;
  background: var(--ink);
  transition: transform .35s var(--ease), opacity .35s var(--ease);
}
body.menu-open .nav__burger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
body.menu-open .nav__burger span:nth-child(2) { opacity: 0; }
body.menu-open .nav__burger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 940px) {
  .nav__menu, .nav__cta { display: none; }
  .nav__burger { display: flex; }
}

/* ---------- Mobile menu ---------- */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px var(--pad-x) 48px;
  transform: translateY(-100%);
  transition: transform .6s var(--ease);
  visibility: hidden;
}
body.menu-open .mobile-menu { transform: translateY(0); visibility: visible; }
.mobile-menu ul { list-style: none; }
.mobile-menu li { overflow: hidden; }
.mobile-menu a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: clamp(30px, 8vw, 48px);
}
.mobile-menu a em { font-style: italic; color: var(--accent); }
.mobile-menu a .num { font-family: var(--font-mono); font-size: 12px; color: var(--ink-faint); letter-spacing: 0.1em; }
.mobile-menu__meta {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
}

/* ---------- Image placeholders (swap for real photos) ---------- */
.ph {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #ECE4D6 0%, #E2D7C4 50%, #D9CDB8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ph::after {
  content: attr(data-label);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(27,24,21,.34);
  padding: 8px 14px;
  border: 1px solid rgba(27,24,21,.18);
  text-align: center;
  max-width: 80%;
}
.ph img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ph--tall { aspect-ratio: 3/4; }
.ph--portrait { aspect-ratio: 4/5; }
.ph--square { aspect-ratio: 1/1; }
.ph--land { aspect-ratio: 4/3; }
.ph--wide { aspect-ratio: 16/9; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  color: var(--bg);
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,17,14,.32) 0%, rgba(20,17,14,.08) 35%, rgba(20,17,14,.55) 100%); }
.hero__inner { padding: 0 var(--pad-x) clamp(56px, 10vh, 110px); width: 100%; max-width: var(--maxw); margin: 0 auto; }
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(48px, 9vw, 152px);
  line-height: 0.95;
  font-weight: 400;
  letter-spacing: -0.025em;
  max-width: 14ch;
}
.hero__title em { font-style: italic; font-weight: 500; }
.hero__sub {
  margin-top: 28px;
  max-width: 460px;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(253,251,247,.86);
}
.hero__actions { margin-top: 40px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero__scroll {
  position: absolute;
  bottom: 36px; right: var(--pad-x);
  writing-mode: vertical-rl;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(253,251,247,.7);
  display: flex; align-items: center; gap: 14px;
}
.hero__scroll::after { content: ''; width: 1px; height: 50px; background: rgba(253,251,247,.5); }
@media (max-width: 600px) { .hero__scroll { display: none; } }

/* ---------- Intro ---------- */
.intro { text-align: center; max-width: 1000px; margin: 0 auto; }
.intro__text {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.4vw, 46px);
  line-height: 1.32;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.intro__text em { font-style: italic; color: var(--accent); }

/* ---------- Category split ---------- */
.cats { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
@media (max-width: 800px) { .cats { grid-template-columns: 1fr; } }
.cat { position: relative; overflow: hidden; min-height: 70vh; display: flex; align-items: flex-end; color: var(--bg); }
.cat .ph { position: absolute; inset: 0; transition: transform 1.2s var(--ease); }
.cat::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,17,14,.12), rgba(20,17,14,.62)); }
.cat:hover .ph { transform: scale(1.05); }
.cat__body { position: relative; z-index: 2; padding: clamp(32px, 5vw, 60px); }
.cat__kicker { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.26em; text-transform: uppercase; opacity: .85; }
.cat__title { font-family: var(--font-display); font-size: clamp(34px, 4.5vw, 60px); line-height: 1; margin: 14px 0 14px; }
.cat__title em { font-style: italic; }
.cat__desc { max-width: 380px; font-size: 14px; line-height: 1.7; color: rgba(253,251,247,.85); margin-bottom: 24px; }
.cat__links { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- Editorial gallery grid ---------- */
.gallery { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(8px, 1.4vw, 18px); }
.gallery .ph { width: 100%; height: 100%; }
.g-a { grid-column: span 5; }
.g-b { grid-column: span 7; }
.g-c { grid-column: span 4; }
.g-d { grid-column: span 4; }
.g-e { grid-column: span 4; }
.g-f { grid-column: span 7; }
.g-g { grid-column: span 5; }
@media (max-width: 760px) {
  .gallery { grid-template-columns: 1fr 1fr; }
  .gallery > * { grid-column: span 1 !important; }
}

/* ---------- About preview ---------- */
.about-prev { display: grid; grid-template-columns: 0.85fr 1fr; gap: clamp(32px, 6vw, 90px); align-items: center; }
@media (max-width: 860px) { .about-prev { grid-template-columns: 1fr; } }
.about-prev__title { font-size: clamp(34px, 5vw, 64px); margin: 22px 0 26px; }
.about-prev__text { color: var(--ink-soft); font-size: 16px; line-height: 1.8; margin-bottom: 18px; max-width: 48ch; }
.about-prev__sig { font-family: var(--font-alt); font-style: italic; font-size: 26px; margin: 28px 0 30px; }

/* ---------- Testimonials ---------- */
.quotes { text-align: center; max-width: 920px; margin: 0 auto; }
.quote { display: none; }
.quote.active { display: block; animation: fadeUp .7s var(--ease); }
.quote__text { font-family: var(--font-display); font-size: clamp(24px, 3.4vw, 44px); line-height: 1.36; font-weight: 400; }
.quote__text em { font-style: italic; color: var(--accent); }
.quote__meta { margin-top: 30px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-soft); }
.quotes__dots { display: flex; gap: 10px; justify-content: center; margin-top: 44px; }
.quotes__dots button { width: 8px; height: 8px; border-radius: 50%; border: 1px solid var(--line-strong); background: transparent; padding: 0; transition: background .3s, border-color .3s; }
.quotes__dots button.active { background: var(--accent); border-color: var(--accent); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }

/* ---------- CTA band ---------- */
.cta-band { position: relative; background: var(--ink); color: var(--bg); text-align: center; overflow: hidden; }
.cta-band__title { font-size: clamp(40px, 7vw, 104px); line-height: 0.98; }
.cta-band__title em { font-style: italic; color: var(--accent); }
.cta-band .lead { color: rgba(253,251,247,.7); margin: 26px auto 40px; max-width: 540px; }
.cta-band__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Journal cards ---------- */
.journal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 44px); }
@media (max-width: 860px) { .journal-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; } }
.jcard { display: block; group: ''; }
.jcard .ph { margin-bottom: 22px; transition: opacity .4s; }
.jcard:hover .ph { opacity: .9; }
.jcard__cat { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent); }
.jcard__title { font-family: var(--font-display); font-size: clamp(22px, 2.4vw, 30px); line-height: 1.12; margin: 12px 0 12px; transition: color .3s; }
.jcard:hover .jcard__title { color: var(--accent-deep); }
.jcard__excerpt { color: var(--ink-soft); font-size: 14px; line-height: 1.7; }
.jcard__date { margin-top: 16px; font-family: var(--font-mono); font-size: 11px; color: var(--ink-faint); letter-spacing: 0.08em; }

/* ---------- Instagram strip ---------- */
.ig-strip { display: grid; grid-template-columns: repeat(6, 1fr); gap: 4px; }
@media (max-width: 760px) { .ig-strip { grid-template-columns: repeat(3, 1fr); } }
.ig-strip .ph { aspect-ratio: 1/1; transition: opacity .35s; }
.ig-strip a:hover .ph { opacity: .82; }

/* ---------- Footer ---------- */
.footer { background: var(--bg-alt); padding: clamp(64px, 9vh, 110px) var(--pad-x) 40px; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 56px; border-bottom: 1px solid var(--line-strong); }
@media (max-width: 860px) { .footer__top { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 480px) { .footer__top { grid-template-columns: 1fr; } }
.footer__logo { font-family: var(--font-display); font-size: 34px; font-weight: 500; }
.footer__logo em { font-style: italic; color: var(--accent); }
.footer__desc { margin-top: 18px; color: var(--ink-soft); font-size: 14px; line-height: 1.7; max-width: 34ch; }
.footer__col h5 { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 18px; font-weight: 400; }
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer__col a { font-size: 14px; color: var(--ink-soft); transition: color .3s; }
.footer__col a:hover { color: var(--ink); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; flex-wrap: wrap; gap: 14px; }
.footer__bottom small, .footer__bottom a { font-size: 12px; color: var(--ink-faint); letter-spacing: 0.04em; }
.footer__bottom a:hover { color: var(--ink-soft); }

/* ---------- Reveal on scroll ---------- */
[data-reveal] { opacity: 0; transform: translateY(30px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ---------- Generic page header ---------- */
.page-head { padding: clamp(150px, 22vh, 280px) var(--pad-x) clamp(48px, 8vh, 96px); }
.page-head .eyebrow { margin-bottom: 26px; }
.page-head__title { font-size: clamp(48px, 9vw, 140px); line-height: 0.92; }
.page-head__sub { margin-top: 28px; max-width: 560px; }

/* ---------- Document / legal pages ---------- */
.doc { max-width: 760px; margin: 0 auto; padding: clamp(140px,18vh,220px) var(--pad-x) clamp(60px,9vh,110px); }
.doc__title { font-family: var(--font-display); font-size: clamp(40px,7vw,88px); line-height: 0.96; letter-spacing: -0.02em; margin-bottom: 16px; }
.doc__title em { font-style: italic; }
.doc__updated { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: clamp(36px,5vh,56px); }
.doc h2 { font-family: var(--font-display); font-size: clamp(24px,3vw,34px); line-height: 1.1; margin: 44px 0 16px; }
.doc h2 em { font-style: italic; }
.doc p { font-size: 16px; line-height: 1.8; color: var(--ink-soft); margin-bottom: 18px; }
.doc a { color: var(--accent-deep); text-decoration: underline; text-underline-offset: 3px; }
.doc ul { margin: 0 0 20px; padding-left: 0; list-style: none; }
.doc li { font-size: 16px; line-height: 1.7; color: var(--ink-soft); padding: 8px 0 8px 24px; position: relative; border-bottom: 1px solid var(--line); }
.doc li::before { content: '—'; position: absolute; left: 0; color: var(--accent); }
.doc strong { color: var(--ink); font-weight: 500; }
.doc__faq .faq__q { font-size: clamp(18px,2.2vw,24px); }

/* ---------- Forms (shared) ---------- */
.form-field { display: flex; flex-direction: column; gap: 10px; }
.form-field label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-soft); }
.form-field input, .form-field textarea, .form-field select {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line-strong);
  padding: 10px 0;
  transition: border-color .3s;
  width: 100%;
}
.form-field textarea { resize: vertical; min-height: 90px; line-height: 1.6; }
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { outline: none; border-color: var(--accent); }
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--ink-faint); }
.form-field__error { font-size: 12px; color: var(--accent-deep); font-style: italic; display: none; }
.form-field.error input, .form-field.error textarea, .form-field.error select { border-color: var(--accent-deep); }
.form-field.error .form-field__error { display: block; }

/* ---------- Split feature (image + text) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 90px); align-items: center; }
.split--rev .split__media { order: 2; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } .split--rev .split__media { order: 0; } }
.split__title { font-size: clamp(32px, 4.5vw, 60px); margin: 22px 0 24px; }
.split__text { color: var(--ink-soft); font-size: 16px; line-height: 1.8; margin-bottom: 18px; max-width: 50ch; }

/* ---------- Numbered process / experience steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 4vw, 56px); }
@media (max-width: 760px) { .steps { grid-template-columns: 1fr; max-width: 440px; } }
.step-item { border-top: 1px solid var(--line-strong); padding-top: 22px; }
.step-item__n { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.2em; color: var(--accent); }
.step-item__t { font-family: var(--font-display); font-size: clamp(22px, 2.6vw, 30px); margin: 14px 0 12px; line-height: 1.1; }
.step-item__d { color: var(--ink-soft); font-size: 14px; line-height: 1.7; }

/* ---------- Package cards ---------- */
.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 28px); }
@media (max-width: 880px) { .pkg-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; } }
.pkg { border: 1px solid var(--line-strong); padding: clamp(28px, 3vw, 40px) clamp(24px, 2.6vw, 34px); display: flex; flex-direction: column; background: var(--bg); transition: border-color .4s, transform .4s var(--ease); }
.pkg:hover { border-color: var(--accent); transform: translateY(-4px); }
.pkg--feature { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.pkg__tag { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.pkg__name { font-family: var(--font-display); font-size: clamp(28px, 3.2vw, 38px); line-height: 1; margin-bottom: 10px; }
.pkg__name em { font-style: italic; }
.pkg__price { font-family: var(--font-display); font-style: italic; font-size: 24px; color: var(--accent); margin-bottom: 24px; }
.pkg--feature .pkg__price { color: var(--accent); }
.pkg__list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 30px; flex: 1; }
.pkg__list li { font-size: 14px; line-height: 1.5; padding-left: 22px; position: relative; color: var(--ink-soft); }
.pkg--feature .pkg__list li { color: rgba(253,251,247,.8); }
.pkg__list li::before { content: '—'; position: absolute; left: 0; color: var(--accent); }
.pkg .btn { align-self: flex-start; }
.pkg--feature .btn { color: var(--bg); border-color: rgba(255,255,255,.35); }
.pkg--feature .btn:hover { background: var(--bg); color: var(--ink); border-color: var(--bg); }

/* ---------- What's included ---------- */
.incl { columns: 2; column-gap: 48px; list-style: none; max-width: 760px; }
@media (max-width: 600px) { .incl { columns: 1; } }
.incl li { padding: 14px 0 14px 26px; position: relative; border-bottom: 1px solid var(--line); break-inside: avoid; font-size: 15px; color: var(--ink-soft); }
.incl li::before { content: '✓'; position: absolute; left: 0; color: var(--accent); font-size: 13px; }

/* ---------- Wedding story cards ---------- */
.story-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(20px, 3vw, 44px); }
@media (max-width: 760px) { .story-grid { grid-template-columns: 1fr; } }
.story { display: block; }
.story .ph { margin-bottom: 20px; transition: opacity .4s; }
.story:hover .ph { opacity: .9; }
.story__meta { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-faint); }
.story__name { font-family: var(--font-display); font-size: clamp(26px, 3vw, 38px); line-height: 1.05; margin: 10px 0 10px; transition: color .3s; }
.story__name em { font-style: italic; }
.story:hover .story__name { color: var(--accent-deep); }
.story__line { color: var(--ink-soft); font-size: 14px; line-height: 1.7; max-width: 44ch; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; }
.faq__item { border-top: 1px solid var(--line-strong); }
.faq__item:last-child { border-bottom: 1px solid var(--line-strong); }
.faq__q { width: 100%; text-align: left; background: none; border: none; padding: 26px 40px 26px 0; font-family: var(--font-display); font-size: clamp(20px, 2.4vw, 27px); color: var(--ink); position: relative; line-height: 1.2; }
.faq__q::after { content: '+'; position: absolute; right: 4px; top: 50%; transform: translateY(-50%); font-family: var(--font-body); font-weight: 300; font-size: 24px; color: var(--accent); transition: transform .3s; }
.faq__item.open .faq__q::after { transform: translateY(-50%) rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq__a p { padding: 0 0 26px; color: var(--ink-soft); font-size: 15px; line-height: 1.8; max-width: 64ch; }

/* ---------- Stat row ---------- */
.stats { display: flex; flex-wrap: wrap; gap: clamp(32px, 6vw, 80px); }
.stat__n { font-family: var(--font-display); font-size: clamp(40px, 5vw, 68px); line-height: 1; }
.stat__n em { font-style: italic; color: var(--accent); }
.stat__l { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-soft); margin-top: 10px; }

/* Choice chips */
.choice-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 10px; }
.choice {
  text-align: left;
  padding: 16px 18px;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 15px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: border-color .3s, background .3s;
}
.choice small { font-size: 11px; color: var(--ink-faint); letter-spacing: 0.02em; }
.choice:hover { border-color: var(--ink); }
.choice.selected { border-color: var(--accent); background: var(--bg-alt); }
.choice.selected small { color: var(--ink-soft); }
