/* ==========================================================================
   Aqua Clean 11 — main stylesheet
   Brand: primary #0A3D91 | secondary #00AEEF | accent #4FC3F7
   Edit the variables below to restyle the whole website.
   ========================================================================== */

:root {
  --primary: #0a3d91;
  --primary-dark: #082e6e;
  --secondary: #00aeef;
  --accent: #4fc3f7;
  --bg: #f8fbfd;
  --surface: #ffffff;
  --text: #1e293b;
  --muted: #5b6b82;
  --border: #e3ecf5;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 2px rgba(10, 61, 145, 0.06), 0 4px 14px rgba(10, 61, 145, 0.06);
  --shadow-md: 0 10px 30px rgba(10, 61, 145, 0.1);
  --shadow-lg: 0 24px 60px rgba(10, 61, 145, 0.16);
  --container: 1200px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --header-h: 78px;
}

/* Reset ------------------------------------------------------------------ */
*,
*::before,
*::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Poppins", "Segoe UI", system-ui, -apple-system, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--secondary); }
ul { margin: 0; padding: 0; }
button { font: inherit; }
:focus-visible {
  outline: 3px solid var(--secondary);
  outline-offset: 2px;
  border-radius: 4px;
}

h1, h2, h3, h4 {
  margin: 0 0 0.6em;
  line-height: 1.2;
  font-weight: 600;
  color: #0d1b33;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2rem, 4.4vw, 3.35rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 1.6vw, 1.3rem); }
p { margin: 0 0 1rem; }
.lead { font-size: clamp(1.02rem, 1.5vw, 1.18rem); color: var(--muted); font-weight: 300; }

/* Layout ----------------------------------------------------------------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.section { padding: clamp(56px, 8vw, 104px) 0; }
.section--tight { padding: clamp(40px, 5vw, 64px) 0; }
.section--alt { background: linear-gradient(180deg, #ffffff 0%, #f1f7fc 100%); }
.section--brand { background: var(--primary); color: #eaf4ff; }
.section--brand h2, .section--brand h3 { color: #fff; }
.section-head { max-width: 720px; margin: 0 auto clamp(32px, 4vw, 56px); text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 0.7rem;
}
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

/* Buttons ---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(120deg, var(--primary), #1257c9);
  color: #fff;
  box-shadow: 0 10px 24px rgba(10, 61, 145, 0.28);
}
.btn-primary:hover { color: #fff; box-shadow: 0 16px 32px rgba(10, 61, 145, 0.34); }
.btn-accent {
  background: linear-gradient(120deg, var(--secondary), var(--accent));
  color: #04263f;
  box-shadow: 0 10px 24px rgba(0, 174, 239, 0.32);
}
.btn-accent:hover { color: #04263f; }
.btn-ghost { background: rgba(255, 255, 255, 0.12); color: #fff; border-color: rgba(255, 255, 255, 0.55); }
.btn-ghost:hover { background: #fff; color: var(--primary); }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--border); background: #fff; }
.btn-outline:hover { border-color: var(--secondary); color: var(--secondary); }
.btn-sm { padding: 10px 18px; font-size: 0.86rem; }
.btn-block { width: 100%; }

/* Header ----------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.site-header.is-scrolled {
  background: #fff;
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: var(--header-h);
}
.brand { display: flex; align-items: center; gap: 12px; margin-right: auto; }
.brand img {
  width: 46px;
  height: 46px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}
.brand-name { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name strong { font-size: 1.06rem; font-weight: 700; color: var(--primary); letter-spacing: -0.01em; }
.brand-name span { font-size: 0.68rem; letter-spacing: 0.11em; text-transform: uppercase; color: var(--muted); }

.nav { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav a {
  display: block;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--text);
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.nav a:hover { background: #eaf4fd; color: var(--primary); }
.nav a[aria-current="page"] { color: var(--primary); font-weight: 600; background: #eaf4fd; }

.lang-switch {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  overflow: hidden;
  background: #fff;
}
.lang-switch a {
  padding: 7px 13px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.05em;
}
.lang-switch a[aria-current="true"] { background: var(--primary); color: #fff; }

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
  cursor: pointer;
  position: relative;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 20px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: transform 0.25s var(--ease), opacity 0.2s var(--ease);
}
.nav-toggle span { top: 50%; margin-top: -1px; }
.nav-toggle span::before { top: -6px; left: 0; transform: none; }
.nav-toggle span::after { top: 6px; left: 0; transform: none; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: rotate(45deg) translate(4px, 4px); }
.nav-toggle[aria-expanded="true"] span::after { transform: rotate(-45deg) translate(4px, -4px); }

@media (max-width: 1024px) {
  .nav-toggle { display: block; order: 3; }
  .header-cta { display: none; }
  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 18px 20px 26px;
    background: #fff;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
    transform: translateY(-14px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s;
  }
  .nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .nav a { padding: 13px 12px; font-size: 1rem; }
  .nav .nav-cta { margin-top: 12px; }
  .nav .nav-cta a { background: var(--primary); color: #fff; text-align: center; }
}

/* Hero ------------------------------------------------------------------- */
.hero { position: relative; color: #fff; isolation: isolate; }
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(100deg, rgba(8, 40, 100, 0.94) 0%, rgba(10, 61, 145, 0.82) 45%, rgba(0, 122, 175, 0.55) 100%);
}
.hero-inner { padding: clamp(70px, 11vw, 140px) 0 clamp(64px, 9vw, 120px); max-width: 760px; }
.hero h1 { color: #fff; }
.hero p { color: #dbeafe; font-size: clamp(1rem, 1.6vw, 1.2rem); font-weight: 300; max-width: 640px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 34px; list-style: none; }
.hero-badges li { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; color: #d6ecff; }
.hero-badges svg { width: 18px; height: 18px; flex: none; color: var(--accent); }

.page-hero { background: linear-gradient(120deg, #0a3d91 0%, #0f5bbd 60%, #0089c2 100%); color: #fff; }
.page-hero .container { padding-top: clamp(48px, 7vw, 84px); padding-bottom: clamp(44px, 6vw, 72px); }
.page-hero h1 { color: #fff; max-width: 18ch; }
.page-hero p { color: #d8ebff; max-width: 62ch; }

/* Breadcrumbs ------------------------------------------------------------ */
.breadcrumb { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; font-size: 0.83rem; margin-bottom: 18px; }
.breadcrumb li { display: flex; gap: 8px; align-items: center; color: rgba(255, 255, 255, 0.75); }
.breadcrumb li + li::before { content: "/"; opacity: 0.5; }
.breadcrumb a { color: rgba(255, 255, 255, 0.9); }
.breadcrumb a:hover { color: #fff; text-decoration: underline; }

/* Cards ------------------------------------------------------------------ */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #cfe4f7; }
.card h3 { margin-bottom: 0.4rem; }
.card p { color: var(--muted); font-size: 0.95rem; margin-bottom: 0; }
.card-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  margin-bottom: 18px;
  background: linear-gradient(135deg, #e8f4ff, #d5ecfb);
  color: var(--primary);
}
.card-icon svg { width: 26px; height: 26px; }

.service-card { display: flex; flex-direction: column; overflow: hidden; padding: 0; }
.service-card .thumb { aspect-ratio: 16 / 10; overflow: hidden; background: #e8f1f9; }
.service-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.service-card:hover .thumb img { transform: scale(1.05); }
.service-card .body { padding: 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.service-card .body p { flex: 1; }
.card-link { font-weight: 600; font-size: 0.9rem; color: var(--primary); display: inline-flex; gap: 6px; align-items: center; }
.card-link::after { content: "→"; transition: transform 0.25s var(--ease); }
.service-card:hover .card-link::after { transform: translateX(4px); }

/* Feature list ----------------------------------------------------------- */
.check-list { list-style: none; display: grid; gap: 12px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.97rem; }
.check-list li::before {
  content: "";
  flex: none;
  width: 22px;
  height: 22px;
  margin-top: 3px;
  border-radius: 50%;
  background: #e2f2ff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230a3d91' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 13px no-repeat;
}
.section--brand .check-list li::before { background-color: rgba(255, 255, 255, 0.16); }

/* Split media ------------------------------------------------------------ */
.split { display: grid; gap: clamp(28px, 5vw, 60px); align-items: center; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.split-media img { border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 100%; }

/* Steps ------------------------------------------------------------------ */
.steps { list-style: none; display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); counter-reset: step; }
.steps li {
  counter-increment: step;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 24px;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.steps li::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--secondary);
  margin-bottom: 10px;
}
.steps h3 { font-size: 1.05rem; margin-bottom: 0.3rem; }
.steps p { font-size: 0.92rem; color: var(--muted); margin: 0; }

/* Pills / industries ----------------------------------------------------- */
.pill-grid { list-style: none; display: flex; flex-wrap: wrap; gap: 12px; }
.pill-grid li {
  padding: 11px 20px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--border);
  font-size: 0.92rem;
  font-weight: 500;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease);
}
.pill-grid li:hover { transform: translateY(-2px); border-color: var(--accent); }
.section--brand .pill-grid li { background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.22); color: #eaf4ff; }

/* Gallery ---------------------------------------------------------------- */
.gallery-filters { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 30px; }
.filter-btn {
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s var(--ease);
}
.filter-btn:hover { border-color: var(--accent); color: var(--primary); }
.filter-btn.is-active { background: var(--primary); border-color: var(--primary); color: #fff; }
.gallery-grid { display: grid; gap: 18px; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.gallery-item {
  position: relative;
  border: 0;
  padding: 0;
  background: #e8f1f9;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: zoom-in;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-sm);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 26px 18px 14px;
  background: linear-gradient(180deg, rgba(10, 30, 60, 0), rgba(8, 34, 72, 0.85));
  color: #fff;
  font-size: 0.88rem;
  text-align: left;
}
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(6, 22, 46, 0.9);
  backdrop-filter: blur(4px);
}
.lightbox.is-open { display: grid; }
.lightbox img { max-width: min(1100px, 92vw); max-height: 82vh; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.lightbox-caption { color: #dceeff; text-align: center; margin-top: 14px; font-size: 0.92rem; }
.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
}

/* FAQ -------------------------------------------------------------------- */
.faq { max-width: 840px; margin: 0 auto; display: grid; gap: 14px; }
.faq details {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 4px 22px;
  box-shadow: var(--shadow-sm);
}
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 30px 16px 0;
  font-weight: 600;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--secondary);
}
.faq details[open] summary::after { content: "–"; }
.faq details p { color: var(--muted); font-size: 0.95rem; padding-bottom: 8px; margin: 0; }

/* Forms ------------------------------------------------------------------ */
.form-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: clamp(24px, 4vw, 40px); box-shadow: var(--shadow-md); }
.form-grid { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 0.86rem; font-weight: 600; }
.field .req { color: #c0392b; }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fbfdff;
  font: inherit;
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 4px rgba(0, 174, 239, 0.14);
}
.field .error { font-size: 0.8rem; color: #c0392b; min-height: 1em; }
.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] { border-color: #c0392b; background: #fff7f6; }
.form-note { font-size: 0.82rem; color: var(--muted); }
.form-status { margin-top: 16px; padding: 14px 16px; border-radius: var(--radius-sm); font-size: 0.92rem; display: none; }
.form-status.is-visible { display: block; }
.form-status.ok { background: #e7f7ef; color: #12664a; border: 1px solid #b9e6d1; }
.form-status.warn { background: #fff6e5; color: #8a5b00; border: 1px solid #ffe0a3; }

/* Contact info ----------------------------------------------------------- */
.info-list { list-style: none; display: grid; gap: 18px; }
.info-list li { display: flex; gap: 14px; align-items: flex-start; }
.info-icon {
  flex: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #e8f4ff, #d5ecfb);
  color: var(--primary);
}
.info-icon svg { width: 20px; height: 20px; }
.info-list strong { display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); font-weight: 600; }
.info-list span, .info-list a { font-size: 1rem; color: var(--text); }
.info-list a:hover { color: var(--secondary); }
.map-embed { border: 0; width: 100%; height: 380px; border-radius: var(--radius); box-shadow: var(--shadow-md); }

/* CTA band --------------------------------------------------------------- */
.cta-band {
  background: linear-gradient(115deg, var(--primary), #0f62cd 55%, var(--secondary));
  color: #fff;
  border-radius: clamp(18px, 3vw, 28px);
  padding: clamp(32px, 5vw, 56px);
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-lg);
}
.cta-band h2 { color: #fff; margin-bottom: 6px; }
.cta-band p { color: #dbeeff; margin: 0; max-width: 56ch; }
.cta-band .actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* Blog ------------------------------------------------------------------- */
.post-card { display: flex; flex-direction: column; gap: 10px; }
.post-meta { font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--secondary); font-weight: 600; }
.post-body { max-width: 760px; margin: 0 auto; }
.post-body h2 { margin-top: 2em; }
.post-body ul { padding-left: 1.2em; }
.post-body li { margin-bottom: 0.4em; }

/* Footer ----------------------------------------------------------------- */
.site-footer { background: #071f45; color: #b9cbe4; padding: clamp(48px, 7vw, 80px) 0 30px; font-size: 0.93rem; }
.site-footer h3 { color: #fff; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 18px; }
.footer-grid { display: grid; gap: 34px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.site-footer a { color: #cfe0f5; }
.site-footer a:hover { color: #fff; }
.site-footer ul { list-style: none; display: grid; gap: 9px; }
.footer-brand img { width: 58px; height: 58px; border-radius: 14px; object-fit: cover; margin-bottom: 14px; }
.footer-bottom {
  margin-top: 42px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  font-size: 0.85rem;
}
.footer-lang { display: inline-flex; gap: 6px; align-items: center; }
.footer-lang a[aria-current="true"] { color: #fff; font-weight: 600; }

/* WhatsApp float --------------------------------------------------------- */
.wa-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25d366;
  color: #fff;
  box-shadow: 0 12px 28px rgba(11, 61, 34, 0.32);
  transition: transform 0.25s var(--ease);
}
.wa-float:hover { transform: scale(1.07); color: #fff; }
.wa-float svg { width: 30px; height: 30px; }

/* Cookie banner ---------------------------------------------------------- */
.cookie-bar {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 120;
  max-width: 620px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 20px 22px;
  display: none;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-bar.is-visible { display: flex; }
.cookie-bar p { margin: 0; font-size: 0.87rem; color: var(--muted); flex: 1 1 260px; }
.cookie-bar .actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* Reveal animation ------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Utilities -------------------------------------------------------------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  background: #fff;
  color: var(--primary);
  padding: 10px 18px;
  border-radius: 8px;
  z-index: 200;
  font-weight: 600;
}
.skip-link:focus { left: 16px; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-3 { margin-top: 24px; }
.mb-0 { margin-bottom: 0; }
.stack { display: grid; gap: 18px; }
.error-page { min-height: 70vh; display: grid; place-items: center; text-align: center; }
.error-code { font-size: clamp(4rem, 14vw, 8rem); font-weight: 700; line-height: 1; color: var(--primary); }

/* Hide the in-menu quote link on desktop (the header button covers it). */
@media (min-width: 1025px) { .nav .nav-cta { display: none; } }

/* Align split columns to the top so text does not float to the bottom. */
.split { align-items: start; }
