/* ==========================================================================
   InteriorLine — High-End Edition
   Inter only · editorial · brutal animations
   ========================================================================== */

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

:root {
  --ink: #0A0A0A;
  --ink-2: #1a1a1a;
  --paper: #FAFAF7;
  --paper-2: #F0EFEA;
  --paper-3: #E8E5DD;
  --line: #D4D0C5;
  --line-soft: #E8E5DE;
  --mute: #6B665C;
  --mute-2: #9A958A;
  --accent: #C4A572;
  --accent-2: #8B6F47;
  --hot: #E84E1B;
  --font: 'Inter', system-ui, sans-serif;
  --max: 1480px;
  --r-sm: 8px;
  --r: 16px;
  --r-lg: 24px;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--font);
  font-feature-settings: "ss01", "cv11", "ss03";
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

::selection { background: var(--ink); color: var(--accent); }

/* ===================== TYPOGRAPHY HELPERS ===================== */
.display {
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.96;
}
.display-xl { font-size: clamp(40px, 7.5vw, 124px); font-weight: 600; letter-spacing: -0.05em; line-height: 0.94; }
.display-l { font-size: clamp(36px, 5vw, 80px); font-weight: 600; letter-spacing: -0.04em; line-height: 0.98; }
.display-m { font-size: clamp(28px, 3.5vw, 56px); font-weight: 600; letter-spacing: -0.035em; line-height: 1.02; }
.display-s { font-size: clamp(22px, 2.2vw, 36px); font-weight: 600; letter-spacing: -0.025em; line-height: 1.08; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
}
.eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--accent);
}
.eyebrow.on-dark { color: var(--accent); }
.eyebrow.on-dark::before { background: var(--accent); }

.lead {
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.55;
  color: var(--mute);
  font-weight: 400;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 100px;
  color: var(--mute);
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(8px);
}

/* ===================== MARQUEE ===================== */
.marquee {
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
  border-bottom: 1px solid #1f1f1f;
}
.marquee-track {
  display: flex;
  gap: 48px;
  padding: 12px 0;
  animation: scroll 32s linear infinite;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.marquee-track > * {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.marquee-track > *::after {
  content: '◆';
  color: var(--accent);
  font-size: 6px;
  margin-left: 48px;
  opacity: 0.6;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===================== HEADER ===================== */
.nav {
  position: sticky;
  top: 0;
  background: rgba(250, 250, 247, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  z-index: 100;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  transition: all 0.4s;
}
.nav.scrolled {
  background: rgba(250, 250, 247, 0.95);
}
.nav-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 18px 32px;
  max-width: var(--max);
  margin: 0 auto;
  gap: 48px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 0;
  transition: opacity 0.3s;
}
.brand:hover { opacity: 0.7; }
.brand img {
  height: 64px;
  width: auto;
  object-fit: contain;
}
.brand-text {
  font-family: var(--font);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ink);
  line-height: 1;
  white-space: nowrap;
}

.nav-menu {
  display: flex;
  gap: 4px;
  justify-self: center;
  background: rgba(0,0,0,0.04);
  padding: 4px;
  border-radius: 100px;
  border: 1px solid rgba(0,0,0,0.04);
}
.nav-menu a {
  font-size: 13px;
  font-weight: 500;
  padding: 10px 18px;
  border-radius: 100px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  color: var(--ink);
  position: relative;
}
.nav-menu a:hover { background: rgba(255,255,255,0.5); }
.nav-menu a.active {
  background: var(--ink);
  color: var(--paper);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: var(--ink);
  color: var(--paper);
  font-size: 13px;
  font-weight: 600;
  border-radius: 100px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid var(--ink);
}
.nav-cta:hover {
  background: var(--accent);
  color: var(--ink);
  border-color: var(--accent);
  transform: translateY(-1px);
}
.nav-cta svg { width: 14px; height: 14px; }

.burger {
  display: none;
  width: 44px; height: 44px;
  border-radius: 100px;
  background: var(--ink);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.burger span { width: 16px; height: 1.5px; background: var(--paper); transition: all 0.3s; }
.burger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--ink);
  color: var(--paper);
  z-index: 99;
  padding: 100px 32px 32px;
  transform: translateY(-100%);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.6s cubic-bezier(0.7, 0, 0.3, 1), visibility 0s linear 0.6s, opacity 0.4s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.mobile-menu.open {
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition: transform 0.6s cubic-bezier(0.7, 0, 0.3, 1), visibility 0s, opacity 0.3s;
}
.mobile-menu nav { display: flex; flex-direction: column; gap: 0; }
.mobile-menu nav a {
  font-size: clamp(36px, 8vw, 64px);
  font-weight: 600;
  letter-spacing: -0.04em;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mobile-menu nav a span { font-size: 12px; opacity: 0.4; font-weight: 400; }
.mobile-menu-foot { font-size: 14px; color: rgba(255,255,255,0.5); display: flex; flex-direction: column; gap: 8px; }
.mobile-menu-foot a { color: var(--accent); }

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 28px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  border-radius: 100px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}
.btn svg { width: 14px; height: 14px; transition: transform 0.4s; }
.btn:hover svg { transform: translateX(4px); }

.btn-dark {
  background: var(--ink);
  color: var(--paper);
}
.btn-dark:hover { background: var(--accent); color: var(--ink); }

.btn-light {
  background: var(--paper);
  color: var(--ink);
}
.btn-light:hover { background: var(--accent); transform: translateY(-2px); box-shadow: 0 16px 40px -12px rgba(196,165,114,0.5); }

.btn-ghost {
  background: rgba(255,255,255,0.08);
  color: var(--paper);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.16); border-color: rgba(255,255,255,0.4); }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--paper); }

