/* ============================================================
   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-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); }
}
.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; }
}

/* 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(3, 1fr);
  gap: clamp(36px, 5vw, 80px);
  max-width: 1240px;
  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);
}

/* ============================================================
   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; }
}
