/* =========================================================
   PORTER PRODUCTIONS — site.css
   Direction: "Reel" — warm cinema, every section a scene.
   ========================================================= */

/* ---- Tokens ---- */
:root {
  --bg: #f5ede2;
  --bg-warm: #ede2cf;
  --bg-deep: #0d0a08;
  --ink: #1c1814;
  --ink-soft: #45382c;
  --ink-mute: #7a6856;
  --paper: #f4ede1;
  --accent: #b9582d;
  --accent-warm: #c89868;
  --rule: rgba(28, 24, 20, 0.12);
  --rule-dark: rgba(244, 237, 225, 0.08);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 16px; line-height: 1.6;
  color: var(--ink); background: var(--bg);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* ---- Site nav (shared on every page) ---- */
.site-nav {
  display: grid; grid-template-columns: auto 1fr auto;
  gap: 40px; align-items: center;
  padding: 22px 48px;
  background: var(--bg);
  border-bottom: 1px solid var(--rule);
  position: sticky; top: 0; z-index: 50;
}
.site-nav .mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px; font-style: italic; font-weight: 500;
  color: var(--ink); letter-spacing: -0.01em;
  display: flex; align-items: baseline; gap: 6px;
}
.site-nav .mark .dot { font-style: normal; color: var(--accent); }
.site-nav .mark small {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px; font-style: normal; font-weight: 500;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--ink-mute); margin-left: 6px;
}
.site-nav .links { display: flex; justify-content: center; gap: 36px; flex-wrap: wrap; }
.site-nav .links a {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-soft); transition: color 0.2s;
  position: relative; padding: 6px 0;
}
.site-nav .links a:hover,
.site-nav .links a.is-current { color: var(--accent); }
.site-nav .links a.is-current::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--accent);
}
.site-nav .cta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--bg); background: var(--ink);
  padding: 10px 20px; transition: background 0.2s;
}
.site-nav .cta:hover { background: var(--accent); }

.nav-toggle {
  display: none;
  align-items: center; justify-content: center;
  background: transparent; border: none; cursor: pointer;
  width: 40px; height: 40px; padding: 0;
  position: relative;
}
.nav-toggle span {
  position: absolute; left: 9px; right: 9px;
  height: 2px; background: var(--ink);
  transition: transform 0.25s ease, opacity 0.2s ease, top 0.25s ease;
}
.nav-toggle span:nth-child(1) { top: 13px; }
.nav-toggle span:nth-child(2) { top: 19px; }
.nav-toggle span:nth-child(3) { top: 25px; }
.site-nav.is-open .nav-toggle span:nth-child(1) { top: 19px; transform: rotate(45deg); }
.site-nav.is-open .nav-toggle span:nth-child(2) { opacity: 0; }
.site-nav.is-open .nav-toggle span:nth-child(3) { top: 19px; transform: rotate(-45deg); }

/* ---- Scene marker (used on every page section) ---- */
.scene-mark {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--accent); font-weight: 600;
  margin-bottom: 22px;
}
.scene-mark.on-dark { color: var(--accent-warm); }

/* ---- Generic display headings ---- */
.h-display {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400; font-style: italic;
  font-size: clamp(40px, 5.6vw, 72px);
  line-height: 1.02; letter-spacing: -0.02em;
  color: var(--ink);
}
.h-display span { color: var(--accent); }
.lede {
  font-family: 'EB Garamond', serif;
  font-size: 19px; line-height: 1.65;
  color: var(--ink-soft);
}

/* =========================================================
   HERO (home page)
   ========================================================= */
.hero {
  position: relative; background: var(--bg-deep); overflow: hidden;
}
.hero-video {
  position: relative;
  aspect-ratio: 21/9; width: 100%;
  background: #0d0a08;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 32px 48px 44px;
  overflow: hidden;
}
.hero-video-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.hero-video-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(13,10,8,0.55) 0%, rgba(13,10,8,0.15) 30%, rgba(13,10,8,0.45) 70%, rgba(13,10,8,0.85) 100%);
  pointer-events: none;
}
.hero-video .hero-bottom { position: relative; z-index: 2; }
.hero-bottom {
  margin-top: auto;
  display: grid; grid-template-columns: 1fr auto;
  gap: 30px; align-items: end; color: var(--paper);
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-weight: 400;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.98; letter-spacing: -0.02em;
  color: var(--paper); text-shadow: 0 4px 24px rgba(0,0,0,0.35);
  max-width: 820px;
}
.hero-title span { color: var(--accent-warm); }
.hero-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.22em;
  color: rgba(244,237,225,0.78); text-transform: uppercase;
  text-align: right; line-height: 1.9;
}
.hero-meta strong { color: var(--accent-warm); font-weight: 600; }