.btn-lg { padding: 20px 36px; font-size: 15px; }

/* ===================== HERO ===================== */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--paper);
  display: grid;
  grid-template-rows: 1fr auto;
  padding: 32px;
  gap: 32px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}
.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px 0;
}
.hero-headline { margin-bottom: 32px; }
.hero-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: auto;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.hero-meta-item h4 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.005em;
  margin-bottom: 4px;
}
.hero-meta-item p {
  font-size: 13px;
  color: var(--mute);
  line-height: 1.5;
}

.hero-visual {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--ink);
  min-height: 540px;
}
.hero-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transform: scale(1.05);
  animation: heroZoom 12s ease-out forwards;
}
@keyframes heroZoom {
  to { transform: scale(1); }
}
.hero-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 60%, rgba(0,0,0,0.7) 100%);
  z-index: 1;
}
.hero-visual-card {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  z-index: 2;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  padding: 20px 24px;
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.hero-visual-card-text strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
}
.hero-visual-card-text span {
  font-size: 12px;
  color: var(--mute);
}
.hero-visual-card-arrow {
  width: 44px; height: 44px;
  border-radius: 100px;
  background: var(--ink);
  color: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  flex-shrink: 0;
}
.hero-visual-card:hover .hero-visual-card-arrow { background: var(--accent); color: var(--ink); transform: rotate(-45deg); }
.hero-visual-card-arrow svg { width: 16px; height: 16px; transition: transform 0.3s; }

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 32px;
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--r-lg);
}
.hero-stat {
  padding: 0 24px;
  border-right: 1px solid rgba(255,255,255,0.1);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
}
.hero-stat:hover { transform: translateY(-2px); }
.hero-stat:hover .hero-stat-num { color: var(--accent); transition: color 0.3s; }
.hero-stat:hover .hero-stat-label { color: rgba(255,255,255,0.85); transition: color 0.3s; }
.hero-stat:last-child { border-right: none; }
.hero-stat-num {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-bottom: 4px;
  font-feature-settings: "tnum";
}
.hero-stat-num span { color: var(--accent); }
.hero-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
}

/* ===================== SECTION ===================== */
section { padding: 96px 32px; position: relative; }
.wrap { max-width: var(--max); margin: 0 auto; }

.section-head-2col {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
  align-items: end;
}
.section-head-center {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}
.section-head-center .lead { margin-top: 18px; }
.section-head-2col .eyebrow { margin-bottom: 20px; }

/* ===================== BENTO GRID ===================== */
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(180px, auto);
  gap: 16px;
}
.bento-cell {
  background: var(--paper-2);
  border-radius: var(--r-lg);
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1), background 0.4s;
  cursor: default;
}
.bento-cell:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -16px rgba(0,0,0,0.18);
}
.bento-cell:hover .bento-num { color: var(--accent-2); transition: color 0.3s; }
.bento-cell.cell-dark:hover .bento-num { color: var(--accent); }
.bento-cell:hover .bento-icon {
  background: var(--ink);
  color: var(--paper);
  transform: rotate(-8deg) scale(1.05);
}
.bento-cell.cell-dark:hover .bento-icon { background: var(--accent); color: var(--ink); }
.bento-cell.cell-accent:hover { background: var(--ink); color: var(--paper); }
.bento-cell.cell-accent:hover h3, .bento-cell.cell-accent:hover .bento-num { color: var(--paper); }
.bento-cell.cell-accent:hover p { color: rgba(255,255,255,0.7); }
.bento-cell.cell-accent:hover .bento-num span { color: var(--accent); }

