/* ============================================================
   YUCA AUTO — Design System
   Schwarz/Orange · Modern Clean · Hanken Grotesk + JetBrains Mono
   ============================================================ */

:root {
  --ink: #0A0A0B;
  --ink-2: #1A1A1C;
  --ink-3: #3A3A3D;
  --muted: #6B6B70;
  --line: #E5E5E1;
  --line-2: #F0F0EC;
  --paper: #FAFAF7;
  --paper-2: #F4F3EE;
  --white: #FFFFFF;
  --orange: #F25C0E;
  --orange-dark: #D44F08;
  --orange-soft: #FDEDE2;

  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 28px;

  --pad-x: clamp(20px, 4vw, 64px);
  --max: 1440px;

  --font-sans: 'Hanken Grotesk', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-sans);
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  font-feature-settings: "ss01", "cv11";
}
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

/* ============ Utility ============ */
.mono-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--muted);
  text-transform: lowercase;
}

/* ============ NAV ============ */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; gap: 32px;
  padding: 14px var(--pad-x);
  background: rgba(250, 250, 247, 0.85);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.logo {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700;
}
.logo-img {
  height: 38px; width: auto;
  display: inline-block;
  object-fit: contain;
}
.logo-foot .logo-img { height: 48px; }
.logo-fallback {
  display: none;
  align-items: center; gap: 10px;
}
.logo-fallback.show { display: inline-flex; }
.logo-mark {
  display: inline-grid; place-items: center;
  width: 30px; height: 30px;
  background: var(--ink); color: var(--paper);
  border-radius: var(--r-sm);
  font-size: 16px;
  letter-spacing: -0.04em;
  position: relative;
}
.logo-mark::after {
  content: ""; position: absolute; right: 4px; bottom: 4px;
  width: 6px; height: 6px; background: var(--orange); border-radius: 1px;
}
.logo-word {
  font-size: 14px; letter-spacing: 0.04em; font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
}
.logo-em { color: var(--orange); margin: 0 1px; }

.nav-links {
  display: flex; gap: 28px;
  margin-left: 12px;
  font-size: 14px; font-weight: 500;
  white-space: nowrap;
}
.nav-links a {
  color: var(--ink-3);
  padding: 4px 0;
  position: relative;
  transition: color .15s ease;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 100%; height: 2px; background: var(--orange);
}

.nav-tools {
  margin-left: auto;
  display: flex; align-items: center; gap: 18px;
}
.lang {
  display: inline-flex; align-items: center; gap: 4px;
  font-family: var(--font-mono); font-size: 12px; font-weight: 500;
}
.lang-btn {
  padding: 4px 6px; color: var(--muted);
  border-radius: 4px;
}
.lang-btn.active { color: var(--ink); }
.lang-sep { color: var(--line); }

/* ============ Buttons ============ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600; font-size: 14px;
  letter-spacing: -0.01em;
  transition: transform .12s ease, background .12s ease, color .12s ease, border-color .12s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--orange); color: var(--white); }
.btn-primary:hover { background: var(--orange-dark); }
.btn-dark { background: var(--ink); color: var(--paper); }
.btn-dark:hover { background: var(--ink-2); }
.btn-ghost {
  background: transparent; color: var(--ink);
  border: 1px solid var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--paper); }
.btn-ghost.btn-light { color: var(--paper); border-color: rgba(255,255,255,0.4); }
.btn-ghost.btn-light:hover { background: var(--paper); color: var(--ink); }
.btn-lg { padding: 14px 24px; font-size: 15px; }
.arr { transition: transform .15s ease; display: inline-block; }
.btn:hover .arr { transform: translateX(3px); }

/* ============ HERO ============ */
.hero {
  max-width: var(--max); margin: 0 auto;
  background-image:
    linear-gradient(to bottom, rgba(8,8,10,0.15) 0%, rgba(8,8,10,0.45) 60%, rgba(8,8,10,0.93) 100%),
    url('images/yuca_hero.png');
  background-size: cover;
  background-position: center 40%;
  border-radius: 0 0 var(--r-xl) var(--r-xl);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 48px;
  align-items: start;
  padding: 56px var(--pad-x) clamp(240px, 38vw, 520px);
  border-bottom: none;
}
.hero-meta { grid-column: 1 / -1; }
.hero-headline { grid-column: 1; }
.hero-headline h1 {
  margin: 0;
  font-size: clamp(48px, 7vw, 104px);
  line-height: 0.95;
  letter-spacing: -0.045em;
  font-weight: 700;
}
.h1-line { display: block; }
.h1-line-thin { font-weight: 300; color: var(--ink-3); }
.h1-accent { color: var(--orange); font-style: italic; font-weight: 400; }

