/* ==========================================================================
   Rapid Parking Management — design system
   Reproduced from the Claude Design handoff (dark editorial look).
   ========================================================================== */

/* Self-hosted fonts (Oswald + IBM Plex Sans, latin woff2). font-display:swap
   shows text immediately in a fallback, then swaps — no invisible-text flash. */
@font-face { font-family: 'Oswald'; font-style: normal; font-weight: 400; font-display: swap; src: url('/assets/fonts/oswald-latin-400-normal.woff2') format('woff2'); }
@font-face { font-family: 'Oswald'; font-style: normal; font-weight: 500; font-display: swap; src: url('/assets/fonts/oswald-latin-500-normal.woff2') format('woff2'); }
@font-face { font-family: 'Oswald'; font-style: normal; font-weight: 600; font-display: swap; src: url('/assets/fonts/oswald-latin-600-normal.woff2') format('woff2'); }
@font-face { font-family: 'Oswald'; font-style: normal; font-weight: 700; font-display: swap; src: url('/assets/fonts/oswald-latin-700-normal.woff2') format('woff2'); }
@font-face { font-family: 'IBM Plex Sans'; font-style: normal; font-weight: 400; font-display: swap; src: url('/assets/fonts/ibm-plex-sans-latin-400-normal.woff2') format('woff2'); }
@font-face { font-family: 'IBM Plex Sans'; font-style: italic; font-weight: 400; font-display: swap; src: url('/assets/fonts/ibm-plex-sans-latin-400-italic.woff2') format('woff2'); }
@font-face { font-family: 'IBM Plex Sans'; font-style: normal; font-weight: 500; font-display: swap; src: url('/assets/fonts/ibm-plex-sans-latin-500-normal.woff2') format('woff2'); }
@font-face { font-family: 'IBM Plex Sans'; font-style: normal; font-weight: 600; font-display: swap; src: url('/assets/fonts/ibm-plex-sans-latin-600-normal.woff2') format('woff2'); }

:root {
  --bg: #0C0D0F;
  --bg-deep: #0A0B0D;
  --bg-deepest: #08090B;
  --surface-a: #17191e;
  --surface-b: #121317;
  --red: #E11414;
  --red-600: #c70f0f;
  --red-700: #b30f0f;
  --text: #F4F5F6;
  --text-72: rgba(244, 245, 246, .72);
  --text-66: rgba(244, 245, 246, .66);
  --text-55: rgba(244, 245, 246, .55);
  --text-45: rgba(255, 255, 255, .45);
  --hair: rgba(255, 255, 255, .08);
  --hair-12: rgba(255, 255, 255, .12);
  --font-head: 'Oswald', system-ui, sans-serif;
  --font-body: 'IBM Plex Sans', system-ui, sans-serif;
  --wrap: 1200px;
  --pad-x: clamp(20px, 5vw, 44px);
  --dots: radial-gradient(rgba(176, 128, 86, 0.055) 1px, transparent 1.6px);
  --grain: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHdpZHRoPScxODAnIGhlaWdodD0nMTgwJz48ZmlsdGVyIGlkPSduJz48ZmVUdXJidWxlbmNlIHR5cGU9J2ZyYWN0YWxOb2lzZScgYmFzZUZyZXF1ZW5jeT0nMC45JyBudW1PY3RhdmVzPScyJy8+PC9maWx0ZXI+PHJlY3Qgd2lkdGg9JzEwMCUnIGhlaWdodD0nMTAwJScgZmlsdGVyPSd1cmwoI24pJy8+PC9zdmc+");
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background-color: var(--bg);
  background-image: var(--dots);
  background-size: 20px 20px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--red); color: #fff; }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; }
h1, h2, h3 { margin: 0; }
:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; border-radius: 2px; }

.lucide { display: block; flex: none; }
.ic-red { color: var(--red); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

/* Skip link ------------------------------------------------------------- */
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 300;
  background: var(--red); color: #fff; padding: 10px 16px; border-radius: 5px;
  font-family: var(--font-head); font-weight: 600; transition: top .2s;
}
.skip-link:focus { top: 12px; }

