/* ============================================================
   LAMPLIGHT EDITORIAL v2 — extreme cut
   Sequel (void + lamplight) × Creative Giants (poster type,
   full-bleed, invisible chrome) × 11x (serif monuments, teal)
   ============================================================ */

:root {
  --void: #000000;
  --white: #ffffff;
  --charcoal: #202020;
  --graphite: #333333;
  --cream: #f5f5f0;
  --smoke: #999999;
  --teal-deep: #0b252a;
  --teal-slate: #406e7a;

  --font-sans: 'Switzer', 'Inter', ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-serif: 'Instrument Serif', Georgia, 'Times New Roman', serif;

  /* Poster scale — type is the architecture */
  --text-label: 11px;
  --text-body: 16px;
  --text-body-lg: 20px;
  --text-statement: clamp(28px, 3.4vw, 44px);
  --text-heading: clamp(40px, 6vw, 84px);
  --text-display: clamp(64px, 12.5vw, 190px);
  --text-poster: min(13.2vw, 230px);

  --s-1: 4px; --s-2: 8px; --s-3: 12px; --s-4: 16px; --s-5: 20px;
  --s-6: 24px; --s-8: 32px; --s-10: 40px; --s-12: 48px;
  --s-16: 64px; --s-20: 80px; --s-24: 96px; --s-30: 120px;

  --edge: clamp(16px, 3vw, 40px);   /* full-bleed page margin */

  --radius-pill: 9999px;

  --shadow-cta: rgba(0, 0, 0, 0.15) 0px 4px 20px 0px;
  --shadow-glass: rgba(0, 0, 0, 0.35) 0px 10px 30px 0px,
                  rgba(255, 255, 255, 0.08) 0px 1px 0px 0px inset;

  --ease: cubic-bezier(0.625, 0.05, 0, 1);
  --dur: 0.28s;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--void);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: var(--text-body);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.018em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--cream); color: var(--void); }

/* Full-bleed model: no container, only edge padding */
.edge { padding-left: var(--edge); padding-right: var(--edge); }

/* ---------- Type ---------- */
.eyebrow {
  font-size: var(--text-label);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--smoke);
}
.eyebrow strong { font-weight: 500; color: var(--white); }

.display {
  font-size: var(--text-display);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: -0.045em;
  color: var(--white);
}

.heading {
  font-size: var(--text-heading);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -0.035em;
}

.statement {
  font-size: var(--text-statement);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.accent {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.06em;
  letter-spacing: -0.01em;
  text-transform: none;
}

.body-lg { font-size: var(--text-body-lg); line-height: 1.45; font-weight: 300; }
.muted { color: var(--smoke); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  height: 48px;
  padding: 0 var(--s-8);
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
}
.btn--cream { background: var(--cream); color: var(--void); box-shadow: var(--shadow-cta); }
.btn--cream:hover { transform: translateY(-2px); }
.btn--ghost { background: transparent; border: 1px solid rgba(255, 255, 255, 0.5); color: var(--white); }
.btn--ghost:hover { border-color: var(--white); }

.btn-group { display: flex; gap: var(--s-4); flex-wrap: wrap; }

/* ---------- Glass chip (Sequel) ---------- */
.chip {
  display: inline-flex;
  align-items: center;
  padding: var(--s-2) var(--s-4);
  border-radius: var(--radius-pill);
  background: rgba(200, 200, 200, 0.1);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  box-shadow: var(--shadow-glass);
  font-size: var(--text-label);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
  white-space: nowrap;
}

/* ---------- Chrome: eyebrow lockup + Menu pill, nothing else ---------- */
.top {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-6);
  padding: var(--s-5) var(--edge);
  transition: background var(--dur) var(--ease);
}
.top.is-solid { background: #000000; }
.top__lockup { display: flex; align-items: center; gap: var(--s-4); min-width: 0; }
.top__mark { font-weight: 500; letter-spacing: 2px; color: var(--cream); font-size: 15px; flex: none; }
.top__eyebrow { line-height: 1.5; }
.top__right { display: flex; align-items: center; gap: var(--s-4); flex: none; }
.top__lang { font-size: var(--text-label); letter-spacing: 0.05em; color: var(--smoke); display: flex; gap: var(--s-2); text-transform: uppercase; }
.top__lang .active { color: var(--white); }

.menu-btn {
  height: 44px;
  padding: 0 var(--s-6);
  border-radius: var(--radius-pill);
  border: 0;
  background: var(--cream);
  color: var(--void);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  box-shadow: var(--shadow-cta);
  transition: transform var(--dur) var(--ease);
}
.menu-btn:hover { transform: translateY(-2px); }

/* Full-screen menu overlay — poster links */
.menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--void);
  padding: 120px var(--edge) var(--s-10);
  overflow-y: auto;
}
.menu.is-open { display: flex; flex-direction: column; justify-content: space-between; gap: var(--s-10); }
.menu__links { display: flex; flex-direction: column; }
.menu__links a {
  font-size: clamp(36px, 6.5vh, 64px);
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 1.18;
  color: var(--white);
  opacity: 0.85;
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.menu__links a:hover { opacity: 1; transform: translateX(8px); }
.menu__links a span {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.42em;
  color: var(--smoke);
  margin-right: var(--s-5);
}
.menu__foot { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: var(--s-6); }

/* ---------- Film still: full-bleed, sharp, the image is the fold ---------- */
.filmstill {
  position: relative;
  height: min(92vh, 900px);
  overflow: hidden;
}
.filmstill--hero { height: 100svh; }
.filmstill__display {
  font-size: clamp(44px, 6.8vw, 104px);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.045em;
  color: var(--white);
  margin-top: var(--s-4);
}
.filmstill__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: 80% center;
  transform: scale(1.06);
  transition: transform 6s var(--ease);
}
.filmstill.in-view .filmstill__img { transform: scale(1); }
.filmstill::after {
  content: "";
  position: absolute;
  inset: 55% 0 0 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,0.6));
}
.filmstill__meta {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 0 var(--edge) var(--s-8);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--s-6);
}
.filmstill__loc {
  font-size: var(--text-label);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cream);
}
.filmstill__title {
  font-size: var(--text-statement);
  font-weight: 300;
  letter-spacing: -0.025em;
  margin-top: var(--s-3);
  max-width: 18ch;
  line-height: 1.1;
}

