/* ============================================================
   HUNGER & SIMMETH — new2 · "KME" fullscreen editorial
   Display & body: Source Serif 4 · Labels: Roboto Mono
   Black canvas · white serif · coral accent #ff8e6e
   ============================================================ */

:root {
  --black:  #000000;
  --white:  #ffffff;
  --grey:   #c8c8c8;
  --dim:    #7e7e7e;
  --coral:  #ff8e6e;
  --line:   rgba(255, 255, 255, 0.16);
  --line-soft: rgba(255, 255, 255, 0.08);

  --serif: "Source Serif 4", Georgia, serif;
  --mono:  "Roboto Mono", "Courier New", monospace;

  --pad: clamp(22px, 4vw, 64px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--coral); color: var(--black); }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.12s; }
.reveal-d2 { transition-delay: 0.24s; }
.reveal-d3 { transition-delay: 0.36s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .panel-bg img { animation: none !important; }
}

/* ============================================================
   FIXED CHROME
   ============================================================ */
.burger {
  position: fixed; top: 26px; left: var(--pad); z-index: 320;
  width: 44px; height: 36px;
  background: none; border: none; cursor: pointer;
  display: flex; flex-direction: column; justify-content: center; gap: 7px;
  mix-blend-mode: difference;
}
.burger span {
  display: block; width: 34px; height: 3px;
  background: var(--white);
  transition: transform 0.35s var(--ease), opacity 0.25s, width 0.35s var(--ease);
}
.burger:hover span:nth-child(2) { width: 24px; }
.burger.is-open span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }

.brandmark {
  position: fixed; top: 22px; right: var(--pad); z-index: 320;
  text-align: right;
  mix-blend-mode: difference;
  line-height: 1;
}
.bm-big {
  display: block;
  font-family: var(--serif);
  font-weight: 900;
  font-size: 34px;
  letter-spacing: -0.01em;
}
.bm-sub {
  display: block;
  font-family: var(--mono);
  font-size: 8.5px;
  letter-spacing: 0.42em;
  margin-top: 5px;
  margin-right: 2px;
}

.lang-toggle {
  position: fixed; bottom: 24px; left: var(--pad); z-index: 320;
  background: none; border: 1px solid var(--line); border-radius: 999px;
  padding: 9px 16px;
  cursor: pointer;
  font-family: var(--mono); font-size: 12px;
  color: var(--dim);
  display: flex; gap: 6px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  background: rgba(0, 0, 0, 0.35);
  transition: border-color 0.3s, opacity 0.4s;
}
.lang-toggle.is-hidden { opacity: 0; pointer-events: none; }
.lang-toggle:hover { border-color: var(--coral); }
.lang-opt { transition: color 0.25s; }
.lang-opt.is-active { color: var(--white); }

/* ============================================================
   OVERLAY MENU
   ============================================================ */
.menu {
  position: fixed; inset: 0; z-index: 300;
  background: var(--black);
  display: flex; flex-direction: column; justify-content: center;
  padding: 0 var(--pad);
  clip-path: circle(0 at 44px 44px);
  visibility: hidden;
  transition: clip-path 0.7s var(--ease), visibility 0s 0.7s;
}
.menu.is-open {
  clip-path: circle(150% at 44px 44px);
  visibility: visible;
  transition: clip-path 0.7s var(--ease), visibility 0s;
}
.menu-links { display: flex; flex-direction: column; }
.menu-links a {
  position: relative;
  font-family: var(--serif);
  font-weight: 900;
  font-size: clamp(40px, 7.5vh, 76px);
  line-height: 1.22;
  letter-spacing: -0.01em;
  width: max-content;
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), color 0.3s;
}
.menu.is-open .menu-links a { opacity: 1; transform: none; }
.menu.is-open .menu-links a:nth-child(1) { transition-delay: 0.12s; }
.menu.is-open .menu-links a:nth-child(2) { transition-delay: 0.18s; }
.menu.is-open .menu-links a:nth-child(3) { transition-delay: 0.24s; }
.menu.is-open .menu-links a:nth-child(4) { transition-delay: 0.30s; }
.menu.is-open .menu-links a:nth-child(5) { transition-delay: 0.36s; }
.menu.is-open .menu-links a:nth-child(6) { transition-delay: 0.42s; }
.menu.is-open .menu-links a:nth-child(7) { transition-delay: 0.48s; }
.menu.is-open .menu-links a:nth-child(8) { transition-delay: 0.54s; }
.menu-links a::before {
  content: attr(data-i);
  position: absolute; left: -2.2em; top: 0.95em;
  font-family: var(--mono); font-weight: 400;
  font-size: 13px; letter-spacing: 0.1em;
  color: var(--dim);
}
.menu-links a:hover { color: var(--coral); font-style: italic; }
.menu-meta {
  position: absolute; bottom: 28px; right: var(--pad);
  text-align: right;
  font-size: 14px; color: var(--dim); line-height: 1.7;
  display: flex; gap: 48px;
}
.menu-meta a:hover { color: var(--coral); }
@media (max-width: 700px) {
  .menu-links a::before { display: none; }
  .menu-meta { position: static; text-align: left; flex-direction: column; gap: 14px; margin-top: 40px; }
}