/* Layout ---------------------------------------------------------------- */
.wrap { max-width: var(--wrap); margin: 0 auto; }
.section { padding: clamp(60px, 7vw, 96px) var(--pad-x); position: relative; }

.eyebrow {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--font-head); font-weight: 600; font-size: 13px;
  letter-spacing: .3em; text-transform: uppercase; color: var(--red);
}
.eyebrow::before { content: ""; width: 38px; height: 2px; background: var(--red); display: block; flex: none; }
.eyebrow--muted { color: rgba(255, 255, 255, .82); }

/* Buttons --------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 11px; cursor: pointer;
  font-family: var(--font-head); font-weight: 600; letter-spacing: .03em;
  border-radius: 5px; border: 1px solid transparent; padding: 17px 30px;
  font-size: 18px; line-height: 1; white-space: nowrap;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
}
.btn--primary { background: var(--red); color: #fff; box-shadow: 0 14px 38px rgba(225, 20, 20, .42); }
.btn--primary:hover { background: var(--red-600); transform: translateY(-3px); box-shadow: 0 20px 48px rgba(225, 20, 20, .55); }
.btn--ghost { background: rgba(255, 255, 255, .04); color: #fff; border-color: rgba(255, 255, 255, .24); font-weight: 500; padding: 17px 26px; }
.btn--ghost:hover { border-color: var(--red); background: rgba(225, 20, 20, .1); }
.btn--dark { background: var(--bg); color: #fff; box-shadow: 0 18px 44px rgba(0, 0, 0, .35); }
.btn--dark:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 26px 56px rgba(0, 0, 0, .5); }
.btn--lg { font-size: clamp(1.3rem, 2.4vw, 1.7rem); padding: 22px 38px; }
.btn--hero { font-size: 24px; }

/* Header ---------------------------------------------------------------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 14px clamp(18px, 4vw, 44px);
  border-bottom: 1px solid rgba(255, 255, 255, 0);
  background: linear-gradient(180deg, rgba(8, 9, 11, .9), rgba(8, 9, 11, 0));
  transition: background .35s ease, border-color .35s ease;
}
.site-header.is-scrolled {
  background: rgba(10, 11, 13, .9);
  border-bottom-color: var(--hair);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
}
.brand { display: inline-flex; align-items: center; background: none; border: none; padding: 0; cursor: pointer; }
.brand img { height: clamp(30px, 3.4vw, 40px); width: auto; }

.header-right { display: flex; align-items: center; gap: 16px; margin-left: auto; }
.nav { display: flex; align-items: center; gap: 6px; }
.nav__link {
  position: relative; background: none; border: none; cursor: pointer; color: #fff;
  font-family: var(--font-head); font-weight: 500; font-size: 14px; letter-spacing: .13em;
  text-transform: uppercase; padding: 10px 14px; opacity: .86; transition: opacity .2s;
}
.nav__link:hover { opacity: 1; }
.nav__link[aria-current="page"] { opacity: 1; }
.nav__link[aria-current="page"]::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 2px; background: var(--red);
}

/* Header call CTA (desktop compact) */
.header-call {
  display: inline-flex; align-items: center; gap: 9px; background: var(--red); color: #fff;
  font-family: var(--font-head); font-weight: 600; font-size: 15px; letter-spacing: .04em;
  padding: 11px 18px; border-radius: 4px; white-space: nowrap;
  box-shadow: 0 8px 24px rgba(225, 20, 20, .34);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.header-call:hover { background: var(--red-600); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(225, 20, 20, .5); }

/* Mobile header actions */
.header-mobile { display: none; align-items: center; gap: 8px; margin-left: auto; }
.icon-btn {
  display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px;
  border-radius: 6px; cursor: pointer; color: #fff;
}
.icon-btn--red { background: var(--red); box-shadow: 0 8px 24px rgba(225, 20, 20, .34); border: none; }
.icon-btn--ghost { background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .16); }

