@import url('https://fonts.googleapis.com/css2?family=Newsreader:ital,wght@1,700;1,800&family=Sora:wght@300;400;500;600;700;800&display=swap');

/* ═══════════════════════════════════════════
   DRIFT Content Lab — Signal Design System
   Brand: Cream · Black · Signal Green
═══════════════════════════════════════════ */

:root {
  --cream:        #f0ece4;
  --cream-2:      #e8e3da;
  --cream-3:      #ddd8cf;
  --black:        #111111;
  --black-2:      #1a1a1a;
  --teal:         #00c896;
  --teal-dim:     rgba(0,200,150,0.1);
  --teal-border:  rgba(0,200,150,0.3);
  --gray-1:       #444444;
  --gray-2:       #888888;
  --gray-3:       #c0bbb4;
  --white:        #ffffff;

  --serif: 'Newsreader', Georgia, serif;
  --sans:  'Sora', system-ui, sans-serif;

  --container: 1180px;
  --ease:     cubic-bezier(0.25, 0.46, 0.45, 0.94);

  /* Aliases */
  --g1: #444444;
  --g2: #888888;
  --g3: #c0bbb4;
  --font-h: 'Sora', system-ui, sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { background: var(--cream); color: var(--black); font-family: var(--sans); line-height: 1.7; overflow-x: hidden; }
img, video { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; }
::selection { background: var(--teal); color: var(--black); }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--cream-2); }
::-webkit-scrollbar-thumb { background: var(--teal); border-radius: 0; }

/* ── Layout ── */
.container  { max-width: var(--container); margin: 0 auto; padding: 0 2rem; }
.section    { padding: 7rem 0; position: relative; }
.section-sm { padding: 4rem 0; position: relative; }
.section--cream  { background: var(--cream); }
.section--cream2 { background: var(--cream-2); }
.section--white  { background: var(--white); }
.section--black  { background: var(--black); color: var(--cream); }
.section--teal   { background: var(--teal); color: var(--black); }

/* ── Typography ── */
h1, h2, h3, h4 { font-family: var(--serif); font-style: italic; line-height: 1.1; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.7rem); }
p  { color: var(--gray-1); max-width: 60ch; line-height: 1.75; }

.label {
  font-family: var(--sans); font-size: 0.63rem; font-weight: 700;
  letter-spacing: 0.25em; text-transform: uppercase; color: var(--teal);
  display: flex; align-items: center; gap: 0.6rem; margin-bottom: 1.1rem;
}
.label::before { content: ''; display: block; width: 20px; height: 1px; background: var(--teal); }

.section-title em { font-style: normal; color: var(--teal); }
.text-center { text-align: center; }
.text-center p { margin: 0 auto; }
.text-center .label { justify-content: center; }
.text-center .label::before { display: none; }

/* ── Buttons — editorial bracket system [ TEXT ] ── */
.btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.62rem 1.2rem; border-radius: 0;
  font-family: var(--sans); font-size: 0.65rem;
  font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
  transition: background 0.22s var(--ease), color 0.22s, transform 0.22s var(--ease);
  white-space: nowrap; position: relative;
  border: none;
}
/* Bracket characters via pseudo-elements */
.btn::before, .btn::after {
  font-family: var(--serif); font-style: italic;
  font-size: 1.15rem; line-height: 1;
  display: inline-block;
  transition: letter-spacing 0.25s var(--ease);
}
.btn::before { content: '['; margin-right: 0.15rem; }
.btn::after  { content: ']'; margin-left: 0.15rem; }
.btn:hover::before { letter-spacing: -0.12em; }
.btn:hover::after  { letter-spacing: -0.12em; }

/* Primary: black bg, hover → teal */
.btn-primary {
  background: var(--black); color: var(--cream);
}
.btn-primary:hover {
  background: var(--teal); color: var(--black);
  transform: translateY(-1px);
}
/* Dark: black bg, hover → teal */
.btn-dark {
  background: var(--black); color: var(--cream);
}
.btn-dark:hover {
  background: var(--teal); color: var(--black);
  transform: translateY(-1px);
}
/* Outline: transparent, black text, hover → teal border feel */
.btn-outline {
  background: transparent; color: var(--black);
  box-shadow: inset 0 0 0 1.5px var(--black);
}
.btn-outline:hover {
  box-shadow: inset 0 0 0 1.5px var(--teal);
  color: var(--teal);
  transform: translateY(-1px);
}
/* Outline cream: for dark backgrounds */
.btn-outline-cream {
  background: transparent; color: var(--cream);
  box-shadow: inset 0 0 0 1.5px rgba(240,236,228,0.35);
}
.btn-outline-cream:hover {
  box-shadow: inset 0 0 0 1.5px var(--cream);
  color: var(--cream);
  transform: translateY(-1px);
}
.btn svg { width: 14px; height: 14px; transition: transform 0.2s; }
.btn:hover svg { transform: translateX(3px); }

