/* ============================================================
   KUZAKA.DE — main.css
   Strict · Aggressive · Predatory
   Light background, dark text, NO red, NO dark sections
   ============================================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  --color-primary:       #0a0a0a;
  --color-primary-dark:  #000000;
  --color-accent:        #0a0a0a;
  --color-accent-hover:  #333333;

  --color-bg:            #ffffff;
  --color-bg-alt:        #f5f5f5;
  --color-surface:       #ffffff;

  --color-text:          #0a0a0a;
  --color-text-muted:    #4a4a4a;
  --color-text-light:    #777777;
  --color-text-inv:      #ffffff;

  --color-border:        #d0d0d0;
  --color-border-light:  #e5e5e5;
  --color-border-dark:   #aaa;

  /* Typography */
  --font-heading:      'Oswald', 'Arial Narrow', sans-serif;
  --font-body:         'Inter', 'Helvetica Neue', Arial, sans-serif;
  --font-hero-title:   'Bebas Neue', 'Impact', sans-serif;

  --fs-xs:   0.75rem;
  --fs-sm:   0.9rem;
  --fs-base: 1.05rem;
  --fs-md:   1.2rem;
  --fs-lg:   1.45rem;
  --fs-xl:   1.75rem;
  --fs-2xl:  2.5rem;
  --fs-3xl:  3.5rem;
  --fs-4xl:  5rem;
  --fs-5xl:  7rem;

  --fw-normal: 400;
  --fw-medium: 500;
  --fw-semi:   600;
  --fw-bold:   700;
  --fw-black:  800;

  /* Spacing */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Layout */
  --container-max: 1200px;
  --container-pad: clamp(1rem, 4vw, 2.5rem);

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(0,0,0,.04);
  --shadow-md:  0 4px 20px rgba(0,0,0,.07);
  --shadow-lg:  0 12px 40px rgba(0,0,0,.1);

  /* Transitions */
  --transition:      0.2s cubic-bezier(.4,0,.2,1);
  --transition-slow: 0.4s cubic-bezier(.4,0,.2,1);

  /* Header */
  --header-h: 72px;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
  letter-spacing: 0.01em;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition), opacity var(--transition);
}
a:hover { opacity: 0.8; }

ul, ol { list-style: none; }

h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-heading);
  line-height: 1.1;
  color: var(--color-text);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

button { cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ---------- Skip Link ---------- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--color-accent);
  color: #fff;
  padding: 0.5rem 1rem;
  z-index: 10000;
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  transition: top var(--transition);
}
.skip-link:focus { top: 1rem; }

/* ---------- Container ---------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-inline: var(--container-pad);
}

/* ---------- Section Base ---------- */
.section {
  padding-block: clamp(var(--space-16), 8vw, var(--space-24));
  position: relative;
}

/* Alternating light background */
.section--alt {
  background: var(--color-bg-alt);
}

/* Legacy dark class — now maps to alt */
.section--dark {
  background: var(--color-bg-alt);
  color: var(--color-text);
}
.section--dark h2,
.section--dark h3 { color: var(--color-text); }
.section--dark .section-label { color: var(--color-text-muted); border-color: var(--color-border); }
.section--dark .section-subtitle { color: var(--color-text-muted); }
.section--dark p { color: var(--color-text-muted); }

/* Accent bg */
.section--accent {
  background: var(--color-bg-alt);
  color: var(--color-text);
}

/* Section header */
.section-header {
  text-align: center;
  margin-bottom: clamp(var(--space-10), 4vw, var(--space-16));
}

.section-label {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  font-family: var(--font-heading);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  padding: var(--space-1) var(--space-5);
  margin-bottom: var(--space-4);
  border: 2px solid var(--color-border);
  background: transparent;
}

.section-title {
  font-size: clamp(var(--fs-2xl), 5.5vw, var(--fs-3xl));
  font-weight: var(--fw-black);
  margin-bottom: var(--space-4);
  color: var(--color-text);
  line-height: 1;
}

.section-subtitle {
  font-size: var(--fs-md);
  color: var(--color-text-muted);
  max-width: 60ch;
  margin-inline: auto;
  line-height: 1.65;
}

/* Thin top border between sections */
.section + .section {
  border-top: 1px solid var(--color-border-light);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.8rem 1.6rem;
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  font-size: var(--fs-base);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}

.btn--lg { padding: 1rem 2.2rem; font-size: var(--fs-md); }
.btn--full { width: 100%; justify-content: center; }

.btn--primary {
  background: var(--color-accent);
  color: var(--color-text-inv);
  border-color: var(--color-accent);
}
.btn--primary:hover {
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  opacity: 1;
}

.btn--outline {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-border-dark);
}
.btn--outline:hover {
  background: var(--color-text);
  color: var(--color-text-inv);
  border-color: var(--color-text);
  transform: translateY(-2px);
  opacity: 1;
}

