/* ============================================================
   CKS PROJECTS, WOLLONGONG DUPLEX FEASIBILITY GUIDE
   PDF + Personalised Video Lead Magnet Landing Page
   Coastal Structural Integrity Design System
   Corporate Modernism · Navy + Steel Blue · Libre Franklin · Sharp Corners
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  /* Surfaces */
  --surface: #fcf9f8;
  --surface-dim: #dcd9d9;
  --surface-bright: #fcf9f8;
  --surface-container-lowest: #ffffff;
  --surface-container-low: #f6f3f2;
  --surface-container: #f0eded;
  --surface-container-high: #eae7e7;
  --surface-container-highest: #e5e2e1;

  /* On-surfaces */
  --on-surface: #1c1b1b;
  --on-surface-variant: #43474d;
  --inverse-surface: #313030;
  --inverse-on-surface: #f3f0ef;

  /* Outlines */
  --outline: #73777e;
  --outline-variant: #c3c7ce;

  /* Brand (Navy) */
  --primary: #001324;
  --on-primary: #ffffff;
  --primary-container: #002845;
  --on-primary-container: #7190b2;
  --inverse-primary: #aac9ee;
  --primary-fixed: #cfe4ff;
  --primary-fixed-dim: #aac9ee;
  --on-primary-fixed: #001d34;
  --on-primary-fixed-variant: #294968;

  /* Steel Blue (Secondary) */
  --secondary: #22609e;
  --on-secondary: #ffffff;
  --secondary-container: #87bcff;
  --on-secondary-container: #004b84;

  /* Gold (Scarcity / lead-magnet accent) */
  --gold: #d8a53b;
  --gold-soft: #f4c552;
  --on-gold: #241a05;

  /* Tertiary */
  --tertiary: #0f1112;

  /* Status */
  --error: #ba1a1a;
  --success: #1b5e3b;

  /* Backgrounds */
  --background: #fcf9f8;
  --on-background: #1c1b1b;

  /* Spacing */
  --section-pad-y: 80px;
  --section-pad-y-mobile: 48px;
  --gutter: 24px;
  --gutter-mobile: 16px;
  --container-max: 1200px;
  --stack-gap: 16px;
  --header-h: 80px;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Libre Franklin', system-ui, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--on-background);
  background:
    linear-gradient(rgba(252, 249, 248, 0.90), rgba(252, 249, 248, 0.90)),
    url('img/Background_1500x750.jpg') center / cover fixed,
    var(--background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--secondary); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--on-secondary-container); }
button { font-family: inherit; cursor: pointer; border: none; background: none; padding: 0; }
ul { padding-left: 0; }

html, body { overflow-x: hidden; max-width: 100%; }
img, iframe, video, embed, object { max-width: 100%; }
.about-grid > *, .contact-grid > *, .areas-grid > *, .convert-grid > *, .footer-grid > *,
.why-grid > *, .services-grid > *, .projects-grid > *, .offer-grid > *, .steps-grid > *,
.objection-grid > *, .hero .container > * { min-width: 0; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Libre Franklin', sans-serif;
  color: var(--on-surface);
  margin: 0 0 .5em;
  letter-spacing: -.01em;
}
h1 { font-size: clamp(34px, 5vw, 48px); font-weight: 700; line-height: 1.1; letter-spacing: -.02em; }
h2 { font-size: clamp(28px, 3.5vw, 34px); font-weight: 600; line-height: 1.2; }
h3 { font-size: 24px; font-weight: 600; line-height: 1.3; }
h4 { font-size: 18px; font-weight: 600; line-height: 1.4; }
h5 { font-size: 14px; font-weight: 600; line-height: 1.4; }
@media (max-width: 640px) {
  h1 { font-size: 30px; }
  h2 { font-size: 24px; }
  h3 { font-size: 20px; }
  body { background: var(--background); }
}
p { margin: 0 0 1em; font-size: 16px; line-height: 1.5; }
.lead { font-size: 18px; line-height: 1.6; color: var(--on-surface-variant); }
.eyebrow {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 14px;
  display: inline-block;
  line-height: 1.4;
}

/* ---------- Containers ---------- */
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--gutter); }
section { padding: var(--section-pad-y) 0; position: relative; }
section.compact { padding: calc(var(--section-pad-y) * .6) 0; }
.center { text-align: center; }
@media (max-width: 640px) {
  section { padding: var(--section-pad-y-mobile) 0; }
  .container { padding: 0 var(--gutter-mobile); }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Libre Franklin', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .01em;
  padding: 16px 28px;
  border-radius: 0;
  border: 0;
  transition: background-color .15s ease, color .15s ease, border-color .15s ease, transform .1s ease;
  line-height: 1.2;
  white-space: nowrap;
  max-width: 100%;
  text-align: center;
  min-height: 48px;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--primary); color: var(--on-primary); }