/* =========================================================
   ABOUT PREVIEW (home) + ABOUT PAGE
   ========================================================= */
.about {
  padding: 110px 48px;
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 90px; align-items: center;
  max-width: 1400px; margin: 0 auto;
}
.about-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400; font-style: italic;
  font-size: clamp(36px, 4.8vw, 60px);
  line-height: 1.08; color: var(--ink);
  letter-spacing: -0.015em; margin-bottom: 28px;
}
.about-text h2 span { color: var(--accent); }
.about-text p {
  font-family: 'EB Garamond', serif;
  font-size: 19px; line-height: 1.65;
  color: var(--ink-soft); margin-bottom: 18px;
}
.about-text p:first-of-type::first-letter {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; color: var(--accent);
  font-size: 56px; float: left; line-height: 0.9;
  margin: 6px 12px 0 0;
}
.about-photo {
  position: relative; aspect-ratio: 4/5;
  background: var(--bg-warm);
  border: 1px solid var(--rule);
  overflow: hidden;
}
.about-photo > img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

/* =========================================================
   TRAVEL strip
   ========================================================= */
.travel { padding: 100px 48px; background: var(--bg); }
.travel-inner { max-width: 1180px; margin: 0 auto; }
.travel-head { text-align: center; margin-bottom: 50px; }
.travel-head h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400; font-style: italic;
  font-size: clamp(34px, 4.2vw, 52px);
  color: var(--ink); letter-spacing: -0.015em;
}
.travel-head h2 span { color: var(--accent); }
.travel-note {
  margin-top: 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--accent); font-weight: 600;
}
.travel-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.travel-stop {
  padding: 40px 22px;
  border-right: 1px solid var(--rule);
  display: flex; flex-direction: column; gap: 10px;
  align-items: center; justify-content: center; text-align: center;
}
.travel-stop:last-child { border-right: none; }
.travel-stop .ts-loc {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 28px; line-height: 1.05;
  color: var(--ink); letter-spacing: -0.01em;
}

/* =========================================================
   PORTFOLIO — section headers (grid + films build below)
   ========================================================= */
.portfolio { padding: 110px 0 0; background: var(--bg-deep); color: var(--paper); }
.portfolio-head {
  padding: 0 48px 50px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: end; max-width: 1500px; margin: 0 auto;
}
.portfolio-head h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400; font-style: italic;
  font-size: clamp(40px, 5.4vw, 76px);
  line-height: 1.0; color: var(--paper); letter-spacing: -0.02em;
}
.portfolio-head p {
  font-family: 'EB Garamond', serif;
  font-size: 17px; line-height: 1.6; color: rgba(244,237,225,0.7);
}
/* =========================================================
   TESTIMONIAL
   ========================================================= */
.testi { padding: 130px 48px; background: var(--bg); }
.testi-inner { max-width: 920px; margin: 0 auto; text-align: center; }
.testi blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-weight: 400;
  font-size: clamp(26px, 3.4vw, 40px);
  line-height: 1.3; color: var(--ink);
  letter-spacing: -0.01em;
}
.testi blockquote span { color: var(--accent); }
.testi cite {
  display: block; margin-top: 28px;
  font-family: 'JetBrains Mono', monospace;
  font-style: normal; font-size: 11px; letter-spacing: 0.32em;
  text-transform: uppercase; color: var(--ink-mute);
}

/* =========================================================
   FAQ
   ========================================================= */
.faq {
  padding: 110px 48px;
  background: var(--bg-warm);
  border-top: 1px solid var(--rule);
}
.faq-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 280px 1fr; gap: 70px;
}
.faq-head h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400; font-style: italic;
  font-size: clamp(34px, 4.4vw, 52px);
  line-height: 1.05; color: var(--ink); letter-spacing: -0.015em;
}
.faq-list { display: flex; flex-direction: column; }
.faq-item {
  border-top: 1px solid var(--rule);
  padding: 26px 0;
  display: grid; grid-template-columns: 32px 1fr; gap: 18px;
}
.faq-item:last-child { border-bottom: 1px solid var(--rule); }
.faq-item .num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.16em; color: var(--accent);
  font-weight: 600; padding-top: 4px;
}
.faq-item h4 {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-weight: 500;
  font-size: 22px; color: var(--ink);
  margin-bottom: 8px;
}
.faq-item p {
  font-family: 'EB Garamond', serif;
  font-size: 16.5px; line-height: 1.65; color: var(--ink-soft);
}

