/* ===========================================
   EXO VISUAL MEDIA — Shared site styles
   =========================================== */

:root {
  --brand: #29afcc;
  --brand-bright: #3dd6f5;
  --brand-deep: #1a7a8f;
  --cta: #ff6b4a;
  --cta-bright: #ff8866;
  --cta-deep: #e04a28;
  --ink: #0a0d10;
  --ink-2: #12171c;
  --ink-3: #1a2127;
  --line: rgba(255, 255, 255, 0.08);
  --line-2: rgba(255, 255, 255, 0.14);
  --text: #e8ecef;
  --text-muted: #8a949c;
  --text-dim: #5c6670;
  --font-display: 'Geist', -apple-system, 'Segoe UI', sans-serif;
  --font-body: 'Geist', -apple-system, 'Segoe UI', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--text);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img { max-width: 100%; display: block; }

.container { max-width: 1320px; margin: 0 auto; padding: 0 32px; }

/* ===== TABLET PADDING =====
   At desktop (>1024px) content has natural breathing room because
   max-widths are smaller than viewport. At tablet (700-1024px) the content
   fills nearly the whole viewport and feels cramped. Bump container
   padding and constrain a few content max-widths. */
@media (max-width: 1024px) and (min-width: 701px) {
  .container { padding: 0 56px; }
  /* Constrain page-header content so it doesn't run edge-to-edge */
  .page-header h1 { max-width: 720px; }
  .page-header p { max-width: 580px; }
  /* Section heads on home/inner pages */
  .section-head { gap: 40px; }
  .section-title { max-width: 600px; }
}

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 20px 0;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  background: rgba(10, 13, 16, 0.85);
  border-bottom: 1px solid var(--line);
  transition: border-color .3s ease, background .3s ease;
}
.nav.home-nav {
  background: rgba(10, 13, 16, 0.6);
  border-bottom-color: transparent;
}
.nav.home-nav.scrolled {
  background: rgba(10, 13, 16, 0.85);
  border-bottom-color: var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo img { height: 48px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 36px; margin-left: auto; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--text-muted);
  transition: color .2s ease; position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 2px; background: var(--brand);
  transition: width .3s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

/* Right side of nav: lang switcher (Start a Project button removed) */
.nav-right {
  display: flex; align-items: center; gap: 14px;
}
.lang-switch {
  display: inline-flex; align-items: center;
  border: 1px solid var(--line-2);
  border-radius: 100px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.02);
}
.lang-switch button,
.lang-switch a {
  padding: 6px 12px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  border-radius: 100px;
  transition: color .2s ease, background .2s ease;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  background: transparent;
  border: none;
  font-family: inherit;
}
.lang-switch button:hover,
.lang-switch a:hover { color: var(--text); }
.lang-switch button.active,
.lang-switch a.active {
  background: var(--brand);
  color: #041014;
}
.mobile-toggle {
  display: none; width: 42px; height: 42px; border-radius: 10px;
  border: 1px solid var(--line-2); align-items: center; justify-content: center;
}
.mobile-toggle span { display: block; width: 18px; height: 2px; background: var(--text); position: relative; }
.mobile-toggle span::before, .mobile-toggle span::after {
  content: ''; position: absolute; left: 0; width: 18px; height: 2px; background: var(--text);
}
.mobile-toggle span::before { top: -6px; }
.mobile-toggle span::after { top: 6px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 22px; border-radius: 100px;
  font-size: 14px; font-weight: 600; letter-spacing: 0.01em;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--cta); color: #1a0a05;
  box-shadow: 0 8px 24px rgba(255, 107, 74, .3), inset 0 1px 0 rgba(255,255,255,.25);
}
.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--cta-bright);
  box-shadow: 0 14px 34px rgba(255, 107, 74, .5), inset 0 1px 0 rgba(255,255,255,.35);
}
.btn-brand {
  background: var(--brand); color: #041014;
  box-shadow: 0 8px 24px rgba(41, 175, 204, .25), inset 0 1px 0 rgba(255,255,255,.2);
}
.btn-brand:hover {
  transform: translateY(-2px);
  background: var(--brand-bright);
  box-shadow: 0 12px 30px rgba(41, 175, 204, .45), inset 0 1px 0 rgba(255,255,255,.3);
}
.btn-ghost { background: transparent; color: var(--text); border: 1px solid var(--line-2); }
.btn-ghost:hover { background: rgba(255,255,255,.06); border-color: var(--brand); }
.btn-lg { padding: 16px 30px; font-size: 15px; }