/* Solid background in hero so fish don't bleed through */
.hero .btn--outline {
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.hero .btn--outline:hover {
  background: var(--color-text);
}

.btn--download {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.6rem 1.25rem;
  background: var(--color-accent);
  color: var(--color-text-inv);
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  font-family: var(--font-heading);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all var(--transition);
}
.btn--download:hover {
  background: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  opacity: 1;
}

/* ---------- HEADER ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border-light);
  height: var(--header-h);
  transition: box-shadow var(--transition);
}
.site-header.scrolled {
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  height: var(--header-h);
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  flex-shrink: 0;
}
.brand-img {
  height: 32px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* Desktop Nav */
.main-nav { display: flex; margin-left: auto; }
.nav-list {
  display: flex;
  gap: var(--space-1);
  align-items: center;
}
.nav-link {
  padding: var(--space-2) var(--space-4);
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  font-family: var(--font-heading);
  color: var(--color-text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: var(--space-4);
  right: var(--space-4);
  height: 2px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition);
}
.nav-link:hover {
  color: var(--color-text);
  opacity: 1;
}
.nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav-link--cta {
  background: var(--color-accent);
  color: var(--color-text-inv);
  margin-left: var(--space-2);
}
.nav-link--cta::after { display: none; }
.nav-link--cta:hover {
  background: var(--color-accent-hover);
  color: var(--color-text-inv);
}

/* Language Switcher */
.lang-switcher {
  position: relative;
  flex-shrink: 0;
}
.lang-btn {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-3);
  border: 2px solid var(--color-border);
  background: transparent;
  color: var(--color-text-muted);
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  font-family: var(--font-heading);
  letter-spacing: 0.1em;
  transition: all var(--transition);
}
.lang-btn:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}
.lang-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: -113px;
  background: #fff;
  border: 1px solid var(--color-border-light);
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
  min-width: 180px;
  border-radius: 6px;
  padding-block: 6px;
  overflow: hidden;
  z-index: 200;
}
.lang-dropdown.open { display: block; }
.lang-option {
  padding: var(--space-3) var(--space-4);
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.lang-option:hover {
  background: var(--color-bg-alt);
  color: var(--color-text);
}
.lang-option.active {
  background: var(--color-accent);
  color: var(--color-text-inv);
  font-weight: var(--fw-bold);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  background: none;
  border: none;
  margin-left: auto;
}
.bar {
  width: 26px;
  height: 3px;
  background: var(--color-text);
  transition: all var(--transition);
  display: block;
}
.hamburger[aria-expanded="true"] .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger[aria-expanded="true"] .bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger[aria-expanded="true"] .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  background: #fff;
  border-top: 1px solid var(--color-border-light);
  padding: var(--space-4) var(--container-pad);
  position: absolute;
  width: 100%;
  box-shadow: 0 8px 32px rgba(0,0,0,.06);
}
.mobile-nav-list { display: flex; flex-direction: column; gap: var(--space-2); }
.mobile-nav-link {
  display: block;
  padding: var(--space-3) var(--space-4);
  font-weight: var(--fw-bold);
  font-family: var(--font-heading);
  font-size: var(--fs-xl);
  color: var(--color-text);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all var(--transition);
  border-left: 3px solid transparent;
}
.mobile-nav-link:hover {
  color: var(--color-text);
  border-left-color: var(--color-accent);
  background: var(--color-bg-alt);
  opacity: 1;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  background: var(--color-bg);
  min-height: calc(100svh - var(--header-h));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-block: clamp(var(--space-16), 10vw, var(--space-24));
  border-bottom: 1px solid var(--color-border-light);
}

/* Faint diagonal lines background */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 60px,
      rgba(0,0,0,.015) 60px,
      rgba(0,0,0,.015) 61px
    );
  pointer-events: none;
}

/* =============================================
   HERO FISHING PARALLAX — Background Scene
   ============================================= */
