/* ============================================================
   HOME — section layouts
   ============================================================ */

/* ---------- 1 · HERO ---------- */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 0 96px;
  position: relative;
}
.hero-inner { display: flex; flex-direction: column; align-items: center; }
.hero-logo {
  width: clamp(260px, 34vw, 440px);
  height: auto;
  margin-bottom: 40px;
  transition: opacity 760ms var(--ease), filter 820ms var(--ease);
}
/* focus-pull: the mark resolves from soft to sharp on load,
   like a rangefinder patch snapping into focus. */
.hero-logo.reveal { opacity: 0; transform: none; filter: blur(12px); }
.hero-logo.reveal.in { opacity: 1; filter: blur(0); }
body.no-motion .hero-logo { filter: none !important; }
@media (prefers-reduced-motion: reduce) { .hero-logo { filter: none !important; } }
.hero-rule { margin-bottom: 36px; }
.hero-head { max-width: none; }
.hero-head .l { display: block; white-space: nowrap; }
@media (max-width: 540px) { .hero-head .l { white-space: normal; } }
.hero-lede {
  margin: 30px auto 0;
  text-align: center;
  color: var(--ink-2);
}
.hero-actions {
  margin-top: 44px;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}
.scroll-cue {
  position: absolute;
  bottom: 34px; left: 50%;
  transform: translateX(-50%);
  width: 24px; height: 40px;
}
.scroll-cue span {
  position: absolute; left: 50%; top: 4px;
  width: 1px; height: 24px;
  background: var(--gray);
  transform-origin: top;
  animation: cue 2.4s var(--ease) infinite;
}
@keyframes cue {
  0% { transform: scaleY(0); opacity: 0; }
  35% { transform: scaleY(1); opacity: 1; }
  70%,100% { transform: translateY(20px) scaleY(0.05); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) { .scroll-cue span { animation: none; } }

/* ---------- shared section intros & two-column ---------- */
.sec-intro { margin-bottom: clamp(48px, 6vw, 80px); max-width: 720px; }

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(32px, 6vw, 96px);
  align-items: start;
}
.col-head { position: sticky; top: 120px; }
@media (max-width: 860px) {
  .two-col { grid-template-columns: 1fr; gap: 36px; }
  .col-head { position: static; }
}

/* ---------- 3 · pull quote ---------- */
.pullquote {
  margin: clamp(64px, 9vw, 120px) 0 0;
  max-width: 980px;
}
.pullquote .rule-amber { margin-bottom: 32px; }
.pq-text {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(30px, 4.4vw, 52px);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--black);
  text-wrap: balance;
}
.pq-text em { font-style: italic; }