.hero-side {
  grid-column: 2;
  align-self: start;
  max-width: 460px;
  margin-left: auto;
}
.hero-lede {
  font-size: 18px; line-height: 1.55;
  color: var(--ink-3);
  margin: 0 0 28px;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-search {
  grid-column: 1 / -1;
  margin-top: 24px;
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--r-lg);
  padding: 18px;
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 8px;
  align-items: stretch;
}
.search-field {
  display: flex; flex-direction: column; gap: 4px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.04);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.06);
}
.search-field .mono-label { color: rgba(255,255,255,0.5); }
.search-field select {
  background: transparent; color: var(--paper);
  border: 0; outline: 0; padding: 0; margin: 0;
  font: 500 15px var(--font-sans);
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6'><path d='M1 1l4 4 4-4' stroke='%23FAFAF7' stroke-width='1.5' fill='none' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat; background-position: right 0 center;
  padding-right: 18px;
}
.search-submit {
  padding: 0 22px;
  background: var(--orange); color: var(--white);
  border-radius: 12px;
  font-weight: 600;
}
.search-submit:hover { background: var(--orange-dark); }

.hero-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 28px 0 48px;
}
.hero-strip > div { display: flex; flex-direction: column; gap: 4px; }
.strip-num {
  font-size: 40px; font-weight: 700; letter-spacing: -0.04em; line-height: 1;
  font-feature-settings: "tnum";
}
.strip-num-sm { font-size: 20px; color: var(--muted); font-weight: 500; }
.strip-label { font-size: 13px; color: var(--muted); }

/* ============ Sections common ============ */
.section { padding: 88px var(--pad-x); max-width: var(--max); margin: 0 auto; }
.section-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px 24px;
  align-items: end;
  margin-bottom: 40px;
}
.section-head .mono-label { grid-column: 1 / -1; }
.section-head h2 {
  margin: 0;
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.02;
  max-width: 14ch;
}
.section-sub {
  grid-column: 1 / -1;
  font-size: 18px; color: var(--ink-3); max-width: 56ch;
  margin: 0;
}
.head-link {
  font-size: 14px; font-weight: 600; color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
}
.head-link:hover { color: var(--orange); border-color: var(--orange); }