.btn-primary:hover { background: var(--primary-container); color: var(--on-primary); }
.btn-gold { background: var(--gold); color: var(--on-gold); }
.btn-gold:hover { background: var(--gold-soft); color: var(--on-gold); }
.btn-secondary { background: var(--secondary); color: var(--on-secondary); }
.btn-secondary:hover { background: var(--on-secondary-container); color: var(--on-secondary); }
.btn-outline { background: transparent; color: var(--on-surface); border: 1px solid var(--outline); }
.btn-outline:hover { background: var(--surface-container); color: var(--on-surface); border-color: var(--on-surface); }
.btn-ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.5); }
.btn-ghost:hover { background: rgba(255,255,255,.08); color: #fff; border-color: #fff; }
.btn-lg { padding: 20px 36px; font-size: 16px; }
.btn-sm { padding: 12px 20px; font-size: 14px; }
.btn-arrow::after { content: "→"; font-weight: 600; transition: transform .2s ease; display: inline-block; }
.btn-arrow:hover::after { transform: translateX(3px); }
@media (max-width: 600px) {
  .btn { white-space: normal; padding: 14px 22px; font-size: 14.5px; }
  .btn-lg { padding: 16px 24px; font-size: 15px; }
}

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 90;
  background: var(--surface-container-lowest);
  border-bottom: 1px solid var(--outline-variant);
  height: var(--header-h);
}
.header-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand img { width: 42px; height: 42px; }
.brand a { display: flex; gap: 12px; align-items: center; }
.brand a:hover { opacity: .85; }
.brand-name { font-weight: 700; font-size: 17px; color: var(--primary); line-height: 1.1; letter-spacing: -.005em; white-space: nowrap; }
.brand-tag { font-size: 10.5px; color: var(--on-surface-variant); font-weight: 600; letter-spacing: .12em; text-transform: uppercase; margin-top: 4px; white-space: nowrap; }

.nav-primary { flex: 1; display: flex; justify-content: center; }
.nav-primary ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 2px; }
.nav-primary a {
  color: var(--on-surface);
  font-weight: 500;
  font-size: 14.5px;
  padding: 10px 13px;
  transition: color .15s ease, background .15s ease;
  white-space: nowrap;
}
.nav-primary a:hover { color: var(--primary); background: var(--surface-container-low); }
.header-cta { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.tel-link { display: inline-flex; align-items: center; gap: 8px; color: var(--primary); font-weight: 600; font-size: 14.5px; white-space: nowrap; }
.tel-link:hover { color: var(--secondary); }
.tel-link svg { width: 17px; height: 17px; flex-shrink: 0; }

.nav-toggle { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--primary); position: relative; transition: background .2s ease; }
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; width: 22px; height: 2px; background: var(--primary); transition: transform .2s ease, top .2s ease; }
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }
body.nav-open .nav-toggle span { background: transparent; }
body.nav-open .nav-toggle span::before { top: 0; transform: rotate(45deg); }
body.nav-open .nav-toggle span::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 1180px) {
  .nav-primary {
    position: fixed; top: var(--header-h); right: 0; left: 0;
    background: var(--surface-container-lowest);
    border-bottom: 1px solid var(--outline-variant);
    box-shadow: 0 12px 24px rgba(0,0,0,.08);
    padding: 16px var(--gutter);
    transform: translateY(-110%);
    visibility: hidden;
    transition: transform .25s ease, visibility .25s ease;
    max-height: calc(100vh - var(--header-h));
    overflow: auto;
    display: block;
    z-index: -1;
  }
  body.nav-open .nav-primary { transform: translateY(0); visibility: visible; z-index: 1; }
  .nav-primary ul { flex-direction: column; gap: 0; }
  .nav-primary a { display: block; padding: 14px 8px; font-size: 16px; border-bottom: 1px solid var(--surface-container-high); }
  .nav-primary li:last-child a { border-bottom: 0; }
  .nav-toggle { display: inline-flex; }
}
@media (max-width: 860px) {
  .tel-link span.tel-label { display: none; }
  .header-cta .btn { padding: 11px 14px; font-size: 13px; }
}
@media (max-width: 540px) {
  .brand-tag { display: none; }
  .header-cta .btn-text-long { display: none; }
  .header-cta .btn-text-short { display: inline; }
  .brand img { width: 36px; height: 36px; }
  .brand-name { font-size: 15px; }
}
.btn-text-short { display: none; }

