/* Scheibenfolien.ch — Design System & Layout */

:root {
  --bg: #080808;
  --bg2: #0e0e0e;
  --sf: #141414;
  --sf2: #1c1c1c;
  --bd: rgba(255, 255, 255, 0.07);
  --bd-or: rgba(232, 114, 26, 0.22);
  --tx: #f0ede8;
  --mu: rgba(240, 237, 232, 0.5);
  --mu2: rgba(240, 237, 232, 0.22);
  --or: #e8721a;
  --or-d: #c55e10;
  --or-g: rgba(232, 114, 26, 0.1);
  --or-n: rgba(232, 114, 26, 0.05);
  --font-d: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-b: "Barlow", system-ui, sans-serif;
  --radius: 2px;
  --sh: 0 2px 24px rgba(0, 0, 0, 0.6);
  --nav-h: 72px;
}

body.light {
  --bg: #faf8f5;
  --bg2: #f0ebe3;
  --sf: #ffffff;
  --sf2: #f5f0e8;
  --bd: rgba(0, 0, 0, 0.08);
  --bd-or: rgba(168, 64, 0, 0.2);
  --tx: #111111;
  --mu: rgba(17, 17, 17, 0.52);
  --mu2: rgba(17, 17, 17, 0.28);
  --or: #c55e10;
  --or-d: #a84000;
  --or-g: rgba(197, 94, 16, 0.08);
  --or-n: rgba(197, 94, 16, 0.04);
  --sh: 0 2px 24px rgba(0, 0, 0, 0.1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-b);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--tx);
  background: var(--bg);
  transition: background 0.25s ease, color 0.25s ease;
}

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

a {
  color: var(--or);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Theme toggle */
.theme-toggle {
  position: fixed;
  top: 12px;
  right: 12px;
  z-index: 200;
  display: flex;
  gap: 4px;
  padding: 4px;
  background: var(--sf);
  border: 1px solid var(--bd);
  border-radius: var(--radius);
  box-shadow: var(--sh);
}

.thm-btn {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: none;
  background: transparent;
  color: var(--mu);
  cursor: pointer;
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
}

.thm-btn:hover,
.thm-btn:focus-visible {
  color: var(--tx);
  outline: none;
}

.thm-btn.active {
  background: var(--or-g);
  color: var(--or);
}

.thm-btn svg {
  width: 22px;
  height: 22px;
}

/* Header / Nav */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 150;
}

#nav {
  min-height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 1.25rem;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.25s, border-color 0.25s, box-shadow 0.25s;
}

#nav.scrolled {
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--bd);
  box-shadow: var(--sh);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 48px;
}

.nav-brand img {
  height: 48px;
  width: auto;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--bd);
  background: var(--sf);
  border-radius: var(--radius);
  cursor: pointer;
  color: var(--tx);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  position: relative;
  transition: transform 0.25s, opacity 0.2s;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  transition: transform 0.25s;
}

.nav-toggle span::before {
  top: -7px;
}

.nav-toggle span::after {
  top: 7px;
}

#nav.nav-open .nav-toggle span {
  background: transparent;
}

#nav.nav-open .nav-toggle span::before {
  transform: translateY(7px) rotate(45deg);
}

#nav.nav-open .nav-toggle span::after {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 0.75rem;
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--tx);
  text-decoration: none;
  border-radius: var(--radius);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--or);
  outline: none;
}

.nav-links .nav-cta {
  margin-left: 0.5rem;
  padding: 9px 22px;
  background: var(--or);
  color: #fff !important;
  border: 1px solid var(--or);
  border-radius: 2px;
  font-weight: 500;
  white-space: nowrap;
  display: inline-flex !important;
  visibility: visible !important;
  text-decoration: none;
}

.nav-links .nav-cta:hover {
  background: var(--or-d);
  border-color: var(--or-d);
  color: #fff !important;
  text-decoration: none;
}

