/* ============================================================
   DIRECT TRADES — Elite Stylesheet
   Palette: White base · DT Blue #1A4B8C · DT Orange #E8761A
   Typography: Barlow Condensed (headings) · DM Sans (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,700&family=DM+Sans:wght@300;400;500;600;700&display=swap');

/* ── Tokens ─────────────────────────────────────────────── */
:root {
  --blue:        #1A4B8C;
  --blue-dark:   #0F2F5C;
  --blue-mid:    #1E5298;
  --blue-tint:   #EEF3FB;
  --orange:      #E8761A;
  --orange-dark: #C45E0D;
  --orange-tint: #FEF3E8;
  --white:       #FFFFFF;
  --off-white:   #F8F9FC;
  --ink:         #0A0F1E;
  --ink-mid:     #1C2640;
  --slate:       #4A5568;
  --muted:       #7A8599;
  --rule:        #E2E8F0;
  --rule-dark:   rgba(255,255,255,0.1);

  --font-head: 'Barlow Condensed', sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  --r-sm:   4px;
  --r-md:   8px;
  --r-lg:   12px;

  --sh-card:  0 2px 12px rgba(10,15,30,0.08);
  --sh-lift:  0 8px 32px rgba(10,15,30,0.14);
  --sh-deep:  0 20px 60px rgba(10,15,30,0.20);
  --sh-blue:  0 8px 28px rgba(26,75,140,0.30);
  --sh-orange:0 8px 28px rgba(232,118,26,0.35);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 0.3s;
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-body); background: var(--white); color: var(--ink); line-height: 1.6; overflow-x: hidden; }
img  { max-width: 100%; display: block; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Layout ──────────────────────────────────────────────── */
.container {
  width: min(1160px, calc(100% - 48px));
  margin-inline: auto;
}
.container--wide {
  width: min(1360px, calc(100% - 48px));
  margin-inline: auto;
}

/* ── Typography ──────────────────────────────────────────── */
.label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
}
.label::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--orange);
  flex-shrink: 0;
}
.label--blue { color: var(--blue); }
.label--blue::before { background: var(--blue); }
.label--white { color: rgba(255,255,255,0.7); }
.label--white::before { background: rgba(255,255,255,0.5); }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.h-display {
  font-size: clamp(52px, 7vw, 96px);
  line-height: 0.9;
  letter-spacing: -0.02em;
}
.h-section {
  font-size: clamp(36px, 4.5vw, 64px);
}
.h-sub {
  font-size: clamp(28px, 3vw, 42px);
}
.h-card {
  font-size: 22px;
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

.body-lg { font-size: 17px; line-height: 1.7; color: var(--slate); }
.body-md { font-size: 15px; line-height: 1.65; color: var(--slate); }
.body-sm { font-size: 13px; line-height: 1.6; color: var(--muted); }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--r-sm);
  transition: all var(--dur) var(--ease);
  white-space: nowrap;
  cursor: pointer;
}
.btn--orange {
  background: var(--orange);
  color: var(--white);
  box-shadow: var(--sh-orange);
}
.btn--orange:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(232,118,26,0.42);
}
.btn--blue {
  background: var(--blue);
  color: var(--white);
  box-shadow: var(--sh-blue);
}
.btn--blue:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
}
.btn--ghost-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn--ghost-white:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}
.btn--ghost-dark {
  background: transparent;
  color: var(--blue);
  border: 1.5px solid var(--blue);
}
.btn--ghost-dark:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}
.btn--sm { padding: 10px 20px; font-size: 11.5px; }
.btn--lg { padding: 16px 36px; font-size: 14px; }

.btn svg { flex-shrink: 0; width: 14px; height: 14px; }

/* ── Reveal Animations ───────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; }
.d4 { transition-delay: 0.32s; }
.d5 { transition-delay: 0.40s; }

/* ─────────────────────────────────────────────────────────
   TOPBAR
───────────────────────────────────────────────────────── */
.topbar {
  background: var(--blue-dark);
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.03em;
}
.topbar__inner a {
  color: var(--orange);
  font-weight: 700;
  transition: color var(--dur);
}
.topbar__inner a:hover { color: #f09040; }
.topbar__divider {
  width: 1px;
  height: 12px;
  background: rgba(255,255,255,0.15);
}

/* ─────────────────────────────────────────────────────────
   NAVBAR
───────────────────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--rule);
  transition: box-shadow var(--dur);
}
.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(10,15,30,0.10);
}
.navbar__inner {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

/* Logo */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.brand__logomark {
  height: 42px;
  width: auto;
  display: block;
}
.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.brand__text strong {
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--blue);
}
.brand__text small {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Nav links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-menu a:not(.btn) {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-mid);
  padding: 8px 12px;
  border-radius: var(--r-sm);
  transition: color var(--dur), background var(--dur);
}
.nav-menu a:not(.btn):hover {
  color: var(--blue);
  background: var(--blue-tint);
}
.nav-menu a.active { color: var(--blue); }

/* Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--r-sm);
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 99;
  flex-direction: column;
  padding: 0 24px 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; opacity: 1; pointer-events: all; }
.mobile-nav__top {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 24px;
}
.mobile-nav a:not(.btn) {
  display: block;
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--ink);
  padding: 10px 0;
  border-bottom: 1px solid var(--rule);
  transition: color 0.2s;
}
.mobile-nav a:not(.btn):hover { color: var(--blue); }
.mobile-nav .mobile-ctas { display: flex; flex-direction: column; gap: 10px; margin-top: 28px; }
.mobile-nav .btn { justify-content: center; }

/* ─────────────────────────────────────────────────────────
   HERO
───────────────────────────────────────────────────────── */
.hero {
  background: var(--blue-dark);
  overflow: hidden;
  position: relative;
}