.hero-bg {
  display: block;
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.hero-deco {
  position: absolute;
  pointer-events: none;
  will-change: transform;
}

/* --- Layer 1: Pike watermark (deepest, slowest parallax) --- */
.hero-deco--watermark {
  right: -6%;
  top: 50%;
  width: min(58vw, 640px);
  opacity: 0.04;
  color: var(--color-text);
  transform: translateY(-50%);
  animation: deco-pike-drift 20s ease-in-out infinite alternate;
}
.hero-pike-watermark { width: 100%; height: auto; }

@keyframes deco-pike-drift {
  0%   { transform: translateY(-50%) rotate(-1.5deg) scale(1); }
  100% { transform: translateY(-54%) rotate(1.5deg) scale(1.05); }
}

/* --- Layer 2: Underwater depth lines --- */
.hero-deco--depth {
  bottom: 0;
  left: 0;
  right: 0;
  height: 180px;
  opacity: 0.055;
  color: var(--color-text);
  animation: deco-depth-shift 14s ease-in-out infinite alternate;
}
.hero-depth-lines { width: 100%; height: 100%; }

@keyframes deco-depth-shift {
  from { transform: translateX(-12px) scale(1.02); }
  to   { transform: translateX(12px)  scale(1); }
}

/* --- Layer 3: Fishing line with hook/lure --- */
.hero-deco--line {
  top: 0;
  left: 20%;
  width: 36px;
  height: 360px;
  opacity: 0.2;
  color: var(--color-text);
  transform-origin: top center;
  animation: deco-line-sway 5s ease-in-out infinite alternate;
}
.hero-deco--line svg { width: 100%; height: 100%; overflow: visible; }

@keyframes deco-line-sway {
  0%   { transform: rotate(-5deg); }
  100% { transform: rotate(5deg); }
}

/* --- Layer 4a: Pike swimming left → right --- */
.hero-deco--fish-1 {
  top: 30%;
  width: 72px;
  opacity: 0.08;
  color: var(--color-text);
  animation: fish-swim-right 28s linear 0s infinite;
}
.hero-deco--fish-1 svg { width: 100%; height: auto; }

@keyframes fish-swim-right {
  0%   { transform: translateX(-15vw) translateY(0); }
  45%  { transform: translateX(55vw)  translateY(-6px); }
  55%  { transform: translateX(65vw)  translateY(6px); }
  100% { transform: translateX(115vw) translateY(0); }
}

/* --- Layer 4b: Smaller fish, right → left, depth illusion --- */
.hero-deco--fish-2 {
  top: 64%;
  width: 44px;
  opacity: 0.055;
  color: var(--color-text);
  animation: fish-swim-left 36s linear 9s infinite;
}
.hero-deco--fish-2 svg { width: 100%; height: auto; }

@keyframes fish-swim-left {
  0%   { transform: translateX(115vw) translateY(0); }
  40%  { transform: translateX(50vw)  translateY(8px); }
  60%  { transform: translateX(30vw)  translateY(-4px); }
  100% { transform: translateX(-15vw) translateY(0); }
}

/* --- Layer 5: Bubbles rising from depth --- */
.hero-bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-bubble {
  position: absolute;
  bottom: -20px;
  border-radius: 50%;
  border: 1px solid var(--color-text);
  animation: bubble-rise linear infinite;
}
@keyframes bubble-rise {
  0%   { transform: translateY(0)      translateX(0);    opacity: 0;    }
  8%   {                                                 opacity: 0.22; }
  85%  {                                                 opacity: 0.10; }
  100% { transform: translateY(-110vh) translateX(10px); opacity: 0;    }
}
.hero-bubble--1 { width:  5px; height:  5px; left:  9%; animation-duration: 10s; animation-delay:  0s; }
.hero-bubble--2 { width:  9px; height:  9px; left: 19%; animation-duration: 14s; animation-delay:  2s; }
.hero-bubble--3 { width:  4px; height:  4px; left: 33%; animation-duration:  8s; animation-delay:  5s; }
.hero-bubble--4 { width: 11px; height: 11px; left: 48%; animation-duration: 16s; animation-delay:  1s; }
.hero-bubble--5 { width:  6px; height:  6px; left: 62%; animation-duration: 11s; animation-delay:  8s; }
.hero-bubble--6 { width: 14px; height: 14px; left: 75%; animation-duration: 18s; animation-delay:  3s; }
.hero-bubble--7 { width:  3px; height:  3px; left: 88%; animation-duration:  7s; animation-delay: 11s; }
.hero-bubble--8 { width:  8px; height:  8px; left: 55%; animation-duration: 13s; animation-delay:  6s; }

/* --- Layer 6: Water surface shimmer at bottom --- */
.hero-waves {
  display: block;
  position: absolute;
  bottom: 0;
  left: -10%;
  right: -10%;
  height: 48px;
  opacity: 0.07;
  background: none;
  animation: waves-shift 8s ease-in-out infinite alternate;
}
.hero-waves::before,
.hero-waves::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  border-radius: 50%;
  background: var(--color-text);
  box-shadow:
    0 12px 0 0 var(--color-text),
    0 24px 0 0 var(--color-text),
    0 36px 0 0 var(--color-text);
  animation: waves-ripple 6s ease-in-out infinite;
}
.hero-waves::after {
  animation-delay: -3s;
  opacity: 0.5;
}
@keyframes waves-shift {
  from { transform: translateX(0)    scaleX(1);
         filter: blur(0.5px); }
  to   { transform: translateX(40px) scaleX(1.03);
         filter: blur(0.8px); }
}
@keyframes waves-ripple {
  0%, 100% { transform: scaleX(0.98) translateY(0);   }
  50%       { transform: scaleX(1.01) translateY(2px); }
}

