/* Stucplaza v5: brand bright blue + silver + soft white, craftsmanship hero */
:root {
  --brand: #1080C0;
  --brand-mid: #2080C0;
  --brand-dark: #0C6BA3;
  --brand-soft: #E8F4FB;
  --brand-glow: rgba(16, 128, 192, 0.18);
  --silver: #9CA3AF;
  --silver-mid: #A0A0A0;
  --silver-dark: #6B7280;
  --ink: #1F2937;
  --ink-soft: #4B5563;
  --paper: #FFFFFF;
  --mist: #F7F8FA;
  --mist-2: #EEF1F5;
  --line: rgba(156, 163, 175, 0.35);
  --line-strong: rgba(156, 163, 175, 0.55);
  --footer: #2A3038;
  --footer-deep: #1F242B;
  --wa: #128C7E;
  --wa-soft: #E8F6F3;
  --radius: 1.1rem;
  --radius-sm: 0.85rem;
  --max: 72rem;
  --shadow-sm: 0 4px 16px rgba(31, 41, 55, 0.05);
  --shadow-card: 0 16px 40px rgba(31, 41, 55, 0.09);
  --shadow-cta: 0 10px 28px rgba(16, 128, 192, 0.28);
  --header-h: 4.25rem;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--mist);
  line-height: 1.65;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand-dark); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--brand); }
h1, h2, h3, .font-display {
  font-family: Oswald, Inter, system-ui, sans-serif;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin: 0;
  color: var(--ink);
}
p { margin: 0 0 1rem; color: var(--ink-soft); }
ul { margin: 0; padding-left: 1.15rem; color: var(--ink-soft); }
li { margin-bottom: 0.4rem; }

.wrap { width: min(100% - 2rem, var(--max)); margin-inline: auto; }
.skip { position: absolute; left: -9999px; top: auto; }
.skip:focus {
  left: 1rem; top: 1rem; z-index: 100;
  background: var(--brand); color: #fff; padding: 0.5rem 1rem;
  border-radius: 999px; text-decoration: none;
}

/* === Top bar === */
.topbar {
  background: var(--mist-2);
  color: var(--silver-dark);
  font-size: 0.75rem;
  letter-spacing: 0.01em;
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--line);
}
.topbar .wrap {
  display: flex; flex-wrap: wrap; gap: 0.5rem 1.25rem;
  justify-content: space-between; align-items: center;
}
.topbar a { color: var(--ink); text-decoration: none; font-weight: 500; }
.topbar a:hover { color: var(--brand); }