@media (max-width: 1023px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: fixed;
    inset: 0;
    top: var(--nav-h);
    flex-direction: column;
    justify-content: flex-start;
    padding: 2rem 1.5rem;
    gap: 0;
    background: color-mix(in srgb, var(--bg) 96%, transparent);
    backdrop-filter: blur(16px);
    border-top: 1px solid var(--bd);
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s;
  }

  .nav-links.open {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-links a {
    width: 100%;
    justify-content: flex-start;
    padding: 1rem 0;
    border-bottom: 1px solid var(--bd);
    font-size: 1.25rem;
  }

  .nav-links .nav-cta {
    margin-left: 0;
    margin-top: 1rem;
    justify-content: center;
    border-radius: 2px;
    color: #fff !important;
  }
}

body.nav-open {
  overflow: hidden;
}

/* Main offset for fixed nav */
main {
  padding-top: var(--nav-h);
}

main section[id],
#home.hero {
  scroll-margin-top: calc(var(--nav-h) + 12px);
}

/* Eyebrow & headings */
.eyebrow {
  font-family: var(--font-d);
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--or);
  margin: 0 0 0.75rem;
}

.h2 {
  font-family: var(--font-d);
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 0.95;
  text-transform: uppercase;
  margin: 0 0 1.5rem;
  color: var(--tx);
}

.h2 .slash {
  color: var(--mu);
  font-weight: 700;
}

.h2--tight {
  margin-bottom: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 1.5rem;
  font-family: var(--font-d);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
}

.btn:focus-visible {
  outline: 2px solid var(--or);
  outline-offset: 2px;
}

.btn--primary {
  background: var(--or);
  color: #fff;
  border-color: var(--or);
}

.btn--primary:hover {
  background: var(--or-d);
  border-color: var(--or-d);
  color: #fff;
  text-decoration: none;
}

.btn--ghost {
  background: transparent;
  color: var(--tx);
  border-color: var(--bd);
}

.btn--ghost:hover {
  border-color: var(--or);
  color: var(--or);
  text-decoration: none;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: var(--bg);
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--bg);
}

.hero-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.45s ease;
}

.hero-video-wrap video.is-ready {
  opacity: 0.32;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    110deg,
    var(--bg) 0%,
    var(--bg) 38%,
    transparent 75%
  );
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 5rem;
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr 1fr;
    padding: 3rem 1.5rem 6rem;
  }
}

.hero-copy {
  max-width: 36rem;
}

.hero-eyebrow {
  font-family: var(--font-d);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mu);
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
}

.hero-since {
  font-size: 0.95rem;
  color: var(--mu);
  margin: 0 0 1rem;
}

.hero h1 {
  font-family: var(--font-d);
  font-weight: 900;
  font-size: clamp(2.75rem, 10vw, 5.5rem);
  line-height: 0.92;
  text-transform: uppercase;
  margin: 0 0 1rem;
  letter-spacing: 0.02em;
}

.h1-or {
  color: var(--or);
}

.h1-tx {
  color: var(--tx);
}

.h1-pro {
  -webkit-text-stroke: 1.5px var(--mu2);
  color: transparent;
}

.hero-desc {
  margin: 0;
  color: var(--mu);
  font-weight: 300;
  font-size: 1.05rem;
  max-width: 32rem;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-logo {
  max-width: min(100%, 420px);
  width: auto;
  height: auto;
  max-height: 360px;
  object-fit: contain;
  filter: drop-shadow(0 24px 48px rgba(232, 114, 26, 0.35));
  animation: heroFloat 5s ease-in-out infinite;
}

@keyframes heroFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.scroll-ind {
  position: absolute;
  left: 1.25rem;
  bottom: 1.5rem;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}

.scroll-ind span {
  font-family: var(--font-d);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mu);
}

.scroll-ind::after {
  content: "";
  display: block;
  width: 2px;
  height: 48px;
  background: linear-gradient(to bottom, var(--or), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.4;
    transform: scaleY(0.85);
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

@media (max-width: 767px) {
  .scroll-ind {
    display: none;
  }
}

/* Trust bar */
.trust-bar {
  border-top: 2px solid var(--or);
  background: var(--bg2);
}

.trust-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 1.5rem 1.25rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .trust-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .trust-inner {
    grid-template-columns: repeat(4, 1fr);
  }
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.trust-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border: 1px solid var(--bd);
  border-radius: var(--radius);
  color: var(--or);
}

.trust-icon svg {
  width: 22px;
  height: 22px;
}

.trust-val {
  font-family: var(--font-d);
  font-weight: 900;
  font-size: 1.75rem;
  line-height: 1;
  color: var(--tx);
}

.trust-label {
  font-size: 0.85rem;
  color: var(--mu);
  margin: 0.15rem 0 0;
}

/* Marken bar */
.marken-bar {
  background: var(--sf);
  border-bottom: 1px solid var(--bd);
}

.marken-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 1rem 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1rem;
  font-family: var(--font-d);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.85rem;
  color: var(--mu);
}

