/* ============================================================
   Noah Densmore Films — shared design system
   Used by: index.html, films.html, invest.html
   ============================================================ */

:root {
  --bg: #0B0B0C;
  --bg-elev: #131314;
  --ink: #F4EFE8;
  --ink-dim: #A39B8E;
  --line: #2A2724;
  --accent: #C75A3A;
  --accent-soft: #E2A98A;
  --serif: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max: 1320px;
  --gutter: clamp(20px, 4vw, 48px);
}

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

/* ---------- typography ---------- */
.display {
  font-family: var(--serif);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 0.96;
}
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-dim);
  font-weight: 500;
}
.lead {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.5;
  color: var(--ink-dim);
}

/* ---------- nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  padding: 22px var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
  z-index: 100;
  transition: background 400ms ease, border-color 400ms ease, padding 400ms ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled,
.nav.solid {
  background: rgba(11, 11, 12, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
  padding: 14px var(--gutter);
}
.brand {
  font-family: var(--serif);
  font-size: 18px;
  letter-spacing: 0.02em;
  font-weight: 400;
}
.brand .dot { color: var(--accent); }
.nav-links {
  display: flex; gap: 36px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.nav-links a { transition: color 200ms ease; position: relative; }
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--ink); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -8px;
  height: 1px;
  background: var(--accent);
}
.nav-cta {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  transition: border-color 250ms ease, color 250ms ease, background 250ms ease;
}
.nav-cta:hover { border-color: var(--accent); color: var(--accent); }
@media (max-width: 820px) {
  .nav-links { display: none; }
}

/* ---------- hero (homepage) ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background: #000;
}
.hero__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    rgba(11,11,12,0.55) 0%,
    rgba(11,11,12,0.25) 35%,
    rgba(11,11,12,0.95) 100%
  );
  z-index: 1;
}
.hero__grain {
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: 0.06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.6'/></svg>");
  z-index: 2;
}
.hero__inner {
  position: relative;
  text-align: center;
  padding: 0 var(--gutter);
  max-width: 1100px;
  z-index: 3;
}
.hero__eyebrow { margin-bottom: 28px; color: var(--ink); opacity: 0.7; }
.hero__title {
  font-size: clamp(54px, 9.5vw, 148px);
  margin: 0 0 24px;
  font-weight: 300;
}
.hero__title em { font-style: italic; color: var(--accent-soft); font-weight: 300; }
.hero__sub {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin: 0 0 56px;
}
.play-btn {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 16px 28px 16px 18px;
  background: rgba(244, 239, 232, 0.06);
  border: 1px solid rgba(244, 239, 232, 0.18);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  cursor: pointer;
  color: var(--ink);
  transition: background 250ms ease, border-color 250ms ease, transform 250ms ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-family: var(--sans);
}
.play-btn:hover {
  background: rgba(244, 239, 232, 0.12);
  border-color: var(--accent);
  transform: translateY(-1px);
}
.play-btn .triangle {
  display: inline-block;
  width: 22px; height: 22px;
  border-radius: 999px;
  background: var(--accent);
  position: relative;
}
.play-btn .triangle::after {
  content: "";
  position: absolute;
  top: 50%; left: 54%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 5px 0 5px 7px;
  border-color: transparent transparent transparent var(--bg);
}
.hero__scroll {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-dim);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  z-index: 3;
}
.hero__scroll::after {
  content: "";
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, var(--ink-dim), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); transform-origin: top; opacity: 0.6; }
  50% { transform: scaleY(1.4); opacity: 1; }
}

/* ---------- subpage header (films, invest) ---------- */
.subhead {
  padding: 200px var(--gutter) 100px;
  text-align: center;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(ellipse 80% 60% at 50% 20%, rgba(199, 90, 58, 0.10), transparent 70%),
    var(--bg);
}
.subhead__eyebrow { margin-bottom: 24px; }
.subhead__title {
  font-size: clamp(56px, 10vw, 140px);
  margin: 0 0 28px;
  font-weight: 300;
  line-height: 0.95;
}
.subhead__title em { font-style: italic; color: var(--accent-soft); }
.subhead__lead {
  max-width: 640px;
  margin: 0 auto;
  color: var(--ink-dim);
  font-size: 17px;
}
@media (max-width: 820px) {
  .subhead { padding: 140px var(--gutter) 64px; }
}