/* Mobile menu overlay */
.mobile-menu {
  position: fixed; inset: 0; z-index: 200;
  background-color: var(--bg-deep); background-image: var(--dots); background-size: 20px 20px;
  display: flex; flex-direction: column; padding: 14px clamp(18px, 5vw, 28px) 32px;
}
.mobile-menu[hidden] { display: none; }
.mobile-menu__top { display: flex; align-items: center; justify-content: space-between; }
.mobile-menu__top img { height: 32px; width: auto; }
.mobile-nav { display: flex; flex-direction: column; gap: 4px; margin-top: clamp(28px, 6vh, 56px); }
.mobile-nav a {
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, .1); color: #fff;
  font-family: var(--font-head); font-weight: 600; font-size: clamp(1.7rem, 7vw, 2.3rem);
  text-transform: uppercase; letter-spacing: .02em; padding: 18px 4px;
}
.mobile-nav a[aria-current="page"]::after {
  content: ""; width: 10px; height: 10px; background: var(--red); border-radius: 50%;
}
.mobile-menu__call {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px; margin-top: auto;
  background: var(--red); color: #fff; font-family: var(--font-head); font-weight: 600;
  font-size: 1.3rem; letter-spacing: .03em; padding: 20px 28px; border-radius: 6px;
  box-shadow: 0 14px 38px rgba(225, 20, 20, .42);
}

/* Hero ------------------------------------------------------------------ */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: flex-end;
  overflow: hidden; background: var(--bg-deep);
}
.hero__bg {
  position: absolute; inset: -12% -6%; will-change: transform;
  background-size: cover; background-position: 50% 40%; background-repeat: no-repeat;
  background-image: url("/assets/img/gen/carpark-night-960.webp");
  background-image: -webkit-image-set(url("/assets/img/gen/carpark-night-960.webp") 1x, url("/assets/img/gen/carpark-night-1920.webp") 2x);
  background-image: image-set(url("/assets/img/gen/carpark-night-960.webp") 1x, url("/assets/img/gen/carpark-night-1920.webp") 2x);
}
@media (min-width: 1000px) {
  .hero__bg {
    background-image: url("/assets/img/gen/carpark-night-1440.webp");
    background-image: -webkit-image-set(url("/assets/img/gen/carpark-night-1440.webp") 1x, url("/assets/img/gen/carpark-night-1920.webp") 2x);
    background-image: image-set(url("/assets/img/gen/carpark-night-1440.webp") 1x, url("/assets/img/gen/carpark-night-1920.webp") 2x);
  }
}
.hero__tint {
  position: absolute; inset: 0; mix-blend-mode: soft-light;
  background: radial-gradient(78% 62% at 68% 54%, rgba(124, 82, 42, .16), transparent 72%);
}
.hero__grain { position: absolute; inset: 0; opacity: .06; mix-blend-mode: overlay; background-image: var(--grain); }
.hero__scrim {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 95% at 50% 42%, transparent 38%, rgba(0, 0, 0, .5) 100%),
    linear-gradient(90deg, rgba(8, 9, 11, .96) 0%, rgba(8, 9, 11, .78) 34%, rgba(8, 9, 11, .42) 62%, rgba(8, 9, 11, .1) 100%),
    linear-gradient(0deg, var(--bg) 0%, rgba(12, 13, 15, .9) 7%, rgba(12, 13, 15, .42) 24%, transparent 48%),
    linear-gradient(180deg, rgba(8, 9, 11, .62) 0%, transparent 22%);
}
.hero__banner {
  position: absolute; top: 118px; right: -60px; transform: rotate(-7deg);
  background: var(--red); color: #fff; padding: 12px 80px 12px 46px;
  font-family: var(--font-head); font-style: italic; font-weight: 700;
  font-size: clamp(13px, 1.4vw, 17px); letter-spacing: .1em; text-transform: uppercase;
  box-shadow: 0 14px 40px rgba(0, 0, 0, .45); clip-path: polygon(7% 0, 100% 0, 100% 100%, 0 100%);
}
.hero__inner {
  position: relative; z-index: 3; width: 100%; max-width: var(--wrap); margin: 0 auto;
  padding: 140px var(--pad-x) clamp(54px, 7vw, 86px);
}
.hero h1 {
  margin: 26px 0 0; font-family: var(--font-head); font-weight: 700; text-transform: uppercase;
  font-size: clamp(2.9rem, 8vw, 6.2rem); line-height: .9; letter-spacing: -.005em; color: #fff;
  text-shadow: 0 2px 30px rgba(0, 0, 0, .5);
}
.hero h1 em { color: var(--red); font-style: italic; }
.hero__sub { margin: 26px 0 0; max-width: 560px; font-size: clamp(1.05rem, 1.6vw, 1.32rem); line-height: 1.55; color: rgba(244, 245, 246, .78); }
.hero__sub strong { color: #fff; font-weight: 500; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.trust {
  display: flex; flex-wrap: wrap; gap: 11px 26px; margin-top: 46px; padding-top: 30px;
  border-top: 1px solid var(--hair-12);
}
.trust__item { display: flex; align-items: center; gap: 10px; color: rgba(244, 245, 246, .82); font-size: .95rem; }

