/* ============================================================
   Franz Kohlack — Landing Page Styles
   Built on top of colors_and_type.css
   ============================================================ */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body {
  margin: 0; padding: 0;
  background: var(--ink-900);
  color: var(--paper);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  max-width: 100%;
}
* { min-width: 0; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; }

::selection { background: var(--gold-500); color: var(--ink-900); }

/* ---------- Theme defaults: ink (dark) ---------- */
body {
  --bg-1: var(--ink-900);
  --bg-2: var(--ink-800);
  --bg-3: var(--ink-700);
  --fg-1: var(--paper);
  --fg-2: var(--ink-200);
  --fg-3: var(--ink-300);
  --fg-mute: var(--ink-400);
  --accent: var(--gold-400);
  --accent-strong: var(--gold-300);
  --hairline: rgba(245, 235, 208, 0.12);
  --hairline-strong: rgba(245, 235, 208, 0.24);
}

/* ---------- Shell ---------- */
.shell { max-width: 1280px; margin: 0 auto; padding-left: 96px; padding-right: 96px; }
.shell-wide { max-width: 1440px; margin: 0 auto; padding-left: 64px; padding-right: 64px; }

@media (max-width: 880px) {
  .shell, .shell-wide { padding-left: 24px; padding-right: 24px; }
}

/* ---------- Type helpers ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--font-wordmark);
  font-weight: 500; font-size: 12px;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--accent);
}
.eyebrow::before, .eyebrow.with-rule-after::after {
  content: ""; width: 28px; height: 1px; background: var(--accent);
}
.eyebrow.no-rule::before { display: none; }

.h-display {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.018em;
  line-height: 1.04;
  color: var(--fg-1);
  overflow-wrap: break-word;
  word-break: break-word;
}
.h-display em {
  font-style: italic; font-weight: 400;
  color: var(--accent);
}
.h-display .mark {
  font-style: italic; color: var(--accent); font-weight: 400;
}

.lead {
  font-family: var(--font-body);
  font-size: 19px;
  line-height: 1.65;
  color: var(--fg-2);
  max-width: 56ch;
}

p { font-size: 16px; line-height: 1.7; color: var(--fg-2); overflow-wrap: break-word; word-break: break-word; }

/* ---------- Sections ---------- */
section { position: relative; padding: 112px 0; }
section.flush-top { padding-top: 0; }
section.flush-bottom { padding-bottom: 0; }

.section--paper {
  background: var(--paper);
  --fg-1: var(--ink-900);
  --fg-2: var(--ink-600);
  --fg-3: var(--ink-400);
  --fg-mute: var(--ink-300);
  --accent: var(--gold-700);
  --hairline: rgba(10, 9, 8, 0.14);
  --hairline-strong: rgba(10, 9, 8, 0.28);
  color: var(--ink-900);
}
.section--paper p { color: var(--ink-600); }

.section-hairline { border-top: 1px solid var(--hairline); }
.section-hairline-gold { border-top: 1px solid var(--accent); }

/* ---------- Header ---------- */
.fk-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10, 9, 8, 0.78);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid rgba(245, 235, 208, 0.10);
}
.fk-header__inner {
  max-width: 1280px; margin: 0 auto; padding: 20px 96px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.fk-lockup { display: flex; align-items: center; gap: 14px; }
.fk-lockup__mono {
  font-family: var(--font-wordmark);
  font-weight: 700; font-size: 22px;
  letter-spacing: -0.01em;
  background: var(--gradient-foil);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  line-height: 1;
}
.fk-lockup__word {
  font-family: var(--font-wordmark);
  font-weight: 500; font-size: 12px;
  letter-spacing: 0.36em; color: var(--paper);
  line-height: 1;
  border-left: 1px solid rgba(245,235,208,0.20);
  padding-left: 14px;
}
.fk-header__nav { display: flex; gap: 36px; align-items: center; }
.fk-header__link {
  font-family: var(--font-body); font-weight: 500;
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-200); padding: 8px 0;
  border-bottom: 1px solid transparent;
  transition: color 240ms, border-color 240ms;
}
.fk-header__link:hover { color: var(--paper); }
.fk-header__link.is-active { color: var(--paper); border-bottom-color: var(--gold-400); }
.fk-header__cta {
  font-family: var(--font-body); font-weight: 600;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  background: var(--gold-500); color: var(--ink-900);
  padding: 13px 22px; border-radius: 2px;
  transition: background 240ms;
}
.fk-header__cta:hover { background: var(--gold-400); }