/* ============================================================
   FULLSCREEN PANELS — curtain stack
   ============================================================ */
.deck { position: relative; }
.panel {
  position: sticky; top: 0;
  height: 100svh;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
}
.panel-bg { position: absolute; inset: 0; }
.panel-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.28) 0%, rgba(0,0,0,0.55) 100%);
}
.panel-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  animation: kenburns 16s var(--ease) infinite alternate;
}
@keyframes kenburns {
  from { transform: scale(1); }
  to   { transform: scale(1.07); }
}

/* Real World slideshow — stacked slides, 2 s tact */
.panel-rw .panel-bg img {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 0.7s var(--ease);
}
.panel-rw .panel-bg img.is-active { opacity: 1; }
/* 2nd slide: faces sit near the top — anchor the crop/zoom up so they aren't cut */
#rwSlides img:nth-of-type(2) { object-position: 50% 8%; transform-origin: 50% 0; }
.panel-content {
  position: relative; z-index: 2;
  padding: 0 var(--pad);
  max-width: 1100px;
}
.panel-kicker {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.85;
  margin-bottom: 22px;
}
.panel-title {
  font-family: var(--serif);
  font-weight: 900;
  font-size: clamp(52px, 9vw, 124px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  text-shadow: 0 4px 60px rgba(0, 0, 0, 0.45);
}
.panel-title i { font-style: italic; font-weight: 700; }
.panel-hero .panel-title i { color: var(--coral); }
.panel-sub {
  max-width: 58ch;
  margin: 26px auto 0;
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.6;
  color: var(--white);
  opacity: 0.92;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.6);
}
.scroll-hint {
  position: absolute; bottom: 30px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 26px;
  animation: hint 2.2s ease-in-out infinite;
}
@keyframes hint {
  0%, 100% { transform: translate(-50%, 0); opacity: 0.9; }
  50% { transform: translate(-50%, 12px); opacity: 0.4; }
}

/* ============================================================
   HERO V5 — split "Real World / KI-Hybrid" + always-on L/R pics
   (header lifted from h-s-revamped, re-skinned to the dark deck)
   ============================================================ */
.panel-herov5 { background: var(--black); }

/* the two edge picture stacks — always visible, masked toward centre */
.herov5-pic {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  overflow: hidden;
  pointer-events: none;
}
/* Both layers hold the SAME full-frame photo (perfectly aligned). The real shot
   sits underneath; the AI-jungle version lies on top and fades in across the
   middle, so the background morphs real → AI gradually with no hard seam. */
