:root {
  --white: #ffffff;
  --paper: #f7f8fa;
  --ink: #08223c;
  --ink-2: #102f4f;
  --muted: #59636d;
  --line: #e2e6e9;
  --orange: #ff6b00;
  --orange-2: #e85f00;
  --blue: #0d355a;
  --red: #ff6b00;
  --yellow: #ffb000;
  --green: #34a853;
  --shadow: 0 14px 35px rgba(8, 34, 60, .09);
  --radius: 8px;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: var(--ink);
  background: var(--white);
  line-height: 1.64;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
body.modal-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
:focus-visible { outline: 3px solid rgba(255, 107, 0, .5); outline-offset: 3px; }
@supports (content-visibility: auto) {
  .section { content-visibility: auto; contain-intrinsic-size: 760px; }
}

.container { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
.section { padding: 78px 0; }
.section-soft { background: var(--paper); }
.eyebrow {
  margin: 0 0 10px;
  color: var(--orange);
  font-size: .78rem;
  font-weight: 750;
  letter-spacing: .09em;
  text-transform: uppercase;
}
h1, h2, h3 { margin: 0; color: var(--ink); line-height: 1.12; letter-spacing: 0; }
h1 { font-size: clamp(2.35rem, 4.2vw, 4.45rem); max-width: 920px; font-weight: 780; }
h2 { font-size: clamp(1.62rem, 2.45vw, 2.28rem); font-weight: 720; }
h3 { font-size: 1.06rem; font-weight: 720; }
p { margin: 0; color: var(--muted); }
.lead { font-size: 1.06rem; max-width: 720px; line-height: 1.74; }
.center { text-align: center; }
.center .lead { margin-inline: auto; }
.mt { margin-top: 24px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
  transition: box-shadow .2s ease;
}
.site-header.is-scrolled { box-shadow: 0 10px 22px rgba(31,42,51,.08); }
.nav-wrap { min-height: 82px; display: flex; align-items: center; gap: 22px; }
.brand { display: inline-flex; align-items: center; min-width: 240px; }
.brand img { width: 235px; height: auto; }
.main-nav { margin-left: auto; display: flex; align-items: center; gap: 22px; font-weight: 680; font-size: .92rem; }
.main-nav a { position: relative; padding: 8px 0; white-space: nowrap; }
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--orange);
  transition: right .18s ease;
}
.main-nav a:hover::after, .main-nav a.active::after { right: 0; }
.header-actions { display: flex; align-items: center; gap: 10px; margin-left: 4px; }
.phone-link { display: inline-flex; gap: 8px; align-items: center; font-weight: 750; white-space: nowrap; }
.icon { width: 22px; height: 22px; display: inline-block; color: currentColor; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 12px 22px;
  border: 1px solid var(--orange);
  border-radius: 6px;
  background: var(--orange);
  color: var(--white);
  font-weight: 750;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); background: var(--orange-2); border-color: var(--orange-2); }
.btn.secondary { color: var(--ink); background: var(--white); border-color: #bfc8cf; }
.btn.secondary:hover { border-color: var(--orange); color: var(--orange-2); }
.callback-open {
  min-height: 44px;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--white);
  border-color: #cfd7de;
  font-size: .9rem;
  line-height: 1;
}
.callback-open:hover {
  color: var(--orange-2);
  background: #fff7f1;
  border-color: var(--orange);
}
.menu-toggle { display: none; margin-left: auto; background: transparent; border: 0; color: var(--ink); padding: 10px; cursor: pointer; }
.menu-toggle span { display: block; width: 26px; height: 2px; background: currentColor; margin: 6px 0; transition: transform .2s ease, opacity .2s ease; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: 780px;
  overflow: hidden;
  background: var(--ink);
}
.hero-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 21, 38, .86) 0%, rgba(5, 21, 38, .72) 38%, rgba(5, 21, 38, .18) 78%, rgba(5, 21, 38, .08) 100%),
    linear-gradient(180deg, rgba(5, 21, 38, .28), rgba(5, 21, 38, .2));
  pointer-events: none;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-grid {
  position: relative;
  z-index: 2;
  min-height: 780px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
}
.hero-copy {
  width: 100%;
  padding: 112px 0 250px;
}
.hero-copy .lead { margin-top: 20px; }
.hero .eyebrow,
.hero h1,
.hero .lead { color: var(--white); }
.hero .eyebrow { color: #ffb16a; }
.hero .lead {
  max-width: 680px;
  color: rgba(255,255,255,.88);
  font-size: 1.12rem;
}
.trust-row { display: flex; flex-wrap: wrap; gap: 28px; margin-top: 42px; }
.trust-item { display: inline-flex; align-items: center; gap: 10px; color: var(--ink-2); font-size: .9rem; font-weight: 750; }
.trust-item .icon { color: var(--blue); }
.grid { display: grid; gap: 22px; }
.services-grid { grid-template-columns: repeat(6, 1fr); margin-top: 34px; }
.service-card, .project-card, .review-card, .info-card, .legal-box, .form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 20px rgba(31,42,51,.04);
}
.service-card { padding: 0 18px 24px; text-align: center; overflow: hidden; transition: transform .18s ease, box-shadow .18s ease; }
.service-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.service-card .service-icon { width: 54px; height: 54px; margin: 0 auto 18px; color: var(--ink); }
.service-card:nth-child(odd) { border-top: 3px solid var(--orange); }
.service-card:nth-child(even) { border-top: 3px solid var(--ink); }
.service-card p { margin-top: 10px; font-size: .92rem; }
.service-card h3 { min-height: 2.4em; display: grid; place-items: center; }