/* Geometric pattern overlay */
.hero__pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero__pattern svg {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: auto;
  opacity: 0.06;
}

/* Diagonal colour split at bottom */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: var(--white);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 100px 0 120px;
}

.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.hero__kicker-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(232,118,26,0.12);
  border: 1px solid rgba(232,118,26,0.3);
  border-radius: 2px;
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
}
.hero__kicker-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(0.7); }
}

.hero__title {
  font-family: var(--font-head);
  font-size: clamp(52px, 7.5vw, 100px);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
}
.hero__title .hl {
  color: var(--orange);
  display: block;
}
.hero__title .hl-blue {
  color: #5B9BD5;
  display: block;
}

.hero__sub {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.62);
  max-width: 420px;
  margin-bottom: 36px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero__proof {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-sm);
  overflow: hidden;
}
.hero__proof-item {
  padding: 14px 22px;
  border-right: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}
.hero__proof-item:last-child { border-right: none; }
.hero__proof-num {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.02em;
}
.hero__proof-text {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-top: 3px;
}

/* Hero right — image card */
.hero__visual {
  position: relative;
}
.hero__img-stack {
  position: relative;
}
.hero__img-main {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-deep);
  aspect-ratio: 4/5;
  background: linear-gradient(155deg, #1A3A6C 0%, #0F2245 60%, #1B3B6F 100%);
  position: relative;
}
.hero__img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0.18;
  color: white;
}
.hero__img-placeholder svg { width: 56px; height: 56px; }
.hero__img-placeholder p  { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; }
.hero__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,20,50,0.75) 0%, transparent 45%);
}
.hero__img-badge {
  position: absolute;
  bottom: 24px; left: 24px; right: 24px;
  background: var(--white);
  border-radius: var(--r-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--sh-deep);
}
.hero__img-badge-icon {
  width: 38px;
  height: 38px;
  background: var(--orange-tint);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
}
.hero__img-badge-text strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.hero__img-badge-text span {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}

/* Floating stat */
.hero__stat-float {
  position: absolute;
  top: 28px;
  right: -28px;
  background: var(--blue);
  color: var(--white);
  border-radius: var(--r-md);
  padding: 18px 22px;
  box-shadow: var(--sh-blue);
  text-align: center;
  animation: float-card 7s ease-in-out infinite;
}
@keyframes float-card {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
.hero__stat-float-num {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
  color: var(--white);
}
.hero__stat-float-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
}

/* Stars badge */
.hero__stars-float {
  position: absolute;
  left: -24px;
  top: 45%;
  background: var(--white);
  border-radius: var(--r-md);
  padding: 12px 16px;
  box-shadow: var(--sh-lift);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  animation: float-card 7s ease-in-out infinite;
  animation-delay: -3.5s;
}
.hero__stars-row { display: flex; gap: 2px; color: var(--orange); }
.hero__stars-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

/* ─────────────────────────────────────────────────────────
   TRUST STRIP
───────────────────────────────────────────────────────── */
.trust-strip {
  background: var(--off-white);
  border-bottom: 1px solid var(--rule);
}
.trust-strip__inner {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 28px 16px;
  text-align: center;
  border-right: 1px solid var(--rule);
  transition: background var(--dur);
}
.trust-item:last-child { border-right: none; }
.trust-item:hover { background: var(--white); }
.trust-icon {
  width: 38px;
  height: 38px;
  background: var(--blue-tint);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  transition: background var(--dur);
}
.trust-item:hover .trust-icon { background: var(--blue); color: var(--white); }
.trust-val {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.01em;
}
.trust-lbl {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ─────────────────────────────────────────────────────────
   SECTION FRAMEWORK
───────────────────────────────────────────────────────── */
.section { padding: 96px 0; }
.section--sm { padding: 64px 0; }
.section--blue-dark { background: var(--blue-dark); }
.section--blue { background: var(--blue); }
.section--off { background: var(--off-white); }
.section--orange { background: var(--orange); }

.section__head { margin-bottom: 52px; }
.section__head--center { text-align: center; }
.section__head .label { margin-bottom: 14px; }
.section__head h2 { margin-bottom: 14px; }
.section__head p { max-width: 520px; }
.section__head--center p { margin-inline: auto; }

/* ─────────────────────────────────────────────────────────
   INTRO SPLIT
───────────────────────────────────────────────────────── */
.intro-split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.intro-split__lead {
  font-size: 18px;
  line-height: 1.75;
  color: var(--slate);
}
.intro-split__divider {
  width: 40px;
  height: 3px;
  background: var(--orange);
  margin: 24px 0;
}

/* ─────────────────────────────────────────────────────────
   SERVICE CARDS
───────────────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.svc-card {
  background: var(--white);
  padding: 36px 28px;
  position: relative;
  transition: background var(--dur);
  cursor: pointer;
}
.svc-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur) var(--ease);
}
.svc-card:hover { background: var(--off-white); }
.svc-card:hover::after { transform: scaleX(1); }
.svc-card__num {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--orange);
  margin-bottom: 16px;
}
.svc-card__icon {
  width: 40px;
  height: 40px;
  background: var(--blue-tint);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin-bottom: 18px;
  transition: background var(--dur), color var(--dur);
}
.svc-card:hover .svc-card__icon { background: var(--blue); color: var(--white); }
.svc-card h3 {
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--ink);
  margin-bottom: 10px;
}
.svc-card p { font-size: 13.5px; color: var(--slate); line-height: 1.65; margin-bottom: 20px; }
.svc-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  transition: gap var(--dur), color var(--dur);
}
.svc-card:hover .svc-card__link { gap: 10px; color: var(--orange); }

/* ─────────────────────────────────────────────────────────
   WHY SECTION — split layout
───────────────────────────────────────────────────────── */
.why-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.why-feat {
  background: var(--white);
  padding: 28px 24px;
  transition: background var(--dur);
}
.why-feat:hover { background: var(--off-white); }
.why-feat__icon {
  width: 34px;
  height: 34px;
  border-radius: var(--r-sm);
  background: var(--orange-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  margin-bottom: 14px;
  transition: background var(--dur), color var(--dur);
}
.why-feat:hover .why-feat__icon { background: var(--orange); color: var(--white); }
.why-feat h4 {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink);
  margin-bottom: 6px;
}
.why-feat p { font-size: 13px; color: var(--slate); line-height: 1.6; }

/* ─────────────────────────────────────────────────────────
   PROJECT GRID
───────────────────────────────────────────────────────── */
.projects-grid {
  display: grid;
  grid-template-columns: 5fr 3fr 3fr;
  grid-template-rows: 280px 280px;
  gap: 12px;
}
.proj-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--blue-dark) 0%, #1A3A6C 100%);
  cursor: pointer;
}
.proj-card:first-child { grid-row: span 2; }