/* ---------- Stats: serif monuments, full width ---------- */
.stats { padding: var(--s-24) var(--edge) var(--s-30); }
.stats__intro {
  max-width: 560px;
  color: var(--smoke);
  margin-bottom: var(--s-20);
}
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stats__item { text-align: center; padding: 0 var(--s-6); border-left: 1px solid var(--graphite); }
.stats__item:first-child { border-left: 0; }
.stats__number {
  font-family: var(--font-serif);
  font-size: clamp(64px, 8.5vw, 132px);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--cream);
}
.stats__label {
  margin-top: var(--s-5);
  font-size: var(--text-label);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--smoke);
}

/* ---------- Charcoal band: elevation through tone, not color ---------- */
.band { background: var(--charcoal); padding: var(--s-30) var(--edge); }
.band .heading { max-width: 18ch; margin-top: var(--s-8); }
.band__tags { display: flex; flex-wrap: wrap; gap: var(--s-3); margin-top: var(--s-16); }
.band__tag {
  padding: var(--s-2) var(--s-4);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: rgba(255, 255, 255, 0.08) 0px 1px 0px 0px inset;
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ---------- Sections ---------- */
.section { padding: var(--s-30) var(--edge); }
.section--flush { padding-left: 0; padding-right: 0; }
.section__head { margin-bottom: var(--s-16); }
.section__head .heading { margin-top: var(--s-6); max-width: 14ch; }

/* ---------- Cinematic tiles: sharp editorial cuts ---------- */
.tiles { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; }
.tile { position: relative; display: block; overflow: hidden; min-height: 62vh; }
.tile--featured { grid-column: 1 / -1; min-height: 78vh; }
.tile__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 25%;
  transition: transform 1.2s var(--ease);
}
.tile:hover .tile__bg { transform: scale(1.03); }
.tile::after {
  content: "";
  position: absolute;
  inset: 35% 0 0 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,0.75));
}
.tile__chip { position: absolute; top: var(--s-6); right: var(--s-6); z-index: 2; }
.tile__body { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: var(--s-10) var(--edge); }
.tile__title {
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 18ch;
}
.tile__desc { margin-top: var(--s-4); max-width: 52ch; color: rgba(255,255,255,0.75); font-size: 15px; font-weight: 400; }
.tile__arrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  margin-top: var(--s-6);
  font-size: var(--text-label);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cream);
}
.tile__arrow::after { content: "→"; transition: transform var(--dur) var(--ease); }
.tile:hover .tile__arrow::after { transform: translateX(4px); }

