/* =========================================================================
   Fob Off: Locksmith Site
   Stylesheet: design tokens, layout, components, responsive rules
   ========================================================================= */

/* -------- 1. Tokens -------- */
:root {
  --bg-page: #f2f2f2;
  --bg-card: #0e0e12;
  --bg-card-2: #16161c;
  --bg-card-3: #1d1d24;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);

  --text: #ffffff;
  --text-muted: #a8a8b3;
  --text-dim: #6f6f7c;
  --text-on-light: #16161c;
  --text-on-light-muted: #5a5a66;

  --accent: #f5b400;
  --accent-2: #ffc934;
  --accent-soft: rgba(245, 180, 0, 0.14);

  --radius-card: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --radius-pill: 999px;

  --shadow-card: 0 30px 60px -30px rgba(15, 15, 22, 0.45);
  --shadow-soft: 0 10px 30px -15px rgba(15, 15, 22, 0.35);

  --container: 1240px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);

  --font-display: "Sora", "Plus Jakarta Sans", system-ui, sans-serif;
  --font-body: "Plus Jakarta Sans", system-ui, sans-serif;

  /* Fixed header: used for scroll anchoring (no body padding-top; hero is flush). */
  --site-header-h: 80px;

  /* Home hero: fixed outer height so slides / copy / fonts cannot resize the band. */
  --hero-bleed-h: 760px;
}

/* -------- 2. Reset & base -------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg-page);
  color: var(--text-on-light);
  padding-top: 0;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

input,
textarea,
select {
  font: inherit;
  color: inherit;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
}

p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* -------- 3. Layout primitives -------- */
.shell {
  max-width: var(--container);
  margin: 24px auto;
  padding: 0 16px;
}

/* Full-bleed shell: top hero band stretches edge-to-edge.
   Inner sections re-center their content via padding-inline. */
.shell--bleed {
  max-width: none;
  margin: 0;
  padding: 0;
}

.shell--bleed > .card-frame {
  border-radius: 0 0 36px 36px;
  box-shadow: 0 30px 60px -40px rgba(15, 15, 22, 0.55);
}

.shell--bleed .site-header {
  padding-inline: max(28px, calc((100vw - 1240px) / 2 + 28px));
  border-radius: 0 0 18px 18px;
}

.shell--bleed .hero {
  padding-inline: max(40px, calc((100vw - 1240px) / 2 + 40px));
  padding-top: calc(var(--site-header-h) + 72px);
  padding-bottom: 72px;
  box-sizing: border-box;
  min-height: max(720px, calc(100svh + 24px));
  height: auto;
  overflow: clip;
  display: flex;
  flex-direction: column;
}

.shell--bleed .hero .hero__inner {
  flex: 1 1 auto;
  min-height: 0;
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}

.shell--bleed .hero .hero__copy {
  width: 100%;
}

.shell--bleed .hero .hero__controls {
  margin-top: 0;
  flex-shrink: 0;
  width: 100%;
}

.shell--bleed .brand-strip {
  padding-inline: max(40px, calc((100vw - 1240px) / 2 + 40px));
}

.shell--bleed .page-hero {
  padding-inline: max(40px, calc((100vw - 1240px) / 2 + 40px));
  padding-top: calc(var(--site-header-h) + 24px);
  padding-bottom: 88px;
}

.shell--bleed > .site-footer {
  padding-inline: max(40px, calc((100vw - 1240px) / 2 + 40px));
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-top-left-radius: 36px;
  border-top-right-radius: 36px;
}

/* Placeholder values awaiting real client info: visibly italicised
   so they're easy to spot and replace. */