/* CSS Scroll-driven parallax (Chrome 115+, Safari 18+) — progressive enhancement */
@supports (animation-timeline: scroll()) {
  .hero-deco--watermark {
    animation:
      deco-pike-drift 20s ease-in-out infinite alternate,
      _hero-par-deep linear both;
    animation-timeline: auto, scroll(root);
    animation-range:    auto, 0% 60%;
  }
  .hero-deco--depth {
    animation:
      deco-depth-shift 14s ease-in-out infinite alternate,
      _hero-par-mid linear both;
    animation-timeline: auto, scroll(root);
    animation-range:    auto, 0% 60%;
  }
  .hero-deco--line {
    animation:
      deco-line-sway 5s ease-in-out infinite alternate,
      _hero-par-line linear both;
    animation-timeline: auto, scroll(root);
    animation-range:    auto, 0% 60%;
  }
  @keyframes _hero-par-deep { to { translate: 0 180px; } }
  @keyframes _hero-par-mid  { to { translate: 0  90px; } }
  @keyframes _hero-par-line { to { translate: 0  60px; } }
}

/* --- Layer 7: Colorful fish — pure CSS --- */
/* Fish are always behind text (z-index:0) — opacity keeps them clearly decorative */
.hero-color-fish {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.25;
}

.cfish {
  position: absolute;
  display: block;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.18));
}

/* Left-swimming fish face right by default — flip horizontally */
.cfish--flip { transform: scaleX(-1); }

/* Wrapper divs are inert layout helpers */
.cfish-wrap { display: contents; }

/* ---- Individual fish paths — each fish has a unique trajectory ---- */

/* Fish 1 — diagonal: enter bottom-left, exit top-right */
@keyframes fish-path--1 {
  0%   { translate: -130px  60px; }
  35%  { translate: 28vw    20px; }
  70%  { translate: 65vw   -25px; }
  100% { translate: calc(100vw + 140px) -60px; }
}

/* Fish 2 — arc: enter top-right, dip down at centre, exit bottom-left */
@keyframes fish-path--2 {
  0%   { translate: calc(100vw + 120px) -40px; }
  30%  { translate: 68vw                15px; }
  65%  { translate: 32vw                40px; }
  100% { translate: -140px              10px; }
}

/* Fish 3 — shallow diagonal up: enter bottom-left, exit top-right */
@keyframes fish-path--3 {
  0%   { translate: -90px   55px; }
  50%  { translate: 48vw    10px; }
  100% { translate: calc(100vw + 110px) -45px; }
}

/* Fish 4 — steep diagonal: enter upper-right, exit lower-left */
@keyframes fish-path--4 {
  0%   { translate: calc(100vw + 160px) -70px; }
  40%  { translate: 55vw                20px; }
  100% { translate: -150px              90px; }
}

/* Fish 5 — S-curve right: gentle up then down */
@keyframes fish-path--5 {
  0%   { translate: -110px  40px; }
  25%  { translate: 22vw   -15px; }
  55%  { translate: 52vw    30px; }
  80%  { translate: 76vw   -10px; }
  100% { translate: calc(100vw + 120px)  5px; }
}

/* Fish 6 — steep diagonal: enter upper-right, exit lower-left */
@keyframes fish-path--6 {
  0%   { translate: calc(100vw + 100px) -55px; }
  50%  { translate: 44vw                35px; }
  100% { translate: -115px              80px; }
}

/* Fish 7 — S-curve right: down at start, up at end */
@keyframes fish-path--7 {
  0%   { translate: -100px  -20px; }
  25%  { translate: 20vw     50px; }
  55%  { translate: 50vw     10px; }
  80%  { translate: 76vw    -40px; }
  100% { translate: calc(100vw + 110px) -10px; }
}

/* Fish 8 — nearly vertical drift: enter top-right, exit bottom-left */
@keyframes fish-path--8 {
  0%   { translate: calc(100vw +  80px) -90px; }
  45%  { translate: 58vw                20px; }
  100% { translate: -130px              75px; }
}

/* Fish 9 — fast straight diagonal down-right */
@keyframes fish-path--9 {
  0%   { translate:  -70px  -30px; }
  100% { translate: calc(100vw + 90px) 60px; }
}

/* Fish 10 — slow meandering left with gentle Y waves */
@keyframes fish-path--10 {
  0%   { translate: calc(100vw + 150px)   5px; }
  20%  { translate: 76vw                 30px; }
  40%  { translate: 56vw                 -8px; }
  60%  { translate: 36vw                 35px; }
  80%  { translate: 16vw                  0px; }
  100% { translate: -160px               18px; }
}

