/* === components.css === buttons · nav · hero · cards · forms · FAB · footer === */

/* ========== Buttons ========== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--s2);
  padding: 14px 28px; font-family: var(--font-heading); font-weight: var(--fw-semibold);
  font-size: var(--text-base); line-height: 1; border-radius: var(--r-md);
  border: 2px solid transparent; cursor: pointer; text-decoration: none;
  transition: all var(--t-base); white-space: nowrap;
}
.btn-primary { background: var(--primary); color: var(--white); border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-hover); border-color: var(--primary-hover); color: var(--white); transform: translateY(-2px); box-shadow: var(--sh-primary); }
.btn-accent { background: var(--accent); color: var(--dark); border-color: var(--accent); }
.btn-accent:hover { background: var(--accent-hover); border-color: var(--accent-hover); color: var(--dark); transform: translateY(-2px); box-shadow: var(--sh-accent); }
.btn-emergency { background: var(--emergency); color: var(--white); border-color: var(--emergency); }
.btn-emergency:hover { background: var(--emergency-hover); border-color: var(--emergency-hover); color: var(--white); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); }
.btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255, 255, 255, 0.6); }
.btn-outline-light:hover { background: var(--white); color: var(--dark); border-color: var(--white); }
.btn-lg { padding: 16px 32px; font-size: var(--text-lg); }
.btn-sm { padding: 10px 18px; font-size: var(--text-sm); }
.btn-block { width: 100%; }

/* ========== Emergency Bar ========== */
.emergency-bar {
  background: var(--emergency); color: var(--white); padding: 10px 0;
  font-size: var(--text-sm); font-weight: var(--fw-semibold); text-align: center;
  position: relative; z-index: calc(var(--z-nav) + 1);
}
.emergency-bar .dot { display: inline-block; width: 8px; height: 8px; background: var(--white); border-radius: 50%; margin-right: 8px; animation: pulse 1.6s ease-in-out infinite; vertical-align: middle; }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .4; transform: scale(.8); } }
.emergency-bar a { color: var(--white); text-decoration: underline; font-weight: var(--fw-bold); }
.emergency-bar a:hover { color: var(--accent); }
@media (prefers-reduced-motion: reduce) { .emergency-bar .dot { animation: none; } }

/* ========== Header / Nav ========== */
.site-header {
  position: sticky; top: 0; z-index: var(--z-nav);
  background: rgba(255, 255, 255, 0.98); backdrop-filter: saturate(1.2) blur(8px);
  border-bottom: 1px solid var(--border); transition: box-shadow var(--t-base), padding var(--t-base);
}
.site-header.scrolled { box-shadow: var(--sh-md); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); gap: var(--s6); }
.logo { display: inline-flex; align-items: center; gap: var(--s2); text-decoration: none; color: var(--dark); font-family: var(--font-heading); font-weight: var(--fw-extra); font-size: var(--text-xl); }
.logo svg, .logo img { width: 40px; height: 40px; }
.logo-text { display: flex; flex-direction: column; line-height: 1.05; }
.logo-text .brand { color: var(--primary); font-size: var(--text-lg); letter-spacing: -0.01em; }
.logo-text .sub { color: var(--text-muted); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: var(--fw-semibold); }

.desktop-nav { display: none; }
@media (min-width: 1024px) { .desktop-nav { display: flex; align-items: center; gap: var(--s6); } }
.desktop-nav a.nav-link {
  font-family: var(--font-heading); font-weight: var(--fw-semibold); font-size: var(--text-sm);
  color: var(--text); padding: 8px 4px; position: relative; letter-spacing: 0.02em;
}
.desktop-nav a.nav-link:hover, .desktop-nav a.nav-link.active { color: var(--primary); }
.desktop-nav a.nav-link.active::after { content: ""; position: absolute; bottom: -4px; left: 0; right: 0; height: 3px; background: var(--primary); border-radius: 2px; }

