/* ==========================================================================
   Stünzendörfer GmbH – Stylesheet
   Colors sourced from the previous stuenzendoerfer-windsbach.de (Elementor
   global kit + theme CSS): navy #002d62, sky blue #6ec1e4 (primary accent),
   green #61ce70, coral #e96e53, ink #54595f / #7a7a7a.
   Where a source color would fail WCAG AA as text-on-background (several did
   on the old site, e.g. white-on-green), the darker navy is used as the text
   color on that background instead of the source pairing.
   Signature motif: dashed saddle-stitch dividers, referencing the visible
   stitching of the upholsterer's craft, rendered in the brand's sky blue.
   ========================================================================== */

:root {
  /* Color */
  --color-navy: #002d62;
  --color-navy-soft: #0b2653;
  --color-coral: #e96e53;
  --color-sky: #6ec1e4;
  --color-green: #61ce70;
  --color-red-alert: #ee4040;
  --color-ink: #54595f;
  --color-muted: #7a7a7a;
  --color-canvas: #f7f9fc;
  --color-canvas-soft: #eceff8;
  --color-white: #ffffff;
  --color-line: #7a7a7a;

  --color-whatsapp: var(--color-green);
  --color-whatsapp-dark: var(--color-navy);

  /* Type */
  --font-display: "Roboto Slab", Georgia, serif;
  --font-body: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Spacing */
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 3rem;
  --space-6: 4.5rem;
  --space-7: 6rem;

  --radius: 6px;
  --max-width: 1180px;

  --focus-ring: 3px solid var(--color-navy);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}