/* ---------- Built: editorial hairline rows ---------- */
.built { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-8) var(--s-16); }
.built__item {
  border-top: 1px solid var(--graphite);
  padding: var(--s-8) 0 var(--s-10);
}
.built__index {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 20px;
  color: var(--cream);
  display: block;
  margin-bottom: var(--s-8);
}
.built__item h3 { font-size: clamp(22px, 2vw, 28px); font-weight: 300; letter-spacing: -0.025em; margin-bottom: var(--s-4); }
.built__item p { color: var(--smoke); font-size: 15px; max-width: 44ch; }

/* ---------- Gallery: edge-to-edge contact sheet ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.gallery img {
  width: 100%;
  height: clamp(220px, 30vw, 420px);
  object-fit: cover;
  filter: saturate(0.92);
  transition: filter var(--dur) var(--ease);
}
.gallery img:hover { filter: saturate(1); }

/* ---------- Quotes ---------- */
.quotes { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s-12) var(--s-16); }
.quote { border-top: 1px solid var(--graphite); padding-top: var(--s-8); }
.quote__text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: rgba(255,255,255,0.9);
}
.quote__author { margin-top: var(--s-6); font-size: 14px; font-weight: 500; }
.quote__role {
  font-size: var(--text-label);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--smoke);
  margin-top: var(--s-1);
}

/* ---------- Blog: bare editorial columns ---------- */
.posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-10) var(--s-12); }
.post { display: block; border-top: 1px solid var(--graphite); padding-top: var(--s-6); }
.post__hook {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 21px;
  line-height: 1.3;
  color: var(--cream);
  transition: color var(--dur) var(--ease);
}
.post:hover .post__hook { color: var(--white); }
.post__title { margin-top: var(--s-5); font-size: 15px; font-weight: 500; line-height: 1.4; }
.post__meta {
  margin-top: var(--s-3);
  font-size: var(--text-label);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--smoke);
}

/* ---------- Marquee ---------- */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--graphite);
  border-bottom: 1px solid var(--graphite);
  padding: var(--s-10) 0;
}
.marquee__track { display: flex; gap: var(--s-20); width: max-content; animation: marquee 45s linear infinite; }
.marquee__item {
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 300;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.85);
  white-space: nowrap;
}
.marquee__item em { font-style: normal; font-size: 0.5em; text-transform: uppercase; letter-spacing: 0.08em; color: var(--smoke); margin-left: var(--s-3); font-weight: 500; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Newsletter: charcoal band, two-column spread ---------- */
.newsletter-band { background: var(--charcoal); padding: var(--s-24) var(--edge); }
.newsletter {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-16);
  align-items: start;
}
.newsletter .heading { margin-top: var(--s-6); }
.newsletter__desc { margin-top: var(--s-8); color: var(--smoke); max-width: 40ch; }
.ml-form-embedContainer { margin-top: 0; }
.ml-block-form input.form-control {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #757575;
  border-radius: 0;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 300;
  padding: var(--s-4) 0;
  margin-bottom: var(--s-4);
  outline: none;
  transition: border-color var(--dur) var(--ease);
}
.ml-block-form input.form-control::placeholder { color: rgba(255, 255, 255, 0.6); }
.ml-block-form input.form-control:focus { border-color: var(--cream); }
.ml-form-checkboxRow p { font-size: 13px; color: var(--smoke); }
.ml-form-checkboxRow label { display: flex; gap: var(--s-2); align-items: flex-start; margin-top: var(--s-5); cursor: pointer; }
.ml-form-checkboxRow input[type="checkbox"] { accent-color: var(--cream); margin-top: 4px; }
.ml-form-embedSubmit { margin-top: var(--s-8); }
.ml-form-embedSubmit button.primary {
  border: 0;
  height: 52px;
  padding: 0 var(--s-12);
  border-radius: var(--radius-pill);
  background: var(--cream);
  color: var(--void);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  box-shadow: var(--shadow-cta);
  transition: transform var(--dur) var(--ease);
}
.ml-form-embedSubmit button.primary:hover { transform: translateY(-2px); }
.consent-note { display: flex; gap: var(--s-2); align-items: flex-start; font-size: 13px; color: var(--smoke); margin-top: var(--s-5); }
.consent-note a { text-decoration: underline; }
.consent-note input { accent-color: var(--cream); margin-top: 3px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

/* ---------- Closing ---------- */
.closing { padding: var(--s-30) var(--edge); }
.closing .display { max-width: 12ch; }
.closing__sub { margin-top: var(--s-10); max-width: 460px; color: var(--smoke); }
.closing .btn-group { margin-top: var(--s-12); }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--graphite); padding: var(--s-16) var(--edge) var(--s-10); }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: var(--s-10); }
.footer__brand { display: flex; align-items: baseline; gap: var(--s-2); }
.footer__mark { font-weight: 500; letter-spacing: 2px; color: var(--cream); font-size: 15px; }
.footer__word { font-size: 16px; font-weight: 500; }
.footer__tagline { margin-top: var(--s-4); font-size: 14px; color: var(--smoke); max-width: 260px; }
.footer__links, .footer__contact { display: flex; flex-direction: column; gap: var(--s-2); }
.footer__links a, .footer__contact a { font-size: 14px; color: var(--smoke); transition: color var(--dur) var(--ease); }
.footer__links a:hover, .footer__contact a:hover { color: var(--white); }
.footer__bottom {
  margin-top: var(--s-16);
  padding-top: var(--s-6);
  border-top: 1px solid var(--graphite);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--s-4);
  font-size: var(--text-label);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--smoke);
}
.footer__legal { display: flex; gap: var(--s-5); }

