/* ==========================================================================
   CVA Painting — Design System
   Navy + Cyan brand identity. "Satisfaction Always."
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* Brand */
  --navy: #04457B;
  --navy-dark: #03335C;
  --cyan: #29F6F1;
  --teal: #0E8E93;
  --teal-dark: #0b7377;

  /* Surfaces */
  --white: #ffffff;
  --off-white: #f6f8f9;
  --border: #e1e6ea;

  /* Text */
  --text-dark: #17232e;
  --text-light: #67727d;

  /* Fonts */
  --font-head: "Sora", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, sans-serif;

  /* Radius scale */
  --r-sm: 8px;   /* inputs, badges */
  --r-md: 14px;  /* buttons, small cards */
  --r-lg: 20px;  /* feature cards, images */

  /* Spacing base 4px */
  --container: 1240px;

  /* Elevation */
  --shadow-sm: 0 1px 2px rgba(4, 69, 123, 0.06);
  --shadow-md: 0 10px 30px rgba(4, 69, 123, 0.10);
  --shadow-lg: 0 24px 60px rgba(4, 69, 123, 0.16);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--navy);
  line-height: 1.1;
  margin: 0;
  letter-spacing: -0.01em;
}

p { margin: 0 0 1rem; }

a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--teal-dark); }

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

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

.section { padding: 100px 0; }
.section--tight { padding: 72px 0; }
.section--alt { background: var(--off-white); }

