/* ==========================================================================
   Brennholzschmiede Alzenau — Stylesheet
   Tokens -> Base -> Layout -> Components -> Pages -> Responsive
   ========================================================================== */

:root {
  --font-heading: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --color-primary: #6B3A1F;
  --color-primary-dark: #40230F;
  --color-accent: #D97706;
  --color-accent-dark: #B45309;
  --color-accent-darker: #92400E;

  --color-background: #FBF7F1;
  --color-surface: #FFFFFF;
  --color-foreground: #2B1B10;
  --color-muted: #F3E9DB;
  --color-muted-foreground: #6B5B4F;
  --color-border: #E6D5C3;

  --color-success: #15803D;
  --color-success-bg: #EAF6EC;
  --color-success-border: #BEE3C6;
  --color-destructive: #DC2626;
  --color-destructive-bg: #FDECEC;
  --color-ring: #B45309;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --shadow-sm: 0 1px 2px rgba(43, 27, 16, 0.08);
  --shadow-md: 0 8px 24px rgba(43, 27, 16, 0.10);
  --shadow-lg: 0 20px 45px rgba(43, 27, 16, 0.16);

  --container-width: 1180px;
  --header-height: 76px;

  --transition-fast: 160ms ease;
  --transition-base: 220ms ease;
}

/* ---- 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, h1, h2, h3, h4, p, figure, blockquote, dl, dd { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
img, svg { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }

body {
  font-family: var(--font-body);
  background: var(--color-background);
  color: var(--color-foreground);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-primary-dark);
}
h1 { font-size: clamp(2.1rem, 1.6rem + 2vw, 3.4rem); font-weight: 600; }
h2 { font-size: clamp(1.6rem, 1.3rem + 1.2vw, 2.3rem); }
h3 { font-size: 1.25rem; }
p { color: var(--color-foreground); }
.lede { font-size: 1.15rem; color: var(--color-muted-foreground); max-width: 60ch; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--color-ring);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--color-primary-dark);
  color: #fff;
  padding: 12px 20px;
  border-radius: 0 0 var(--radius-sm) 0;
  z-index: 1000;
}
.skip-link:focus {
  left: 0;
}

/* ---- Layout ---- */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin-inline: auto;
  padding-inline: 24px;
}
section { padding-block: clamp(48px, 6vw, 88px); }
.section-tight { padding-block: clamp(32px, 4vw, 56px); }
.section-header { max-width: 640px; margin-bottom: 40px; }
.section-header.center { margin-inline: auto; text-align: center; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent-darker);
  margin-bottom: 12px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--color-accent);
  display: inline-block;
}

.grid { display: grid; gap: 24px; }
@media (min-width: 768px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.icon { width: 24px; height: 24px; flex-shrink: 0; }
.icon-sm { width: 18px; height: 18px; }
.icon-lg { width: 32px; height: 32px; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--transition-fast), background var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
  min-height: 48px;
  line-height: 1.1;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-small { padding: 10px 18px; min-height: 40px; font-size: 0.9rem; }
.btn-primary {
  background: var(--color-accent-dark);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--color-accent-darker); box-shadow: var(--shadow-md); }
.btn-outline {
  background: transparent;
  border-color: var(--color-border);
  color: var(--color-primary-dark);
}
.btn-outline:hover { border-color: var(--color-accent-dark); background: var(--color-muted); }
.btn-ghost-light {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.4);
  color: #fff;
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.22); }
.btn-block { width: 100%; }
.btn:disabled { opacity: 0.55; cursor: not-allowed; transform: none; }