/* ── Cards — clean with teal pop ── */
.card {
  background: transparent; border: none; border-radius: 0;
  padding: 2.25rem 2rem 2.25rem 2.5rem; position: relative;
  border-bottom: 1px solid var(--cream-3);
  transition: background 0.45s cubic-bezier(0.22,0.61,0.36,1),
              box-shadow 0.45s cubic-bezier(0.22,0.61,0.36,1),
              transform 0.45s cubic-bezier(0.22,0.61,0.36,1);
}
/* left teal edge — reveals on hover */
.card::before {
  content: ''; position: absolute; top: 50%; left: 0;
  width: 3px; height: 0; background: var(--teal);
  transform: translateY(-50%);
  transition: height 0.45s cubic-bezier(0.22,0.61,0.36,1);
}
/* bottom teal sweep */
.card::after {
  content: ''; position: absolute; bottom: -1px; left: 0;
  width: 0; height: 2px; background: var(--teal);
  transition: width 0.5s cubic-bezier(0.22,0.61,0.36,1);
}
.card:hover {
  background: rgba(0,200,150,0.035);
  box-shadow: 12px 0 32px -8px rgba(0,200,150,0.1);
  transform: translateX(4px);
}
.card:hover::before { height: 60%; }
.card:hover::after { width: 100%; }
.card:hover .card-icon {
  background: var(--teal); border-color: var(--teal);
  transform: scale(1.08);
}
.card:hover .card-icon svg { color: #fff; }
.card:hover h3 { color: var(--teal); }
.card-icon {
  width: 44px; height: 44px; background: transparent;
  border-radius: 0; display: flex; align-items: center;
  justify-content: center; margin-bottom: 1.15rem;
  border: 1.5px solid var(--cream-3);
  transition: background 0.4s ease, border-color 0.4s ease, transform 0.4s cubic-bezier(0.22,0.61,0.36,1);
}
.card-icon svg { width: 20px; height: 20px; color: var(--teal); transition: color 0.4s ease; }
.card h3 { font-family: var(--sans); font-style: normal; font-weight: 700; font-size: 1.05rem; margin-bottom: 0.5rem; color: var(--black); transition: color 0.35s ease; }
.card p { font-size: 0.88rem; color: var(--gray-2); max-width: none; }

/* ── About: service grid cells ── */
.svc-cell {
  display: block; padding: 2rem; text-decoration: none;
  position: relative;
  transition: background 0.3s ease;
}
.svc-cell .svc-dot {
  width: 6px; height: 6px; background: var(--teal);
  margin-bottom: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.svc-cell .svc-title {
  font-weight: 700; font-size: 0.95rem; color: var(--black);
  margin-bottom: 0.35rem;
  transition: color 0.3s ease;
}
.svc-cell .svc-sub {
  font-size: 0.82rem; color: var(--gray-2);
  transition: color 0.3s ease;
}
.svc-cell .svc-arrow {
  position: absolute; bottom: 1.25rem; right: 1.25rem;
  font-size: 0.8rem; color: var(--teal); opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.svc-cell:hover {
  background: rgba(0,200,150,0.04);
}
.svc-cell:hover .svc-dot {
  transform: scale(1.8);
  box-shadow: 0 0 8px rgba(0,200,150,0.4);
}
.svc-cell:hover .svc-title { color: var(--teal); }
.svc-cell:hover .svc-arrow { opacity: 1; transform: translateX(0); }

/* ── Ticker strip — 1:1 Snowpodz CSS, nur DRIFT-Farben ── */
.nav-ticker {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  padding: 8px 0;
  background: #111111;
}
.nav-ticker-track {
  display: inline-flex;
  animation: ticker-scroll 30s linear infinite;
  width: max-content;
}
.nav-ticker-run {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  padding-right: 50px;
  white-space: nowrap;
  color: #00c896;
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Navigation — Editorial Masthead ── */
.nav {
  position: fixed; top: 30px; left: 0; right: 0; z-index: 999;
  background: var(--cream);
  border-bottom: none;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
/* Signal Line — asymmetric gradient accent */
.nav::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px;
  background:
    linear-gradient(90deg,
      transparent 0%,
      rgba(0,200,150,0.08) 8%,
      #00c896 35%,
      #00c896 38%,
      rgba(0,200,150,0.25) 55%,
      rgba(17,17,17,0.06) 75%,
      transparent 100%
    );
  transition: opacity 0.3s ease;
}
.nav.scrolled {
  background: rgba(240,236,228,0.97);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 6px 32px rgba(0,0,0,0.1);
}
.nav.scrolled::after {
  opacity: 0.5;
}
.nav-inner {
  display: flex; align-items: center; position: relative;
  max-width: var(--container); margin: 0 auto; padding: 6px 2.5rem 0;
  height: 84px;
}

/* ── Logo — groß & präsent ── */
.nav-logo {
  display: flex; align-items: center; gap: 0.65rem;
  text-decoration: none; position: relative;
  margin-right: auto;
}
.logo-img {
  height: 56px; width: auto; display: block; flex-shrink: 0;
  transition: transform 0.3s var(--ease), opacity 0.25s;
}
.nav-logo:hover .logo-img { transform: scale(1.04); opacity: 0.85; }
.footer-logo .logo-img { height: 48px; filter: brightness(0) invert(1); }

/* Signal pulse dot — prominent */
.nav-signal-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--teal); flex-shrink: 0;
  animation: signal-pulse 2.8s ease-in-out infinite;
}
@keyframes signal-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(0,200,150,0.6); }
  55%       { opacity: 0.35; box-shadow: 0 0 0 8px rgba(0,200,150,0); }
}