@media (max-width: 1080px) {
  .fk-header__inner { padding: 16px 24px; }
  .fk-header__nav { display: none; }
}
@media (max-width: 560px) {
  .fk-header__inner { flex-wrap: wrap; gap: 12px 16px; }
  .fk-lockup__word { display: none; }
  .fk-header__cta { font-size: 10px; padding: 10px 14px; letter-spacing: 0.16em; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body); font-weight: 600;
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  padding: 18px 30px; border-radius: 2px;
  border: 1px solid transparent; line-height: 1;
  transition: all 240ms cubic-bezier(0.32,0.08,0.24,1);
  cursor: pointer;
}
.btn--primary {
  background: var(--gold-500); color: var(--ink-900); border-color: var(--gold-500);
}
.btn--primary:hover { background: var(--gold-400); border-color: var(--gold-400); }
.btn--ghost-dark {
  background: transparent; color: var(--paper); border-color: rgba(245,235,208,0.30);
}
.btn--ghost-dark:hover { border-color: var(--gold-400); color: var(--gold-100); background: rgba(201,161,74,0.05); }
.btn--ghost-ink {
  background: transparent; color: var(--ink-900); border-color: var(--ink-900);
}
.btn--ghost-ink:hover { background: var(--ink-900); color: var(--paper); }
.btn__arrow { display: inline-block; transition: transform 240ms; }
.btn:hover .btn__arrow { transform: translateX(4px); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: 96px 0 80px;
  background: var(--ink-900);
  position: relative; overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; right: -200px; top: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(201,161,74,0.10) 0%, transparent 60%);
  pointer-events: none;
}
.hero__inner { position: relative; z-index: 1; }
.hero__eyebrow-row {
  display: flex; justify-content: center; margin-bottom: 32px;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(30px, 8vw, 96px);
  line-height: 1.04;
  letter-spacing: -0.022em;
  color: var(--paper);
  text-align: center;
  text-wrap: balance;
  max-width: 1100px;
  margin: 0 auto 28px;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}