.bento-cell.cell-img {
  padding: 0;
  background: var(--ink);
}
.bento-cell.cell-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.bento-cell.cell-img:hover img { transform: scale(1.06); }
.bento-cell.cell-img .bento-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.8));
  padding: 28px;
  display: flex;
  align-items: flex-end;
  z-index: 2;
}
.bento-cell.cell-img .bento-overlay h4 {
  color: var(--paper);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.bento-cell.cell-img .bento-overlay p {
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  margin-top: 4px;
}

.bento-cell.cell-dark {
  background: var(--ink);
  color: var(--paper);
}
.bento-cell.cell-accent {
  background: var(--accent);
  color: var(--ink);
}

.cell-2 { grid-column: span 2; }
.cell-3 { grid-column: span 3; }
.cell-4 { grid-column: span 4; }
.cell-6 { grid-column: span 6; }

.cell-tall { grid-row: span 2; }
.cell-tall-3 { grid-row: span 3; }

.bento-num {
  font-size: clamp(56px, 6vw, 96px);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 0.9;
  margin-bottom: 16px;
}
.bento-num span { color: var(--accent); }
.bento-cell h3 {
  font-size: clamp(20px, 1.8vw, 28px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 12px;
}
.bento-cell p { font-size: 14px; line-height: 1.55; color: var(--mute); }
.bento-cell.cell-dark p { color: rgba(255,255,255,0.6); }
.bento-cell.cell-accent p { color: rgba(0,0,0,0.7); }

.bento-icon {
  width: 56px; height: 56px;
  border-radius: 100px;
  background: rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.bento-cell.cell-dark .bento-icon { background: rgba(255,255,255,0.1); }
.bento-icon svg { width: 24px; height: 24px; }

.bento-quote {
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.25;
  margin-bottom: 24px;
}
.bento-quote em { font-style: italic; font-weight: 400; color: var(--accent); }

/* ===================== SHOWREEL ===================== */
.showreel {
  position: relative;
  padding: 96px 32px;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
}
.showreel-headline {
  position: relative;
  z-index: 2;
  margin-bottom: 80px;
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}
.showreel-headline .display-xl em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}

.scroll-marquee {
  position: relative;
  margin: 24px -32px;
  overflow: hidden;
  white-space: nowrap;
}
.scroll-marquee-track {
  display: inline-flex;
  gap: 24px;
  padding-right: 24px;
  animation: scrollMarq 28s linear infinite;
}
.scroll-marquee-track > * {
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 600;
  letter-spacing: -0.03em;
  display: inline-flex;
  align-items: center;
  gap: 24px;
}
.scroll-marquee-track > *::after {
  content: '✦';
  color: var(--accent);
  font-size: 0.45em;
}
.scroll-marquee.reverse .scroll-marquee-track {
  animation-direction: reverse;
}
@keyframes scrollMarq {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===================== CATEGORIES SPLIT ===================== */
.split-cats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 0 32px;
}
.split-cat {
  position: relative;
  height: clamp(520px, 65vh, 720px);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--ink);
  cursor: pointer;
}
.split-cat img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.split-cat:hover img { transform: scale(1.06); }
.split-cat::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 25%, rgba(0,0,0,0.85) 100%);
  z-index: 1;
}
.split-cat-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--paper);
}
.split-cat-tag {
  align-self: flex-start;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--paper);
  padding: 8px 14px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.split-cat-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
}
.split-cat-bottom h3 {
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.95;
  flex: 1;
}
.split-cat-arrow {
  width: 64px; height: 64px;
  border-radius: 100px;
  background: rgba(255,255,255,0.95);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.4s;
}
.split-cat:hover .split-cat-arrow { background: var(--accent); transform: rotate(-45deg); }
.split-cat-arrow svg { width: 20px; height: 20px; }

/* ===================== SLIDER (Hero) ===================== */
.slides {
  position: relative;
  width: 100%;
  height: 100%;
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.2s ease, visibility 1.2s ease;
}
.slide.active { opacity: 1; visibility: visible; }
.slide-dots {
  position: absolute;
  bottom: 24px;
  right: 24px;
  z-index: 5;
  display: flex;
  gap: 8px;
}
.slide-dot {
  width: 32px;
  height: 4px;
  border-radius: 100px;
  background: rgba(255,255,255,0.3);
  transition: all 0.4s;
}
.slide-dot.active { background: var(--accent); width: 48px; }

/* ===================== PROCESS TIMELINE ===================== */
.process {
  background: var(--paper-2);
  position: relative;
  overflow: hidden;
}
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.process-row {
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  gap: 48px;
  padding: 48px 0;
  border-top: 1px solid var(--line);
  align-items: start;
  transition: background 0.3s;
  position: relative;
}
.process-row:hover { background: rgba(255,255,255,0.4); }
.process-row:hover .process-num { color: var(--accent); transform: translateX(8px); }
.process-row::before {
  content: '';
  position: absolute;
  left: -32px; right: -32px;
  top: 0;
  height: 1px;
  background: var(--ink);
  transform: scaleX(1);
  transform-origin: left;
}
.process-num {
  font-size: 64px;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--mute-2);
  line-height: 1;
  font-feature-settings: "tnum";
  transition: all 0.4s;
}
.process-row h3 {
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 12px;
}
.process-row p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--mute);
  max-width: 480px;
}
.process-meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.process-meta-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line-soft);
}
.process-meta-row span:first-child { color: var(--mute); }
.process-meta-row span:last-child { font-weight: 500; }

