/* ─────────────────────────────────────────────────────────────────────────
   {{BUSINESS_NAME}} — Premium contractor site
   Palette : navy #1E3A5F → blue #2563EB · amber #F59E0B
   Type    : Archivo (display) + Manrope (body)
   ───────────────────────────────────────────────────────────────────────── */

:root {
  --navy-900: #0B1A2E;
  --navy-800: #122747;
  --navy-700: #1E3A5F;
  --navy-600: #234670;
  --blue-600: #2563EB;
  --blue-500: #3B7BF0;
  --blue-400: #6FA0F5;

  --amber:    #F59E0B;
  --amber-2:  #FBB13D;
  --amber-ink:#3A2403;

  --bone:     #F7F5F0;   /* warm white */
  --paper:    #FBFAF6;
  --ink:      #0E1B30;
  --ink-2:    #34425C;
  --ink-3:    #6C7790;
  --line:     #E4E1D6;
  --line-2:   rgba(11, 26, 46, 0.08);

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;

  --ease: cubic-bezier(.2, .7, .2, 1);
  --ease-spring: cubic-bezier(.34, 1.56, .64, 1);

  --container: 1240px;
  --pad: clamp(20px, 4vw, 56px);
  --header-h: 76px;

  --font-display: 'Archivo', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body:    'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

/* ────────────────────────────  RESET  ──────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bone);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-display); margin: 0; letter-spacing: -0.02em; text-wrap: balance; }
p { margin: 0; text-wrap: pretty; }
ul { list-style: none; margin: 0; padding: 0; }

.container { max-width: var(--container); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }

/* ────────────────────────────  REVEAL ANIMATIONS  ──────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
[data-reveal].is-in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ────────────────────────────  HEADER  ──────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 18px 0;
  transition: padding .35s var(--ease), background .35s var(--ease), box-shadow .35s var(--ease), backdrop-filter .35s var(--ease);
}
.site-header::before {
  content: "";
  position: absolute; inset: 0;
  background: rgba(247, 245, 240, 0);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  transition: background .35s var(--ease), backdrop-filter .35s var(--ease), border-color .35s var(--ease);
  pointer-events: none;
}
.site-header.is-scrolled {
  padding: 10px 0;
}
.site-header.is-scrolled::before {
  background: rgba(247, 245, 240, 0.88);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--line-2);
}
.site-header__inner {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 28px;
}

/* Initial hero-overlay state: white text */
.site-header:not(.is-scrolled) { color: #fff; }
.site-header:not(.is-scrolled) .header-cta { color: #fff; border-color: rgba(255,255,255,.28); background: rgba(255,255,255,.06); }
.site-header:not(.is-scrolled) .header-cta:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.55); }
.site-header.is-scrolled { color: var(--ink); }

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.brand__mark {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  background: var(--amber);
  color: var(--navy-900);
  border-radius: 10px;
  box-shadow: 0 4px 0 rgba(0,0,0,.12), inset 0 -2px 0 rgba(0,0,0,.12);
}
.brand__name { white-space: nowrap; }

.site-nav { display: flex; gap: 28px; justify-self: center; font-weight: 600; font-size: 15px; }
.site-nav a { position: relative; padding: 6px 0; opacity: .85; transition: opacity .2s var(--ease); }
.site-nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; background: currentColor; transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease);
}
.site-nav a:hover { opacity: 1; }
.site-nav a:hover::after { transform: scaleX(1); }

.header-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 700; font-size: 14px;
  background: var(--paper);
  transition: background .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.header-cta:hover { transform: translateY(-1px); border-color: var(--navy-700); }