@media (max-width: 480px) {
  .hero__title { font-size: 35px; }
}
@media (min-width: 1080px) {
  .hero__title { font-size: 78px; }
}
.hero__title em {
  font-style: italic;
  color: transparent;
  background: var(--gradient-foil);
  -webkit-background-clip: text; background-clip: text;
}
.hero__sub {
  font-family: var(--font-body);
  font-size: 19px;
  line-height: 1.65;
  color: var(--ink-200);
  text-align: center;
  max-width: 720px;
  margin: 0 auto 44px;
  text-wrap: pretty;
}
.hero__cta-row {
  display: flex; justify-content: center; gap: 16px; flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero__trust {
  display: flex; justify-content: center; align-items: center; gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
.hero__trust-item {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-body);
  font-size: 13px; color: var(--ink-200);
  letter-spacing: 0.04em;
}
.hero__trust-stars { color: var(--gold-400); letter-spacing: 0.06em; font-size: 14px; }
.hero__trust-divider { width: 1px; height: 24px; background: rgba(245,235,208,0.18); }

.hero__media {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: stretch;
}
.hero__media-slot {
  width: 100%;
  aspect-ratio: 16 / 8;
  border: 1px solid var(--hairline-strong);
  border-radius: 2px;
}

/* Hero alt: countdown variant */
.hero__countdown {
  display: flex; justify-content: center; gap: 0;
  border: 1px solid var(--hairline);
  border-radius: 2px;
  padding: 18px 8px;
  max-width: 520px;
  margin: 0 auto 44px;
  background: rgba(245,235,208,0.02);
}
.hero__countdown-item {
  flex: 1;
  text-align: center;
  position: relative;
  padding: 0 8px;
}
.hero__countdown-item + .hero__countdown-item::before {
  content: ""; position: absolute; left: 0; top: 10%; bottom: 10%;
  width: 1px; background: var(--hairline);
}
.hero__countdown-num {
  font-family: var(--font-display);
  font-size: 36px; line-height: 1;
  color: var(--gold-400);
  font-weight: 400;
  font-variant-numeric: tabular-nums;
}
.hero__countdown-label {
  font-family: var(--font-body);
  font-size: 10px; letter-spacing: 0.24em;
  color: var(--ink-300); margin-top: 6px;
  text-transform: uppercase;
}

/* ============================================================
   TRUST MARQUEE
   ============================================================ */
.marquee {
  padding: 32px 0;
  background: var(--ink-800);
  border-top: 1px solid rgba(245,235,208,0.08);
  border-bottom: 1px solid rgba(245,235,208,0.08);
  overflow: hidden;
}
.marquee__label {
  text-align: center;
  font-family: var(--font-wordmark);
  font-size: 10px; letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--ink-300);
  margin-bottom: 28px;
}
.marquee__track {
  display: flex; gap: 80px;
  animation: marquee 50s linear infinite;
  width: max-content;
}
.marquee__item {
  font-family: var(--font-display);
  font-style: italic; font-weight: 400;
  font-size: 26px; color: var(--ink-200);
  letter-spacing: 0.02em;
  white-space: nowrap;
  opacity: 0.7;
}
.marquee__item--caps {
  font-family: var(--font-wordmark);
  font-style: normal; font-weight: 500;
  font-size: 16px; letter-spacing: 0.24em;
  text-transform: uppercase;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Logo strip variant */
.marquee__track--logos {
  gap: 86px;
  align-items: center;
  animation-duration: 52s;
}
.partner-logo {
  width: auto;
  flex-shrink: 0;
  object-fit: contain;
  opacity: 0.7;
  transition: opacity 320ms;
}
.partner-logo--fraport     { height: 40px; }
.partner-logo--continental { height: 33px; }
.partner-logo--ferrero     { height: 22px; }
.partner-logo--pwc         { height: 40px; }
.partner-logo--bmw         { height: 52px; }
.partner-logo--universal   { height: 50px; }

/* ============================================================
   ABOUT / WER IST FRANZ
   ============================================================ */
.about__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 96px;
  align-items: center;
}
.about__grid--solo {
  grid-template-columns: 1fr;
  max-width: 820px;
  margin: 0 auto;
}
.about__media {
  position: relative;
}
.about__media-slot {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--hairline-strong);
  position: relative;
  z-index: 1;
}
.about__media::before {
  content: "";
  position: absolute;
  top: 24px; left: 24px;
  right: -24px; bottom: -24px;
  border: 1px solid var(--accent);
  pointer-events: none;
  opacity: 0.5;
}
.about__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -0.018em;
  margin: 24px 0 32px;
  color: var(--fg-1);
  overflow-wrap: break-word;
  word-break: break-word;
}
.about__title em { font-style: italic; color: var(--accent); }
.about__body { font-size: 17px; line-height: 1.7; color: var(--fg-2); }
.about__body p + p { margin-top: 20px; }
.about__body strong { color: var(--fg-1); font-weight: 600; }
.about__sig {
  margin-top: 32px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  color: var(--accent);
}
.about__stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--hairline);
}
.about__stat-num {
  font-family: var(--font-display);
  font-size: 44px; font-weight: 400;
  line-height: 1; color: var(--accent);
}
.about__stat-label {
  font-family: var(--font-body);
  font-size: 12px; letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-top: 8px;
}