.herov5-pic-left  { z-index: 0; }
.herov5-pic-right {
  z-index: 1;
  -webkit-mask-image: linear-gradient(to right, transparent 28%, #000 72%);
          mask-image: linear-gradient(to right, transparent 28%, #000 72%);
}
.herov5-pic img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 30%;   /* keep faces in frame on the wide crop */
  opacity: 0;
  filter: brightness(0.82) saturate(0.97);
  transition: opacity 1.3s var(--ease);
}
.herov5-pic img.is-current { opacity: 1; }

/* centre vignette — light overall, concentrated tightly behind the title */
.herov5-shade {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(ellipse 38% 52% at center, rgba(0,0,0,0.58) 0%, rgba(0,0,0,0.24) 55%, rgba(0,0,0,0) 80%),
    linear-gradient(to bottom, rgba(0,0,0,0.12), rgba(0,0,0,0) 20%, rgba(0,0,0,0) 78%, rgba(0,0,0,0.22));
}

.herov5-content { position: relative; z-index: 2; max-width: 1180px; width: 100%; }

/* big H&S logo above the split title (lifted from h-s-revamped hero) */
.herov5-logo-wrap { display: flex; justify-content: center; margin-bottom: clamp(22px, 4.2vh, 46px); }
.herov5-logo {
  width: clamp(180px, 26vw, 380px);
  height: auto;
  filter: drop-shadow(0 6px 44px rgba(0, 0, 0, 0.55));
}

/* split headline */
.herov5-title { margin: 0; }
.herov5-split {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  align-items: baseline;
  gap: clamp(26px, 5vw, 76px);
  max-width: 1080px;
  margin: 0 auto;
}
.herov5-split::before {
  content: ""; grid-column: 2; grid-row: 1;
  align-self: stretch; width: 1px;
  background: var(--line);
}
.hs-col { display: flex; flex-direction: column; gap: 0.45em; }
.hs-left  { grid-column: 1; grid-row: 1; text-align: right;  align-items: flex-end; }
.hs-right { grid-column: 3; grid-row: 1; text-align: left;   align-items: flex-start; }
.hs-col strong {
  font-family: var(--serif);
  font-weight: 900;
  font-size: clamp(20px, 3.1vw, 42px);
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--white);
  text-shadow: 0 4px 50px rgba(0,0,0,0.6);
  white-space: nowrap;
}
.hs-right strong i { font-style: italic; color: var(--coral); }
.hs-sub {
  font-family: var(--serif);
  font-size: clamp(14px, 1.5vw, 20px);
  font-style: italic;
  line-height: 1.4;
  color: var(--grey);
  max-width: 22ch;
}

/* right column adopts h-s-revamped's font + formatting (Inter, clean sans —
   a deliberate contrast to the serif "Echte Welt" left column) */
.hs-right strong {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: clamp(20px, 3.1vw, 42px);
  letter-spacing: -0.025em;
  line-height: 1.05;
}
.hs-right .hs-sub {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(14px, 1.4vw, 19px);
  line-height: 1.35;
  color: var(--grey);
}
.hs-guarantee-row {
  margin-top: 10px;
  display: inline-flex; align-items: center; gap: 9px; flex-wrap: wrap;
  justify-content: flex-end;
}
.hs-guarantee-pre {
  font-family: var(--mono);
  font-size: clamp(9px, 0.85vw, 11px);
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--dim);
}
.hs-guarantee {
  font-family: var(--mono);
  font-size: clamp(9px, 0.85vw, 11px);
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--coral);
  border: 1px solid var(--coral);
  border-radius: 999px;
  padding: 4px 12px;
  white-space: nowrap;
}