/* === Sticky light header === */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 4px 20px rgba(31, 41, 55, 0.04);
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 0.7rem 0; position: relative;
  min-height: var(--header-h);
}
.logo {
  display: flex; align-items: center; gap: 0.65rem;
  text-decoration: none; color: var(--ink); font-weight: 600;
  flex-shrink: 0;
}
.logo img { height: 40px; width: auto; }
.logo span {
  font-family: Oswald, sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.nav {
  display: none; gap: 0.2rem 0.85rem; align-items: center;
  font-size: 0.875rem; flex-wrap: wrap; justify-content: flex-end;
}
.nav a {
  color: var(--ink-soft); text-decoration: none;
  font-weight: 500; letter-spacing: 0.01em;
  padding: 0.4rem 0.35rem;
}
.nav a:hover,
.nav a[aria-current="page"] { color: var(--brand); }
.nav-cta {
  display: inline-flex !important; align-items: center;
  background: var(--brand) !important; color: #fff !important;
  padding: 0.55rem 1.15rem !important; border-radius: 999px;
  font-family: Oswald, Inter, sans-serif;
  font-weight: 600; font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-decoration: none !important;
  box-shadow: var(--shadow-cta);
  margin-left: 0.35rem;
}
.nav-cta:hover { background: var(--brand-dark) !important; color: #fff !important; }

.nav-toggle {
  display: grid; place-items: center;
  width: 2.5rem; height: 2.5rem;
  border-radius: 999px; border: 1px solid var(--line-strong);
  background: var(--paper); color: var(--ink); cursor: pointer;
}
.nav-toggle svg { width: 1.15rem; height: 1.15rem; }
@media (min-width: 960px) {
  .nav { display: flex; }
  .nav-toggle { display: none; }
}
.nav.is-open {
  display: flex; flex-direction: column; align-items: stretch;
  position: absolute; left: 0; right: 0; top: 100%;
  background: #fff;
  padding: 0.75rem 1rem 1.25rem;
  border-bottom: 1px solid var(--line);
  gap: 0.15rem;
  box-shadow: var(--shadow-card);
}
.nav.is-open a {
  padding: 0.75rem 0.85rem;
  border-radius: 0.75rem;
  color: var(--ink);
}
.nav.is-open a:hover { background: var(--mist); }
.nav.is-open .nav-cta { margin: 0.5rem 0 0; justify-content: center; }

/* === Home hero (full-bleed) === */
.home-hero {
  position: relative;
  isolation: isolate;
  min-height: min(78vh, 42rem);
  display: flex;
  align-items: flex-end;
  padding: 5.5rem 0 3.75rem;
  overflow: hidden;
  color: #fff;
  background: #1a2330;
}
.home-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.home-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.02);
}
.home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(105deg, rgba(20,28,38,0.88) 0%, rgba(20,28,38,0.72) 42%, rgba(16,128,192,0.35) 100%),
    linear-gradient(180deg, rgba(20,28,38,0.45) 0%, rgba(20,28,38,0.15) 40%, rgba(20,28,38,0.82) 100%);
}
.home-hero .wrap {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  display: block;
}
.home-hero .eyebrow {
  color: #9ED0EE;
}
.home-hero .eyebrow::before {
  background: #9ED0EE;
}
.home-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.55rem);
  font-weight: 700;
  max-width: 16ch;
  letter-spacing: -0.02em;
  color: #fff;
  text-shadow: 0 2px 24px rgba(0,0,0,0.25);
}
.home-hero .lead {
  max-width: 36rem;
  margin-top: 1.1rem;
  font-size: 1.08rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.88);
}
.home-hero .btn-ghost {
  color: #fff !important;
  border-color: rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.06);
}
.home-hero .btn-ghost:hover {
  background: rgba(255,255,255,0.14);
  border-color: #fff;
  color: #fff !important;
}
.home-hero .btn-wa {
  background: rgba(232,246,243,0.95);
  color: var(--wa) !important;
  border-color: transparent;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.75rem;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 999px;
  padding: 0.55rem 1.05rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.02em;
}
/* legacy media block (unused on home v5, keep for safety) */
.hero-media {
  position: relative;
  border-radius: calc(var(--radius) + 0.25rem);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(255,255,255,0.8);
  background: var(--mist-2);
}
.hero-media img {
  width: 100%;
  aspect-ratio: 5/4;
  object-fit: cover;
}


