/* ==========================================================================
   Hörgeräte Spuling – Stolzenau
   Stylesheet: warmes Papierweiß, tiefes Marineblau, Messing-Gold
   ========================================================================== */

/* ---------- Schriften (lokal gehostet, DSGVO-konform) ---------- */
@font-face {
  font-family: "Fraunces";
  src: url("../fonts/fraunces-normal-latin.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+2000-206F, U+20AC, U+2122, U+2212, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Fraunces";
  src: url("../fonts/fraunces-normal-latin-ext.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Fraunces";
  src: url("../fonts/fraunces-italic-latin.woff2") format("woff2");
  font-weight: 400 700;
  font-style: italic;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+2000-206F, U+20AC, U+2122, U+2212, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Figtree";
  src: url("../fonts/figtree-normal-latin.woff2") format("woff2");
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+2000-206F, U+20AC, U+2122, U+2212, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Figtree";
  src: url("../fonts/figtree-normal-latin-ext.woff2") format("woff2");
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ---------- Design-Token ---------- */
:root {
  --paper: #faf7f1;
  --paper-2: #f3ede2;
  --card: #ffffff;
  --navy: #1b2b47;
  --navy-deep: #111e36;
  --navy-soft: #33456b;
  --gold: #b08a2e;
  --gold-ink: #86671c;
  --gold-soft: #e2cf9f;
  --gold-wash: #f6efdd;
  --muted: #55617a;
  --line: #e7dfd0;
  --line-strong: #d9cfba;
  --cream: #f6f1e6;

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Figtree", "Segoe UI", system-ui, -apple-system, sans-serif;

  --radius: 18px;
  --radius-lg: 24px;
  --shadow-soft: 0 18px 45px -18px rgba(27, 43, 71, 0.22);
  --shadow-card: 0 10px 30px -14px rgba(27, 43, 71, 0.18);
  --container: 1160px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --section-pad: clamp(4.25rem, 9vw, 7rem);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--navy);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-optical-sizing: auto;
}

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

a {
  color: var(--navy);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

::selection {
  background: var(--gold-soft);
  color: var(--navy-deep);
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

section {
  scroll-margin-top: 96px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 200;
  background: var(--navy);
  color: #fff;
  padding: 0.6rem 1.1rem;
  border-radius: 10px;
  text-decoration: none;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 1rem;
}

/* ---------- Typografie ---------- */
h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 560;
  line-height: 1.12;
  margin: 0;
  color: var(--navy);
  text-wrap: balance;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  font-weight: 650;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-ink);
  margin: 0 0 1.1rem;
}
.eyebrow::before {
  content: "";
  width: 2rem;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}
.eyebrow--center {
  justify-content: center;
}
.eyebrow--center::after {
  content: "";
  width: 2rem;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}

.section-head {
  max-width: 46rem;
  margin: 0 auto var(--head-gap, 3.25rem);
  text-align: center;
}
.section-head h2 {
  font-size: clamp(1.9rem, 4vw, 2.75rem);
}
.section-head .lead {
  margin: 1.1rem auto 0;
}

.lead {
  font-size: 1.11rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 40rem;
}

.accent-i {
  font-style: italic;
  font-weight: 500;
  color: var(--gold-ink);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.9rem 1.7rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease,
    border-color 0.2s ease, color 0.2s ease;
}
.btn svg {
  flex: none;
}
.btn--primary {
  background: var(--navy);
  color: #fff;
}
.btn--primary:hover {
  background: var(--navy-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}
.btn--ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--line-strong);
}
.btn--ghost:hover {
  border-color: var(--navy);
  transform: translateY(-2px);
}
.btn--gold {
  background: var(--gold);
  color: #fff;
}
.btn--gold:hover {
  background: var(--gold-ink);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -12px rgba(134, 103, 28, 0.5);
}
.btn--sm {
  padding: 0.62rem 1.25rem;
  font-size: 0.92rem;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 241, 0.88);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 24px -18px rgba(27, 43, 71, 0.35);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 0.85rem;
}