/* hero CTAs */
.herov5-cta {
  display: flex; gap: 14px; flex-wrap: wrap; justify-content: center;
  margin-top: clamp(34px, 5vh, 56px);
}
.btn {
  display: inline-block;
  font-family: var(--mono);
  font-size: 13px; letter-spacing: 0.1em;
  padding: 13px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: background 0.3s, color 0.3s, border-color 0.3s, transform 0.3s var(--ease);
}
.btn-primary { background: var(--coral); color: var(--black); border-color: var(--coral); }
.btn-primary:hover { transform: translateY(-2px); background: #ffa888; border-color: #ffa888; }
.btn-ghost { border-color: var(--line); color: var(--white); }
.btn-ghost:hover { border-color: var(--coral); color: var(--coral); transform: translateY(-2px); }

/* content entrance via the shared .is-in panel observer */
.panel-herov5 .herov5-content {
  opacity: 0; transform: translateY(30px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.panel-herov5.is-in .herov5-content { opacity: 1; transform: none; transition-delay: 0.15s; }

@media (prefers-reduced-motion: reduce) {
  .herov5-pic img { animation: none; transition: none; }
}

/* stack the split on small screens, pics become a soft top/bottom wash */
@media (max-width: 720px) {
  .herov5-split { grid-template-columns: 1fr; gap: 26px; }
  .hs-left  { grid-column: 1; grid-row: 1; text-align: center; align-items: center; }
  .herov5-split::before {
    grid-column: 1; grid-row: 2;
    width: clamp(120px, 40vw, 220px); height: 1px; justify-self: center;
  }
  .hs-right { grid-column: 1; grid-row: 3; text-align: center; align-items: center; }
  .hs-guarantee-row { justify-content: center; }
  /* mobile: gradual blend runs top (real) → bottom (AI-jungle) */
  .herov5-pic-right {
    -webkit-mask-image: linear-gradient(to bottom, transparent 36%, #000 72%);
            mask-image: linear-gradient(to bottom, transparent 36%, #000 72%);
  }
}

/* social panel — full-bleed BTS clip */
.panel-social .panel-bg video {
  width: 100%; height: 100%;
  object-fit: cover;
}
.panel-social .panel-title { text-shadow: 0 4px 60px rgba(0, 0, 0, 0.55); }

/* reel panels — one clip per screen, natural ratio centered on black */
.panel-reel .panel-bg {
  display: flex;
  align-items: center; justify-content: center;
  background: var(--black);
}
.panel-reel .panel-bg::after { display: none; }
.panel-reel .panel-bg video {
  max-width: 100vw; max-height: 100svh;
  width: auto; height: auto;
}

/* panel content entrance (driven by .is-in from JS) */
.panel .panel-kicker, .panel .panel-title, .panel .panel-sub {
  opacity: 0; transform: translateY(34px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.panel.is-in .panel-kicker { opacity: 0.85; transform: none; transition-delay: 0.05s; }
.panel.is-in .panel-title  { opacity: 1; transform: none; transition-delay: 0.15s; }
.panel.is-in .panel-sub    { opacity: 0.92; transform: none; transition-delay: 0.3s; }

/* ============================================================
   INTERLUDE — "H&S. Bilder. Gefühl."
   ============================================================ */
.interlude {
  position: relative; z-index: 5;
  background: var(--black);
  text-align: center;
  padding: clamp(110px, 16vh, 200px) var(--pad);
}
.interlude-title {
  font-family: var(--serif);
  font-weight: 900;
  font-size: clamp(46px, 7.5vw, 104px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin-bottom: clamp(60px, 9vh, 110px);
}
.interlude-title i { font-style: italic; font-weight: 700; }
.interlude-cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(36px, 5vw, 80px);
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.interlude-cols h3 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(24px, 2.4vw, 32px);
  margin-bottom: 16px;
}
.interlude-cols p { font-size: 16.5px; color: var(--grey); max-width: 40ch; margin: 0 auto; }

/* ============================================================
   MOSAIC — gapless masonry
   ============================================================ */
.mosaic-section { position: relative; z-index: 5; background: var(--black); }
.mosaic-head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  padding: 0 var(--pad) clamp(36px, 5vh, 60px);
}
.mosaic-head h2 {
  font-family: var(--serif); font-weight: 900;
  font-size: clamp(40px, 5vw, 72px);
  letter-spacing: -0.015em;
}
.mosaic-head p { font-family: var(--mono); font-size: 12.5px; letter-spacing: 0.08em; color: var(--dim); }

.mosaic { columns: 3; column-gap: 0; }
.tile {
  position: relative;
  overflow: hidden;
  break-inside: avoid;
  cursor: zoom-in;
}
.tile img {
  width: 100%;
  transition: transform 0.9s var(--ease), filter 0.9s var(--ease);
}
.tile:hover img { transform: scale(1.045); filter: brightness(0.65); }
.tile figcaption {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  text-align: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.45s;
  background: rgba(0, 0, 0, 0.18);
  pointer-events: none;
}
.tile:hover figcaption { opacity: 1; }
.tile figcaption strong {
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(19px, 1.8vw, 25px);
  line-height: 1.25;
  padding-bottom: 12px; margin-bottom: 12px;
  position: relative;
  max-width: 22ch;
}
.tile figcaption strong::after {
  content: "";
  position: absolute; left: 50%; bottom: 0;
  transform: translateX(-50%);
  width: 56px; height: 1px;
  background: var(--white);
}
.tile figcaption span {
  font-family: var(--mono);
  font-size: 11.5px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--coral);
}

/* ============================================================
   FILM — full-bleed video
   ============================================================ */
.filmsec {
  position: relative; z-index: 5;
  height: 100svh;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  background: var(--black);
}
.film-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.9s var(--ease);
}
.film-bg.is-active { opacity: 1; }
.film-shade {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.5) 100%);
}
.film-content {
  position: relative; z-index: 2;
  padding: 0 var(--pad);
  max-width: 1100px;
}
.film-content .panel-kicker, .film-content .panel-title, .film-content .panel-sub {
  opacity: 0; transform: translateY(34px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.filmsec.is-in .panel-kicker { opacity: 0.85; transform: none; transition-delay: 0.05s; }
.filmsec.is-in .panel-title  { opacity: 1; transform: none; transition-delay: 0.15s; }
.filmsec.is-in .panel-sub    { opacity: 0.92; transform: none; transition-delay: 0.3s; }
.film-sound {
  position: absolute; right: var(--pad); bottom: 28px; z-index: 3;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--line); border-radius: 999px;
  padding: 10px 20px;
  cursor: pointer;
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--white);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: border-color 0.3s, color 0.3s;
}
.film-sound:hover { border-color: var(--coral); color: var(--coral); }
.film-sound[aria-pressed="true"] { background: var(--coral); border-color: var(--coral); color: var(--black); }

/* ---------- film grid (Loberon / Garant) ---------- */
.filmgrid {
  position: relative; z-index: 5;
  background: var(--black);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  padding: 6px 0 0;
}
.filmcell { margin: 0; }
.filmcell-media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.filmcell-media video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.filmcell .cell-sound { right: 18px; bottom: 18px; }
.filmcell figcaption {
  font-family: var(--mono); font-size: 12px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--white);
  padding: 14px 18px 22px;
}
.filmcell figcaption strong { font-weight: 700; }
.filmcell figcaption span { opacity: 0.55; margin-left: 10px; }
.filmcell-wide { grid-column: 1 / -1; }
.filmcell-wide .filmcell-media { aspect-ratio: 21 / 9; }
@media (max-width: 820px) {
  .filmgrid { grid-template-columns: 1fr; }
}

/* ---------- SOCIAL — reels in their native format, no crop, groovy ---------- */
.socialreels {
  position: relative; z-index: 5;
  overflow: hidden;
  background: var(--black);
  padding: clamp(80px, 12vh, 150px) var(--pad) clamp(60px, 9vh, 110px);
}
/* warm coral wash behind the strip */
.socialreels::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(58% 55% at 50% 62%, rgba(255,142,110,0.18), transparent 70%);
}
.sr-head { position: relative; z-index: 1; text-align: center; max-width: 720px; margin: 0 auto clamp(40px, 6vh, 68px); }
.sr-head .panel-kicker { color: var(--coral); opacity: 1; margin-bottom: 18px; }
.sr-title {
  font-family: var(--serif); font-weight: 900; font-style: italic;
  font-size: clamp(40px, 5vw, 72px);
  letter-spacing: -0.015em;
  margin-bottom: 18px;
}
.sr-sub { font-size: clamp(15px, 1.4vw, 18px); color: var(--grey); line-height: 1.65; }

