/* ============================================================
   3P Partners AG – Design System (cinematic / editorial)
   Vorbild: dunkle, bildstarke Premium-Ästhetik
   ============================================================ */

/* ---------- Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body,
h1, h2, h3, h4, h5, h6,
p, figure, blockquote, dl, dd, ul, ol {
  margin: 0;
}

ul[class], ol[class] { list-style: none; padding: 0; }

img, picture, svg, video {
  display: block;
  max-width: 100%;
}

input, button, textarea, select { font: inherit; }

a { color: inherit; text-decoration: none; }

button { cursor: pointer; background: none; border: 0; color: inherit; }

/* ---------- Tokens ---------- */
:root {
  --rich-black: #0a0a0a;
  --charcoal: #1a1a1a;
  --deep: #141414;
  --cream: #f0eeea;
  --cream-deep: #e8e6e1;
  --paper: #faf9f6;
  --white: #ffffff;
  --gold: #c9c3ba;
  --gold-deep: #a89f90;
  --muted: rgba(26, 26, 26, 0.62);
  --muted-light: rgba(255, 255, 255, 0.62);
  --line: rgba(26, 26, 26, 0.14);
  --line-dark: rgba(255, 255, 255, 0.16);

  --font-sans: "DM Sans", "Helvetica Neue", Arial, sans-serif;

  --wrap: min(1420px, 90vw);
  --header-h: 78px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Base ---------- */
body {
  font-family: var(--font-sans);
  font-size: 16.5px;
  font-weight: 400;
  line-height: 1.62;
  color: var(--charcoal);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.is-locked { overflow: hidden; }

::selection { background: var(--charcoal); color: var(--cream); }

:focus-visible {
  outline: 2px solid var(--gold-deep);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: -100px;
  left: 16px;
  z-index: 300;
  padding: 12px 18px;
  background: var(--rich-black);
  color: #fff;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* ---------- Typography ---------- */
.display {
  font-size: clamp(2.6rem, 6.6vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  font-weight: 300;
  text-wrap: balance;
}

h2.section-title {
  font-size: clamp(1.9rem, 4.2vw, 3.5rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
  font-weight: 300;
  text-wrap: balance;
}

h3.card-title {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.32;
  letter-spacing: -0.01em;
  font-weight: 500;
}

.serif {
  font-style: italic;
  font-weight: 300;
  letter-spacing: -0.01em;
}

.lead {
  font-size: clamp(1.02rem, 1.3vw, 1.16rem);
  line-height: 1.6;
  font-weight: 300;
  color: var(--muted);
}

.section-note {
  font-size: 0.94rem;
  font-weight: 300;
  color: var(--muted);
  max-width: 54ch;
}

.small { font-size: 0.9rem; }

/* ---------- Layout ---------- */
.wrap { width: var(--wrap); margin-inline: auto; }

.section { padding: clamp(80px, 9vw, 148px) 0; }
.section--tight { padding: clamp(56px, 6vw, 96px) 0; }
.section--white { background: var(--cream); }
.section--ice { background: var(--paper); }
.section--paper { background: var(--cream-deep); }
.section--dark { background: var(--rich-black); color: var(--cream); }
.section--dark .lead,
.section--dark .section-note { color: var(--muted-light); }

.section-head {
  display: grid;
  gap: 20px;
  margin-bottom: clamp(44px, 5vw, 72px);
}

.section-head--split {
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  align-items: end;
  gap: 32px 72px;
}

@media (max-width: 900px) {
  .section-head--split { grid-template-columns: 1fr; align-items: start; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--gold-deep);
  opacity: 0.9;
}
.section--dark .eyebrow { color: rgba(255, 255, 255, 0.6); }
.section--dark .eyebrow::before { background: var(--gold); }
.eyebrow--blue { color: var(--gold-deep); }

/* ---------- Text link ---------- */
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal);
  padding-bottom: 4px;
  position: relative;
}
.text-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold-deep);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.text-link svg { width: 14px; height: 14px; transition: transform 0.4s var(--ease); }
.text-link:hover::after { transform: scaleX(0.25); }
.text-link:hover svg { transform: translateX(5px); }
.section--dark .text-link { color: var(--cream); }
.section--dark .text-link::after { background: var(--gold); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 17px 30px;
  border-radius: 0;
  font-weight: 500;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1;
  border: 1px solid transparent;
  transition: background 0.4s var(--ease), color 0.4s var(--ease),
    border-color 0.4s var(--ease), transform 0.4s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 14px; height: 14px; transition: transform 0.4s var(--ease); }
.btn:hover svg { transform: translateX(5px); }

.btn--primary {
  background: var(--rich-black);
  color: var(--cream);
  border-color: var(--rich-black);
}
.btn--primary:hover { background: #2b2b2b; border-color: #2b2b2b; }

.btn--blue {
  background: var(--gold);
  color: var(--charcoal);
  border-color: var(--gold);
}
.btn--blue:hover { background: var(--gold-deep); border-color: var(--gold-deep); }

.btn--ghost {
  border-color: var(--line);
  color: var(--charcoal);
  background: transparent;
}
.btn--ghost:hover { border-color: var(--charcoal); }

.btn--light {
  background: var(--cream);
  color: var(--rich-black);
  border-color: var(--cream);
}
.btn--light:hover { background: var(--white); border-color: var(--white); }

.btn--outline-light {
  border-color: rgba(255, 255, 255, 0.36);
  color: #fff;
  background: transparent;
}
.btn--outline-light:hover { background: rgba(255, 255, 255, 0.1); border-color: #fff; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

/* ---------- Chips / Tags ---------- */
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  align-items: center;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.chip::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-deep);
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
}
.tag::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
}
.tag--active { color: #cfe3cd; }
.tag--planning { color: #e8d9bd; }
.tag--prep { color: rgba(255, 255, 255, 0.82); }

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed;
  inset: 0 0 auto 0;
  height: 1px;
  z-index: 220;
  background: transparent;
}
.scroll-progress span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--gold);
  transition: width 0.1s linear;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: var(--header-h);
  display: flex;
  align-items: center;
  color: #fff;
  transition: background 0.45s var(--ease), border-color 0.45s var(--ease),
    backdrop-filter 0.45s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(10, 10, 10, 0.82);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}