.service-photo {
  margin: 0 -18px 18px;
  overflow: hidden;
  background: var(--paper);
}

.service-photo img {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
  transition: transform .28s ease;
}

.service-card:hover .service-photo img { transform: scale(1.04); }

.service-icon {
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #fff2e7;
  color: var(--orange) !important;
}

.service-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.local-seo {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 34px;
  align-items: start;
}

.local-panel {
  position: relative;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.local-panel::before {
  content: "";
  position: absolute;
  left: 30px;
  right: 30px;
  top: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), rgba(255,107,0,.16));
}
.local-panel-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}
.local-panel-head strong {
  color: var(--ink);
  font-size: 1.15rem;
}
.local-panel-head span {
  color: var(--orange);
  font-size: .82rem;
  font-weight: 760;
  text-transform: uppercase;
}
.local-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.local-meta span {
  color: var(--ink-2);
  font-size: .9rem;
  font-weight: 700;
}

.about-section {
  position: relative;
  background:
    linear-gradient(180deg, #f7f8fa 0%, #ffffff 100%);
}
.about-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 44px; align-items: center; }
.about-img, .about-visual {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(8, 34, 60, .1);
  box-shadow: 0 24px 55px rgba(8, 34, 60, .14);
  background: var(--ink);
}
.about-img img, .about-visual img {
  width: 100%;
  aspect-ratio: 1.18 / 1;
  object-fit: cover;
  object-position: 40% center;
}
.about-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 34, 60, 0) 48%, rgba(8, 34, 60, .56) 100%);
  pointer-events: none;
}
.about-badge {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 8px;
  color: var(--white);
  background: rgba(8, 34, 60, .82);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(10px);
}
.about-badge strong { color: var(--white); font-size: 1rem; }
.about-badge span { color: rgba(255,255,255,.8); font-size: .9rem; text-align: right; }
.about-panel {
  padding: 34px;
  border-radius: 8px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(8, 34, 60, .08);
  box-shadow: 0 18px 45px rgba(8, 34, 60, .08);
}
.about-panel h2 { max-width: 680px; }
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 26px;
}
.about-stats div {
  padding: 16px 14px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--line);
}
.about-stats strong {
  display: block;
  color: var(--orange);
  font-size: 1.35rem;
  line-height: 1;
  margin-bottom: 7px;
}
.about-stats span { display: block; color: var(--ink); font-size: .84rem; line-height: 1.35; font-weight: 680; }
.value-list { display: grid; gap: 18px; margin-top: 28px; }
.value-item { display: block; }
.premium-values { gap: 14px; margin-top: 24px; }
.premium-values .value-item {
  padding: 16px 0 15px;
  border-top: 1px solid rgba(8, 34, 60, .08);
}
.premium-values .value-item p { font-size: .95rem; }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 34px; counter-reset: step; position: relative; }
.step {
  position: relative;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(8,34,60,.06);
}
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 14px;
  top: 14px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--orange);
  color: var(--white);
  font-weight: 750;
  box-shadow: 0 10px 22px rgba(255,107,0,.24);
}
.step::after { content: ""; position: absolute; top: 82px; left: calc(100% - 6px); width: 30px; height: 1px; background: var(--line); }
.step:last-child::after { display: none; }
.step figure { margin: 0; overflow: hidden; background: var(--paper); }
.step img {
  width: 100%;
  aspect-ratio: 1.6 / 1;
  object-fit: cover;
  transition: transform .28s ease;
}
.step:hover img { transform: scale(1.035); }
.step-body { padding: 20px 18px 22px; }
.step-body h3 { margin-bottom: 8px; }