/* ---------- 4 · how it works (steps) ---------- */
.steps { list-style: none; margin: 0; padding: 0; }
.step {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: clamp(24px, 5vw, 72px);
  padding: 36px 0;
  align-items: start;
}
.step + .step { border-top: 1px solid rgba(17,17,17,0.10); }
.step:first-child { padding-top: 0; }
.step-idx { position: relative; display: flex; flex-direction: column; align-items: flex-start; }
.step-num {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(40px, 5vw, 60px);
  line-height: 0.9;
  color: var(--black);
}
.step-idx::after {
  /* small amber tick under the number */
  content: "";
  display: block;
  width: 28px; height: 1px;
  background: var(--amber);
  margin-top: 16px;
}
.step-title { margin-bottom: 12px; }
.step-body .body { max-width: 620px; color: #46413B; }
@media (max-width: 600px) {
  .step { grid-template-columns: 1fr; gap: 14px; padding: 28px 0; }
}

/* ---------- 5 · pillars ---------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(32px, 4vw, 56px);
}
.pillar { padding-top: 24px; border-top: 1px solid var(--line); position: relative; }
.pillar-tick { position: absolute; top: -1px; left: 0; width: 44px; height: 2px; background: var(--amber); }
.pillar-title { margin: 0 0 16px; }
.pillar .body { font-size: 16px; }
@media (max-width: 820px) {
  .pillars { grid-template-columns: 1fr; gap: 8px; }
  .pillar { padding: 28px 0; }
  .pillar:not(:first-child) { border-top: 1px solid var(--line); }
}

/* ---------- 6 · capabilities grid ---------- */
.cap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(17,17,17,0.16);
  border-left: 1px solid rgba(17,17,17,0.16);
}
.cap {
  padding: 30px 28px 34px;
  border-right: 1px solid rgba(17,17,17,0.16);
  border-bottom: 1px solid rgba(17,17,17,0.16);
  min-height: 176px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cap-title {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15.5px;
  letter-spacing: 0.005em;
  line-height: 1.3;
  margin: 0;
  color: var(--black);
}
.cap-line { font-size: 14.5px; line-height: 1.55; color: #4D4842; margin: 0; }
@media (max-width: 1000px) { .cap-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .cap-grid { grid-template-columns: 1fr; } .cap { min-height: 0; } }

/* ---------- 7 · see it work (dark plates) ---------- */
.see-lede { color: var(--warm); max-width: 600px; }
.plate { margin: 0; }
.plate-feature { margin-top: clamp(40px, 5vw, 64px); }
.plate-frame {
  position: relative;
  background:
    repeating-linear-gradient(135deg, rgba(246,242,234,0.018) 0 14px, transparent 14px 28px),
    #0E0E0D;
  border: 1px solid var(--line-ondark);
  border-radius: 2px;
  overflow: hidden;
}
.ratio-16-9 { aspect-ratio: 16 / 9; }
/* §7 plate video — fills the 16:9 frame; brackets hide once a plate holds a video */
.plate-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.plate-frame:has(.plate-video) .vf { display: none; }
/* viewfinder brackets */
.vf { position: absolute; width: 22px; height: 22px; border-color: rgba(200,154,43,0.55); border-style: solid; border-width: 0; }
.plate-feature .vf { width: 30px; height: 30px; }
.vf-tl { top: 16px; left: 16px; border-top-width: 1.5px; border-left-width: 1.5px; }
.vf-tr { top: 16px; right: 16px; border-top-width: 1.5px; border-right-width: 1.5px; }
.vf-bl { bottom: 16px; left: 16px; border-bottom-width: 1.5px; border-left-width: 1.5px; }
.vf-br { bottom: 16px; right: 16px; border-bottom-width: 1.5px; border-right-width: 1.5px; }
.plate-center {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 18px;
}
.plate-status {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
}
.plate-glyph {
  width: 54px; height: 54px;
  display: grid; place-items: center;
  border: 1px solid rgba(246,242,234,0.22);
  border-radius: 50%;
  color: rgba(246,242,234,0.55);
  font-size: 15px;
  padding-left: 3px;
  transition: border-color 200ms var(--ease), color 200ms var(--ease);
}
.plate:hover .plate-glyph { border-color: rgba(200,154,43,0.6); color: var(--amber); }
.plate-feature .plate-glyph { width: 66px; height: 66px; font-size: 18px; }
.plate-cap {
  display: flex; flex-direction: column; gap: 7px;
  padding-top: 18px;
}
.plate-kicker {
  font-family: var(--sans); font-weight: 600;
  font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--amber);
}
.plate-title { font-family: var(--display); font-weight: 500; font-size: 22px; line-height: 1.1; color: var(--paper); }
.plate-desc { font-size: 14px; line-height: 1.5; color: var(--gray); max-width: 46ch; }
.plate-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.6vw, 36px);
  margin-top: clamp(28px, 3.4vw, 48px);
}
.plate-row .plate-title { font-size: 19px; }
@media (max-width: 820px) { .plate-row { grid-template-columns: 1fr; gap: 40px; } }

/* ---------- 9 · from the imprint ---------- */
.imprint-block { max-width: 760px; }
.imprint-head { margin-bottom: 36px; }
.imprint-body { max-width: 680px; font-size: 18px; }
.signature {
  margin: 36px 0 0;
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
  color: var(--black);
}