/* ---- Header ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 247, 241, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: var(--header-height);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.brand-logo { width: 101px; height: 90px; object-fit: contain; flex-shrink: 0; }
.site-footer .brand-logo { background: #fff; border-radius: 50%; padding: 5px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-family: var(--font-heading); font-weight: 600; font-size: 1.15rem; color: var(--color-primary-dark); }
.brand-place { font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--color-accent-dark); font-weight: 600; }

.main-nav ul { display: flex; gap: 4px; }
.main-nav a {
  display: inline-block;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  color: var(--color-foreground);
  transition: background var(--transition-fast), color var(--transition-fast);
}
.main-nav a:hover { background: var(--color-muted); color: var(--color-accent-darker); }
.main-nav a[aria-current="page"] { color: var(--color-accent-darker); font-weight: 700; }

.header-actions { display: flex; align-items: center; gap: 10px; }
.phone-link {
  display: none;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  color: var(--color-primary-dark);
}
.phone-link:hover { background: var(--color-muted); }
.phone-link .icon { color: var(--color-accent-dark); }

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

@media (max-width: 899px) {
  .main-nav {
    position: fixed;
    inset: var(--header-height) 0 0 0;
    background: var(--color-surface);
    box-shadow: var(--shadow-lg);
    padding: 20px 24px;
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-base), transform var(--transition-base), visibility var(--transition-base);
  }
  .main-nav.is-open { opacity: 1; transform: translateY(0); visibility: visible; }
  .main-nav ul {
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
  }
  .main-nav li:not(:last-child) { border-bottom: 1px solid var(--color-border); }
  .main-nav a { display: block; padding: 16px 18px; font-size: 1.05rem; border-radius: 0; background: var(--color-muted); }
  .main-nav a:active { background: var(--color-border); }
  .btn.btn-small.btn-primary { display: none; }
}
@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .phone-link { display: inline-flex; }
}

/* ---- Hero (full-bleed video) ---- */
.hero-video {
  position: relative;
  overflow: hidden;
  min-height: calc(100svh - var(--header-height));
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--color-border);
}
.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(20, 12, 7, 0.82) 0%, rgba(20, 12, 7, 0.58) 45%, rgba(20, 12, 7, 0.28) 100%);
  z-index: 1;
}
.hero-video-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding-block: clamp(28px, 5vh, 64px);
}
.hero-video-content .eyebrow { color: #F2C572; margin-bottom: 10px; }
.hero-video-content .eyebrow::before { background: #F2C572; }
.hero-video-content h1 { color: #fff; margin-bottom: 14px; }
.hero-video-content .lede { color: rgba(255,255,255,0.88); margin-bottom: 22px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 20px; }
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  font-size: 0.92rem;
  color: var(--color-muted-foreground);
}
.hero-trust li { display: flex; align-items: center; gap: 8px; }
.hero-trust .icon { color: var(--color-success); width: 18px; height: 18px; }
.hero-video-content .hero-trust { color: rgba(255,255,255,0.88); }
.hero-video-content .hero-trust .icon { color: #F2C572; }

.hero-art {
  position: relative;
  aspect-ratio: 4 / 3.2;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, #6B3A1F, #40230F);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.hero-art img,
.hero-art video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---- Feature / value cards ---- */
.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--color-muted);
  color: var(--color-accent-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.card h3 { margin-bottom: 8px; }
.card p { color: var(--color-muted-foreground); }

.section-alt { background: var(--color-surface); border-block: 1px solid var(--color-border); }

/* ---- Product cards ---- */
.product-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.product-card-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-base);
}
.product-card:hover .product-card-image img { transform: scale(1.04); }
.product-card-top {
  padding: 24px 28px 0;
}
.product-card-top .icon-lg { color: var(--color-accent-dark); margin-bottom: 12px; }
.product-card-price {
  margin-top: 14px;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.product-card-price .price { font-family: var(--font-heading); font-size: 2rem; font-weight: 700; color: var(--color-primary-dark); }
.product-card-price .unit { color: var(--color-muted-foreground); font-size: 0.95rem; }
.product-card-body { padding: 18px 28px 28px; margin-top: auto; }
.product-card ul { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.product-card li { display: flex; align-items: center; gap: 8px; font-size: 0.94rem; color: var(--color-muted-foreground); }
.product-card li .icon { color: var(--color-success); }

/* ---- Price tables ---- */
.price-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  box-shadow: var(--shadow-sm);
}
table.price-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
}
.price-table caption {
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.15rem;
  padding: 20px 24px 4px;
  color: var(--color-primary-dark);
}
.price-table th, .price-table td {
  text-align: left;
  padding: 14px 24px;
  border-top: 1px solid var(--color-border);
  font-variant-numeric: tabular-nums;
}
.price-table thead th {
  background: var(--color-muted);
  color: var(--color-muted-foreground);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-top: none;
}
.price-table td.price-cell { font-weight: 700; color: var(--color-accent-darker); white-space: nowrap; }
.price-table tbody tr:hover { background: rgba(217,118,6,0.05); }

.price-note {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--color-muted);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  font-size: 0.92rem;
  color: var(--color-muted-foreground);
  margin-top: 16px;
}
.price-note .icon { color: var(--color-accent-dark); }

/* ---- CTA band ---- */
.cta-band {
  background: linear-gradient(135deg, var(--color-primary-dark), #2B1B10);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(32px, 5vw, 56px);
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  background-size: cover;
  background-position: center;
}
/* ---- Service photo cards (Lohnspalten / Lohnsägen) ---- */
.service-photo-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  box-shadow: var(--shadow-sm);
}
.service-photo-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}
.service-photo-card .service-photo-caption {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--color-primary-dark);
}
.service-photo-card .service-photo-caption .icon { color: var(--color-accent-dark); }
.cta-band h2 { color: #fff; margin-bottom: 8px; }
.cta-band p { color: rgba(255,255,255,0.78); }
.cta-band-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---- Steps / process ---- */
.steps { counter-reset: step; }
.step {
  display: flex;
  gap: 18px;
  padding-block: 20px;
  border-top: 1px solid var(--color-border);
}
.step:first-child { border-top: none; }
.step-number {
  counter-increment: step;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-accent-dark);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-heading);
}
.step-number::before { content: counter(step); }