/* ===================== TRUST/SECURITY ===================== */
.trust-section { background: var(--paper); padding: 96px 32px; }
.trust-wrap { max-width: var(--max); margin: 0 auto; }
.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.trust-image {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.trust-image img { width: 100%; height: 100%; object-fit: cover; }
.trust-image-badge {
  position: absolute;
  top: 24px; right: 24px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  padding: 14px 18px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}
.trust-image-badge .dot {
  width: 8px; height: 8px;
  background: #34c759;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(52,199,89,0.5); }
  50% { box-shadow: 0 0 0 8px rgba(52,199,89,0); }
}

.trust-list { list-style: none; margin-top: 48px; }
.trust-list li {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  padding: 28px 12px 28px 0;
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: padding 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.trust-list li:hover { padding-left: 12px; }
.trust-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 0; height: 100%;
  background: var(--accent);
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.trust-list li:hover::before { width: 3px; }

.trust-list-num {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--accent-2);
  line-height: 1;
  font-feature-settings: "tnum";
  transition: color 0.4s, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.trust-list li:hover .trust-list-num { color: var(--accent); transform: scale(1.15) translateX(4px); }
.trust-list li:hover .trust-list-content h4 { color: var(--accent-2); transition: color 0.3s; }
.trust-list-content h4 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 6px;
}
.trust-list-content p { font-size: 14px; line-height: 1.6; color: var(--mute); }

/* ===================== TESTIMONIALS ===================== */
.testi {
  background: var(--ink);
  color: var(--paper);
  padding: 120px 0;
  overflow: hidden;
}
.testi-head {
  max-width: var(--max);
  margin: 0 auto 80px;
  padding: 0 32px;
}
.testi-track-wrap {
  width: 100vw;
  overflow: hidden;
  cursor: grab;
  -webkit-mask-image: linear-gradient(to right, transparent 0, black 80px, black calc(100% - 80px), transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, black 80px, black calc(100% - 80px), transparent 100%);
}
.testi-track-wrap:active { cursor: grabbing; }
.testi-track {
  display: flex;
  gap: 20px;
  padding: 0 32px;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}
.testi-card {
  flex: 0 0 auto;
  width: clamp(320px, 36vw, 460px);
  background: var(--ink-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--r-lg);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: all 0.4s;
}
.testi-card:hover {
  background: #222;
  border-color: rgba(196,165,114,0.3);
  transform: translateY(-4px);
}
.testi-stars { display: flex; gap: 3px; color: var(--accent); }
.testi-stars svg { width: 16px; height: 16px; fill: currentColor; }
.testi-quote {
  font-size: 17px;
  line-height: 1.55;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--paper);
  flex: 1;
}
.testi-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.testi-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  flex-shrink: 0;
}
.testi-meta-info { flex: 1; }
.testi-name { font-size: 13px; font-weight: 600; }
.testi-role { font-size: 12px; color: rgba(255,255,255,0.5); }
.testi-source {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* ===================== PARTNERS ===================== */
.partners-section { background: var(--paper); padding: 80px 32px 120px; }
.partners-wrap { max-width: var(--max); margin: 0 auto; }
.partners-row {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 12px;
  margin-top: 40px;
}
.partner-cell {
  aspect-ratio: 1.4/1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  border-radius: var(--r);
  background: var(--paper-2);
  transition: all 0.3s;
}
.partner-cell:hover { background: var(--paper-3); }
.partner-cell img {
  max-width: 75%;
  max-height: 50%;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.5);
  transition: filter 0.4s;
}
.partner-cell:hover img { filter: grayscale(0%) opacity(1); }