/* =========================================================
   CTA BLOCK
   ========================================================= */
.cta-block {
  padding: 130px 48px;
  background: var(--bg-deep); color: var(--paper);
  text-align: center; position: relative; overflow: hidden;
}
.cta-block::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(185,88,45,0.15) 0%, transparent 60%);
}
.cta-inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }
.cta-block h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400; font-style: italic;
  font-size: clamp(48px, 6vw, 80px);
  line-height: 1.0; letter-spacing: -0.02em;
  color: var(--paper); margin-bottom: 24px;
}
.cta-block h2 span { color: var(--accent-warm); }
.cta-block p {
  font-family: 'EB Garamond', serif;
  font-size: 19px; line-height: 1.6;
  color: rgba(244,237,225,0.78); margin-bottom: 40px;
}
.cta-btn {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--bg-deep); background: var(--accent-warm);
  padding: 18px 38px; transition: background 0.2s, transform 0.2s;
  font-weight: 600;
}
.cta-btn:hover { background: var(--paper); transform: translateY(-2px); }

/* =========================================================
   FOOTER
   ========================================================= */
.site-foot {
  padding: 40px 48px;
  background: var(--bg-deep); color: rgba(244,237,225,0.55);
  border-top: 1px solid var(--rule-dark);
  display: flex; justify-content: space-between;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase;
  flex-wrap: wrap; gap: 16px;
}
.site-foot a { color: var(--accent-warm); }

/* =========================================================
   PAGE HEADER (inner pages)
   ========================================================= */
.page-head {
  padding: 90px 48px 70px;
  border-bottom: 1px solid var(--rule);
  max-width: 1400px; margin: 0 auto;
}
.page-head h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400; font-style: italic;
  font-size: clamp(54px, 8vw, 110px);
  line-height: 0.98; letter-spacing: -0.025em;
  color: var(--ink); margin-bottom: 22px;
}
.page-head h1 span { color: var(--accent); }
.page-head .lede { max-width: 720px; }

/* =========================================================
   INVESTMENT — pricing cards (3-tier, middle highlighted)
   ========================================================= */
.invest {
  padding: 90px 48px 120px;
  max-width: 1400px; margin: 0 auto;
}
.invest-section { margin-bottom: 130px; }
.invest-section:last-child { margin-bottom: 0; }
.invest-note {
  margin-top: 26px; text-align: center;
  font-family: 'EB Garamond', serif;
  font-size: 14.5px; font-style: italic;
  color: var(--ink-mute);
}

/* Centered eyebrow + heading + sub, matching reference screenshot */
.invest-section-head {
  text-align: center;
  max-width: 720px; margin: 0 auto 50px;
}
.invest-section-head .eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--accent); font-weight: 600; margin-bottom: 22px;
}
.invest-section-head h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(40px, 5.4vw, 64px);
  line-height: 1.05; letter-spacing: -0.02em;
  color: var(--ink); margin-bottom: 20px;
}
.invest-section-head h2 em { font-style: italic; color: var(--accent); }
.invest-section-head .sub {
  font-family: 'EB Garamond', serif;
  font-size: 18px; line-height: 1.55; color: var(--ink-soft);
}

/* 3-card row — slightly elevated middle, even widths */
.tier-row {
  display: grid; grid-template-columns: 1fr 1.06fr 1fr;
  gap: 22px; align-items: stretch;
}
.tier {
  background: var(--bg-warm);
  padding: 40px 32px 30px;
  display: flex; flex-direction: column; gap: 16px;
  position: relative; transition: transform 0.25s;
}
.tier:hover { transform: translateY(-3px); }

/* "No 01" style number */
.tier .tier-no {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; font-style: italic;
  color: var(--ink-mute); letter-spacing: 0.02em;
  margin-bottom: -2px;
}
.tier .tier-no sup { font-size: 0.7em; vertical-align: super; }

.tier h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 36px; line-height: 1.05;
  color: var(--ink); letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.tier h3 em { font-style: italic; color: var(--accent); }

