/* =========================================================
   PAVING UNLIMITED — DESIGN SYSTEM
   Token system: black/near-black + white + charcoal grey + a
   controlled bright yellow accent (flat, never gold/metallic),
   matching the approved brand mark. Signature element: the
   "measure line" — a surveyor's ruled line with tick marks,
   used as a section divider. It echoes the precision of laying
   and measuring paving, and reappears through the page as the
   one recurring motif.
   NOTE: the --gold/--gold-dark/--gold-light variable *names*
   are kept as-is to avoid touching ~15 call sites across this
   file; their *values* below are the approved flat yellow, not
   an actual gold/metallic colour.
   ========================================================= */

:root {
  /* Colour -- approved palette: black/near-black, white, charcoal grey, yellow.
     Yellow is a controlled accent only -- flat and bright, never gold/metallic. */
  --black: #1C1C1C;
  --black-soft: #262524;
  --ink: #2B2A28;
  --charcoal: #4E4F50;
  --gold: #F1B507;
  --gold-dark: #C99500;
  --gold-light: #F6CB4D;
  /* Dedicated dark-amber token for small text and focus outlines on light
     backgrounds. --gold-dark (#C99500) is correct for buttons/borders/hover
     backgrounds, but at 2.7:1 it fails WCAG AA (4.5:1) for text on white --
     confirmed by contrast audit. --accent-ink (#8A6600) passes 4.5:1 on both
     white and off-white while staying in the same amber/yellow family, and
     also clears the 3:1 non-text threshold for focus outlines on dark
     sections, so one value works as a universal focus-ring colour too. */
  --accent-ink: #8A6600;
  --white: #FFFFFF;
  --offwhite: #F7F5F0;
  --stone: #EDEAE2;
  --grey: #6E6B64;
  --grey-line: #DEDAD0;

  /* Type */
  --font-display: 'Montserrat', 'Arial', sans-serif;
  --font-body: 'Inter', 'Arial', sans-serif;

  /* Radius */
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 22px;

  /* Spacing (8px scale) */
  --sp-1: 8px;  --sp-2: 16px; --sp-3: 24px; --sp-4: 32px;
  --sp-5: 40px; --sp-6: 48px; --sp-8: 64px; --sp-10: 80px;
  --sp-15: 120px;

  --shadow-sm: 0 2px 10px rgba(28,28,28,0.06);
  --shadow-md: 0 12px 32px rgba(28,28,28,0.10);
  --container-max: 1240px;
}

/* =========================================================
   SCROLL REVEAL — subtle fade + translateY on entry, applied
   to card-level content throughout the page. Kept understated
   (16px of movement, ease-out) so it reads as premium rather
   than showy, per the animation guidance.
   ========================================================= */
.service-card, .why-card, .process-step, .trust-item {
  opacity: 0; transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}
.service-card.is-visible, .why-card.is-visible, .process-step.is-visible, .trust-item.is-visible {
  opacity: 1; transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .service-card, .why-card, .process-step, .trust-item {
    opacity: 1; transform: none; transition: none;
  }
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color 180ms ease; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--black); margin: 0; letter-spacing: -0.01em; }

.skip-link {
  position: absolute; left: -9999px; top: 0; background: var(--gold); color: var(--black);
  padding: var(--sp-2); z-index: 999; font-weight: 600;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 3px solid var(--accent-ink);
  outline-offset: 2px;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--sp-4);
}
@media (max-width: 900px) { .container { padding: 0 var(--sp-3); } }
@media (max-width: 560px) { .container { padding: 0 20px; } }

.section { padding: var(--sp-15) 0; }
@media (max-width: 900px) { .section { padding: var(--sp-10) 0; } }
@media (max-width: 560px) { .section { padding: 60px 0; } }

.eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-ink);
  margin: 0 0 var(--sp-2);
}
.eyebrow-dark { color: var(--accent-ink); }
.eyebrow-light { color: var(--gold); }

h2 { font-size: 48px; font-weight: 700; line-height: 1.12; margin-bottom: var(--sp-4); max-width: 760px; letter-spacing: -0.015em; text-wrap: balance; }
h2.on-dark { color: var(--white); }
@media (max-width: 900px) { h2 { font-size: 38px; } }
@media (max-width: 560px) { h2 { font-size: 30px; } }