/* ===== PAGE HEADER (used on all inner pages) ===== */
.page-header {
  padding: 200px 0 80px;
  position: relative;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.page-header::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background-image: url('assets/headers/work.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.25;
  filter: saturate(0.85);
}
.page-header::after {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 30%, rgba(41, 175, 204, 0.2), transparent 60%),
    radial-gradient(ellipse 50% 60% at 10% 80%, rgba(41, 175, 204, 0.1), transparent 50%),
    linear-gradient(180deg, rgba(10, 13, 16, 0.75) 0%, rgba(10, 13, 16, 0.95) 100%);
}
/* Contact page uses a different header image */
.page-header.contact-header::before {
  background-image: url('assets/headers/contact.webp');
}
.page-header .container { position: relative; z-index: 1; }
.page-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px; border-radius: 100px;
  background: rgba(41, 175, 204, .1);
  border: 1px solid rgba(41, 175, 204, .25);
  color: var(--brand-bright);
  font-size: 12px; font-weight: 500; letter-spacing: 0.04em;
  text-transform: uppercase; margin-bottom: 28px;
}
.page-header h1 {
  font-family: var(--font-display);
  font-weight: 800;
  /* Below the hero ceiling (80px) — hero is THE biggest. */
  font-size: clamp(36px, 5vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  max-width: 900px;
  margin-bottom: 24px;
}
.page-header h1 em { font-style: normal; color: var(--brand); font-weight: 300; }
.page-header p {
  font-size: clamp(17px, 1.4vw, 19px);
  color: var(--text-muted);
  max-width: 640px;
  line-height: 1.55;
}
.page-stats {
  display: flex; gap: 48px; margin-top: 56px; padding-top: 32px;
  border-top: 1px solid var(--line); max-width: 700px;
}
.page-stat h3 {
  font-family: var(--font-display);
  font-size: 36px; font-weight: 700; color: var(--brand);
  letter-spacing: -0.03em; margin-bottom: 4px;
}
.page-stat p {
  font-size: 13px; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.08em;
}

/* ===== SECTION HELPERS ===== */
section { padding: 120px 0; position: relative; }
.section-label {
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--brand); margin-bottom: 16px;
  display: flex; align-items: center; gap: 12px;
}
.section-label::before { content: ''; width: 28px; height: 1px; background: var(--brand); }
.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  /* Major-section tier — primary anchors below the page-header. */
  font-size: clamp(30px, 3.6vw, 52px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  max-width: 750px;
}
.section-title em { font-style: normal; color: var(--brand); font-weight: 300; }

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 50%, rgba(41, 175, 204, 0.18), transparent 70%),
    var(--ink);
}
.cta-inner { position: relative; text-align: center; max-width: 820px; margin: 0 auto; }
.cta-inner h2 {
  font-family: var(--font-display);
  font-weight: 800;
  /* Major-section tier — CTA banners are anchor sections, not page-level. */
  font-size: clamp(30px, 3.6vw, 52px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin-bottom: 24px;
}
.cta-inner h2 em { font-style: normal; color: var(--brand); font-weight: 300; }
.cta-inner p { color: var(--text-muted); font-size: 18px; margin-bottom: 40px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== VIDEO MODAL ===== */
.video-modal {
  position: fixed; inset: 0;
  background: rgba(5, 8, 10, 0.92);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  z-index: 1000;
  display: none; align-items: center; justify-content: center;
  padding: 40px; opacity: 0;
  transition: opacity .3s ease;
}
.video-modal.active { display: flex; opacity: 1; }
.video-modal-inner { position: relative; width: 100%; max-width: 1200px; aspect-ratio: 16 / 9; }
.video-modal iframe { width: 100%; height: 100%; border: 0; border-radius: 12px; box-shadow: 0 40px 100px rgba(0,0,0,.6); }
.video-modal-close {
  position: absolute; top: -50px; right: 0;
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid var(--line-2);
  color: var(--text);
  display: grid; place-items: center; cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}
.video-modal-close:hover { background: var(--brand); color: #041014; transform: rotate(90deg); }

/* ===== FOOTER ===== */
footer { padding: 80px 0 40px; background: var(--ink); border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
.footer-brand .logo { margin-bottom: 24px; display: inline-flex; }
.footer-brand .logo img { height: 44px; }
.footer-brand p {
  color: var(--text-muted); font-size: 14px; line-height: 1.6;
  max-width: 320px; margin-bottom: 24px;
}
.social-links { display: flex; gap: 10px; }
.social-links a {
  width: 40px; height: 40px; border-radius: 10px;
  border: 1px solid var(--line-2);
  display: grid; place-items: center;
  color: var(--text-muted);
  transition: all .25s ease;
}
.social-links a:hover {
  border-color: var(--brand); color: var(--brand);
  background: rgba(41, 175, 204, .08); transform: translateY(-2px);
}
.social-links svg { width: 18px; height: 18px; }
.footer-col h4 {
  font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--text); margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: var(--text-muted); font-size: 14px; transition: color .2s ease; }
.footer-col a:hover { color: var(--brand); }
.footer-col address {
  color: var(--text-muted); font-size: 14px; line-height: 1.7; font-style: normal;
}
.footer-bottom {
  padding-top: 32px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 20px; font-size: 13px; color: var(--text-dim);
}
.footer-bottom .legal { display: flex; gap: 24px; }
.footer-bottom a { color: var(--text-dim); transition: color .2s ease; }
.footer-bottom a:hover { color: var(--brand); }

/* ===== WHATSAPP FLOAT ===== */
/* ===== WHATSAPP BUTTONS ===== */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px;
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px;
  padding: 0;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(37, 211, 102, .35), 0 2px 8px rgba(0,0,0,.25);
  z-index: 99;
  transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s ease, background .3s ease;
}
.whatsapp-float svg {
  width: 28px; height: 28px;
  flex-shrink: 0;
}
.whatsapp-float span { display: none; } /* icon-only, label hidden everywhere */
.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.05);
  background: #1ebe57;
  box-shadow: 0 16px 40px rgba(37, 211, 102, .55), 0 4px 12px rgba(0,0,0,.3);
}
.whatsapp-float:active {
  transform: translateY(-1px) scale(1.02);
}
@media (max-width: 700px) {
  .whatsapp-float {
    bottom: 16px; right: 16px;
    /* Same dimensions as desktop — visual consistency */
  }
}