.projects-grid { grid-template-columns: repeat(4, 1fr); margin-top: 34px; }
.project-card { overflow: hidden; }
.project-card figure { margin: 0; overflow: hidden; background: var(--paper); }
.project-card img { width: 100%; aspect-ratio: 1.55 / 1; object-fit: cover; transition: transform .28s ease; }
.project-card:hover img { transform: scale(1.04); }
.project-body { padding: 16px 18px 18px; }
.project-body p { font-size: .92rem; }
.project-meta { color: var(--muted); font-size: .86rem; }
.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin: 32px 0; }
.filter-btn { border: 1px solid var(--line); background: var(--white); color: var(--ink); border-radius: 999px; padding: 10px 16px; font-weight: 750; cursor: pointer; }
.filter-btn.active, .filter-btn:hover { background: var(--orange); color: var(--white); border-color: var(--orange); }

.reviews-grid { grid-template-columns: repeat(3, 1fr); margin-top: 34px; }
.review-card { padding: 26px; }
.stars { color: var(--yellow); letter-spacing: 0; font-size: 1.1rem; margin-bottom: 12px; }
.review-author { margin-top: 18px; font-weight: 750; color: var(--ink); }
.review-submit {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 34px;
  align-items: start;
}
.review-copy {
  padding-top: 8px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}
.faq-item {
  padding: 24px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 8px 20px rgba(31,42,51,.04);
}
.faq-item p { margin-top: 10px; font-size: .95rem; }

.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 34px; align-items: start; }
.contact-list { display: grid; gap: 0; margin-top: 28px; }
.contact-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  align-items: start;
  padding: 14px 0;
  border-bottom: 1px solid rgba(8, 34, 60, .08);
}
.contact-item:last-child { border-bottom: 0; }
.contact-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--orange);
  background: var(--white);
  border: 1px solid #ffd2ad;
  box-shadow: 0 8px 20px rgba(8, 34, 60, .07);
}
.contact-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-item strong { color: var(--ink); }
.contact-item p { line-height: 1.55; }
.form-card { padding: 26px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field.full { grid-column: 1 / -1; }
label { display: block; margin-bottom: 6px; font-weight: 750; font-size: .9rem; }
input, select, textarea {
  width: 100%;
  border: 1px solid #ccd3d9;
  border-radius: 5px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--white);
}
textarea { min-height: 130px; resize: vertical; }
.check-row { display: grid; grid-template-columns: 20px 1fr; gap: 10px; align-items: start; }
.check-row input { width: 18px; height: 18px; margin-top: 3px; }
.check-row .error { grid-column: 2; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.error { min-height: 18px; color: #b42318; font-size: .84rem; margin-top: 4px; }
.form-message { margin: 16px 0 0; padding: 12px 14px; border-radius: 6px; display: none; }
.form-message.success { display: block; background: #e9f7ef; color: #136b35; border: 1px solid #bfe6cd; }
.form-message.fail { display: block; background: #fff1f0; color: #9f1c13; border: 1px solid #ffd0cc; }

.callback-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: rgba(5, 21, 38, .62);
}
.callback-modal.open { display: flex; }
.callback-dialog {
  position: relative;
  width: min(100%, 520px);
  max-height: calc(100vh - 44px);
  overflow: auto;
  padding: 30px;
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 30px 90px rgba(0,0,0,.28);
}
.callback-dialog h2 { margin-bottom: 10px; }
.callback-dialog > p { margin-bottom: 22px; }
.callback-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}
.callback-form {
  display: grid;
  gap: 14px;
}
.callback-form textarea { min-height: 96px; }

.page-hero { padding: 82px 0 56px; background: var(--paper); border-bottom: 1px solid var(--line); }
.content-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.info-card { padding: 28px; }
.info-card h2 { font-size: 1.45rem; }
.info-card ul { margin: 18px 0 0; padding-left: 20px; color: var(--muted); }
.service-map {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 30px rgba(8, 34, 60, .08);
}
.service-map iframe {
  display: block;
  width: 100%;
  min-height: 300px;
  border: 0;
}
.service-map iframe:not([src]) { display: none; }
.map-consent {
  min-height: 300px;
  display: grid;
  place-items: center;
  padding: 28px;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(255,107,0,.08) 0 1px, transparent 1px 24px),
    #f7f8fa;
}
.map-consent-inner { max-width: 390px; }
.map-consent strong {
  display: block;
  color: var(--ink);
  font-size: 1.05rem;
}
.map-consent p {
  margin-top: 8px;
  font-size: .94rem;
}
.map-consent .btn {
  width: auto;
  margin-top: 16px;
}
.service-map a {
  display: block;
  padding: 12px 14px;
  color: var(--ink);
  font-weight: 750;
  font-size: .92rem;
  background: #fff7f0;
  border-top: 1px solid #ffd2ad;
}
.service-map a:hover { color: var(--orange); }
.legal-box { padding: 30px; margin-top: 22px; }
.legal-box h2 { font-size: 1.45rem; margin-top: 12px; }
.legal-box p, .legal-box li { color: var(--muted); }

.site-footer { background: var(--ink); color: var(--white); padding: 48px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr 1fr; gap: 32px; }
.footer-grid > div:first-child > img {
  width: 240px;
  background: var(--white);
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 8px;
  padding: 10px 12px;
}
.site-footer p, .site-footer a { color: rgba(255,255,255,.78); }
.site-footer h2 { color: var(--white); font-size: 1rem; margin-bottom: 14px; }
.footer-links { display: grid; gap: 8px; }
.footer-button {
  width: fit-content;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255,255,255,.78);
  text-align: left;
  cursor: pointer;
}
.footer-button:hover { color: var(--white); }
.social { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.social a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px 8px 8px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  color: var(--white);
  font-weight: 750;
  font-size: .86rem;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.social a:hover { transform: translateY(-1px); border-color: rgba(255,255,255,.55); background: rgba(255,255,255,.18); color: var(--white); }
.social img, .social-icon { width: 24px; height: 24px; flex: 0 0 24px; padding: 0; background: transparent; border: 0; border-radius: 0; }
.copyright { margin-top: 34px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.14); text-align: center; font-size: .88rem; }