/* ===================== FAQ ===================== */
.faq-section { background: var(--paper-2); padding: 96px 32px; }
.faq-wrap { max-width: 980px; margin: 0 auto; }
.faq-list { margin-top: 60px; }
.faq-item {
  border-top: 1px solid var(--line);
  cursor: pointer;
  transition: background 0.3s;
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 32px 0;
  font-size: clamp(18px, 1.6vw, 24px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.3;
  transition: color 0.3s;
}
.faq-item:hover .faq-q { color: var(--accent-2); }
.faq-toggle {
  width: 44px; height: 44px;
  border-radius: 100px;
  background: var(--paper);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.4s;
  position: relative;
}
.faq-item.open .faq-toggle { background: var(--ink); border-color: var(--ink); }
.faq-toggle::before, .faq-toggle::after {
  content: '';
  position: absolute;
  background: var(--ink);
  transition: all 0.4s;
}
.faq-toggle::before { width: 14px; height: 1.5px; }
.faq-toggle::after { width: 1.5px; height: 14px; }
.faq-item.open .faq-toggle::before, .faq-item.open .faq-toggle::after { background: var(--paper); }
.faq-item.open .faq-toggle::after { transform: rotate(90deg); opacity: 0; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-item.open .faq-a { max-height: 600px; }
.faq-a-inner {
  padding: 0 0 32px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--mute);
  max-width: 80%;
}

/* ===================== CTA FINAL ===================== */
.cta-final {
  padding: 32px;
  background: var(--paper);
}
.cta-final-inner {
  max-width: var(--max);
  margin: 0 auto;
  background: var(--ink);
  border-radius: var(--r-lg);
  padding: 100px 64px;
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.cta-final-inner::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(196,165,114,0.25) 0%, transparent 60%);
  pointer-events: none;
}
.cta-final-inner::after {
  content: '';
  position: absolute;
  bottom: -300px; left: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(196,165,114,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.cta-final-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.cta-final-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cta-option {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 22px 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.cta-option:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--accent);
  transform: translateX(8px);
}
.cta-option-icon {
  width: 48px; height: 48px;
  border-radius: 100px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.4s;
}
.cta-option:hover .cta-option-icon { transform: rotate(-8deg) scale(1.05); }
.cta-option-icon.wa { background: #25D366; }
.cta-option-icon svg { width: 20px; height: 20px; fill: var(--ink); }
.cta-option-icon.wa svg { fill: var(--paper); }
.cta-option-content { color: var(--paper); }
.cta-option-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 2px;
  font-weight: 600;
}
.cta-option-value { font-size: 16px; font-weight: 600; }
.cta-option-arrow { color: rgba(255,255,255,0.3); font-size: 18px; transition: all 0.3s; }
.cta-option:hover .cta-option-arrow { color: var(--accent); transform: translateX(4px); }

/* ===================== FOOTER ===================== */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.5);
  padding: 100px 32px 40px;
  position: relative;
  overflow: hidden;
}
.footer-mega {
  font-size: clamp(56px, 12vw, 160px);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 0.88;
  color: var(--paper);
  margin-bottom: 64px;
  pointer-events: none;
  user-select: none;
}
.footer-mega em { font-style: italic; font-weight: 400; color: var(--accent); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 64px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.footer-brand img {
  height: 72px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.footer-brand-text {
  font-family: var(--font);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--paper);
  line-height: 1;
}
.footer-tag {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 320px;
  color: rgba(255,255,255,0.5);
}
.footer-socials { display: flex; gap: 8px; }
.footer-social {
  width: 40px; height: 40px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.footer-social:hover { background: var(--accent); border-color: var(--accent); }
.footer-social:hover svg { fill: var(--ink); }
.footer-social svg { width: 14px; height: 14px; fill: rgba(255,255,255,0.7); transition: fill 0.3s; }

.footer-col h5 {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  font-weight: 600;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,0.6); transition: color 0.2s; display: inline-block; }
.footer-col a:hover { color: var(--accent); transform: translateX(2px); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a:hover { color: var(--accent); }

/* ===================== FLOATING CTAs ===================== */
.float-ctas {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.float-btn {
  width: 56px; height: 56px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 40px -10px rgba(0,0,0,0.35);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.float-btn:hover { transform: scale(1.1) rotate(-6deg); }
.float-btn.wa { background: #25D366; }
.float-btn.tel { background: var(--ink); }
.float-btn svg { width: 24px; height: 24px; fill: var(--paper); }

/* ===================== PAGE HEADER ===================== */
.page-header {
  padding: 60px 32px 80px;
  background: var(--paper);
  position: relative;
}
.page-header-inner {
  max-width: var(--max);
  margin: 0 auto;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mute);
  font-weight: 500;
  margin-bottom: 32px;
}
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb span:not(.sep) { color: var(--mute); }
.breadcrumb .sep { color: var(--mute-2); }

.page-header h1 {
  font-size: clamp(44px, 7vw, 112px);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 0.94;
  margin-bottom: 28px;
  max-width: 960px;
}
.page-header h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent-2);
}
.page-header-meta {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  align-items: end;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}
.page-header-meta .lead { max-width: 540px; }
.page-header-meta-item {
  text-align: right;
}
.page-header-meta-item-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 6px;
  font-weight: 500;
}
.page-header-meta-item-value {
  font-size: 16px;
  font-weight: 600;
}

/* ===================== HERO IMAGE BAND ===================== */
.image-band {
  padding: 0 32px 100px;
}
.image-band-inner {
  max-width: var(--max);
  margin: 0 auto;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 16/8;
  background: var(--ink);
}
.image-band-inner img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* ===================== MATERIAL SHOWCASE ===================== */
.materials {
  background: var(--paper-2);
  padding: 96px 32px;
}
.material-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 60px;
}
.material-card {
  background: var(--paper);
  border-radius: var(--r-lg);
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: 32px;
  align-items: center;
  transition: background 0.5s cubic-bezier(0.16, 1, 0.3, 1), color 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s;
  border: 1px solid var(--line-soft);
  cursor: default;
}
.material-card:hover {
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-8px);
  border-color: var(--ink);
  box-shadow: 0 32px 64px -20px rgba(0,0,0,0.32);
}
.material-card:hover .material-card-num { color: var(--accent); }
.material-card:hover h3 { color: var(--paper); }
.material-card:hover .material-card-desc { color: rgba(255,255,255,0.72); }
.material-card:hover .material-card-spec { border-color: rgba(255,255,255,0.1); }
.material-card:hover .material-card-spec span:first-child { color: rgba(255,255,255,0.5); }
.material-card-num {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-2);
  font-weight: 600;
  margin-bottom: 12px;
}
.material-card h3 {
  font-size: clamp(28px, 2.5vw, 36px);
  font-weight: 600;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
  line-height: 1;
}
.material-card-desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--mute);
  margin-bottom: 24px;
  transition: color 0.4s;
}
.material-card-specs { display: flex; flex-direction: column; }
.material-card-spec {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  padding: 8px 0;
  border-top: 1px solid var(--line-soft);
  transition: border-color 0.4s;
}
.material-card-spec span:first-child { color: var(--mute); transition: color 0.4s; }
.material-card-spec span:last-child { font-weight: 600; }