/* ── Nav links — zentriert, Editorial Marker Effect ── */
.nav-links {
  position: absolute; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; list-style: none; margin: 0; padding: 0;
}
.nav-links li {
  display: flex; align-items: center;
  margin-right: 2.5rem;
}
.nav-links li:last-child { margin-right: 0; }
.nav-links li + li::before { display: none; }
.nav-links a {
  display: inline-flex; align-items: center;
  text-decoration: none; position: relative;
  padding: 0.35em 0.1em;
}
.nav-link-num { display: none; }
.nav-link-text {
  font-family: var(--sans); font-weight: 800;
  font-size: 0.76rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--black); line-height: 1;
  transition: color 0.3s ease;
}
/* Editorial brackets — slide in from sides on hover */
.nav-links a::before,
.nav-links a::after {
  font-family: var(--sans); font-weight: 300;
  font-size: 0.9rem; line-height: 1;
  color: var(--teal);
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.nav-links a::before {
  content: '[';
  margin-right: 0.35em;
  transform: translateX(4px);
}
.nav-links a::after {
  content: ']';
  margin-left: 0.35em;
  transform: translateX(-4px);
}
/* Hover: brackets slide in + text turns green */
.nav-links a:hover::before,
.nav-links a:hover::after {
  opacity: 1;
  transform: translateX(0);
}
.nav-links a:hover .nav-link-text {
  color: var(--teal);
}
/* Active: brackets visible, subtle */
.nav-links a.active::before,
.nav-links a.active::after {
  opacity: 0.5;
  transform: translateX(0);
}
.nav-links a.active .nav-link-text {
  color: var(--black);
}
.nav-link-dot { display: none; }

/* ── CTA: editorial bracket — rechts ── */
.nav-cta-bracket {
  display: flex; align-items: center;
  background: var(--black); color: var(--cream);
  padding: 0.62rem 1.2rem; border-radius: 0;
  text-decoration: none; margin-left: auto;
  transition: background 0.22s var(--ease), color 0.22s, transform 0.22s var(--ease);
  white-space: nowrap;
}
.nav-cta-bracket:hover {
  background: var(--teal); color: var(--black);
  transform: translateY(-1px);
}
.bracket-open,
.bracket-close {
  font-family: var(--serif); font-style: italic;
  font-size: 1.15rem; color: inherit; line-height: 1;
  display: inline-block;
  transition: letter-spacing 0.25s var(--ease);
}
.nav-cta-bracket:hover .bracket-open  { letter-spacing: -0.12em; }
.nav-cta-bracket:hover .bracket-close { letter-spacing: -0.12em; }
.bracket-text {
  font-family: var(--sans); font-weight: 800;
  font-size: 0.65rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: inherit; padding: 0 0.35rem; line-height: 1;
}

/* ── Hamburger ── */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 4px; background: none; border: none; cursor: pointer;
}
.nav-hamburger span { display: block; width: 22px; height: 1.5px; background: var(--black); transition: all 0.28s; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Mobile menu ── */
.nav-mobile {
  display: none; position: fixed; inset: 0;
  top: 114px; background: var(--cream); z-index: 998;
  padding: 3.5rem 2.5rem 3rem;
  flex-direction: column; justify-content: space-between;
  border-top: 1px solid var(--cream-3);
}
.nav-mobile.open { display: flex; }
.nav-mobile-links { display: flex; flex-direction: column; }
.nav-mobile-links a {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(2.8rem, 11vw, 4.5rem);
  font-weight: 700; color: var(--black);
  padding: 0.55rem 0; border-bottom: 1px solid var(--cream-3);
  display: flex; align-items: baseline; gap: 0.55rem;
  text-decoration: none; line-height: 1.1;
  transition: color 0.18s, padding-left 0.22s var(--ease);
}
.nav-mobile-links a::before {
  content: '['; font-weight: 300; color: var(--teal);
  opacity: 0; transform: translateX(8px);
  transition: opacity 0.2s ease, transform 0.25s var(--ease);
  font-size: 0.6em;
}
.nav-mobile-links a:hover { color: var(--teal); }
.nav-mobile-links a:hover::before { opacity: 1; transform: translateX(0); }
.nav-mobile-num {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: 0.75rem; color: var(--teal); flex-shrink: 0;
  align-self: flex-end; margin-bottom: 0.35em;
  transition: color 0.18s;
}
.nav-mobile-links a:hover .nav-mobile-num { color: inherit; }
.nav-mobile-cta {
  margin-top: 3rem;
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--sans); font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--black); text-decoration: none;
  transition: color 0.18s;
}
.nav-mobile-cta:hover { color: var(--teal); }
.nav-mobile-cta-arrow { font-size: 1rem; }

/* ── Logo watermark ── */
.logo-watermark {
  position: absolute;
  pointer-events: none; z-index: 0;
  opacity: 0.035;
}
.logo-watermark img {
  width: 100%; height: 100%; object-fit: contain;
}
/* Hero: riesiges Logo rechts */
.hero-watermark {
  right: -4%; top: 50%; transform: translateY(-50%);
  width: 520px; height: 520px;
}
/* CTA: Logo links unten */
.cta-watermark {
  left: -3%; bottom: -15%;
  width: 340px; height: 340px;
  opacity: 0.06;
}
/* Page-hero: Logo rechts oben */
.page-hero { position: relative; overflow: hidden; }
.page-hero-watermark {
  right: 4%; top: 50%; transform: translateY(-50%);
  width: 380px; height: 380px;
}
/* Footer watermark */
.footer { position: relative; overflow: hidden; }
.footer-watermark {
  right: 3%; top: 50%; transform: translateY(-50%);
  width: 300px; height: 300px;
  opacity: 0.04;
}
.footer-watermark img { filter: brightness(0) invert(1); }