.section-head {
  max-width: 680px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head--left {
  margin-left: 0;
  text-align: left;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}

.section-head h2 {
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 700;
}

.section-head p {
  margin-top: 18px;
  color: var(--text-light);
  font-size: 18px;
}

.accent { color: var(--teal); }
/* Cyan spark — only safe on navy/dark surfaces */
.spark { color: var(--cyan); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  padding: 15px 26px;
  border-radius: var(--r-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease,
    box-shadow 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }

.btn-accent {
  background: var(--teal);
  color: #fff;
}
.btn-accent:hover {
  background: var(--teal-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-navy {
  background: var(--navy);
  color: #fff;
}
.btn-navy:hover {
  background: var(--navy-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* On dark banners */
.btn-light {
  background: #fff;
  color: var(--navy);
}
.btn-light:hover {
  background: var(--off-white);
  color: var(--navy-dark);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: currentColor;
  border-color: currentColor;
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--border);
}
.btn-ghost:hover {
  border-color: var(--navy);
  color: var(--navy-dark);
  transform: translateY(-2px);
}

/* ==========================================================================
   Header / Navigation
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img { height: 46px; width: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 19px;
  color: var(--navy);
}
.brand-tag {
  font-size: 12px;
  color: var(--teal);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--teal);
  transition: width 0.22s ease;
}
.nav-links a:hover { color: var(--navy); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--navy); }

.nav-right { display: flex; align-items: center; gap: 20px; }
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  color: var(--navy);
}
.nav-phone svg { width: 16px; height: 16px; color: var(--teal); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--navy);
}
.nav-toggle svg { width: 26px; height: 26px; }

/* Mobile overlay menu */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--navy);
  color: #fff;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  padding: 28px 32px 40px;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
.mobile-nav-top .brand-name { color: #fff; }
.mobile-nav-top .brand-tag { color: var(--cyan); }
.mobile-nav-close {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 8px;
}
.mobile-nav-close svg { width: 28px; height: 28px; }
.mobile-nav a.m-link {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.mobile-nav a.m-link:hover { color: var(--cyan); }
.mobile-nav .btn { margin-top: 32px; }
.mobile-nav-social {
  display: flex;
  gap: 18px;
  margin-top: auto;
  padding-top: 32px;
}
.mobile-nav-social a {
  color: #fff;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.mobile-nav-social a:hover { background: rgba(255, 255, 255, 0.12); color: var(--cyan); }
.mobile-nav-social svg { width: 20px; height: 20px; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  background: var(--navy);
  color: #fff;
  overflow: hidden;
}
.hero::before {
  /* subtle brand-derived depth, not a saas gradient */
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 500px at 85% -10%, rgba(41, 246, 241, 0.16), transparent 60%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-dark) 100%);
}
.hero .container { position: relative; z-index: 2; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
  padding: 96px 0 104px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(41, 246, 241, 0.35);
  color: #eaf7ff;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-head);
  letter-spacing: 0.04em;
  padding: 9px 16px;
  border-radius: 100px;
  margin-bottom: 26px;
}
.hero-badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
}

.hero h1 {
  color: #fff;
  font-size: clamp(40px, 6vw, 60px);
  font-weight: 800;
  line-height: 1.04;
  margin-bottom: 22px;
}
.hero h1 .spark { color: var(--cyan); }

.hero-sub {
  color: #cddced;
  font-size: 19px;
  line-height: 1.6;
  max-width: 540px;
  margin-bottom: 34px;
}

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

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.hero-stats .stat-num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 40px;
  color: #fff;
  line-height: 1;
}
.hero-stats .stat-num span { color: var(--cyan); }
.hero-stats .stat-label {
  color: #9fb4c9;
  font-size: 14px;
  margin-top: 6px;
}

/* Hero image / visual */
.hero-visual { position: relative; }
.hero-visual .media {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(150deg, #0a5a96, #03335c);
}
.hero-visual .media img {
  width: 100%; height: 100%; object-fit: cover;
}
.floating-badge {
  position: absolute;
  left: -28px;
  bottom: 40px;
  background: #fff;
  border-radius: var(--r-md);
  padding: 18px 22px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 3;
}
.floating-badge .fb-num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 34px;
  color: var(--navy);
  line-height: 1;
}
.floating-badge .fb-num span { color: var(--teal); }
.floating-badge .fb-text { font-size: 13px; color: var(--text-light); max-width: 90px; line-height: 1.3; }

/* Generic page hero (interior pages) */
.page-hero {
  position: relative;
  background: var(--navy);
  color: #fff;
  overflow: hidden;
  padding: 92px 0 84px;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(800px 400px at 90% 0%, rgba(41, 246, 241, 0.14), transparent 60%),
    linear-gradient(160deg, var(--navy), var(--navy-dark));
}
.page-hero .container { position: relative; z-index: 2; text-align: center; }
.page-hero .eyebrow { color: var(--cyan); }
.page-hero h1 {
  color: #fff;
  font-size: clamp(36px, 5.2vw, 54px);
  font-weight: 800;
}
.page-hero h1 .spark { color: var(--cyan); }
.page-hero p {
  color: #cddced;
  font-size: 19px;
  max-width: 640px;
  margin: 20px auto 0;
}
.breadcrumb {
  margin-top: 26px;
  font-size: 14px;
  color: #9fb4c9;
}
.breadcrumb a { color: var(--cyan); }

/* ==========================================================================
   Service cards
   ========================================================================== */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 34px 30px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: #cfe0ec;
}
.icon-badge {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: #fff;
  margin-bottom: 22px;
  box-shadow: 0 6px 16px rgba(4, 69, 123, 0.22);
}
.icon-badge svg { width: 32px; height: 32px; }
.service-card h3 {
  font-size: 21px;
  font-weight: 600;
  margin-bottom: 12px;
}
.service-card p { color: var(--text-light); margin: 0 0 20px; font-size: 15.5px; }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  color: var(--teal);
}
.card-link svg { width: 16px; height: 16px; transition: transform 0.2s ease; }
.service-card:hover .card-link svg { transform: translateX(4px); }

/* ==========================================================================
   Why CVA — feature list
   ========================================================================== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.feature-list { display: grid; gap: 26px; }
.feature-item { display: flex; gap: 18px; }
.feature-item .fi-icon {
  flex: 0 0 auto;
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--navy);
  color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 6px 14px rgba(4, 69, 123, 0.2);
}
.feature-item .fi-icon svg { width: 26px; height: 26px; }
.feature-item h4 { font-size: 18px; font-weight: 600; margin-bottom: 5px; }
.feature-item p { color: var(--text-light); font-size: 15px; margin: 0; }

.why-visual {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 5 / 6;
  box-shadow: var(--shadow-md);
  background: linear-gradient(150deg, #0a5a96, #03335c);
}
.why-visual img { width: 100%; height: 100%; object-fit: cover; }

/* ==========================================================================
   How it works — steps
   ========================================================================== */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  counter-reset: step;
}
.step { position: relative; }
.step .step-num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 22px;
  color: #fff;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--navy);
  display: grid; place-items: center;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(4, 69, 123, 0.25);
}
.step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 27px;
  left: 66px;
  right: -14px;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--border) 0 8px, transparent 8px 16px);
}
.step h4 { font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.step p { color: var(--text-light); font-size: 15px; margin: 0; }

/* ==========================================================================
   Stats band
   ========================================================================== */
.stats-band {
  background: var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.stats-band::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(700px 300px at 15% 120%, rgba(41,246,241,0.14), transparent 60%);
}
.stats-band .container { position: relative; z-index: 2; }
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stats-row .s-num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(38px, 5vw, 48px);
  line-height: 1;
  color: #fff;
}
.stats-row .s-num span { color: var(--cyan); }
.stats-row .s-label { color: #9fb4c9; margin-top: 10px; font-size: 15px; }

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testi-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.stars { display: flex; gap: 3px; color: #f5a623; margin-bottom: 18px; }
.stars svg { width: 18px; height: 18px; }
.testi-card blockquote {
  margin: 0 0 24px;
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--text-dark);
  flex: 1;
}
.testi-author { display: flex; align-items: center; gap: 14px; }
.avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
}
.testi-author .name { font-family: var(--font-head); font-weight: 600; font-size: 15px; color: var(--navy); }
.testi-author .loc { font-size: 13px; color: var(--text-light); }