/* ---- individual fish: size · position · direction · speed · delay ---- */
/* backwards fill-mode keeps each fish at 0% keyframe (off-screen) during delay */
.cfish--1  { width: 76px;  top: 22%; transform: scaleX(-1); animation: fish-path--1  22s linear  0s infinite backwards; }
.cfish--2  { width: 68px;  top: 38%; animation: fish-path--2  31s linear  4s infinite backwards; }
.cfish--3  { width: 52px;  top: 62%; animation: fish-path--3  25s linear  9s infinite backwards; }
.cfish--4  { width: 90px;  top: 45%; animation: fish-path--4  38s linear  2s infinite backwards; }
.cfish--5  { width: 84px;  top: 30%; animation: fish-path--5  19s linear 14s infinite backwards; }
.cfish--6  { width: 60px;  top: 70%; animation: fish-path--6  27s linear  7s infinite backwards; }
.cfish--7  { width: 44px;  top: 52%; transform: scaleX(-1); animation: fish-path--7  20s linear 11s infinite backwards; }
.cfish--8  { width: 64px;  top: 18%; animation: fish-path--8  34s linear  5s infinite backwards; }
.cfish--9  { width: 38px;  top: 78%; transform: scaleX(-1); animation: fish-path--9  15s linear 17s infinite backwards; }
.cfish--10 { width: 50px;  top: 55%; animation: fish-path--10 29s linear  1s infinite backwards; }

/* Disable for reduced-motion users */
@media (prefers-reduced-motion: reduce) {
  .cfish { display: none; }
}

/* ---- Fishing hook drop animation ---- */
.hero-hook {
  position: absolute;
  top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
  z-index: 3;
  will-change: transform;
}
.hero-hook__line {
  width: 1px;
  height: 0;
  background: #999;
  transition: height 1.4s cubic-bezier(.25, 0, .5, 1);
}
.hero-hook__line--retract {
  transition: height 0.9s ease-in !important;
}
/* Real J-hook SVG — sized to fit viewBox "-8 -2 18 32" */
.hero-hook__svg {
  width: 18px;
  height: 32px;
  flex-shrink: 0;
  overflow: visible;
  margin-top: -1px;
}
@keyframes hook-bite {
  0%   { transform: rotate(0deg)   translateX(0); }
  15%  { transform: rotate(-20deg) translateX(-5px); }
  35%  { transform: rotate(15deg)  translateX(4px); }
  55%  { transform: rotate(-10deg) translateX(-3px); }
  75%  { transform: rotate(7deg)   translateX(2px); }
  100% { transform: rotate(0deg)   translateX(0); }
}
.hero-hook--bite {
  animation: hook-bite 0.6s ease-in-out;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-8);
}

.hero-content {
  color: var(--color-text);
  display: flex;
  flex-direction: column;
  align-items: center;
  /* Frosted glass panel — fish are behind (z-index 0) but this ensures
     crisp legibility even when a fish passes directly behind the text */
  -webkit-backdrop-filter: blur(10px);
  padding: var(--space-8) var(--space-10);
  border-radius: 2px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-5);
  background: transparent;
  border: 2px solid var(--color-border);
  color: var(--color-text-muted);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  font-family: var(--font-heading);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: var(--space-6);
}

.hero-title {
  font-family: var(--font-hero-title);
  font-size: clamp(var(--fs-3xl), 8vw, var(--fs-5xl));
  font-weight: var(--fw-black);
  line-height: 0.92;
  margin-bottom: var(--space-6);
  color: var(--color-text);
}
.hero-title-accent {
  display: block;
  color: transparent;
  -webkit-text-stroke: 2px var(--color-text);
  opacity: 0.15;
}

.hero-subtitle {
  font-size: clamp(var(--fs-base), 1.5vw, var(--fs-md));
  color: var(--color-text-muted);
  max-width: 50ch;
  margin-bottom: var(--space-8);
  line-height: 1.75;
  margin-inline: auto;
}

.hero-actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: var(--space-10);
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-weight: var(--fw-black);
  font-size: var(--fs-2xl);
  color: var(--color-text);
  line-height: 1;
}
.stat-label {
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-text-light);
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--color-border);
}

/* Hero Visual — always visible, logo on top */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  will-change: transform;
}
.hero-fish-scene {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-logo-large {
  width: clamp(260px, 50vw, 560px);
  height: auto;
  display: block;
  object-fit: contain;
  transition: transform var(--transition-slow);
}
.hero-logo-large:hover {
  transform: scale(1.03);
}

/* Scroll-down hint */
.hero-scroll-hint {
  position: absolute;
  bottom: var(--space-6);
  left: 50%;
  transform: translateX(-50%);
  color: var(--color-text-light);
  opacity: 0.4;
  animation: hero-bounce 2s ease-in-out infinite;
  z-index: 2;
}
@keyframes hero-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* Legacy animation elements — hidden */
.fish, .water-line, .bubbles, .bubble { display: none; }

/* ---------- PARALLAX HELPERS ---------- */
[data-parallax] {
  will-change: transform;
  transition: transform 0.05s linear;
}

/* ---------- TRUST BAR ---------- */
.trust-bar {
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
  padding-block: var(--space-5);
}
.trust-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-6) var(--space-10);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  font-family: var(--font-heading);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.trust-item svg { color: var(--color-text); flex-shrink: 0; }