.reels-row {
  position: relative; z-index: 1;
  display: flex; flex-wrap: wrap;
  justify-content: center; align-items: center;
  gap: clamp(14px, 2.2vw, 34px);
  max-width: 1280px; margin: 0 auto;
}
.reels-row .reel {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,142,110,0.22);
  box-shadow: 0 18px 50px rgba(0,0,0,0.5);
  outline: 2px solid transparent;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), outline-color 0.3s;
}
/* every clip keeps its OWN format — equal height, width follows the video, nothing cut */
.reels-row .filmcell-media {
  aspect-ratio: auto;
  height: clamp(260px, 38vh, 360px);
  width: max-content;
  border-radius: 18px;
}
.reels-row .filmcell-media video {
  height: 100%; width: auto;
  object-fit: contain;
  background: #0a0a0a;
}
/* playful scrapbook tilt; straighten + lift + coral ring on hover */
.reels-row .reel:nth-child(1) { transform: rotate(-2.4deg); }
.reels-row .reel:nth-child(2) { transform: rotate(1.6deg) translateY(-12px); }
.reels-row .reel:nth-child(3) { transform: rotate(-1.4deg); }
.reels-row .reel:hover {
  transform: rotate(0) translateY(-6px) scale(1.03);
  box-shadow: 0 28px 74px rgba(0,0,0,0.6);
  outline-color: var(--coral);
}
@media (max-width: 720px) {
  .reels-row .reel { width: min(86vw, 360px); transform: none !important; }
  .reels-row .filmcell-media { height: auto; width: 100%; }
  .reels-row .filmcell-media video { width: 100%; height: auto; }
}