/* ---- Values grid (Über uns) ---- */
.value-card { text-align: left; }

.timber-divider {
  height: 10px;
  background: repeating-linear-gradient(90deg, var(--color-accent-dark) 0 26px, var(--color-accent) 26px 52px);
  opacity: 0.35;
  border-radius: 999px;
}

/* ---- Contact page ---- */
.contact-grid {
  display: grid;
  gap: 32px;
}
@media (min-width: 960px) {
  .contact-grid { grid-template-columns: 0.85fr 1.15fr; align-items: start; }
}
.contact-info-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.contact-info-list { display: flex; flex-direction: column; gap: 18px; margin-block: 22px; }
.contact-info-list li { display: flex; gap: 14px; align-items: flex-start; }
.contact-info-list .icon { color: var(--color-accent-dark); margin-top: 2px; }
.contact-info-list a:hover { color: var(--color-accent-dark); }
.map-embed {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
  aspect-ratio: 4 / 3;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; }

.form-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 36px);
  box-shadow: var(--shadow-sm);
}
.form-row { display: grid; gap: 18px; margin-bottom: 18px; }
@media (min-width: 640px) {
  .form-row.two-col { grid-template-columns: 1fr 1fr; }
}
.field label {
  display: block;
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 6px;
  color: var(--color-primary-dark);
}
.field .required { color: var(--color-accent-dark); }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-background);
  min-height: 48px;
  transition: border-color var(--transition-fast), background var(--transition-fast);
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: #D8C2A6; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--color-accent-dark);
  background: var(--color-surface);
  box-shadow: 0 0 0 3px rgba(180, 83, 9, 0.18);
}
.field-hint { font-size: 0.82rem; color: var(--color-muted-foreground); margin-top: 6px; }
.field-error { font-size: 0.85rem; color: var(--color-destructive); margin-top: 6px; display: flex; gap: 6px; align-items: center; }
.field.has-error input,
.field.has-error select,
.field.has-error textarea { border-color: var(--color-destructive); }