.site-header__inner {
  width: var(--wrap);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 34px;
}
.brand { display: inline-flex; align-items: center; flex-shrink: 0; }
.brand img { height: 26px; width: auto; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
}
.site-nav a {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.74);
  padding: 6px 0;
  position: relative;
  transition: color 0.3s var(--ease);
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease);
}
.site-nav a:hover { color: #fff; }
.site-nav a:hover::after { transform: scaleX(1); }
.site-nav a.is-active { color: #fff; }
.site-nav a.is-active::after { transform: scaleX(1); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-shrink: 0;
}
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.lang-switch a,
.lang-switch span { color: rgba(255, 255, 255, 0.55); transition: color 0.3s; }
.lang-switch .is-current { color: #fff; }
.lang-switch a:hover { color: #fff; }
.lang-switch a + a::before,
.lang-switch span + a::before { content: "·"; margin-right: 8px; color: rgba(255,255,255,.35); }

.header-login {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.74);
  transition: color 0.3s;
}
.header-login:hover { color: #fff; }

.header-cta { padding: 13px 24px; font-size: 0.68rem; }

.burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: transparent;
  position: relative;
  flex-shrink: 0;
  transition: border-color 0.3s;
}
.burger:hover { border-color: rgba(255, 255, 255, 0.7); }
.burger span {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 1px;
  background: #fff;
  transition: transform 0.4s var(--ease), opacity 0.25s;
}
.burger span:nth-child(1) { top: 17px; }
.burger span:nth-child(2) { bottom: 17px; }
.burger.is-open span:nth-child(1) { transform: translateY(4.5px) rotate(45deg); }
.burger.is-open span:nth-child(2) { transform: translateY(-4.5px) rotate(-45deg); }

/* ---------- Mobile menu ---------- */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 190;
  background: var(--rich-black);
  color: var(--cream);
  padding: calc(var(--header-h) + 40px) 0 40px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s var(--ease), visibility 0.5s;
  overflow-y: auto;
}
.menu-overlay.is-open { opacity: 1; visibility: visible; }
.menu-overlay__list {
  width: var(--wrap);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.menu-overlay__list a {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line-dark);
  font-size: clamp(1.5rem, 5.4vw, 2.4rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  transition: color 0.3s, padding-left 0.45s var(--ease);
}
.menu-overlay__list a:hover,
.menu-overlay__list a.is-active { color: var(--gold); padding-left: 12px; }
.menu-number {
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
}
.menu-overlay__foot {
  width: var(--wrap);
  margin: 36px auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 26px;
  align-items: center;
  justify-content: space-between;
  color: var(--muted-light);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
}
.menu-overlay__foot .btn { padding: 14px 24px; }
.menu-overlay__foot a:not(.btn):hover { color: #fff; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--rich-black);
  color: #fff;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  transform: scale(1.02);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0.14)),
    radial-gradient(ellipse 100% 80% at 50% 45%, transparent 20%, rgba(0, 0, 0, 0.08) 50%, rgba(0, 0, 0, 0.22) 100%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.12) 18%, rgba(0, 0, 0, 0.06) 40% 52%, rgba(0, 0, 0, 0.3) 74%, rgba(0, 0, 0, 0.72));
}
.hero__inner {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 26px;
  padding-top: calc(var(--header-h) + 60px);
  padding-bottom: clamp(40px, 6vh, 72px);
  max-width: 1060px;
}
.hero__title { max-width: 17ch; }
.hero__title .serif { color: rgba(255, 255, 255, 0.88); }
.hero__lead { color: rgba(255, 255, 255, 0.78); max-width: 62ch; }
.hero__panel {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(10, 10, 10, 0.42);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  padding: 22px 0;
}
.hero__panel-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 22px 48px;
  align-items: center;
  justify-content: space-between;
}
.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 54px;
}
.hero__stat { display: grid; gap: 2px; }
.hero__stat strong {
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1;
}
.hero__stat span {
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 30px;
  align-items: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.scroll-hint {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}
.scroll-hint i {
  display: inline-block;
  width: 1px;
  height: 26px;
  background: rgba(255, 255, 255, 0.35);
  position: relative;
  overflow: hidden;
}
.scroll-hint i::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: var(--gold);
  animation: scrollLine 2s infinite var(--ease);
}
@keyframes scrollLine {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(250%); }
}
.hero__visual, .hero__media, .hero__badge { display: none; }

