/* Schuh Kistner – site.css
   Dunkles Leder-Design: schwarzes Leder als Untergrund, cremeweißer Text,
   Rot (Logo) als Hauptakzent, gedecktes Messing als feine Näht-/Linienfarbe. */

@font-face {
  font-family: "Fraunces";
  src: url("/assets/fonts/fraunces-latin-opsz-normal.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url("/assets/fonts/fraunces-latin-opsz-italic.woff2") format("woff2");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Instrument Sans";
  src: url("/assets/fonts/instrument-sans-latin-wght-normal.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Instrument Sans";
  src: url("/assets/fonts/instrument-sans-latin-wght-italic.woff2") format("woff2");
  font-weight: 400 700;
  font-style: italic;
  font-display: swap;
}

:root {
  --leather: #100e0b;
  --panel: #18140f;
  --panel-2: #1f1a13;
  --line: rgba(244, 239, 228, 0.14);
  --line-strong: rgba(244, 239, 228, 0.26);

  --ink: #f5f0e6;
  --ink-dim: #cdc4b1;
  --ink-faint: #948c7a;

  --red: #c8393a;
  --red-bright: #e15b57;
  --red-deep: #8f2323;
  --gold: #b8934f;
  --gold-soft: #8a7248;
  --green: #6fae7f;

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Instrument Sans", "Helvetica Neue", Arial, sans-serif;

  --wrap: 72rem;
  --narrow: 44rem;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --section: clamp(3.5rem, 8vw, 6.5rem);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--leather) url("/assets/img/leather.jpg") center top / cover no-repeat;
  position: relative;
}
@media (hover: hover) and (pointer: fine) {
  body { background-attachment: fixed; }
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% -10%, rgba(20, 17, 13, 0.15), rgba(8, 7, 5, 0.72) 65%),
    linear-gradient(rgba(8, 7, 5, 0.35), rgba(8, 7, 5, 0.55));
}
body.nav-open { overflow: hidden; }

img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--ink); text-underline-offset: 0.2em; text-decoration-color: var(--gold); text-decoration-thickness: 1px; }
a:hover { color: var(--red-bright); text-decoration-color: currentColor; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 480;
  font-variation-settings: "opsz" 90, "SOFT" 30;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 0.55em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.4rem, 5.6vw, 4.1rem); }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.5rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); color: var(--ink); }
p { margin: 0 0 1em; color: var(--ink-dim); }
.prose p, .prose li { color: var(--ink-dim); }
strong { color: var(--ink); }

.lead {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-variation-settings: "opsz" 24;
  font-size: 1.15rem;
  color: var(--gold);
  margin-bottom: 0.5em;
}

.prose > :last-child { margin-bottom: 0; }
.prose ul, .prose ol { padding-left: 1.3em; }
.prose h2 { margin-top: 1.7em; font-size: clamp(1.4rem, 2.4vw, 1.8rem); }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 1.4em; }
.prose a { color: var(--gold); }
.prose a:hover { color: var(--red-bright); }

.wrap { width: min(var(--wrap), 100% - 2 * var(--gutter)); margin-inline: auto; }
.narrow { max-width: var(--narrow); }
.wrap.narrow { margin-inline: auto; }
.section { padding-block: var(--section); }
.section-tight { padding-top: 0; }
.section-stone { background: linear-gradient(var(--panel), var(--panel)); border-block: 1px solid var(--line); }
.page-plain { padding-top: clamp(2.5rem, 6vw, 4rem); }