h3 { font-weight: 700; letter-spacing: -0.005em; }

.section-copy { font-size: 19px; line-height: 1.65; color: var(--grey); max-width: 640px; margin: 0 0 var(--sp-6); }
.section-copy.on-dark { color: #C9C6BF; }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  padding: 16px 28px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
  min-height: 48px;
  white-space: nowrap;
}
.btn-primary { background: var(--gold); color: var(--black); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-large { padding: 18px 32px; font-size: 16px; }
.btn-full { width: 100%; }
.btn-header { display: none; }
@media (min-width: 1000px) { .btn-header { display: inline-flex; } }

/* =========================================================
   HEADER / NAV
   ========================================================= */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 220ms ease, border-color 220ms ease;
}
.site-header.is-scrolled {
  border-bottom-color: var(--grey-line);
  box-shadow: 0 4px 16px rgba(28,28,28,0.06);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 80px; gap: var(--sp-4);
}
.logo { display: flex; align-items: center; }
.logo-lockup { height: 54px; width: auto; display: block; }

.primary-nav { display: none; }
.primary-nav ul { display: flex; gap: var(--sp-4); }
.primary-nav a {
  font-size: 15px; font-weight: 500; color: var(--ink);
  transition: color 180ms ease;
}
.primary-nav a:hover { color: var(--gold-dark); }
@media (min-width: 1000px) { .primary-nav { display: block; } }

.nav-toggle {
  width: 44px; height: 44px; border: none; background: transparent;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav-toggle span { width: 22px; height: 2px; background: var(--black); border-radius: 2px; }
@media (min-width: 1000px) { .nav-toggle { display: none; } }

.mobile-drawer {
  position: fixed; top: 0; right: 0; height: 100%; width: min(320px, 85vw);
  background: var(--white); z-index: 200;
  transform: translateX(100%); transition: transform 280ms ease;
  padding: var(--sp-6) var(--sp-4);
  box-shadow: -12px 0 32px rgba(0,0,0,0.12);
}
.mobile-drawer.is-open { transform: translateX(0); }
.mobile-drawer ul { display: flex; flex-direction: column; gap: 4px; margin-bottom: var(--sp-4); }
.mobile-drawer a {
  font-family: var(--font-display); font-weight: 600; font-size: 18px;
  display: flex; align-items: center; min-height: 44px;
}
.drawer-contact { margin-top: var(--sp-4); display: flex; flex-direction: column; gap: var(--sp-2); }
.drawer-contact a { font-size: 14px; color: var(--grey); }

.drawer-overlay {
  position: fixed; inset: 0; background: rgba(28,28,28,0.5);
  z-index: 190; opacity: 0; visibility: hidden; transition: opacity 280ms ease;
}
.drawer-overlay.is-open { opacity: 1; visibility: visible; }

.placeholder-tag {
  font-size: 10px; text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--grey); background: var(--stone); padding: 2px 6px; border-radius: 4px; margin-left: 6px;
}

/* =========================================================
   HERO — full-bleed, single image, dark overlay
   ========================================================= */
.hero {
  position: relative;
  min-height: 94vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  color: var(--white);
  padding-top: var(--sp-10);
  padding-bottom: var(--sp-6);
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,19,17,0.35) 0%, rgba(20,19,17,0.55) 45%, rgba(20,19,17,0.92) 100%);
}

.hero-content { position: relative; z-index: 1; max-width: 760px; animation: heroRise 700ms ease-out both; }
.hero-content h1 {
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.05;
  color: var(--white);
  margin: 0 0 var(--sp-3);
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.hero-copy { font-size: 20px; color: rgba(255,255,255,0.86); max-width: 560px; margin: 0 0 var(--sp-5); line-height: 1.6; text-wrap: pretty; }
.hero-ctas { display: flex; flex-wrap: wrap; align-items: center; gap: var(--sp-4); }
.hero-quick-contact { display: flex; gap: var(--sp-3); }
.hero-quick-contact a {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: rgba(255,255,255,0.88); font-size: 12px; font-weight: 600;
  letter-spacing: 0.03em; text-transform: uppercase;
  transition: color 180ms ease, transform 180ms ease;
}
.hero-quick-contact a:hover { color: var(--gold); transform: translateY(-2px); }
.hero-quick-contact svg { width: 22px; height: 22px; }
@media (max-width: 700px) {
  .hero-ctas { flex-direction: column; align-items: flex-start; gap: var(--sp-3); }
  .hero-quick-contact { gap: var(--sp-4); }
}

@keyframes heroRise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) { .hero-content { animation: none; } }