/* ============================================================
   CONVICTION — founders
   ============================================================ */
.conviction {
  position: relative; z-index: 5;
  background: var(--black);
  padding: clamp(110px, 15vh, 190px) var(--pad);
  max-width: 1280px; margin: 0 auto;
}
.conviction-title {
  font-family: var(--serif); font-weight: 900;
  font-size: clamp(36px, 4.6vw, 62px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  max-width: 22ch;
  margin-bottom: clamp(54px, 8vh, 90px);
}
.conviction-title i { color: var(--coral); font-weight: 700; }
.founders {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 4vw, 64px);
}
.founder { display: grid; grid-template-columns: minmax(120px, 200px) 1fr; gap: clamp(20px, 2.5vw, 36px); align-items: start; }
.founder img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.founder blockquote {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.5;
  color: var(--grey);
  margin-bottom: 18px;
}
.founder figcaption { font-family: var(--mono); font-size: 12px; letter-spacing: 0.06em; color: var(--dim); }
.founder figcaption strong { display: block; font-family: var(--serif); font-style: normal; font-weight: 700; font-size: 17px; color: var(--white); letter-spacing: 0; margin-bottom: 3px; }

/* ============================================================
   PROCESS
   ============================================================ */
.process {
  position: relative; z-index: 5;
  background: var(--black);
  border-top: 1px solid var(--line-soft);
  padding: clamp(90px, 12vh, 150px) var(--pad);
  max-width: 1400px; margin: 0 auto;
}
.process-title {
  font-family: var(--serif); font-weight: 900;
  font-size: clamp(34px, 4vw, 56px);
  letter-spacing: -0.01em;
  margin-bottom: clamp(44px, 7vh, 80px);
}
.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 3vw, 44px);
}
.steps li { border-top: 1px solid var(--line); padding-top: 20px; }
.steps li > span {
  font-family: var(--mono); font-size: 12px;
  letter-spacing: 0.2em; color: var(--coral);
  display: block; margin-bottom: 14px;
}
.steps h3 { font-family: var(--serif); font-weight: 700; font-size: 21px; line-height: 1.25; margin-bottom: 10px; }
.steps p { font-size: 15px; color: var(--dim); }

/* ============================================================
   TEAM — gapless wall
   ============================================================ */
.team { position: relative; z-index: 5; background: var(--black); }
.team-head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  padding: clamp(60px, 9vh, 110px) var(--pad) clamp(36px, 5vh, 60px);
}
.team-head h2 {
  font-family: var(--serif); font-weight: 900;
  font-size: clamp(40px, 5vw, 72px);
  letter-spacing: -0.015em;
}
.team-head p { font-family: var(--mono); font-size: 12.5px; letter-spacing: 0.08em; color: var(--dim); }