/* Logo */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: var(--navy);
}
.brand-arcs {
  height: 2.55rem;
  width: auto;
  color: var(--navy);
  flex: none;
  overflow: visible;
}
.brand-arcs--gold {
  color: var(--gold);
}
.brand-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}
.brand-top {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.42em;
  text-indent: 0.42em;
  text-transform: uppercase;
  color: var(--gold-ink);
  margin-bottom: 0.28rem;
}
.brand-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-indent: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  border-bottom: 1.5px solid var(--gold);
  padding-bottom: 0.14rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.9rem;
}
.main-nav a:not(.btn) {
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--navy-soft);
  text-decoration: none;
  position: relative;
  padding-block: 0.35rem;
}
.main-nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 1.5px;
  background: var(--gold);
  transition: right 0.25s ease;
}
.main-nav a:not(.btn):hover {
  color: var(--navy);
}
.main-nav a:not(.btn):hover::after {
  right: 0;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  padding: 0.55rem 0.65rem;
  cursor: pointer;
  color: var(--navy);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(3.5rem, 7vw, 6rem) clamp(4rem, 8vw, 6.5rem);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      900px 520px at 88% -10%,
      rgba(226, 207, 159, 0.5) 0%,
      transparent 65%
    ),
    radial-gradient(
      700px 500px at -10% 110%,
      rgba(226, 207, 159, 0.28) 0%,
      transparent 60%
    );
  pointer-events: none;
}
.hero-arcs {
  position: absolute;
  right: -140px;
  top: -120px;
  width: 560px;
  height: auto;
  color: var(--gold);
  opacity: 0.14;
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.5rem, 5.4vw, 3.9rem);
  letter-spacing: -0.01em;
}
.hero .lead {
  margin-top: 1.4rem;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2.2rem;
}
.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.5rem;
  margin: 2.4rem 0 0;
  padding: 0;
  list-style: none;
}
.hero-points li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--navy-soft);
}
.hero-points svg {
  color: var(--gold);
  flex: none;
}

.hero-figure {
  position: relative;
  margin: 0;
}
.hero-figure::before {
  content: "";
  position: absolute;
  inset: 1.4rem -1.4rem -1.4rem 1.4rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(140deg, var(--gold-wash), var(--gold-soft));
  z-index: -1;
}
.hero-figure img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.hero-badge {
  position: absolute;
  left: clamp(0.8rem, 2vw, 1.6rem);
  bottom: clamp(0.8rem, 2vw, 1.6rem);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: rgba(255, 255, 255, 0.93);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 16px;
  padding: 0.8rem 1.15rem;
  box-shadow: var(--shadow-card);
}
.hero-badge .icon-disc {
  width: 2.6rem;
  height: 2.6rem;
}
.hero-badge strong {
  display: block;
  font-size: 0.98rem;
  line-height: 1.25;
}
.hero-badge span {
  font-size: 0.85rem;
  color: var(--muted);
}

/* ---------- Icon-Scheibe ---------- */
.icon-disc {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--gold-wash);
  color: var(--gold-ink);
  flex: none;
}

/* ---------- Leistungen ---------- */
.services {
  padding-block: var(--section-pad);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.service-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem 1.7rem 1.7rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-soft);
  box-shadow: var(--shadow-card);
}
.service-card h3 {
  font-size: 1.22rem;
  margin: 1.15rem 0 0.55rem;
}
.service-card p {
  margin: 0;
  font-size: 0.96rem;
  color: var(--muted);
}

/* ---------- Ablauf ---------- */
.steps {
  background: var(--paper-2);
  padding-block: var(--section-pad);
  position: relative;
  overflow: hidden;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.2rem 1.8rem;
  position: relative;
}
.step {
  position: relative;
}
.step-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2.9rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.step h3 {
  font-size: 1.13rem;
  margin: 0.9rem 0 0.5rem;
}
.step p {
  margin: 0;
  font-size: 0.94rem;
  color: var(--muted);
}
@media (min-width: 1024px) {
  .steps-grid::before {
    content: "";
    position: absolute;
    top: 1.45rem;
    left: 4.5rem;
    right: 2rem;
    border-top: 2px dotted var(--line-strong);
  }
  .step-num {
    position: relative;
    background: var(--paper-2);
    display: inline-block;
    padding-right: 0.8rem;
  }
}

/* ---------- Fachgeschäft / Galerie ---------- */
.shop {
  padding-block: var(--section-pad);
}
.shop-grid {
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.4rem;
}
.shop-grid figure {
  margin: 0;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.shop-grid figure.tall {
  grid-row: 1 / span 2;
}
.shop-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.shop-grid figure:hover img {
  transform: scale(1.035);
}
.shop-grid figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 2.4rem 1.3rem 1.05rem;
  background: linear-gradient(to top, rgba(17, 30, 54, 0.72), transparent);
  color: var(--cream);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* ---------- Öffnungszeiten & Kontakt ---------- */
.contact {
  background: var(--paper-2);
  padding-block: var(--section-pad);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
  align-items: stretch;
}
.panel {
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 4vw, 2.6rem);
}
.panel--light {
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
}
.panel--dark {
  background: linear-gradient(150deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.panel--dark::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(176, 138, 46, 0.35), transparent 70%);
  pointer-events: none;
}
.panel-head {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.6rem;
}
.panel-head h3 {
  font-size: 1.55rem;
}
.panel--dark h3 {
  color: var(--cream);
}
.panel--dark .icon-disc {
  background: rgba(246, 239, 221, 0.12);
  color: var(--gold-soft);
}