/* ---------- Hero (image + overlaid capture card) ---------- */
.hero {
  padding-top: calc(var(--header-h) + 56px);
  padding-bottom: 84px;
  position: relative;
  overflow: hidden;
  background: var(--primary);
  color: #fff;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(112deg, rgba(0,19,36,.90) 0%, rgba(0,19,36,.72) 42%, rgba(0,19,36,.45) 72%, rgba(0,19,36,.30) 100%),
    url('img/CKSProjects2CWarillaBeachHouse-ArchitecturalPhotographybyLightandLines00002_2500x1670.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero .container {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 430px);
  gap: 56px;
  align-items: start;
}
.hero .eyebrow { color: var(--primary-fixed-dim); }
.hero h1 { color: #fff; max-width: 16ch; text-shadow: 0 1px 14px rgba(0,12,24,.45); }
.hero h1 .accent { color: var(--gold-soft); display: inline; }
.hero .lead {
  color: rgba(255,255,255,.88);
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.6;
  max-width: 56ch;
  margin-bottom: 22px;
}
.hero-trustline {
  display: flex; align-items: flex-start; gap: 10px;
  color: rgba(255,255,255,.78);
  font-size: 14px; line-height: 1.5;
  margin-bottom: 24px;
  max-width: 54ch;
}
.hero-trustline svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; color: var(--gold-soft); }
.hero-bullets { list-style: none; margin: 0 0 28px; padding: 0; display: grid; gap: 12px; }
.hero-bullets li {
  display: flex; gap: 12px; align-items: flex-start;
  color: rgba(255,255,255,.92);
  font-size: 15.5px; line-height: 1.5; min-width: 0;
}
.hero-bullets li span { flex: 1 1 auto; min-width: 0; }
.hero-bullets svg { flex: 0 0 22px; width: 22px; height: 22px; margin-top: 2px; color: var(--gold-soft); }

/* Hero personalised video */
.hero-video-label { display: inline-flex; align-items: center; gap: 8px; margin: 0 0 8px; font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-soft); }
.hero-video-label svg { width: 15px; height: 15px; }
.hero-video {
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(0,19,36,.35);
  overflow: hidden;
}
/* Fixed-ratio wrapper: the player fills it absolutely, so the swatch
   placeholder padding and the component's internal sizing can never
   stack and inflate the box height (mobile Wistia bug). */
.wistia-fit { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.wistia-fit wistia-player { position: absolute; inset: 0; width: 100%; height: 100%; padding: 0 !important; display: block; }
.hero-presenter {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px;
  border-top: 1px solid rgba(255,255,255,.14);
  color: #fff;
}
.hp-avatar { flex: 0 0 auto; width: 40px; height: 40px; display: grid; place-items: center; background: var(--gold); color: var(--on-gold); font-weight: 800; font-size: 14px; border-radius: 50%; }
.hp-meta { display: flex; flex-direction: column; min-width: 0; line-height: 1.25; }
.hp-name { font-weight: 700; font-size: 15px; color: #fff; }
.hp-role { font-size: 12px; color: rgba(255,255,255,.72); }
.hp-badge { margin-left: auto; flex-shrink: 0; font-size: 10.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--gold-soft); border: 1px solid rgba(244,197,82,.4); padding: 4px 8px; }
@media (max-width: 420px) { .hp-badge { display: none; } }

/* Hero capture form card (overlaid, like reference) */
.capture-card {
  background: var(--surface-container-lowest);
  color: var(--on-surface);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 24px 60px rgba(0,8,18,.45);
  overflow: hidden;
  position: sticky;
  top: calc(var(--header-h) + 16px);
}
.capture-card .cc-head {
  background: var(--primary);
  color: #fff;
  padding: 22px 24px 20px;
  text-align: center;
}
.capture-card .cc-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--gold); color: var(--on-gold);
  font-size: 11.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 12px; margin-bottom: 12px;
}
.capture-card .cc-badge svg { width: 14px; height: 14px; }
.capture-card .cc-head h2 { color: #fff; font-size: 21px; line-height: 1.25; margin: 0 0 6px; }
.capture-card .cc-head p { color: rgba(255,255,255,.8); font-size: 13.5px; margin: 0; line-height: 1.5; }
.capture-card .cc-body { padding: 22px 24px 20px; }
.capture-card .cc-list { list-style: none; margin: 0 0 18px; padding: 0; display: grid; gap: 11px; }
.capture-card .cc-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; font-weight: 500; color: var(--on-surface); line-height: 1.4; }
.capture-card .cc-list svg { flex: 0 0 18px; width: 18px; height: 18px; margin-top: 1px; color: var(--success); }
.capture-card .cc-foot {
  display: flex; flex-wrap: wrap; gap: 6px 16px; justify-content: center;
  padding: 14px 18px;
  border-top: 1px solid var(--outline-variant);
  background: var(--surface-container-low);
}
.capture-card .cc-foot span { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; color: var(--on-surface-variant); }
.capture-card .cc-foot svg { width: 14px; height: 14px; color: var(--success); }