/* ---------- 10 · closing CTA ---------- */
.cta-wrap { max-width: 720px; margin: 0 auto; text-align: center; }
.eyebrow.center { justify-content: center; }
.cta-title { margin-bottom: 26px; }
.cta-lede { margin: 0 auto; text-align: center; }
.cta-rule { margin: 48px auto 40px; }
.cta-form { max-width: 440px; margin: 0 auto; text-align: left; }
.field { display: flex; flex-direction: column; gap: 9px; margin-bottom: 22px; }
.field-label {
  font-family: var(--sans); font-weight: 600;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gray);
}
.field-input {
  font-family: var(--sans); font-size: 16px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.5);
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--black);
  transition: border-color 160ms var(--ease), background 160ms var(--ease);
}
.field-input::placeholder { color: var(--gray); }
.field-input:focus { outline: none; border-color: var(--amber); background: rgba(255,255,255,0.8); }
.checkrow {
  display: flex; align-items: center; gap: 12px;
  cursor: pointer; margin-bottom: 28px;
  user-select: none;
}
.checkrow input { position: absolute; opacity: 0; width: 0; height: 0; }
.checkbox {
  width: 19px; height: 19px; flex: none;
  border: 1px solid var(--gray);
  border-radius: 3px;
  background: rgba(255,255,255,0.4);
  position: relative;
  transition: border-color 160ms var(--ease), background 160ms var(--ease);
}
.checkrow input:checked + .checkbox { border-color: var(--amber); background: rgba(200,154,43,0.12); }
.checkrow input:checked + .checkbox::after {
  content: ""; position: absolute; left: 5px; top: 1px;
  width: 6px; height: 11px;
  border: solid var(--amber); border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg);
}
.checkrow input:focus-visible + .checkbox { outline: 2px solid var(--amber); outline-offset: 2px; }
.checktext { font-size: 15px; color: var(--ink-2); }
.cta-submit { width: 100%; }
/* honeypot — visually removed, still in the DOM + tab-skipped for bots */
.hp-field {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0; border: 0;
  overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%);
  white-space: nowrap;
}
.form-success {
  font-family: var(--display);
  font-style: italic;
  font-size: 22px;
  color: var(--black);
  text-align: center;
  margin: 8px 0 0;
}

/* colophon two-col alignment */
.colo-right { text-align: right; }
.colo-right .meta + .meta { margin-top: 6px; }
@media (max-width: 600px) {
  .colophon .wrap { flex-direction: column; align-items: flex-start; }
  .colo-right { text-align: left; }
}

/* ============================================================
   HERO — DARK GROUND ALTERNATIVE  (body[data-hero="dark"])
   Camera Black shell, white-trans logo. The dramatic variant.
   ============================================================ */
.hero-logo--white { display: none; }
body[data-hero="dark"] .hero {
  background: var(--black);
  color: var(--paper);
}
body[data-hero="dark"] .hero-logo--black { display: none; }
body[data-hero="dark"] .hero-logo--white { display: block; }
body[data-hero="dark"] .hero .h-hero { color: var(--paper); }
body[data-hero="dark"] .hero-lede { color: rgba(246,242,234,0.76); }
body[data-hero="dark"] .hero .btn {
  background: var(--paper); color: var(--black); border-color: var(--paper);
}
body[data-hero="dark"] .hero .btn:hover { background: #fff; }
body[data-hero="dark"] .hero .textlink { color: var(--paper); border-color: var(--line-ondark); }
body[data-hero="dark"] .hero .textlink:hover { border-color: var(--amber); }
body[data-hero="dark"] .scroll-cue span { background: rgba(246,242,234,0.55); }

/* nav over the dark hero (until it scrolls onto paper) */
body[data-hero="dark"] .nav:not(.scrolled) .nav-brand { color: var(--paper); }
body[data-hero="dark"] .nav:not(.scrolled) .nav-brand .sub { color: var(--warm); }
body[data-hero="dark"] .nav:not(.scrolled) .nav-links a { color: var(--paper); }
body[data-hero="dark"] .nav:not(.scrolled) .nav-cta {
  border-color: rgba(246,242,234,0.45); color: var(--paper);
}
body[data-hero="dark"] .nav:not(.scrolled) .nav-cta:hover { background: rgba(246,242,234,0.08); }