/* ==========================================================================
   FAQ accordion
   ========================================================================== */
.faq {
  max-width: 820px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  padding: 24px 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
}
.faq-q .faq-icon {
  flex: 0 0 auto;
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: grid; place-items: center;
  color: var(--teal);
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}
.faq-q .faq-icon svg { width: 16px; height: 16px; }
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--teal); color: #fff; border-color: var(--teal); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-a-inner {
  padding: 0 8px 26px;
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.7;
  max-width: 720px;
}

/* ==========================================================================
   CTA banner
   ========================================================================== */
.cta-banner {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(600px 300px at 100% 0%, rgba(41,246,241,0.16), transparent 55%),
    linear-gradient(120deg, var(--navy), var(--navy-dark));
}
.cta-inner {
  position: relative; z-index: 2;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding: 80px 0;
}
.cta-inner h2 { color: #fff; font-size: clamp(30px, 4vw, 42px); font-weight: 800; }
.cta-inner h2 .spark { color: var(--cyan); }
.cta-inner p { color: #cddcef; font-size: 18px; margin: 18px auto 34px; max-width: 560px; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ==========================================================================
   Detailed services (alternating rows)
   ========================================================================== */
.svc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.svc-row + .svc-row { margin-top: 96px; }
.svc-row.reverse .svc-media { order: 2; }
.svc-media {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-md);
  background: linear-gradient(150deg, #0a5a96, #03335c);
}
.svc-media img { width: 100%; height: 100%; object-fit: cover; }
.svc-body .eyebrow { margin-bottom: 12px; }
.svc-body h2 { font-size: clamp(26px, 3.4vw, 34px); font-weight: 700; margin-bottom: 16px; }
.svc-body > p { color: var(--text-light); font-size: 16.5px; margin-bottom: 24px; }
.svc-features { display: grid; gap: 13px; }
.svc-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15.5px;
  color: var(--text-dark);
}
.svc-features li svg {
  flex: 0 0 auto;
  width: 20px; height: 20px;
  color: var(--teal);
  margin-top: 2px;
}

/* Featured project case-study callout within a service row */
.project-highlight {
  margin-top: 28px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--teal);
  border-radius: var(--r-md);
  padding: 22px 26px;
}
.project-highlight .ph-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
}
.project-highlight .ph-label svg { width: 15px; height: 15px; }
.project-highlight h4 {
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}
.project-highlight ul { display: grid; gap: 8px; }
.project-highlight li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: var(--text-light);
  line-height: 1.5;
}
.project-highlight li svg {
  flex: 0 0 auto;
  width: 15px; height: 15px;
  color: var(--teal);
  margin-top: 4px;
}