.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  padding: 4.25rem 0 3.75rem;
  min-height: 22rem;
  display: flex;
  align-items: flex-end;
  background: #1a2330;
}
.hero::before {
  content: "";
  position: absolute; inset: 0; z-index: -2;
  background-image: var(--hero-image, none);
  background-size: cover;
  background-position: center;
  opacity: 1;
  filter: saturate(0.95) contrast(1.02);
}
.hero::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(105deg, rgba(20,28,38,0.9) 0%, rgba(20,28,38,0.75) 48%, rgba(16,128,192,0.38) 100%),
    linear-gradient(180deg, rgba(20,28,38,0.35) 0%, rgba(20,28,38,0.2) 45%, rgba(20,28,38,0.78) 100%);
}
.hero .wrap { position: relative; z-index: 1; width: min(100% - 2rem, var(--max)); }
.hero .breadcrumbs,
.hero .breadcrumbs a {
  color: rgba(255,255,255,0.72) !important;
  text-decoration: none;
  margin-bottom: 1rem;
}
.hero .breadcrumbs a:hover { color: #9ED0EE !important; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--brand);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: "";
  width: 0.45rem; height: 0.45rem;
  background: currentColor;
  border-radius: 1px;
  flex-shrink: 0;
}
.hero .eyebrow { color: #9ED0EE; }
.hero h1 {
  font-size: clamp(1.95rem, 4.4vw, 3.1rem);
  font-weight: 700;
  max-width: 18ch;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0,0,0,0.25);
}
.hero .lead {
  color: rgba(255,255,255,0.88);
  max-width: 38rem;
  margin-top: 1.1rem;
  font-size: 1.05rem;
  line-height: 1.7;
}
.hero .btn-ghost {
  color: #fff !important;
  border-color: rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.06);
}
.hero .btn-ghost:hover {
  background: rgba(255,255,255,0.14);
  border-color: #fff;
  color: #fff !important;
}
.hero .btn-wa {
  background: rgba(232,246,243,0.95);
  color: var(--wa) !important;
  border-color: transparent;
}

.cta-row { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.75rem; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.4rem;
  padding: 0.8rem 1.4rem;
  border-radius: 999px;
  font-family: Oswald, Inter, sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  text-decoration: none !important;
  border: 1px solid transparent;
  transition: 0.15s ease;
  cursor: pointer;
}
.btn-primary {
  background: var(--brand); color: #fff !important;
  box-shadow: var(--shadow-cta);
}
.btn-primary:hover { background: var(--brand-dark); }
.btn-ghost {
  background: transparent; color: var(--ink) !important;
  border-color: var(--line-strong);
}
.btn-ghost:hover {
  border-color: var(--brand);
  color: var(--brand) !important;
  background: var(--brand-soft);
}
.btn-wa {
  background: var(--wa-soft);
  color: var(--wa) !important;
  border-color: color-mix(in srgb, var(--wa) 28%, transparent);
}
.btn-wa:hover {
  background: color-mix(in srgb, var(--wa) 12%, white);
  border-color: var(--wa);
}
.btn-outline {
  background: #fff; color: var(--ink) !important;
  border-color: var(--line);
}
.btn-outline:hover { border-color: var(--brand); color: var(--brand) !important; }

/* === Sections === */
.section { padding: 3.75rem 0; }
.section.alt { background: #fff; }
.section.mist { background: var(--mist); }
.section-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--brand);
  margin-bottom: 0.65rem;
}
.section h2 {
  font-size: clamp(1.55rem, 2.8vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 0.9rem;
}
.section h3 {
  font-size: 1.12rem;
  margin: 1.35rem 0 0.5rem;
  font-weight: 600;
}
.lead-muted {
  max-width: 40rem;
  color: var(--ink-soft);
  margin-bottom: 1.75rem;
}
.grid-2 { display: grid; gap: 1.75rem; }
@media (min-width: 768px) {
  .grid-2 { grid-template-columns: 1.15fr 0.85fr; gap: 2.25rem; align-items: start; }
}
.grid-3 { display: grid; gap: 1.15rem; }
@media (min-width: 700px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}
.grid-4 { display: grid; gap: 1rem; }
@media (min-width: 800px) {
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.45rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.card:hover {
  border-color: color-mix(in srgb, var(--brand) 35%, var(--line));
  box-shadow: var(--shadow-card);
}
.card h3 { margin-top: 0; }
.card p:last-child { margin-bottom: 0; }
.card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
}
.card-link .card-more {
  display: inline-flex; align-items: center; gap: 0.35rem;
  margin-top: 0.85rem;
  font-family: Oswald, Inter, sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--brand);
  text-decoration: none;
}
.card-icon {
  width: 2.5rem; height: 2.5rem;
  border-radius: 0.75rem;
  background: var(--brand-soft);
  color: var(--brand);
  display: grid; place-items: center;
  margin-bottom: 1rem;
  font-family: Oswald, sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
}
.card-media {
  margin: -1.45rem -1.5rem 1.1rem;
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
}
.card-media img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.note {
  background: var(--brand-soft);
  border: 1px solid color-mix(in srgb, var(--brand) 22%, transparent);
  border-left: 3px solid var(--brand);
  padding: 1.1rem 1.25rem;
  border-radius: var(--radius-sm);
  margin: 1.35rem 0;
}
.note strong {
  display: block;
  font-family: Oswald, sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--brand-dark);
  margin-bottom: 0.35rem;
}