.team-wall {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 0;
}
.mate { position: relative; overflow: hidden; }
.mate img {
  width: 100%; aspect-ratio: 1; object-fit: cover;
  filter: grayscale(1) brightness(0.9);
  transition: filter 0.5s, transform 0.7s var(--ease);
}
.mate:hover img { filter: grayscale(0) brightness(1.02); transform: scale(1.05); }
.mate figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 36px 14px 12px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em;
  opacity: 0; transition: opacity 0.35s;
}
.mate:hover figcaption { opacity: 1; }
.mate-join {
  display: flex; align-items: center; justify-content: center;
  aspect-ratio: 1;
  border: 1px solid var(--line-soft);
  font-family: var(--serif); font-style: italic; font-weight: 700;
  font-size: 24px; color: var(--coral);
  transition: background 0.3s, color 0.3s;
}
.mate-join:hover { background: var(--coral); color: var(--black); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  position: relative; z-index: 5;
  background: var(--black);
  text-align: center;
  padding: clamp(130px, 20vh, 240px) var(--pad);
}
.contact-kicker {
  font-family: var(--mono); font-size: 13px;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 30px;
}
.contact-mail { display: inline-block; }
.contact-mail span {
  display: inline-block;
  font-family: var(--serif); font-weight: 900;
  font-size: clamp(44px, 8vw, 120px);
  line-height: 1.04;
  letter-spacing: -0.015em;
  transition: color 0.3s;
}
.contact-mail i { font-style: italic; font-weight: 700; color: var(--coral); transition: color 0.3s; }
.contact-mail:hover span, .contact-mail:hover i { color: var(--coral); }
.contact-line {
  margin-top: 44px;
  font-family: var(--mono); font-size: 14px;
  color: var(--dim);
  display: flex; justify-content: center; gap: 16px; flex-wrap: wrap;
}
.contact-line em { color: var(--coral); font-style: normal; }
.contact-line a { border-bottom: 1px solid var(--line); padding-bottom: 2px; transition: color 0.25s, border-color 0.25s; }
.contact-line a:hover { color: var(--white); border-color: var(--coral); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  position: relative; z-index: 5;
  background: var(--black);
  border-top: 1px solid var(--line-soft);
  padding: clamp(50px, 7vh, 80px) var(--pad) 110px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 4vw, 60px);
  max-width: 1100px;
  margin-bottom: clamp(44px, 6vh, 70px);
}
.footer-grid h4 {
  font-family: var(--mono); font-weight: 400;
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 16px;
}
.footer-grid p { font-size: 15.5px; color: var(--grey); line-height: 1.8; }
.footer-grid a:hover { color: var(--coral); }
.footer-base {
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px; flex-wrap: wrap;
  border-top: 1px solid var(--line-soft);
  padding-top: 26px;
  font-family: var(--mono); font-size: 12px; color: var(--dim);
}
.footer-links { display: flex; gap: 26px; }
.footer-links a:hover { color: var(--white); }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed; inset: 0; z-index: 400;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0, 0, 0, 0.95);
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s;
  cursor: zoom-out;
  padding: 4vmin;
}
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox img {
  max-width: 92vw; max-height: 84vh;
  object-fit: contain;
}
.lightbox figcaption {
  font-family: var(--mono); font-size: 12.5px;
  color: var(--grey); text-align: center; margin-top: 18px;
  letter-spacing: 0.06em;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .mosaic { columns: 2; }
  .founders { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .mosaic { columns: 1; }
  .steps { grid-template-columns: 1fr; }
  .interlude-cols { grid-template-columns: 1fr; }
  .founder { grid-template-columns: 1fr; max-width: 380px; }
  .footer-grid { grid-template-columns: 1fr; }
  .team-wall { grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); }
  .bm-big { font-size: 26px; }
  .bm-sub { font-size: 7px; }
}