body {
  margin: 0;
  background: var(--color-canvas);
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-navy); text-decoration-thickness: 1.5px; text-underline-offset: 2px; }
a:hover { text-decoration-thickness: 2.5px; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--color-navy);
  line-height: 1.15;
  margin: 0 0 var(--space-2);
  font-weight: 600;
}
h1 { font-size: clamp(2.1rem, 4.5vw, 3.1rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
h3 { font-size: 1.2rem; }
p { margin: 0 0 var(--space-2); }
p.lead { font-size: 1.15rem; color: var(--color-ink); max-width: 62ch; }
ul { margin: 0 0 var(--space-2); padding-left: 1.1rem; }
.wrap { max-width: var(--max-width); margin: 0 auto; padding: 0 var(--space-3); }

:focus-visible { outline: var(--focus-ring); outline-offset: 2px; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 100;
  background: var(--color-sky); color: var(--color-navy);
  padding: var(--space-1) var(--space-2); border-radius: var(--radius);
}
.skip-link:focus { left: var(--space-2); top: var(--space-2); }

/* ---- Stitch signature ---- */
.stitch-divider,
.section--muted::before,
.card-grid .service-card { position: relative; }

.stitch-line {
  height: 2px;
  background-image: linear-gradient(to right, var(--color-sky) 0 8px, transparent 8px 16px);
  background-size: 16px 2px;
  background-repeat: repeat-x;
  border: 0;
  margin: 0;
}

.footer-seam { background: var(--color-canvas); height: var(--space-5); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--font-body);
  font-weight: 600;
  padding: 0.85em 1.7em;
  border-radius: 8px;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  font-size: 1rem;
  transition: transform 0.15s ease, background-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--call { background: var(--color-sky); color: var(--color-navy); box-shadow: 0 6px 16px -4px rgba(110,193,228,0.55); }
.btn--call:hover { background: var(--color-navy); color: var(--color-white); box-shadow: 0 8px 20px -4px rgba(0,45,98,0.45); }
.btn--whatsapp { background: var(--color-whatsapp); color: var(--color-navy); box-shadow: 0 6px 16px -4px rgba(97,206,112,0.5); }
.btn--whatsapp:hover { background: var(--color-whatsapp-dark); color: var(--color-white); box-shadow: 0 8px 20px -4px rgba(0,45,98,0.45); }
.btn--outline { background: var(--color-white); color: var(--color-navy); border-color: var(--color-navy); }
.btn--outline:hover { background: var(--color-navy); color: var(--color-white); }
.btn--lg { padding: 1em 2.1em; font-size: 1.05rem; }
.link-arrow { display: inline-block; font-weight: 600; color: var(--color-navy); text-decoration: none; transition: transform 0.15s ease; }
.link-arrow:hover { transform: translateX(3px); text-decoration: underline; }

/* ---- Topbar & Header ---- */
.topbar { background: var(--color-navy); color: var(--color-canvas-soft); font-size: 0.82rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
.topbar__inner { display: flex; flex-wrap: wrap; align-items: center; gap: 0.4rem var(--space-3); justify-content: center; padding: 0.55rem var(--space-3); text-align: center; }
.topbar__contacts { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 0.3rem var(--space-3); }
.topbar a { display: inline-flex; align-items: center; gap: 0.4em; color: var(--color-canvas-soft); text-decoration: none; transition: color 0.15s ease; }
.topbar a svg { color: var(--color-sky); flex-shrink: 0; }
.topbar a:hover { color: var(--color-white); }
.topbar a:hover svg { color: var(--color-white); }
.topbar__divider { display: none; width: 1px; height: 14px; background: rgba(255,255,255,0.25); }
.topbar__address { display: none; align-items: center; gap: 0.4em; color: var(--color-canvas-soft); }
.topbar__address svg { color: var(--color-sky); flex-shrink: 0; }
@media (min-width: 640px) {
  .topbar__divider { display: block; }
  .topbar__address { display: inline-flex; }
}

.site-header { background: var(--color-white); border-bottom: 3px solid var(--color-sky); box-shadow: 0 4px 16px rgba(0,45,98,0.08); position: sticky; top: 0; z-index: 50; }
.site-header__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; padding: 0.9rem var(--space-3); gap: var(--space-4); }
.logo { display: flex; align-items: center; text-decoration: none; }
.logo__img { height: 68px; width: auto; }

.header-cta { display: none; order: 3; flex-shrink: 0; }
@media (min-width: 900px) { .header-cta { display: inline-flex; } }

.nav-toggle {
  display: flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 42px; height: 42px; background: none; border: 2px solid var(--color-navy);
  border-radius: var(--radius); cursor: pointer;
}
.nav-toggle span { display: block; height: 2px; width: 20px; margin: 0 auto; background: var(--color-navy); }
@media (min-width: 900px) { .nav-toggle { display: none; } }

.primary-nav { width: 100%; order: 3; display: none; }
.primary-nav.is-open {
  display: block; margin-top: 0.9rem; padding-top: var(--space-2);
  border-top: 1px solid var(--color-canvas-soft);
  max-height: calc(100vh - 90px); overflow-y: auto;
}
.primary-nav ul { list-style: none; margin: 0; padding: 0; }
.primary-nav > ul { display: flex; flex-direction: column; gap: 0.1rem; }
.primary-nav > ul > li { border-bottom: 1px solid var(--color-canvas-soft); }
.primary-nav > ul > li:last-child { border-bottom: 0; }
.primary-nav a { display: block; padding: 0.75rem 0.2rem; text-decoration: none; color: var(--color-ink); font-weight: 600; transition: color 0.15s ease; }
.primary-nav a:hover { color: var(--color-navy); }
.primary-nav > ul > li > .nav-item-row > a { position: relative; }
@media (min-width: 900px) {
  .primary-nav > ul > li > .nav-item-row > a::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px;
    background: var(--color-sky); transform: scaleX(0); transition: transform 0.15s ease;
  }
  .primary-nav > ul > li > .nav-item-row > a:hover::after { transform: scaleX(1); }
}
.nav-item-row { display: flex; align-items: center; justify-content: space-between; gap: var(--space-2); }
.submenu-toggle { flex-shrink: 0; background: none; border: 1px solid var(--color-line); border-radius: var(--radius); width: 34px; height: 34px; cursor: pointer; }
.submenu-toggle[aria-expanded="true"] .caret { transform: rotate(180deg); }
.primary-nav .submenu { display: none; margin: 0.2rem 0 0.5rem; padding: 0.2rem 0 0.2rem var(--space-2); border-left: 2px dashed var(--color-sky); }
.primary-nav .has-children.is-expanded .submenu { display: block; }
.primary-nav .submenu a { font-weight: 400; padding: 0.5rem 0.2rem; }
.caret { font-size: 0.7em; display: inline-block; transition: transform 0.15s ease; }

@media (min-width: 900px) {
  .primary-nav {
    width: auto; order: 2; display: block; flex: 1;
    margin-top: 0; padding-top: 0; border-top: 0; max-height: none; overflow: visible;
  }
  .primary-nav > ul { flex-direction: row; gap: var(--space-4); align-items: center; justify-content: flex-end; }
  .primary-nav > ul > li { border-bottom: 0; }
  .primary-nav a { padding: 0.4rem 0; font-weight: 500; }
  .submenu-toggle { display: none; }
  .primary-nav li.has-children { position: relative; }
  .primary-nav .submenu {
    display: block; visibility: hidden; opacity: 0; position: absolute; top: 100%; left: 0;
    background: var(--color-white); border: 1px solid var(--color-line); border-top: 3px solid var(--color-sky);
    padding: var(--space-1); min-width: 240px; box-shadow: 0 12px 24px rgba(0,45,98,0.14);
    transform: translateY(-6px);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
    z-index: 20;
  }
  .primary-nav li.has-children:hover .submenu,
  .primary-nav li.has-children:focus-within .submenu { visibility: visible; opacity: 1; transform: translateY(0); }

  .primary-nav .submenu li { padding: 0.1rem 0; }
  .primary-nav .submenu a {
    position: relative; display: block; padding: 0.6rem 0.7rem 0.6rem 1rem; border-radius: 6px;
    transition: background-color 0.15s ease, color 0.15s ease, padding-left 0.2s ease;
  }
  .primary-nav .submenu a::before {
    content: ""; position: absolute; left: 0.15rem; top: 50%; width: 4px; height: 0;
    background: var(--color-sky); border-radius: 2px; transform: translateY(-50%);
    transition: height 0.2s ease;
  }
  .primary-nav .submenu a:hover,
  .primary-nav .submenu a:focus-visible {
    background: var(--color-canvas-soft); color: var(--color-navy); padding-left: 1.35rem;
  }
  .primary-nav .submenu a:hover::before,
  .primary-nav .submenu a:focus-visible::before { height: 55%; }
}

/* ---- Hero ---- */
.hero { position: relative; isolation: isolate; overflow: hidden; padding: var(--space-7) 0; }
.hero__media { position: absolute; inset: 0; z-index: -1; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(115deg, rgba(0,45,98,0.92) 0%, rgba(0,45,98,0.82) 40%, rgba(0,45,98,0.55) 75%, rgba(0,45,98,0.35) 100%);
}
.hero__text { max-width: 640px; width: 100%; color: var(--color-white); }
.hero__text h1 { color: var(--color-white); animation: heroFadeUp 0.7s ease both; }
.hero__sub { font-size: 1.15rem; color: rgba(255,255,255,0.88); max-width: 50ch; animation: heroFadeUp 0.7s ease both 0.15s; }
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--space-2); margin-top: var(--space-3); animation: heroFadeUp 0.7s ease both 0.3s; }

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.btn--on-dark.btn--outline { background: transparent; border-color: var(--color-white); color: var(--color-white); }
.btn--on-dark.btn--outline:hover { background: var(--color-white); color: var(--color-navy); }