.checkbox-row { display: flex; align-items: flex-start; gap: 10px; }
.checkbox-row input { width: 20px; height: 20px; min-height: 20px; flex-shrink: 0; margin-top: 2px; accent-color: var(--color-accent-dark); }
.checkbox-row label { font-weight: 400; font-size: 0.92rem; color: var(--color-muted-foreground); }

.honeypot-field { position: absolute; left: -9999px; opacity: 0; height: 0; }

.form-alert {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  margin-bottom: 22px;
  border: 1px solid transparent;
}
.form-alert.success {
  background: var(--color-success-bg);
  border-color: var(--color-success-border);
  color: #14532D;
}
.form-alert.success .icon { color: var(--color-success); }
.form-alert.error {
  background: var(--color-destructive-bg);
  border-color: #F5C2C2;
  color: #7A1D1D;
}
.form-alert.error .icon { color: var(--color-destructive); }

.form-success {
  margin: clamp(-36px, -4vw, -24px);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.form-success-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}
.form-success-body {
  padding: clamp(24px, 4vw, 36px);
  text-align: center;
}
.form-success-icon {
  width: 52px;
  height: 52px;
  margin: -50px auto 16px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-success);
  color: #fff;
  border-radius: 50%;
  border: 4px solid var(--color-surface);
  box-shadow: var(--shadow-md);
}
.form-success-icon .icon { width: 24px; height: 24px; }
.form-success-body h2 { margin-bottom: 8px; }
.form-success-body p { color: var(--color-muted-foreground); margin-bottom: 22px; }

/* ---- Prose pages (Impressum / Datenschutz) ---- */
.prose { max-width: 74ch; }
.prose h2 { margin-top: 40px; margin-bottom: 12px; }
.prose h2:first-child { margin-top: 0; }
.prose p, .prose li { color: var(--color-muted-foreground); margin-bottom: 12px; }
.prose ul { list-style: disc; padding-left: 22px; }
.prose a { color: var(--color-accent-dark); text-decoration: underline; text-underline-offset: 2px; }
.page-hero {
  background: var(--color-muted);
  border-bottom: 1px solid var(--color-border);
  padding-block: clamp(40px, 6vw, 64px);
}
.page-hero p { color: var(--color-muted-foreground); max-width: 60ch; }

/* ---- Google-Bewertungs-Badge (Sterne + Score + Link) ---- */
.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  box-shadow: var(--shadow-sm);
}
.rating-badge-stars {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  color: var(--color-accent-dark);
}
.rating-badge-stars .icon { width: 18px; height: 18px; }
.rating-badge-score {
  font-weight: 700;
  color: var(--color-primary-dark);
}
.rating-badge-count {
  color: var(--color-muted-foreground);
  font-size: 0.9rem;
}
.rating-badge-link {
  font-weight: 600;
  color: var(--color-accent-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.rating-badge-link:hover { color: var(--color-accent-darker); }

/* ---- Footer ---- */
.site-footer {
  background: var(--color-primary-dark);
  color: rgba(255,255,255,0.82);
  margin-top: 40px;
}
.footer-inner {
  display: grid;
  gap: 32px;
  padding-block: 56px;
}
@media (min-width: 768px) {
  .footer-inner { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}
.site-footer .brand-name, .site-footer .brand-place { color: #fff; }
.site-footer .icon-brand { color: var(--color-accent); }
.footer-brand p { color: rgba(255,255,255,0.7); margin-top: 14px; max-width: 40ch; }
.footer-col h3 { color: #fff; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 16px; font-family: var(--font-body); }
.footer-links { display: flex; flex-direction: column; gap: 10px; font-size: 0.94rem; }
.footer-links li { display: flex; align-items: flex-start; gap: 8px; }
.footer-links .icon { color: var(--color-accent); margin-top: 3px; }
.footer-links a:hover { color: #fff; text-decoration: underline; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-block: 20px;
  font-size: 0.85rem;
}
.footer-bottom p {
  color: #fff;
}

/* ---- Utilities ---- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.stack { display: flex; flex-direction: column; gap: 16px; }
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}