.tier ul {
  list-style: none;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px; letter-spacing: 0.05em; line-height: 2.0;
  color: var(--ink-soft); text-transform: uppercase;
  margin-top: 6px;
}
.tier ul li::before {
  content: '✦  '; color: var(--accent);
  font-size: 11px;
}

.tier .tier-price {
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid var(--rule);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 22px;
  color: var(--ink);
  display: flex; align-items: baseline; gap: 10px;
}
.tier .tier-price strong {
  font-family: 'JetBrains Mono', monospace;
  font-style: normal; font-weight: 600;
  font-size: 10px; letter-spacing: 0.32em;
  color: var(--ink-mute); text-transform: uppercase;
}

/* Dark elevated middle card */
.tier.is-feature {
  background: var(--bg-deep);
  color: var(--paper);
  transform: translateY(-12px);
  box-shadow: 0 30px 60px -30px rgba(13,10,8,0.45);
}
.tier.is-feature:hover { transform: translateY(-16px); }
.tier.is-feature .tier-no { color: rgba(244,237,225,0.55); }
.tier.is-feature h3 { color: var(--paper); }
.tier.is-feature h3 em { color: var(--accent-warm); }
.tier.is-feature ul { color: rgba(244,237,225,0.62); }
.tier.is-feature ul li::before { color: var(--accent-warm); }
.tier.is-feature .tier-price {
  color: var(--paper);
  border-top-color: rgba(244,237,225,0.18);
}
.tier.is-feature .tier-price strong { color: rgba(244,237,225,0.55); }

/* Other-services list (pricing next to a photo, like inspiration site) */
.svc-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  margin-bottom: 70px;
  padding-bottom: 70px; border-bottom: 1px solid var(--rule);
}
.svc-row:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.svc-row.flip { direction: rtl; }
.svc-row.flip > * { direction: ltr; }
.svc-row .svc-photo {
  aspect-ratio: 4/5;
  background: var(--bg-warm);
  border: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
}
.svc-row .svc-photo > img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.svc-row .svc-photo::after {
  content: attr(data-tag);
  position: absolute; bottom: 14px; left: 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 0.28em;
  color: var(--paper); background: rgba(13,10,8,0.65);
  padding: 6px 12px; text-transform: uppercase;
}
.svc-row .svc-copy .kind {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--accent); font-weight: 600; margin-bottom: 16px;
}
.svc-row .svc-copy h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400; font-style: italic;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.04; color: var(--ink);
  letter-spacing: -0.015em; margin-bottom: 18px;
}
.svc-row .svc-copy h3 em { color: var(--accent); }
.svc-row .svc-copy .price-line {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; font-style: italic; color: var(--ink);
  padding: 16px 0; margin: 14px 0 18px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.svc-row .svc-copy .price-line strong {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.28em;
  color: var(--ink-mute); font-style: normal;
  display: block; margin-bottom: 4px;
}
.svc-row .svc-copy p {
  font-family: 'EB Garamond', serif;
  font-size: 17px; line-height: 1.65; color: var(--ink-soft);
}

/* =========================================================
   INQUIRY FORM
   ========================================================= */
.form-wrap {
  max-width: 760px; margin: 0 auto;
  padding: 80px 48px 120px;
}
.inq-form { display: flex; flex-direction: column; gap: 28px; }
.form-section-head {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--accent); font-weight: 600;
  padding: 14px 0 6px;
  border-top: 1px solid var(--rule);
  margin-top: 18px;
}
.form-section-head:first-of-type { margin-top: 0; border-top: none; padding-top: 0; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-soft); font-weight: 600;
}
.field label .hint {
  font-family: 'EB Garamond', serif;
  font-size: 14px; letter-spacing: 0;
  text-transform: none; font-weight: 400;
  color: var(--ink-mute); margin-left: 6px; font-style: italic;
}
.field input,
.field select,
.field textarea {
  font-family: 'EB Garamond', serif;
  font-size: 18px; color: var(--ink);
  background: var(--bg); border: none;
  border-bottom: 1px solid var(--ink);
  padding: 10px 0 12px;
  outline: none; transition: border-color 0.2s;
}
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--accent); }
.field textarea { resize: vertical; min-height: 130px; }
.field-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
}
.choice-set {
  display: flex; flex-wrap: wrap; gap: 10px;
  padding-top: 4px;
}
.choice-set label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-soft);
  border: 1px solid var(--rule);
  padding: 10px 16px; cursor: pointer;
  transition: all 0.2s;
}
.choice-set input { display: none; }
.choice-set input:checked + label,
.choice-set label:hover {
  background: var(--ink); color: var(--paper); border-color: var(--ink);
}
.choice-set input:checked + label { background: var(--accent); border-color: var(--accent); }
.form-submit {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; letter-spacing: 0.32em; text-transform: uppercase;
  background: var(--ink); color: var(--paper);
  padding: 18px 30px; align-self: flex-start;
  transition: background 0.2s, transform 0.2s; font-weight: 600;
}
.form-submit:hover { background: var(--accent); transform: translateY(-2px); }