.hero-tagline {
  position: relative; z-index: 1;
  margin-top: var(--sp-8);
  max-width: 660px;
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  border-left: 2px solid var(--gold);
  padding-left: var(--sp-3);
}
@media (max-width: 700px) {
  .hero { min-height: auto; padding-top: var(--sp-8); padding-bottom: var(--sp-5); }
  .hero-ctas .btn { width: 100%; }
  .hero-ctas { flex-direction: column; }
  .hero-tagline { margin-top: var(--sp-6); }
}

/* Signature: measure-line divider */
.measure-divider { width: 100%; overflow: hidden; }
.measure-divider svg { width: 100%; height: 24px; display: block; }
.measure-line { stroke: var(--gold); stroke-width: 2; }

/* =========================================================
   TRUST BAR
   ========================================================= */
.trust-bar { background: var(--black); padding: var(--sp-8) 0; }
.trust-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-5);
  text-align: center;
}
@media (min-width: 700px) { .trust-grid { grid-template-columns: repeat(5, 1fr); gap: var(--sp-4); } }
.trust-item { display: flex; flex-direction: column; gap: 6px; }
.trust-figure { font-family: var(--font-display); font-weight: 800; font-size: 40px; color: var(--gold); letter-spacing: -0.01em; line-height: 1; }
@media (max-width: 560px) { .trust-figure { font-size: 32px; } }
.trust-label { font-size: 13px; color: #C9C6BF; text-transform: uppercase; letter-spacing: 0.08em; }

/* =========================================================
   GALLERY
   ========================================================= */
.masonry {
  column-count: 1; column-gap: var(--sp-3);
}
@media (min-width: 640px) { .masonry { column-count: 2; } }
@media (min-width: 980px) { .masonry { column-count: 3; } }

.masonry-item {
  display: block; width: 100%; border: none; background: none; padding: 0;
  margin: 0 0 var(--sp-3); break-inside: avoid; border-radius: var(--radius-md);
  overflow: hidden; box-shadow: var(--shadow-sm); transition: transform 200ms ease, box-shadow 200ms ease;
}
.masonry-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.masonry-item { aspect-ratio: 4 / 3; }
.masonry-item--tall { aspect-ratio: 3 / 4; }
.masonry-item--med { aspect-ratio: 4 / 3; }
.masonry-item--short { aspect-ratio: 16 / 10; }
.masonry-item img {
  display: block; width: 100%; height: 100%; object-fit: cover;
  transition: transform 450ms ease;
}
.masonry-item:hover img { transform: scale(1.05); }

/* Consistent colour grade for the remaining stock photography (Services
   section only). NOT applied to the hero or gallery, since those are now
   real, individually colour-corrected project photos -- stacking a second,
   generic filter on top would risk exactly the "doesn't look real anymore"
   problem we're avoiding. */
.service-photo img {
  filter: saturate(0.92) contrast(1.05) brightness(0.99);
}
/* Real photos (Driveways, Estate Roads) are already individually colour-corrected --
   skip the generic stock-photo filter so they aren't processed twice. */
.service-photo--real img {
  filter: none;
}

.lightbox {
  position: fixed; inset: 0; background: rgba(20,19,17,0.94); z-index: 300;
  display: none; align-items: center; justify-content: center; padding: var(--sp-4);
  opacity: 0; transition: opacity 220ms ease;
}
.lightbox.is-open { display: flex; }
.lightbox.is-visible { opacity: 1; }
.lightbox-content {
  max-width: 900px; width: 100%; text-align: center;
  transform: scale(0.98); transition: transform 220ms ease;
}
.lightbox.is-visible .lightbox-content { transform: scale(1); }
.lightbox-image {
  width: 100%; max-height: 78vh; object-fit: contain; border-radius: var(--radius-md);
}
.lightbox-caption { color: var(--white); margin-top: var(--sp-2); font-size: 15px; }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute; background: transparent; border: none; color: var(--white);
  font-size: 32px; line-height: 1; padding: var(--sp-2); border-radius: 50%;
}
.lightbox-close { top: var(--sp-3); right: var(--sp-3); }
.lightbox-prev { left: var(--sp-3); top: 50%; transform: translateY(-50%); }
.lightbox-next { right: var(--sp-3); top: 50%; transform: translateY(-50%); }
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { color: var(--gold); }