/* ===== PORTFOLIO THUMBNAIL TREATMENT =====
   Real cinematic images — so we only add:
   - A very light filter tweak (near-invisible)
   - A clean hover glow frame to reinforce "gallery piece" interaction
*/
.portfolio-item img,
.work-item img,
.service-example img {
  filter: saturate(.95);
  transition: transform .8s cubic-bezier(.2,.8,.2,1), filter .4s ease;
}
.portfolio-item:hover img,
.work-item:hover img,
.service-example:hover img {
  filter: saturate(1.05);
}

/* A thin frame-like border that appears on hover, reinforcing "curated" */
.portfolio-item::after,
.work-item::after,
.service-example::after {
  content: '';
  position: absolute; inset: 0; z-index: 2;
  pointer-events: none;
  border: 1px solid transparent;
  border-radius: inherit;
  transition: border-color .3s ease, box-shadow .3s ease;
}
.portfolio-item:hover::after,
.work-item:hover::after,
.service-example:hover::after {
  border-color: rgba(41, 175, 204, 0.4);
  box-shadow: inset 0 0 0 1px rgba(41, 175, 204, 0.2), 0 0 40px rgba(41, 175, 204, 0.12);
}
/* Make sure play button and overlay stack above treatment */
.portfolio-overlay, .work-overlay, .service-example-overlay,
.portfolio-item .play-btn, .work-item .play-btn, .service-example .play-btn { z-index: 3; }