.site-header.is-scrolled .header-cta { background: var(--navy-900); color: #fff; border-color: var(--navy-900); }
.site-header.is-scrolled .header-cta:hover { background: var(--blue-600); border-color: var(--blue-600); }

/* Mobile toggle */
.nav-toggle { display: none; width: 40px; height: 40px; flex-direction: column; gap: 5px; align-items: center; justify-content: center; border-radius: 8px; }
.nav-toggle span { width: 22px; height: 2px; background: currentColor; border-radius: 2px; transition: transform .3s var(--ease), opacity .3s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-drawer {
  display: none;
  position: absolute; top: 100%; left: 0; right: 0;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding: 16px var(--pad) 24px;
  flex-direction: column;
  gap: 4px;
  color: var(--ink);
}
.mobile-drawer a { padding: 14px 0; font-weight: 600; border-bottom: 1px solid var(--line); }
.mobile-drawer a:last-child { border-bottom: 0; }
.mobile-drawer__cta {
  margin-top: 12px;
  background: var(--amber);
  color: var(--navy-900) !important;
  text-align: center;
  border-radius: 999px;
  padding: 14px 18px !important;
  font-weight: 800;
  border-bottom: 0 !important;
}

/* ────────────────────────────  BUTTONS  ──────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 24px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15.5px;
  letter-spacing: -0.005em;
  transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--amber {
  background: var(--amber);
  color: var(--navy-900);
  box-shadow: 0 1px 0 rgba(0,0,0,.06), 0 14px 30px -10px rgba(245, 158, 11, .45);
}
.btn--amber:hover {
  background: var(--amber-2);
  box-shadow: 0 1px 0 rgba(0,0,0,.06), 0 20px 36px -12px rgba(245, 158, 11, .6);
}

.btn--ghost {
  color: #fff;
  border: 1px solid rgba(255,255,255,.32);
  background: rgba(255,255,255,.04);
}
.btn--ghost:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.7); }

.btn--outline {
  color: var(--navy-900);
  border: 1px solid var(--navy-900);
  background: transparent;
}
.btn--outline:hover { background: var(--navy-900); color: #fff; }

/* ────────────────────────────  STARS  ──────────────────────────── */
.stars { display: inline-flex; gap: 3px; color: var(--amber); }
.stars--sm svg { width: 14px; height: 14px; }
.stars--md svg { width: 18px; height: 18px; }
.stars--lg svg { width: 22px; height: 22px; }

/* ────────────────────────────  HERO  ──────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: calc(var(--header-h) + 60px);
  padding-bottom: 80px;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute; inset: 0; z-index: -2;
  background: linear-gradient(155deg, var(--navy-900) 0%, var(--navy-700) 38%, #1f4587 70%, var(--blue-600) 100%);
}
.hero__bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 75% at 50% 30%, #000 50%, transparent 90%);
  -webkit-mask-image: radial-gradient(ellipse 90% 75% at 50% 30%, #000 50%, transparent 90%);
}
.hero__bg-glow {
  position: absolute; right: -10%; top: -20%;
  width: 60vmax; height: 60vmax;
  background: radial-gradient(circle, rgba(245,158,11,.18), transparent 60%);
  filter: blur(20px);
}
.hero__layer { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.hero__shape { position: absolute; display: block; opacity: .35; }
.hero__shape--ring {
  width: 380px; height: 380px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  left: -120px; bottom: -120px;
}
.hero__shape--ring::before, .hero__shape--ring::after {
  content: ""; position: absolute; inset: 30px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%;
}
.hero__shape--ring::after { inset: 70px; border-color: rgba(245,158,11,.25); }
.hero__shape--bar {
  right: 8%; top: 18%;
  width: 220px; height: 4px;
  background: linear-gradient(90deg, var(--amber), transparent);
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  font-size: 13px; font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.eyebrow__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 4px rgba(245,158,11,.22);
  animation: pulse 2.4s var(--ease) infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245,158,11,.32); }
  50%      { box-shadow: 0 0 0 8px rgba(245,158,11,0); }
}

.hero__title {
  font-weight: 900;
  font-size: clamp(56px, 8.6vw, 132px);
  line-height: .92;
  letter-spacing: -0.035em;
  margin: 0 0 28px;
  background: linear-gradient(180deg, #fff 60%, rgba(255,255,255,.72) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero__lede {
  max-width: 540px;
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.55;
  color: rgba(255,255,255,.78);
  margin-bottom: 32px;
}

.hero__rating { display: flex; align-items: center; gap: 14px; margin-bottom: 36px; flex-wrap: wrap; }
.hero__rating-num { font-family: var(--font-display); font-weight: 800; font-size: 22px; }
.hero__rating-meta { color: rgba(255,255,255,.65); font-size: 14.5px; }

.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 48px; }

.hero__trust {
  display: flex; flex-wrap: wrap; gap: 28px;
  color: rgba(255,255,255,.78);
  font-size: 14.5px; font-weight: 500;
}
.hero__trust li { display: inline-flex; align-items: center; gap: 10px; }
.hero__trust svg { color: var(--amber); }

/* hero visual collage */
.hero__visual {
  position: relative;
  aspect-ratio: 1 / 1.05;
  min-height: 460px;
}
.hero__card {
  position: absolute;
  border-radius: var(--r-lg);
  background: #fff;
  color: var(--ink);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.45), 0 0 0 1px rgba(255,255,255,.06);
  will-change: transform;
  transition: transform .9s var(--ease);
}
.hero__card--photo {
  inset: 0 18% 18% 0;
  overflow: hidden;
  padding: 0;
}
.hero__photo {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--navy-700), var(--blue-600));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero__photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.45) 100%),
              repeating-linear-gradient(45deg, rgba(255,255,255,.04) 0 14px, transparent 14px 28px);
}
.hero__photo-tag {
  position: absolute; left: 16px; bottom: 16px; z-index: 1;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  background: rgba(11,26,46,.7);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  color: #fff;
  font-size: 12.5px; font-weight: 600;
}
.hero__photo-tag .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--amber); }