/* ── Footer ── */
.footer { background: var(--black); color: var(--cream); padding: 5rem 0 2.5rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 4rem; }
.footer-logo { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 1rem; }
.footer-tagline { font-size: 0.88rem; color: rgba(240,236,228,0.4); max-width: 28ch; line-height: 1.7; margin-bottom: 1.75rem; }
.footer-social { display: flex; gap: 0.6rem; }
.footer-social a { width: 34px; height: 34px; border: 1px solid rgba(255,255,255,0.1); border-radius: 0; display: flex; align-items: center; justify-content: center; transition: all 0.22s var(--ease); }
.footer-social a:hover { background: var(--teal); border-color: var(--teal); }
.footer-social a:hover svg { color: var(--black); }
.footer-social svg { width: 14px; height: 14px; color: rgba(240,236,228,0.4); transition: color 0.2s; }
.footer-col-title { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(240,236,228,0.3); margin-bottom: 1.25rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-links a {
  font-size: 0.86rem; color: rgba(240,236,228,0.5);
  transition: color 0.2s, padding-left 0.25s var(--ease);
  display: inline-block;
}
.footer-links a:hover { color: var(--teal); }
.footer-links a::before {
  content: ''; display: inline-block; width: 0; overflow: hidden;
  font-family: var(--serif); font-style: italic; color: var(--teal);
  transition: width 0.25s var(--ease), margin-right 0.25s var(--ease);
  vertical-align: baseline; font-size: 0.9rem;
}
.footer-links a:hover::before {
  content: '['; width: 0.55em; margin-right: 0.1em;
}
.footer-links li { font-size: 0.86rem; color: rgba(240,236,228,0.5); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; font-size: 0.76rem; color: rgba(240,236,228,0.2); }
.footer-bottom a { color: var(--teal); }

/* ── Grid helpers ── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ── Divider ── */
.teal-line { width: 40px; height: 2px; background: var(--teal); margin-bottom: 1rem; }
.divider { border: none; border-top: 1px solid var(--cream-3); }

/* ── Scroll reveal ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ── Video card ── */
.video-card { position: relative; overflow: hidden; border-radius: 0; background: var(--black); }
.video-card video { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); display: block; }
.video-card:hover video { transform: scale(1.04); }
.video-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, transparent 55%); display: flex; flex-direction: column; justify-content: flex-end; padding: 1.25rem; pointer-events: none; }
.video-play-btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 46px; height: 46px; background: rgba(0,200,150,0.92); border-radius: 0;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: all 0.3s; pointer-events: none;
}
.video-card:hover .video-play-btn { opacity: 1; transform: translate(-50%,-50%) scale(1.1); }
.video-play-btn svg { width: 16px; height: 16px; color: var(--black); margin-left: 2px; }
.video-card-tag { display: inline-block; padding: 0.2rem 0.65rem; background: var(--teal); color: var(--black); font-size: 0.6rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; border-radius: 0; margin-bottom: 0.4rem; }
.video-card-title { font-family: var(--sans); font-weight: 600; font-size: 0.88rem; color: var(--white); }

/* ── Form ── */
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.25rem; }
.form-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray-1); }
.form-input, .form-textarea {
  width: 100%; padding: 0.85rem 1rem;
  background: var(--white); border: 1.5px solid var(--cream-3);
  border-radius: 0; font-size: 0.9rem; color: var(--black);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease); outline: none;
}
.form-input:focus, .form-textarea:focus {
  border-color: var(--teal);
  box-shadow: inset 3px 0 0 var(--teal);
}
.form-textarea { resize: vertical; min-height: 130px; line-height: 1.65; }