/* ===== REVEAL ANIMATION ===== */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.2, .8, .2, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 700px) {
  .container { padding: 0 20px; }

  /* Lift the entire nav above the backdrop so its descendants
     (drawer + links) can receive taps. The nav already has its own
     stacking context via position: fixed. */
  .nav { z-index: 1000; }

  /* Mobile menu drawer */
  .nav-links {
    position: fixed;
    top: 0; right: 0;
    width: min(82vw, 320px);
    height: 100vh; height: 100dvh;
    background: rgba(10, 13, 16, 0.98);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-left: 1px solid var(--line-2);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    padding: 100px 32px 32px;
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.2,.8,.2,1);
    margin-left: 0;
  }
  .nav-links a {
    font-family: var(--font-display);
    font-size: 22px; font-weight: 600;
    letter-spacing: -0.02em;
    width: 100%;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
    color: var(--text);
  }
  .nav-links a::after { display: none; }
  body.nav-open .nav-links { transform: translateX(0); }

  /* Backdrop overlay — sits BELOW the nav. Tap-anywhere closes the menu. */
  body.nav-open::before {
    content: '';
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    animation: fadeIn .25s ease;
  }
  @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

  /* Burger toggle */
  .mobile-toggle {
    display: flex;
    position: relative;
    cursor: pointer;
  }
  .mobile-toggle span,
  .mobile-toggle span::before,
  .mobile-toggle span::after {
    transition: transform .3s ease, top .3s ease, opacity .2s ease;
  }
  body.nav-open .mobile-toggle span { background: transparent; }
  body.nav-open .mobile-toggle span::before { top: 0; transform: rotate(45deg); }
  body.nav-open .mobile-toggle span::after  { top: 0; transform: rotate(-45deg); }

  /* Lock body scroll when menu open */
  body.nav-open { overflow: hidden; }

  /* Keep language switch visible on mobile, sitting next to the burger.
     South-Tyrolean clients are split EN/DE — the toggle is too important
     to bury behind the menu.
     The lang-switch becomes a small inline pill group; mobile-toggle
     stays at the right edge. */
  .nav-right {
    display: flex;
    margin-left: auto;
    margin-right: 10px;
  }
  .lang-switch {
    padding: 3px;
  }
  .lang-switch a,
  .lang-switch button {
    padding: 5px 10px;
    font-size: 11px;
  }

  .nav .btn-primary { display: none; }
  section { padding: 80px 0; }
  .page-header { padding: 140px 0 60px; }
  .page-stats { flex-direction: column; gap: 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ===== SHARED FORM FIX: readable native select dropdown ===== */
select.styled-select {
  appearance: none; -webkit-appearance: none; -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1.5L6 6.5L11 1.5' stroke='%238a949c' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 42px;
  color-scheme: dark;
}
select.styled-select option {
  background: #12171c;
  color: #e8ecef;
  padding: 10px;
}
select.styled-select option:checked,
select.styled-select option:hover {
  background: #1a2127;
}

/* Larger, clearer checkboxes */
.checkbox-lg {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14px; color: var(--text-muted); line-height: 1.55;
}
.checkbox-lg input[type="checkbox"] {
  width: 20px; height: 20px;
  margin: 1px 0 0 0;
  accent-color: var(--brand);
  flex-shrink: 0;
  cursor: pointer;
}
.checkbox-lg label { cursor: pointer; margin: 0; font-size: 14px; color: var(--text-muted); text-transform: none; letter-spacing: 0; }
.checkbox-lg a { color: var(--brand); text-decoration: underline; }

/* ===== COOKIE CONSENT BANNER =====
   Positioned bottom-right, above the WhatsApp float so they stack cleanly. */
.cookie-banner {
  position: fixed; bottom: 96px; right: 20px;
  max-width: 420px;
  width: calc(100% - 40px);
  background: rgba(18, 23, 28, 0.98);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--line-2);
  border-radius: 18px;
  padding: 24px 28px;
  z-index: 2000;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transform: translateY(calc(100% + 96px));
  transition: transform .5s cubic-bezier(.2, .8, .2, 1);
}
@media (max-width: 700px) {
  .cookie-banner {
    bottom: 84px;
    right: 16px;
    width: calc(100% - 32px);
  }
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner h4 {
  font-family: var(--font-display);
  font-size: 16px; font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--text);
  margin-bottom: 8px;
  display: flex; align-items: center; gap: 8px;
}
.cookie-banner h4 svg { width: 18px; height: 18px; color: var(--brand); }
.cookie-banner p {
  color: var(--text-muted); font-size: 13px;
  line-height: 1.55; margin-bottom: 18px;
}
.cookie-banner p a { color: var(--brand); text-decoration: underline; }
.cookie-actions {
  display: flex; gap: 10px; flex-wrap: wrap; align-items: center;
}
.cookie-actions .btn {
  padding: 10px 20px; font-size: 13px;
}
.cookie-link {
  font-size: 12px; color: var(--text-dim);
  text-decoration: underline; cursor: pointer;
  padding: 0 4px;
}
.cookie-link:hover { color: var(--brand); }