/* ---- Sections ---- */
.section { padding: var(--space-6) 0; }
.section--top-gap { padding-top: 0; }
.section--muted { background: var(--color-canvas-soft); }
.section__heading { margin-bottom: var(--space-2); }
.section-intro { margin-bottom: var(--space-4); }
.section-intro .section__heading { margin-bottom: var(--space-1); }
.two-col { display: grid; gap: var(--space-4); }
@media (min-width: 900px) { .two-col { grid-template-columns: 1fr 1fr; align-items: start; gap: var(--space-5); } }
@media (min-width: 900px) {
  .two-col--reverse > *:first-child { order: 2; }
  .two-col--reverse > *:last-child { order: 1; }
}

.service-hero { background: linear-gradient(var(--accent-tint), transparent 65%); }
.category-eyebrow {
  display: inline-flex; align-items: center; gap: 0.55em; font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.05em; color: var(--color-navy);
  background: var(--color-white); padding: 0.4em 0.9em 0.4em 0.7em; border-radius: 999px;
  margin-bottom: var(--space-2); box-shadow: 0 2px 8px rgba(0,45,98,0.08);
}
.category-eyebrow__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent, var(--color-sky)); flex-shrink: 0; }

.services-grid { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.7rem; }
@media (min-width: 560px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
.services-grid li { height: 100%; }
.services-grid a {
  display: flex; align-items: center; gap: 0.7em; height: 100%; min-height: 68px;
  background: var(--color-white); border: 1.5px solid var(--color-canvas-soft); border-radius: 10px;
  padding: 0.85em 1em; font-weight: 600; font-size: 0.95rem; color: var(--color-navy);
  text-decoration: none; transition: box-shadow 0.15s ease, transform 0.15s ease, border-color 0.15s ease;
}
.services-grid a:hover { transform: translateY(-2px); box-shadow: 0 10px 20px rgba(0,45,98,0.14); border-color: var(--color-sky); }
.services-grid__icon {
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  width: 32px; height: 32px; border-radius: 50%; background: var(--color-canvas-soft); color: var(--color-sky);
  transition: background-color 0.15s ease, color 0.15s ease, transform 0.15s ease;
}
.services-grid a:hover .services-grid__icon { background: var(--color-sky); color: var(--color-white); transform: translateX(2px); }

/* ---- Cards ---- */
.card-grid { display: grid; gap: var(--space-3); grid-template-columns: 1fr; }
@media (min-width: 640px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .card-grid--3, .card-grid:not(.card-grid--3) { grid-template-columns: repeat(3, 1fr); } }

.service-card { background: var(--color-white); border-radius: var(--radius); overflow: hidden; box-shadow: 0 8px 20px rgba(0,45,98,0.1); display: flex; flex-direction: column; transition: transform 0.18s ease, box-shadow 0.18s ease; }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 16px 30px rgba(0,45,98,0.18); }
.service-card__media { display: block; border-bottom: 3px dashed var(--color-sky); }
.service-card__media img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.service-card__body { padding: var(--space-3); display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.service-card__body h3 { margin: 0; font-size: 1.15rem; }
.service-card__body h3 a { text-decoration: none; color: var(--color-navy); }
.service-card__body p { margin: 0; color: var(--color-ink); flex: 1; }

/* ---- USP grid ---- */
.usp-grid { display: grid; gap: var(--space-3); grid-template-columns: 1fr; }
@media (min-width: 640px) { .usp-grid { grid-template-columns: repeat(2, 1fr); } }
.usp {
  background: var(--color-white); padding: var(--space-3); border-radius: var(--radius); border-top: 3px solid var(--color-sky);
  opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.25s ease, translate 0.25s ease;
}
.usp.is-visible { opacity: 1; transform: translateY(0); }
.usp:hover { box-shadow: 0 14px 28px rgba(0,45,98,0.14); translate: 0 -3px; }
.usp__icon {
  display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px;
  border-radius: 50%; background: rgba(110,193,228,0.16); color: var(--color-navy); margin-bottom: var(--space-2);
}
.usp h3 { font-size: 1.05rem; }
@media (prefers-reduced-motion: reduce) {
  .usp { opacity: 1; transform: none; transition: none; }
}

/* ---- Leistungen overview (homepage) ---- */
.leistungen-overview { display: grid; gap: var(--space-3); grid-template-columns: 1fr; }
@media (min-width: 640px) { .leistungen-overview { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .leistungen-overview { grid-template-columns: repeat(4, 1fr); } }
.leistungen-overview__group {
  background: var(--color-white); border-radius: var(--radius); padding: var(--space-3);
  border-top: 3px solid var(--accent, var(--color-sky)); box-shadow: 0 8px 20px rgba(0,45,98,0.08);
}
.leistungen-overview__cat { display: flex; align-items: center; gap: 0.55em; font-size: 1rem; color: var(--color-navy); margin: 0 0 var(--space-2); }
.leistungen-overview__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--accent, var(--color-sky)); flex-shrink: 0; }
.leistungen-overview__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.4rem; }
.leistungen-overview__list a {
  color: var(--color-ink); text-decoration: none; font-weight: 500; font-size: 0.95rem;
  display: inline-flex; align-items: center; gap: 0.4em; transition: color 0.15s ease, transform 0.15s ease;
}
.leistungen-overview__list a span { color: var(--accent, var(--color-sky)); transition: transform 0.15s ease; }
.leistungen-overview__list a:hover { color: var(--accent, var(--color-sky)); }
.leistungen-overview__list a:hover span { transform: translateX(3px); }