.proj-card__ph {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.1;
  color: white;
}
.proj-card__ph svg { width: 56px; height: 56px; }

.proj-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,20,50,0.90) 0%, rgba(10,20,50,0.1) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  transition: background var(--dur);
}
.proj-card:hover .proj-card__overlay {
  background: linear-gradient(to top, rgba(10,20,50,0.95) 0%, rgba(10,20,50,0.4) 70%, rgba(10,20,50,0.05) 100%);
}
.proj-tag {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 2px;
  margin-bottom: 8px;
  width: fit-content;
}
.proj-card h3 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 4px;
}
.proj-card p {
  font-size: 12.5px;
  color: rgba(255,255,255,0.5);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.proj-card:hover p { opacity: 1; transform: translateY(0); }

/* ─────────────────────────────────────────────────────────
   REVIEWS
───────────────────────────────────────────────────────── */
.reviews-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 48px;
}
.reviews-score-block {
  display: flex;
  align-items: center;
  gap: 20px;
}
.reviews-big-score {
  font-family: var(--font-head);
  font-size: 80px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--blue);
}
.reviews-score-detail {}
.reviews-stars { display: flex; gap: 3px; color: var(--orange); margin-bottom: 4px; }
.reviews-count { font-size: 13px; color: var(--muted); font-weight: 500; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  position: relative;
}
.review-card::before {
  content: '"';
  position: absolute;
  top: 16px; right: 24px;
  font-family: var(--font-head);
  font-size: 80px;
  line-height: 1;
  color: var(--blue-tint);
  font-weight: 900;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-lift);
}
.review-card__stars { display: flex; gap: 2px; color: var(--orange); margin-bottom: 14px; }
.review-card__text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--slate);
  margin-bottom: 20px;
  font-style: italic;
}
.review-card__author { display: flex; align-items: center; gap: 10px; }
.review-card__avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.review-card__name { font-size: 13.5px; font-weight: 700; color: var(--ink); }
.review-card__source { font-size: 11px; color: var(--muted); margin-top: 1px; }

/* ─────────────────────────────────────────────────────────
   PROCESS
───────────────────────────────────────────────────────── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 26px;
  left: calc(10% + 2px);
  right: calc(10% + 2px);
  height: 1px;
  background: repeating-linear-gradient(90deg, rgba(255,255,255,0.25) 0, rgba(255,255,255,0.25) 6px, transparent 6px, transparent 12px);
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 12px;
  position: relative;
}
.process-step__num {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  transition: all var(--dur);
}
.process-step:hover .process-step__num {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  box-shadow: 0 0 0 6px rgba(232,118,26,0.15);
}
.process-step h4 {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 8px;
}
.process-step p { font-size: 12.5px; color: rgba(255,255,255,0.45); line-height: 1.6; }

/* ─────────────────────────────────────────────────────────
   STATS BAR
───────────────────────────────────────────────────────── */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.stat-item {
  padding: 36px 28px;
  border-right: 1px solid var(--rule);
  background: var(--white);
  transition: background var(--dur);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--blue-tint); }
.stat-item__num {
  font-family: var(--font-head);
  font-size: 52px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--blue);
  margin-bottom: 6px;
}
.stat-item__label { font-size: 13px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }

/* ─────────────────────────────────────────────────────────
   CTA BAND
───────────────────────────────────────────────────────── */
.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.cta-band__text .label { margin-bottom: 12px; }
.cta-band__text h2 { color: var(--white); max-width: 560px; }
.cta-band__actions { display: flex; gap: 12px; flex-shrink: 0; }

/* ─────────────────────────────────────────────────────────
   PAGE HERO (inner pages)
───────────────────────────────────────────────────────── */
.page-hero {
  background: var(--blue-dark);
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: var(--white);
  clip-path: polygon(0 100%, 100% 40%, 100% 100%);
}
.page-hero .label { margin-bottom: 14px; }
.page-hero h1 {
  font-size: clamp(42px, 5.5vw, 72px);
  color: var(--white);
  max-width: 860px;
  margin-bottom: 16px;
}
.page-hero p { font-size: 16px; color: rgba(255,255,255,0.58); max-width: 560px; }