@media (max-width: 880px) {
  .about__grid { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 560px) {
  .about__stats { grid-template-columns: 1fr; gap: 28px; }
}

/* ============================================================
   TESTIMONIALS — video card grid
   ============================================================ */
.section-header { margin-bottom: 64px; }
.section-header--center { text-align: center; }
.section-header__eyebrow {
  display: flex; justify-content: center; margin-bottom: 24px;
}
.section-header__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.018em;
  color: var(--fg-1);
  max-width: 24ch;
  margin: 0 auto;
  text-wrap: balance;
}
.section-header__title em { font-style: italic; color: var(--accent); }
.section-header__sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--fg-2);
  margin-top: 20px;
  max-width: 60ch;
  margin-left: auto; margin-right: auto;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.video-grid--two {
  grid-template-columns: repeat(2, 1fr);
  max-width: 980px;
  margin: 0 auto;
}
/* Second row slightly smaller, centered */
.video-grid--two .video-card:nth-child(n+3) {
  width: 90%;
  justify-self: center;
}
.video-card {
  display: flex; flex-direction: column;
}
.video-card__media {
  width: 100%;
  aspect-ratio: 4 / 5;
  position: relative;
  border: 1px solid var(--hairline);
  background: var(--ink-800);
}
.video-card__media--video {
  overflow: hidden;
  background: #000;
  aspect-ratio: 16 / 9;
}
.video-card__media--video iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0; display: block;
}
.video-card__play {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}
.video-card__play-icon {
  width: 56px; height: 56px;
  border: 1px solid var(--paper);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(6px);
  background: rgba(10,9,8,0.32);
}
.video-card__play-icon::before {
  content: "";
  border-left: 10px solid var(--paper);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  margin-left: 3px;
}
.video-card__meta { padding: 20px 4px 0; }
.video-card__name {
  font-family: var(--font-display);
  font-size: 24px; font-weight: 500;
  color: var(--fg-1);
  line-height: 1.2;
}
.video-card__role {
  font-family: var(--font-body);
  font-size: 12px; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 6px;
}
.video-card__caption {
  font-family: var(--font-body);
  font-size: 14px; line-height: 1.6;
  color: var(--fg-2);
  margin-top: 14px;
}

@media (max-width: 1080px) {
  .video-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .video-grid { grid-template-columns: 1fr; }
}
/* ============================================================
   PROBLEMS — 4 numbered cards
   ============================================================ */
.problems-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--hairline);
  border-left: 1px solid var(--hairline);
}
.problem-card {
  padding: 56px 48px;
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  position: relative;
}
.problem-card__num {
  font-family: var(--font-wordmark);
  font-size: 12px; letter-spacing: 0.32em;
  color: var(--accent);
  margin-bottom: 28px;
}
.problem-card__title {
  font-family: var(--font-display);
  font-size: 32px; font-weight: 500;
  color: var(--fg-1);
  line-height: 1.15;
  margin: 0 0 18px;
}
.problem-card__body {
  font-size: 15px; line-height: 1.7;
  color: var(--fg-2);
}
.problem-card__list {
  list-style: none;
  margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 16px;
}
.problem-card__list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 14px;
  align-items: start;
  font-size: 15px; line-height: 1.6;
  color: var(--fg-2);
}
.problem-card__check {
  width: 22px; height: 22px;
  flex-shrink: 0;
  margin-top: 1px;
  display: block;
}
.problem-card__check circle { fill: var(--accent); }
.problem-card__check path { stroke: var(--ink-900); }

@media (max-width: 700px) {
  .problems-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   METHOD — Kohlackmethode pillars
   ============================================================ */
.method-list {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 64px;
  border-top: 1px solid var(--hairline);
}
.method-row {
  display: grid;
  grid-template-columns: 80px 1fr 1.4fr;
  gap: 48px;
  padding: 48px 0;
  border-bottom: 1px solid var(--hairline);
  align-items: start;
  transition: background 320ms;
}
.method-row:hover { background: rgba(201,161,74,0.03); }
.method-row__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 56px; font-weight: 400;
  color: var(--accent);
  line-height: 1;
}
.method-row__title {
  font-family: var(--font-display);
  font-size: 30px; font-weight: 500;
  color: var(--fg-1);
  line-height: 1.15;
}
.method-row__title-eyebrow {
  font-family: var(--font-wordmark);
  font-size: 10px; letter-spacing: 0.32em;
  color: var(--accent);
  margin-bottom: 12px;
  text-transform: uppercase;
}
.method-row__body {
  font-size: 16px; line-height: 1.7;
  color: var(--fg-2);
  padding-top: 6px;
}

@media (max-width: 880px) {
  .method-row { grid-template-columns: 1fr; gap: 16px; padding: 32px 0; }
  .method-row__num { font-size: 40px; }
}