/* ---- Stats ---- */
.stats { background: var(--color-navy); color: var(--color-canvas); padding: var(--space-6) 0; }
.stats__grid { display: grid; gap: var(--space-4); grid-template-columns: 1fr; text-align: center; }
@media (min-width: 640px) { .stats__grid { grid-template-columns: repeat(3, 1fr); } }
.stat__number { font-family: var(--font-display); font-size: clamp(2.4rem, 6vw, 3.4rem); font-weight: 700; color: var(--color-sky); }
.stat__plus { font-family: var(--font-display); font-size: clamp(1.6rem, 4vw, 2.2rem); color: var(--color-sky); }
.stats p { margin: 0.2rem 0 0; color: var(--color-canvas-soft); }

/* ---- CTA block ---- */
.cta-block { background: var(--color-navy-soft); color: var(--color-white); padding: var(--space-6) 0; border-top: 1px solid rgba(255,255,255,0.12); }
.cta-block h2 { color: var(--color-white); }
.cta-block p { color: rgba(255,255,255,0.85); }
.cta-block__inner { display: grid; gap: var(--space-4); align-items: center; }
.cta-block__buttons { display: flex; flex-direction: column; gap: var(--space-2); align-items: stretch; }
.cta-block__buttons-row { display: flex; flex-wrap: wrap; gap: var(--space-2); justify-content: center; }
.cta-block__buttons-row .btn { flex: 0 1 auto; padding: 0.6em 1.2em; font-size: 0.88rem; }
.cta-block__buttons .btn--outline { width: 100%; justify-content: center; padding: 1.15em 2em; font-size: 1.15rem; font-weight: 700; }
.cta-block .btn--outline { background: transparent; border-color: rgba(255,255,255,0.6); color: var(--color-white); animation: ctaPulse 2.4s ease-in-out infinite; }
.cta-block .btn--outline:hover { background: var(--color-white); border-color: var(--color-white); color: var(--color-navy); animation-play-state: paused; }