.nav-dropdown { position: relative; }
.nav-dropdown > button, .nav-dropdown > a { display: inline-flex; align-items: center; gap: 4px; font-family: var(--font-heading); font-weight: var(--fw-semibold); font-size: var(--text-sm); color: var(--text); background: none; border: 0; cursor: pointer; padding: 8px 4px; }
.nav-dropdown > button:hover { color: var(--primary); }
.nav-dropdown-menu {
  position: absolute; top: 100%; left: -16px; min-width: 260px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: var(--s2); box-shadow: var(--sh-lg);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all var(--t-base);
}
.nav-dropdown:hover > .nav-dropdown-menu, .nav-dropdown:focus-within > .nav-dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-dropdown-menu a { display: block; padding: 10px 14px; border-radius: var(--r-md); font-size: var(--text-sm); color: var(--text); font-weight: var(--fw-medium); }
.nav-dropdown-menu a:hover { background: var(--primary-soft); color: var(--primary); }

.header-actions { display: flex; align-items: center; gap: var(--s3); }
.header-phone { display: none; font-family: var(--font-heading); font-weight: var(--fw-bold); font-size: var(--text-sm); color: var(--emergency); }
@media (min-width: 1024px) { .header-phone { display: inline-flex; align-items: center; gap: 6px; } }
.header-phone:hover { color: var(--emergency-hover); }

/* Hamburger */
.nav-toggle {
  display: inline-flex; flex-direction: column; gap: 5px; width: 44px; height: 44px;
  align-items: center; justify-content: center; background: transparent; border: 0; cursor: pointer;
}
@media (min-width: 1024px) { .nav-toggle { display: none; } }
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--dark); transition: transform var(--t-base), opacity var(--t-base); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-nav {
  position: fixed; top: 0; right: 0; height: 100dvh; width: min(360px, 92vw);
  background: var(--white); z-index: var(--z-drawer); transform: translateX(100%);
  transition: transform var(--t-base); padding: var(--s16) var(--s5) var(--s8);
  overflow-y: auto; box-shadow: -12px 0 32px rgba(15, 23, 42, 0.18);
}
.mobile-nav[aria-hidden="false"] { transform: translateX(0); }
.mobile-nav ul { list-style: none; padding: 0; margin: 0; }
.mobile-nav a { display: block; padding: var(--s4) 0; font-family: var(--font-heading); font-weight: var(--fw-semibold); font-size: var(--text-lg); color: var(--text); border-bottom: 1px solid var(--border); }
.mobile-nav a:hover { color: var(--primary); }
.mobile-nav .sub { padding-left: var(--s4); font-size: var(--text-base); color: var(--text-muted); font-weight: var(--fw-medium); }
.mobile-nav .drawer-cta { margin-top: var(--s6); display: flex; flex-direction: column; gap: var(--s3); }
.mobile-nav-backdrop {
  position: fixed; inset: 0; background: rgba(15, 23, 42, 0.55); z-index: calc(var(--z-drawer) - 1);
  opacity: 0; visibility: hidden; transition: all var(--t-base);
}
.mobile-nav-backdrop[aria-hidden="false"] { opacity: 1; visibility: visible; }
body.nav-open { overflow: hidden; }