[data-placeholder] {
  font-style: italic;
  opacity: 0.65;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

.card-frame {
  background: var(--bg-card);
  color: var(--text);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.section {
  padding: 96px 0;
  scroll-margin-top: calc(var(--site-header-h) + 12px);
}

.section--tight {
  padding: 72px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  margin: 14px 0 16px;
}

.section-lede {
  color: var(--text-muted);
  max-width: 60ch;
  margin: 0;
}

.section--light .section-lede {
  color: var(--text-on-light-muted);
}

/* -------- 4. Buttons -------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.01em;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease),
    color 0.2s var(--ease), box-shadow 0.2s var(--ease);
  white-space: nowrap;
}

.btn svg {
  width: 16px;
  height: 16px;
}

.btn--primary {
  background: var(--accent);
  color: #1a1300;
}

.btn--primary:hover {
  background: var(--accent-2);
  transform: translateY(-1px);
  box-shadow: 0 12px 24px -10px rgba(245, 180, 0, 0.55);
}

.btn--light {
  background: #ffffff;
  color: var(--text-on-light);
}

.btn--light:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px -10px rgba(0, 0, 0, 0.4);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line-strong);
}

.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn--lg {
  padding: 18px 28px;
  font-size: 15px;
}

.btn--header {
  padding: 10px 20px;
  font-size: 13px;
  letter-spacing: 0.03em;
}

/* -------- 5. Header -------- */
.site-header {
  padding: 14px 24px;
  background: var(--bg-card);
  border-bottom: 1px solid var(--line);
  border-top-left-radius: var(--radius-card);
  border-top-right-radius: var(--radius-card);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease),
    box-shadow 0.35s var(--ease), backdrop-filter 0.35s var(--ease);
}

/* Elevated chrome once content scrolls underneath: must stay readable on
   light sections (e.g. section--light / grey page) and still feel at home
   over the dark hero. */
.site-header.is-scrolled {
  background: rgba(14, 14, 18, 0.94);
  border-bottom-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 18px 48px -16px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
}

@media (prefers-reduced-transparency: reduce) {
  .site-header,
  .site-header.is-scrolled {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .site-header.is-scrolled {
    background: var(--bg-card);
  }
}

.site-header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  min-height: 44px;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  color: var(--text);
  flex-shrink: 0;
  z-index: 1;
}

.brand__mark {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  width: auto;
  height: auto;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
}

.brand__mark img {
  display: block;
  width: auto;
  height: clamp(42px, 5.6vw, 58px);
  max-width: min(290px, 68vw);
  object-fit: contain;
}

.brand__mark svg {
  display: block;
  width: clamp(30px, 4vw, 40px);
  height: auto;
  color: var(--accent);
}

.footer-brand .brand__mark img {
  height: clamp(44px, 6vw, 66px);
  max-width: min(320px, 78vw);
}

.primary-nav {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(6px, 2vw, 28px);
  padding: 0;
  border: none;
  background: none;
}

.primary-nav a {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 10px 6px;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: color 0.2s var(--ease);
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 6px;
  right: 6px;
  bottom: 4px;
  height: 2px;
  border-radius: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s var(--ease);
  opacity: 0.95;
}

.primary-nav a:hover {
  color: var(--text);
}

.primary-nav a:hover::after {
  transform: scaleX(0.35);
}

.primary-nav a.is-active {
  color: var(--text);
  font-weight: 600;
}

.primary-nav a.is-active::after {
  transform: scaleX(1);
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  z-index: 1;
  margin-left: auto;
  padding: 0;
  border: none;
}

.icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--text);
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
  position: relative;
}

.icon-btn:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--accent);
}

.icon-btn svg {
  width: 18px;
  height: 18px;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
}

.header-phone__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.06);
  color: var(--accent);
}

.header-phone__icon svg {
  width: 16px;
  height: 16px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: transparent;
  border: 1px solid var(--line);
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease),
    background 0.2s var(--ease);
}

.nav-toggle:hover {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
}

.nav-toggle svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 960px) {
  .primary-nav a {
    font-size: 13px;
    padding: 10px 4px;
  }
  .primary-nav a::after {
    left: 4px;
    right: 4px;
  }
}

/* -------- 6. Hero -------- */
.hero {
  position: relative;
  min-height: 560px;
  padding: 56px 56px 56px;
  overflow: hidden;
  isolation: isolate;
  background: #0e0e12;
  scroll-margin-top: var(--site-header-h);
}

/* Photo carousel: fills the hero, fades between slides */
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 0.9s var(--ease);
}

.hero__media img.is-active {
  opacity: 1;
}

/* Strong gradient overlay so headline + copy stays readable on any photo */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
      100deg,
      rgba(14, 14, 18, 0.92) 0%,
      rgba(14, 14, 18, 0.7) 40%,
      rgba(14, 14, 18, 0.3) 80%,
      rgba(14, 14, 18, 0.15) 100%
    ),
    radial-gradient(
      120% 90% at 95% 100%,
      rgba(245, 180, 0, 0.32) 0%,
      transparent 60%
    );
  z-index: -1;
}

.hero__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
  position: relative;
  z-index: 2;
}

.hero__copy {
  max-width: 700px;
  padding: 0;
}