.skip { position: absolute; left: -999px; top: 0; background: var(--red); color: #fff; padding: 0.5rem 1rem; z-index: 200; }
.skip:focus { left: 1rem; top: 1rem; }

.stitch-rule { border: 0; height: 1px; background-image: linear-gradient(to right, var(--line-strong) 60%, transparent 0%); background-size: 10px 1px; background-repeat: repeat-x; margin: 0; }

/* Buttons */
.button {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  background: var(--red);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  padding: 0.85rem 1.6rem;
  border: 1px solid var(--red);
  border-radius: 3px;
  line-height: 1.2;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
  transition: background-color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}
.button:hover { background: var(--red-bright); border-color: var(--red-bright); color: #fff; transform: translateY(-1px); }
.button-ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.button-ghost:hover { background: rgba(245, 240, 230, 0.08); border-color: var(--ink); color: var(--ink); }
.button-light { background: var(--ink); color: var(--leather); border-color: var(--ink); }
.button-light:hover { background: #fff; border-color: #fff; color: var(--leather); }
.button-small { padding: 0.55rem 1rem; font-size: 0.9rem; }
.btn-link, .link-plain {
  background: none; border: 0; padding: 0; margin: 0; font: inherit; cursor: pointer;
  color: var(--ink-dim); text-decoration: underline; text-decoration-color: var(--gold);
}
.btn-link:hover, .link-plain:hover { color: var(--red-bright); }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 40;
  border-bottom: 1px solid var(--line);
}
/* Der Weichzeichner sitzt bewusst auf einem eigenen Pseudo-Element: backdrop-filter
   auf .site-header selbst würde einen neuen Containing Block erzeugen und das
   position:fixed des mobilen Menüs (Nachfahre von .site-header) darin einsperren. */
.site-header::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: rgba(12, 10, 8, 0.82);
  backdrop-filter: blur(10px) saturate(1.1);
  -webkit-backdrop-filter: blur(10px) saturate(1.1);
}
.header-row { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; min-height: 5.25rem; }
.brand img { width: 118px; height: auto; }
.site-nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: clamp(0.9rem, 2vw, 1.8rem); flex-wrap: wrap; justify-content: flex-end; }
.site-nav a { color: var(--ink-dim); text-decoration: none; font-weight: 500; padding: 0.4rem 0.1rem; border-bottom: 2px solid transparent; }
.site-nav a:hover { color: var(--ink); border-bottom-color: var(--line-strong); }
.site-nav a[aria-current="page"] { color: var(--ink); border-bottom-color: var(--red); }
.nav-status { margin: 0.4rem 0 0; font-size: 0.85rem; text-align: right; color: var(--ink-faint); }
.nav-status a { color: inherit; text-decoration: none; border: 0; padding: 0; font-weight: 400; }
.nav-status a::before { content: ""; display: inline-block; width: 0.55em; height: 0.55em; border-radius: 50%; background: var(--ink-faint); margin-right: 0.5em; vertical-align: 0.05em; box-shadow: 0 0 0 3px rgba(148, 140, 122, 0.15); }
.nav-status.is-open a::before { background: var(--green); box-shadow: 0 0 0 3px rgba(111, 174, 127, 0.2); }
.nav-status.is-closed a::before { background: var(--red-bright); box-shadow: 0 0 0 3px rgba(225, 91, 87, 0.2); }
.nav-status a:hover { text-decoration: underline; text-decoration-color: var(--gold); }
.nav-toggle { display: none; }

@media (max-width: 56em) {
  .header-row { min-height: 4.25rem; }
  .brand img { width: 98px; }
  .nav-toggle {
    display: inline-flex; align-items: center; gap: 0.6rem;
    background: none; border: 1px solid var(--line-strong); border-radius: 3px;
    padding: 0.5rem 0.85rem; font: inherit; font-size: 0.9rem; color: var(--ink); cursor: pointer;
  }
  .nav-toggle-bars { width: 1.1rem; height: 2px; background: currentColor; box-shadow: 0 -6px 0 currentColor, 0 6px 0 currentColor; display: block; }
  .site-nav {
    position: fixed; inset: 4.25rem 0 0 0; z-index: 39;
    background: rgba(9, 8, 6, 0.98);
    backdrop-filter: blur(6px);
    padding: 0.5rem var(--gutter) 2rem;
    overflow-y: auto;
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  }
  .site-nav.is-open { opacity: 1; transform: translateY(0); visibility: visible; }
  .site-nav ul { flex-direction: column; gap: 0; padding-top: 0.5rem; }
  .site-nav li { border-top: 1px solid var(--line); }
  .site-nav a { display: block; padding: 1rem 0.1rem; border-bottom: 0; font-size: 1.15rem; }
  .site-nav a[aria-current="page"] { color: var(--red-bright); }
  .nav-status { text-align: left; padding-top: 1rem; margin-top: 0.5rem; border-top: 1px solid var(--line); font-size: 0.95rem; }
}