/* ========== Hero ========== */
.hero { position: relative; overflow: hidden; min-height: 86vh; display: flex; align-items: center; color: var(--white); isolation: isolate; }
.hero--compact { min-height: 52vh; }
.hero-carousel { position: absolute; inset: 0; z-index: -2; }
.hero__slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.2s ease; transform: scale(1.04); }
.hero__slide.active { opacity: 1; animation: kenBurns 8s ease-out forwards; }
@keyframes kenBurns { from { transform: scale(1.04); } to { transform: scale(1.1); } }
@media (prefers-reduced-motion: reduce) { .hero__slide.active { animation: none; transform: none; } }
.hero-overlay {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(120deg, rgba(15, 23, 42, 0.82) 0%, rgba(4, 120, 87, 0.55) 50%, rgba(15, 23, 42, 0.70) 100%);
}
.hero-content { position: relative; padding-block: var(--s16); max-width: 820px; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: var(--s2); background: rgba(255, 255, 255, 0.12); border: 1px solid rgba(255, 255, 255, 0.25); backdrop-filter: blur(6px); color: var(--white); padding: 8px 16px; border-radius: var(--r-full); font-size: var(--text-xs); font-weight: var(--fw-semibold); letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: var(--s5); }
.hero-eyebrow .dot { width: 8px; height: 8px; background: var(--accent); border-radius: 50%; animation: pulse 1.6s infinite; }
.hero-headline { color: var(--white); font-size: clamp(2.25rem, 5.2vw, var(--text-6xl)); margin-bottom: var(--s5); letter-spacing: -0.02em; }
.hero-headline em { font-style: normal; color: #6EE7B7; }
.hero-subheadline { color: rgba(248, 250, 252, 0.92); font-size: clamp(var(--text-lg), 1.6vw, var(--text-xl)); line-height: var(--lh-relaxed); max-width: 58ch; margin-bottom: var(--s8); }
.hero-cta-group { display: flex; gap: var(--s4); flex-wrap: wrap; margin-bottom: var(--s8); }
.hero-trust { display: flex; flex-wrap: wrap; gap: var(--s5); color: rgba(248, 250, 252, 0.9); font-size: var(--text-sm); font-weight: var(--fw-medium); }
.hero-trust span { display: inline-flex; align-items: center; gap: 6px; }
.hero-trust .check { color: var(--accent); }

.breadcrumb { font-size: var(--text-sm); color: rgba(248, 250, 252, 0.8); margin-bottom: var(--s4); }
.breadcrumb a { color: rgba(248, 250, 252, 0.8); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb .sep { margin: 0 8px; opacity: 0.5; }

.hero-dots { position: absolute; bottom: var(--s6); left: 50%; transform: translateX(-50%); display: flex; gap: var(--s2); z-index: 2; }
.hero-dot { width: 36px; height: 4px; background: rgba(255, 255, 255, 0.35); border: 0; border-radius: var(--r-full); cursor: pointer; transition: background var(--t-base); padding: 0; }
.hero-dot[aria-selected="true"] { background: var(--accent); }
.hero-prev, .hero-next { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(15, 23, 42, 0.45); color: var(--white); border: 1px solid rgba(255, 255, 255, 0.3); width: 48px; height: 48px; border-radius: 50%; cursor: pointer; font-size: 22px; z-index: 2; transition: all var(--t-base); }
.hero-prev:hover, .hero-next:hover { background: var(--primary); border-color: var(--primary); }
.hero-prev { left: var(--s5); }
.hero-next { right: var(--s5); }
@media (max-width: 768px) { .hero-prev, .hero-next { display: none; } }

/* ========== Stats Overlap ========== */
.stats-overlap { margin-top: -60px; position: relative; z-index: 3; }
.stats-card { background: var(--white); border-radius: var(--r-xl); box-shadow: var(--sh-xl); padding: var(--s8) var(--s6); display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s6); }
@media (max-width: 768px) { .stats-card { grid-template-columns: repeat(2, 1fr); padding: var(--s6); } }
.stat { text-align: center; }
.stat-number { font-family: var(--font-display); font-size: clamp(2rem, 4vw, var(--text-5xl)); font-weight: var(--fw-extra); color: var(--primary); line-height: 1; margin-bottom: var(--s2); }
.stat-label { font-size: var(--text-sm); color: var(--text-muted); font-weight: var(--fw-medium); }

/* ========== Section heading ========== */
.section-head { text-align: center; max-width: 760px; margin: 0 auto var(--s12); }
.section-head.left { text-align: left; margin: 0 0 var(--s10); }

/* ========== Cards ========== */
.card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: var(--s8) var(--s6); transition: all var(--t-base);
  display: flex; flex-direction: column; height: 100%;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); border-color: transparent; }
.card h3 { margin-bottom: var(--s3); }
.card p { flex: 1; }

.service-card { position: relative; overflow: hidden; }
.service-card .num { font-family: var(--font-display); font-size: var(--text-4xl); font-weight: var(--fw-extra); color: var(--primary); opacity: 0.18; line-height: 1; margin-bottom: var(--s2); }
.service-card h3 { font-size: var(--text-xl); }
.service-card .card-link { color: var(--primary); font-weight: var(--fw-semibold); font-size: var(--text-sm); margin-top: var(--s4); display: inline-flex; align-items: center; gap: 6px; transition: gap var(--t-base); }
.service-card .card-link:hover { gap: 12px; }
.service-card::after { content: ""; position: absolute; bottom: 0; left: 0; height: 4px; width: 0; background: var(--primary); transition: width var(--t-base); }
.service-card:hover::after { width: 100%; }