/* ---------- generic section ---------- */
section { position: relative; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.pad-y {
  padding-top: clamp(96px, 14vw, 180px);
  padding-bottom: clamp(96px, 14vw, 180px);
}

/* ---------- intro ---------- */
.intro { text-align: center; }
.intro__eyebrow { margin-bottom: 28px; }
.intro__statement {
  font-size: clamp(28px, 3.4vw, 46px);
  max-width: 900px; margin: 0 auto;
  font-weight: 300;
}
.intro__statement em { font-style: italic; color: var(--accent-soft); }

/* ---------- films grid (homepage) ---------- */
.films-head {
  display: flex; align-items: end; justify-content: space-between;
  margin-bottom: 64px;
  gap: 32px; flex-wrap: wrap;
}
.films-head h2 { font-size: clamp(40px, 5.5vw, 72px); margin: 12px 0 0; font-weight: 300; }
.films-head a {
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-dim);
  border-bottom: 1px solid var(--line);
  padding-bottom: 6px;
  transition: color 200ms, border-color 200ms;
}
.films-head a:hover { color: var(--accent); border-color: var(--accent); }

.films { display: grid; grid-template-columns: repeat(12, 1fr); gap: 32px 24px; }
.film { position: relative; overflow: hidden; cursor: pointer; grid-column: span 6; }
.film__img { aspect-ratio: 16 / 11; overflow: hidden; background: var(--bg-elev); }
.film__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1200ms cubic-bezier(.2,.7,.2,1), filter 600ms ease;
  filter: brightness(0.9) saturate(0.92);
}
.film:hover .film__img img { transform: scale(1.05); filter: brightness(1) saturate(1); }
.film__meta { margin-top: 18px; display: flex; justify-content: space-between; align-items: baseline; gap: 16px; }
.film__name { font-family: var(--serif); font-size: 22px; font-weight: 400; letter-spacing: -0.01em; }
.film__loc { font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--ink-dim); }
@media (max-width: 820px) {
  .films { gap: 48px 16px; }
  .film { grid-column: span 12 !important; }
  .film .film__img { aspect-ratio: 4 / 5 !important; }
}

/* ---------- philosophy split ---------- */
.philosophy { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.philosophy .grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 96px); align-items: center; }
.philosophy__img { aspect-ratio: 4 / 5; overflow: hidden; background: var(--bg-elev); }
.philosophy__img img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.85) saturate(0.9); }
.philosophy__text h2 { font-size: clamp(36px, 4.6vw, 60px); line-height: 1.05; font-weight: 300; margin: 0 0 28px; }
.philosophy__text h2 em { font-style: italic; color: var(--accent-soft); }
.philosophy__text p { color: var(--ink-dim); font-size: 17px; margin: 0 0 18px; max-width: 50ch; }
@media (max-width: 820px) { .philosophy .grid { grid-template-columns: 1fr; } }

/* ---------- testimonial ---------- */
.testimonial { text-align: center; }
.testimonial__quote {
  font-family: var(--serif);
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.25;
  font-weight: 300;
  font-style: italic;
  max-width: 1000px;
  margin: 0 auto 40px;
  letter-spacing: -0.01em;
}
.testimonial__quote::before, .testimonial__quote::after {
  content: "\201C"; color: var(--accent); font-style: normal; margin: 0 8px;
}
.testimonial__quote::after { content: "\201D"; }
.testimonial__attr { font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--ink-dim); }
.testimonial__attr span { color: var(--accent); margin: 0 12px; }

/* ---------- about teaser ---------- */
.about { border-top: 1px solid var(--line); }
.about .grid { display: grid; grid-template-columns: 5fr 7fr; gap: clamp(40px, 6vw, 96px); align-items: center; }
.about__img { aspect-ratio: 4 / 5; overflow: hidden; background: var(--bg-elev); }
.about__img img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.9) saturate(0.92); }
.about__text h2 { font-size: clamp(40px, 5vw, 64px); line-height: 1.05; font-weight: 300; margin: 16px 0 28px; }
.about__text p { color: var(--ink-dim); font-size: 17px; max-width: 56ch; margin: 0 0 24px; }
.about__link {
  display: inline-block;
  font-size: 12px; letter-spacing: 0.28em; text-transform: uppercase;
  border-bottom: 1px solid var(--line);
  padding-bottom: 6px;
  transition: color 200ms, border-color 200ms;
}
.about__link:hover { color: var(--accent); border-color: var(--accent); }
@media (max-width: 820px) { .about .grid { grid-template-columns: 1fr; } }