.hours {
  margin: 0;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding-block: 0.9rem;
  border-bottom: 1px solid var(--line);
}
.hours-row:last-child {
  border-bottom: 0;
}
.hours-row dt {
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.hours-row dd {
  margin: 0;
  text-align: right;
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.5;
  font-variant-numeric: tabular-nums;
}
.hours-row dd span {
  display: block;
}
.hours-row.is-closed dd {
  color: var(--gold-ink);
  font-weight: 500;
}
.hours-row.is-today dt {
  color: var(--gold-ink);
}
.today-pill {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: var(--gold);
  border-radius: 999px;
  padding: 0.14rem 0.55rem;
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.35rem;
  position: relative;
  z-index: 1;
}
.contact-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-list .label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 0.25rem;
}
.contact-list a {
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(246, 239, 221, 0.35);
  transition: border-color 0.2s ease, color 0.2s ease;
}
.contact-list a:hover {
  color: #fff;
  border-color: var(--gold-soft);
}
.contact-list .plain {
  color: var(--cream);
  font-size: 1.05rem;
  line-height: 1.55;
}
.contact-note {
  position: relative;
  z-index: 1;
  margin: 1.8rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(246, 239, 221, 0.18);
  color: rgba(246, 239, 221, 0.78);
  font-size: 0.95rem;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-deep);
  color: rgba(246, 241, 230, 0.82);
  padding-top: clamp(3rem, 6vw, 4.5rem);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
.site-footer .brand {
  color: var(--cream);
}
.site-footer .brand-arcs {
  color: var(--gold-soft);
}
.site-footer .brand-name {
  color: var(--cream);
  border-bottom-color: var(--gold-soft);
}
.site-footer .brand-top {
  color: var(--gold-soft);
}
.footer-tagline {
  margin: 1.2rem 0 0;
  font-size: 0.95rem;
  max-width: 30ch;
  line-height: 1.7;
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin: 0.4rem 0 1.1rem;
}
.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}
.footer-col a {
  color: rgba(246, 241, 230, 0.82);
  text-decoration: none;
  font-size: 0.97rem;
}
.footer-col a:hover {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: var(--gold-soft);
}
.footer-col p {
  margin: 0 0 0.6rem;
  font-size: 0.97rem;
}
.footer-bottom {
  border-top: 1px solid rgba(246, 241, 230, 0.14);
  padding-block: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem 1.5rem;
  font-size: 0.88rem;
  color: rgba(246, 241, 230, 0.6);
}
.footer-bottom a {
  color: inherit;
  text-decoration: none;
}
.footer-bottom a:hover {
  color: #fff;
}
.footer-legal {
  display: flex;
  gap: 1.5rem;
}

/* ---------- Rechtsseiten ---------- */
.legal-hero {
  background: var(--paper-2);
  padding-block: clamp(3rem, 6vw, 4.5rem);
}
.legal-hero h1 {
  font-size: clamp(2.1rem, 4.5vw, 3rem);
}
.legal-hero .lead {
  margin-top: 0.9rem;
}
.legal-body {
  padding-block: clamp(3rem, 6vw, 4.5rem);
}
.legal-body .container {
  max-width: 780px;
}
.legal-body h2 {
  font-size: 1.45rem;
  margin: 2.6rem 0 0.8rem;
}
.legal-body h3 {
  font-size: 1.12rem;
  margin: 1.8rem 0 0.5rem;
}
.legal-body p,
.legal-body li {
  color: var(--muted);
  font-size: 0.99rem;
}
.legal-body strong {
  color: var(--navy);
}
.legal-body address {
  font-style: normal;
  color: var(--muted);
  line-height: 1.7;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--gold-ink);
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
}
.back-link:hover {
  text-decoration: underline;
}

/* ---------- Scroll-Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
  transition-delay: var(--d, 0s);
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* ---------- Responsiv ---------- */
@media (max-width: 1023px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-figure {
    max-width: 620px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    display: inline-flex;
  }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 40px -24px rgba(27, 43, 71, 0.35);
    padding: 0.6rem var(--gutter) 1.4rem;
    display: none;
  }
  .main-nav.is-open {
    display: flex;
  }
  /* Vereinfachte Navigation der Rechtsseiten: bleibt auch mobil sichtbar */
  .main-nav--simple {
    display: flex;
    position: static;
    flex-direction: row;
    background: none;
    border: 0;
    box-shadow: none;
    padding: 0;
  }
  .main-nav a:not(.btn) {
    padding: 0.85rem 0.2rem;
    border-bottom: 1px solid var(--line);
    font-size: 1.05rem;
  }
  .main-nav .btn {
    margin-top: 1.1rem;
  }
}

@media (max-width: 640px) {
  .services-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .shop-grid {
    grid-template-columns: 1fr;
  }
  .shop-grid figure.tall {
    grid-row: auto;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hero-badge {
    position: static;
    margin-top: 0.9rem;
    border: 1px solid var(--line);
  }
  .brand-name {
    font-size: 1.25rem;
  }
  .brand-arcs {
    height: 2.1rem;
  }
}

/* ---------- Reduzierte Bewegung ---------- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .btn,
  .service-card,
  .shop-grid img {
    transition: none;
  }
}

/* ---------- Druck ---------- */
@media print {
  .site-header,
  .site-footer,
  .hero-cta,
  .nav-toggle {
    display: none;
  }
  body {
    background: #fff;
  }
}