.marken-inner .label {
  color: var(--tx);
}

.marken-div {
  width: 1px;
  height: 18px;
  background: var(--bd);
}

.marken-name {
  color: var(--tx);
}

.marken-sub {
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--mu);
  text-transform: none;
  font-family: var(--font-b);
  font-size: 0.8rem;
}

.marken-badge {
  margin-left: auto;
  padding: 0.4rem 0.75rem;
  background: var(--or);
  color: #fff;
  font-family: var(--font-d);
  font-weight: 900;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  border-radius: var(--radius);
  white-space: nowrap;
}

@media (max-width: 767px) {
  .marken-badge {
    margin-left: 0;
    width: 100%;
    text-align: center;
  }
}

/* Sections */
.section {
  padding: 4rem 1.25rem;
}

.section--alt {
  background: var(--bg2);
}

.section-inner {
  max-width: 1240px;
  margin: 0 auto;
}

.grid-2 {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 1025px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}

/* Über uns */
.uber-visual {
  position: relative;
}

.uber-water {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-d);
  font-weight: 900;
  font-size: clamp(120px, 22vw, 240px);
  line-height: 1;
  color: var(--or-n);
  pointer-events: none;
  z-index: 0;
  white-space: nowrap;
}

.uber-frame {
  position: relative;
  z-index: 1;
  border: 2px solid var(--or);
  outline: 8px solid transparent;
  box-shadow: inset 0 0 0 8px var(--bg), var(--sh);
  border-radius: var(--radius);
}

.uber-frame img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
}

.uber-tag {
  position: absolute;
  bottom: 12px;
  right: 12px;
  z-index: 2;
  padding: 0.35rem 0.65rem;
  background: var(--or);
  color: #fff;
  font-family: var(--font-d);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
}

.uber-text p {
  color: var(--mu);
  margin: 0 0 1rem;
}

.check-list {
  list-style: none;
  margin: 1.5rem 0;
  padding: 0;
}

.check-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 0.75rem;
  color: var(--tx);
}

.check-mark {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.check-dot {
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--or);
}

.check-mark svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--or);
}

/* Vorteile */
.vor-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .vor-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .vor-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.vor-card {
  position: relative;
  background: var(--sf);
  border: 1px solid var(--bd);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  overflow: hidden;
  transition: background 0.25s, border-color 0.25s;
}

.vor-card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 100%;
  background: var(--or);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.vor-card:hover {
  background: var(--sf2);
}

.vor-card:hover::after {
  transform: scaleX(1);
}

.vor-card h3 {
  font-family: var(--font-d);
  font-weight: 800;
  font-size: 1.35rem;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
  color: var(--tx);
}

.vor-card p {
  margin: 0;
  color: var(--mu);
  font-size: 0.95rem;
}

.vor-ic {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  color: var(--or);
}

/* Preise */
.preis-intro p {
  color: var(--mu);
  margin: 0 0 0.75rem;
  max-width: 48rem;
}

.preis-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .preis-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .preis-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.preis-card {
  background: var(--sf);
  border: 1px solid var(--bd);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.preis-card:hover {
  box-shadow: var(--sh);
}

.preis-card--milch {
  background: linear-gradient(105deg, var(--sf), var(--or-g));
  border-color: var(--bd-or);
}

.preis-card h3 {
  font-family: var(--font-d);
  font-weight: 800;
  font-size: 1.25rem;
  text-transform: uppercase;
  margin: 0;
  color: var(--tx);
}

.preis-meta {
  font-size: 0.9rem;
  color: var(--mu);
  margin: 0;
  flex: 1;
}

.preis-val {
  font-family: var(--font-d);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--or);
  margin: 0;
}