/* =========================================================
   ABOUT PAGE — extra blocks
   ========================================================= */
.about-extras { padding: 80px 48px 110px; max-width: 1180px; margin: 0 auto; }
.about-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
.about-grid div {
  aspect-ratio: 4/5;
  background: var(--bg-warm);
  overflow: hidden;
}
.about-grid div > img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 900px) {
  .site-nav { grid-template-columns: 1fr auto auto; padding: 14px 22px; gap: 12px; }
  .nav-toggle { display: flex; }
  .site-nav .links {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--bg); border-bottom: 1px solid var(--rule);
    flex-direction: column; align-items: stretch;
    padding: 18px 22px 22px; gap: 18px;
  }
  .site-nav.is-open .links { display: flex; }
  .site-nav .links a { font-size: 13px; padding: 8px 0; }
  .hero-video { padding: 22px 22px 28px; aspect-ratio: 4/5; }
  .hero-bottom { grid-template-columns: 1fr; gap: 18px; }
  .hero-meta { text-align: left; }
  .about { grid-template-columns: 1fr; gap: 40px; padding: 70px 22px; }
  .travel { padding: 70px 22px; }
  .travel-strip { grid-template-columns: 1fr 1fr; }
  .travel-stop { border-bottom: 1px solid var(--rule); }
  .portfolio-head { padding: 0 22px 30px; grid-template-columns: 1fr; gap: 22px; }
  .testi { padding: 80px 22px; }
  .faq { padding: 70px 22px; }
  .faq-inner { grid-template-columns: 1fr; gap: 36px; }
  .cta-block { padding: 80px 22px; }
  .site-foot { padding: 30px 22px; }
  .page-head { padding: 60px 22px 50px; }
  .invest { padding: 60px 22px 80px; }
  .invest-section-head { grid-template-columns: 1fr; gap: 20px; }
  .tier-row { grid-template-columns: 1fr; gap: 18px; }
  .tier.is-feature { transform: none; }
  .svc-row { grid-template-columns: 1fr; gap: 30px; padding-bottom: 50px; margin-bottom: 50px; }
  .svc-row.flip { direction: ltr; }
  .form-wrap { padding: 50px 22px 90px; }
  .field-row { grid-template-columns: 1fr; gap: 24px; }
  .about-extras { padding: 50px 22px 80px; }
  .about-grid { grid-template-columns: 1fr 1fr; }
}

/* =========================================================
   FULL-BLEED SCENES — homepage alternating video/photo blocks
   ========================================================= */
.scene-fullbleed {
  position: relative;
  width: 100vw;
  min-height: 100vh;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  background: var(--bg-deep);
  color: var(--paper);
  display: flex;
  align-items: stretch;
}

/* Video-bg variant */
.scene-video > video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Dim gradient that sits between media and overlay copy */
.scene-overlay-gradient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    to top,
    rgba(13, 10, 8, 0.78) 0%,
    rgba(13, 10, 8, 0.35) 40%,
    rgba(13, 10, 8, 0.0) 70%
  );
}
.scene-overlay-gradient--full {
  background: linear-gradient(
    to bottom,
    rgba(13, 10, 8, 0.45) 0%,
    rgba(13, 10, 8, 0.65) 100%
  );
}

/* Overlay text container — bottom-left by default */
.scene-overlay {
  position: relative;
  z-index: 2;
  align-self: flex-end;
  max-width: 720px;
  padding: 0 48px 80px;
  margin-top: auto;
}
.scene-overlay h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(40px, 5.4vw, 76px);
  line-height: 1.05;
  color: var(--paper);
  letter-spacing: -0.02em;
  margin-top: 14px;
}
.scene-overlay h2 span { color: var(--accent-warm); }
.scene-overlay p {
  font-family: 'EB Garamond', serif;
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.5;
  color: rgba(244, 237, 225, 0.82);
  margin-top: 18px;
  max-width: 560px;
}