.hero-rating {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 22px;
  padding: 10px 14px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
}
.hero-rating .g { width: 30px; height: 30px; display: grid; place-items: center; background: #fff; border-radius: 50%; font-weight: 700; font-family: Arial, sans-serif; color: #4285F4; font-size: 17px; }
.hero-rating .stars { color: var(--gold-soft); letter-spacing: 2px; font-size: 15px; }
.hero-rating .txt { color: #fff; font-size: 12.5px; font-weight: 600; letter-spacing: .04em; }
.hero-rating .txt b { color: var(--gold-soft); }

@media (max-width: 1000px) {
  /* Reorder hero so the personalised video + download CTA + benefits lead,
     with the long description dropping below the fold. */
  .hero .container { display: flex; flex-direction: column; gap: 22px; }
  .hero-copy { display: contents; }
  .hero .eyebrow { order: 1; }
  .hero h1 { order: 2; }
  .hero-video-label { order: 3; }
  .hero-video { order: 3; }
  .capture-card { order: 4; position: static; }
  .hero-bullets { order: 5; }
  .hero .lead { order: 6; }
  .hero-trustline { order: 7; }
  .hero-rating { order: 8; }
  /* Neutralise stacked margins; rely on the flex gap for even rhythm */
  .hero .eyebrow, .hero h1, .hero .lead, .hero-trustline, .hero-bullets, .hero-rating, .hero-video-label { margin-top: 0; margin-bottom: 0; }
  .hero { padding-bottom: 56px; }
  .hero::before {
    background-image:
      linear-gradient(180deg, rgba(0,19,36,.90) 0%, rgba(0,19,36,.72) 45%, rgba(0,19,36,.55) 100%),
      url('img/CKSProjects2CWarillaBeachHouse-ArchitecturalPhotographybyLightandLines00002_2500x1670.jpg');
  }
}
@media (max-width: 600px) {
  .hero { padding-top: calc(var(--header-h) + 20px); padding-bottom: 36px; }
  .hero h1 { font-size: 27px; }
  .hero .lead { font-size: 15.5px; margin-bottom: 16px; }
  .hero-bullets { margin-bottom: 20px; }
}

/* ---------- Trust logo bar ---------- */
.trust-bar {
  background: var(--surface-container-lowest);
  border-bottom: 1px solid var(--outline-variant);
  padding: 28px 0;
}
.trust-logos {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px 48px;
}
.trust-logos li { display: flex; align-items: center; }
.trust-logos img { height: 58px; width: auto; object-fit: contain; }
@media (max-width: 640px) {
  .trust-bar { padding: 22px 0; }
  .trust-logos { gap: 18px 30px; }
  .trust-logos img { height: 42px; }
}

/* ---------- Scarcity CTA band ---------- */
.cta-band {
  background: var(--primary-container);
  color: #fff;
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.cta-band .row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px 32px; flex-wrap: wrap;
}
.cta-band p { margin: 0; font-size: 16.5px; font-weight: 500; color: #fff; max-width: 62ch; line-height: 1.5; }
.cta-band p b { color: var(--gold-soft); font-weight: 700; }
@media (max-width: 720px) { .cta-band .row { flex-direction: column; align-items: stretch; text-align: center; } .cta-band .btn { width: 100%; } }

/* ---------- Section Heads ---------- */
.section-head { max-width: 780px; margin: 0 auto 52px; text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }
.section-head .lead { color: var(--on-surface-variant); }

/* ---------- Pain / outcome checklist ---------- */
.pain { background: var(--surface-container-lowest); }
.pain-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.pain-copy p { color: var(--on-surface-variant); font-size: 16px; line-height: 1.65; }
.check-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.check-list li {
  display: flex; gap: 12px; align-items: flex-start;
  color: var(--on-surface); font-size: 15.5px; line-height: 1.5; font-weight: 500;
  background: var(--surface-container-low);
  border-left: 3px solid var(--secondary);
  padding: 14px 16px;
}
.check-list svg { flex: 0 0 20px; width: 20px; height: 20px; margin-top: 1px; color: var(--secondary); }
@media (max-width: 860px) { .pain-grid { grid-template-columns: 1fr; gap: 32px; } }

/* ---------- Lead magnet offer ---------- */
.offer { background: var(--surface-container); }
.offer-grid { display: grid; grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr); gap: 56px; align-items: center; }
.guide-cover {
  position: relative;
  aspect-ratio: 3/4;
  background:
    linear-gradient(150deg, var(--primary-container) 0%, var(--primary) 100%);
  color: #fff;
  padding: 40px 34px;
  display: flex; flex-direction: column;
  box-shadow: 0 30px 60px rgba(0,10,20,.4);
  border: 1px solid rgba(255,255,255,.08);
  overflow: hidden;
}
.guide-cover::after {
  content: ""; position: absolute; top: 0; bottom: 0; left: 26px; width: 2px;
  background: rgba(255,255,255,.14);
}
.guide-cover .gc-kicker { font-size: 12px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-soft); }
.guide-cover .gc-title { font-size: clamp(26px, 3vw, 32px); font-weight: 700; line-height: 1.12; color: #fff; margin: 16px 0 10px; }
.guide-cover .gc-sub { font-size: 15px; color: rgba(255,255,255,.8); line-height: 1.5; margin: 0; }
.guide-cover .gc-spacer { flex: 1; }
.guide-cover .gc-meta { display: flex; align-items: center; gap: 12px; border-top: 1px solid rgba(255,255,255,.15); padding-top: 18px; }
.guide-cover .gc-meta img { width: 40px; height: 40px; }
.guide-cover .gc-meta .m { font-size: 12.5px; line-height: 1.35; color: rgba(255,255,255,.82); }
.guide-cover .gc-meta .m b { display: block; color: #fff; font-size: 14px; }
.guide-cover .gc-tag {
  position: absolute; top: 26px; right: -46px;
  background: var(--gold); color: var(--on-gold);
  font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 7px 54px; transform: rotate(45deg);
}
.offer-list { list-style: none; margin: 0 0 28px; padding: 0; display: grid; gap: 12px; }
.offer-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--on-surface); font-size: 15.5px; line-height: 1.5; }
.offer-list svg { flex: 0 0 22px; width: 22px; height: 22px; margin-top: 1px; color: var(--success); }
@media (max-width: 900px) { .offer-grid { grid-template-columns: 1fr; gap: 40px; max-width: 560px; margin: 0 auto; } }

/* ---------- Benefit / Why cards ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0;
  border: 1px solid var(--outline-variant);
  background: var(--outline-variant);
}
.why-card { background: var(--surface-container-lowest); padding: 36px 30px; transition: background .2s ease; }
.why-card:hover { background: var(--surface-container-low); }
.why-card .icon-circle {
  width: 48px; height: 48px; background: var(--primary);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; color: var(--gold-soft);
}
.why-card .icon-circle svg { width: 24px; height: 24px; }
.why-card h3 { font-size: 18px; margin-bottom: 12px; font-weight: 600; color: var(--primary); }
.why-card p { color: var(--on-surface-variant); font-size: 15px; margin: 0; line-height: 1.6; }

/* ---------- Service stack ---------- */
.services { background: var(--surface-container-lowest); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0;
  border: 1px solid var(--outline-variant);
  background: var(--outline-variant);
}
.service-card {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 24px 24px;
  background: var(--surface-container-lowest);
  transition: background .2s ease;
  color: var(--on-surface);
}
.service-card:hover { background: var(--surface-container-low); }
.service-card .ic {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--primary); color: var(--gold-soft);
  display: grid; place-items: center;
}
.service-card .ic svg { width: 20px; height: 20px; }
.service-card-body { display: flex; flex-direction: column; gap: 6px; }
.service-card h4 { margin: 0; font-size: 16px; font-weight: 600; line-height: 1.3; transition: color .2s ease; }
.service-card:hover h4 { color: var(--primary); }
.service-card-body p { margin: 0; font-size: 13.5px; line-height: 1.5; color: var(--on-surface-variant); }
.service-note { max-width: 760px; margin: 32px auto 0; text-align: center; font-size: 13.5px; color: var(--on-surface-variant); }