/* Section heading block ------------------------------------------------- */
.section-head { display: flex; flex-direction: column; gap: 16px; max-width: 720px; margin-bottom: clamp(38px, 5vw, 62px); }
.section-head h2 {
  font-family: var(--font-head); font-weight: 700; text-transform: uppercase;
  font-size: clamp(2rem, 4.6vw, 3.4rem); line-height: .98; letter-spacing: -.01em; color: #fff;
}
.section-head p { margin: 0; font-size: clamp(1rem, 1.5vw, 1.18rem); line-height: 1.55; color: var(--text-66); }

/* Service pillar cards -------------------------------------------------- */
.pillars { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 440px), 1fr)); gap: clamp(16px, 1.6vw, 22px); }
.card {
  position: relative; background: linear-gradient(160deg, var(--surface-a), var(--surface-b));
  border: 1px solid var(--hair); border-radius: 6px; padding: clamp(26px, 3vw, 38px); overflow: hidden;
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.card:hover { transform: translateY(-6px); border-color: rgba(225, 20, 20, .4); box-shadow: 0 24px 50px rgba(0, 0, 0, .5); }
.card__skew { position: absolute; top: 0; left: 0; width: 80px; height: 5px; background: var(--red); transform: skewX(-26deg); transform-origin: left; }
.icon-chip {
  display: flex; align-items: center; justify-content: center; width: 58px; height: 58px;
  border-radius: 6px; background: rgba(225, 20, 20, .12); color: var(--red); margin-bottom: 24px;
}
.icon-chip--sm { width: 54px; height: 54px; margin-bottom: 20px; }
.icon-chip--xs { width: 46px; height: 46px; margin: 0; }
.card h3 {
  margin: 0 0 12px; font-family: var(--font-head); font-weight: 600; text-transform: uppercase;
  font-size: 1.5rem; line-height: 1.05; letter-spacing: .01em; color: #fff;
}
.card p { margin: 0 0 18px; font-size: 1.02rem; line-height: 1.55; color: var(--text-66); }
.card__tag {
  display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-head); font-weight: 500;
  font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--red);
  border-top: 1px solid rgba(255, 255, 255, .1); padding-top: 16px;
}