@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.4); }
  50% { box-shadow: 0 0 0 10px rgba(255,255,255,0); }
}
@media (min-width: 900px) { .cta-block__inner { grid-template-columns: 1.1fr 0.9fr; } }

/* ---- Gallery / timeline / lists ---- */
.gallery-grid { display: grid; gap: var(--space-2); grid-template-columns: repeat(2, 1fr); margin-top: var(--space-3); }
@media (min-width: 640px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
.gallery-grid__item { position: relative; margin: 0; overflow: hidden; border-radius: var(--radius); box-shadow: 0 0 0 0 transparent; transition: box-shadow 0.25s ease; }
.gallery-grid__item:hover, .gallery-grid__item:focus-within { box-shadow: 0 0 0 3px var(--accent, var(--color-sky)); }
.gallery-grid__item img { display: block; width: 100%; border-radius: var(--radius); aspect-ratio: 4 / 3; object-fit: cover; transition: transform 0.35s ease; }
.gallery-grid__item:hover img, .gallery-grid__item:focus-within img { transform: scale(1.07); }
.gallery-grid__item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 1.4rem 0.7rem 0.55rem;
  background: linear-gradient(transparent, rgba(0,45,98,0.88));
  color: var(--color-white); font-size: 0.76rem; line-height: 1.3;
  opacity: 0; transform: translateY(6px); transition: opacity 0.25s ease, transform 0.25s ease;
}
.gallery-grid__item:hover figcaption, .gallery-grid__item:focus-within figcaption { opacity: 1; transform: translateY(0); }

.check-list { list-style: none; padding: 0; }
.check-list li { position: relative; padding: 0.4rem 0 0.4rem 1.6rem; border-bottom: 1px dashed var(--color-line); }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--accent, var(--color-navy)); font-weight: 700; }

.related-links { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: var(--space-2); }
.related-links a { display: inline-block; background: var(--color-white); padding: 0.6em 1.1em; border-radius: 999px; text-decoration: none; border: 1.5px solid var(--color-sky); transition: background-color 0.15s ease, color 0.15s ease; }
.related-links a:hover { background: var(--color-sky); color: var(--color-navy); }