/* ── FAQ — editorial bracket ── */
.faq-item { border-bottom: 1px solid var(--cream-3); }
.faq-question {
  width: 100%; padding: 1.25rem 0; display: flex; justify-content: space-between;
  align-items: center; gap: 1rem; font-weight: 600; font-size: 0.95rem;
  color: var(--black); text-align: left; cursor: pointer; transition: color 0.2s;
}
.faq-question:hover { color: var(--teal); }
.faq-icon {
  width: auto; height: auto; border: none; border-radius: 0;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: all 0.3s; font-size: 1.1rem;
  color: var(--gray-2); font-family: var(--serif); font-style: italic;
}
.faq-icon::before { content: '['; }
.faq-icon::after  { content: ']'; }
.faq-item.open .faq-icon {
  background: none; border-color: transparent;
  color: var(--teal); transform: none;
}
.faq-question:hover .faq-icon { color: var(--teal); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-answer p { font-size: 0.9rem; color: var(--gray-1); line-height: 1.8; padding-bottom: 1.25rem; max-width: 65ch; }
.faq-item.open .faq-answer { max-height: 300px; }

/* ── Stats — editorial strip ── */
.stats-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.stat-item {
  padding: 2.5rem 1.5rem; text-align: left;
  border-right: 1px solid rgba(255,255,255,0.08);
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-item::before {
  content: attr(data-index);
  font-family: var(--sans); font-size: 0.58rem; font-weight: 600;
  letter-spacing: 0.2em; color: var(--teal); opacity: 0.6;
  position: absolute; top: 1rem; left: 1.5rem;
}
.stat-num {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(2.5rem, 5vw, 3.8rem); color: var(--cream);
  line-height: 1; margin-bottom: 0.3rem;
}
.stat-num .teal { color: var(--teal); }
.stat-label {
  font-family: var(--sans); font-size: 0.72rem; font-weight: 500;
  color: rgba(240,236,228,0.35); letter-spacing: 0.04em;
}

/* ── Tag — angular bracket ── */
.tag { display: inline-flex; align-items: center; padding: 0.22rem 0.7rem; font-size: 0.63rem; font-weight: 600; letter-spacing: 0.08em; border-radius: 0; background: var(--teal-dim); color: var(--teal); border: 1px solid var(--teal-border); }

/* ── Process steps — bracket numbers ── */
.process-step {
  display: flex; gap: 1.5rem; align-items: flex-start;
  padding: 1.75rem 0; border-bottom: 1px solid var(--cream-3);
}
.process-step:last-child { border-bottom: none; }
.step-num {
  font-family: var(--sans); font-weight: 300;
  font-size: 0.75rem; letter-spacing: 0.08em;
  color: var(--teal); line-height: 1; flex-shrink: 0;
  width: auto; padding-top: 0.2rem;
}
.step-num::before { content: '['; font-family: var(--serif); font-style: italic; font-size: 1rem; }
.step-num::after  { content: ']'; font-family: var(--serif); font-style: italic; font-size: 1rem; }
.step-content h3 { font-family: var(--sans); font-style: normal; font-weight: 700; font-size: 0.98rem; margin-bottom: 0.35rem; color: var(--black); }
.step-content p { font-size: 0.87rem; color: var(--gray-1); max-width: 52ch; }

/* ── Process grid (4 steps) ── */
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
}
.process-grid-item {
  padding: 2rem 1.75rem; text-align: left;
  border-right: 1px solid var(--cream-3);
  position: relative;
}
.process-grid-item:last-child { border-right: none; }
.process-grid-num {
  font-family: var(--sans); font-weight: 300;
  font-size: 0.7rem; letter-spacing: 0.1em; color: var(--teal);
  margin-bottom: 1rem; display: inline-block;
}
.process-grid-num::before { content: '['; font-family: var(--serif); font-style: italic; font-size: 0.95rem; }
.process-grid-num::after  { content: ']'; font-family: var(--serif); font-style: italic; font-size: 0.95rem; }
.process-grid-item h3 {
  font-family: var(--sans); font-style: normal; font-weight: 700;
  font-size: 0.95rem; margin-bottom: 0.4rem; color: var(--black);
}
.process-grid-item p {
  font-size: 0.82rem; color: var(--gray-1); max-width: 22ch; line-height: 1.65;
}

/* ── Teal text utility ── */
.teal { color: var(--teal); }

/* ── Progress bar ── */
#progress-bar {
  position: fixed; top: 0; left: 0; height: 2px; width: 0%;
  background: var(--teal); z-index: 9999;
  transition: width 0.1s linear;
}

/* ── Page hero (inner pages) — editorial base ── */
.page-hero {
  padding: 9rem 0 5rem; position: relative; overflow: hidden;
  background: var(--cream); color: var(--black);
}
.page-hero-glow { display: none; }
.page-hero .label { color: var(--teal); }
.page-hero h1 { color: var(--black); margin-bottom: 1rem; }
.page-hero .lead { font-size: 1.05rem; color: var(--gray-1); max-width: 56ch; margin-top: 1.25rem; }