/* ─────────────────────────────────────────────────────────
   SERVICES PAGE — row layout
───────────────────────────────────────────────────────── */
.service-list { display: grid; gap: 80px; }
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.service-row--flip { direction: rtl; }
.service-row--flip > * { direction: ltr; }
.service-row__media {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--blue-dark) 0%, #1E3F6E 100%);
  position: relative;
  box-shadow: var(--sh-lift);
}
.service-row__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,75,140,0.3) 0%, transparent 60%);
}
.service-row__media-ph {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.15;
  color: white;
}
.service-row__media-ph svg { width: 48px; height: 48px; }
.service-row__content .label { margin-bottom: 14px; }
.service-row__content h2 { margin-bottom: 14px; }
.service-row__content .body-lg { margin-bottom: 24px; }
.service-row__list {
  border-left: 2px solid var(--orange);
  padding-left: 16px;
  display: grid;
  gap: 8px;
  margin-bottom: 28px;
}
.service-row__list li {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--slate);
}

/* ─────────────────────────────────────────────────────────
   GALLERY
───────────────────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.gallery-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--blue-dark) 0%, #1A3A6C 100%);
  position: relative;
  cursor: pointer;
}
.gallery-card__ph {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.12;
  color: white;
}
.gallery-card__ph svg { width: 48px; height: 48px; }
.gallery-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,20,50,0.88) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  opacity: 0;
  transition: opacity var(--dur);
}
.gallery-card:hover .gallery-card__overlay { opacity: 1; }
.gallery-card h3 {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  margin-top: 6px;
}

/* ─────────────────────────────────────────────────────────
   ABOUT VALUES GRID
───────────────────────────────────────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.value-card {
  background: var(--white);
  padding: 32px 24px;
  transition: background var(--dur);
}
.value-card:hover { background: var(--off-white); }
.value-card__num {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 900;
  color: var(--blue-tint);
  line-height: 1;
  margin-bottom: 14px;
  letter-spacing: -0.04em;
}
.value-card h3 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--blue);
  margin-bottom: 10px;
}
.value-card p { font-size: 13.5px; color: var(--slate); line-height: 1.65; }

/* ─────────────────────────────────────────────────────────
   CONTACT
───────────────────────────────────────────────────────── */
.contact-split {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  align-items: start;
}
.contact-info-card {
  background: var(--blue-dark);
  border-radius: var(--r-lg);
  padding: 40px;
  color: var(--white);
}
.contact-info-card h3 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
}
.contact-link {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: padding-left var(--dur);
}
.contact-link:last-of-type { border-bottom: none; }
.contact-link:hover { padding-left: 4px; }
.contact-link__icon {
  width: 34px; height: 34px;
  background: rgba(232,118,26,0.15);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-link__label { font-size: 10.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 2px; }
.contact-link__value { font-size: 15px; font-weight: 600; color: var(--white); }
.contact-hours {
  margin-top: 28px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--r-md);
  padding: 20px;
}
.contact-hours__title {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.contact-hours__row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 6px;
}
.contact-hours__row strong { color: rgba(255,255,255,0.8); font-weight: 600; }

/* Form */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: 40px;
}
.contact-form-wrap h3 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 28px;
}
.form-grid { display: grid; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mid);
}
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink);
  background: var(--off-white);
  border: 1.5px solid var(--rule);
  border-radius: var(--r-sm);
  padding: 12px 14px;
  width: 100%;
  transition: border-color var(--dur), box-shadow var(--dur);
  outline: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,75,140,0.10);
  background: var(--white);
}
.form-field textarea { resize: vertical; }
.form-note { font-size: 12px; color: var(--muted); margin-top: 4px; line-height: 1.5; }

/* ─────────────────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────────────────── */
.footer {
  background: var(--blue-dark);
  padding: 72px 0 0;
  border-top: 3px solid var(--orange);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer__brand .brand__text strong { color: var(--white); }
.footer__brand .brand__text small  { color: rgba(255,255,255,0.35); }
.footer__tagline {
  font-size: 13.5px;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
  margin: 16px 0 24px;
  max-width: 280px;
}
.footer__social { display: flex; gap: 8px; }
.footer__social-btn {
  width: 34px; height: 34px;
  border-radius: var(--r-sm);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.45);
  transition: all var(--dur);
}
.footer__social-btn:hover { border-color: var(--orange); color: var(--orange); }
.footer__col-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-bottom: 20px;
}
.footer__links { display: flex; flex-direction: column; gap: 9px; }
.footer__links a {
  font-size: 13.5px;
  color: rgba(255,255,255,0.52);
  transition: color var(--dur);
}
.footer__links a:hover { color: var(--white); }
.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.52);
  margin-bottom: 10px;
  transition: color var(--dur);
}
.footer__contact-item svg { color: var(--orange); flex-shrink: 0; }
.footer__contact-item a { transition: color var(--dur); }
.footer__contact-item a:hover { color: var(--white); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer__copy { font-size: 12px; color: rgba(255,255,255,0.28); }
.footer__legal { display: flex; gap: 20px; }
.footer__legal a { font-size: 12px; color: rgba(255,255,255,0.28); transition: color var(--dur); }
.footer__legal a:hover { color: rgba(255,255,255,0.6); }

/* ─────────────────────────────────────────────────────────
   STICKY MOBILE CTA
───────────────────────────────────────────────────────── */
.sticky-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--blue-dark);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 10px 16px;
  padding-bottom: max(10px, env(safe-area-inset-bottom));
  gap: 8px;
  transform: translateY(100%);
  transition: transform 0.35s var(--ease);
}
.sticky-bar.visible { transform: translateY(0); }
.sticky-bar .btn { flex: 1; justify-content: center; padding: 12px 16px; font-size: 12px; }