.why-card { padding: var(--s6); display: flex; gap: var(--s4); align-items: flex-start; background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); height: 100%; transition: all var(--t-base); }
.why-card:hover { border-color: var(--primary); box-shadow: var(--sh-md); }
.why-card .icon { flex-shrink: 0; width: 52px; height: 52px; border-radius: var(--r-md); background: var(--primary-soft); color: var(--primary); display: inline-flex; align-items: center; justify-content: center; font-size: 24px; }
.why-card h3 { font-size: var(--text-lg); margin-bottom: var(--s2); }
.why-card p { font-size: var(--text-sm); margin: 0; }

.numbered-card { background: var(--dark-alt); border-radius: var(--r-lg); padding: var(--s8) var(--s6); position: relative; overflow: hidden; color: var(--white); height: 100%; }
.numbered-card .big-num { position: absolute; right: var(--s4); top: var(--s2); font-family: var(--font-display); font-size: 6rem; font-weight: var(--fw-extra); color: rgba(16, 185, 129, 0.16); line-height: 1; }
.numbered-card h3 { color: var(--white); position: relative; margin-bottom: var(--s3); font-size: var(--text-xl); }
.numbered-card p { color: rgba(248, 250, 252, 0.82); position: relative; margin: 0; }

/* ========== Trust Strip ========== */
.trust-strip { background: var(--off-white); padding: var(--s6) 0; border-block: 1px solid var(--border); }
.trust-strip .items { display: flex; flex-wrap: wrap; gap: var(--s6) var(--s10); justify-content: center; align-items: center; }
.trust-strip .item { display: inline-flex; align-items: center; gap: var(--s3); font-family: var(--font-heading); font-size: var(--text-sm); font-weight: var(--fw-semibold); color: var(--text-muted); }
.trust-strip .item svg { color: var(--primary); flex-shrink: 0; }

/* ========== Process ========== */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s6); position: relative; }
@media (max-width: 900px) { .process { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .process { grid-template-columns: 1fr; } }
.step { background: var(--white); padding: var(--s6); border-radius: var(--r-lg); border: 1px solid var(--border); position: relative; }
.step-num { width: 44px; height: 44px; border-radius: 50%; background: var(--primary); color: var(--white); font-family: var(--font-display); font-weight: var(--fw-extra); display: inline-flex; align-items: center; justify-content: center; margin-bottom: var(--s4); }
.step h3 { font-size: var(--text-lg); margin-bottom: var(--s2); }
.step p { font-size: var(--text-sm); margin: 0; }

/* ========== Split media section ========== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s12); align-items: center; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: var(--s8); } }
.split-media { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-lg); aspect-ratio: 4/3; background: var(--cream); }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-body h2 { margin-bottom: var(--s4); }
.check-list { list-style: none; padding: 0; margin: var(--s6) 0; }
.check-list li { padding-left: 32px; position: relative; margin-bottom: var(--s3); color: var(--text); line-height: var(--lh-normal); }
.check-list li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--primary-soft); color: var(--primary);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: var(--fw-bold); font-size: 13px;
}

/* ========== Testimonials placeholder ========== */
.review-stub { text-align: center; max-width: 640px; margin: 0 auto; padding: var(--s12) var(--s6); border: 2px dashed var(--border-strong); border-radius: var(--r-lg); background: var(--off-white); }
.review-stub h3 { margin-bottom: var(--s3); }
.review-stub .stars { color: var(--accent); font-size: var(--text-2xl); letter-spacing: 2px; margin-bottom: var(--s3); }

/* ========== FAQ ========== */
.faq-list { max-width: 840px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  width: 100%; background: transparent; border: 0; padding: var(--s5) 0;
  display: flex; justify-content: space-between; align-items: center; gap: var(--s4);
  text-align: left; font-family: var(--font-heading); font-weight: var(--fw-semibold);
  font-size: var(--text-lg); color: var(--text); cursor: pointer;
}
.faq-question:hover { color: var(--primary); }
.faq-icon { flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; background: var(--primary-soft); color: var(--primary); display: inline-flex; align-items: center; justify-content: center; transition: transform var(--t-base); font-size: 16px; font-weight: var(--fw-bold); }
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); background: var(--primary); color: var(--white); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height var(--t-base); }
.faq-answer-inner { padding: 0 0 var(--s5); color: var(--text-muted); line-height: var(--lh-relaxed); }