/* Hero (Startseite) */
.hero { position: relative; isolation: isolate; }
.hero img { width: 100%; height: min(86vh, 50rem); object-fit: cover; object-position: center; }
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8, 7, 5, 0.92) 0%, rgba(8, 7, 5, 0.35) 46%, rgba(8, 7, 5, 0.15) 65%, rgba(8, 7, 5, 0.5) 100%);
}
.hero-text {
  position: absolute; inset: auto 0 0 0; z-index: 1;
  padding: clamp(2rem, 9vw, 5.5rem) 0 clamp(2.2rem, 6vw, 4rem);
  animation: rise 0.7s cubic-bezier(.16,.9,.28,1) both;
}
@media (prefers-reduced-motion: reduce) { .hero-text { animation: none; } }
@keyframes rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
.hero h1 { max-width: 17em; margin-bottom: 0.45em; }
.hero p { max-width: 34em; font-size: 1.15rem; margin-bottom: 1.5em; color: #e4ddcd; }

/* Unterseiten-Kopf */
.page-hero { position: relative; isolation: isolate; }
.page-hero img { width: 100%; height: clamp(30rem, 82vh, 50rem); object-fit: cover; object-position: center; }
.page-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(rgba(8, 7, 5, 0.5), rgba(8, 7, 5, 0.4) 45%, rgba(8, 7, 5, 0.5) 70%, rgba(8, 7, 5, 0.72)); }
.page-hero-text { position: absolute; inset: 0; z-index: 1; display: flex; align-items: center; }
.page-hero h1 { margin: 0; }
.page-hero .lead { color: var(--gold); }

/* Zweispaltig */
.split { display: grid; gap: clamp(1.75rem, 4vw, 4rem); align-items: center; }
@media (min-width: 60em) { .split { grid-template-columns: 1.1fr 1fr; } }
.split-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 4px; box-shadow: 0 1.5rem 3rem -1.5rem rgba(0, 0, 0, 0.7); }
.intro h2 { font-size: clamp(1.7rem, 2.9vw, 2.3rem); }

.split-band { display: grid; padding: 0; background: var(--panel); border-block: 1px solid var(--line); }
@media (min-width: 60em) {
  .split-band { grid-template-columns: 1fr 1fr; }
  .split-band-reverse .split-band-media { order: 2; }
}
.split-band-media img { width: 100%; height: 100%; min-height: 20rem; object-fit: cover; }
.split-band-text { padding: clamp(2.5rem, 6vw, 5rem) var(--gutter); max-width: 36rem; justify-self: center; align-self: center; }
@media (min-width: 60em) { .split-band-text { padding-inline: clamp(2.5rem, 6vw, 5rem); } }

/* Aktuelles */
.aktuelles { border-top: 1px solid var(--line); }
.aktuelles-head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; margin-bottom: 1.75rem; }
.aktuelles-head h2 { margin: 0; }
.aktuelles-head a { color: var(--gold); text-decoration: none; font-weight: 600; font-size: 0.95rem; }
.aktuelles-head a:hover { color: var(--red-bright); }
.news-card { display: grid; gap: 1.5rem; }
.news-card time { display: block; color: var(--ink-faint); font-size: 0.9rem; margin-bottom: 0.35rem; letter-spacing: 0.02em; }
.news-card h2, .news-card h3 { margin-bottom: 0.4em; }
.news-card h2 a, .news-card h3 a { color: var(--ink); text-decoration: none; }
.news-card h2 a:hover, .news-card h3 a:hover { color: var(--red-bright); }
.news-card-media img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; border-radius: 4px; }
.news-card-featured { background: var(--panel); border: 1px solid var(--line); border-left: 3px solid var(--red); border-radius: 4px; padding: clamp(1.2rem, 3vw, 2rem); }
@media (min-width: 60em) { .news-card-featured:has(.news-card-media) { grid-template-columns: 2fr 3fr; } }
.news-list { display: grid; gap: 2rem; }
.news-list .news-card { padding: clamp(1.2rem, 2.5vw, 1.8rem); border: 1px solid var(--line); border-radius: 4px; background: var(--panel); }
@media (min-width: 48em) { .news-list .news-card:has(.news-card-media) { grid-template-columns: 16rem 1fr; } }
.news-list p { margin: 0; }
.pagination { display: flex; justify-content: space-between; align-items: center; gap: 1rem; margin-top: 2.5rem; color: var(--ink-faint); }
.pagination a { color: var(--gold); text-decoration: none; }
.pagination a:hover { color: var(--red-bright); }
.news-detail time { color: var(--ink-faint); display: block; margin-bottom: 0.3rem; }
.breadcrumb { font-size: 0.95rem; margin-bottom: 1.5rem; }
.breadcrumb a { color: var(--gold); text-decoration: none; }
.news-back { margin-top: 2.5rem; }
.news-gallery { margin-top: 2rem; }