/* ---------- Marquee ---------- */
.marquee {
  background: var(--rich-black);
  color: var(--cream);
  padding: 20px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 40s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__group { display: flex; align-items: center; flex-shrink: 0; }
.marquee__group span {
  display: inline-flex;
  align-items: center;
  gap: 30px;
  padding: 0 15px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.72);
}
.marquee__group span::after {
  content: "✦";
  font-size: 0.72rem;
  color: var(--gold-deep);
  letter-spacing: 0;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ---------- Intro / stats ---------- */
.intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  gap: clamp(40px, 5vw, 84px);
  align-items: center;
}
.intro__copy { display: grid; gap: 24px; }
.intro__copy p { color: var(--muted); font-weight: 300; }
.intro__copy p strong { color: var(--charcoal); font-weight: 500; }
.intro__media {
  overflow: hidden;
  aspect-ratio: 5 / 4;
  background: var(--cream-deep);
}
.intro__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92);
  transition: transform 1.1s var(--ease), filter 0.7s var(--ease);
}
.intro__media:hover img { transform: scale(1.035); filter: saturate(1); }

.stats {
  margin-top: clamp(48px, 5vw, 72px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 48px);
  border-top: 1px solid var(--line);
  padding-top: clamp(28px, 3vw, 40px);
}
.stat { display: grid; gap: 6px; }
.stat__number {
  font-size: clamp(2.1rem, 3.8vw, 3.2rem);
  font-weight: 300;
  letter-spacing: -0.035em;
  line-height: 1;
  color: var(--charcoal);
}
.stat__label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- Card grids ---------- */
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0; }