/* ─── Hero content animations (Myna-style blur-in + stagger) ─── */
@keyframes heroBlurIn {
  from { opacity: 0; filter: blur(10px); transform: translateY(40px); }
  to   { opacity: 1; filter: blur(0);    transform: translateY(0); }
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Word-by-word title animation */
.page-hero h1 .hw {
  display: inline-block;
  opacity: 0;
  animation: heroBlurIn 0.7s cubic-bezier(0.25,0.4,0.25,1) forwards;
  animation-delay: calc(0.3s + var(--i, 0) * 0.12s);
}

/* Staggered fade-up for other hero elements */
.page-hero .label {
  opacity: 0;
  animation: heroFadeUp 0.6s cubic-bezier(0.25,0.4,0.25,1) forwards;
  animation-delay: 0.1s;
}
.page-hero .breadcrumb {
  opacity: 0;
  animation: heroFadeUp 0.5s ease-out forwards;
  animation-delay: 0s;
}
.page-hero .neon-rule {
  opacity: 0;
  animation: heroFadeUp 0.5s ease-out forwards;
  animation-delay: calc(0.3s + var(--word-count, 4) * 0.12s + 0.15s);
}
.page-hero .lead {
  opacity: 0;
  animation: heroFadeUp 0.7s cubic-bezier(0.25,0.4,0.25,1) forwards;
  animation-delay: calc(0.3s + var(--word-count, 4) * 0.12s + 0.3s);
}

/* ─── Floating decorative lines + logo (editorial accents) ─── */
@keyframes heroFloat {
  0%, 100% { transform: translateY(0) rotate(var(--r, 0deg)); }
  50% { transform: translateY(var(--float-y, 12px)) rotate(var(--r, 0deg)); }
}
@keyframes heroLineIn {
  from { opacity: 0; transform: translateY(-60px) rotate(var(--r, 0deg)) scaleX(0.3); }
  to   { opacity: 1; transform: translateY(0) rotate(var(--r, 0deg)) scaleX(1); }
}
@keyframes heroLogoIn {
  from { opacity: 0; transform: translateY(-40px) scale(0.85); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes heroLogoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

/* Floating teal lines */
.hero-line {
  position: absolute; pointer-events: none; z-index: 0;
  width: var(--w, 280px); height: var(--h, 2px);
  background: linear-gradient(90deg, transparent, rgba(0,200,150, var(--a, 0.35)), transparent);
  box-shadow: 0 0 12px rgba(0,200,150, 0.08);
  opacity: 0;
  animation:
    heroLineIn 1.8s cubic-bezier(0.23,0.86,0.39,0.96) forwards,
    heroFloat var(--dur, 14s) ease-in-out infinite;
  animation-delay: var(--d, 0s), var(--d, 0s);
}

/* Floating logo watermark */
.hero-logo-float {
  position: absolute; pointer-events: none; z-index: 0;
  width: var(--size, 180px); height: var(--size, 180px);
  opacity: 0;
  animation:
    heroLogoIn 2.4s cubic-bezier(0.23,0.86,0.39,0.96) forwards,
    heroLogoFloat var(--dur, 16s) ease-in-out infinite;
  animation-delay: var(--d, 0.6s), var(--d, 0.6s);
}
.hero-logo-float img {
  width: 100%; height: 100%; object-fit: contain;
  opacity: var(--logo-a, 0.04);
  filter: brightness(0) invert(0);
}

/* ─── Subpage hero variants — clean, focused on typography ─── */
.page-hero--about,
.page-hero--services,
.page-hero--portfolio,
.page-hero--kontakt {
  background: var(--cream); color: var(--black);
  padding: 10rem 0 5.5rem;
}
.page-hero--kontakt { padding-bottom: 6rem; }
.page-hero--portfolio h1 { font-size: clamp(3.2rem, 7vw, 5.5rem); }
.page-hero--services .neon-rule { box-shadow: none; }
.breadcrumb {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.72rem; letter-spacing: 0.06em; color: var(--gray-2);
  margin-bottom: 1.5rem;
}
.breadcrumb a { color: var(--gray-2); transition: color 0.2s; position: relative; }
.breadcrumb a:hover { color: var(--teal); }
.breadcrumb a::before {
  content: '['; color: var(--teal); opacity: 0;
  transition: opacity 0.2s ease;
  font-family: var(--serif); font-style: italic;
}
.breadcrumb a::after {
  content: ']'; color: var(--teal); opacity: 0;
  transition: opacity 0.2s ease;
  font-family: var(--serif); font-style: italic;
}
.breadcrumb a:hover::before,
.breadcrumb a:hover::after { opacity: 1; }
.breadcrumb span { color: var(--gray-3); }

/* ── Teal rule ── */
.neon-rule {
  width: 40px; height: 2px; background: var(--teal);
  margin: 1.25rem 0;
}

/* ── Section divider — editorial bracket line ── */
.section-divider {
  display: flex; align-items: center; gap: 1rem;
  padding: 0 2rem; margin-bottom: 3rem;
}
.section-divider::before,
.section-divider::after {
  content: ''; flex: 1; height: 1px; background: var(--cream-3);
}
.section-divider-num {
  font-family: var(--sans); font-weight: 300;
  font-size: 0.65rem; letter-spacing: 0.2em; color: var(--gray-2);
}
.section-divider-num::before { content: '['; font-family: var(--serif); font-style: italic; font-size: 0.85rem; color: var(--teal); margin-right: 0.15em; }
.section-divider-num::after  { content: ']'; font-family: var(--serif); font-style: italic; font-size: 0.85rem; color: var(--teal); margin-left: 0.15em; }

/* ── Hero editorial ── */
.hero-editorial {
  position: relative; overflow: hidden;
  padding: 9rem 0 3rem;
}
.hero-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem; align-items: center;
}
.hero-tagline {
  font-family: var(--sans); font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.hero-tagline::before {
  content: ''; display: block; width: 24px; height: 1px; background: var(--teal);
}
.hero-headline {
  font-family: var(--serif); font-style: italic; font-weight: 800;
  font-size: clamp(3rem, 6.5vw, 5.2rem); line-height: 0.88;
  letter-spacing: -0.03em; color: var(--black);
  margin-bottom: 1.75rem;
}
.hero-headline em { font-style: normal; color: var(--teal); }
.hero-sub {
  font-size: 1.05rem; color: var(--gray-1); max-width: 48ch;
  line-height: 1.7; margin-bottom: 2.25rem;
}
.hero-badges {
  display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
  margin-top: 0.5rem;
}
.hero-badge {
  display: flex; align-items: center; gap: 0.35rem;
  font-size: 0.72rem; font-weight: 600; color: var(--gray-2);
  letter-spacing: 0.02em;
}
.hero-badge::before {
  content: '['; font-family: var(--serif); font-style: italic;
  font-size: 0.85rem; color: var(--teal); opacity: 0.5;
}
.hero-badge::after {
  content: ']'; font-family: var(--serif); font-style: italic;
  font-size: 0.85rem; color: var(--teal); opacity: 0.5;
}
.hero-mosaic {
  display: grid; grid-template-columns: 1fr 1fr;
  grid-template-rows: 260px 260px; gap: 0.5rem;
}
.hero-mosaic .pf-item { aspect-ratio: auto; }

/* ─── Hero 3D orbital video carousel ─── */
.hero-3d-scene {
  position: relative;
  width: 100%; min-height: 460px;
  display: flex; align-items: center; justify-content: center;
}
/* Ground shadow beneath carousel */
.hero-3d-scene::after {
  content: '';
  position: absolute; bottom: 20px; left: 50%;
  transform: translateX(-50%);
  width: 65%; height: 50px;
  background: radial-gradient(ellipse, rgba(0,0,0,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.float-panel {
  position: absolute;
  width: 150px; height: 250px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  background: var(--black);
  opacity: 0; /* JS handles entrance + orbit */
  will-change: transform, opacity, filter;
  cursor: grab;
}
.float-panel video {
  width: 100%; height: 100%; object-fit: cover;
  display: block; border-radius: 13px;
}

/* Label — only visible on front panel (JS toggles) */
.float-panel-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 0.65rem 0.9rem;
  border-radius: 0 0 13px 13px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  font-family: var(--sans); font-size: 0.58rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.7); pointer-events: none;
  opacity: 0; transition: opacity 0.5s;
}

/* Glow container — shadow set dynamically by JS */
.float-panel-glow {
  position: absolute; inset: -1px;
  border-radius: 15px; pointer-events: none;
}

/* Top edge reflection */
.float-panel::before {
  content: '';
  position: absolute; top: 0; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,200,150,0.18), transparent);
  z-index: 2;
}

@media (prefers-reduced-motion: reduce) {
  .float-panel { opacity: 1 !important; filter: none !important; }
}
@media (max-width: 768px) {
  .hero-3d-scene { min-height: 340px; }
  .float-panel { width: 105px; height: 175px; }
}
.hero-scroll-hint {
  text-align: center; padding: 2.5rem 0 0; opacity: 0.25;
}
.hero-scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--teal), transparent);
  margin: 0 auto;
}