.timeline-list { list-style: none; padding: 0; margin: 0; max-width: 70ch; }
.timeline-list li {
  position: relative;
  padding: 0.1rem 0 var(--space-4) var(--space-3);
  margin-left: 0.5rem;
  border-left: 3px dashed var(--color-sky);
}
.timeline-list li:last-child { padding-bottom: 0.1rem; border-left-color: transparent; }
.timeline-list li::before {
  content: ""; position: absolute; left: -8px; top: 0.15rem;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--color-white); border: 3px solid var(--color-sky);
}
.timeline-list li strong { display: block; color: var(--color-navy); margin-bottom: 0.2rem; }

/* ---- Legal pages ---- */
.legal h2 { margin-top: var(--space-4); font-size: 1.25rem; }
.legal .note { font-style: italic; color: var(--color-ink); border-top: 1px dashed var(--color-line); padding-top: var(--space-2); margin-top: var(--space-4); }

/* ---- Contact page ---- */
.contact-cards { display: flex; flex-direction: column; gap: var(--space-3); }
.info-card { background: var(--color-white); border-radius: var(--radius); padding: var(--space-4); box-shadow: 0 8px 20px rgba(0,45,98,0.1); border-top: 3px solid var(--color-sky); }
.info-card__heading { display: flex; align-items: center; gap: 0.8em; margin-bottom: var(--space-3); }
.info-card__heading > svg { color: var(--color-sky); flex-shrink: 0; }
.info-card__heading h2 { margin: 0; font-size: 1.25rem; }
.info-card__icon {
  display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px;
  border-radius: 50%; background: rgba(110,193,228,0.16); color: var(--color-sky); flex-shrink: 0;
}

.contact-block { font-style: normal; list-style: none; padding: 0; margin: 0 0 var(--space-3); display: flex; flex-direction: column; gap: 0.6rem; }
.contact-block li { display: flex; align-items: flex-start; gap: 0.7em; }
.contact-block svg { color: var(--color-sky); flex-shrink: 0; margin-top: 0.2em; }
.contact-block a { font-weight: 600; }
.contact-card-actions { display: flex; flex-wrap: wrap; gap: var(--space-2); margin-top: var(--space-3); }
.contact-card-actions .btn { flex: 1; justify-content: center; min-width: 160px; }

.opening-hours { list-style: none; padding: 0; margin: 0; }
.opening-hours li { display: flex; justify-content: space-between; padding: 0.4rem 0; border-bottom: 1px dashed var(--color-line); }
.opening-hours li:last-child { border-bottom: 0; }
.note { color: var(--color-ink); font-size: 0.88rem; margin-top: var(--space-2); margin-bottom: 0; }
.map-consent { background: var(--color-canvas-soft); border: 1px solid rgba(122,122,122,0.2); border-radius: var(--radius); padding: var(--space-4); text-align: center; }
.map-consent__icon { display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; border-radius: 50%; background: rgba(110,193,228,0.18); color: var(--color-sky); margin-bottom: var(--space-2); }
.map-consent__text { margin: 0 0 var(--space-3); font-size: 0.92rem; color: var(--color-ink); }
.map-consent__actions { display: flex; flex-direction: column; align-items: center; gap: var(--space-2); }
.info-card--map .info-card__heading { justify-content: center; }
.info-card--map .map-consent, .info-card--map .map-embed { max-width: 760px; margin-left: auto; margin-right: auto; }
.map-embed { margin-top: var(--space-2); border-radius: var(--radius); overflow: hidden; }
.map-embed iframe { width: 100%; height: 320px; border: 0; display: block; }
@media (min-width: 760px) { .map-embed iframe { height: 440px; } }

.contact-form-wrap { background: var(--color-white); border-radius: var(--radius); padding: var(--space-4); box-shadow: 0 8px 20px rgba(0,45,98,0.1); border-top: 3px solid var(--color-sky); }
.contact-form .form-row { margin-bottom: var(--space-2); display: flex; flex-direction: column; gap: 0.35rem; }
.contact-form .form-row[aria-hidden="true"] { position: absolute; left: -9999px; }
.contact-form .form-grid { display: grid; gap: var(--space-2); grid-template-columns: 1fr; margin-bottom: 0; }
@media (min-width: 560px) { .contact-form .form-grid { grid-template-columns: 1fr 1fr; } }
.contact-form .form-grid .form-row { margin-bottom: var(--space-2); }
.contact-form label { font-weight: 600; font-size: 0.92rem; }
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
  font: inherit; padding: 0.75em 0.9em; border: 1.5px solid var(--color-line); border-radius: var(--radius);
  background: var(--color-canvas); color: var(--color-ink); transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--color-sky); box-shadow: 0 0 0 3px rgba(110,193,228,0.25); outline: none; }