/* Centered overlay variant (used by the photo + testimonial block) */
.scene-overlay--center {
  align-self: center;
  margin: auto;
  text-align: center;
  padding: 0 48px;
  max-width: 920px;
}
.scene-overlay--center blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.3;
  color: var(--paper);
  letter-spacing: -0.01em;
  margin-top: 24px;
}
.scene-overlay--center blockquote span { color: var(--accent-warm); }
.scene-overlay--center cite {
  display: block;
  margin-top: 26px;
  font-family: 'JetBrains Mono', monospace;
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(244, 237, 225, 0.7);
}

/* Mobile — soften full-bleed heights */
@media (max-width: 900px) {
  .scene-fullbleed { min-height: 80vh; }
  .scene-overlay { padding: 0 28px 50px; }
  .scene-overlay--center { padding: 0 28px; }
}


/* =========================================================
   Investment page — video-in-photo-tile variant
   ========================================================= */
.svc-photo--video { position: relative; overflow: hidden; }
.svc-photo--video > video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* =========================================================
   PORTFOLIO v2 — 9-square photo grid + grouped video embeds
   ========================================================= */
.pf-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1500px; margin: 0 auto; padding: 0 48px;
}
.pf-tile {
  position: relative; display: block; overflow: hidden;
  aspect-ratio: 1/1; background: #2a2018;
}
.pf-tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.pf-tile:hover img { transform: scale(1.04); }
.pf-name {
  position: absolute; bottom: 12px; left: 12px; z-index: 2;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--paper); background: rgba(13,10,8,0.72);
  padding: 5px 10px;
}

.pf-group-title {
  max-width: 1500px; margin: 70px auto 22px; padding: 0 48px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-weight: 400;
  font-size: clamp(26px, 3vw, 40px);
  color: var(--paper); letter-spacing: -0.01em;
}
.pf-videos {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 28px 24px;
  max-width: 1500px; margin: 0 auto; padding: 0 48px;
}
/* Film = clickable YouTube poster; click swaps in the inline embed */
.pf-video { display: block; }
.pf-frame { width: 100%; height: 100%; border: 0; display: block; }
.pf-thumb {
  position: relative; display: block; overflow: hidden;
  aspect-ratio: 16/9; background: #15100a;
}
.pf-thumb img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.6s ease;
}
.pf-video:hover .pf-thumb img { transform: scale(1.04); }
.pf-play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 66px; height: 66px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; padding-left: 4px;
  color: var(--paper); background: rgba(13,10,8,0.5);
  border: 1.5px solid rgba(244,237,225,0.75);
  transition: background 0.2s, transform 0.2s;
}
.pf-video:hover .pf-play {
  background: var(--accent); border-color: var(--accent);
  transform: translate(-50%, -50%) scale(1.08);
}
/* Name sits as a caption below the poster */
.pf-video .pf-name {
  position: static; display: inline-block;
  margin-top: 12px; padding: 0; background: none;
  color: rgba(244,237,225,0.8);
  letter-spacing: 0.22em;
}
.pf-video--pending {
  aspect-ratio: 16/9;
  display: flex; align-items: center; justify-content: center;
  border: 2px dashed rgba(200,152,104,0.35); background: #15100a;
}
.pf-video--pending .pf-name {
  position: static; margin: 0; padding: 0; background: none;
  color: rgba(244,237,225,0.5);
}

@media (max-width: 900px) {
  .pf-grid { padding: 0 22px; }
  .pf-group-title { padding: 0 22px; }
  .pf-videos { grid-template-columns: 1fr; padding: 0 22px; }
}

/* ===== Gallery subpage — full 3-column masonry (portfolio/<slug>) ===== */
.gallery-back {
  display: inline-block; margin-bottom: 26px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent-warm); text-decoration: none;
  transition: color 0.2s;
}
.gallery-back:hover { color: var(--accent); }
.pf-gallery-grid {
  column-count: 3;
  column-gap: 14px;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 48px;
}
.pf-gallery-item { margin: 0 0 14px; break-inside: avoid; }
.pf-gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
  background: #2a2018;
}
.pf-gallery-foot { text-align: center; margin-top: 48px; }
@media (max-width: 900px) {
  .pf-gallery-grid { column-count: 2; column-gap: 10px; padding: 0 22px; }
  .pf-gallery-item { margin-bottom: 10px; }
}
@media (max-width: 560px) {
  .pf-gallery-grid { column-count: 1; }
}