/* ── CTA full-width — commanding close ── */
.cta-commanding {
  background: var(--black); color: var(--cream);
  padding: 6rem 0; position: relative; overflow: hidden;
  text-align: center;
}
.cta-commanding::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--teal) 30%, var(--teal) 70%, transparent);
}
.cta-commanding h2 {
  font-family: var(--serif); font-style: italic; font-weight: 800;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  color: var(--cream); margin-bottom: 1rem; line-height: 1.1;
}
.cta-commanding p {
  color: rgba(240,236,228,0.45); font-size: 1rem;
  margin: 0 auto 2.5rem; max-width: 42ch;
}

/* ── Responsive additions ── */
@media (max-width: 1024px) {
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid-item:nth-child(2) { border-right: none; }
  .process-grid-item:nth-child(1),
  .process-grid-item:nth-child(2) { border-bottom: 1px solid var(--cream-3); }
}
@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-mosaic { grid-template-rows: 200px 200px; }
  .hero-editorial { padding: 8rem 0 3rem; min-height: auto; }
  .stats-strip { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid-item { border-right: none; border-bottom: 1px solid var(--cream-3); }
  .process-grid-item:last-child { border-bottom: none; }
}

/* ── Section alt (light gray bg) ── */
.section-alt { background: var(--cream-2); }

/* ── CTA Banner — angular editorial ── */
.cta-banner {
  background: var(--black); color: var(--cream);
  padding: 4rem; text-align: center; border-radius: 0;
  position: relative;
}
.cta-banner .label { justify-content: center; color: rgba(240,236,228,0.4); }
.cta-banner h2 { color: var(--cream); margin-bottom: 1rem; }
.cta-banner p { color: rgba(240,236,228,0.5); margin: 0 auto 2rem; font-size: 1rem; max-width: 48ch; }
.btn-group { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.arrow { margin-left: 0.2rem; }

/* ── Center utility ── */
.center { text-align: center; }
.center .label { justify-content: center; }
.center p { margin: 0 auto; }

/* ── Reveal delay aliases ── */
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* ── Portfolio grid ── */
.filter-bar {
  display: flex; gap: 0.5rem; flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.filter-btn {
  padding: 0.55rem 1.25rem; border-radius: 0;
  border: 1.5px solid var(--cream-3); background: transparent;
  font-family: var(--sans); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray-2);
  cursor: pointer; transition: all 0.22s var(--ease);
}
.filter-btn:hover { border-color: var(--teal); color: var(--teal); }
.filter-btn.active { background: var(--black); border-color: var(--black); color: var(--cream); }

/* ── Portfolio grid — editorial bracket system ── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}
.pf-item {
  position: relative; overflow: hidden; border-radius: 0;
  background: var(--black); aspect-ratio: 9/16; cursor: pointer;
}
.pf-item video { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s var(--ease); }
.pf-item:hover video { transform: scale(1.04); }
.pf-wide { grid-column: span 2; aspect-ratio: 16/9; }
.pf-photo { aspect-ratio: 3/2; }
.pf-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s var(--ease); }
.pf-item:hover img { transform: scale(1.04); }

/* Editorial bracket frame on hover — L-shaped corners */
.pf-item::before,
.pf-item::after {
  content: ''; position: absolute; z-index: 3;
  width: 28px; height: 28px;
  border-color: var(--teal); border-style: solid;
  transition: opacity 0.3s ease, transform 0.35s var(--ease);
  opacity: 0;
}
.pf-item::before {
  top: 10px; left: 10px;
  border-width: 1.5px 0 0 1.5px;
  transform: translate(-4px, -4px);
}
.pf-item::after {
  bottom: 10px; right: 10px;
  border-width: 0 1.5px 1.5px 0;
  transform: translate(4px, 4px);
}
.pf-item:hover::before,
.pf-item:hover::after {
  opacity: 1; transform: translate(0, 0);
}

/* Overlay — editorial style */
.pf-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.15) 40%, transparent 60%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.1rem 1.2rem;
  opacity: 0; transition: opacity 0.35s var(--ease);
}
.pf-item:hover .pf-overlay { opacity: 1; }