.preis-foot {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--mu);
}

.preis-ic {
  width: 40px;
  height: 40px;
  color: var(--or);
}

/* Milchglas */
.milch-features {
  margin: 1.5rem 0 2rem;
  display: grid;
  gap: 1.25rem;
}

.milch-f {
  display: grid;
  grid-template-columns: 10px 1fr;
  gap: 1rem;
  align-items: start;
}

.milch-f .dot {
  width: 10px;
  height: 10px;
  margin-top: 0.45rem;
  border-radius: 50%;
  background: var(--or);
}

.milch-f h3 {
  font-family: var(--font-d);
  font-weight: 800;
  font-size: 1.1rem;
  text-transform: uppercase;
  margin: 0 0 0.25rem;
  color: var(--tx);
}

.milch-f p {
  margin: 0;
  color: var(--mu);
  font-size: 0.95rem;
}

.milch-img img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--bd);
  box-shadow: var(--sh);
}

/* Galerie */
.gal-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.gal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 140px;
  gap: 5px;
}

.gal-grid .gi:first-child {
  grid-column: span 2;
}

@media (min-width: 1024px) {
  .gal-grid {
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(4, 176px);
    grid-auto-rows: 176px;
  }

  .gal-grid .gi {
    grid-column: auto;
    grid-row: auto;
  }

  .gal-grid .gi:first-child {
    grid-column: auto;
  }

  .gal-grid .gi:nth-child(1) {
    grid-area: 1 / 1 / 3 / 6;
  }
  .gal-grid .gi:nth-child(2) {
    grid-area: 1 / 6 / 2 / 10;
  }
  .gal-grid .gi:nth-child(3) {
    grid-area: 1 / 10 / 2 / 13;
  }
  .gal-grid .gi:nth-child(4) {
    grid-area: 2 / 6 / 3 / 10;
  }
  .gal-grid .gi:nth-child(5) {
    grid-area: 2 / 10 / 4 / 13;
  }
  .gal-grid .gi:nth-child(6) {
    grid-area: 3 / 1 / 4 / 5;
  }
  .gal-grid .gi:nth-child(7) {
    grid-area: 3 / 5 / 4 / 9;
  }
  .gal-grid .gi:nth-child(8) {
    grid-area: 4 / 1 / 5 / 5;
  }
  .gal-grid .gi:nth-child(9) {
    grid-area: 4 / 5 / 5 / 10;
  }
  .gal-grid .gi:nth-child(10) {
    grid-area: 4 / 10 / 5 / 13;
  }
}

.gi {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  border: 1px solid var(--bd);
}

.gi img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease, filter 0.35s ease;
  filter: brightness(0.92);
}

.gi:hover img {
  transform: scale(1.07);
  filter: brightness(1);
}

.gi-cap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 0.75rem 1rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65), transparent 55%);
  opacity: 0;
  transition: opacity 0.3s;
}

.gi:hover .gi-cap {
  opacity: 1;
}

.gi-cap span {
  font-family: var(--font-d);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
}

.gal-more {
  margin-top: 1.5rem;
  text-align: center;
}

/* FAQ */
.faq-layout {
  display: grid;
  gap: 2rem;
}

@media (min-width: 1025px) {
  .faq-layout {
    grid-template-columns: 280px 1fr;
    align-items: start;
  }
}

.faq-aside {
  position: static;
}

@media (min-width: 1025px) {
  .faq-aside {
    position: sticky;
    top: calc(var(--nav-h) + 1rem);
  }
}

.faq-aside p {
  color: var(--mu);
  margin: 0 0 1.25rem;
}

.faq-item {
  border-bottom: 1px solid var(--bd);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 52px;
  padding: 0.75rem 0;
  background: none;
  border: none;
  color: var(--tx);
  font-family: var(--font-b);
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
}

.faq-q:focus-visible {
  outline: 2px solid var(--or);
  outline-offset: 2px;
}

.faq-q span:first-child {
  flex: 1;
}

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  position: relative;
  color: var(--or);
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: currentColor;
  transition: transform 0.25s ease;
}