/* ============================================================
   WHY SUCCESS — alternating split rows
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 96px;
}
.why-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-row--rev .why-row__text { order: 2; }
.why-row__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 96px; font-weight: 400;
  line-height: 1;
  color: var(--accent);
  opacity: 0.95;
  margin-bottom: 8px;
}
.why-row__title {
  font-family: var(--font-display);
  font-size: 44px; font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--fg-1);
  margin: 0 0 16px;
}
.why-row__body {
  font-size: 17px; line-height: 1.7;
  color: var(--fg-2);
  max-width: 50ch;
}
.why-row__media-slot {
  width: 100%;
  aspect-ratio: 5 / 4;
  border: 1px solid var(--hairline);
  position: relative;
}
.why-row__media-frame {
  position: relative;
}
.why-row__media-frame::after {
  content: ""; position: absolute;
  top: 16px; right: -16px; bottom: -16px; left: 16px;
  border: 1px solid var(--accent);
  opacity: 0.4;
  pointer-events: none;
}

@media (max-width: 880px) {
  .why-row { grid-template-columns: 1fr; gap: 32px; }
  .why-row--rev .why-row__text { order: 1; }
}

/* ============================================================
   QUALIFICATION — 2 big featured cards
   ============================================================ */
.qual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.qual-card {
  background: var(--ink-800);
  border: 1px solid var(--hairline);
  border-top: 1px solid var(--accent);
  padding: 0;
  display: flex; flex-direction: column;
}
.qual-card__media-slot {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-bottom: 1px solid var(--hairline);
}
.qual-card__body {
  padding: 40px;
  display: flex; flex-direction: column; gap: 16px;
}
.qual-card__title {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 500;
  color: var(--fg-1);
  line-height: 1.2;
  margin: 0;
}
.qual-card__copy {
  font-size: 15px; line-height: 1.7;
  color: var(--fg-2);
}

@media (max-width: 880px) {
  .qual-grid { grid-template-columns: 1fr; }
}

/* Single split card (image left, text right) */
.qual-grid--single { grid-template-columns: 1fr; max-width: 1040px; margin: 0 auto; }
.qual-card--split {
  flex-direction: row;
  align-items: stretch;
}
.qual-card__media-photo {
  flex: 0 0 42%;
  border-right: 1px solid var(--hairline);
  overflow: hidden;
}
.qual-card__media-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.qual-card--split .qual-card__body {
  flex: 1;
  justify-content: center;
  padding: 48px;
}
@media (max-width: 720px) {
  .qual-card--split { flex-direction: column; }
  .qual-card__media-photo {
    flex: none;
    border-right: 0;
    border-bottom: 1px solid var(--hairline);
    aspect-ratio: 4 / 3;
  }
}

/* ============================================================
   PROCESS — 3 steps
   ============================================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 64px;
}
.process-step {
  padding: 0 32px 0 0;
  position: relative;
}
.process-step + .process-step { padding-left: 48px; border-left: 1px solid var(--hairline); }
.process-step__num {
  font-family: var(--font-wordmark);
  font-size: 11px; letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
  display: flex; align-items: center; gap: 14px;
}
.process-step__num::before {
  content: ""; width: 32px; height: 1px; background: var(--accent);
}
.process-step__title {
  font-family: var(--font-display);
  font-size: 30px; font-weight: 500;
  color: var(--fg-1);
  line-height: 1.15;
  margin: 0 0 16px;
}
.process-step__body {
  font-size: 15px; line-height: 1.7;
  color: var(--fg-2);
}

@media (max-width: 880px) {
  .process-grid { grid-template-columns: 1fr; gap: 32px; }
  .process-step + .process-step { padding-left: 0; border-left: 0; border-top: 1px solid var(--hairline); padding-top: 32px; }
}

/* ============================================================
   TEAM — avatar marquee
   ============================================================ */
/* Team editorial photo */
.team-photo { margin: 0; }
.team-photo__frame {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}
.team-photo__frame img {
  width: 100%;
  display: block;
  border: 1px solid var(--hairline);
  position: relative;
  z-index: 1;
}
.team-photo__frame::after {
  content: "";
  position: absolute;
  top: 20px; right: -20px; bottom: -20px; left: 20px;
  border: 1px solid var(--accent);
  opacity: 0.45;
  pointer-events: none;
}
@media (max-width: 880px) {
  .team-photo__frame::after { top: 12px; right: -12px; bottom: -12px; left: 12px; }
}