/* ========== Forms ========== */
.form-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-xl); padding: var(--s8); box-shadow: var(--sh-md); }
.field { margin-bottom: var(--s4); }
.field label { display: block; font-family: var(--font-heading); font-size: var(--text-sm); font-weight: var(--fw-semibold); color: var(--text); margin-bottom: 6px; }
.field input, .field textarea, .field select {
  width: 100%; font-family: var(--font-body); font-size: var(--text-base);
  padding: 14px 16px; background: var(--white); color: var(--text);
  border: 1.5px solid var(--border); border-radius: var(--r-md);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--primary); box-shadow: 0 0 0 4px rgba(4, 120, 87, 0.12); outline: none;
}
.field textarea { min-height: 120px; resize: vertical; }
.field.has-error input, .field.has-error textarea, .field.has-error select { border-color: var(--error); box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.12); }
.field-error { color: var(--error); font-size: var(--text-sm); margin-top: 4px; display: none; }
.field.has-error .field-error { display: block; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s4); }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.form-success, .form-error-msg { display: none; padding: var(--s5); border-radius: var(--r-md); margin-top: var(--s4); }
.form-success { background: var(--primary-soft); color: var(--primary-hover); border: 1px solid var(--primary); }
.form-error-msg { background: #FEE2E2; color: #7F1D1D; border: 1px solid var(--error); }
.form-note { font-size: var(--text-xs); color: var(--text-muted); margin-top: var(--s4); }

/* ========== CTA Band ========== */
.cta-band {
  background: linear-gradient(120deg, var(--dark) 0%, var(--primary-hover) 100%);
  color: var(--white); padding: var(--s16) 0; text-align: center; position: relative; overflow: hidden;
}
.cta-band::before { content: ""; position: absolute; top: -40%; right: -10%; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(closest-side, rgba(245, 158, 11, 0.22), transparent); }
.cta-band h2 { color: var(--white); font-size: clamp(var(--text-3xl), 3vw, var(--text-5xl)); margin-bottom: var(--s4); position: relative; }
.cta-band p { color: rgba(248, 250, 252, 0.88); font-size: var(--text-lg); max-width: 640px; margin: 0 auto var(--s8); position: relative; }
.cta-band .btn-group { display: flex; gap: var(--s4); justify-content: center; flex-wrap: wrap; position: relative; }

/* ========== Footer ========== */
.site-footer { background: var(--dark); color: rgba(248, 250, 252, 0.82); padding: var(--s16) 0 var(--s8); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: var(--s10); }
@media (max-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px)  { .footer-grid { grid-template-columns: 1fr; gap: var(--s8); } }
.site-footer h4 { color: var(--white); font-size: var(--text-sm); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: var(--s5); }
.site-footer a { color: rgba(248, 250, 252, 0.82); font-size: var(--text-sm); }
.site-footer a:hover { color: var(--accent); }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: var(--s3); color: rgba(248, 250, 252, 0.82); font-size: var(--text-sm); }
.footer-brand p { color: rgba(248, 250, 252, 0.7); font-size: var(--text-sm); line-height: var(--lh-relaxed); max-width: 36ch; }
.footer-contact { display: grid; gap: var(--s3); font-size: var(--text-sm); }
.footer-contact .item { display: flex; gap: var(--s3); }
.footer-contact .item-label { color: rgba(248, 250, 252, 0.55); min-width: 64px; text-transform: uppercase; font-size: var(--text-xs); letter-spacing: 0.12em; padding-top: 2px; }
.footer-contact .item-val { color: var(--white); font-weight: var(--fw-medium); }
.footer-contact a.item-val:hover { color: var(--accent); }
.footer-social { display: flex; gap: var(--s3); margin-top: var(--s5); }
.footer-social a { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background: rgba(255, 255, 255, 0.08); transition: all var(--t-fast); color: var(--white); }
.footer-social a:hover { background: var(--primary); }
.footer-bottom { margin-top: var(--s10); padding-top: var(--s6); border-top: 1px solid rgba(255, 255, 255, 0.1); display: flex; justify-content: space-between; gap: var(--s4); flex-wrap: wrap; font-size: var(--text-xs); color: rgba(248, 250, 252, 0.55); }
.footer-bottom a { font-size: var(--text-xs); color: rgba(248, 250, 252, 0.7); margin-left: var(--s4); }