/* Leistungen (Schuhtechnik) */
.services .service { padding-block: clamp(2.5rem, 5vw, 4rem); border-top: 1px solid var(--line); scroll-margin-top: 5.5rem; }
.services .service:first-child { border-top: 0; }
@media (min-width: 60em) {
  .service .split { grid-template-columns: 1fr 1.1fr; }
  .service-reverse .split-media { order: 2; }
}
.service .split-media img { aspect-ratio: 4 / 3; }
.notice { background: var(--panel); border-top: 1px solid var(--line); }

/* Videos */
.videos { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--panel); }
.video-grid { display: grid; gap: 1.5rem; }
@media (min-width: 48em) { .video-grid { grid-template-columns: 1fr 1fr; } }
.video, .map-embed { aspect-ratio: 16 / 9; background: #0b0a08; position: relative; border-radius: 4px; overflow: hidden; border: 1px solid var(--line); }
.video iframe, .map-embed iframe { width: 100%; height: 100%; border: 0; position: absolute; inset: 0; }
.video-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.video::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(8, 7, 5, 0.88), rgba(8, 7, 5, 0.55) 55%, rgba(8, 7, 5, 0.4)); }
.video-consent {
  position: relative; z-index: 1;
  width: 100%; height: 100%; display: flex; flex-direction: column; justify-content: center; gap: 0.6rem;
  padding: 1.5rem; background: transparent; border: 0; color: #e4ddcd; text-align: left; font: inherit; cursor: pointer;
}
.video-consent:hover { color: #fff; }
.video-consent-title, .external-consent-title { font-family: var(--font-display); font-size: 1.3rem; color: var(--ink); }
.video-consent::before {
  content: ""; width: 0; height: 0; border-left: 1.3rem solid var(--red); border-top: 0.8rem solid transparent; border-bottom: 0.8rem solid transparent; margin-bottom: 0.4rem;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.5));
}
.external-consent-inner {
  width: 100%; height: 100%; display: flex; flex-direction: column; justify-content: center; gap: 0.9rem; padding: 1.5rem;
}
.external-consent {
  display: flex; flex-direction: column; align-items: flex-start; gap: 0.6rem; text-align: left;
  background: transparent; border: 0; padding: 0; margin: 0; font: inherit; color: var(--ink-dim); cursor: pointer; max-width: 26rem;
}
.external-consent:hover { color: var(--ink); }
.external-consent::before {
  content: "";
  width: 2.4rem; height: 2.4rem; border-radius: 50%;
  background: var(--panel-2) center/1.1rem no-repeat;
  border: 1px solid var(--line-strong);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b8934f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 21s-7-6.2-7-11a7 7 0 0 1 14 0c0 4.8-7 11-7 11Z'/%3E%3Ccircle cx='12' cy='10' r='2.5'/%3E%3C/svg%3E");
}
.map-settings-link { align-self: flex-start; font-size: 0.85rem; }