.hero__title {
  font-size: clamp(40px, 6vw, 78px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}

.hero__title span {
  color: var(--accent);
}

.hero__lede {
  color: rgba(255, 255, 255, 0.78);
  max-width: 52ch;
  margin-bottom: 28px;
  font-size: 17px;
}

.hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero__controls {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 28px;
  margin-top: 8px;
  max-width: 700px;
}

.slider-arrows {
  display: flex;
  gap: 10px;
}

.slider-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: grid;
  place-items: center;
  color: var(--text);
  transition: background 0.2s var(--ease), color 0.2s var(--ease),
    border-color 0.2s var(--ease);
}

.slider-arrow:hover {
  background: var(--accent);
  color: #1a1300;
  border-color: var(--accent);
}

.slider-arrow svg {
  width: 18px;
  height: 18px;
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.slider-dot {
  width: 28px;
  height: 4px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.2);
  transition: background 0.2s var(--ease), width 0.2s var(--ease);
}

.slider-dot.is-active {
  background: var(--accent);
  width: 40px;
}

/* Slim page hero (services / about / contact) */
.page-hero {
  padding: 80px 56px 72px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      110% 80% at 100% 0%,
      rgba(245, 180, 0, 0.18) 0%,
      transparent 60%
    ),
    linear-gradient(180deg, var(--bg-card-2), var(--bg-card));
  z-index: -1;
}

.page-hero__inner {
  max-width: 760px;
}

/* Page hero with accent photo on the right (services / about / contact) */
.page-hero--media {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 56px;
  align-items: center;
}

.page-hero--media .page-hero__inner {
  max-width: none;
}

.page-hero__image {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.6);
  isolation: isolate;
}

.page-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-hero__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(14, 14, 18, 0.35) 100%);
  pointer-events: none;
}

@media (max-width: 880px) {
  .page-hero--media {
    grid-template-columns: 1fr;
  }
  .page-hero__image {
    display: none;
  }
}

.page-hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  margin: 12px 0 18px;
}

.page-hero p {
  color: var(--text-muted);
  font-size: 17px;
  max-width: 60ch;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
}

.breadcrumb a:hover {
  color: var(--accent);
}

.breadcrumb .sep {
  color: var(--text-dim);
}

.breadcrumb .current {
  color: var(--accent);
}

/* -------- 7. Brand strip -------- */
.brand-strip {
  background: #ffffff;
  color: var(--text-on-light);
  padding: 36px 56px;
  position: relative;
}

.brand-strip__inner {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 28px;
  align-items: center;
}

.brand-strip__inner.is-ticker {
  width: max-content;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  animation: brandTicker var(--ticker-duration, 20s) linear infinite;
  will-change: transform;
}

.brand-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  color: #2a2a33;
  letter-spacing: -0.01em;
  opacity: 0.75;
  transition: opacity 0.2s var(--ease), color 0.2s var(--ease);
  position: relative;
  padding: 8px 4px;
}

.brand-logo small {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #7a7a85;
  margin-top: 2px;
}

.brand-logo:hover {
  opacity: 1;
  color: var(--bg-card);
}

.brand-strip__accent {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 220px;
  height: 56px;
  background: var(--accent);
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
  opacity: 0.95;
}

@keyframes brandTicker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-1 * var(--ticker-shift, 0px)));
  }
}

/* -------- 8. Light sections (off-card) -------- */
.section--light {
  background: var(--bg-page);
  color: var(--text-on-light);
}

.section--dark {
  background: var(--bg-card);
  color: var(--text);
}

.section--dark.section--rounded {
  border-radius: var(--radius-card);
  margin: 24px 0;
}

.section--gray {
  background: #e9e9ee;
  color: var(--text-on-light);
}

.section-head {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 56px;
}

.section-head--center {
  grid-template-columns: 1fr;
  text-align: center;
  justify-items: center;
  margin-bottom: 56px;
}

.section-head--stack {
  grid-template-columns: 1fr;
  gap: 12px;
}

#contact .section-head {
  grid-template-columns: 1fr;
  gap: 12px;
}

/* -------- 9. Service cards -------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.service-card {
  background: #ffffff;
  border: 1px solid #e4e4ea;
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
  position: relative;
  overflow: hidden;
}

.section--dark .service-card {
  background: var(--bg-card-2);
  border-color: var(--line);
  color: var(--text);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: auto -40% -40% auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(
    circle,
    rgba(245, 180, 0, 0.12) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: var(--shadow-soft);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
}

.service-card__icon svg {
  width: 28px;
  height: 28px;
}

.service-card h3 {
  font-size: 20px;
}

.service-card p {
  color: var(--text-on-light-muted);
  font-size: 14.5px;
  flex: 1;
  margin: 0;
}

.section--dark .service-card p {
  color: var(--text-muted);
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-weight: 600;
  font-size: 14px;
}

.service-card__link svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s var(--ease);
}

.service-card:hover .service-card__link svg {
  transform: translateX(4px);
}

/* -------- 10. About snippet / split -------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.split__media {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-soft);
}

.split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Decorative content card variant: used when no photo is available */
.split__media--card {
  aspect-ratio: auto;
  background: var(--bg-card);
  color: var(--text);
  padding: 40px 36px 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  overflow: visible;
}