.contact-form .form-row--checkbox { flex-direction: row; align-items: flex-start; gap: 0.6rem; }
.contact-form .form-row--checkbox input { margin-top: 0.3rem; }
.contact-form .form-row--checkbox label { font-weight: 400; font-size: 0.88rem; }
.contact-form button[type="submit"] { margin-top: var(--space-1); width: 100%; justify-content: center; }
@media (min-width: 560px) { .contact-form button[type="submit"] { width: auto; } }
.form-status { min-height: 1.4em; font-weight: 600; font-size: 1.2rem; }
.form-status.is-success { color: var(--color-navy); }
.form-status.is-error { color: var(--color-red-alert); }

/* ---- Footer ---- */
.site-footer { background: var(--color-navy); color: var(--color-canvas-soft); padding: var(--space-5) 0 var(--space-2); font-size: 1rem; border-radius: 40px 40px 0 0; border-top: 3px dashed var(--color-sky); box-shadow: 0 -12px 30px rgba(0,45,98,0.15); }
@media (min-width: 760px) { .site-footer { border-radius: 56px 56px 0 0; } }
.footer-grid { display: grid; gap: var(--space-4) var(--space-3); grid-template-columns: 1fr; }
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.3fr 1fr 1fr 1fr; } }
.footer-col p { margin: 0 0 0.5rem; line-height: 1.55; color: var(--color-canvas-soft); opacity: 0.9; }
.footer-col h3 { display: flex; align-items: center; gap: 0.5em; color: var(--color-sky); font-size: 1rem; margin-bottom: 0.7rem; letter-spacing: 0.01em; }
.footer-col h3 svg { flex-shrink: 0; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { padding: 0.22rem 0; }
.footer-col a { display: inline-block; color: var(--color-canvas-soft); text-decoration: none; transition: color 0.15s ease, transform 0.15s ease; }
.footer-col a:hover, .footer-col a:focus-visible { color: var(--color-sky); transform: translateX(3px); }
.footer-logo { height: 56px; width: auto; margin-bottom: 0.6rem; }
.site-footer address { font-style: normal; line-height: 1.6; }
.footer-hours { margin-top: var(--space-3); padding-top: var(--space-2); border-top: 1px dashed rgba(255,255,255,0.2); }
.footer-hours h4 { display: flex; align-items: center; gap: 0.5em; color: var(--color-sky); font-size: 0.9rem; font-weight: 600; margin: 0 0 0.4rem; }
.footer-hours-list { list-style: none; padding: 0; margin: 0; font-size: 0.92rem; }
.footer-hours-list li { display: flex; flex-direction: column; gap: 0.1rem; padding: 0.35rem 0; }
.footer-hours-list li span:first-child { font-size: 0.8rem; color: var(--color-canvas-soft); opacity: 0.65; }
.footer-hours-list li span:last-child { color: var(--color-canvas-soft); opacity: 0.95; }
.social-icons { display: flex; gap: 0.6rem; margin-top: var(--space-2); }
.social-icons a {
  display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px;
  border-radius: 50%; background: rgba(110,193,228,0.12); color: var(--color-sky);
  transition: background-color 0.15s ease, transform 0.15s ease;
}
.social-icons a:hover, .social-icons a:focus-visible { background: var(--color-sky); color: var(--color-navy); transform: translateY(-2px); }
.footer-bottom { display: flex; flex-direction: column; gap: 0.3rem; align-items: center; justify-content: space-between; margin-top: var(--space-4); padding-top: var(--space-2); border-top: 1px dashed rgba(255,255,255,0.2); font-size: 0.85rem; text-align: center; opacity: 0.85; }
.footer-legal { list-style: none; display: flex; gap: var(--space-2); padding: 0; margin: 0; }
@media (min-width: 640px) { .footer-bottom { flex-direction: row; text-align: left; } }

/* ---- Error page ---- */
.error-page { text-align: center; padding: var(--space-7) 0; }