/* Subtle wiggle on the Accept All button (first .btn-primary in cookie banner) */
@keyframes cookieWiggle {
  0%, 70%, 100% { transform: rotate(0deg); }
  76% { transform: rotate(-3deg); }
  82% { transform: rotate(2.5deg); }
  88% { transform: rotate(-2deg); }
  94% { transform: rotate(1deg); }
}
.cookie-banner.visible .cookie-actions .btn-primary {
  animation: cookieWiggle 3.2s ease-in-out 1.2s infinite;
  transform-origin: center;
}
.cookie-banner.visible .cookie-actions .btn-primary:hover {
  animation: none;
}
@media (prefers-reduced-motion: reduce) {
  .cookie-banner.visible .cookie-actions .btn-primary { animation: none; }
}

/* Cookie preferences modal */
.cookie-modal {
  position: fixed; inset: 0;
  background: rgba(5, 8, 10, 0.85);
  backdrop-filter: blur(8px);
  z-index: 2100;
  display: none;
  align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity .3s ease;
}
.cookie-modal.active { display: flex; opacity: 1; }
.cookie-modal-card {
  background: var(--ink-2);
  border: 1px solid var(--line-2);
  border-radius: 18px;
  padding: 36px;
  max-width: 520px; width: 100%;
  max-height: 85vh; overflow-y: auto;
}
.cookie-modal-card h3 {
  font-family: var(--font-display);
  font-size: 24px; font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 10px;
}
.cookie-modal-card > p {
  color: var(--text-muted); font-size: 14px;
  line-height: 1.55; margin-bottom: 24px;
}
.cookie-category {
  padding: 20px 0;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between;
  align-items: flex-start; gap: 18px;
}
.cookie-category:first-of-type { border-top: none; padding-top: 8px; }
.cookie-category-info h5 {
  font-family: var(--font-display);
  font-size: 15px; font-weight: 600;
  color: var(--text); margin-bottom: 4px;
}
.cookie-category-info p { color: var(--text-muted); font-size: 13px; line-height: 1.5; }
/* Toggle switch */
.toggle {
  position: relative; flex-shrink: 0;
  width: 40px; height: 22px;
  background: var(--ink-3);
  border: 1px solid var(--line-2);
  border-radius: 100px;
  cursor: pointer;
  transition: background .25s ease, border-color .25s ease;
}
.toggle::after {
  content: ''; position: absolute;
  top: 2px; left: 2px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--text-muted);
  transition: left .25s ease, background .25s ease;
}
.toggle.on { background: var(--brand); border-color: var(--brand); }
.toggle.on::after { left: 20px; background: #041014; }
.toggle.locked {
  background: var(--brand-deep); border-color: var(--brand-deep);
  cursor: not-allowed; opacity: 0.85;
}
.toggle.locked::after { left: 20px; background: rgba(255,255,255,0.7); }
.cookie-modal-actions {
  display: flex; gap: 10px; margin-top: 28px;
  padding-top: 20px; border-top: 1px solid var(--line);
  flex-wrap: wrap;
}

/* Mobile-responsive lang switcher */
@media (max-width: 860px) {
  .nav-links { gap: 24px; }
}
@media (max-width: 760px) {
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; padding: 20px; }
  .cookie-actions { flex-direction: column; align-items: stretch; }
  .cookie-actions .btn { width: 100%; justify-content: center; }
}

/* ===== SÜDTIROL TRUST BADGE (footer) ===== */
.suedtirol-badge {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 14px;
  background: #ffffff;
  border-radius: 6px;
  max-width: 160px;
}
.suedtirol-badge img {
  width: 100%; height: auto; display: block;
}