.split__media--card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(140% 90% at 110% -10%, rgba(245, 180, 0, 0.18), transparent 55%);
  pointer-events: none;
  border-radius: inherit;
}

.split__media--card > * {
  position: relative;
}

.split__media--card .media__eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.split__media--card .media__title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #fff;
}

.split__media--card .media__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 6px 0 4px;
}

.split__media--card .media__list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.45;
}

.split__media--card .media__list li svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--accent);
  margin-top: 1px;
}

.split__media--card .media__footnote {
  font-size: 13px;
  color: var(--text-muted);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 18px;
  margin-top: auto;
}

.split__media .floating-stat {
  position: absolute;
  left: 24px;
  bottom: 24px;
  background: var(--bg-card);
  color: var(--text);
  padding: 18px 22px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-card);
}

.floating-stat__num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
}

.floating-stat__label {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.4;
  max-width: 180px;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid #d6d6dd;
}

.section--dark .stat-row {
  border-top-color: var(--line);
}

.stat__num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
}

.stat__label {
  font-size: 13px;
  color: var(--text-on-light-muted);
}

.section--dark .stat__label {
  color: var(--text-muted);
}

/* -------- 11. Why-Us / feature tiles -------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.feature {
  background: var(--bg-card-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease);
}

.feature:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}

.feature__num {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.08em;
}

.feature h3 {
  font-size: 19px;
}

.feature p {
  color: var(--text-muted);
  font-size: 14.5px;
  margin: 0;
}

/* -------- 12. Testimonials -------- */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.testimonial {
  background: var(--bg-card-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.testimonial__stars {
  display: inline-flex;
  gap: 3px;
  color: var(--accent);
}

.testimonial__stars svg {
  width: 16px;
  height: 16px;
}

.testimonial__quote {
  color: rgba(255, 255, 255, 0.86);
  font-size: 15.5px;
  line-height: 1.6;
  flex: 1;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.testimonial__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial__name {
  font-weight: 600;
  font-size: 14.5px;
}

.testimonial__role {
  font-size: 12.5px;
  color: var(--text-muted);
}

/* -------- 13. CTA Banner -------- */
.cta-banner {
  background: var(--accent);
  color: #1a1300;
  border-radius: var(--radius-card);
  padding: 48px 56px;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 32px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.cta-banner h2 {
  font-size: clamp(26px, 3vw, 36px);
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
}

.cta-banner p {
  margin-top: 12px;
  color: rgba(26, 19, 0, 0.78);
  max-width: 50ch;
}

.cta-banner__actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

/* -------- 14.5 Coverage section -------- */
.coverage {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.coverage-head {
  grid-template-columns: 1fr;
  gap: 10px;
  margin-bottom: 34px;
  align-items: start;
  justify-items: start;
  text-align: left;
}

.coverage-head .section-lede {
  max-width: 68ch;
  margin-left: 0;
}

.coverage__top {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 22px;
  align-items: stretch;
}

.coverage__map-wrap,
.coverage__places,
.coverage__summary {
  background: #ffffff;
  border: 1px solid #e3e6f0;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 55px -42px rgba(15, 15, 22, 0.42);
  padding: 16px;
}

.coverage__map-wrap {
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fd 100%);
}

.coverage__map {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid #d4d9e8;
  height: 270px;
  box-shadow: 0 20px 40px -34px rgba(12, 17, 35, 0.5);
}

.coverage__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.coverage__summary {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 10px;
}

.coverage__summary h3 {
  font-size: 24px;
  color: var(--text-on-light);
  margin: 0;
}

.coverage__summary p {
  color: var(--text-on-light-muted);
  font-size: 14px;
  line-height: 1.6;
}

.coverage-checker {
  margin-top: 6px;
}

.coverage-checker label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-on-light);
}

.coverage-checker__row {
  display: flex;
  gap: 10px;
}

.coverage-checker__row input {
  flex: 1;
  min-width: 0;
  border: 1px solid #d3d8e8;
  border-radius: 12px;
  background: #f7f9fd;
  color: #1f2330;
  font-size: 15px;
  padding: 12px 14px;
}

.coverage-checker__row input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(245, 180, 0, 0.15);
}

.coverage-checker__result {
  margin-top: 10px;
  font-size: 13.5px;
  color: var(--text-on-light-muted);
  min-height: 1.3em;
}

.coverage-checker__result.is-success {
  color: #12813f;
}

.coverage-checker__result.is-warning {
  color: #9a6200;
}

.coverage-checker__result.is-error {
  color: #b32727;
}

.coverage__places h3 {
  font-size: 20px;
  color: var(--text-on-light);
  margin-bottom: 14px;
  text-align: center;
}

.coverage__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  width: 100%;
}