.grid-2, .grid-3, .grid-4 { border-bottom: 1px solid var(--line); }

.grid-2 > .card,
.grid-3 > .card,
.grid-4 > .card {
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
}
.grid-2 > .card:nth-child(2n),
.grid-3 > .card:nth-child(3n),
.grid-4 > .card:nth-child(4n) { border-right: 0; }

.section--dark .grid-2,
.section--dark .grid-3,
.section--dark .grid-4 { border-color: var(--line-dark); }
.section--dark .grid-2 > .card,
.section--dark .grid-3 > .card,
.section--dark .grid-4 > .card { border-color: var(--line-dark); }

.card {
  background: transparent;
  padding: clamp(26px, 2.6vw, 38px) clamp(22px, 2.2vw, 34px) clamp(30px, 3vw, 46px);
  display: grid;
  gap: 14px;
  align-content: start;
  position: relative;
  transition: background 0.5s var(--ease);
}
.card::after {
  content: "";
  position: absolute;
  left: clamp(22px, 2.2vw, 34px);
  bottom: 26px;
  width: 0;
  height: 1px;
  background: var(--gold-deep);
  transition: width 0.6s var(--ease);
}
.card:hover { background: rgba(26, 26, 26, 0.025); }
.card:hover::after { width: 44px; }
.card__number {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--gold-deep);
}
.card__icon {
  width: 40px;
  height: 40px;
  color: rgba(26, 26, 26, 0.35);
  display: grid;
  place-items: start;
}
.card__icon svg { width: 22px; height: 22px; }
.card p { color: var(--muted); font-size: 0.94rem; font-weight: 300; }
.card .text-link { margin-top: 10px; }

.card--dark { background: transparent; }
.card--dark p { color: var(--muted-light); }
.card--dark:hover { background: rgba(255, 255, 255, 0.03); }
.card--dark::after { background: var(--gold); }
.card--dark .card__number { color: var(--gold); }

.card-title, .section--dark .card-title { transition: color 0.4s var(--ease); }
.card:hover .card-title,
.card--dark:hover .card-title { color: var(--gold-deep); }
.section--dark .card:hover .card-title { color: var(--gold); }

.card--flat { background: transparent; border: 0 !important; padding-left: 0; padding-right: 0; }
.card--flat::after { display: none; }

/* ---------- Checklist ---------- */
.checklist { display: grid; gap: 0; border-top: 1px solid var(--line); }
.checklist li {
  position: relative;
  padding: 14px 0 14px 30px;
  color: var(--muted);
  font-weight: 300;
  border-bottom: 1px solid var(--line);
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 1.35em;
  width: 8px;
  height: 8px;
  border: 1px solid var(--gold-deep);
  border-radius: 50%;
}
.checklist strong { color: var(--charcoal); font-weight: 500; }
.checklist--dark { border-color: var(--line-dark); }
.checklist--dark li { color: var(--muted-light); border-color: var(--line-dark); }
.checklist--dark li::before { border-color: var(--gold); }
.checklist--dark strong { color: #fff; }

/* ---------- Numbered list rows ---------- */
.num-list { display: grid; }
.num-row {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 20px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
  transition: padding-left 0.5s var(--ease);
}
.num-row:first-child { border-top: 1px solid var(--line); }
.num-row:hover { padding-left: 10px; }
.num-row__num {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--gold-deep);
}
.num-row h3 { font-size: 1.05rem; font-weight: 500; letter-spacing: -0.01em; }
.num-row p { color: var(--muted); font-size: 0.94rem; font-weight: 300; }
.section--dark .num-row { border-color: var(--line-dark); }
.section--dark .num-row p { color: var(--muted-light); }
.section--dark .num-row__num { color: var(--gold); }