/* ========== Floating UI ========== */
.wa-fab {
  position: fixed; right: 20px; bottom: 20px; width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: var(--white); display: inline-flex; align-items: center; justify-content: center;
  box-shadow: var(--sh-lg); z-index: var(--z-fab); transition: transform var(--t-base);
}
.wa-fab:hover { transform: scale(1.08); color: var(--white); }
@media (max-width: 768px) { .wa-fab { bottom: 88px; } }

.back-to-top {
  position: fixed; left: 20px; bottom: 20px; width: 44px; height: 44px; border-radius: 50%;
  background: var(--dark); color: var(--white); border: 0; cursor: pointer; z-index: var(--z-fab);
  display: inline-flex; align-items: center; justify-content: center; font-size: 20px;
  opacity: 0; visibility: hidden; transition: all var(--t-base);
}
.back-to-top.show { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--primary); }
@media (max-width: 768px) { .back-to-top { bottom: 88px; } }

.mobile-cta-bar {
  display: none; position: fixed; left: 0; right: 0; bottom: 0;
  background: var(--white); border-top: 1px solid var(--border); padding: 10px;
  z-index: var(--z-fab); box-shadow: 0 -4px 12px rgba(15, 23, 42, 0.08);
  grid-template-columns: 1fr 1fr 1fr; gap: 8px;
}
.mobile-cta-bar a { padding: 12px 6px; text-align: center; border-radius: var(--r-md); font-family: var(--font-heading); font-weight: var(--fw-semibold); font-size: var(--text-xs); letter-spacing: 0.04em; text-transform: uppercase; }
.mobile-cta-bar .call { background: var(--emergency); color: var(--white); }
.mobile-cta-bar .wa { background: #25D366; color: var(--white); }
.mobile-cta-bar .quote { background: var(--primary); color: var(--white); }
@media (max-width: 768px) { .mobile-cta-bar { display: grid; } body { padding-bottom: 72px; } }

/* ========== Cookie banner ========== */
.cookie-banner {
  position: fixed; left: 50%; bottom: 20px; transform: translateX(-50%);
  background: var(--dark); color: var(--white); padding: var(--s4) var(--s5); border-radius: var(--r-lg);
  z-index: var(--z-toast); max-width: calc(100vw - 40px); width: 560px; box-shadow: var(--sh-xl);
  display: flex; gap: var(--s4); align-items: center; flex-wrap: wrap;
}
.cookie-banner p { margin: 0; color: rgba(255, 255, 255, 0.88); font-size: var(--text-sm); flex: 1; min-width: 220px; }
.cookie-banner a { color: var(--accent); }
.cookie-banner .btn-sm { padding: 8px 14px; font-size: var(--text-xs); }
@media (max-width: 768px) { .cookie-banner { bottom: 88px; } }

/* ========== Reveal animations ========== */
[data-reveal] { opacity: 0; transform: translateY(20px); transition: opacity var(--t-slow), transform var(--t-slow); }
[data-reveal].revealed { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { [data-reveal] { opacity: 1; transform: none; transition: none; } }

/* ========== Inner page hero ========== */
.page-hero { min-height: 48vh; }
.page-hero .hero-headline { font-size: clamp(2rem, 4vw, var(--text-5xl)); }

/* Gallery placeholder */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s3); }
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
.gallery-item { aspect-ratio: 1; overflow: hidden; border-radius: var(--r-md); background: var(--cream); position: relative; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow); }
.gallery-item:hover img { transform: scale(1.06); }

/* Info card */
.info-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: var(--s6); height: 100%; }
.info-card .label { font-family: var(--font-heading); font-size: var(--text-xs); text-transform: uppercase; letter-spacing: 0.14em; color: var(--text-muted); margin-bottom: 6px; }
.info-card .value { font-family: var(--font-heading); font-size: var(--text-lg); font-weight: var(--fw-semibold); color: var(--text); }
.info-card a.value:hover { color: var(--primary); }