/* ---------- Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}
.reveal.in-view { opacity: 1; transform: none; }
.reveal-group > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}
.reveal-group.in-view > * { opacity: 1; transform: none; }
.reveal-group.in-view > *:nth-child(2) { transition-delay: 0.08s; }
.reveal-group.in-view > *:nth-child(3) { transition-delay: 0.16s; }
.reveal-group.in-view > *:nth-child(4) { transition-delay: 0.24s; }
.reveal-group.in-view > *:nth-child(5) { transition-delay: 0.32s; }
.reveal-group.in-view > *:nth-child(6) { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-group > * { opacity: 1; transform: none; transition: none; }
  .marquee__track { animation: none; }
  .filmstill__img { transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1023px) {
  .top__eyebrow { display: none; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: var(--s-12) 0; }
  .stats__item:nth-child(3) { border-left: 0; }
  .posts { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
  .filmstill--hero { height: 100svh; }
  .filmstill--hero .filmstill__img {
    background-image: url('../images/Felix-Lenhard-Entrepreneur-Keynote-Speaker-Innovator_0006-mobile.webp') !important;
    background-position: center top;
  }
  .filmstill__display { font-size: clamp(38px, 11vw, 54px); }
  .hero__meta { text-align: left; }
  .tiles, .built, .quotes, .newsletter { grid-template-columns: 1fr; }
  .tile, .tile--featured { min-height: 60vh; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery img { height: 40vw; }
  .posts { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .filmstill { height: 72vh; }
  .filmstill__meta { flex-direction: column; align-items: flex-start; }
  .stats, .section, .band, .closing { padding-top: var(--s-20); padding-bottom: var(--s-20); }
}

.top__logo { height: 20px; width: auto; flex: none; filter: brightness(0) invert(1); }
.lp-logo { height: 18px; width: auto; vertical-align: -3px; filter: brightness(0) invert(1); margin-right: 6px; }

/* Cinematic scrim: text always readable on any tile image; charcoal placeholder while images load */
.tile { background-color: #161616; }
.tile::after {
  content: "";
  position: absolute;
  inset: 35% 0 0 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.72));
  pointer-events: none;
  z-index: 1;
}
.tile__tag { z-index: 2; }

/* Mobile: keep faces fully in frame on the tall tile crops */
@media (max-width: 767px) {
  .tiles .tile:nth-child(2) .tile__bg { background-position: 50% 15%; }
  .tiles .tile:nth-child(3) .tile__bg { background-position: 10% 50%; }
  .tiles .tile:nth-child(4) .tile__bg { background-position: 100% 50%; }
  .tiles .tile:nth-child(5) .tile__bg { background-position: 50% 28%; }
}

/* Tagline degrades by whole segments — never mid-word ellipsis */
.top__eyebrow { text-overflow: clip; }
@media (max-width: 1439px) { .top__eyebrow .tg-3 { display: none; } }
@media (max-width: 1259px) { .top__eyebrow .tg-2 { display: none; } }