/* ---------- process ---------- */
.process { text-align: center; }
.process h2 { font-size: clamp(36px, 4.6vw, 56px); font-weight: 300; margin: 12px 0 64px; }
.process__steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; border-top: 1px solid var(--line); padding-top: 56px; }
.step__num { font-family: var(--serif); font-style: italic; color: var(--accent); font-size: 22px; margin-bottom: 14px; }
.step h3 { font-family: var(--serif); font-weight: 400; font-size: 22px; margin: 0 0 10px; }
.step p { color: var(--ink-dim); font-size: 14px; margin: 0; max-width: 22ch; margin-left: auto; margin-right: auto; }
@media (max-width: 820px) { .process__steps { grid-template-columns: 1fr 1fr; gap: 40px 24px; } }

/* ---------- final CTA ---------- */
.cta-final {
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(199, 90, 58, 0.12), transparent 60%),
    var(--bg);
}
.cta-final h2 { font-size: clamp(56px, 9vw, 140px); font-weight: 300; line-height: 0.96; margin: 12px 0 40px; letter-spacing: -0.02em; }
.cta-final h2 em { font-style: italic; color: var(--accent-soft); }
.cta-final p { color: var(--ink-dim); max-width: 52ch; margin: 0 auto 48px; font-size: 17px; }
.btn-primary {
  display: inline-block;
  padding: 18px 36px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  transition: background 250ms, color 250ms, border-color 250ms;
  cursor: pointer;
  font-family: var(--sans);
  background: transparent;
  color: var(--ink);
}
.btn-primary:hover { background: var(--accent); border-color: var(--accent); color: var(--bg); }
.btn-accent {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  transition: opacity 250ms, transform 250ms;
  background: var(--accent);
  color: var(--bg);
  font-weight: 500;
  cursor: pointer;
  border: 0;
  font-family: var(--sans);
}
.btn-accent:hover { opacity: 0.92; transform: translateY(-1px); }

/* ---------- footer ---------- */
footer {
  border-top: 1px solid var(--line);
  padding: 48px var(--gutter) 36px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--ink-dim);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
footer a:hover { color: var(--accent); }
footer .footer-links { display: flex; gap: 28px; }

/* ---------- reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1200ms cubic-bezier(.2,.7,.2,1), transform 1200ms cubic-bezier(.2,.7,.2,1);
}
.reveal.in { opacity: 1; transform: none; }

/* ---------- reel modal ---------- */
.reel-modal {
  position: fixed; inset: 0;
  background: rgba(11, 11, 12, 0.96);
  display: none;
  align-items: center; justify-content: center;
  z-index: 200;
  padding: 24px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.reel-modal.open { display: flex; animation: fadeIn 400ms ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.reel-modal__inner { width: min(1200px, 100%); aspect-ratio: 16 / 9; position: relative; background: #000; }
.reel-modal__close {
  position: absolute;
  top: -44px; right: -4px;
  background: transparent;
  border: none;
  color: var(--ink);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 8px;
  font-family: var(--sans);
}
.reel-modal__close:hover { color: var(--accent); }
.reel-modal__frame { width: 100%; height: 100%; }
.reel-modal video,
.reel-modal iframe { width: 100%; height: 100%; border: 0; background: #000; display: block; }

/* ============================================================
   INLINE REEL (homepage, before featured films)
   ============================================================ */
.reel-inline {
  text-align: center;
}
.reel-inline__head { margin-bottom: 56px; }
.reel-inline__head h2 {
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 300;
  margin: 12px 0 20px;
}
.reel-inline__head h2 em { font-style: italic; color: var(--accent-soft); }
.reel-inline__head p {
  color: var(--ink-dim);
  max-width: 52ch;
  margin: 0 auto;
  font-size: 17px;
}
.reel-inline__player {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 60px 120px -40px rgba(0, 0, 0, 0.7);
}
.reel-inline__player video {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
}
.reel-inline__poster {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--bg-elev);
  transition: opacity 600ms ease;
  display: flex; align-items: center; justify-content: center;
}
.reel-inline__poster::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,11,12,0.25), rgba(11,11,12,0.55));
}
.reel-inline__player.playing .reel-inline__poster { opacity: 0; pointer-events: none; }
.reel-inline__play {
  position: relative;
  width: 96px; height: 96px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--bg);
  border: 0;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: transform 250ms ease, background 250ms ease;
  box-shadow: 0 30px 60px -10px rgba(199, 90, 58, 0.5);
}
.reel-inline__play:hover { transform: scale(1.06); }
.reel-inline__play::after {
  content: "";
  border-style: solid;
  border-width: 14px 0 14px 22px;
  border-color: transparent transparent transparent var(--bg);
  margin-left: 6px;
}
.reel-inline__caption {
  margin-top: 24px;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

/* ============================================================
   FILMS PAGE — vertical filmstrip
   ============================================================ */
.filmstrip { display: flex; flex-direction: column; gap: clamp(96px, 14vw, 180px); }
.filmstrip__item {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}
.filmstrip__item:nth-child(even) { grid-template-columns: 5fr 7fr; }
.filmstrip__item:nth-child(even) .filmstrip__media { order: 2; }
.filmstrip__item:nth-child(even) .filmstrip__text { order: 1; }
.filmstrip__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-elev);
  cursor: pointer;
}
.filmstrip__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1500ms cubic-bezier(.2,.7,.2,1), filter 800ms ease;
  filter: brightness(0.85) saturate(0.92);
}
.filmstrip__media:hover img { transform: scale(1.04); filter: brightness(1) saturate(1); }
.filmstrip__media::after {
  content: "▶";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 72px; height: 72px;
  border-radius: 999px;
  background: rgba(11,11,12,0.5);
  border: 1px solid rgba(244,239,232,0.4);
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 250ms, border-color 250ms;
}
.filmstrip__media:hover::after { background: var(--accent); border-color: var(--accent); }
.filmstrip__num {
  font-family: var(--serif);
  font-style: italic;
  color: var(--accent);
  font-size: 14px;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}