/* ---------- Split feature ---------- */
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(40px, 5vw, 84px);
  align-items: center;
}
.split--flip .split__media { order: 2; }
.split__copy { display: grid; gap: 22px; align-content: start; }
.split__media {
  overflow: hidden;
  aspect-ratio: 4 / 3.3;
  background: var(--cream-deep);
}
.split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92);
  transition: transform 1.1s var(--ease), filter 0.7s var(--ease);
}
.split__media:hover img { transform: scale(1.035); filter: saturate(1); }

/* ---------- Structure layers ---------- */
.layers { display: grid; }
.layer {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) auto;
  gap: clamp(20px, 3vw, 40px);
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left 0.5s var(--ease);
}
.layer:first-child { border-top: 1px solid var(--line); }
.layer:hover { padding-left: 12px; }
.layer__media {
  width: 150px;
  height: 96px;
  overflow: hidden;
  background: var(--cream-deep);
}
.layer__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.25) saturate(0.9);
  transition: transform 0.9s var(--ease), filter 0.6s var(--ease);
}
.layer:hover .layer__media img { transform: scale(1.05); filter: none; }
.layer__body h3 { font-size: 1.05rem; font-weight: 500; margin-bottom: 4px; }
.layer__body p { color: var(--muted); font-size: 0.94rem; font-weight: 300; }
.layer__index {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--gold-deep);
}

/* ---------- Portfolio ---------- */
.project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}
.project {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--rich-black);
  color: #fff;
  aspect-ratio: 16 / 10.5;
}
.project img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease), filter 0.7s var(--ease);
}
.project::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.82), rgba(10, 10, 10, 0.18) 45%, rgba(10, 10, 10, 0.05));
  transition: background 0.7s var(--ease);
}
.project:hover img { transform: scale(1.045); filter: brightness(1.06); }
.project:hover::after { background: linear-gradient(to top, rgba(10, 10, 10, 0.86), rgba(10, 10, 10, 0.28) 55%, rgba(10, 10, 10, 0.1)); }
.project__body {
  position: absolute;
  z-index: 1;
  inset: auto 0 0 0;
  padding: clamp(22px, 2.6vw, 34px);
  display: grid;
  gap: 8px;
}
.project__name {
  font-size: clamp(1.1rem, 1.7vw, 1.45rem);
  font-weight: 400;
  letter-spacing: -0.015em;
}
.project__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 26px;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}
.project__facts b { color: rgba(255, 255, 255, 0.92); font-weight: 500; }
.project__top {
  position: absolute;
  z-index: 1;
  top: clamp(20px, 2.4vw, 30px);
  left: clamp(22px, 2.6vw, 34px);
}
.project__arrow {
  position: absolute;
  z-index: 1;
  top: clamp(20px, 2.4vw, 30px);
  right: clamp(22px, 2.6vw, 34px);
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  display: grid;
  place-items: center;
  transition: background 0.4s var(--ease), color 0.4s var(--ease), transform 0.5s var(--ease);
}
.project__arrow svg { width: 14px; height: 14px; }
.project:hover .project__arrow { background: var(--cream); color: var(--rich-black); transform: rotate(45deg); }