/* Galerie */
.gallery { columns: 2; column-gap: 0.75rem; }
@media (min-width: 40em) { .gallery { columns: 3; } }
@media (min-width: 64em) { .gallery { columns: 4; } }
.gallery-item { display: block; break-inside: avoid; margin-bottom: 0.75rem; border-radius: 3px; overflow: hidden; }
.gallery-item img { width: 100%; transition: transform 0.4s ease, opacity 0.2s ease; }
.gallery-item:hover img { transform: scale(1.035); opacity: 0.95; }
.lightbox { border: 0; padding: 0; background: rgba(6, 5, 4, 0.96); max-width: 100vw; max-height: 100vh; width: 100vw; height: 100vh; }
.lightbox::backdrop { background: rgba(6, 5, 4, 0.96); }
.lightbox img { max-width: 100vw; max-height: 100vh; width: auto; height: auto; margin: auto; position: absolute; inset: 0; object-fit: contain; }
.lightbox button { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0, 0, 0, 0.4); color: #fff; border: 0; font-size: 2rem; width: 3rem; height: 4rem; cursor: pointer; }
.lightbox .lb-prev { left: 0; }
.lightbox .lb-next { right: 0; }
.lightbox .lb-close { top: 0; transform: none; right: 0; height: 3rem; font-size: 1.6rem; }

/* CTA */
.cta { position: relative; isolation: isolate; }
.cta img { width: 100%; height: clamp(18rem, 46vh, 28rem); object-fit: cover; }
.cta::after { content: ""; position: absolute; inset: 0; background: linear-gradient(rgba(8, 7, 5, 0.55), rgba(8, 7, 5, 0.78)); }
.cta-text { position: absolute; inset: 0; z-index: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: var(--gutter); gap: 1.5rem; }
.cta h2 { color: var(--ink); font-size: clamp(1.9rem, 4.2vw, 3rem); margin: 0; }

/* Kontakt */
.contact-grid { display: grid; gap: 3rem; }
@media (min-width: 52em) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-address { font-style: normal; line-height: 1.75; margin-bottom: 1.5rem; color: var(--ink-dim); }
.contact-address strong { color: var(--ink); }
.status-line { font-weight: 600; margin-bottom: 1rem; color: var(--ink); }
.status-line::before { content: ""; display: inline-block; width: 0.7em; height: 0.7em; border-radius: 50%; margin-right: 0.5em; background: var(--red-bright); }
.status-line.is-open::before { background: var(--green); }

.hours { border-collapse: collapse; width: 100%; max-width: 30rem; }
.hours th, .hours td { text-align: left; padding: 0.6rem 0; border-bottom: 1px solid var(--line); vertical-align: top; }
.hours th { font-weight: 600; color: var(--ink); padding-right: 1.5rem; white-space: nowrap; width: 1%; }
.hours td { color: var(--ink-dim); }
.hours-compact th, .hours-compact td { padding-top: 0.4rem; padding-bottom: 0.4rem; }
.hours-special { margin-top: 1.3rem; }
.hours-special-title { font-weight: 600; margin-bottom: 0.5rem; color: var(--ink); }
.hours-special ul { list-style: none; margin: 0; padding: 0; }
.hours-special li { display: grid; grid-template-columns: auto 1fr; gap: 1rem; padding: 0.4rem 0; color: var(--ink-dim); }
.hours-special-date { font-weight: 600; white-space: nowrap; color: var(--ink); }
.site-footer .hours-special { border-top: 1px solid var(--line); padding-top: 1rem; }

.form { display: grid; gap: 1.2rem; max-width: 36rem; }
.form-row { display: grid; gap: 0.4rem; }
.form label { font-weight: 600; color: var(--ink); }
.form input, .form textarea {
  width: 100%; padding: 0.8rem 0.95rem; font: inherit; color: var(--ink);
  border: 1px solid var(--line-strong); border-radius: 3px; background: rgba(255, 255, 255, 0.03);
}
.form input::placeholder, .form textarea::placeholder { color: var(--ink-faint); }
.form input:focus, .form textarea:focus { border-color: var(--gold); outline: 0; box-shadow: 0 0 0 3px rgba(184, 147, 79, 0.2); background: rgba(255, 255, 255, 0.05); }
.form [aria-invalid="true"] { border-color: var(--red-bright); }
.form-msg { color: var(--red-bright); font-size: 0.9rem; }
.form-note { font-size: 0.9rem; color: var(--ink-faint); }
.form .button { justify-self: start; }
.form-hp { position: absolute; left: -9999px; }
.form-success { background: var(--panel); border-left: 3px solid var(--green); padding: 1rem 1.2rem; border-radius: 3px; }
.form-error { background: var(--panel); border-left: 3px solid var(--red-bright); padding: 1rem 1.2rem; border-radius: 3px; }