/* =========================================================
   SERVICES
   ========================================================= */
.services-grid {
  display: grid; grid-template-columns: 1fr; gap: var(--sp-3);
}
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  background: var(--offwhite); border: 1px solid var(--grey-line); border-radius: var(--radius-md);
  overflow: hidden; transition: box-shadow 200ms ease, transform 200ms ease;
}
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.service-photo { aspect-ratio: 7 / 5; overflow: hidden; background: var(--stone); }
.service-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 450ms ease; }
.service-card:hover .service-photo img { transform: scale(1.06); }
.service-body { padding: var(--sp-4); }
.service-card h3 { font-size: 20px; margin-bottom: 8px; }
.service-card p { font-size: 15px; color: var(--grey); margin: 0; }

/* =========================================================
   WHY CHOOSE US
   ========================================================= */
.why-section { background: var(--stone); }
.why-inner { display: grid; grid-template-columns: 1fr; gap: var(--sp-6); }
@media (min-width: 900px) { .why-inner { grid-template-columns: 0.9fr 1.1fr; gap: var(--sp-8); } }
.why-grid { display: grid; grid-template-columns: 1fr; gap: var(--sp-3); }
@media (min-width: 560px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
.why-card {
  background: var(--white); border-radius: var(--radius-md); padding: var(--sp-4);
  border-left: 3px solid var(--gold);
}
.why-card h3 { font-size: 18px; margin-bottom: 8px; }
.why-card p { font-size: 15px; color: var(--grey); margin: 0; }

/* =========================================================
   PROCESS
   ========================================================= */
.process-section { background: var(--black); }
.process-timeline {
  display: grid; grid-template-columns: 1fr; gap: var(--sp-6);
  margin-top: var(--sp-6); position: relative;
}
@media (min-width: 900px) {
  .process-timeline {
    grid-template-columns: repeat(5, 1fr);
    gap: var(--sp-3);
    position: relative;
  }
  .process-timeline::before {
    content: "";
    position: absolute;
    top: 22px;
    left: calc(10% + 22px);
    right: calc(10% + 22px);
    height: 1px;
    background: rgba(241,181,7,0.3);
  }
}
.process-step { position: relative; }
.process-node {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--black); border: 1px solid var(--gold);
  font-family: var(--font-display); font-weight: 800; color: var(--gold); font-size: 15px;
  margin-bottom: var(--sp-3); position: relative; z-index: 1;
}
.process-step h3 { color: var(--white); font-size: 18px; margin: 0 0 8px; }
.process-step p { color: #B9B6AE; font-size: 14.5px; margin: 0; max-width: 240px; }

/* =========================================================
   CONTACT / QUOTE FORM
   ========================================================= */
.contact-section { background: var(--offwhite); }
.contact-inner { display: grid; grid-template-columns: 1fr; gap: var(--sp-6); }
@media (min-width: 900px) { .contact-inner { grid-template-columns: 0.9fr 1.1fr; gap: var(--sp-8); } }

.contact-buttons {
  display: grid; grid-template-columns: 1fr; gap: var(--sp-2); margin: var(--sp-4) 0;
}
@media (min-width: 560px) { .contact-buttons { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .contact-buttons { grid-template-columns: 1fr; } }
.contact-btn {
  display: flex; align-items: center; gap: var(--sp-3);
  background: var(--black); color: var(--white);
  border-radius: var(--radius-md); padding: var(--sp-3) var(--sp-4);
  min-height: 64px; position: relative;
  transition: transform 180ms ease, background-color 180ms ease;
}
.contact-btn:hover { background: var(--black-soft); transform: translateY(-2px); }
.contact-btn svg { width: 24px; height: 24px; flex-shrink: 0; color: var(--gold); }
.contact-btn span:not(.placeholder-tag) { font-size: 14px; line-height: 1.4; }
.contact-btn strong { font-size: 16px; font-weight: 700; }
.contact-btn--whatsapp svg { color: #25D366; }
.contact-btn .placeholder-tag { position: absolute; top: 8px; right: 10px; background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.6); }

.response-note { font-size: 14px; color: var(--grey); }

.reassurance-row {
  display: flex; flex-wrap: wrap; gap: var(--sp-2) var(--sp-4);
  margin-top: var(--sp-4); padding-top: var(--sp-4); border-top: 1px solid var(--grey-line);
}
.reassurance-row li {
  font-family: var(--font-display); font-weight: 700; font-size: 14px; color: var(--black);
  display: flex; align-items: center; gap: 8px;
}
.reassurance-row li::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--gold-dark); flex-shrink: 0;
}
.reassurance-note { font-weight: 400; color: var(--grey); text-transform: none; font-size: 13px; }