/* ---------- Map block ---------- */
.map-block {
  margin-top: 1px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
  background: var(--paper);
  padding: clamp(30px, 4.4vw, 64px);
}
.map-block__media { overflow: hidden; background: var(--cream-deep); }
.map-block__media img { width: 100%; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  overflow: hidden;
  background: var(--rich-black);
  color: #fff;
  padding: clamp(44px, 6vw, 88px);
  display: grid;
  gap: 28px;
  justify-items: start;
}
.cta-band::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -12%;
  width: 48%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 195, 186, 0.16), transparent 65%);
  pointer-events: none;
}
.cta-band > * { position: relative; }
.cta-band h2 {
  font-size: clamp(1.9rem, 4vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
  font-weight: 300;
  max-width: 24ch;
}
.cta-band p { color: rgba(255, 255, 255, 0.68); max-width: 58ch; font-weight: 300; }
.cta-band .checklist { width: 100%; max-width: 560px; }
.cta-band .checklist li { font-weight: 300; }

/* ---------- News ---------- */
.news-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; background: var(--line); }
.news-card {
  display: grid;
  grid-template-rows: auto 1fr;
  background: var(--cream);
  overflow: hidden;
  transition: background 0.5s var(--ease);
}
.news-card:hover { background: var(--paper); }
.news-card__media { aspect-ratio: 16 / 10; overflow: hidden; background: var(--cream-deep); }
.news-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92);
  transition: transform 1s var(--ease), filter 0.7s var(--ease);
}
.news-card:hover .news-card__media img { transform: scale(1.045); filter: saturate(1); }
.news-card__body { padding: 26px clamp(20px, 2vw, 30px) 32px; display: grid; gap: 14px; align-content: start; }
.news-card__date {
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.news-card__title {
  font-size: 1.12rem;
  font-weight: 400;
  line-height: 1.32;
  letter-spacing: -0.015em;
  transition: color 0.4s var(--ease);
}
.news-card:hover .news-card__title { color: var(--gold-deep); }
.news-card__excerpt { color: var(--muted); font-size: 0.92rem; font-weight: 300; }
.news-card .text-link { margin-top: 4px; }

/* ---------- FAQ / Accordion ---------- */
.accordion { display: grid; border-top: 1px solid var(--line); }
.accordion details { border-bottom: 1px solid var(--line); }
.accordion summary {
  list-style: none;
  cursor: pointer;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 22px 0;
  font-weight: 400;
  font-size: 1.02rem;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion .faq-num {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--gold-deep);
}
.accordion .faq-icon {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  transition: transform 0.4s var(--ease), background 0.35s, color 0.35s;
}
.accordion details[open] .faq-icon { transform: rotate(45deg); background: var(--rich-black); color: var(--cream); border-color: var(--rich-black); }
.accordion .faq-icon svg { width: 14px; height: 14px; }
.accordion .faq-answer { padding: 0 0 26px 72px; color: var(--muted); max-width: 78ch; font-weight: 300; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(36px, 5vw, 84px);
  align-items: start;
}
.contact-info { display: grid; gap: 0; align-content: start; border-top: 1px solid var(--line); }
.contact-item {
  display: grid;
  gap: 4px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.contact-item span {
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.contact-item a, .contact-item strong { font-size: 1.05rem; font-weight: 400; }
.contact-item a:hover { color: var(--gold-deep); }
.contact-info .section-note { margin-top: 24px; }

.form {
  background: transparent;
  padding: 0;
  display: grid;
  gap: 26px;
}
.form__row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px; }
.field { display: grid; gap: 8px; }
.field label {
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.field input,
.field textarea {
  width: 100%;
  padding: 12px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  color: var(--charcoal);
  transition: border-color 0.35s var(--ease);
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus,
.field textarea:focus {
  outline: none;
  border-bottom-color: var(--charcoal);
}
.checkbox {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--muted);
}
.checkbox input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--rich-black);
}
.checkbox a { color: var(--charcoal); text-decoration: underline; text-underline-offset: 3px; }
.form__success {
  display: none;
  padding: 16px 18px;
  background: rgba(26, 26, 26, 0.05);
  border-left: 2px solid var(--gold-deep);
  color: var(--charcoal);
  font-weight: 400;
  font-size: 0.92rem;
}
.form__success.is-visible { display: block; }

/* ---------- Disclaimer ---------- */
.disclaimer-box {
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  padding: clamp(30px, 4vw, 48px) 0;
  display: grid;
  gap: 18px;
}
.disclaimer-box p { color: var(--muted-light); font-size: 0.96rem; font-weight: 300; }
.disclaimer-box .btn-row { margin-top: 8px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--rich-black);
  color: var(--cream);
  padding: clamp(64px, 7vw, 110px) 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) repeat(3, minmax(0, 1fr));
  gap: clamp(36px, 4vw, 64px);
  padding-bottom: clamp(48px, 5vw, 72px);
  border-bottom: 1px solid var(--line-dark);
}
.footer-brand { display: grid; gap: 24px; align-content: start; justify-items: start; }
.footer-brand img { height: 30px; width: auto; }
.footer-brand p { color: var(--muted-light); font-size: 0.94rem; font-weight: 300; max-width: 36ch; }
.footer-col h4 {
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul { display: grid; gap: 12px; }
.footer-col a, .footer-col span { color: rgba(255, 255, 255, 0.82); font-size: 0.95rem; font-weight: 300; }
.footer-col a:hover { color: #fff; text-decoration: underline; text-underline-offset: 4px; }

.footer-wordmark {
  padding: clamp(32px, 4vw, 56px) 0 clamp(20px, 2vw, 28px);
  font-size: clamp(3.4rem, 15vw, 12rem);
  line-height: 0.9;
  font-weight: 300;
  letter-spacing: -0.05em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.24);
  user-select: none;
}
.footer-wordmark em {
  font-style: italic;
  font-weight: 300;
  -webkit-text-stroke: 1px rgba(201, 195, 186, 0.6);
}
@supports not (-webkit-text-stroke: 1px black) {
  .footer-wordmark { color: rgba(255, 255, 255, 0.14); }
  .footer-wordmark em { color: rgba(201, 195, 186, 0.28); }
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 30px;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0 34px;
  border-top: 1px solid var(--line-dark);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.footer-bottom ul { display: flex; flex-wrap: wrap; gap: 10px 24px; }
.footer-bottom a:hover { color: #fff; }

/* ---------- Page hero (inner) ---------- */
.page-hero {
  position: relative;
  background: var(--rich-black);
  color: #fff;
  padding: calc(var(--header-h) + clamp(88px, 12vw, 168px)) 0 clamp(64px, 8vw, 120px);
  overflow: hidden;
  min-height: 62vh;
  display: flex;
  align-items: flex-end;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom, rgba(10, 10, 10, 0.5), rgba(10, 10, 10, 0.2) 30%, rgba(10, 10, 10, 0.66));
}
.page-hero::after {
  content: "";
  position: absolute;
  top: -30%;
  right: -8%;
  z-index: 1;
  width: 55%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 195, 186, 0.14), transparent 65%);
  pointer-events: none;
}
.page-hero--image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  z-index: 0;
  filter: saturate(0.9);
}
.page-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 24px;
  max-width: 980px;
}
.page-hero h1 {
  font-size: clamp(2.3rem, 5.6vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 300;
  text-wrap: balance;
}
.page-hero h1 .serif { color: rgba(255, 255, 255, 0.85); }
.page-hero .lead { color: rgba(255, 255, 255, 0.72); max-width: 62ch; }
.page-hero .eyebrow { color: rgba(255, 255, 255, 0.6); }

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { color: rgba(255, 255, 255, 0.85); }

/* ---------- Article ---------- */
.article-hero__media {
  overflow: hidden;
  background: var(--cream-deep);
  aspect-ratio: 16 / 8;
}
.article-hero__media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.94); }