/* Footer */
.site-footer { border-top: 1px solid var(--line); background: linear-gradient(rgba(8, 7, 5, 0.55), rgba(8, 7, 5, 0.75)); }
.site-footer a { color: var(--ink-dim); }
.site-footer a:hover { color: var(--red-bright); }
.footer-grid { display: grid; gap: 2.5rem; padding-block: clamp(2.5rem, 6vw, 4.5rem); }
@media (min-width: 52em) { .footer-grid { grid-template-columns: 1.1fr 1.2fr 1fr; } }
.footer-logo { margin-bottom: 1.2rem; }
.footer-title { font-size: 1.15rem; color: var(--ink); margin-bottom: 1rem; }
.site-footer address { font-style: normal; line-height: 1.75; color: var(--ink-dim); }
.site-footer address a { color: var(--ink-dim); }
.footer-social { margin-top: 1.2rem; }
.footer-social a { display: inline-flex; align-items: center; gap: 0.55rem; }
.icon-instagram { width: 1.15rem; height: 1.15rem; flex-shrink: 0; }
.footer-links { list-style: none; margin: 0; padding: 0; line-height: 2; }
.footer-links a { text-decoration: none; }
.footer-links a:hover { text-decoration: underline; text-decoration-color: var(--gold); }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; padding-block: 1.2rem; border-top: 1px solid var(--line); font-size: 0.88rem; color: var(--ink-faint); }
.footer-bottom p { margin: 0; }
.footer-bottom ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 1.4rem; }
.footer-bottom a, .footer-bottom .link-plain { color: var(--ink-faint); text-decoration: none; font-size: inherit; }
.footer-bottom a:hover, .footer-bottom .link-plain:hover { color: var(--ink); text-decoration: underline; text-decoration-color: var(--gold); }

.legal h2 { font-size: 1.3rem; color: var(--ink); }

/* Marken (Modeschuhe) */
.brands { border-top: 1px solid var(--line); }
.brand-grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (min-width: 40em) { .brand-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 60em) { .brand-grid { grid-template-columns: repeat(4, 1fr); } }
.brand-card {
  background: #ffffff;
  border-radius: 4px;
  padding: 1rem;
  display: flex; align-items: center; justify-content: center;
  aspect-ratio: 2 / 1;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.brand-card img { width: 100%; height: 100%; object-fit: contain; }
.brand-card:hover { transform: translateY(-2px); box-shadow: 0 0.75rem 1.5rem -0.75rem rgba(0, 0, 0, 0.6); }

/* Cookie-Banner */
.cookie-banner { position: fixed; inset: auto 0 0 0; z-index: 100; padding: 1rem clamp(0.75rem, 3vw, 1.5rem); }
.cookie-box {
  max-width: 46rem; margin-inline: auto;
  background: rgba(15, 13, 10, 0.97);
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  padding: 1.4rem 1.5rem;
  box-shadow: 0 1.5rem 3rem -1rem rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
}
.cookie-title { font-family: var(--font-display); font-size: 1.15rem; color: var(--ink); margin-bottom: 0.3rem; }
.cookie-text p:last-child { margin-bottom: 0; font-size: 0.92rem; color: var(--ink-dim); }
.cookie-settings { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--line); display: grid; gap: 0.9rem; }
.cookie-settings[hidden] { display: none; }
.cookie-option { display: flex; gap: 0.75rem; align-items: flex-start; font-size: 0.9rem; color: var(--ink-dim); }
.cookie-option input { margin-top: 0.2rem; accent-color: var(--red); }
.cookie-option strong { color: var(--ink); }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; margin-top: 1.1rem; }
.cookie-actions .btn-link { margin-right: auto; font-size: 0.9rem; }

@media (max-width: 30em) {
  .cookie-actions { flex-direction: column-reverse; align-items: stretch; }
  .cookie-actions .btn-link { margin: 0.2rem 0 0; text-align: center; }
  .cookie-actions .button { width: 100%; justify-content: center; }
}

@media print {
  .site-header, .site-footer, .cta, .videos, .gallery, .cookie-banner { display: none; }
  body { background: #fff; color: #000; }
}