/* ---------- "Is this for you" ---------- */
.foryou { background: var(--primary); color: #fff; }
.foryou .section-head h2 { color: #fff; }
.foryou .section-head .lead { color: rgba(255,255,255,.8); }
.foryou-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
}
.foryou-item {
  display: flex; gap: 12px; align-items: flex-start;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  padding: 18px 18px;
  color: rgba(255,255,255,.92);
  font-size: 15px; line-height: 1.5;
}
.foryou-item svg { flex: 0 0 20px; width: 20px; height: 20px; margin-top: 1px; color: var(--gold-soft); }

/* ---------- About / Team (local authority) ---------- */
.about { background: var(--surface-container); }
.about-grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 56px; align-items: center; }
.about-grid img { width: 100%; }
.quote-block { margin: 28px 0 0; padding: 26px 28px; border-left: 3px solid var(--secondary); background: var(--surface-container-lowest); }
.quote-block p { font-size: 18px; font-weight: 500; line-height: 1.5; color: var(--primary); margin: 0 0 10px; }
.quote-block cite { font-style: normal; font-size: 13px; font-weight: 600; color: var(--on-surface-variant); letter-spacing: .08em; text-transform: uppercase; }
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; gap: 36px; } }

/* ---------- Projects ---------- */
.projects { background: var(--surface-container-lowest); }
.projects-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.project-card { position: relative; overflow: hidden; aspect-ratio: 4/3; background: var(--surface-container); }
.project-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.project-card:hover img { transform: scale(1.04); }
.project-card .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,19,36,0) 35%, rgba(0,19,36,.92) 100%);
  display: flex; align-items: flex-end; padding: 24px;
}
.project-card h4 { color: #fff; margin: 0; font-size: 18px; font-weight: 600; }
.project-card .region { color: rgba(255,255,255,.75); font-size: 12.5px; margin-top: 4px; text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }
.project-card.featured { grid-column: span 2; aspect-ratio: 16/9; }
@media (max-width: 700px) { .project-card.featured { grid-column: span 1; } }

/* ---------- Video testimonials ---------- */
.video-stories { background: var(--surface-container-lowest); }
.video-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 920px;
  margin: 0 auto;
}
.video-testimonial {
  margin: 0;
  overflow: hidden;
  background: var(--surface-container-lowest);
  border: 1px solid var(--outline-variant);
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
}
.video-testimonials__chip {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px 16px;
  border-top: 1px solid var(--outline-variant);
  background: var(--surface-container-lowest);
}
.video-testimonials__chip svg { width: 16px; height: 16px; flex: 0 0 auto; color: var(--success); }
.video-testimonials__loc { font-weight: 700; font-size: 14px; color: var(--primary); letter-spacing: -.005em; }
.video-testimonials__proj {
  font-size: 12px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
  color: var(--on-secondary); background: var(--secondary); padding: 3px 9px; margin-left: auto;
}
@media (max-width: 640px) {
  .video-testimonials-grid { grid-template-columns: 1fr; gap: 16px; }
  .video-testimonials__proj { margin-left: 0; }
}