.faq-icon::before {
  left: 50%;
  top: 11px;
  width: 14px;
  height: 2px;
  margin-left: -7px;
}

.faq-icon::after {
  top: 50%;
  left: 11px;
  width: 2px;
  height: 14px;
  margin-top: -7px;
}

.faq-item.open .faq-icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item.open .faq-a {
  max-height: 800px;
}

.faq-a-inner {
  padding: 0 0 1rem;
  color: var(--mu);
  font-size: 0.95rem;
  max-width: 52rem;
}

/* Kontakt */
.kontakt-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 1025px) {
  .kontakt-grid {
    grid-template-columns: 1fr 1.1fr;
  }
}

.kontakt-cards {
  display: grid;
  gap: 0.75rem;
}

.k-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.1rem;
  background: var(--sf);
  border: 1px solid var(--bd);
  border-radius: var(--radius);
  min-height: 44px;
}

.k-card svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--or);
  margin-top: 2px;
}

.k-card .k-lab {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--mu);
  margin-bottom: 0.15rem;
}

.k-card a {
  color: var(--tx);
  font-weight: 500;
  text-decoration: none;
}

.k-card a:hover {
  color: var(--or);
  text-decoration: underline;
}

/* Form */
#kontakt-form {
  background: var(--sf);
  border: 1px solid var(--bd);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--sh);
}

.form-row {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.fg {
  margin-bottom: 1rem;
}

.fg label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mu);
  margin-bottom: 0.35rem;
}

.fg input,
.fg select,
.fg textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.65rem 0.85rem;
  font-family: var(--font-b);
  font-size: 1rem;
  color: var(--tx);
  background: var(--bg2);
  border: 1px solid var(--bd);
  border-radius: var(--radius);
  transition: border-color 0.2s;
}

.fg textarea {
  min-height: 140px;
  resize: vertical;
}

.fg input:focus-visible,
.fg select:focus-visible,
.fg textarea:focus-visible {
  outline: none;
  border-color: var(--or);
}

.btn-submit {
  width: 100%;
  min-height: 52px;
  margin-top: 0.5rem;
  font-family: var(--font-d);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius);
  background: var(--or);
  color: #fff;
  cursor: pointer;
  transition: background 0.2s, opacity 0.2s;
}

.btn-submit:hover:not(:disabled) {
  background: var(--or-d);
}

.btn-submit:disabled {
  opacity: 0.75;
  cursor: wait;
}

.btn-submit--ok {
  background: #1a7f4a !important;
}

.btn-submit--err {
  background: #8c1c1c !important;
}

.form-note {
  margin: 0.75rem 0 0;
  font-size: 0.8rem;
  color: var(--mu);
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--bd);
  background: var(--sf);
  padding: 2.5rem 1.25rem;
}

.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

@media (min-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr auto 1fr;
  }
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.footer-brand img {
  height: 32px;
  width: auto;
}

.footer-brand strong {
  font-family: var(--font-d);
  font-weight: 900;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--tx);
}

.footer-meta {
  text-align: center;
  font-size: 0.85rem;
  color: var(--mu);
}

.footer-meta a {
  color: var(--or);
}

.footer-social {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.footer-social a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--bd);
  border-radius: 50%;
  color: var(--tx);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

.footer-social a:hover {
  border-color: var(--or);
  color: var(--or);
}

.footer-social svg {
  width: 20px;
  height: 20px;
}

/* WhatsApp float */
.wa-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 120;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  box-shadow: var(--sh);
  text-decoration: none;
  transition: transform 0.2s;
}

.wa-float:hover {
  transform: scale(1.06);
  text-decoration: none;
}

.wa-float svg {
  width: 28px;
  height: 28px;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.88);
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
}

.lightbox.on {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: min(96vw, 1200px);
  max-height: 86vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius);
}

.lb-x {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 48px;
  height: 48px;
  border: 1px solid var(--bd);
  background: var(--sf);
  color: var(--tx);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  border-radius: var(--radius);
}

.lb-x:hover {
  border-color: var(--or);
  color: var(--or);
}

body.lb-on {
  overflow: hidden;
}

/* Fade-in */
.fi {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fi.vis {
  opacity: 1;
  transform: none;
}