.filmstrip__title {
  font-family: var(--serif);
  font-size: clamp(36px, 4.4vw, 56px);
  font-weight: 300;
  line-height: 1.05;
  margin: 0 0 18px;
}
.filmstrip__loc {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin: 0 0 28px;
}
.filmstrip__loc span { color: var(--accent); margin: 0 10px; }
.filmstrip__story {
  color: var(--ink-dim);
  font-size: 16px;
  margin: 0 0 28px;
  max-width: 44ch;
}
.filmstrip__watch {
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  padding-bottom: 6px;
  display: inline-block;
  transition: color 200ms, border-color 200ms;
}
.filmstrip__watch:hover { color: var(--accent); border-color: var(--accent); }
@media (max-width: 820px) {
  .filmstrip__item,
  .filmstrip__item:nth-child(even) { grid-template-columns: 1fr; }
  .filmstrip__item:nth-child(even) .filmstrip__media { order: 0; }
  .filmstrip__item:nth-child(even) .filmstrip__text { order: 0; }
}

/* ============================================================
   INVEST PAGE — pricing tiers, addons, faq
   ============================================================ */
.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}
.tier {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  padding: 48px 36px 40px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 300ms ease, transform 300ms ease;
}
.tier:hover { border-color: var(--accent); transform: translateY(-2px); }
.tier--featured { border-color: var(--accent); }
.tier--featured::before {
  content: "Most Booked";
  position: absolute;
  top: -1px; right: -1px;
  background: var(--accent);
  color: var(--bg);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 8px 14px;
  font-weight: 500;
}
.tier__name {
  font-family: var(--serif);
  font-style: italic;
  color: var(--accent-soft);
  font-size: 16px;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}
.tier__title {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 300;
  line-height: 1;
  margin: 0 0 20px;
}
.tier__price {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 300;
  margin: 0 0 8px;
}
.tier__price small {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-dim);
  display: block;
  margin-top: 6px;
}
.tier__desc {
  color: var(--ink-dim);
  font-size: 15px;
  margin: 24px 0 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.tier__list { list-style: none; padding: 0; margin: 0 0 36px; flex: 1; }
.tier__list li {
  font-size: 14px;
  color: var(--ink);
  padding: 10px 0 10px 28px;
  position: relative;
  border-bottom: 1px dashed rgba(42, 39, 36, 0.6);
}
.tier__list li:last-child { border-bottom: 0; }
.tier__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 17px;
  width: 14px; height: 1px;
  background: var(--accent);
}
.tier .btn-primary { width: 100%; text-align: center; }
@media (max-width: 980px) {
  .tiers { grid-template-columns: 1fr; }
}