.chips { display: flex; flex-wrap: wrap; gap: 0.55rem; margin: 1rem 0 0; padding: 0; list-style: none; }
.chips a, .chips span {
  display: inline-block;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  transition: 0.15s ease;
}
.chips a:hover {
  border-color: var(--brand);
  color: var(--brand);
  box-shadow: 0 6px 16px var(--brand-glow);
}

/* Process steps */
.steps { display: grid; gap: 1rem; counter-reset: step; }
@media (min-width: 800px) {
  .steps { grid-template-columns: repeat(4, 1fr); }
}
.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem;
  position: relative;
}
.step-num {
  font-family: Oswald, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--brand);
  margin-bottom: 0.55rem;
}
.step h3 { margin: 0 0 0.45rem; font-size: 1.05rem; }
.step p { margin: 0; font-size: 0.95rem; }

/* Portfolio */
.portfolio-grid {
  display: grid; gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .portfolio-grid { grid-template-columns: repeat(3, 1fr); }
}
.portfolio-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.portfolio-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.portfolio-item:hover img { transform: scale(1.03); }
.portfolio-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 2.5rem 1rem 1rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.9);
  background: linear-gradient(180deg, transparent 0%, rgba(20,28,38,0.82) 100%);
}
.portfolio-caption strong {
  display: block;
  color: #fff;
  font-family: Oswald, sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 0.15rem;
}

/* Why us list */
.why-list {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 0.85rem;
}
.why-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1rem 1.1rem;
  margin: 0;
}
.why-list .tick {
  width: 1.5rem; height: 1.5rem;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand);
  display: grid; place-items: center;
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 0.1rem;
}
.why-list strong { display: block; color: var(--ink); margin-bottom: 0.15rem; }
.why-list span { color: var(--ink-soft); font-size: 0.95rem; }

/* FAQ */
.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0;
  margin-bottom: 0.7rem;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(31,41,55,0.03);
  transition: border-color 0.15s ease;
}
.faq details:hover { border-color: color-mix(in srgb, var(--brand) 40%, var(--line)); }
.faq details[open] { border-color: color-mix(in srgb, var(--brand) 45%, transparent); }
.faq summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--ink);
  list-style: none;
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.98rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  width: 0.55rem; height: 0.55rem;
  border-right: 2px solid var(--brand);
  border-bottom: 2px solid var(--brand);
  transform: rotate(45deg);
  flex-shrink: 0;
  transition: transform 0.2s ease;
  margin-top: -0.2rem;
}
.faq details[open] summary::after { transform: rotate(225deg); margin-top: 0.2rem; }
.faq details[open] summary {
  border-bottom: 1px solid var(--line);
  background: var(--mist);
}
.faq details p {
  margin: 0;
  padding: 0.95rem 1.2rem 1.15rem;
  font-size: 0.95rem;
}

/* Form */
.offerte-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.offerte-form .form-grid {
  display: grid; gap: 0.9rem;
}
@media (min-width: 640px) {
  .offerte-form .form-grid.two { grid-template-columns: 1fr 1fr; }
}
.offerte-form label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.35rem;
}
.offerte-form input,
.offerte-form select,
.offerte-form textarea {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--line-strong);
  border-radius: 0.65rem;
  font: inherit;
  color: var(--ink);
  background: var(--mist);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.offerte-form input:focus,