.hero__card--stat {
  width: 200px;
  padding: 20px 22px;
  border-radius: var(--r-md);
}
.hero__card--stat-a {
  right: 0; top: 6%;
}
.hero__card--stat-b {
  left: 4%; bottom: 0;
  background: var(--amber);
  color: var(--navy-900);
}
.stat__num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 44px;
  line-height: 1;
  letter-spacing: -0.03em;
}
.stat__num span { font-size: 22px; color: var(--ink-3); font-weight: 700; }
.stat__label { margin-top: 6px; color: var(--ink-2); font-size: 13px; font-weight: 600; letter-spacing: .02em; text-transform: uppercase; }
.hero__card--stat-b .stat__label { color: var(--amber-ink); }
.hero__card--stat-a .stars { margin-top: 10px; }

.hero__scroll {
  position: absolute; left: 50%; bottom: 24px; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: .25em; text-transform: uppercase;
  color: rgba(255,255,255,.6);
}
.hero__scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(180deg, rgba(255,255,255,.6), transparent);
  animation: scrollHint 2s var(--ease) infinite;
}
@keyframes scrollHint {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ────────────────────────────  MARQUEE  ──────────────────────────── */
.marquee {
  background: var(--navy-900);
  color: #fff;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  overflow: hidden;
  padding: 22px 0;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.005em;
  font-size: clamp(18px, 2vw, 26px);
}
.marquee__track {
  display: inline-flex; align-items: center; gap: 28px;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
  padding-left: 28px;
}
.marquee__sep { color: var(--amber); opacity: .8; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ────────────────────────────  SECTIONS  ──────────────────────────── */
.section { padding: clamp(80px, 10vw, 140px) 0; }

.section__head { margin-bottom: 56px; max-width: 760px; }
.section__head--row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
  max-width: none;
}
.section__label { display: inline-flex; align-items: center; gap: 14px; margin-bottom: 20px; color: var(--navy-700); }
.section__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .12em;
  padding: 6px 10px;
  background: var(--navy-700);
  color: #fff;
  border-radius: 6px;
}
.section__kicker {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--navy-700);
}
.section__label--light { color: rgba(255,255,255,.8); }
.section__label--light .section__num { background: var(--amber); color: var(--navy-900); }
.section__label--light .section__kicker { color: rgba(255,255,255,.85); }

.section__title {
  font-weight: 900;
  font-size: clamp(40px, 5.4vw, 76px);
  line-height: 1.0;
  letter-spacing: -0.028em;
  color: var(--navy-900);
}
.section__title--light { color: #fff; }
.ink-amber { color: var(--amber); }
.section__sub {
  margin-top: 22px;
  max-width: 560px;
  color: var(--ink-2);
  font-size: 18px;
  line-height: 1.55;
}
.section__sub--inline {
  margin-top: 0;
  max-width: 360px;
  font-size: 16px;
}

/* ────────────────────────────  GALLERY  ──────────────────────────── */
.gallery { background: var(--bone); position: relative; }
.gallery::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0;
  height: 1px; background: var(--line);
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.gallery__item {
  position: relative;
  margin: 0;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--navy-700);
  aspect-ratio: 4 / 5;
  cursor: pointer;
  outline: none;
  isolation: isolate;
}
.gallery__item--lg { grid-column: span 4; aspect-ratio: 16 / 11; }
.gallery__item:not(.gallery__item--lg):not(.gallery__item--wide) { grid-column: span 2; }
.gallery__item--wide { grid-column: span 6; aspect-ratio: 21 / 8; }