.material-card-img {
  border-radius: var(--r);
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--paper-3);
}
.material-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.material-card:hover .material-card-img img { transform: scale(1.1); }

/* ===================== PORTFOLIO FILTER ===================== */
.pf-filter-bar {
  position: sticky;
  top: 92px;
  z-index: 50;
  background: rgba(250, 250, 247, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 20px 32px;
  margin-bottom: 60px;
}
.pf-filter-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.pf-filter-tabs {
  display: flex;
  gap: 4px;
  background: rgba(0,0,0,0.05);
  padding: 4px;
  border-radius: 100px;
}
.pf-filter-tab {
  font-size: 13px;
  font-weight: 500;
  padding: 10px 18px;
  border-radius: 100px;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.pf-filter-tab:hover { background: rgba(255,255,255,0.5); }
.pf-filter-tab.active {
  background: var(--ink);
  color: var(--paper);
}
.pf-filter-tab .pf-count {
  font-size: 11px;
  opacity: 0.5;
  font-feature-settings: "tnum";
}
.pf-filter-tab.active .pf-count { color: var(--accent); opacity: 1; }
.pf-results-count { font-size: 13px; color: var(--mute); font-weight: 500; }
.pf-results-count strong { color: var(--ink); font-weight: 600; }

/* ===================== PORTFOLIO GRID ===================== */
.pf-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  padding: 0 32px;
  max-width: var(--max);
  margin: 0 auto;
}
.pf-item {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--ink);
  cursor: pointer;
  transition: opacity 0.4s, transform 0.4s, filter 0.4s;
  aspect-ratio: 4/3;
}
.pf-item.s-3 { grid-column: span 3; }
.pf-item.s-4 { grid-column: span 4; }
.pf-item.s-5 { grid-column: span 5; }
.pf-item.s-6 { grid-column: span 6; }
.pf-item.s-7 { grid-column: span 7; }
.pf-item.s-8 { grid-column: span 8; }
.pf-item.tall { aspect-ratio: 4/5; }
.pf-item.wide { aspect-ratio: 16/9; }
.pf-item.square { aspect-ratio: 1; }
.pf-item.hidden { display: none; }
.pf-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.pf-item:hover img { transform: scale(1.05); }
.pf-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.85) 100%);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--paper);
  opacity: 0;
  transition: opacity 0.4s;
}
.pf-item:hover .pf-item-overlay { opacity: 1; }
.pf-item-cat {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 4px;
}
.pf-item-title {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.pf-item-tag {
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 100px;
  color: var(--ink);
  z-index: 2;
}

/* ===================== ABOUT TEAM STATS ===================== */
.about-intro {
  padding: 96px 32px;
}
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
  max-width: var(--max);
  margin: 0 auto;
}
.about-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 60px;
}
.about-pillar {
  background: var(--paper-2);
  padding: 40px 32px;
  border-radius: var(--r-lg);
  transition: background 0.5s cubic-bezier(0.16, 1, 0.3, 1), color 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
}
.about-pillar:hover {
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -16px rgba(0,0,0,0.25);
}
.about-pillar:hover h4 { color: var(--paper); }
.about-pillar:hover p { color: rgba(255,255,255,0.7); }
.about-pillar:hover .about-pillar-num { color: var(--accent); transform: scale(1.1); transform-origin: left; }
.about-pillar-num {
  font-size: 56px;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--accent-2);
  line-height: 1;
  margin-bottom: 24px;
  font-feature-settings: "tnum";
  transition: color 0.5s, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.about-pillar h4 {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  transition: color 0.4s;
}
.about-pillar p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--mute);
  transition: color 0.4s;
}

/* ===================== STATS BIG ===================== */
.stats-big {
  background: var(--ink);
  color: var(--paper);
  padding: 96px 32px;
}
.stats-big-wrap { max-width: var(--max); margin: 0 auto; }
.stats-big-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 80px;
}
.stat-big {
  padding: 32px 24px;
  border-right: 1px solid rgba(255,255,255,0.1);
  transition: background 0.4s;
  cursor: default;
}
.stat-big:hover { background: rgba(255,255,255,0.03); }
.stat-big:hover .stat-big-num { color: var(--accent); transition: color 0.4s; }
.stat-big:last-child { border-right: none; }
.stat-big-num {
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 0.9;
  margin-bottom: 16px;
  font-feature-settings: "tnum";
  transition: color 0.4s;
}
.stat-big-num span { color: var(--accent); font-size: 0.5em; }
.stat-big-label {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.4;
}