.team-marquee { overflow: hidden; padding: 16px 0; }
.team-marquee__track {
  display: flex; gap: 32px;
  animation: marquee 80s linear infinite;
  width: max-content;
}
.team-card {
  width: 240px;
  flex-shrink: 0;
}
.team-card__photo-slot {
  width: 100%;
  aspect-ratio: 3 / 4;
  border: 1px solid var(--hairline);
}
.team-card__name {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 500;
  color: var(--fg-1);
  margin-top: 16px;
}
.team-card__role {
  font-family: var(--font-body);
  font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 6px;
}

/* ============================================================
   LOCATION
   ============================================================ */
.location {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}
.location__title {
  font-family: var(--font-display);
  font-size: 56px; font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.018em;
  color: var(--fg-1);
  margin: 24px 0 28px;
}
.location__title em { font-style: italic; color: var(--accent); }
.location__copy {
  font-size: 17px; line-height: 1.7;
  color: var(--fg-2); max-width: 50ch;
}
.location__address {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--hairline);
  font-family: var(--font-display);
  font-size: 20px; font-style: italic;
  color: var(--fg-1);
  line-height: 1.4;
}
.location__media-slot {
  width: 100%;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--hairline);
}
.location__media {
  margin: 0;
  position: relative;
}
.location__media img {
  width: 100%;
  aspect-ratio: 5 / 6;
  object-fit: cover;
  display: block;
  border: 1px solid var(--hairline);
  position: relative;
  z-index: 1;
}
.location__media::after {
  content: "";
  position: absolute;
  top: 18px; right: -18px; bottom: -18px; left: 18px;
  border: 1px solid var(--accent);
  opacity: 0.45;
  pointer-events: none;
}

@media (max-width: 880px) {
  .location { grid-template-columns: 1fr; gap: 48px; }
}

/* ============================================================
   SPEAKER — 3 photos
   ============================================================ */
.speaker-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 16px;
  margin-top: 56px;
}
.speaker-grid__slot {
  width: 100%;
  border: 1px solid var(--hairline);
}
.speaker-grid__slot--a { aspect-ratio: 4 / 5; margin-top: 32px; }
.speaker-grid__slot--b { aspect-ratio: 5 / 4; }
.speaker-grid__slot--c { aspect-ratio: 4 / 5; margin-top: 16px; }

@media (max-width: 880px) {
  .speaker-grid { grid-template-columns: 1fr; }
  .speaker-grid__slot--a, .speaker-grid__slot--c { margin-top: 0; }
}

/* ============================================================
   APPLICATION CTA
   ============================================================ */
.application {
  background: var(--ink-900);
  position: relative;
  border-top: 1px solid var(--accent);
}
.application__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}
.application__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.022em;
  margin: 28px 0 24px;
  color: var(--paper);
}
.application__title em { font-style: italic; color: var(--gold-400); }
.application__sub {
  font-size: 17px; line-height: 1.7;
  color: var(--ink-200);
  max-width: 52ch;
  margin-bottom: 36px;
}
.application__bullets {
  list-style: none;
  margin: 0 0 40px;
  padding: 0;
  display: flex; flex-direction: column; gap: 18px;
}
.application__bullet {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 16px;
  align-items: start;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-200);
}
.application__bullet::before {
  content: ""; width: 8px; height: 8px;
  background: var(--gold-400);
  margin-top: 8px;
  display: block;
}
.application__bullet strong { color: var(--paper); font-weight: 600; display: block; margin-bottom: 4px; }
.application__media-slot {
  width: 100%;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--hairline);
}
.application__media {
  margin: 0;
  position: relative;
}
.application__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  border: 1px solid var(--hairline);
  position: relative;
  z-index: 1;
}
.application__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: transparent;
  pointer-events: none;
}
/* Portrait now framed like the other editorial photos */
.application__media--cutout {
  border: 0;
  position: relative;
}
.application__media--cutout img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  border: 1px solid var(--hairline);
  background: transparent;
  mix-blend-mode: normal;
  position: relative;
  z-index: 1;
}
.application__media--cutout::after {
  content: "";
  display: block;
  position: absolute;
  top: 18px; right: -18px; bottom: -18px; left: 18px;
  border: 1px solid var(--accent);
  opacity: 0.45;
  background: transparent;
  z-index: 0;
  pointer-events: none;
}

