/* ============================================================
   SDC Cleaning & Restoration Services — site styles
   Brand: orange #F26F21 · blue #1E6FD9 / #29ABE2 · navy #0F2340
   ============================================================ */

:root {
  --orange: #f26f21;
  --orange-dark: #d95d12;
  --blue: #1e6fd9;
  --blue-bright: #29abe2;
  --navy: #0f2340;
  --navy-2: #16335c;
  --ink: #1c2b3a;
  --muted: #5a6b7d;
  --bg: #ffffff;
  --bg-soft: #f4f8fc;
  --bg-tint: #eaf3fb;
  --line: #dde7f0;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(15, 35, 64, 0.1);
  --shadow-sm: 0 4px 14px rgba(15, 35, 64, 0.08);
  --grad: linear-gradient(135deg, var(--blue) 0%, var(--blue-bright) 100%);
  --font: "Plus Jakarta Sans", "Segoe UI", system-ui, -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--orange); }

h1, h2, h3, h4 { line-height: 1.18; margin: 0 0 0.6em; font-weight: 800; color: var(--navy); }
h1 { font-size: clamp(2rem, 4.5vw, 3.3rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); letter-spacing: -0.015em; }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; }

.container { width: min(1180px, 92%); margin-inline: auto; }

.section { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.section--soft { background: var(--bg-soft); }
.section--navy { background: var(--navy); color: #cfdcec; }
.section--navy h2, .section--navy h3 { color: #fff; }

.kicker {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.8rem; font-weight: 800; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--orange); margin-bottom: 0.9rem;
}
.kicker::before { content: ""; width: 26px; height: 3px; border-radius: 2px; background: var(--orange); }

.lead { font-size: 1.12rem; color: var(--muted); max-width: 46rem; }
.section--navy .lead { color: #b8c9dd; }
.center { text-align: center; }
.center .lead, .center.kicker { margin-inline: auto; }
.center .kicker::before { display: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  padding: 0.95rem 1.8rem; border-radius: 999px;
  font-weight: 700; font-size: 1rem; line-height: 1;
  border: 2px solid transparent; cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn--primary { background: var(--orange); color: #fff; box-shadow: 0 8px 20px rgba(242, 111, 33, 0.35); }
.btn--primary:hover { background: var(--orange-dark); color: #fff; transform: translateY(-2px); }
.btn--ghost { background: rgba(255,255,255,0.1); color: #fff; border-color: rgba(255,255,255,0.55); backdrop-filter: blur(4px); }
.btn--ghost:hover { background: #fff; color: var(--navy); }
.btn--navy { background: var(--navy); color: #fff; }
.btn--navy:hover { background: var(--navy-2); color: #fff; transform: translateY(-2px); }
.btn--blue { background: var(--grad); color: #fff; box-shadow: 0 8px 20px rgba(30, 111, 217, 0.35); }
.btn--blue:hover { color: #fff; transform: translateY(-2px); }

/* ---------- Top bar ---------- */
.topbar { background: var(--navy); color: #c6d5e8; font-size: 0.85rem; }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 0.45rem 0; }
.topbar a { color: #fff; font-weight: 600; }
.topbar a:hover { color: var(--blue-bright); }
.topbar__item { display: inline-flex; align-items: center; gap: 0.45rem; }
.topbar__item svg { width: 14px; height: 14px; color: var(--orange); }
.topbar__group { display: flex; align-items: center; gap: 1.4rem; }
@media (max-width: 720px) { .topbar__hide { display: none; } }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 12px rgba(15, 35, 64, 0.05);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: 0.65rem 0; }
.header__logo img { height: 72px; width: auto; }
.nav { display: flex; align-items: center; gap: 1.5rem; }
.nav a { color: var(--navy); font-weight: 600; font-size: 0.97rem; padding: 0.4rem 0; position: relative; }
.nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -2px; height: 3px;
  border-radius: 2px; background: var(--orange); transition: right 0.2s ease;
}
.nav a:hover::after, .nav a[aria-current="page"]::after { right: 0; }
.nav a:hover { color: var(--navy); }

.nav__drop { position: relative; }
.nav__drop > a { display: inline-flex; align-items: center; gap: 0.3rem; }
.nav__menu {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(8px);
  background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow);
  min-width: 250px; padding: 0.5rem; opacity: 0; visibility: hidden; transition: 0.18s ease;
}
.nav__drop:hover .nav__menu, .nav__drop:focus-within .nav__menu {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.nav__menu a { display: block; padding: 0.6rem 0.9rem; border-radius: 9px; font-size: 0.93rem; }
.nav__menu a::after { display: none; }
.nav__menu a:hover { background: var(--bg-tint); color: var(--blue); }

.header__cta { display: flex; align-items: center; gap: 0.9rem; }
.header__phone { display: flex; flex-direction: column; align-items: flex-end; line-height: 1.2; }
.header__phone small { color: var(--muted); font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
.header__phone a { font-weight: 800; font-size: 1.05rem; color: var(--navy); }
.header__phone a:hover { color: var(--orange); }

.burger { display: none; background: none; border: 0; padding: 0.4rem; cursor: pointer; }
.burger span { display: block; width: 26px; height: 3px; border-radius: 2px; background: var(--navy); margin: 5px 0; transition: 0.2s; }

@media (max-width: 1020px) {
  /* backdrop-filter would make .header the containing block for the
     fixed-position drawer, clipping it to the header's box */
  .header { backdrop-filter: none; background: #fff; }
  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(320px, 85vw);
    background: #fff; flex-direction: column; align-items: flex-start;
    padding: 5.5rem 1.6rem 2rem; gap: 0.4rem; box-shadow: -20px 0 50px rgba(15,35,64,0.18);
    transform: translateX(100%); transition: transform 0.28s ease; z-index: 70; overflow-y: auto;
  }
  .nav.is-open { transform: translateX(0); }
  .nav a { font-size: 1.05rem; width: 100%; }
  .nav__menu { position: static; transform: none; opacity: 1; visibility: visible; box-shadow: none; border: 0; padding: 0 0 0 0.9rem; min-width: 0; }
  .burger { display: block; z-index: 80; position: relative; }
  .burger.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .burger.is-open span:nth-child(2) { opacity: 0; }
  .burger.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .header__phone { display: none; }
}
@media (max-width: 560px) { .header__cta .btn { display: none; } .header__logo img { height: 56px; } }

/* ---------- Hero ---------- */
.hero { position: relative; color: #fff; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(10, 26, 50, 0.92) 0%, rgba(13, 42, 84, 0.82) 45%, rgba(13, 42, 84, 0.35) 100%);
}
.hero__inner { position: relative; z-index: 1; padding: clamp(4.5rem, 9vw, 8rem) 0; max-width: 640px; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.28);
  border-radius: 999px; padding: 0.42rem 1rem; font-size: 0.85rem; font-weight: 600;
  backdrop-filter: blur(6px); margin-bottom: 1.4rem;
}
.hero__badge svg { width: 15px; height: 15px; color: #ffc24d; }
.hero h1 { color: #fff; margin-bottom: 0.5em; }
.hero h1 em { font-style: normal; color: var(--blue-bright); }
.hero p { font-size: 1.15rem; color: #d9e4f2; max-width: 34rem; margin-bottom: 2rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 2.4rem; }
.hero__ticks { display: flex; flex-wrap: wrap; gap: 1.1rem 1.8rem; padding: 0; margin: 0; list-style: none; }
.hero__ticks li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.92rem; font-weight: 600; color: #e8f0fa; }
.hero__ticks svg { width: 17px; height: 17px; color: var(--blue-bright); flex: none; }

/* Page hero (inner pages) */
.page-hero { position: relative; color: #fff; overflow: hidden; }
.page-hero__bg { position: absolute; inset: 0; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(10,26,50,0.94), rgba(13,42,84,0.72)); }
.page-hero__inner { position: relative; z-index: 1; padding: clamp(3rem, 6vw, 4.5rem) 0; max-width: 720px; }
.page-hero h1 { color: #fff; margin-bottom: 0.3em; }
.page-hero p { color: #d9e4f2; font-size: 1.1rem; margin: 0; }
.crumbs { font-size: 0.85rem; margin-bottom: 1rem; color: #9fb4cd; }
.crumbs a { color: #cfe0f5; font-weight: 600; }
.crumbs a:hover { color: var(--blue-bright); }

/* ---------- Trust strip ---------- */
.trust { background: var(--navy); color: #fff; }
.trust__inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; padding: 1.4rem 0; }
.trust__item { display: flex; align-items: center; gap: 0.8rem; justify-content: center; }
.trust__item svg { width: 30px; height: 30px; color: var(--orange); flex: none; }
.trust__item strong { display: block; font-size: 0.98rem; line-height: 1.25; }
.trust__item small { color: #9fb4cd; font-size: 0.8rem; }
@media (max-width: 900px) { .trust__inner { grid-template-columns: repeat(2, 1fr); } .trust__item { justify-content: flex-start; } }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 1.6rem; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid--3, .grid--2, .grid--4 { grid-template-columns: 1fr; } }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.card:hover .card__media img { transform: scale(1.06); }
.card__body { padding: 1.5rem 1.5rem 1.7rem; display: flex; flex-direction: column; gap: 0.4rem; flex: 1; }
.card__body p { color: var(--muted); font-size: 0.96rem; margin: 0 0 1rem; flex: 1; }
.card__link { font-weight: 700; font-size: 0.95rem; display: inline-flex; align-items: center; gap: 0.4rem; color: var(--blue); }
.card__link svg { width: 16px; height: 16px; transition: transform 0.2s; }
.card__link:hover svg { transform: translateX(4px); }

/* Feature tiles */
.feature {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.7rem; box-shadow: var(--shadow-sm);
}
.feature__icon {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: var(--bg-tint); color: var(--blue); margin-bottom: 1.1rem;
}
.feature__icon svg { width: 26px; height: 26px; }
.feature h3 { font-size: 1.12rem; margin-bottom: 0.4em; }
.feature p { color: var(--muted); font-size: 0.95rem; margin: 0; }
.feature--accent .feature__icon { background: rgba(242, 111, 33, 0.12); color: var(--orange); }

/* Checklist */
.ticks { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.7rem; }
.ticks li { display: flex; gap: 0.65rem; align-items: flex-start; font-weight: 500; }
.ticks svg { width: 20px; height: 20px; color: var(--orange); flex: none; margin-top: 3px; }
.ticks--2col { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 640px) { .ticks--2col { grid-template-columns: 1fr; } }

/* ---------- Split layout ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }
.split__media { position: relative; }
.split__media > img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; object-fit: cover; }
.split__stamp {
  position: absolute; bottom: -1.2rem; right: -0.6rem;
  background: var(--grad); color: #fff; border-radius: 14px; padding: 1rem 1.3rem;
  box-shadow: var(--shadow); text-align: center; line-height: 1.2;
}
.split__stamp strong { display: block; font-size: 1.5rem; font-weight: 800; }
.split__stamp small { font-size: 0.78rem; opacity: 0.9; }
@media (max-width: 900px) { .split__stamp { right: 0.8rem; } }

/* ---------- Steps ---------- */
.steps { counter-reset: step; }
.step { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem 1.6rem 1.6rem; box-shadow: var(--shadow-sm); }
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  position: absolute; top: -1.1rem; left: 1.4rem;
  background: var(--orange); color: #fff; font-weight: 800; font-size: 0.95rem;
  border-radius: 999px; padding: 0.35rem 0.85rem; box-shadow: 0 6px 14px rgba(242,111,33,0.35);
}
.step h3 { font-size: 1.1rem; margin: 0.4rem 0 0.4rem; }
.step p { color: var(--muted); font-size: 0.94rem; margin: 0; }

/* ---------- Reviews ---------- */
.review {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.8rem; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 0.9rem;
}
.review__stars { display: flex; gap: 3px; color: #ffb400; }
.review__stars svg { width: 18px; height: 18px; }
.review p { margin: 0; font-size: 0.98rem; color: var(--ink); flex: 1; }
.review footer { display: flex; align-items: center; gap: 0.8rem; }
.review__avatar {
  width: 42px; height: 42px; border-radius: 50%; background: var(--grad);
  color: #fff; display: grid; place-items: center; font-weight: 800;
}
.review footer strong { display: block; font-size: 0.95rem; color: var(--navy); }
.review footer small { color: var(--muted); font-size: 0.8rem; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; display: grid; gap: 0.9rem; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-sm); overflow: hidden; }
.faq summary {
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1.1rem 1.4rem; font-weight: 700; color: var(--navy); font-size: 1.02rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; font-size: 1.5rem; font-weight: 600; color: var(--orange);
  transition: transform 0.2s; line-height: 1; flex: none;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details > div { padding: 0 1.4rem 1.3rem; color: var(--muted); }
.faq details > div p { margin: 0; }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.gallery figure { margin: 0; border-radius: var(--radius); overflow: hidden; position: relative; box-shadow: var(--shadow-sm); }
.gallery img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; transition: transform 0.4s; }
.gallery figure:hover img { transform: scale(1.05); }
.gallery figcaption {
  position: absolute; inset: auto 0 0 0; padding: 2rem 1rem 0.9rem;
  background: linear-gradient(transparent, rgba(10, 26, 50, 0.85));
  color: #fff; font-size: 0.88rem; font-weight: 600;
}
@media (max-width: 820px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .gallery { grid-template-columns: 1fr; } }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; background: var(--grad); color: #fff; }
.cta-band::before {
  content: ""; position: absolute; width: 420px; height: 420px; border-radius: 50%;
  background: rgba(255,255,255,0.08); top: -180px; right: -120px;
}
.cta-band::after {
  content: ""; position: absolute; width: 260px; height: 260px; border-radius: 50%;
  background: rgba(255,255,255,0.07); bottom: -130px; left: -70px;
}
.cta-band__inner {
  position: relative; z-index: 1; padding: clamp(3rem, 6vw, 4.5rem) 0;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.6rem;
}
.cta-band h2 { color: #fff; margin: 0 0 0.3em; }
.cta-band p { margin: 0; color: #e6f0fb; max-width: 34rem; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; }

/* ---------- Forms ---------- */
.form-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: clamp(1.6rem, 3vw, 2.4rem);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-grid .form-field--full { grid-column: 1 / -1; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.form-field label { display: block; font-weight: 700; font-size: 0.88rem; color: var(--navy); margin-bottom: 0.35rem; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 0.85rem 1rem; border-radius: 11px; border: 1.5px solid var(--line);
  font: inherit; font-size: 0.97rem; color: var(--ink); background: var(--bg-soft);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(30, 111, 217, 0.12); background: #fff;
}
.form-field textarea { min-height: 130px; resize: vertical; }
.form-note { font-size: 0.82rem; color: var(--muted); margin-top: 0.9rem; }

/* ---------- Footer ---------- */
.footer { background: var(--navy); color: #b8c9dd; font-size: 0.95rem; }
.footer a { color: #dce7f3; }
.footer a:hover { color: var(--blue-bright); }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.5rem; padding: 3.8rem 0 2.8rem; }
@media (max-width: 980px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer__grid { grid-template-columns: 1fr; } }
.footer__logo { background: #fff; border-radius: 12px; padding: 0.6rem 0.9rem; display: inline-block; margin-bottom: 1.1rem; }
.footer__logo img { height: 96px; width: auto; }
.footer h4 { color: #fff; font-size: 1rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1.1rem; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.55rem; }
.footer__contact li { display: flex; gap: 0.6rem; align-items: flex-start; }
.footer__contact svg { width: 17px; height: 17px; color: var(--orange); flex: none; margin-top: 4px; }
.footer__social { display: flex; gap: 0.7rem; margin-top: 1.2rem; }
.footer__social a {
  width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center;
  background: rgba(255,255,255,0.08); transition: background 0.15s, transform 0.15s;
}
.footer__social a:hover { background: var(--orange); color: #fff; transform: translateY(-3px); }
.footer__social svg { width: 17px; height: 17px; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding: 1.3rem 0;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.6rem; font-size: 0.83rem; color: #8ba1bc;
}
.hours { display: grid; gap: 0.4rem; }
.hours div { display: flex; justify-content: space-between; gap: 1rem; border-bottom: 1px dashed rgba(255,255,255,0.12); padding-bottom: 0.4rem; }
.hours span:last-child { color: #fff; font-weight: 600; }

/* ---------- Mobile call bar ---------- */
.callbar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 55;
  display: none; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line);
  box-shadow: 0 -6px 20px rgba(15,35,64,0.15);
}
.callbar a {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.95rem; font-weight: 800; font-size: 0.95rem;
}
.callbar a:first-child { background: var(--orange); color: #fff; }
.callbar a:last-child { background: var(--navy); color: #fff; }
.callbar svg { width: 18px; height: 18px; }
@media (max-width: 720px) { .callbar { display: grid; } body { padding-bottom: 54px; } }

/* ---------- Utility ---------- */
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Cookie banner ---------- */
.cookiebar {
  position: fixed; left: 1rem; bottom: 1rem; z-index: 80;
  max-width: 380px; background: #fff; border: 1px solid var(--line);
  border-radius: 14px; box-shadow: var(--shadow); padding: 1.1rem 1.2rem;
  font-size: 0.88rem; color: var(--muted);
}
.cookiebar p { margin: 0 0 0.8rem; }
.cookiebar strong { color: var(--navy); }
.cookiebar__actions { display: flex; gap: 0.6rem; }
.cookiebar__actions button {
  font: inherit; font-weight: 700; cursor: pointer; border-radius: 999px;
  padding: 0.5rem 1.1rem; border: 1.5px solid transparent; font-size: 0.85rem;
}
.cookiebar__accept { background: var(--orange); color: #fff; }
.cookiebar__accept:hover { background: var(--orange-dark); }
.cookiebar__decline { background: #fff; color: var(--navy); border-color: var(--line) !important; }
.cookiebar__decline:hover { border-color: var(--navy) !important; }
@media (max-width: 720px) {
  .cookiebar { left: 0.75rem; right: 0.75rem; bottom: 62px; max-width: none; }
}