/* ============ Car cards ============ */
.inv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.car-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  cursor: pointer;
}
.car-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 48px -28px rgba(0,0,0,0.18);
  border-color: var(--ink-3);
}
.car-media {
  position: relative;
  aspect-ratio: 16/10;
  background: var(--paper-2);
  overflow: hidden;
}
.car-media[data-tint="a"] { background: linear-gradient(135deg, #2d2d30, #161618); }
.car-media[data-tint="b"] { background: linear-gradient(135deg, #d8d4cb, #f0ede5); }
.car-media[data-tint="c"] { background: linear-gradient(135deg, #f25c0e, #c94309); }
.car-media[data-tint="d"] { background: linear-gradient(135deg, #4a5d4e, #2d3a30); }
.car-media[data-tint="e"] { background: linear-gradient(135deg, #c7d6e0, #8aa3b5); }
.car-media[data-tint="f"] { background: linear-gradient(135deg, #b1b9c4, #6c7689); }
.car-badge {
  position: absolute; top: 14px; left: 14px;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 10px;
  background: rgba(255,255,255,0.92);
  color: var(--ink);
  font-size: 11px; font-weight: 600;
  border-radius: 999px;
  letter-spacing: -0.005em;
}
.car-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); }
.car-badge-orange { background: var(--orange); color: var(--white); }
.media-label {
  position: absolute; bottom: 12px; left: 14px;
  color: rgba(255,255,255,0.55);
}
.car-media[data-tint="b"] .media-label,
.car-media[data-tint="e"] .media-label,
.car-media[data-tint="f"] .media-label { color: rgba(10,10,11,0.4); }

/* Stylized silhouette via CSS — abstract shape */
.car-silh {
  position: absolute; left: 50%; bottom: 18%;
  transform: translateX(-50%);
  width: 72%; height: 36%;
  background: rgba(255,255,255,0.08);
  border-radius: 50% 50% 14% 14% / 80% 80% 14% 14%;
  filter: blur(0.5px);
}
.car-media[data-tint="b"] .car-silh,
.car-media[data-tint="e"] .car-silh,
.car-media[data-tint="f"] .car-silh { background: rgba(10,10,11,0.08); }
.car-silh-suv { height: 42%; border-radius: 30% 30% 14% 14% / 70% 70% 14% 14%; }
.car-silh-cpe { height: 30%; border-radius: 60% 60% 14% 14% / 90% 90% 14% 14%; }
.car-silh-wag { height: 38%; border-radius: 35% 25% 14% 14% / 70% 70% 14% 14%; width: 78%; }
.car-silh-sed { height: 34%; border-radius: 45% 45% 14% 14% / 75% 75% 14% 14%; }

.car-body { padding: 18px 20px 20px; }
.car-row1 {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}
.car-row1 h3 {
  margin: 0;
  font-size: 17px; font-weight: 600;
  letter-spacing: -0.015em;
}
.car-price {
  font-weight: 700; font-size: 16px;
  letter-spacing: -0.02em;
  white-space: nowrap;
  font-feature-settings: "tnum";
}
.car-specs {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: 6px 10px;
  font-family: var(--font-mono); font-size: 11px; color: var(--muted);
  font-weight: 500;
}
.car-specs li { position: relative; padding-right: 10px; }
.car-specs li:not(:last-child)::after {
  content: ""; position: absolute; right: 0; top: 50%;
  width: 2px; height: 2px; border-radius: 50%; background: var(--muted);
  transform: translateY(-50%);
}

/* ============ Services ============ */
.section-svc { background: var(--white); border-radius: var(--r-xl); margin-top: 24px; }
.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.svc-card {
  padding: 32px 28px 36px;
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 12px;
  transition: background .2s ease;
}
.svc-card:last-child { border-right: 0; }
.svc-card:hover { background: var(--paper-2); }
.svc-num {
  font-family: var(--font-mono);
  font-size: 12px; font-weight: 500;
  color: var(--orange);
  margin-bottom: 24px;
}
.svc-card h3 {
  margin: 0;
  font-size: 22px; font-weight: 600;
  letter-spacing: -0.02em;
}
.svc-card p {
  margin: 0;
  font-size: 14px; color: var(--ink-3); line-height: 1.55;
  flex: 1;
}
.svc-link {
  font-size: 13px; font-weight: 600; color: var(--ink);
  margin-top: 12px;
}
.svc-link:hover { color: var(--orange); }

/* ============ Finance ============ */
.section-fin .fin-wrap {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}
.fin-left h2 {
  font-size: clamp(36px, 4.5vw, 56px);
  letter-spacing: -0.035em;
  line-height: 1.02;
  font-weight: 700;
  margin: 12px 0 20px;
  max-width: 14ch;
}
.fin-left p {
  font-size: 17px; color: var(--ink-3); line-height: 1.55;
  margin: 0 0 28px;
  max-width: 48ch;
}

.fin-calc {
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--r-xl);
  padding: 28px 32px 24px;
  position: relative;
}
.calc-head {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 8px;
}
.calc-head .mono-label { color: rgba(255,255,255,0.6); }
.calc-tag {
  font-family: var(--font-mono); font-size: 11px;
  background: rgba(255,255,255,0.08); padding: 4px 8px;
  border-radius: 999px;
  color: rgba(255,255,255,0.75);
}
.calc-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(255,255,255,0.08);
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}
.calc-row:last-of-type { border-bottom: 0; }
.calc-val { color: var(--paper); font-weight: 600; font-feature-settings: "tnum"; }
.calc-row-em { padding-top: 16px; margin-top: 8px; border-top: 1px solid rgba(255,255,255,0.15); border-bottom: 0; }
.calc-row-em > span:first-child { color: var(--paper); font-size: 15px; font-weight: 600; }
.calc-val-em { font-size: 28px; letter-spacing: -0.03em; }
.calc-val-em b { color: var(--orange); }
.calc-foot {
  font-family: var(--font-mono); font-size: 11px;
  color: rgba(255,255,255,0.45);
  margin-top: 8px;
}

/* ============ Team ============ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-card {
  display: flex; flex-direction: column; gap: 4px;
}
.team-photo {
  aspect-ratio: 4/5;
  border-radius: var(--r-md);
  display: grid; place-items: center;
  margin-bottom: 14px;
  position: relative;
  overflow: hidden;
}
.team-photo[data-tint="g"] { background: linear-gradient(165deg, #1e1e22, #0a0a0b); }
.team-photo[data-tint="h"] { background: linear-gradient(165deg, #e8d6c4, #c5a988); }
.team-photo[data-tint="i"] { background: linear-gradient(165deg, #d9d4cb, #a39e94); }
.team-photo[data-tint="j"] { background: linear-gradient(165deg, #f25c0e, #c94309); }
.team-init {
  font-family: var(--font-mono);
  font-size: 56px; font-weight: 500;
  color: rgba(255,255,255,0.12);
  letter-spacing: -0.04em;
}
.team-photo[data-tint="h"] .team-init,
.team-photo[data-tint="i"] .team-init { color: rgba(10,10,11,0.18); }
.team-card h3 {
  margin: 0;
  font-size: 18px; font-weight: 600;
  letter-spacing: -0.015em;
}
.team-role { color: var(--ink-3); font-size: 14px; }
.team-meta { margin-top: 4px; }

/* ============ Location ============ */
.loc-wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: stretch;
}
.loc-left h2 {
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 700; letter-spacing: -0.035em; line-height: 1.02;
  margin: 12px 0 32px;
  max-width: 14ch;
}
.loc-info { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; max-width: 480px; }
.loc-block .mono-label { display: block; margin-bottom: 8px; }
.loc-block p {
  margin: 0;
  font-size: 15px; color: var(--ink); line-height: 1.55;
}
.loc-block a { border-bottom: 1px solid var(--line); }
.loc-block a:hover { border-color: var(--orange); color: var(--orange); }

.loc-map {
  background: var(--ink);
  border-radius: var(--r-xl);
  position: relative;
  overflow: hidden;
  min-height: 460px;
}
.map-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
}
.map-roads {
  position: absolute; inset: 0;
  background:
    linear-gradient(115deg, transparent 48%, rgba(255,255,255,0.08) 48%, rgba(255,255,255,0.08) 49.5%, transparent 49.5%),
    linear-gradient(20deg, transparent 30%, rgba(255,255,255,0.06) 30%, rgba(255,255,255,0.06) 31%, transparent 31%),
    linear-gradient(80deg, transparent 70%, rgba(255,255,255,0.05) 70%, rgba(255,255,255,0.05) 71.5%, transparent 71.5%);
}
.map-blob {
  position: absolute; border-radius: 30% 70% 60% 40% / 50% 40% 60% 50%;
  background: rgba(255,255,255,0.04);
}
.map-blob-1 { width: 200px; height: 140px; top: 18%; left: 14%; }
.map-blob-2 { width: 280px; height: 200px; bottom: 22%; right: 18%; border-radius: 60% 40% 30% 70% / 40% 60% 50% 50%; }
.map-blob-3 { width: 160px; height: 100px; bottom: 60%; right: 35%; border-radius: 50% 50% 60% 40%; }
.map-pin {
  position: absolute; top: 47%; left: 56%;
  transform: translate(-50%, -50%);
  display: flex; align-items: center; gap: 10px;
}
.pin-dot {
  width: 18px; height: 18px;
  border-radius: 50%; background: var(--orange);
  box-shadow:
    0 0 0 4px rgba(242, 92, 14, 0.25),
    0 0 0 10px rgba(242, 92, 14, 0.12);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(242,92,14,0.25), 0 0 0 10px rgba(242,92,14,0.12); }
  50%      { box-shadow: 0 0 0 6px rgba(242,92,14,0.3),  0 0 0 16px rgba(242,92,14,0.05); }
}
.pin-label {
  background: var(--paper); color: var(--ink);
  padding: 4px 10px; border-radius: 4px;
  font-size: 12px; font-weight: 600;
  letter-spacing: -0.005em;
}
.map-label {
  position: absolute; bottom: 18px; left: 20px;
  color: rgba(255,255,255,0.4);
}

/* ============ CTA strip ============ */
.section-cta { padding-top: 0; }
.cta-wrap {
  background: var(--ink); color: var(--paper);
  border-radius: var(--r-xl);
  padding: 72px clamp(28px, 6vw, 88px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 64px;
  align-items: center;
}
.cta-wrap .mono-label { grid-column: 1 / -1; color: rgba(255,255,255,0.55); }
.cta-wrap h2 {
  margin: 0;
  font-size: clamp(36px, 4.8vw, 64px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1;
  max-width: 14ch;
}
.cta-wrap p {
  margin: 0;
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  line-height: 1.55;
  max-width: 38ch;
}
.cta-row {
  grid-column: 1 / -1;
  display: flex; gap: 12px; flex-wrap: wrap;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* ============ Footer ============ */
.footer {
  background: var(--paper);
  padding: 64px var(--pad-x) 24px;
  border-top: 1px solid var(--line);
  max-width: var(--max); margin: 0 auto;
}
.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.logo-foot .logo-mark { width: 36px; height: 36px; font-size: 19px; }
.logo-foot .logo-word { font-size: 16px; }
.foot-tag { color: var(--muted); font-size: 14px; margin-top: 12px; max-width: 28ch; }
.foot-col { display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.foot-col .mono-label { margin-bottom: 6px; }
.foot-col a { color: var(--ink-3); }
.foot-col a:hover { color: var(--ink); }
.foot-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 12px; color: var(--muted);
}
.baycom-credit {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--muted);
  transition: color 0.15s;
}
.baycom-credit:hover { color: var(--ink); }
.baycom-logo {
  height: 18px; width: auto;
  opacity: 0.6;
  transition: opacity 0.15s;
}
.baycom-credit:hover .baycom-logo { opacity: 1; }

/* ============ Hamburger / Mobile Nav ============ */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px; height: 18px;
  padding: 0;
  margin-left: 4px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform .22s ease, opacity .18s ease;
}
.hamburger[aria-expanded="true"] span:first-child { transform: translateY(8px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0.2); }
.hamburger[aria-expanded="true"] span:last-child  { transform: translateY(-8px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 49;
  flex-direction: column;
  padding: 88px var(--pad-x) 40px;
  background: var(--paper);
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: clamp(20px, 6vw, 28px);
  font-weight: 600;
  color: var(--ink);
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  transition: color .15s;
}
.mobile-nav a:hover { color: var(--orange); }
.mobile-nav a.active { color: var(--orange); }
.mobile-nav .btn-primary {
  margin-top: 32px;
  font-size: 16px;
  align-self: flex-start;
}

/* ============ Responsive ============ */
@media (max-width: 1100px) {
  .inv-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-card { border-right: 0; border-bottom: 1px solid var(--line); }
  .svc-card:nth-child(2n) { border-right: 0; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-search { grid-template-columns: repeat(2, 1fr); }
  .search-submit { grid-column: 1 / -1; padding: 14px; }
  .fin-wrap { grid-template-columns: 1fr; gap: 32px; }
  .loc-wrap { grid-template-columns: 1fr; }
  .cta-wrap { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-tools .btn-primary { display: none; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-side { grid-column: 1; margin-left: 0; }
  .hero-strip { grid-template-columns: 1fr 1fr; gap: 16px; }
  .inv-grid { grid-template-columns: 1fr; }
  .svc-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .loc-info { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
}

/* ============ Language visibility ============ */
body[data-lang="en"] .lang-de { display: none; }
body[data-lang="de"] .lang-en { display: none; }

/* ============ Cookie notice ============ */
.cookie-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  background: #0A0A0B;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 16px var(--pad-x);
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  box-shadow: 0 -4px 32px rgba(0,0,0,0.4);
}
.cookie-bar p {
  margin: 0;
  font-size: 13px; line-height: 1.5;
  color: rgba(255,255,255,0.75);
  max-width: 640px;
}
.cookie-bar-btns { display: flex; gap: 8px; flex-shrink: 0; }
.cookie-accept {
  padding: 8px 18px;
  background: var(--orange); color: #fff;
  border-radius: 8px;
  font-size: 13px; font-weight: 600;
  transition: background .15s;
  white-space: nowrap;
}
.cookie-accept:hover { background: var(--orange-dark); }
.cookie-more {
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,0.65);
  transition: border-color .15s, color .15s;
  white-space: nowrap;
  display: inline-flex; align-items: center;
}
.cookie-more:hover { border-color: rgba(255,255,255,0.5); color: #fff; }