@media (max-width: 880px) {
  .application__grid { grid-template-columns: 1fr; gap: 48px; }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq__grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 80px;
  align-items: start;
}
.faq__list {
  border-top: 1px solid var(--hairline);
}
.faq__item {
  border-bottom: 1px solid var(--hairline);
}
.faq__btn {
  width: 100%; text-align: left; padding: 18px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  background: none; border: 0; color: var(--fg-1);
  font-family: var(--font-display);
  font-size: 20px; font-weight: 500;
  line-height: 1.3;
}
.faq__plus {
  flex-shrink: 0;
  width: 20px; height: 20px; position: relative;
  transition: transform 320ms cubic-bezier(0.32,0.08,0.24,1);
}
.faq__plus::before, .faq__plus::after {
  content: ""; position: absolute;
  background: var(--accent);
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
}
.faq__plus::before { width: 20px; height: 1.5px; }
.faq__plus::after  { width: 1.5px; height: 20px; transition: transform 320ms; }
.faq__item[data-open="true"] .faq__plus::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq__panel {
  max-height: 0; overflow: hidden;
  transition: max-height 360ms cubic-bezier(0.32,0.08,0.24,1);
}
.faq__panel-inner {
  padding: 0 0 22px;
  max-width: 65ch;
  font-size: 16px; line-height: 1.7;
  color: var(--fg-2);
}
.faq__panel-inner p { margin: 0; color: var(--fg-2); font-size: 16px; line-height: 1.7; }
.faq__panel-inner p + p { margin-top: 16px; }

@media (max-width: 880px) {
  .faq__grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ============================================================
   FINAL CTA BANNER
   ============================================================ */
.final-cta {
  background: var(--paper);
  --fg-1: var(--ink-900);
  --fg-2: var(--ink-600);
  --fg-3: var(--ink-400);
  --accent: var(--gold-700);
  --hairline: rgba(10,9,8,0.14);
  color: var(--ink-900);
  text-align: center;
}
.final-cta__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 80px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink-900);
  max-width: 22ch;
  margin: 24px auto 28px;
  text-wrap: balance;
}
.final-cta__title em { font-style: italic; color: var(--gold-700); }
.final-cta__sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--ink-600);
  max-width: 56ch;
  margin: 0 auto 40px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.fk-footer {
  background: var(--ink-900);
  border-top: 1px solid rgba(245,235,208,0.10);
  padding: 80px 0 32px;
}
.fk-footer__main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(245,235,208,0.10);
}
.fk-footer__brand-line {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--ink-200);
  font-size: 17px;
  max-width: 36ch;
  margin-top: 20px;
  line-height: 1.6;
}
.fk-footer__col-title {
  font-family: var(--font-wordmark);
  font-size: 11px; letter-spacing: 0.32em;
  color: var(--gold-400);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.fk-footer__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.fk-footer__col a {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink-200);
  transition: color 240ms;
}
.fk-footer__col a:hover { color: var(--gold-400); }
.fk-footer__bottom {
  margin-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-body);
  font-size: 12px; color: var(--ink-400);
  letter-spacing: 0.08em;
  flex-wrap: wrap;
  gap: 16px;
}
.fk-footer__bottom a { color: var(--ink-300); }
.fk-footer__bottom a:hover { color: var(--gold-400); }

@media (max-width: 880px) {
  .fk-footer__main { grid-template-columns: 1fr 1fr; gap: 40px; }
}

/* ============================================================
   IMAGE SLOT styling
   ============================================================ */
image-slot {
  --is-bg: rgba(245, 235, 208, 0.04);
  --is-border: var(--hairline-strong);
  --is-fg: var(--ink-300);
  --is-accent: var(--gold-500);
}
/* Component ships a default height:160px in its shadow DOM; any slot we size
   with aspect-ratio must reset height to auto so the ratio drives the box. */
image-slot[class*="-slot"] {
  height: auto;
}
.section--paper image-slot {
  --is-bg: rgba(10,9,8,0.04);
  --is-border: rgba(10,9,8,0.20);
  --is-fg: var(--ink-500);
  --is-accent: var(--gold-700);
}

/* ============================================================
   STARS
   ============================================================ */
.stars { color: var(--gold-400); letter-spacing: 0.1em; font-size: 14px; }