.quote-form {
  background: var(--white); border-radius: var(--radius-lg); padding: var(--sp-5);
  box-shadow: var(--shadow-sm); border: 1px solid var(--grey-line);
}
.hp-field { position: absolute; left: -9999px; }
.form-row { margin-bottom: var(--sp-3); display: flex; flex-direction: column; gap: 8px; }
.form-row-split { display: grid; grid-template-columns: 1fr; gap: var(--sp-3); }
@media (min-width: 560px) { .form-row-split { grid-template-columns: 1fr 1fr; } }
.form-row-split > div { display: flex; flex-direction: column; gap: 8px; }
label { font-size: 14px; font-weight: 600; color: var(--black); }
input, select, textarea {
  height: 52px; border: 1px solid var(--grey-line); border-radius: var(--radius-sm);
  padding: 0 16px; font-family: var(--font-body); font-size: 15px; background: var(--white); color: var(--ink);
}
textarea { height: auto; min-height: 120px; padding: 14px 16px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--gold); }
input[type="file"] { height: auto; padding: 12px 16px; }
.field-error { font-size: 13px; color: #B3261E; min-height: 16px; }
.form-success {
  margin-top: var(--sp-3); background: #EAF4EC; color: #1E5C34; border-radius: var(--radius-sm);
  padding: var(--sp-2); font-size: 14px;
}
.form-error {
  margin-top: var(--sp-3); background: #FBEAEA; color: #8A1F1F; border-radius: var(--radius-sm);
  padding: var(--sp-2); font-size: 14px;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { background: var(--black); color: #C9C6BF; padding-top: var(--sp-10); }
.footer-grid {
  display: grid; grid-template-columns: 1fr; gap: var(--sp-6);
  padding-bottom: var(--sp-8);
}
@media (min-width: 780px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer-col h3 { color: var(--white); font-size: 15px; margin-bottom: var(--sp-2); }
.footer-col ul { display: flex; flex-direction: column; gap: 2px; }
.footer-col a { font-size: 14px; color: #C9C6BF; display: flex; align-items: center; min-height: 44px; }
.footer-col a:hover { color: var(--gold); }
.plain-list li { display: flex; align-items: center; min-height: 44px; font-size: 14px; }
.plain-list li a { min-height: auto; }
.logo-footer { margin-bottom: var(--sp-2); }
.logo-footer .logo-lockup { height: 48px; }
.footer-col p { font-size: 14px; margin: 0 0 var(--sp-3); max-width: 280px; }
.footer-social { display: flex; gap: var(--sp-3); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding: var(--sp-3) 0; }
.footer-bottom-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 4px 24px; font-size: 13px; }
.footer-bottom-inner p { margin: 0; }
.footer-tagline { color: var(--gold); font-weight: 600; }
.footer-credit { color: #8B887F; }

/* =========================================================
   STICKY MOBILE BAR
   ========================================================= */
.sticky-mobile-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 150;
  display: flex; box-shadow: 0 -6px 20px rgba(0,0,0,0.15);
}
@media (min-width: 900px) { .sticky-mobile-bar { display: none; } }
.sticky-btn {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
  height: 56px; font-family: var(--font-display); font-weight: 600; font-size: 14px;
}
.sticky-btn svg { width: 18px; height: 18px; }
.sticky-call { background: var(--black); color: var(--gold); }
.sticky-whatsapp { background: #25D366; color: var(--white); }

@media (max-width: 899px) { body { padding-bottom: 56px; } }