/* ---------- CATEGORIES GRID ---------- */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-6);
}

.category-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border-light);
  border-left: 4px solid var(--color-border);
  padding: var(--space-6);
  transition: all var(--transition);
  display: flex;
  gap: var(--space-4);
}
.category-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-left-color: var(--color-accent);
}
.category-card__icon {
  font-size: 2.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.category-card__title {
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: var(--color-text);
  letter-spacing: 0.06em;
  margin-bottom: var(--space-2);
}
.category-card__desc {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-3);
  line-height: 1.6;
}
.category-card__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}
.category-card__list li {
  font-size: var(--fs-sm);
  color: var(--color-text-light);
  padding-left: var(--space-4);
  position: relative;
}
.category-card__list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--color-border-dark);
  font-size: var(--fs-xs);
}

/* ---------- PRODUCTS GRID ---------- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-6);
}

.product-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border-light);
  border-top: 4px solid var(--color-border);
  overflow: hidden;
  transition: all var(--transition);
  position: relative;
}
.product-card:hover {
  transform: translateY(-3px);
  border-top-color: var(--color-accent);
  box-shadow: var(--shadow-md);
}
.product-card--featured {
  border-top-color: var(--color-accent);
}
.product-card__badge {
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
  background: var(--color-accent);
  color: var(--color-text-inv);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  font-family: var(--font-heading);
  letter-spacing: 0.12em;
  padding: var(--space-1) var(--space-3);
}
.product-card__badge--new {
  background: var(--color-bg-alt);
  color: var(--color-text);
  border: 1px solid var(--color-border);
}
.product-card__img {
  font-size: 4rem;
  text-align: center;
  padding: var(--space-8) var(--space-4) var(--space-4);
  background: var(--color-bg-alt);
}
.product-card__body { padding: 0 var(--space-5) var(--space-6); }
.product-card__cat {
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-text-light);
  display: block;
  margin-bottom: var(--space-2);
}
.product-card__name {
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: var(--color-text);
  margin-bottom: var(--space-2);
}
.product-card__desc {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-4);
}
.product-card__meta {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.product-card__stars { color: var(--color-text); font-size: var(--fs-sm); }
.product-card__reviews { font-size: var(--fs-xs); color: var(--color-text-light); }

/* ---------- CATALOGS GRID ---------- */
.catalogs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  margin-bottom: var(--space-8);
}

.catalog-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border-light);
  border-top: 4px solid var(--color-border);
  padding: var(--space-6) var(--space-5);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-3);
  transition: all var(--transition);
}
.catalog-card:hover {
  transform: translateY(-3px);
  border-top-color: var(--color-accent);
  box-shadow: var(--shadow-md);
}
.catalog-card__flag { font-size: 2.5rem; }
.catalog-card__lang {
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  font-size: var(--fs-lg);
  color: var(--color-text);
  letter-spacing: 0.12em;
}
.catalog-card__title {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semi);
  color: var(--color-text);
}
.catalog-card__info {
  font-size: var(--fs-xs);
  color: var(--color-text-light);
}

.catalogs-note {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border-light);
  border-left: 4px solid var(--color-border-dark);
  padding: var(--space-4) var(--space-5);
  color: var(--color-text-muted);
  font-size: var(--fs-sm);
}
.catalogs-note svg { color: var(--color-text-muted); flex-shrink: 0; margin-top: 2px; }