/* ---------- inquiry form ---------- */
.inquiry-head {
  text-align: center;
  margin-bottom: 72px;
}
.inquiry-head h2 {
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 300;
  margin: 12px 0 24px;
  line-height: 0.98;
}
.inquiry-head h2 em { font-style: italic; color: var(--accent-soft); }
.inquiry-head p {
  color: var(--ink-dim);
  max-width: 56ch;
  margin: 0 auto;
  font-size: 17px;
}

.form {
  max-width: 880px;
  margin: 0 auto;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 48px;
}
.form__field {
  display: flex;
  flex-direction: column;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  transition: border-color 250ms ease;
}
.form__field:focus-within { border-bottom-color: var(--accent); }
.form__field--full { grid-column: 1 / -1; }
.form__field label {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-dim);
  font-weight: 500;
  margin-bottom: 12px;
  transition: color 250ms ease;
}
.form__field:focus-within label { color: var(--accent); }
.form__field input,
.form__field textarea,
.form__field select {
  background: transparent;
  border: 0;
  outline: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 300;
  letter-spacing: -0.01em;
  padding: 0;
  width: 100%;
  resize: none;
}
.form__field textarea {
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.5;
  min-height: 140px;
}
.form__field input::placeholder,
.form__field textarea::placeholder {
  color: var(--ink-dim);
  opacity: 0.5;
  font-style: italic;
}
.form__field input[type="date"] {
  color: var(--ink);
  font-family: var(--serif);
}
.form__field input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.85) sepia(0.4) hue-rotate(330deg) saturate(2);
  cursor: pointer;
  opacity: 0.7;
}
.form__honey {
  position: absolute;
  left: -9999px;
  opacity: 0;
}
.form__submit {
  margin-top: 56px;
  text-align: center;
}
.form__note {
  margin-top: 28px;
  text-align: center;
  font-size: 12px;
  color: var(--ink-dim);
  letter-spacing: 0.08em;
}
.form__success {
  display: none;
  text-align: center;
  padding: 64px 32px;
  border: 1px solid var(--accent);
  background: rgba(199, 90, 58, 0.06);
}
.form__success.show { display: block; }
.form__success h3 {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 300;
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}
.form__success h3 em { font-style: italic; color: var(--accent-soft); }
.form__success p {
  color: var(--ink-dim);
  max-width: 48ch;
  margin: 0 auto;
  font-size: 16px;
}
@media (max-width: 820px) {
  .form__row { grid-template-columns: 1fr; gap: 0; }
}

.addons {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.addons__head {
  display: flex; justify-content: space-between; align-items: end;
  flex-wrap: wrap; gap: 24px;
  margin-bottom: 56px;
}
.addons__head h2 { font-size: clamp(36px, 4.4vw, 56px); margin: 12px 0 0; font-weight: 300; }
.addons__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
.addon {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  align-items: baseline;
}
.addon:nth-child(-n+2) { border-top: 0; }
.addon h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  margin: 0 0 6px;
}
.addon p { color: var(--ink-dim); font-size: 14px; margin: 0; max-width: 38ch; }
.addon__price {
  font-family: var(--serif);
  font-style: italic;
  color: var(--accent-soft);
  font-size: 16px;
  white-space: nowrap;
}
@media (max-width: 820px) {
  .addons__list { grid-template-columns: 1fr; }
  .addon:nth-child(2) { border-top: 1px solid var(--line); }
}

/* FAQ */
.faq__head {
  text-align: center;
  margin-bottom: 64px;
}
.faq__head h2 { font-size: clamp(36px, 4.4vw, 56px); margin: 12px 0 0; font-weight: 300; }
.faq {
  max-width: 880px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}
details.qa {
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}
details.qa summary {
  cursor: pointer;
  list-style: none;
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 24px;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.005em;
  color: var(--ink);
  transition: color 200ms;
}
details.qa summary::-webkit-details-marker { display: none; }
details.qa summary::after {
  content: "+";
  font-family: var(--sans);
  font-weight: 300;
  font-size: 24px;
  color: var(--accent);
  transition: transform 300ms ease;
  line-height: 1;
}
details.qa[open] summary { color: var(--accent); }
details.qa[open] summary::after { transform: rotate(45deg); }
details.qa .a {
  color: var(--ink-dim);
  font-size: 16px;
  margin: 16px 0 0;
  max-width: 64ch;
  line-height: 1.7;
}