/* ---------- Process steps ---------- */
.process { background: var(--surface-container); }
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; counter-reset: step; }
.step-card { background: var(--surface-container-lowest); border: 1px solid var(--outline-variant); padding: 28px 24px; position: relative; }
.step-card .num {
  width: 40px; height: 40px; display: grid; place-items: center;
  background: var(--primary); color: var(--gold-soft);
  font-weight: 700; font-size: 16px; margin-bottom: 16px;
}
.step-card h4 { font-size: 16px; color: var(--primary); margin-bottom: 8px; }
.step-card p { margin: 0; font-size: 14px; color: var(--on-surface-variant); line-height: 1.55; }

/* ---------- Objection handling ---------- */
.objections { background: var(--surface-container-lowest); }
.objection-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.objection-card { background: var(--surface-container-low); border: 1px solid var(--outline-variant); padding: 26px 26px; }
.objection-card .q {
  display: flex; gap: 10px; align-items: flex-start;
  font-weight: 600; color: var(--primary); font-size: 16px; margin-bottom: 10px; line-height: 1.4;
}
.objection-card .q svg { flex: 0 0 20px; width: 20px; height: 20px; margin-top: 1px; color: var(--secondary); }
.objection-card .a { color: var(--on-surface-variant); font-size: 15px; line-height: 1.6; margin: 0; padding-left: 30px; }
@media (max-width: 800px) { .objection-grid { grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */
.faq-intro { max-width: 720px; margin: 0 auto 40px; text-align: center; color: var(--on-surface-variant); font-size: 17px; line-height: 1.6; }
.faq-list { max-width: 920px; margin: 0 auto; border-top: 1px solid var(--outline-variant); border-bottom: 1px solid var(--outline-variant); }
.faq-item { border-bottom: 1px solid var(--outline-variant); transition: background .15s ease; }
.faq-item:last-child { border-bottom: 0; }
.faq-item.open { background: var(--surface-container-low); }
.faq-q {
  width: 100%; padding: 24px 4px;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  text-align: left; font-weight: 600; font-size: 17px; color: var(--primary); background: transparent;
}
.faq-q:hover { color: var(--secondary); }
.faq-item.open .faq-q { padding-left: 22px; padding-right: 22px; }
.faq-q .ico { width: 24px; height: 24px; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--secondary); position: relative; }
.faq-q .ico::before, .faq-q .ico::after { content: ""; position: absolute; background: currentColor; transition: transform .25s ease, opacity .25s ease; }
.faq-q .ico::before { width: 14px; height: 2px; left: 5px; top: 11px; }
.faq-q .ico::after { width: 2px; height: 14px; left: 11px; top: 5px; }
.faq-item.open .faq-q .ico::after { transform: rotate(90deg); opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a > div { padding: 0 22px 28px; color: var(--on-surface-variant); font-size: 15.5px; line-height: 1.7; }
.faq-a > div p { margin-bottom: 12px; }
.faq-a > div p:last-child { margin-bottom: 0; }
.faq-a a { color: var(--secondary); font-weight: 600; }
.faq-a strong { color: var(--on-surface); }

/* ---------- Conversion section ---------- */
.convert { background: var(--primary); color: #fff; position: relative; overflow: hidden; }
.convert::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(100deg, rgba(0,19,36,.93) 0%, rgba(0,19,36,.7) 50%, rgba(0,19,36,.5) 100%),
    url('img/CKS-Team-Shot-Edited_2500x1319-1024x540_1024x540.jpg');
  background-size: cover; background-position: center top;
}
.convert .container { position: relative; z-index: 1; }
.convert-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; }
.convert h2 { color: #fff; max-width: 18ch; }
.convert .eyebrow { color: var(--primary-fixed-dim); }
.convert .lead { color: rgba(255,255,255,.85); margin-bottom: 28px; font-size: 18px; }
.convert .ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 22px; }
.convert .reassure { color: rgba(255,255,255,.72); font-size: 13.5px; display: flex; flex-wrap: wrap; gap: 18px; }
.convert .reassure span { display: inline-flex; align-items: center; gap: 8px; }
.convert .reassure svg { width: 15px; height: 15px; color: var(--gold-soft); }
.convert-form-card {
  background: var(--surface-container-lowest); color: var(--on-surface);
  overflow: hidden; border: 1px solid rgba(255,255,255,.08);
}
.convert-form-card .head { padding: 22px 26px; border-bottom: 1px solid var(--outline-variant); background: var(--surface-container-low); }
.convert-form-card .head h3 { margin: 0 0 4px; font-size: 18px; color: var(--primary); }
.convert-form-card .head p { margin: 0; font-size: 14px; color: var(--on-surface-variant); }
.convert-form-card iframe { width: 100% !important; max-width: 100% !important; height: 500px; border: 0; display: block; background: #fff; }
.urgency-banner {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(216,165,59,.16); color: var(--gold-soft);
  padding: 7px 14px; font-size: 12.5px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
  border: 1px solid rgba(216,165,59,.4); margin-bottom: 18px;
}
.urgency-banner .pulse { width: 7px; height: 7px; background: var(--gold-soft); display: inline-block; animation: pulse 1.8s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; box-shadow: 0 0 0 0 rgba(216,165,59,.5); } 50% { opacity: .85; box-shadow: 0 0 0 6px rgba(216,165,59,0); } }
@media (max-width: 900px) { .convert-grid { grid-template-columns: 1fr; gap: 40px; } }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr; max-width: 620px; margin: 0 auto; }
.contact-info-card { background: var(--surface-container-lowest); border: 1px solid var(--outline-variant); padding: 36px; }
.contact-info-card h3 { font-size: 22px; margin-bottom: 6px; color: var(--primary); font-weight: 600; }
.contact-info-card .sub { color: var(--on-surface-variant); margin-bottom: 24px; font-size: 15px; }
.contact-row { display: flex; gap: 14px; align-items: flex-start; padding: 16px 0; border-top: 1px solid var(--surface-container-high); }
.contact-row:first-of-type { border-top: 0; padding-top: 0; }
.contact-row .ic { width: 38px; height: 38px; background: var(--primary); display: flex; align-items: center; justify-content: center; color: var(--gold-soft); flex-shrink: 0; }
.contact-row .ic svg { width: 17px; height: 17px; }
.contact-row .lbl { font-size: 11.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--on-surface-variant); margin-bottom: 4px; }
.contact-row a, .contact-row .val { font-size: 15px; color: var(--on-surface); font-weight: 600; display: block; line-height: 1.4; }
.contact-row a:hover { color: var(--secondary); }
.contact-cta-sep { margin-top: 22px; padding-top: 22px; border-top: 1px solid var(--outline-variant); }
@media (max-width: 600px) { .contact-info-card { padding: 28px 22px; } }