/* ---------- WHY US ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-8);
}
.why-item {
  text-align: center;
  padding: var(--space-6);
  border: 1px solid var(--color-border-light);
  border-top: 4px solid var(--color-border);
  background: var(--color-surface);
  transition: all var(--transition);
}
.why-item:hover {
  border-top-color: var(--color-accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.why-item__icon { font-size: 2.5rem; margin-bottom: var(--space-4); }
.why-item h3 {
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  margin-bottom: var(--space-3);
  color: var(--color-text);
}
.why-item p { font-size: var(--fs-sm); color: var(--color-text-muted); line-height: 1.7; }

/* ---------- TESTIMONIALS ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-6);
}
.testimonial-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border-light);
  border-left: 4px solid var(--color-border);
  padding: var(--space-6);
  transition: all var(--transition);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: var(--space-3);
  right: var(--space-4);
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--color-border);
  opacity: 0.4;
  line-height: 1;
  pointer-events: none;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  border-left-color: var(--color-accent);
  transform: translateY(-3px);
}
.testimonial-card__stars {
  color: var(--color-text);
  font-size: var(--fs-lg);
  margin-bottom: var(--space-4);
  letter-spacing: 0.08em;
}
.testimonial-card__text {
  font-size: var(--fs-sm);
  font-style: italic;
  color: var(--color-text);
  line-height: 1.7;
  margin-bottom: var(--space-5);
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-style: normal;
}
.testimonial-card__avatar { font-size: 1.5rem; }
.testimonial-card__author cite {
  display: block;
  font-weight: var(--fw-bold);
  font-style: normal;
  color: var(--color-text);
}
.testimonial-card__author span { font-size: var(--fs-xs); color: var(--color-text-light); }

/* ---------- FAQ ---------- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  max-width: 800px;
  margin-inline: auto;
}
.faq-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border-light);
  border-left: 4px solid var(--color-border);
  overflow: hidden;
  transition: all var(--transition);
}
.faq-item[open] {
  border-left-color: var(--color-accent);
  border-color: var(--color-border);
}
.faq-question {
  cursor: pointer;
  padding: var(--space-5) var(--space-6);
  font-size: var(--fs-base);
  font-weight: var(--fw-bold);
  font-family: var(--font-heading);
  letter-spacing: 0.06em;
  color: var(--color-text);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background var(--transition);
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: '+';
  font-size: var(--fs-xl);
  color: var(--color-text-light);
  line-height: 1;
  transition: transform var(--transition);
  flex-shrink: 0;
}
.faq-item[open] .faq-question::after { transform: rotate(45deg); color: var(--color-text); }
.faq-question:hover { background: var(--color-bg-alt); }
.faq-answer {
  padding: 0 var(--space-6) var(--space-5);
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  line-height: 1.75;
  border-top: 1px solid var(--color-border-light);
}

/* ---------- ABOUT ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-16);
  align-items: center;
}
.about-content .section-label { text-align: left; }
.about-content .section-title { text-align: left; }
.about-content p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
  font-size: var(--fs-base);
  line-height: 1.7;
}
.about-certifications {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-6);
}
.cert-badge {
  padding: var(--space-2) var(--space-4);
  background: transparent;
  border: 2px solid var(--color-border);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  font-family: var(--font-heading);
  color: var(--color-text-muted);
  letter-spacing: 0.12em;
  transition: all var(--transition);
}
.cert-badge:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}
.about-stats-card {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border-light);
  border-top: 4px solid var(--color-accent);
  padding: var(--space-10);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
}
.about-stat { text-align: center; }
.about-stat__number {
  display: block;
  font-family: var(--font-heading);
  font-weight: var(--fw-black);
  font-size: var(--fs-3xl);
  color: var(--color-text);
  line-height: 1;
  margin-bottom: var(--space-2);
}
.about-stat__label {
  font-size: var(--fs-sm);
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ---------- CONTACT ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
  align-items: start;
  max-width: 640px;
  margin-inline: auto;
}
.contact-info .section-label { text-align: left; }
.contact-info .section-title { text-align: left; }
.contact-info p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-6);
  line-height: 1.7;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
}
.contact-details li svg { color: var(--color-text); flex-shrink: 0; }
.contact-details a { color: var(--color-text); font-weight: var(--fw-semi); }
.contact-details a:hover { color: var(--color-text-muted); opacity: 1; }

.social-links { display: flex; gap: var(--space-3); }
.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  background: transparent;
  border: 2px solid var(--color-border);
  color: var(--color-text-muted);
  transition: all var(--transition);
}
.social-link:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-text-inv);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  opacity: 1;
}

/* Contact Form (preserved) */
.contact-form {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border-light);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.form-group label {
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  color: var(--color-text);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.7rem 1rem;
  background: #fff;
  border: 2px solid var(--color-border);
  color: var(--color-text);
  font-size: var(--fs-base);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--color-text-light); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-accent);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group--checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: var(--space-3);
}
.form-group--checkbox input[type="checkbox"] {
  width: 18px; height: 18px;
  flex-shrink: 0;
  accent-color: var(--color-accent);
  margin-top: 3px;
}
.form-group--checkbox label {
  font-size: var(--fs-xs);
  color: var(--color-text-light);
  line-height: 1.5;
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border-light);
  padding-top: var(--space-16);
  padding-bottom: var(--space-8);
  color: var(--color-text-muted);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-8);
  margin-bottom: var(--space-12);
}
.footer-brand .brand-img { height: 36px; }
.footer-logo { filter: none; }
.footer-tagline {
  font-size: var(--fs-sm);
  color: var(--color-text-light);
  margin-top: var(--space-3);
  max-width: 28ch;
}
.footer-nav__title {
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-text);
  margin-bottom: var(--space-4);
}
.footer-nav ul { display: flex; flex-direction: column; gap: var(--space-3); }
.footer-nav a {
  font-size: var(--fs-sm);
  color: var(--color-text-light);
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--color-text); opacity: 1; }
.footer-bottom {
  border-top: 1px solid var(--color-border-light);
  padding-top: var(--space-6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-3);
}
.footer-copy, .footer-legal { font-size: var(--fs-xs); color: var(--color-text-light); }