/* ─────────────────────────────────────────────────────────
   IMAGE CLASS HELPERS (SVG placeholders from source)
───────────────────────────────────────────────────────── */
.img-roof        { background-image: linear-gradient(135deg,rgba(10,20,50,.25),rgba(10,20,50,.75)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 900 700"><rect fill="%23b9a17c" width="900" height="700"/><path fill="%23232d3d" d="M0 430 450 120l450 310v270H0z"/><path fill="%23E8761A" d="M450 74 900 386v88L450 165 0 474v-88z"/><g fill="%23f7f2e8" opacity=".65"><rect x="125" y="485" width="110" height="120"/><rect x="365" y="455" width="170" height="150"/><rect x="665" y="485" width="110" height="120"/></g></svg>'); background-size: cover; background-position: center; }
.img-garden      { background-image: linear-gradient(135deg,rgba(10,20,50,.15),rgba(10,20,50,.65)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 900 700"><rect fill="%238aa16b" width="900" height="700"/><path fill="%23E8761A" d="M0 485c180-60 310-80 460-42s250 20 440-55v312H0z"/><path fill="%233c5b3c" d="M0 405c170-85 340-100 520-45 170 52 260 10 380-60v400H0z"/></svg>'); background-size: cover; background-position: center; }
.img-interior    { background-image: linear-gradient(135deg,rgba(10,20,50,.15),rgba(10,20,50,.65)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 900 700"><rect fill="%23e7e2d8" width="900" height="700"/><path fill="%23c9b58b" d="M0 500h900v200H0z"/><path fill="%23ffffff" d="M110 90h680v410H110z"/><path fill="%231A4B8C" d="M180 155h220v260H180zM500 155h220v260H500z"/><path fill="%23E8761A" d="M0 500h900v28H0z"/></svg>'); background-size: cover; background-position: center; }
.img-build       { background-image: linear-gradient(135deg,rgba(10,20,50,.2),rgba(10,20,50,.7)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 900 700"><rect fill="%23c9c2b5" width="900" height="700"/><path fill="%231A4B8C" d="M120 210h520v390H120z"/><path fill="%23E8761A" d="M80 190h600v52H80z"/><path fill="%23f7f2e8" d="M190 290h120v110H190zm210 0h120v110H400zm-210 185h330v70H190z"/></svg>'); background-size: cover; background-position: center; }
.img-drive       { background-image: linear-gradient(135deg,rgba(10,20,50,.15),rgba(10,20,50,.65)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 900 700"><rect fill="%237d8795" width="900" height="700"/><path fill="%23e7e2d8" d="M0 460h900v240H0z"/><path fill="%231A4B8C" d="M360 700 490 280h170L840 700z"/><path fill="%23E8761A" d="M544 330h34v95h-34zm-35 150h40v105h-40z"/></svg>'); background-size: cover; background-position: center; }
.img-finance     { background-image: linear-gradient(135deg,rgba(10,20,50,.15),rgba(10,20,50,.65)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 900 700"><rect fill="%23EEF3FB" width="900" height="700"/><circle fill="%231A4B8C" cx="450" cy="350" r="210"/><path fill="%23E8761A" d="M330 245h240v65H440v55h105v60H440v100h-70V425h-60v-60h60v-55h-40z"/></svg>'); background-size: cover; background-position: center; }

/* ─────────────────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .hero__inner { grid-template-columns: 1fr; gap: 0; }
  .hero__visual { display: none; }
  .hero__inner { padding: 80px 0 100px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-split { grid-template-columns: 1fr; gap: 48px; }
  .projects-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .proj-card:first-child { grid-row: auto; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .reviews-header { grid-template-columns: 1fr; gap: 20px; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 28px; }
  .process-steps::before { display: none; }
  .trust-strip__inner { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .service-row { grid-template-columns: 1fr; gap: 32px; }
  .service-row--flip { direction: ltr; }
  .contact-split { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-band__inner { flex-direction: column; align-items: flex-start; }
  .intro-split { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .topbar__inner { flex-direction: column; align-items: flex-start; gap: 4px; padding: 8px 0; }
  .nav-menu { display: none; }
  .nav-toggle { display: flex; }
  .section { padding: 60px 0; }
  .section__head { margin-bottom: 36px; }
  .services-grid { grid-template-columns: 1fr; }
  .trust-strip__inner { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: none; }
  .trust-item:nth-child(4) { border-right: none; }
  .trust-item:nth-child(6) { border-right: none; }
  .projects-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .footer__legal { justify-content: center; }
  .why-features { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .sticky-bar { display: flex; }
  body { padding-bottom: 70px; }
}

@media (max-width: 480px) {
  .container { width: calc(100% - 32px); }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero__proof { flex-direction: column; border: none; gap: 0; }
  .hero__proof-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); width: 100%; text-align: left; }
  .gallery-grid { grid-template-columns: 1fr; }
  .trust-strip__inner { grid-template-columns: repeat(2, 1fr); }
  .stats-bar { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
}


/* ============================================================
   Client update overrides — real imagery, softer hero and normal case
   ============================================================ */
body, h1, h2, h3, h4, .h-display, .h-section, .h-sub, .h-card, .label, .btn, .nav-menu a, .mobile-nav a, .topbar__inner, .brand__text, .svc-card__num, .proj-tag, .footer__col-title, .stat-item__label, .hero__proof-text, .hero__kicker-badge, .process-step__num, .contact-link__label {
  text-transform: none !important;
}

.hero {
  min-height: 760px;
  display: flex;
  align-items: center;
  background-image: linear-gradient(90deg, rgba(9, 18, 34, .78) 0%, rgba(9, 18, 34, .52) 44%, rgba(9, 18, 34, .18) 100%), url('../assets/images/hero-interior.png');
  background-size: cover;
  background-position: center;
  color: var(--white);
}
.hero__pattern, .hero__visual { display: none !important; }
.hero__inner {
  min-height: 620px;
  display: flex;
  align-items: center;
  grid-template-columns: none;
}
.hero__content { max-width: 760px; }
.hero__title {
  font-size: clamp(48px, 7vw, 92px);
  line-height: .96;
  letter-spacing: -0.035em;
  max-width: 820px;
}
.hero__sub { max-width: 650px; color: rgba(255,255,255,.86); }
.hero__kicker-badge { letter-spacing: .08em; }

.img-roof { background-image: linear-gradient(180deg, rgba(10,15,30,.04), rgba(10,15,30,.7)), url('../assets/images/roofing.png') !important; background-size: cover; background-position: center; }
.img-garden { background-image: linear-gradient(180deg, rgba(10,15,30,.04), rgba(10,15,30,.7)), url('../assets/images/landscaping.png') !important; background-size: cover; background-position: center; }
.img-drive { background-image: linear-gradient(180deg, rgba(10,15,30,.04), rgba(10,15,30,.72)), url('../assets/images/driveway.png') !important; background-size: cover; background-position: center; }
.img-build { background-image: linear-gradient(180deg, rgba(10,15,30,.04), rgba(10,15,30,.7)), url('../assets/images/building.png') !important; background-size: cover; background-position: center; }
.img-interior { background-image: linear-gradient(180deg, rgba(10,15,30,.04), rgba(10,15,30,.7)), url('../assets/images/refurb-kitchen.png') !important; background-size: cover; background-position: center; }
.proj-card__ph { display: none !important; }
.proj-card__overlay p { display: none !important; }
.proj-card__overlay { padding: 28px; }
.proj-card__overlay h3 { margin-top: 8px; }

.about-media-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 34px;
  align-items: center;
}
.about-team-photo {
  margin-top: 26px;
  width: 100%;
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lift);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 42%;
}
.video-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--ink);
  box-shadow: var(--sh-deep);
  aspect-ratio: 16 / 9;
}
.video-card iframe { width: 100%; height: 100%; border: 0; display: block; }

@media (max-width: 820px) {
  .hero { min-height: 680px; background-position: 58% center; }
  .hero__inner { min-height: 540px; }
  .about-media-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Premium client revision — logo, typography, hero, about, footer socials
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');
:root {
  --font-head: 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
}
body { font-weight: 400; letter-spacing: -0.005em; }
h1, h2, h3, h4, .h-display, .h-section, .h-sub, .h-card {
  font-family: var(--font-head);
  font-weight: 700 !important;
  line-height: 1.04;
  letter-spacing: -0.045em;
  text-transform: none !important;
}
.h-display, .hero__title { font-weight: 700 !important; }
.h-section { font-weight: 700 !important; }
p, .body-lg, .hero__sub { font-weight: 400; letter-spacing: -0.01em; }
.label, .btn, .nav-menu a, .mobile-nav a, .footer__col-title, .topbar__inner, .hero__kicker-badge {
  font-family: var(--font-body);
  text-transform: none !important;
  letter-spacing: -0.01em !important;
}
.label { font-size: 13px; font-weight: 700; }
.btn { font-weight: 700; border-radius: 999px; }

.brand { gap: 14px; }
.brand__logomark, .brand__text { display: none !important; }
.brand__logo-img {
  display: block;
  width: 176px;
  height: auto;
  object-fit: contain;
}
.navbar .brand__logo-img { width: 178px; }
.mobile-nav .brand__logo-img { width: 160px; }
.footer-logo, .footer .brand__logo-img { width: 190px; filter: none; }
.navbar__inner { min-height: 84px; }
.nav-menu a:not(.btn) { font-weight: 600; font-size: 14px; color: var(--ink-mid); }

.hero {
  min-height: 760px;
  display: flex;
  align-items: center;
  background-image: linear-gradient(90deg, rgba(5, 10, 20, .76) 0%, rgba(5, 10, 20, .52) 42%, rgba(5, 10, 20, .10) 100%), url('../assets/images/hero-home.png') !important;
  background-size: cover;
  background-position: center center;
  color: var(--white);
}
.hero::after { display: none !important; }
.hero__inner { min-height: 630px; padding: 100px 0; }
.hero__title { font-size: clamp(46px, 6.8vw, 84px); max-width: 780px; }
.hero__sub { font-size: clamp(17px, 1.45vw, 21px); line-height: 1.65; max-width: 660px; color: rgba(255,255,255,.86); }
.hero__proof { backdrop-filter: blur(10px); background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.16); }
.hero__proof-num { font-family: var(--font-head); font-weight: 700; }
.hero__proof-text { font-size: 12px; text-transform: none; letter-spacing: 0 !important; }

.about-media-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 54px;
  align-items: center;
}
.about-media-copy { max-width: 560px; }
.about-team-photo {
  margin-top: 0;
  width: 100%;
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lift);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 34%;
}
.about-video-wrap {
  max-width: 920px;
  margin: 52px auto 0;
}
.video-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--ink);
  box-shadow: var(--sh-deep);
  aspect-ratio: 16 / 9;
}
.video-card iframe { width: 100%; height: 100%; border: 0; display: block; }

.footer { background: #151515; }
.footer__grid { grid-template-columns: 1.5fr 1fr 1fr 1.15fr; }
.footer__tagline { max-width: 340px; }
.footer__social { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.footer__social-btn {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 0;
  color: #fff;
  box-shadow: 0 10px 24px rgba(0,0,0,.24);
}
.footer__social-btn svg { width: 22px; height: 22px; }
.footer__social-btn:hover { transform: translateY(-2px); color: #fff; }
.social-instagram { background: radial-gradient(circle at 30% 110%, #feda75 0 18%, #fa7e1e 32%, #d62976 52%, #962fbf 74%, #4f5bd5 100%); }
.social-facebook { background: #1877F2; }
.social-checkatrade { background: #ffffff; color: #123a6f; }
.social-checkatrade:hover { color: #123a6f; }
.social-google { background: #EA4335; }
.social-whatsapp { background: #25D366; }

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 34px rgba(0,0,0,.24);
  z-index: 9999;
  transition: transform .25s ease, box-shadow .25s ease;
}
.floating-whatsapp svg { width: 32px; height: 32px; }
.floating-whatsapp:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 20px 42px rgba(0,0,0,.30); }

@media (max-width: 820px) {
  .navbar .brand__logo-img { width: 150px; }
  .navbar__inner { min-height: 74px; }
  .hero { min-height: 680px; background-position: 56% center; }
  .hero__inner { min-height: 560px; padding: 72px 0; }
  .hero__title { font-size: clamp(40px, 12vw, 60px); }
  .hero__proof { align-items: stretch; }
  .about-media-grid { grid-template-columns: 1fr; gap: 26px; }
  .about-team-photo { order: -1; }
  .about-video-wrap { margin-top: 36px; }
  .floating-whatsapp { right: 16px; bottom: 16px; width: 54px; height: 54px; }
}


/* Luke revision: remove homepage stat bar, reduce hero scale, clean project cards, add kitchen image */
.hero__proof { display: none !important; }
.hero__actions { margin-bottom: 0 !important; }
.hero__title {
  font-size: clamp(38px, 5.2vw, 64px) !important;
  line-height: 0.98 !important;
  max-width: 680px !important;
  letter-spacing: -0.035em !important;
}
.hero__sub {
  font-size: clamp(15px, 1.25vw, 18px) !important;
  line-height: 1.55 !important;
  max-width: 580px !important;
}
.proj-card h3 { display: none !important; }
.proj-tag { margin-bottom: 0 !important; }
.img-kitchen { background-image: linear-gradient(180deg, rgba(10,15,30,.04), rgba(10,15,30,.7)), url('../assets/images/kitchen.png') !important; background-size: cover; background-position: center; }
@media (max-width: 760px) {
  .hero__title { font-size: clamp(34px, 10vw, 48px) !important; }
  .hero__sub { font-size: 15.5px !important; }
  .hero__inner { min-height: 560px !important; padding: 78px 0 82px !important; }
}

/* ============================================================
   Final mobile polish — centred, sharper responsive layout
   ============================================================ */
@media (max-width: 820px) {
  html { font-size: 15px; }
  body { text-align: center; }

  .container,
  .container--wide {
    width: min(100% - 30px, 560px) !important;
    margin-inline: auto !important;
  }

  .topbar { display: none !important; }

  .navbar { position: sticky; top: 0; }
  .navbar__inner {
    height: 72px !important;
    min-height: 72px !important;
    justify-content: center !important;
    position: relative;
  }
  .navbar .brand {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    justify-content: center;
  }
  .navbar .brand__logo-img { width: 142px !important; }
  .nav-toggle {
    display: flex !important;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .nav-menu { display: none !important; }

  .mobile-nav {
    text-align: center;
    padding-inline: 20px;
  }
  .mobile-nav__top { justify-content: center !important; position: relative; }
  .mobile-nav__top .brand { justify-content: center; }
  .mobile-nav__top button { position: absolute; right: 0; }
  .mobile-nav a:not(.btn) {
    font-size: clamp(28px, 9vw, 38px) !important;
    text-align: center;
  }
  .mobile-nav .mobile-ctas { align-items: center; }
  .mobile-nav .btn { width: min(100%, 330px); }

  .hero {
    min-height: 640px !important;
    background-image: linear-gradient(180deg, rgba(5,10,20,.62) 0%, rgba(5,10,20,.68) 100%), url('../assets/images/hero-home.png') !important;
    background-position: center center !important;
  }
  .hero__inner {
    min-height: 568px !important;
    padding: 82px 0 86px !important;
    justify-content: center !important;
    text-align: center !important;
  }
  .hero__content {
    max-width: 480px !important;
    margin-inline: auto !important;
    text-align: center !important;
  }
  .hero__kicker,
  .hero__actions {
    justify-content: center !important;
  }
  .hero__kicker { width: 100%; }
  .hero__kicker-badge { margin-inline: auto; }
  .hero__title {
    font-size: clamp(34px, 10vw, 48px) !important;
    line-height: 1.02 !important;
    max-width: 430px !important;
    margin: 0 auto 18px !important;
    text-align: center !important;
  }
  .hero__sub {
    max-width: 390px !important;
    margin: 0 auto 28px !important;
    font-size: 15.5px !important;
    line-height: 1.62 !important;
    text-align: center !important;
  }
  .hero__actions {
    flex-direction: column !important;
    align-items: center !important;
    gap: 12px !important;
  }
  .hero__actions .btn {
    width: min(100%, 315px) !important;
    justify-content: center !important;
  }

  .section,
  .section--off,
  .page-section,
  .cta-section {
    padding: 64px 0 !important;
    text-align: center !important;
  }
  .section__head,
  .page-section__head,
  .cta-card,
  .intro-split,
  .why-split,
  .about-media-copy,
  .contact-info,
  .contact-form-card,
  .review-card,
  .svc-card,
  .service-detail,
  .value-card,
  .process-step,
  .why-feat {
    text-align: center !important;
  }
  .section__head,
  .page-section__head { margin-inline: auto !important; }
  .label {
    display: inline-flex !important;
    justify-content: center !important;
    margin-inline: auto !important;
  }
  .label::before { display: none !important; }
  .h-section,
  .h-sub,
  .page-hero h1,
  .section__head h2,
  .page-section__head h2 {
    max-width: 440px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    font-size: clamp(30px, 9vw, 42px) !important;
    line-height: 1.08 !important;
    text-align: center !important;
  }
  .body-lg,
  .body-md,
  .intro-split__lead,
  .page-hero p,
  .section__head p,
  .page-section__head p {
    max-width: 440px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
  }

  .trust-strip__inner,
  .services-grid,
  .why-features,
  .values-grid,
  .process-grid,
  .reviews-grid,
  .service-list,
  .contact-grid,
  .gallery-grid,
  .stats-bar,
  .footer__grid {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }
  .trust-item,
  .svc-card,
  .why-feat,
  .value-card,
  .process-step,
  .review-card,
  .service-detail,
  .contact-form-card,
  .contact-info {
    margin-inline: auto !important;
    max-width: 430px !important;
    width: 100% !important;
  }
  .trust-icon,
  .svc-card__icon,
  .why-feat__icon,
  .value-card__icon,
  .process-step__num {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .svc-card__link,
  .contact-link,
  .review-card__meta,
  .quote-author,
  .check-list li,
  .footer__social,
  .footer__legal,
  .cta-actions {
    justify-content: center !important;
  }
  .check-list li { text-align: center !important; align-items: flex-start; }

  .intro-split,
  .why-split,
  .about-media-grid,
  .contact-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }
  .intro-split__divider { margin: 22px auto 0 !important; }

  .project-grid,
  .projects-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .proj-card,
  .project-card {
    min-height: 260px !important;
    border-radius: 20px !important;
    margin-inline: auto !important;
    width: 100% !important;
  }
  .proj-card--large { min-height: 300px !important; }
  .proj-card__overlay {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 24px !important;
    text-align: center !important;
  }
  .proj-tag { margin-inline: auto !important; }

  .about-team-photo,
  .split-img,
  .service-detail__img,
  .gallery-img,
  .about-image,
  .image-card img {
    margin-inline: auto !important;
    border-radius: 20px !important;
    max-height: 440px;
    object-fit: cover;
  }
  .about-team-photo {
    order: -1;
    aspect-ratio: 4 / 3 !important;
    object-position: center 34% !important;
  }
  .about-video-wrap {
    max-width: 100% !important;
    margin-top: 32px !important;
  }
  .video-card { border-radius: 18px !important; }

  .page-hero {
    min-height: 360px !important;
    padding: 84px 0 !important;
    text-align: center !important;
  }
  .page-hero__inner,
  .page-hero .container { text-align: center !important; }

  .form-row,
  .form-grid { grid-template-columns: 1fr !important; }
  input, textarea, select { text-align: center; }

  .footer { text-align: center !important; padding-bottom: 88px !important; }
  .footer .brand,
  .footer__brand,
  .footer__logo,
  .footer-logo,
  .footer .brand__logo-img {
    margin-left: auto !important;
    margin-right: auto !important;
    justify-content: center !important;
  }
  .footer__tagline,
  .footer__col,
  .footer__col-title,
  .footer__bottom,
  .footer__copy { text-align: center !important; margin-inline: auto !important; }
  .footer__social { gap: 12px !important; }
  .footer__bottom { flex-direction: column !important; gap: 12px !important; }

  .sticky-bar { display: none !important; }
  .floating-whatsapp {
    right: 14px !important;
    bottom: 14px !important;
    width: 54px !important;
    height: 54px !important;
  }
}

@media (max-width: 480px) {
  .container,
  .container--wide { width: calc(100% - 28px) !important; }
  .hero { min-height: 600px !important; }
  .hero__inner { min-height: 520px !important; padding: 64px 0 76px !important; }
  .hero__title { font-size: clamp(32px, 11vw, 42px) !important; max-width: 350px !important; }
  .hero__sub { font-size: 15px !important; max-width: 330px !important; }
  .btn { width: min(100%, 310px); justify-content: center; }
  .h-section,
  .h-sub,
  .page-hero h1 { font-size: clamp(28px, 9vw, 38px) !important; }
  .svc-card,
  .review-card,
  .service-detail,
  .value-card,
  .process-step,
  .why-feat,
  .contact-form-card,
  .contact-info { padding: 26px 22px !important; }
  .proj-card { min-height: 230px !important; }
  .proj-card--large { min-height: 270px !important; }
  .footer__social-btn { width: 44px !important; height: 44px !important; }
}