.coverage-chip {
  display: inline-flex;
  align-items: center;
  padding: 9px 15px;
  border-radius: var(--radius-pill);
  background: #f4f6fb;
  border: 1px solid #e1e5f1;
  color: #2a2a33;
  font-size: 13.5px;
  font-weight: 500;
}

/* -------- 14.6 Local SEO sections -------- */
.local-seo__lede {
  max-width: 72ch;
}

.local-seo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.local-seo-card {
  background: #ffffff;
  border: 1px solid #e3e6f0;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 20px 45px -38px rgba(15, 15, 22, 0.42);
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}

.local-seo-card:hover {
  transform: translateY(-3px);
  border-color: rgba(245, 180, 0, 0.7);
  box-shadow: 0 26px 50px -35px rgba(15, 15, 22, 0.5);
}

.local-seo-card__tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7a5700;
  background: rgba(245, 180, 0, 0.18);
  margin-bottom: 10px;
}

.local-seo-card h3 {
  font-size: 20px;
  color: var(--text-on-light);
  margin-bottom: 10px;
}

.local-seo-card p {
  font-size: 14.5px;
  color: var(--text-on-light-muted);
  line-height: 1.6;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid #e3e6f0;
  border-radius: var(--radius-md);
  padding: 0;
  box-shadow: 0 16px 32px -30px rgba(15, 15, 22, 0.45);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  position: relative;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-on-light);
  padding: 18px 52px 18px 20px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #f7f9fd;
  border: 1px solid #d9deeb;
  color: #3b3f4d;
  display: grid;
  place-items: center;
  font-size: 16px;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item__content {
  height: 0;
  overflow: hidden;
  transition: height 0.32s var(--ease);
}

.faq-item__content > p {
  margin: 0;
  padding: 0 20px;
  color: var(--text-on-light-muted);
  font-size: 14.5px;
  line-height: 1.65;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease),
    padding 0.32s var(--ease);
}

.faq-item[open] .faq-item__content > p {
  padding: 0 20px 18px;
  opacity: 1;
  transform: translateY(0);
}

/* -------- 14. Process steps -------- */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}

.step {
  background: var(--bg-card-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
}

.step__num {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 14px;
}

.step h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.step p {
  color: var(--text-muted);
  font-size: 14px;
}

/* -------- 15. Pricing list -------- */
.pricing {
  background: var(--bg-card-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.pricing__row {
  display: grid;
  grid-template-columns: 1.4fr 2fr auto;
  gap: 24px;
  align-items: center;
  padding: 24px 32px;
  border-bottom: 1px solid var(--line);
}

.pricing__row:last-child {
  border-bottom: none;
}

.pricing__row:hover {
  background: rgba(255, 255, 255, 0.02);
}

.pricing__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
}

.pricing__desc {
  color: var(--text-muted);
  font-size: 14px;
}

.pricing__price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--accent);
  white-space: nowrap;
}

.pricing__price small {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
  display: block;
}

/* -------- 16. Values & Team -------- */
.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.value {
  background: var(--bg-card-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: left;
}

.value__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}

.value__icon svg {
  width: 28px;
  height: 28px;
}

.value h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.value p {
  color: var(--text-muted);
  font-size: 14.5px;
}

/* About-page work gallery: masonry-style grid of real photos */
.gallery {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 18px;
  margin-top: 28px;
}

.gallery__item {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  margin: 0;
  box-shadow: 0 20px 50px -30px rgba(0, 0, 0, 0.45);
  transition: transform 0.4s var(--ease);
}

.gallery__item:hover {
  transform: translateY(-2px);
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery__item--tall {
  grid-row: span 2;
}

@media (max-width: 880px) {
  .gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 180px);
  }
  .gallery__item--tall {
    grid-column: span 2;
    grid-row: span 1;
    height: 240px;
  }
}