/* ---------- BACK TO TOP ---------- */
.back-to-top {
  position: fixed;
  bottom: var(--space-6);
  right: var(--space-6);
  width: 48px; height: 48px;
  background: var(--color-accent);
  color: var(--color-text-inv);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease, background var(--transition);
}
.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--color-accent-hover);
  transform: translateY(-2px);
}

/* ---------- SCROLL ANIMATIONS ---------- */
.animate-hidden {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.animate-hidden.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { gap: var(--space-10); }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }

  .main-nav { display: none; }
  .hamburger { display: flex; }

  .mobile-menu[hidden] { display: none; }
  .mobile-menu { display: block; }

  .hero { min-height: auto; padding-block: var(--space-10); }
  .hero-logo-large { width: clamp(180px, 60vw, 320px); }
  .hero-scroll-hint { display: none; }

  .about-grid { grid-template-columns: 1fr; }
  .about-content .section-title { text-align: center; }
  .about-content .section-label { text-align: center; display: block; }
  .about-content p { text-align: center; }
  .about-certifications { justify-content: center; }

  .contact-info .section-title { text-align: center; }
  .contact-info .section-label { text-align: center; display: block; }
  .contact-info p { text-align: center; }
  .contact-details { align-items: center; }
  .social-links { justify-content: center; }

  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-6); }
  .footer-bottom { flex-direction: column; text-align: center; }
  .about-stats-card { padding: var(--space-8); }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .catalogs-grid { grid-template-columns: repeat(2, 1fr); }
  .categories-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .about-stats-card { grid-template-columns: 1fr 1fr; }
  .trust-items { gap: var(--space-4); }
  .trust-item { flex-basis: 45%; justify-content: center; }
}

@media (max-width: 360px) {
  .catalogs-grid { grid-template-columns: 1fr; }
}

/* ---------- Focus Styles ---------- */
:focus-visible {
  outline: 2.5px solid var(--color-accent);
  outline-offset: 3px;
}

/* ============================================================
   LEGAL PAGES (Impressum / AGB / Datenschutz)
   ============================================================ */

.legal-page {
  padding-block: var(--space-12) var(--space-20);
  min-height: calc(100svh - var(--header-h) - 120px);
  background: var(--color-bg);
}

.legal-breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--fs-sm);
  color: var(--color-text-light);
  margin-bottom: var(--space-8);
}

.legal-breadcrumb a {
  color: var(--color-accent);
  text-decoration: none;
}

.legal-breadcrumb a:hover {
  text-decoration: underline;
}

.legal-breadcrumb span[aria-hidden] {
  color: var(--color-text-light);
}

.legal-content {
  max-width: 72ch;
  margin-inline: auto;
}

.legal-title {
  font-family: var(--ff-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-heading);
  margin-bottom: var(--space-2);
  line-height: 1.2;
}

.legal-updated {
  font-size: var(--fs-sm);
  color: var(--color-text-light);
  margin-bottom: var(--space-10);
}

.legal-section {
  margin-top: var(--space-10);
  padding-top: var(--space-6);
  border-top: 1px solid var(--color-border, #e5e7eb);
}

.legal-section:first-of-type {
  border-top: none;
  padding-top: 0;
}

.legal-section h2 {
  font-family: var(--ff-heading);
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-weight: 600;
  color: var(--color-heading);
  margin-bottom: var(--space-4);
}

.legal-section h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-heading);
  margin-block: var(--space-4) var(--space-2);
}

.legal-section p {
  margin-bottom: var(--space-3);
  line-height: 1.75;
  color: var(--color-text);
}

.legal-section ul {
  padding-left: var(--space-6);
  margin-bottom: var(--space-4);
}

.legal-section li {
  margin-bottom: var(--space-2);
  line-height: 1.7;
  color: var(--color-text);
}

.legal-section address {
  font-style: normal;
  line-height: 1.9;
  color: var(--color-text);
  margin-bottom: var(--space-3);
}

.legal-section a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-section a:hover {
  text-decoration: none;
}

/* Muster-Widerrufsformular box */
.legal-box {
  border: 1px solid var(--color-border, #e5e7eb);
  border-radius: 4px;
  padding: var(--space-6);
  background: #f8f9fa;
  margin-top: var(--space-4);
}

.legal-box p {
  margin-bottom: var(--space-2);
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- Print ---------- */
@media print {
  .site-header, .hero-visual, .back-to-top, .lang-switcher,
  .hamburger { display: none !important; }
  body { font-size: 12pt; color: #000; }
  a[href]::after { content: " (" attr(href) ")"; font-size: 10pt; }
  .section { padding-block: 1cm; }
}