.gallery__img {
  position: absolute; inset: 0;
  background-color: var(--navy-700);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 1.2s var(--ease);
}
.gallery__img::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, transparent 40%, rgba(11,26,46,.85) 100%),
    repeating-linear-gradient(45deg, rgba(255,255,255,.04) 0 18px, transparent 18px 36px);
}
.gallery__item:hover .gallery__img,
.gallery__item:focus-visible .gallery__img { transform: scale(1.06); }

.gallery__cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 22px 24px;
  display: flex; align-items: center; gap: 14px;
  color: #fff;
  z-index: 1;
}
.gallery__cap-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .15em;
  padding: 5px 10px;
  background: rgba(255,255,255,.14);
  border-radius: 6px;
}
.gallery__cap-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.005em;
}
.gallery__cap-arrow {
  margin-left: auto;
  width: 40px; height: 40px;
  display: grid; place-items: center;
  background: var(--amber);
  color: var(--navy-900);
  border-radius: 50%;
  transform: translate(8px, -8px) scale(.6);
  opacity: 0;
  transition: transform .5s var(--ease-spring), opacity .35s var(--ease);
}
.gallery__item:hover .gallery__cap-arrow,
.gallery__item:focus-visible .gallery__cap-arrow { transform: translate(0,0) scale(1); opacity: 1; }

/* ────────────────────────────  ABOUT  ──────────────────────────── */
.about {
  background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 100%);
  color: #fff;
  position: relative;
}
.about::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(245,158,11,.08), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(37,99,235,.12), transparent 55%);
  pointer-events: none;
}
.about__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.about__body { font-size: 19px; line-height: 1.65; color: rgba(255,255,255,.82); margin-bottom: 48px; }
.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,.12);
  border-bottom: 1px solid rgba(255,255,255,.12);
  margin-bottom: 40px;
}
.kpi__num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(36px, 4.2vw, 52px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: #fff;
}
.kpi__num-sub { font-size: .5em; color: rgba(255,255,255,.55); }
.kpi__label { margin-top: 10px; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.62); }

.link-arrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--amber);
  padding-bottom: 6px;
  border-bottom: 2px solid var(--amber);
  transition: gap .3s var(--ease), color .3s var(--ease);
}
.link-arrow:hover { gap: 18px; }

/* ────────────────────────────  SERVICES  ──────────────────────────── */
.services { background: var(--paper); }
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.svc {
  position: relative;
  padding: 40px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  transition: background .35s var(--ease), color .35s var(--ease);
  isolation: isolate;
  overflow: hidden;
}
.svc::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: var(--navy-900);
  transform: translateY(100%);
  transition: transform .5s var(--ease);
}
.svc:hover { color: #fff; }
.svc:hover::before { transform: translateY(0); }

.svc__icon {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  background: var(--bone);
  color: var(--navy-700);
  border-radius: 12px;
  margin-bottom: 28px;
  transition: background .35s var(--ease), color .35s var(--ease);
}
.svc:hover .svc__icon { background: var(--amber); color: var(--navy-900); }

.svc h3 {
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.svc p { color: var(--ink-2); transition: color .35s var(--ease); }
.svc:hover p { color: rgba(255,255,255,.75); }
.svc__cta {
  position: absolute; top: 40px; right: 40px;
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--navy-700);
  transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease), transform .35s var(--ease);
}
.svc:hover .svc__cta { background: var(--amber); color: var(--navy-900); border-color: var(--amber); transform: rotate(-45deg); }