.wa-button, .to-top {
  position: fixed;
  z-index: 45;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  box-shadow: 0 10px 24px rgba(31,42,51,.2);
}
.wa-button { right: 18px; bottom: 20px; width: 54px; height: 54px; display: grid; place-items: center; background: #25d366; }
.wa-button img { width: 54px; height: 54px; }
.wa-button svg { width: 28px; height: 32px; fill: var(--white); }
.to-top { right: 20px; bottom: 86px; width: 42px; height: 42px; background: var(--ink); opacity: 0; pointer-events: none; cursor: pointer; }
.to-top.visible { opacity: 1; pointer-events: auto; }

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 999;
  width: min(860px, calc(100% - 28px));
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(8, 34, 60, .18);
  padding: 18px;
  display: none;
  gap: 14px;
  transform: translateX(-50%) translateY(16px);
}
.cookie-banner.show { display: grid; transform: translateX(-50%) translateY(0); }
.cookie-copy strong {
  display: block;
  color: var(--ink);
  font-size: 1rem;
  margin-bottom: 5px;
}
.cookie-copy p {
  max-width: 760px;
  font-size: .92rem;
  line-height: 1.5;
}
.cookie-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
  font-size: .86rem;
  font-weight: 750;
}
.cookie-links a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.cookie-settings {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.cookie-settings.open { display: grid; }
.cookie-option {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  min-height: 104px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfd;
}
.cookie-option input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--orange);
}
.cookie-option strong {
  display: block;
  color: var(--ink);
  line-height: 1.25;
}
.cookie-option small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  line-height: 1.35;
}
.cookie-option.disabled { opacity: .76; }
.cookie-actions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.cookie-actions .btn {
  width: 100%;
  min-height: 42px;
  padding: 10px 12px;
  white-space: normal;
}

.lightbox { position: fixed; inset: 0; z-index: 80; display: none; align-items: center; justify-content: center; padding: 24px; background: rgba(12,18,23,.84); }
.lightbox.open { display: flex; }
.lightbox img { max-height: 82vh; border-radius: 8px; box-shadow: 0 20px 70px rgba(0,0,0,.35); }
.lightbox button { position: absolute; top: 18px; right: 18px; background: var(--white); border: 0; border-radius: 999px; width: 42px; height: 42px; cursor: pointer; }

.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;
}


.reveal { opacity: 0; transform: translateY(18px); transition: opacity .45s ease, transform .45s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