@media (max-width: 540px) {
  .gallery {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .gallery__item {
    height: 200px;
  }
  .gallery__item--tall {
    grid-column: span 1;
    height: 240px;
  }
}

.team {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.team-card {
  background: var(--bg-card-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.team-card__media {
  aspect-ratio: 4 / 4;
  overflow: hidden;
}

.team-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.team-card:hover .team-card__media img {
  transform: scale(1.04);
}

.team-card__body {
  padding: 22px 24px 26px;
}

.team-card__role {
  font-size: 12px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
}

.team-card__name {
  font-size: 19px;
  margin: 6px 0 8px;
}

.team-card__meta {
  color: var(--text-muted);
  font-size: 14px;
}

.cert-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.cert {
  background: var(--bg-card-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 10px 20px;
  font-size: 13px;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cert svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
}

/* -------- 17. Contact form / info -------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 32px;
  align-items: stretch;
}

.contact-form {
  position: relative;
  background: var(--bg-card-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: var(--text);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-form h2 {
  font-size: 26px;
  margin-bottom: 4px;
}

.contact-form p.lede {
  color: var(--text-muted);
  font-size: 14.5px;
  margin-bottom: 6px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

.field input,
.field select,
.field textarea {
  background: var(--bg-card);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  color: var(--text);
  font-size: 16px;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
  width: 100%;
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--text-dim);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(245, 180, 0, 0.18);
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.field--error input,
.field--error select,
.field--error textarea {
  border-color: #ff5d5d;
}

.field__error {
  font-size: 12.5px;
  color: #ff8a8a;
  display: none;
}

.field--error .field__error {
  display: block;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.form-status {
  font-size: 14px;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  display: none;
}

.form-status.is-sending,
.form-status.is-success,
.form-status.is-error {
  display: block;
}

.form-status.is-sending {
  background: rgba(245, 180, 0, 0.12);
  color: #e8c24d;
  border: 1px solid rgba(245, 180, 0, 0.35);
}

.form-status.is-success {
  background: rgba(80, 200, 120, 0.12);
  color: #8ce0a4;
  border: 1px solid rgba(80, 200, 120, 0.3);
}

.form-status.is-error {
  background: rgba(255, 93, 93, 0.1);
  color: #ff8a8a;
  border: 1px solid rgba(255, 93, 93, 0.28);
}

/* Toast after contact form submit (above WhatsApp FAB on small screens) */
.form-toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 90;
  max-width: min(420px, calc(100vw - 32px));
  padding: 14px 20px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transform: translateX(-50%) translateY(140%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
}

.form-toast.is-visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.form-toast--success {
  background: var(--bg-card-2);
  color: #8ce0a4;
  border: 1px solid rgba(80, 200, 120, 0.35);
}

.form-toast--error {
  background: var(--bg-card-2);
  color: #ff8a8a;
  border: 1px solid rgba(255, 93, 93, 0.35);
}

@media (max-width: 880px) {
  .form-toast {
    bottom: 88px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .form-toast {
    transition-duration: 0.01ms;
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-card {
  background: var(--bg-card-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  color: var(--text);
}

.info-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.info-card__intro {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 22px;
}

.info-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.info-row:first-of-type {
  border-top: none;
  padding-top: 0;
}

.info-row__icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.info-row__icon svg {
  width: 18px;
  height: 18px;
}

.info-row__label {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.info-row__value {
  font-size: 14.5px;
  color: var(--text);
  font-weight: 500;
}

.info-row > div:last-child {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  height: 280px;
}

.map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.4) brightness(0.85);
}

.areas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.area-chip {
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  background: var(--bg-card-2);
  border: 1px solid var(--line);
  font-size: 13.5px;
  color: var(--text-muted);
}

.area-chip:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* -------- 18. Footer -------- */
.site-footer {
  background: var(--bg-card);
  color: var(--text);
  padding: 64px 56px 28px;
  border-bottom-left-radius: var(--radius-card);
  border-bottom-right-radius: var(--radius-card);
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 14px;
  max-width: 32ch;
  margin-top: 16px;
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

.socials a:hover {
  background: var(--accent);
  color: #1a1300;
}

.socials svg {
  width: 16px;
  height: 16px;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 18px;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a,
.footer-col span {
  color: var(--text-muted);
  font-size: 14px;
  transition: color 0.2s var(--ease);
}

.footer-col a:hover {
  color: var(--accent);
}

.newsletter {
  display: flex;
  margin-top: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 4px 4px 4px 16px;
}

.newsletter input {
  background: transparent;
  border: none;
  outline: none;
  flex: 1;
  font-size: 14px;
  color: var(--text);
}

.newsletter input::placeholder {
  color: var(--text-dim);
}

.newsletter button {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--accent);
  color: #1a1300;
  display: grid;
  place-items: center;
  transition: background 0.2s var(--ease);
}

.newsletter button:hover {
  background: var(--accent-2);
}

.newsletter svg {
  width: 14px;
  height: 14px;
}

.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--text-dim);
  font-size: 13px;
}

.footer-bottom a {
  color: var(--text-muted);
  margin-left: 18px;
}

.footer-bottom a:hover {
  color: var(--accent);
}

/* -------- 19.5 WhatsApp floating button -------- */
.whatsapp-fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 24px -10px rgba(37, 211, 102, 0.7);
  z-index: 70;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.whatsapp-fab:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 28px -12px rgba(37, 211, 102, 0.75);
}

.whatsapp-fab svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

/* -------- 19. Reveal animation -------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* -------- 20. Responsive -------- */
@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .split {
    gap: 40px;
  }
  .process {
    grid-template-columns: repeat(2, 1fr);
  }
  .values,
  .team {
    grid-template-columns: 1fr 1fr;
  }
  .stat-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 880px) {
  .primary-nav,
  .header-tools .header-phone,
  .header-tools .icon-btn {
    display: none;
  }
  .nav-toggle {
    display: inline-flex;
  }
  .header-tools {
    gap: 10px;
    margin-left: 0;
  }
  .shell--bleed .hero {
    padding-top: calc(var(--site-header-h) + 24px);
    padding-bottom: 56px;
    min-height: 100svh;
    min-height: 100dvh;
  }
  .shell--bleed .hero .hero__inner {
    gap: 24px;
  }
  .hero__copy,
  .hero__controls { max-width: 100%; }
  .split__media--card {
    padding: 32px 28px;
  }
  .page-hero {
    padding: 56px 28px 48px;
  }
  .brand-strip {
    padding: 28px;
  }
  .brand-strip__inner {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .brand-strip__accent {
    width: 140px;
    height: 36px;
  }
  .section {
    padding: 64px 0;
  }
  .container {
    padding: 0 24px;
  }
  .section-head {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .split {
    grid-template-columns: 1fr;
  }
  .split__media {
    aspect-ratio: 4 / 3;
  }
  .cta-banner {
    grid-template-columns: 1fr;
    padding: 36px 32px;
  }
  .cta-banner__actions {
    justify-content: flex-start;
  }
  .pricing__row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 22px 24px;
  }
  .pricing__price {
    font-size: 20px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .coverage__top {
    grid-template-columns: 1fr;
  }
  .coverage__map {
    height: 250px;
  }
  .local-seo-grid {
    grid-template-columns: 1fr 1fr;
  }
  .faq-item summary {
    font-size: 17px;
  }
  .contact-form {
    padding: 28px;
  }
  .field-row {
    grid-template-columns: 1fr;
  }
  .site-footer {
    padding: 48px 28px 24px;
  }
  .whatsapp-fab {
    right: 14px;
    bottom: calc(14px + env(safe-area-inset-bottom, 0px));
    width: 54px;
    height: 54px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .values,
  .team {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 540px) {
  .shell--bleed > .card-frame {
    border-radius: 0;
    box-shadow: none;
    background: #fff;
  }
  .shell {
    margin: 12px auto;
  }
  .shell.shell--bleed {
    margin: 0;
  }
  .shell--bleed .hero {
    min-height: 100svh;
    min-height: 100dvh;
    padding-top: calc(var(--site-header-h) + 16px);
    padding-bottom: 40px;
  }
  .site-header {
    padding: 14px 18px;
    border-top-left-radius: 22px;
    border-top-right-radius: 22px;
  }
  .btn {
    white-space: normal;
    justify-content: center;
    text-align: center;
  }
  .hero__title {
    font-size: 36px;
    margin-bottom: 18px;
  }
  .hero__lede {
    font-size: 15.5px;
    margin-bottom: 18px;
  }
  .stat-row {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
  .brand-strip {
    padding: 24px 16px;
    overflow: hidden;
  }
  .brand-strip__inner {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    width: max-content;
  }
  .brand-logo {
    flex: 0 0 auto;
    min-width: 150px;
    border: none;
    border-radius: 12px;
    padding: 12px 8px;
    opacity: 0.92;
    background: #fff;
    line-height: 1.2;
  }
  .brand-logo small {
    margin-top: 4px;
    letter-spacing: 0.12em;
  }
  .brand-strip__inner.is-ticker .brand-logo[data-brand-clone="true"] {
    pointer-events: none;
  }
  .brand-strip__accent {
    display: none;
  }
  .hero__controls {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .hero__ctas {
    width: 100%;
  }
  .hero__ctas .btn {
    width: 100%;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .service-card {
    padding: 22px;
    gap: 14px;
  }
  .section {
    padding: 52px 0;
  }
  .container {
    padding: 0 16px;
  }
  .cta-banner {
    padding: 26px 20px;
    border-radius: 20px;
  }
  .contact-form {
    padding: 22px;
  }
  .info-card {
    padding: 24px 20px;
  }
  .mobile-menu {
    padding: 18px 16px 24px;
  }
  .mobile-menu nav a {
    font-size: 18px;
    padding: 18px 0 18px 12px;
  }
  .mobile-menu .btn--lg {
    width: 100%;
  }
  .footer-bottom {
    justify-content: center;
    text-align: center;
    gap: 10px;
  }
  .footer-bottom > div {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
  }
  .footer-bottom a {
    margin-left: 0;
  }
  .coverage__map-wrap,
  .coverage__places,
  .coverage__summary {
    padding: 14px;
  }
  .coverage-checker__row {
    flex-direction: column;
  }
  .coverage-checker__row .btn {
    width: 100%;
  }
  .coverage__map-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .coverage__map {
    height: 240px;
  }
  .local-seo-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .local-seo-card {
    padding: 20px;
  }
  .faq-item summary {
    font-size: 16px;
    padding: 16px 48px 16px 16px;
  }
  .faq-item__content > p {
    padding: 0 16px;
  }
  .faq-item[open] .faq-item__content > p {
    padding: 0 16px 16px;
  }
}

@media (hover: none) {
  .service-card:hover,
  .feature:hover,
  .btn--primary:hover,
  .btn--light:hover {
    transform: none;
    box-shadow: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* -------- 21. Mobile sheet menu -------- */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 14, 0.98);
  backdrop-filter: blur(16px);
  z-index: 100;
  display: flex;
  flex-direction: column;
  padding: 24px 24px 32px;
  gap: 8px;
  transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s var(--ease), opacity 0.25s var(--ease),
    visibility 0s linear 0.35s;
  visibility: hidden;
  will-change: transform, opacity;
}

.mobile-menu.is-open {
  transform: none;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: transform 0.35s var(--ease), opacity 0.25s var(--ease),
    visibility 0s linear 0s;
}

.mobile-menu.is-closing {
  transform: translateX(100%);
  opacity: 0;
  visibility: visible;
  pointer-events: none;
}

.mobile-menu__head,
.mobile-menu nav a,
.mobile-menu__cta {
  opacity: 0;
  transform: translateX(14px);
  transition: opacity 0.25s var(--ease), transform 0.28s var(--ease);
}

.mobile-menu.is-open .mobile-menu__head,
.mobile-menu.is-open nav a,
.mobile-menu.is-open .mobile-menu__cta {
  opacity: 1;
  transform: none;
}

.mobile-menu.is-open nav a:nth-child(1) { transition-delay: 40ms; }
.mobile-menu.is-open nav a:nth-child(2) { transition-delay: 80ms; }
.mobile-menu.is-open nav a:nth-child(3) { transition-delay: 120ms; }
.mobile-menu.is-open nav a:nth-child(4) { transition-delay: 160ms; }
.mobile-menu.is-open .mobile-menu__cta { transition-delay: 200ms; }

@media (prefers-reduced-motion: reduce) {
  .mobile-menu,
  .mobile-menu__head,
  .mobile-menu nav a,
  .mobile-menu__cta {
    transition: none !important;
  }
}

.mobile-menu__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-menu nav a {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 600;
  color: var(--text-muted);
  padding: 16px 0 16px 14px;
  border-left: 3px solid transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  letter-spacing: 0.01em;
  transition: color 0.2s var(--ease), border-left-color 0.2s var(--ease),
    padding-left 0.2s var(--ease);
}

.mobile-menu nav a:hover {
  color: var(--text);
}

.mobile-menu nav a.is-active {
  color: var(--text);
  border-left-color: var(--accent);
  padding-left: 18px;
}

.mobile-menu__cta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 24px;
}

.mobile-menu .header-phone {
  font-size: 16px;
}