/* ===================== CONTACT ===================== */
.contact {
  background: var(--paper);
  padding: 80px 32px 120px;
}
.contact-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: start;
}
.contact-side {
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--r-lg);
  padding: 48px 40px;
  position: sticky;
  top: 120px;
}
.contact-side h3 {
  font-size: clamp(28px, 2.8vw, 40px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-bottom: 16px;
}
.contact-side h3 em { font-style: italic; font-weight: 400; color: var(--accent); }
.contact-side p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.65);
  margin-bottom: 32px;
}
.contact-block {
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  gap: 16px;
}
.contact-block:last-child { border-bottom: 1px solid rgba(255,255,255,0.1); }
.contact-block-icon {
  width: 40px; height: 40px;
  border-radius: 100px;
  background: rgba(196,165,114,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-block-icon svg { width: 16px; height: 16px; stroke: var(--accent); fill: none; stroke-width: 1.8; }
.contact-block-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 2px;
  font-weight: 500;
}
.contact-block-value { font-size: 15px; font-weight: 500; }
.contact-block-value a:hover { color: var(--accent); }

.contact-form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 48px 40px;
}
.contact-form h3 {
  font-size: clamp(28px, 2.8vw, 36px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 8px;
}
.contact-form h3 em { font-style: italic; font-weight: 400; color: var(--accent-2); }
.contact-form > p {
  font-size: 14px;
  color: var(--mute);
  margin-bottom: 32px;
}

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.form-field.full { grid-column: span 2; }
.form-field label {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 600;
}
.form-field input,
.form-field textarea,
.form-field select {
  font-family: var(--font);
  font-size: 15px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper-2);
  color: var(--ink);
  transition: all 0.2s;
  width: 100%;
  resize: vertical;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--ink);
  background: var(--paper);
}
.form-field textarea { min-height: 140px; }
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 24px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--mute);
}
.form-checkbox input { margin-top: 4px; flex-shrink: 0; }
.form-checkbox a { color: var(--accent-2); text-decoration: underline; }
.form-submit {
  width: 100%;
  padding: 18px 32px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.form-submit:hover { background: var(--accent-2); }
.form-submit svg { width: 14px; height: 14px; }
.form-success {
  display: none;
  padding: 20px;
  background: rgba(52,199,89,0.08);
  border: 1px solid rgba(52,199,89,0.3);
  border-radius: 12px;
  color: #1f7a36;
  font-size: 14px;
  margin-top: 20px;
}
.form-success.show { display: block; }

.contact-quick-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}
.contact-quick {
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s;
  background: var(--paper);
  font-size: 13px;
  font-weight: 500;
}
.contact-quick:hover { border-color: var(--ink); transform: translateY(-1px); }
.contact-quick svg { width: 14px; height: 14px; }

/* ===================== LEGAL/CONTENT ===================== */
.legal { background: var(--paper); padding: 60px 32px 120px; }
.legal-inner {
  max-width: 880px;
  margin: 0 auto;
  background: var(--paper-2);
  border-radius: var(--r-lg);
  padding: 64px;
}
.legal-inner h2 {
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 600;
  letter-spacing: -0.025em;
  margin: 48px 0 16px;
  line-height: 1.15;
}
.legal-inner h2:first-child { margin-top: 0; }
.legal-inner h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 28px 0 10px;
}
.legal-inner p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-2);
  margin-bottom: 14px;
}
.legal-inner ul, .legal-inner ol {
  margin: 0 0 18px 24px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-2);
}
.legal-inner li { margin-bottom: 6px; }
.legal-inner a { color: var(--accent-2); text-decoration: underline; }
.legal-inner a:hover { color: var(--accent); }
.legal-inner hr { border: 0; border-top: 1px solid var(--line); margin: 40px 0; }
.legal-inner strong { font-weight: 600; }

/* ===================== REVEAL ===================== */
/* Default: Content sichtbar.
   JS markiert Below-the-Fold Elemente mit .will-anim → diese kriegen
   opacity:0, fadet ein wenn sie ins Viewport kommen (.in). */