.article-body { display: grid; gap: 28px; }
.prose { max-width: 740px; display: grid; gap: 22px; }
.prose h4 {
  font-size: clamp(1.2rem, 1.9vw, 1.55rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.24;
  margin-top: 22px;
}
.prose p { color: #3a3835; font-weight: 300; }
.prose ul { display: grid; gap: 12px; }
.prose ul li { position: relative; padding-left: 26px; color: #3a3835; font-weight: 300; }
.prose ul li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 0.7em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: 1px solid var(--gold-deep);
}
.prose a { color: var(--charcoal); text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: var(--gold-deep); }
.prose .sources { display: grid; gap: 10px; }
.prose .sources p { font-size: 0.92rem; color: var(--muted); }

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  align-items: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.article-meta .tag { color: rgba(255, 255, 255, 0.8); }

/* ---------- Legal ---------- */
.legal { max-width: 800px; display: grid; gap: 22px; }
.legal h2 {
  font-size: clamp(1.25rem, 2.1vw, 1.65rem);
  letter-spacing: -0.02em;
  font-weight: 400;
  margin-top: 22px;
}
.legal h3 { font-size: 1.05rem; font-weight: 500; margin-top: 10px; }
.legal p, .legal li { color: #3a3835; font-weight: 300; }
.legal ul { display: grid; gap: 8px; padding-left: 20px; list-style: none; }
.legal ul li { position: relative; padding-left: 18px; }
.legal ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: 1px solid var(--gold-deep);
}
.legal a { color: var(--charcoal); text-decoration: underline; text-underline-offset: 3px; }
.legal a:hover { color: var(--gold-deep); }

/* ---------- Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition-delay: var(--d, 0s);
  will-change: opacity, transform;
}
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee__track { animation: none; }
  .scroll-hint i::after { animation: none; }
  .project img, .intro__media img, .split__media img, .news-card__media img { transition: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .site-nav { display: none; }
  .burger { display: block; }
  .header-login { display: none; }
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-4 > .card:nth-child(4n) { border-right: 1px solid var(--line); }
  .grid-4 > .card:nth-child(2n) { border-right: 0; }
  .section--dark .grid-4 > .card:nth-child(4n) { border-right-color: var(--line-dark); }
  .footer-top { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 960px) {
  .intro__grid, .split, .contact-grid { grid-template-columns: 1fr; }
  .split--flip .split__media { order: 0; }
  .news-grid, .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-3 > .card:nth-child(3n) { border-right: 1px solid var(--line); }
  .grid-3 > .card:nth-child(2n) { border-right: 0; }
  .section--dark .grid-3 > .card:nth-child(3n) { border-right-color: var(--line-dark); }
  .map-block { grid-template-columns: 1fr; }
  .hero__panel-inner { gap: 18px 32px; }
}

@media (max-width: 700px) {
  body { font-size: 16px; }
  .grid-2, .grid-3, .grid-4, .project-grid { grid-template-columns: 1fr; }
  .grid-2 > .card, .grid-3 > .card, .grid-4 > .card { border-right: 0 !important; }
  .news-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; gap: 26px; }
  .layer { grid-template-columns: 90px minmax(0, 1fr); }
  .layer__media { width: 90px; height: 70px; }
  .layer__index { display: none; }
  .form__row { grid-template-columns: 1fr; }
  .footer-bottom { font-size: 0.68rem; }
  .header-cta { display: none; }
  .page-hero { min-height: 52vh; }
  .num-row { grid-template-columns: 46px minmax(0, 1fr); }
  .contact-info .section-note { margin-top: 18px; }
}

@media (max-width: 480px) {
  .btn { width: 100%; }
  .btn-row { width: 100%; }
  .hero__stats { gap: 14px 26px; }
  .hero__stat strong { font-size: 1.1rem; }
  .hero__meta { display: none; }
}