/* Service area band ----------------------------------------------------- */
.band-area { background: var(--bg-deepest); border-top: 1px solid rgba(255, 255, 255, .06); overflow: hidden; }
.band-area::before { content: ""; position: absolute; inset: 0; opacity: .5; background: radial-gradient(60% 120% at 85% 50%, rgba(225, 20, 20, .14), transparent 60%); }
.band-area__row { position: relative; max-width: var(--wrap); margin: 0 auto; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 28px; }
.band-area__left { display: flex; align-items: center; gap: 20px; }
.band-area__icon { display: flex; align-items: center; justify-content: center; width: 64px; height: 64px; border-radius: 8px; background: rgba(225, 20, 20, .14); color: var(--red); flex: none; }
.band-area__kicker { font-family: var(--font-head); font-weight: 600; font-size: .8rem; letter-spacing: .26em; text-transform: uppercase; color: var(--red); margin-bottom: 6px; }
.band-area__title { font-family: var(--font-head); font-weight: 600; text-transform: uppercase; font-size: clamp(1.5rem, 3vw, 2.2rem); line-height: 1; color: #fff; }
.band-area p { margin: 0; max-width: 380px; font-size: 1.02rem; line-height: 1.55; color: var(--text-66); }

/* Closing red band ------------------------------------------------------ */
.band-cta { position: relative; overflow: hidden; background: var(--red); }
.band-cta__grain { position: absolute; inset: 0; opacity: .18; background-image: var(--grain); mix-blend-mode: overlay; }
.band-cta__angle { position: absolute; top: 0; right: 0; bottom: 0; width: 46%; background: linear-gradient(110deg, transparent, rgba(0, 0, 0, .22)); clip-path: polygon(22% 0, 100% 0, 100% 100%, 0 100%); }
.band-cta__row { position: relative; max-width: var(--wrap); margin: 0 auto; padding: clamp(54px, 7vw, 96px) var(--pad-x); display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 34px; }
.band-cta__kicker { font-family: var(--font-head); font-weight: 600; font-size: .82rem; letter-spacing: .28em; text-transform: uppercase; color: rgba(255, 255, 255, .82); margin-bottom: 16px; }
.band-cta h2 { font-family: var(--font-head); font-weight: 700; text-transform: uppercase; font-size: clamp(2.1rem, 5vw, 3.7rem); line-height: .95; color: #fff; max-width: 640px; }
.band-cta__lead { margin: 18px 0 0; font-size: 1.15rem; line-height: 1.5; color: rgba(255, 255, 255, .88); }

/* Interior page header -------------------------------------------------- */
.page-head { position: relative; overflow: hidden; background: var(--bg-deep); padding: clamp(140px, 16vw, 200px) var(--pad-x) clamp(60px, 7vw, 90px); }
.page-head__glow { position: absolute; inset: 0; background: radial-gradient(120% 90% at 70% 0%, rgba(255, 255, 255, .08), transparent 55%), linear-gradient(180deg, #16191e, #0a0b0d); }
.page-head__lines { position: absolute; inset: 0; opacity: .5; background: repeating-linear-gradient(116deg, transparent 0 80px, rgba(255, 255, 255, .04) 80px 82px, transparent 82px 170px); -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, .8), transparent 70%); mask-image: linear-gradient(180deg, rgba(0, 0, 0, .8), transparent 70%); }
.page-head__inner { position: relative; max-width: var(--wrap); margin: 0 auto; }
.page-head h1 { margin: 22px 0 0; font-family: var(--font-head); font-weight: 700; text-transform: uppercase; font-size: clamp(2.4rem, 6vw, 4.6rem); line-height: .92; color: #fff; max-width: 920px; }
.page-head p { margin: 24px 0 0; max-width: 620px; font-size: clamp(1.05rem, 1.6vw, 1.25rem); line-height: 1.55; color: var(--text-72); }

/* Services rows --------------------------------------------------------- */
.svc-rows { max-width: var(--wrap); margin: 0 auto; display: flex; flex-direction: column; gap: clamp(48px, 6vw, 96px); }
.svc-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 430px), 1fr)); gap: clamp(26px, 4vw, 60px); align-items: center; }
.svc-row__media { position: relative; }
.svc-row__media img, .svc-row__media picture { display: block; width: 100%; }
.svc-row__media img { height: clamp(300px, 42vw, 460px); object-fit: cover; border: 1px solid rgba(255, 255, 255, .1); border-radius: 8px; }
.svc-row--left .svc-row__media { order: -1; }
.svc-badge { position: absolute; bottom: 14px; left: 14px; background: var(--red); color: #fff; font-family: var(--font-head); font-weight: 600; font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; padding: 7px 14px; border-radius: 3px; }
.svc-row h2 { margin: 0 0 16px; font-family: var(--font-head); font-weight: 700; text-transform: uppercase; font-size: clamp(1.7rem, 3.2vw, 2.5rem); line-height: 1; color: #fff; }
.svc-row p { margin: 0 0 14px; font-size: 1.08rem; line-height: 1.6; color: var(--text-72); }
.pill {
  display: inline-flex; align-items: center; gap: 10px; margin-top: 8px;
  background: rgba(255, 255, 255, .04); border: 1px solid var(--hair-12); border-radius: 5px;
  padding: 12px 18px; font-family: var(--font-head); font-weight: 500; font-size: .86rem;
  letter-spacing: .1em; text-transform: uppercase; color: #fff;
}

/* About ----------------------------------------------------------------- */
.about-grid { max-width: var(--wrap); margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr)); gap: clamp(34px, 5vw, 72px); align-items: start; }
.about-lede { margin: 0 0 22px; font-size: clamp(1.25rem, 2.2vw, 1.6rem); line-height: 1.45; color: #fff; font-weight: 500; }
.about-grid p:not(.about-lede) { margin: 0 0 18px; font-size: 1.08rem; line-height: 1.65; color: var(--text-72); }
.feature-list { display: flex; flex-direction: column; gap: 14px; }
.feature { display: flex; gap: 16px; align-items: flex-start; background: linear-gradient(160deg, var(--surface-a), var(--surface-b)); border: 1px solid var(--hair); border-radius: 6px; padding: 22px 24px; }
.feature__title { font-family: var(--font-head); font-weight: 600; text-transform: uppercase; font-size: 1.1rem; color: #fff; margin-bottom: 4px; }
.feature__body { font-size: 1rem; line-height: 1.5; color: var(--text-66); }

/* Contact --------------------------------------------------------------- */
.contact-grid { max-width: var(--wrap); margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 360px), 1fr)); gap: clamp(24px, 3vw, 40px); align-items: start; }
.call-card { position: relative; overflow: hidden; background: linear-gradient(155deg, var(--red), var(--red-700)); border-radius: 8px; padding: clamp(32px, 4vw, 48px); box-shadow: 0 24px 60px rgba(225, 20, 20, .32); }
.call-card__grain { position: absolute; inset: 0; opacity: .16; background-image: var(--grain); mix-blend-mode: overlay; }
.call-card__inner { position: relative; }
.call-card__kicker { font-family: var(--font-head); font-weight: 600; font-size: .8rem; letter-spacing: .26em; text-transform: uppercase; color: rgba(255, 255, 255, .85); margin-bottom: 16px; }
.call-card__num { display: inline-flex; align-items: center; gap: 14px; font-family: var(--font-head); font-weight: 700; font-size: clamp(2rem, 5vw, 3.1rem); line-height: 1; color: #fff; letter-spacing: .01em; }
.call-card__lead { margin: 22px 0 26px; font-size: 1.1rem; line-height: 1.55; color: rgba(255, 255, 255, .9); max-width: 420px; }
.call-card__meta { margin-top: 34px; padding-top: 26px; border-top: 1px solid rgba(255, 255, 255, .25); display: flex; flex-direction: column; gap: 18px; }
.meta-row { display: flex; align-items: center; gap: 14px; }
.meta-row__label { font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(255, 255, 255, .7); font-family: var(--font-head); }
.meta-row__value { font-size: 1.15rem; color: #fff; font-weight: 500; word-break: break-word; }

.enquiry { background: linear-gradient(160deg, var(--surface-a), var(--surface-b)); border: 1px solid var(--hair); border-radius: 8px; padding: clamp(28px, 3.5vw, 42px); }
.enquiry__kicker { font-family: var(--font-head); font-weight: 600; font-size: .8rem; letter-spacing: .24em; text-transform: uppercase; color: var(--red); margin-bottom: 8px; }
.enquiry h2 { margin: 0 0 6px; font-family: var(--font-head); font-weight: 600; text-transform: uppercase; font-size: 1.5rem; color: #fff; }
.enquiry p { margin: 0 0 24px; font-size: 1rem; line-height: 1.5; color: var(--text-66); }
.form { display: flex; flex-direction: column; gap: 14px; }
.form__row { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 150px), 1fr)); gap: 14px; }
.form input, .form textarea {
  width: 100%; background: var(--bg); border: 1px solid rgba(255, 255, 255, .14); border-radius: 5px;
  padding: 14px 16px; color: #fff; font-size: 1rem; font-family: var(--font-body);
  outline: none; transition: border-color .2s;
}
.form input::placeholder, .form textarea::placeholder { color: rgba(244, 245, 246, .45); }
.form input:focus, .form textarea:focus { border-color: var(--red); }
.form textarea { resize: vertical; min-height: 110px; }
.form__hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form button { border: none; justify-content: center; }
.form__status { font-size: .98rem; line-height: 1.5; min-height: 1.2em; }
.form__status[data-state="ok"] { color: #58d68d; }
.form__status[data-state="err"] { color: #ffd5d5; }

/* Footer ---------------------------------------------------------------- */
.site-footer { position: relative; background: var(--bg-deepest); border-top: 2px solid var(--red); padding: clamp(48px, 6vw, 76px) var(--pad-x) 30px; }
.site-footer__top { max-width: var(--wrap); margin: 0 auto; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 40px; }
.site-footer__brand { max-width: 340px; }
.site-footer__brand img { height: 34px; width: auto; margin-bottom: 18px; }
.site-footer__brand p { margin: 0; font-size: .98rem; line-height: 1.55; color: var(--text-55); }
.footer-cols { display: flex; flex-wrap: wrap; gap: 48px; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col__head { font-family: var(--font-head); font-weight: 600; font-size: .74rem; letter-spacing: .2em; text-transform: uppercase; color: var(--text-45); margin-bottom: 2px; }
.footer-col a, .footer-col span { display: flex; align-items: center; gap: 9px; color: var(--text-72); font-size: .98rem; transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-col__phone { color: #fff !important; font-size: 1.05rem !important; }
.footer-col__phone:hover { color: var(--red) !important; }
.footer-links a { color: var(--text-72); }
.footer-links a:hover { color: var(--red); }
.site-footer__bottom { max-width: var(--wrap); margin: clamp(36px, 4vw, 56px) auto 0; padding-top: 24px; border-top: 1px solid var(--hair); display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; color: rgba(244, 245, 246, .4); font-size: .86rem; }

/* Floating call button -------------------------------------------------- */
.fab {
  position: fixed; right: clamp(16px, 3vw, 28px); bottom: clamp(16px, 3vw, 28px); z-index: 120;
  display: inline-flex; align-items: center; gap: 10px; background: var(--red); color: #fff;
  font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; letter-spacing: .02em;
  padding: 15px 22px; border-radius: 50px; box-shadow: 0 14px 36px rgba(225, 20, 20, .5);
  opacity: 0; transform: translateY(20px); pointer-events: none;
  transition: opacity .35s ease, transform .35s ease, background .25s ease;
  animation: rpmPulse 2.6s infinite;
}
.fab.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.fab:hover { background: var(--red-600); }

@keyframes rpmPulse {
  0% { box-shadow: 0 0 0 0 rgba(225, 20, 20, .45); }
  70% { box-shadow: 0 0 0 16px rgba(225, 20, 20, 0); }
  100% { box-shadow: 0 0 0 0 rgba(225, 20, 20, 0); }
}

/* Reveal-on-scroll ------------------------------------------------------ */
[data-reveal].reveal-init { opacity: 0; transform: translateY(26px); }
[data-reveal].reveal-in { opacity: 1; transform: none; transition: opacity .85s cubic-bezier(.16, 1, .3, 1), transform .85s cubic-bezier(.16, 1, .3, 1); }

/* Breakpoint: switch desktop nav <-> mobile menu (matches design's 860px) */
@media (max-width: 859px) {
  .header-right { display: none; }
  .header-mobile { display: flex; }
  .hero__banner { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .fab { animation: none; }
  [data-reveal].reveal-init { opacity: 1; transform: none; }
  *, *::before, *::after { transition-duration: .001ms !important; }
}