/* ==========================================================================
   Values (about)
   ========================================================================== */
.value-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 30px 26px;
  text-align: left;
}
.value-card .icon-badge { background: var(--navy); color: #fff; }
.value-card h3 { font-size: 19px; font-weight: 600; margin-bottom: 10px; }
.value-card p { color: var(--text-light); font-size: 15px; margin: 0; }

/* About story */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.story-body p { color: var(--text-light); font-size: 17px; margin-bottom: 18px; }
.story-body p:first-of-type {
  color: var(--text-dark);
  font-size: 19px;
  font-weight: 500;
}
.story-visual {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-md);
  position: relative;
  background: linear-gradient(150deg, #0a5a96, #03335c);
}
.story-visual img { width: 100%; height: 100%; object-fit: cover; }

/* Service area */
.area-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 48px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.area-card h2 { font-size: clamp(26px, 3.4vw, 34px); font-weight: 700; margin-bottom: 16px; }
.area-card p { color: var(--text-light); margin-bottom: 24px; }
.area-list { display: flex; flex-wrap: wrap; gap: 12px; }
.area-chip {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-head);
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.area-chip svg { width: 15px; height: 15px; color: var(--teal); }
.area-map {
  aspect-ratio: 1 / 1;
  border-radius: var(--r-md);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.area-map iframe { display: block; }

/* ==========================================================================
   Contact
   ========================================================================== */
.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.contact-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px 30px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.contact-card .icon-badge { margin: 0 auto 20px; width: 62px; height: 62px; }
.contact-card h3 { font-size: 19px; font-weight: 600; margin-bottom: 10px; }
.contact-card p { color: var(--text-light); font-size: 15px; margin: 0 0 6px; }
.contact-card a.big {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
  color: var(--navy);
}
.contact-card a.big:hover { color: var(--teal); }

.hours-card {
  background: var(--navy);
  color: #fff;
  border-radius: var(--r-lg);
  padding: 44px;
  position: relative;
  overflow: hidden;
}
.hours-card::before {
  content:"";
  position:absolute; inset:0;
  background: radial-gradient(500px 260px at 110% -20%, rgba(41,246,241,0.14), transparent 60%);
}
.hours-card > * { position: relative; z-index: 2; }
.hours-card h3 { color: #fff; font-size: 24px; margin-bottom: 22px; }
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  font-size: 16px;
}
.hours-row:last-child { border-bottom: none; }
.hours-row .day { color: #cddcef; }
.hours-row .time { font-family: var(--font-head); font-weight: 600; color: #fff; }
.hours-row .time.closed { color: #9fb4c9; font-weight: 500; }

.social-inline { display: flex; gap: 14px; margin-top: 26px; }
.social-inline a {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.22);
  display: grid; place-items: center;
  color: #fff;
}
.social-inline a:hover { background: rgba(255,255,255,0.1); color: var(--cyan); }
.social-inline svg { width: 20px; height: 20px; }

/* ==========================================================================
   Quote / Enquiry form
   ========================================================================== */
.quote-wrap {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 44px;
  box-shadow: var(--shadow-sm);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.field { display: flex; flex-direction: column; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.field label .req { color: var(--teal); }
.field input,
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: 15.5px;
  color: var(--text-dark);
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 13px 15px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(14, 142, 147, 0.15);
}
.field select { appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%2367727d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 42px;
}
.form-submit { margin-top: 26px; }
.form-note { font-size: 13px; color: var(--text-light); margin-top: 14px; }
.form-success {
  display: none;
  background: rgba(14,142,147,0.08);
  border: 1px solid rgba(14,142,147,0.3);
  color: var(--teal-dark);
  border-radius: var(--r-md);
  padding: 16px 20px;
  font-size: 15px;
  margin-bottom: 24px;
  font-weight: 500;
}
.form-success.show { display: block; }

.quote-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
}
.quote-aside h2 { font-size: clamp(26px, 3.4vw, 34px); font-weight: 700; margin-bottom: 16px; }
.quote-aside > p { color: var(--text-light); margin-bottom: 30px; }
.quote-points { display: grid; gap: 18px; }
.quote-point { display: flex; gap: 14px; align-items: flex-start; }
.quote-point .qp-icon {
  flex: 0 0 auto;
  width: 42px; height: 42px; border-radius: 11px;
  background: var(--navy); color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 5px 12px rgba(4, 69, 123, 0.2);
}
.quote-point .qp-icon svg { width: 23px; height: 23px; }
.quote-point h4 { font-size: 16px; font-weight: 600; margin-bottom: 3px; }
.quote-point p { font-size: 14px; color: var(--text-light); margin: 0; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--navy);
  color: #cddcef;
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 48px;
  padding-bottom: 56px;
}
.footer-brand .brand-name { color: #fff; }
.footer-brand .brand-tag { color: var(--cyan); }
.footer-brand p {
  margin: 20px 0 22px;
  font-size: 15px;
  line-height: 1.7;
  color: #9fb4c9;
  max-width: 320px;
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: grid; place-items: center;
  color: #fff;
  transition: background 0.2s ease, color 0.2s ease;
}
.footer-social a:hover { background: var(--cyan); color: var(--navy); border-color: var(--cyan); }
.footer-social svg { width: 19px; height: 19px; }

.footer-col h4 {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col ul { display: grid; gap: 12px; }
.footer-col a { color: #9fb4c9; font-size: 15px; }
.footer-col a:hover { color: var(--cyan); }
.footer-contact li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  color: #9fb4c9;
  margin-bottom: 14px;
}
.footer-contact li svg { flex: 0 0 auto; width: 18px; height: 18px; color: var(--cyan); margin-top: 3px; }
.footer-contact a { color: #cddcef; }
.footer-contact a:hover { color: var(--cyan); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 14px;
  color: #7d93ab;
}

/* ==========================================================================
   Scroll reveal
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { max-width: 460px; }
  .grid-4, .steps, .stats-row { grid-template-columns: repeat(2, 1fr); }
  .step::after { display: none; }
  .why-grid, .story-grid, .quote-layout, .svc-row, .svc-row.reverse,
  .area-card { grid-template-columns: 1fr; gap: 40px; }
  .svc-row.reverse .svc-media { order: 0; }
  .why-visual, .story-visual { max-width: 480px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  .nav-links, .nav-phone { display: none; }
  .nav-toggle { display: block; }
  .nav-right .btn { display: none; }
}

@media (max-width: 680px) {
  .container { padding: 0 22px; }
  .section { padding: 68px 0; }
  .grid-3, .grid-2, .grid-4, .contact-cards,
  .steps, .stats-row, .form-grid { grid-template-columns: 1fr; }
  .hero-grid { padding: 64px 0 72px; }
  .hero-stats { gap: 28px; }
  .floating-badge { left: 12px; bottom: 12px; }
  .quote-wrap, .area-card, .hours-card { padding: 28px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .stats-row { gap: 36px; }
}