/* Category: bracket style [ORGANIC] */
.pf-cat {
  display: inline-block; padding: 0;
  background: none; color: var(--teal);
  font-family: var(--sans); font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  border-radius: 0; margin-bottom: 0.3rem; width: fit-content;
}
.pf-cat::before {
  content: '['; font-family: var(--serif); font-style: italic;
  font-size: 0.8rem; margin-right: 0.1em;
}
.pf-cat::after {
  content: ']'; font-family: var(--serif); font-style: italic;
  font-size: 0.8rem; margin-left: 0.1em;
}
.pf-name {
  font-family: var(--sans); font-weight: 600;
  font-size: 0.86rem; color: var(--white);
}

/* Index number: top-right, always visible */
.pf-index {
  position: absolute; top: 0.75rem; right: 0.85rem; z-index: 4;
  font-family: var(--sans); font-weight: 300;
  font-size: 0.6rem; letter-spacing: 0.12em;
  color: rgba(255,255,255,0.35);
  transition: color 0.3s ease;
}
.pf-index::before { content: '['; font-family: var(--serif); font-style: italic; font-size: 0.75rem; color: var(--teal); opacity: 0.4; }
.pf-index::after  { content: ']'; font-family: var(--serif); font-style: italic; font-size: 0.75rem; color: var(--teal); opacity: 0.4; }
.pf-item:hover .pf-index { color: rgba(255,255,255,0.7); }
.pf-item:hover .pf-index::before,
.pf-item:hover .pf-index::after { opacity: 1; }

/* Left teal accent line */
.pf-accent {
  position: absolute; top: 0; left: 0; bottom: 0; width: 2px; z-index: 3;
  background: var(--teal);
  transform: scaleY(0); transform-origin: bottom;
  transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.pf-item:hover .pf-accent { transform: scaleY(1); }

/* ── Homepage portfolio preview — asymmetric editorial ── */
.pf-preview-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr 0.6fr;
  grid-template-rows: 260px 260px;
  gap: 0.5rem;
}
.pf-preview-grid .pf-item:first-child {
  grid-row: span 2;
  aspect-ratio: auto;
}
.pf-preview-grid .pf-item {
  aspect-ratio: auto;
}
@media (max-width: 768px) {
  .pf-preview-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px 200px;
  }
  .pf-preview-grid .pf-item:first-child { grid-row: span 2; }
}

/* ── Accordion (Kontakt FAQ) — editorial bracket ── */
.accordion-item { border-bottom: 1px solid var(--cream-3); }
.accordion-btn {
  width: 100%; padding: 1.25rem 0; display: flex; justify-content: space-between;
  align-items: center; gap: 1rem; font-weight: 600; font-size: 0.95rem;
  color: var(--black); text-align: left; cursor: pointer; transition: color 0.2s;
  background: none; border: none; font-family: var(--sans);
}
.accordion-btn:hover { color: var(--teal); }
.accordion-icon {
  width: auto; height: auto; border: none;
  border-radius: 0; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: all 0.3s; font-size: 1.1rem; color: var(--gray-2);
  line-height: 1; font-family: var(--serif); font-style: italic;
}
.accordion-icon::before { content: '['; }
.accordion-icon::after  { content: ']'; }
.accordion-item.open .accordion-icon {
  background: none; border-color: transparent; color: var(--teal);
  transform: none;
}
.accordion-btn:hover .accordion-icon { color: var(--teal); }
.accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.accordion-body p { font-size: 0.9rem; color: var(--gray-1); line-height: 1.8; padding-bottom: 1.25rem; max-width: 65ch; }
.accordion-item.open .accordion-body { max-height: 300px; }

/* ── Form select ── */
.form-select {
  width: 100%; padding: 0.85rem 1rem;
  background: var(--white); border: 1.5px solid var(--cream-3);
  border-radius: 0; font-size: 0.9rem; font-family: var(--sans); color: var(--black);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease); outline: none; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center;
  padding-right: 2.5rem;
}
.form-select:focus { border-color: var(--teal); box-shadow: inset 3px 0 0 var(--teal); }

/* ── Footer brand / contact (legacy) ── */
.footer-brand { }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 0.86rem; color: rgba(240,236,228,0.5); margin-bottom: 0.65rem;
}
.footer-contact-item a { color: rgba(240,236,228,0.5); transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--teal); }
.ico { flex-shrink: 0; }

/* ── Nav CTA ── */
.nav-cta { margin-left: 0.5rem; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  .section { padding: 5rem 0; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .nav-links, .nav-cta-bracket { display: none; }
  .nav-hamburger { display: flex; }
}
@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .btn { padding: 0.72rem 1.4rem; }
}