.reveal, .reveal-stagger, .reveal-stagger > *, .trust-list, .trust-list li {
  opacity: 1;
  transform: none;
}
.reveal.will-anim {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.will-anim.in { opacity: 1; transform: translateY(0); }

.reveal-stagger.will-anim > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-stagger.will-anim.in > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.will-anim.in > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.will-anim.in > *:nth-child(2) { transition-delay: 0.13s; }
.reveal-stagger.will-anim.in > *:nth-child(3) { transition-delay: 0.21s; }
.reveal-stagger.will-anim.in > *:nth-child(4) { transition-delay: 0.29s; }
.reveal-stagger.will-anim.in > *:nth-child(5) { transition-delay: 0.37s; }
.reveal-stagger.will-anim.in > *:nth-child(6) { transition-delay: 0.45s; }
.reveal-stagger.will-anim.in > *:nth-child(7) { transition-delay: 0.53s; }
.reveal-stagger.will-anim.in > *:nth-child(8) { transition-delay: 0.61s; }

.trust-list.will-anim li {
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.trust-list.will-anim.in li { opacity: 1; transform: translateX(0); }
.trust-list.will-anim.in li:nth-child(1) { transition-delay: 0.05s; }
.trust-list.will-anim.in li:nth-child(2) { transition-delay: 0.16s; }
.trust-list.will-anim.in li:nth-child(3) { transition-delay: 0.27s; }
.trust-list.will-anim.in li:nth-child(4) { transition-delay: 0.38s; }

@media (prefers-reduced-motion: reduce) {
  .reveal.will-anim, .reveal-stagger.will-anim > *, .trust-list.will-anim li {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1100px) {
  .nav-menu, .nav-cta { display: none; }
  .burger { display: flex; }
  .nav-inner { grid-template-columns: 1fr auto; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-stats-bar { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .hero-stat { padding: 16px; border: 1px solid rgba(255,255,255,0.1); border-radius: var(--r-sm); }
  .section-head-2col { grid-template-columns: 1fr; gap: 32px; }
  .bento { grid-template-columns: repeat(4, 1fr); }
  .cell-3 { grid-column: span 4; }
  .cell-4 { grid-column: span 4; }
  .cell-6 { grid-column: span 4; }
  .cell-2 { grid-column: span 2; }
  .split-cats { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; gap: 32px; }
  .partners-row { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-final-grid { grid-template-columns: 1fr; gap: 40px; }
  .page-header-meta { grid-template-columns: 1fr; gap: 24px; }
  .page-header-meta-item { text-align: left; }
  .material-grid { grid-template-columns: 1fr; }
  .about-intro-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-pillars { grid-template-columns: 1fr; }
  .stats-big-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-big:nth-child(2) { border-right: none; }
  .stat-big:nth-child(1), .stat-big:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.1); }
  .pf-grid { grid-template-columns: repeat(6, 1fr); }
  .pf-item.s-3, .pf-item.s-4, .pf-item.s-5 { grid-column: span 3; }
  .pf-item.s-6, .pf-item.s-7, .pf-item.s-8 { grid-column: span 6; }
  .contact-grid { grid-template-columns: 1fr; gap: 24px; }
  .contact-side { position: static; }
  .process-row { grid-template-columns: 64px 1fr; }
  .process-meta { grid-column: span 2; }
}

@media (max-width: 720px) {
  section { padding: 80px 20px; }
  .hero { padding: 20px; }
  .hero-stats-bar { padding: 24px; }
  .display-xl { font-size: clamp(40px, 12vw, 80px); }
  .display-l { font-size: clamp(36px, 10vw, 64px); }
  .nav-inner { padding: 14px 20px; gap: 16px; }
  .brand { gap: 8px; }
  .brand img { height: 44px; }
  .brand-text { font-size: 17px; letter-spacing: 0.03em; }
  .marquee-track { animation-duration: 22s; }
  .bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: minmax(160px, auto); }
  .cell-3, .cell-4, .cell-6 { grid-column: span 2; }
  .cell-2 { grid-column: span 2; }
  .bento-cell { padding: 28px; }
  .split-cats { padding: 0 20px; }
  .split-cat { height: 480px; }
  .split-cat-content { padding: 32px 28px; }
  .split-cat-bottom { flex-direction: column; align-items: stretch; gap: 16px; }
  .split-cat-bottom h3 { width: 100%; }
  .partners-row { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer { padding: 80px 20px 32px; }
  .cta-final { padding: 16px; }
  .cta-final-inner { padding: 56px 24px; border-radius: var(--r); }
  .scroll-marquee { margin: 40px -20px; }
  .pf-grid { grid-template-columns: 1fr; padding: 0 20px; }
  .pf-item.s-3, .pf-item.s-4, .pf-item.s-5, .pf-item.s-6, .pf-item.s-7, .pf-item.s-8 { grid-column: span 1; }
  .pf-filter-bar { padding: 14px 20px; top: 76px; }
  .pf-filter-tabs { width: 100%; overflow-x: auto; padding: 4px; }
  .pf-filter-tab { padding: 8px 14px; font-size: 12px; }
  .stats-big-grid { grid-template-columns: 1fr; }
  .stat-big { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .stat-big:last-child { border-bottom: none; }
  .material-card { grid-template-columns: 1fr; padding: 28px; }
  .material-card-img { aspect-ratio: 16/9; max-width: 100%; }
  .testi-card { width: 80vw; padding: 32px 28px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field.full { grid-column: span 1; }
  .contact-form, .contact-side { padding: 32px 24px; }
  .legal-inner { padding: 40px 24px; }
  .contact-quick-row { grid-template-columns: 1fr; }
  .hero-meta { grid-template-columns: 1fr; gap: 20px; }
  .process-row { grid-template-columns: 1fr; gap: 20px; padding: 32px 0; }
  .process-num { font-size: 48px; }
  .image-band-inner { aspect-ratio: 4/3; }
  .testi-head { padding: 0 20px; }
  .legal { padding: 60px 16px 80px; }
  .partners-section { padding: 60px 20px 80px; }
}

@media (max-width: 460px) {
  .brand-text { display: none; }
  .brand img { height: 48px; }
}