/* ────────────────────────────  REVIEWS  ──────────────────────────── */
.reviews {
  background: linear-gradient(180deg, var(--navy-700) 0%, var(--navy-900) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.reviews::before {
  content: "";
  position: absolute; right: -10%; top: -10%;
  width: 50vmax; height: 50vmax;
  background: radial-gradient(circle, rgba(245,158,11,.12), transparent 60%);
  pointer-events: none;
}
.reviews__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.review {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg);
  padding: 40px;
  backdrop-filter: blur(10px);
  position: relative;
  transition: transform .4s var(--ease), background .4s var(--ease), border-color .4s var(--ease);
}
.review:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,.07);
  border-color: rgba(245,158,11,.4);
}
.review__head {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 22px;
}
.review__count {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  padding: 4px 10px;
  background: rgba(245,158,11,.16);
  color: var(--amber);
  border-radius: 6px;
}
.review__quote { color: var(--amber); opacity: .9; margin-bottom: 18px; }
.review__text {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(20px, 1.6vw, 24px);
  line-height: 1.45;
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 32px;
}
.review__foot {
  display: flex; align-items: center; gap: 14px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.avatar {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  color: rgba(255,255,255,.75);
}
.review__author { font-family: var(--font-display); font-weight: 700; font-size: 16px; }
.review__source { font-size: 13px; color: rgba(255,255,255,.55); margin-top: 2px; }

.reviews__foot {
  position: relative;
  margin-top: 48px;
  display: flex; align-items: center; justify-content: center; gap: 14px;
  color: rgba(255,255,255,.85);
  font-size: 15px;
}
.reviews__foot strong { font-family: var(--font-display); color: #fff; }

/* ────────────────────────────  CONTACT  ──────────────────────────── */
.contact { background: var(--bone); }
.contact__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: start;
}

.contact__methods { margin-top: 40px; margin-bottom: 36px; }
.contact__row {
  display: flex; align-items: center; gap: 18px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  transition: padding .3s var(--ease);
}
.contact__row:last-of-type { border-bottom: 1px solid var(--line); }
.contact__row:hover { padding-left: 8px; }
.contact__row-icon {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  background: var(--navy-900);
  color: #fff;
  border-radius: 12px;
  transition: background .3s var(--ease);
}
.contact__row:hover .contact__row-icon { background: var(--amber); color: var(--navy-900); }
.contact__row-text { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.contact__row-label { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); font-weight: 700; }
.contact__row-value { font-family: var(--font-display); font-weight: 700; font-size: 22px; color: var(--navy-900); letter-spacing: -0.01em; }
.contact__row-arrow {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 50%;
  color: var(--navy-700);
  transition: transform .35s var(--ease), background .35s var(--ease), color .35s var(--ease);
}
.contact__row:hover .contact__row-arrow { background: var(--navy-900); color: #fff; transform: translateX(4px); }

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

.contact__right { display: grid; gap: 20px; }
.hours-card {
  background: #fff;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  padding: 32px;
  box-shadow: 0 30px 60px -30px rgba(11,26,46,.18);
}
.hours-card__head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.hours-card h3 { font-weight: 800; font-size: 22px; color: var(--navy-900); letter-spacing: -0.01em; }
.hours-card__status {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700;
  color: #167852;
  padding: 6px 12px;
  background: #E5F4ED;
  border-radius: 999px;
}
.hours-card__dot {
  width: 8px; height: 8px; border-radius: 50%; background: #1FA66E;
  box-shadow: 0 0 0 0 rgba(31,166,110,.5);
  animation: pulseGreen 2.4s var(--ease) infinite;
}
@keyframes pulseGreen {
  0%,100% { box-shadow: 0 0 0 0 rgba(31,166,110,.5); }
  50%     { box-shadow: 0 0 0 8px rgba(31,166,110,0); }
}

.hours-card__list { display: grid; gap: 14px; font-size: 16px; }
.hours-card__list li {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 0;
  border-bottom: 1px dashed var(--line);
  color: var(--ink-2);
}
.hours-card__list li:last-child { border-bottom: 0; }
.hours-card__list li strong, .hours-card__list li b {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy-900);
}

.hours-card__foot {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.hours-card__foot-label { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); font-weight: 700; }
.hours-card__foot-value { font-family: var(--font-display); font-weight: 800; color: var(--navy-900); font-size: 17px; margin-top: 4px; }
.hours-card__rating { text-align: right; }
.hours-card__rating .stars { margin-bottom: 4px; }

.map-card {
  position: relative;
  display: block;
  height: 220px;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy-700), var(--blue-600));
  color: #fff;
  isolation: isolate;
  transition: transform .4s var(--ease);
}
.map-card:hover { transform: translateY(-2px); }
.map-card__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 80% 70% at 60% 50%, #000 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 60% 50%, #000 40%, transparent 100%);
}
.map-card__pin {
  position: absolute; left: 38%; top: 46%;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: var(--amber);
  color: var(--navy-900);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 8px 20px rgba(0,0,0,.3);
}
.map-card__pin svg { transform: rotate(45deg); }
.map-card__overlay {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 18px 22px;
  display: flex; align-items: center; justify-content: space-between;
  background: linear-gradient(180deg, transparent, rgba(11,26,46,.7));
}
.map-card__label { font-family: var(--font-display); font-weight: 800; font-size: 18px; }
.map-card__sub { font-size: 13px; color: rgba(255,255,255,.75); margin-top: 2px; }
.map-card__arrow {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  background: var(--amber);
  color: var(--navy-900);
  border-radius: 50%;
  transition: transform .3s var(--ease);
}
.map-card:hover .map-card__arrow { transform: rotate(-45deg); }