/* ---------- Footer ---------- */
.site-footer { background: var(--primary); color: rgba(255,255,255,.72); padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 42px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer-brand img { width: 56px; height: 56px; margin-bottom: 18px; }
.footer-brand h4 { color: #fff; margin: 0 0 8px; font-size: 18px; font-weight: 600; }
.footer-brand p { font-size: 14px; line-height: 1.6; color: rgba(255,255,255,.65); }
.footer-col h5 { color: #fff; font-size: 12px; letter-spacing: .16em; text-transform: uppercase; margin: 0 0 18px; font-weight: 700; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-col a { color: rgba(255,255,255,.7); font-size: 14.5px; }
.footer-col a:hover { color: var(--gold-soft); }
.footer-col li { font-size: 14.5px; }
.footer-license { display: inline-flex; align-items: center; gap: 9px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); padding: 9px 14px; color: rgba(255,255,255,.9); font-size: 13px; font-weight: 600; margin-top: 14px; letter-spacing: .03em; }
.footer-license svg { width: 15px; height: 15px; color: var(--gold-soft); }
.footer-bottom { padding-top: 24px; display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; font-size: 13px; color: rgba(255,255,255,.55); }
.footer-note { color: rgba(255,255,255,.55); }
.footer-note--gap { margin-top: 6px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } }

/* ---------- Sticky Mobile CTA Bar ---------- */
.mobile-sticky-cta { position: fixed; bottom: 0; left: 0; right: 0; background: var(--surface-container-lowest); border-top: 1px solid var(--outline-variant); padding: 10px 12px env(safe-area-inset-bottom, 10px); z-index: 80; display: none; }
.mobile-sticky-cta .row { display: grid; grid-template-columns: 1fr 1fr 1.6fr; gap: 8px; max-width: var(--container-max); margin: 0 auto; }
.mobile-sticky-cta .btn { padding: 14px 6px; font-size: 14px; }
@media (max-width: 840px) { .mobile-sticky-cta { display: block; } body { padding-bottom: 76px; } }

/* ---------- Modal ---------- */
.modal-backdrop { position: fixed; inset: 0; background: rgba(0,19,36,.78); z-index: 100; display: none; align-items: center; justify-content: center; padding: 16px; }
.modal-backdrop.open { display: flex; animation: fadeIn .18s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal { width: 100%; max-width: 640px; background: var(--surface-container-lowest); max-height: calc(100vh - 32px); display: flex; flex-direction: column; overflow: hidden; border: 1px solid rgba(255,255,255,.08); animation: pop .22s ease; }
@keyframes pop { from { transform: translateY(8px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.modal-head { padding: 24px 28px; border-bottom: 1px solid var(--outline-variant); display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; background: var(--surface-container-low); }
.modal-head h3 { font-size: 20px; margin: 0 0 4px; color: var(--primary); font-weight: 600; }
.modal-head p { margin: 0; color: var(--on-surface-variant); font-size: 14px; line-height: 1.5; }
.modal-close { width: 38px; height: 38px; display: inline-flex; align-items: center; justify-content: center; color: var(--on-surface); flex-shrink: 0; border: 1px solid transparent; transition: border-color .15s ease, color .15s ease; }
.modal-close:hover { border-color: var(--outline); color: var(--primary); }
.modal-close svg { width: 18px; height: 18px; }
.modal-body { overflow: auto; -webkit-overflow-scrolling: touch; }
.modal-body iframe { width: 100% !important; max-width: 100% !important; height: 500px; border: 0; display: block; background: #fff; }
body.modal-open { overflow: hidden; }

/* ---------- Skip link ---------- */
.skip-link { position: absolute; top: -100px; left: 12px; background: var(--primary); color: #fff; padding: 10px 16px; z-index: 200; font-weight: 600; }
.skip-link:focus { top: 12px; color: #fff; }

/* ---------- Utilities ---------- */
.center-cta { text-align: center; margin-top: 48px; }
.cta-row { margin-top: 28px; display: flex; gap: 14px; flex-wrap: wrap; }
.w-full { width: 100%; }
.text-white { color: #fff; }
.section-head--wide { max-width: none; }

/* ---------- Print ---------- */
@media print {
  .site-header, .mobile-sticky-cta, .modal-backdrop { display: none !important; }
  body { padding: 0; background: #fff; color: #000; }
}