.offerte-form select:focus,
.offerte-form textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-glow);
  background: #fff;
}
.offerte-form textarea { min-height: 7rem; resize: vertical; }
.offerte-form .form-actions {
  display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center;
  margin-top: 1.1rem;
}
.offerte-form .form-note {
  font-size: 0.82rem;
  color: var(--silver-dark);
  margin: 0.85rem 0 0;
}
.offerte-form .form-status {
  margin-top: 0.85rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  display: none;
}
.offerte-form .form-status.is-ok {
  display: block;
  background: var(--brand-soft);
  color: var(--brand-dark);
  border: 1px solid color-mix(in srgb, var(--brand) 25%, transparent);
}
.offerte-form .form-status.is-err {
  display: block;
  background: #FEF2F2;
  color: #991B1B;
  border: 1px solid #FECACA;
}

/* CTA band */
.cta-band {
  position: relative;
  isolation: isolate;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: #fff;
  padding: 3.25rem 0;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 50% 80% at 100% 0%, rgba(255,255,255,0.18), transparent 55%),
    linear-gradient(135deg, transparent 40%, rgba(0,0,0,0.08) 100%);
}
.cta-band .wrap { position: relative; z-index: 1; }
.cta-band .section-label { color: rgba(255,255,255,0.85); }
.cta-band h2 { color: #fff; margin-bottom: 0.65rem; }
.cta-band p { color: rgba(255,255,255,0.9); max-width: 36rem; }
.cta-band .btn-ghost {
  color: #fff !important;
  border-color: rgba(255,255,255,0.45);
}
.cta-band .btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
  color: #fff !important;
}
.cta-band .btn-wa {
  background: rgba(255,255,255,0.14);
  color: #fff !important;
  border-color: rgba(255,255,255,0.35);
}
.cta-band .btn-wa:hover {
  background: rgba(255,255,255,0.22);
  border-color: #fff;
}
.cta-band .btn-primary {
  background: #fff;
  color: var(--brand-dark) !important;
  box-shadow: 0 10px 28px rgba(0,0,0,0.12);
}
.cta-band .btn-primary:hover { background: var(--mist); }

/* Footer */
.site-footer {
  background: var(--footer-deep);
  color: rgba(255,255,255,0.68);
  padding: 3rem 0 1.5rem;
  font-size: 0.9rem;
}
.site-footer a { color: rgba(255,255,255,0.92); text-decoration: none; }
.site-footer a:hover { color: #7EC4EE; }
.footer-grid { display: grid; gap: 2rem; }
@media (min-width: 700px) {
  .footer-grid { grid-template-columns: 1.45fr 1fr 1fr; }
}
.site-footer h3 {
  color: #fff;
  font-size: 0.7rem;
  margin-bottom: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 600;
  font-family: Inter, system-ui, sans-serif;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; color: inherit; }
.site-footer li { margin-bottom: 0.45rem; }
.footer-bottom {
  margin-top: 2.25rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex; flex-wrap: wrap; gap: 0.75rem;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

.breadcrumbs {
  font-size: 0.85rem;
  color: var(--silver-dark);
  margin-bottom: 1rem;
}
.breadcrumbs a { color: var(--silver-dark); text-decoration: none; }
.breadcrumbs a:hover { color: var(--brand); }

.figure {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  background: #fff;
}
.figure img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.meta-list { list-style: none; padding: 0; margin: 0; }
.meta-list li {
  display: flex; gap: 0.65rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin: 0;
}
.meta-list li:last-child { border-bottom: 0; }
.meta-list strong {
  color: var(--ink);
  min-width: 6.5rem;
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-family: Inter, system-ui, sans-serif;
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}