/* ────────────────────────────  FOOTER  ──────────────────────────── */
.site-footer {
  background: var(--navy-900);
  color: rgba(255,255,255,.7);
  padding-top: clamp(60px, 8vw, 100px);
}
.site-footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.brand--light { color: #fff; }
.site-footer__tag {
  margin-top: 16px;
  font-size: 14px;
  color: rgba(255,255,255,.55);
  max-width: 320px;
}
.site-footer__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.site-footer__nav h4 {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 18px;
}
.site-footer__nav ul { display: grid; gap: 12px; font-size: 15px; }
.site-footer__nav a { transition: color .2s var(--ease); }
.site-footer__nav a:hover { color: #fff; }
.site-footer__hours li {
  display: flex; justify-content: space-between; gap: 12px;
  font-size: 14px; color: rgba(255,255,255,.65);
  padding: 4px 0;
}
.site-footer__hours strong, .site-footer__hours b { color: #fff; font-family: var(--font-display); font-weight: 700; }

.site-footer__bar { padding: 24px 0; font-size: 13px; color: rgba(255,255,255,.45); }
.site-footer__bar-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }

/* ────────────────────────────  RESPONSIVE  ──────────────────────────── */
@media (max-width: 1024px) {
  .site-nav { display: none; }
  .nav-toggle { display: flex; }
  .mobile-drawer.is-open { display: flex; }

  .hero { padding-top: calc(var(--header-h) + 40px); padding-bottom: 60px; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { min-height: 380px; max-width: 520px; margin: 0 auto; }

  .section__head--row { grid-template-columns: 1fr; align-items: start; }
  .section__sub--inline { max-width: none; }

  .about__grid,
  .contact__grid { grid-template-columns: 1fr; }

  .services__grid { grid-template-columns: repeat(2, 1fr); }

  .reviews__grid { grid-template-columns: 1fr; }

  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__item--lg { grid-column: span 2; aspect-ratio: 16 / 11; }
  .gallery__item:not(.gallery__item--lg):not(.gallery__item--wide) { grid-column: span 1; }
  .gallery__item--wide { grid-column: span 2; aspect-ratio: 16 / 8; }

  .site-footer__inner { grid-template-columns: 1fr; gap: 40px; }
  .site-footer__nav { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .header-cta span { display: none; }
  .header-cta { padding: 10px 12px; }

  .hero { padding-top: calc(var(--header-h) + 24px); }
  .hero__title { font-size: clamp(48px, 14vw, 80px); }
  .hero__lede { font-size: 16.5px; }
  .hero__trust { gap: 16px; }
  .hero__visual { min-height: 340px; }
  .hero__card--stat { width: 160px; padding: 16px 18px; }
  .stat__num { font-size: 34px; }

  .marquee { padding: 16px 0; }

  .section { padding: 70px 0; }
  .section__title { font-size: clamp(34px, 8vw, 48px); }
  .section__sub { font-size: 16px; }

  .gallery__grid { grid-template-columns: 1fr; gap: 14px; }
  .gallery__item, .gallery__item--lg, .gallery__item--wide { grid-column: span 1; aspect-ratio: 4 / 5; }

  .about__stats { grid-template-columns: 1fr; gap: 18px; }
  .about__stats .kpi { padding: 16px 0; border-top: 1px dashed rgba(255,255,255,.15); }
  .about__stats .kpi:first-child { border-top: 0; }

  .services__grid { grid-template-columns: 1fr; }
  .svc { padding: 32px 28px; }
  .svc__cta { top: 32px; right: 28px; }

  .review { padding: 28px 24px; }
  .review__text { font-size: 19px; }

  .contact__row { padding: 18px 0; gap: 14px; }
  .contact__row-value { font-size: 19px; }

  .hours-card { padding: 24px; }
  .hours-card__foot { flex-direction: column; align-items: flex-start; gap: 16px; }
  .hours-card__rating { text-align: left; }

  .site-footer__nav { grid-template-columns: 1fr; gap: 28px; }
  .site-footer__bar-inner { flex-direction: column; align-items: flex-start; gap: 6px; }
}
