/* ============================================================
   CKS PROJECTS, HOME RENOVATIONS & EXTENSIONS WOLLONGONG
   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;
  --secondary-fixed: #d3e4ff;
  --secondary-fixed-dim: #a1c9ff;
  --on-secondary-fixed: #001c38;
  --on-secondary-fixed-variant: #004880;

  /* Tertiary (Near-black) */
  --tertiary: #0f1112;
  --on-tertiary: #ffffff;
  --tertiary-container: #242626;
  --on-tertiary-container: #8c8d8d;

  /* Status */
  --error: #ba1a1a;
  --on-error: #ffffff;
  --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 > *, .compare-body > *, .footer-grid > *, .why-grid > *, .services-grid > *, .projects-grid > *, .review-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, 32px); 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; }
  /* Avoid fixed-attachment jank / over-zoom on phones: flat warm cream */
  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 (Sharp, Navy + Steel Blue) ---------- */
.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; /* Sharp corners */
  border: 0;
  transition: background-color .15s ease, color .15s ease, border-color .15s ease;
  line-height: 1.2;
  white-space: nowrap;
  max-width: 100%;
  text-align: center;
  text-transform: none;
}
.btn-primary { background: var(--primary); color: var(--on-primary); }
.btn-primary:hover { background: var(--primary-container); color: var(--on-primary); }
.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 (Sticky, navy on white) ---------- */
.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;
  border-radius: 0;
  transition: color .15s ease, background .15s ease;
  white-space: nowrap;
  letter-spacing: .005em;
}
.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; }
.tel-label { white-space: nowrap; }

/* Mobile nav toggle */
.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: 980px) {
  .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); border-radius: 0; }
  .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 (project-first) ---------- */
.hero {
  position: relative;
  margin-top: var(--header-h);
  padding: 0;
  background: var(--primary);
  color: #fff;
}
.hero-media {
  position: relative;
  height: clamp(560px, calc(100vh - var(--header-h)), 860px);
  overflow: hidden;
  background: var(--primary-container);
}
.hero-media picture, .hero-media img { display: block; width: 100%; height: 100%; }
.hero-media img { object-fit: cover; object-position: center 58%; }
/* Scrim only where the copy sits (bottom-left), so the building stays clear */
.hero-media::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(0deg, rgba(0,19,36,.90) 0%, rgba(0,19,36,.62) 26%, rgba(0,19,36,0) 56%),
    linear-gradient(90deg, rgba(0,19,36,.35) 0%, rgba(0,19,36,0) 55%);
}
.hero-credit {
  position: absolute; right: var(--gutter); bottom: 22px; z-index: 2;
  font-size: 11.5px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.72);
  max-width: 34ch; text-align: right; line-height: 1.5;
}
.hero-panel { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding-bottom: 56px; }
.hero-copy { max-width: 660px; }
.hero .eyebrow { color: var(--primary-fixed-dim); }
.hero h1 {
  color: #fff;
  font-size: clamp(36px, 4.4vw, 54px);
  max-width: 19ch;
  margin-bottom: 16px;
  text-shadow: 0 1px 18px rgba(0,12,24,.35);
}
.hero-sub {
  color: rgba(255,255,255,.88);
  font-size: 18px;
  line-height: 1.55;
  max-width: 50ch;
  margin-bottom: 28px;
}
.hero-ctas { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 20px; }
/* Navy on navy disappears: the hero's primary button inverts to white */
.hero .btn-primary { background: #fff; color: var(--primary); }
.hero .btn-primary:hover { background: var(--primary-fixed); color: var(--primary); }
.hero-link {
  color: #fff; font-weight: 600; font-size: 15px;
  border-bottom: 1px solid rgba(255,255,255,.45); padding-bottom: 2px;
}
.hero-link:hover { color: var(--secondary-container); border-color: var(--secondary-container); }

@media (max-width: 1100px) { .hero-credit { display: none; } }

/* Phones: photo first, then copy on navy, CTA inside the first screen */
@media (max-width: 700px) {
  .hero-media { height: auto; aspect-ratio: 4 / 3; }
  .hero-media img { object-position: center 64%; }
  .hero-media::after { background: linear-gradient(0deg, rgba(0,19,36,.5) 0%, rgba(0,19,36,0) 30%); }
  .hero-panel { position: static; padding: 22px 0 30px; }
  .hero .eyebrow { font-size: 11.5px; margin-bottom: 8px; }
  .hero h1 { font-size: 29px; line-height: 1.12; margin-bottom: 10px; }
  .hero-sub { font-size: 15.5px; line-height: 1.5; margin-bottom: 18px; }
  .hero-ctas .btn { width: 100%; }
  .hero-ctas a[href^="tel:"] { display: none; }
}

/* ---------- Proof strip ---------- */
.proof {
  padding: 22px 0;
  background: var(--surface-container-lowest);
  border-bottom: 1px solid var(--outline-variant);
}
.proof-row {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 18px 28px;
}
.proof-award { display: flex; align-items: center; gap: 12px; }
.proof-award img { width: 52px; height: 52px; object-fit: contain; flex-shrink: 0; }
.proof-award span { font-size: 12.5px; line-height: 1.4; color: var(--on-surface-variant); }
.proof-award b {
  display: block; color: var(--primary); font-size: 13px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
}
.proof-logos { display: flex; align-items: center; gap: 14px; }
.proof-logos img { height: 50px; width: auto; }
.proof-rating { display: flex; flex-direction: column; font-size: 12.5px; color: var(--on-surface-variant); line-height: 1.4; }
.proof-rating .stars { color: #F2A43A; font-size: 15px; letter-spacing: 2px; }
.proof-rating b { color: var(--primary); }
@media (max-width: 700px) {
  .proof { padding: 18px 0; }
  .proof-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .proof-award img { width: 42px; height: 42px; }
  .proof-award span { font-size: 11.5px; }
  .proof-logos img { height: 40px; }
}

/* ---------- Project features ---------- */
.projects { background: var(--surface-container-lowest); }
.project-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}
.project-feature + .project-feature { margin-top: 72px; }
.project-feature--reverse { grid-template-columns: minmax(0, 1fr) minmax(0, 1.65fr); }
.project-feature--reverse .project-media { order: 2; }

.mosaic {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 10px;
  aspect-ratio: 16 / 10;
}
.mosaic figure, .project-single, .story-photos figure, .why-photo, .svc-card figure { margin: 0; overflow: hidden; background: var(--surface-container); position: relative; }
.mosaic img, .project-single img, .story-photos img, .why-photo img, .svc-card img {
  width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease;
}
.mosaic figure:hover img, .project-single:hover img, .story-photos figure:hover img { transform: scale(1.03); }
.mosaic figure:first-child { grid-column: span 2; grid-row: span 2; }
.mosaic figcaption, .project-single figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 28px 16px 12px;
  background: linear-gradient(180deg, rgba(0,19,36,0) 0%, rgba(0,19,36,.8) 100%);
  color: #fff; font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
}
.project-single { aspect-ratio: 4 / 3; }

.project-info h3 { font-size: 26px; color: var(--primary); margin-bottom: 18px; }
.project-meta {
  display: grid; grid-template-columns: auto 1fr; gap: 10px 18px;
  margin: 0 0 20px; padding: 16px 0;
  border-top: 1px solid var(--outline-variant);
  border-bottom: 1px solid var(--outline-variant);
}
.project-meta dt {
  font-size: 11.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--on-surface-variant); padding-top: 2px;
}
.project-meta dd { margin: 0; font-size: 15px; font-weight: 600; color: var(--on-surface); }
.project-info p { color: var(--on-surface-variant); font-size: 15.5px; line-height: 1.65; }
.text-link { font-weight: 600; font-size: 15px; color: var(--secondary); border-bottom: 1px solid currentColor; padding-bottom: 1px; }
.text-link:hover { color: var(--primary); }

@media (max-width: 960px) {
  .project-feature, .project-feature--reverse { grid-template-columns: 1fr; gap: 28px; }
  .project-feature--reverse .project-media { order: 0; }
  .project-feature + .project-feature { margin-top: 56px; }
}
@media (max-width: 640px) {
  .mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: none; aspect-ratio: auto; gap: 8px; }
  .mosaic figure { aspect-ratio: 1 / 1; }
  .mosaic figure:first-child { grid-column: span 2; grid-row: auto; aspect-ratio: 4 / 3; }
  .mosaic figure:not(:first-child) figcaption { display: none; }
  .project-info h3 { font-size: 22px; }
}

/* Quote (shared) */
.quote-block {
  margin: 24px 0 0;
  padding: 22px 24px;
  border-left: 3px solid var(--secondary);
  background: var(--surface-container-low);
}
.quote-block p {
  font-size: 17px; font-weight: 500; line-height: 1.55; color: var(--primary);
  margin: 0 0 10px; font-style: normal;
}
.quote-block cite {
  font-style: normal; font-size: 12.5px; font-weight: 600;
  color: var(--on-surface-variant); letter-spacing: .08em; text-transform: uppercase;
}

/* ---------- Why CKS ---------- */
.why-split {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr);
  gap: 64px;
  align-items: center;
}
.why-split .lead { margin-bottom: 32px; }
.point-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--outline-variant); }
.point-list li {
  display: grid; grid-template-columns: 44px 1fr; gap: 18px;
  padding: 22px 0; border-bottom: 1px solid var(--outline-variant);
}
.point-list .num {
  width: 44px; height: 44px; background: var(--primary); color: var(--secondary-container);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; letter-spacing: .08em;
}
.point-list h3 { font-size: 18px; color: var(--primary); margin: 0 0 6px; }
.point-list p { margin: 0; color: var(--on-surface-variant); font-size: 15px; line-height: 1.6; }
.why-photo { aspect-ratio: 4 / 5; }
@media (max-width: 900px) {
  .why-split { grid-template-columns: 1fr; gap: 36px; }
  .why-photo { aspect-ratio: 4 / 3; }
}

/* ---------- Project story (Coledale) ---------- */
.story { background: var(--surface-container); }
.story-cols {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0; border: 1px solid var(--outline-variant); background: var(--outline-variant);
}
.story-col { background: var(--surface-container-lowest); padding: 30px 28px; }
.story-col h3 {
  font-size: 12.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--secondary); margin-bottom: 12px;
}
.story-col p { margin: 0; color: var(--on-surface); font-size: 15.5px; line-height: 1.65; }
.story-photos {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px;
  margin-top: 10px;
}
.story-photos figure { aspect-ratio: 3 / 4; }
.pull-quote {
  margin: 56px auto 0; max-width: 860px; text-align: center;
}
.pull-quote p {
  font-size: clamp(21px, 2.4vw, 27px); font-weight: 500; line-height: 1.4;
  color: var(--primary); letter-spacing: -.01em; margin: 0 0 16px;
}
.pull-quote cite {
  font-style: normal; font-size: 12.5px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; color: var(--on-surface-variant);
}
@media (max-width: 900px) { .story-cols { grid-template-columns: 1fr; } }
@media (max-width: 640px) {
  .story-photos { grid-template-columns: 1fr 1fr; gap: 8px; }
  .story-photos figure:first-child { grid-column: span 2; aspect-ratio: 4 / 3; }
  .story-col { padding: 24px 20px; }
  .pull-quote { margin-top: 40px; }
}

/* ---------- Reviews ---------- */
.review-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px;
  max-width: 1000px; margin: 0 auto;
}
.review-card {
  background: var(--surface-container-lowest);
  border: 1px solid var(--outline-variant);
  padding: 30px 28px;
  display: flex; flex-direction: column;
}
.review-card .body { color: var(--on-surface); font-size: 17px; font-weight: 500; line-height: 1.55; flex: 1; margin: 0 0 18px; }
.review-card cite {
  font-style: normal; font-size: 12.5px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase; color: var(--on-surface-variant);
  padding-top: 16px; border-top: 1px solid var(--outline-variant);
}
.review-card--rating { background: var(--primary); border-color: var(--primary); color: #fff; justify-content: center; }
.review-card--rating .score { font-size: 48px; font-weight: 700; line-height: 1; color: #fff; }
.review-card--rating .stars { color: #F2A43A; font-size: 20px; letter-spacing: 3px; margin: 10px 0 8px; }
.review-card--rating p { color: rgba(255,255,255,.8); font-size: 15px; margin: 0 0 18px; }
.review-card--rating a { color: var(--secondary-container); font-weight: 600; }
.subhead {
  text-align: center; font-size: 13px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--on-surface-variant); margin: 56px 0 0;
}

/* ---------- Team & credentials ---------- */
.about { background: var(--surface-container-lowest); }
.about-grid {
  display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr);
  gap: 56px; align-items: center;
}
.about-grid img { width: 100%; }
.cred-list { list-style: none; margin: 24px 0 0; padding: 0; display: grid; gap: 10px; }
.cred-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; font-weight: 500; color: var(--on-surface); }
.cred-list svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; color: var(--secondary); }
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; gap: 32px; } }

/* ---------- Services (photo cards) ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.svc-card { background: var(--surface-container-lowest); border: 1px solid var(--outline-variant); display: flex; flex-direction: column; }
.svc-card figure { aspect-ratio: 4 / 3; }
.svc-card-body { padding: 22px 22px 26px; }
.svc-card h3 { font-size: 17px; color: var(--primary); margin-bottom: 8px; }
.svc-card p { margin: 0; font-size: 14.5px; line-height: 1.6; color: var(--on-surface-variant); }
.svc-note {
  margin: 28px auto 0; max-width: 780px; text-align: center;
  font-size: 15px; color: var(--on-surface-variant);
}
@media (max-width: 1000px) { .svc-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) {
  .svc-grid { grid-template-columns: 1fr; gap: 14px; }
  .svc-card { flex-direction: row; }
  .svc-card figure { flex: 0 0 38%; aspect-ratio: auto; }
  .svc-card-body { padding: 16px; }
  .svc-card h3 { font-size: 16px; }
  .svc-card p { font-size: 13.5px; }
}

/* ---------- Process ---------- */
.process { background: var(--surface-container); }
.steps {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0; border: 1px solid var(--outline-variant); background: var(--outline-variant);
}
.steps li { background: var(--surface-container-lowest); padding: 28px 26px; }
.steps .num { font-size: 13px; font-weight: 700; letter-spacing: .12em; color: var(--secondary); display: block; margin-bottom: 10px; }
.steps h3 { font-size: 17px; color: var(--primary); margin-bottom: 8px; }
.steps p { margin: 0; font-size: 14.5px; line-height: 1.6; color: var(--on-surface-variant); }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) {
  .steps { grid-template-columns: 1fr; }
  .steps li { padding: 20px; display: grid; grid-template-columns: 34px 1fr; column-gap: 12px; }
  .steps .num { grid-row: span 2; margin: 2px 0 0; }
}

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

/* ---------- FAQ / Pricing ---------- */
.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 {
  background: transparent;
  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-family: 'Libre Franklin', sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: var(--primary);
  background: transparent;
}
.faq-q:hover { color: var(--secondary); }
.faq-item.open .faq-q { color: var(--primary); 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); }


/* ---------- Enquiry section ---------- */
.convert { background: var(--primary); color: #fff; position: relative; overflow: hidden; }
.convert .container { position: relative; z-index: 1; }
.convert-grid {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 56px; align-items: start;
}
.convert h2 { color: #fff; max-width: 18ch; }
.convert .eyebrow { color: var(--primary-fixed-dim); margin-bottom: 12px; }
.convert .lead { color: rgba(255,255,255,.82); margin-bottom: 26px; font-size: 17.5px; }
.convert h3 {
  color: #fff; font-size: 12.5px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; margin: 0 0 12px;
}
.enquire-list { list-style: none; margin: 0 0 30px; padding: 0; display: grid; gap: 9px; }
.enquire-list li { display: flex; gap: 10px; align-items: flex-start; color: rgba(255,255,255,.88); font-size: 15px; }
.enquire-list svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px; color: var(--secondary-container); }
.contact-mini { border-top: 1px solid rgba(255,255,255,.14); }
.contact-mini .row {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.14);
}
.contact-mini .ic {
  width: 36px; height: 36px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.08); color: var(--secondary-container);
}
.contact-mini .ic svg { width: 16px; height: 16px; }
.contact-mini .lbl {
  font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.55); margin-bottom: 3px;
}
.contact-mini a, .contact-mini .val { color: #fff; font-weight: 600; font-size: 15px; line-height: 1.45; display: block; }
.contact-mini a:hover { color: var(--secondary-container); }
.contact-mini .val small { display: block; font-weight: 400; font-size: 13.5px; color: rgba(255,255,255,.7); }
.convert .reassure {
  color: rgba(255,255,255,.72); font-size: 13.5px;
  display: flex; flex-wrap: wrap; gap: 10px 18px; margin-top: 22px;
}
.convert .reassure span { display: inline-flex; align-items: center; gap: 8px; }
.convert .reassure svg { width: 15px; height: 15px; color: var(--secondary-container); }

.convert-form-card {
  background: var(--surface-container-lowest); color: var(--on-surface);
  overflow: hidden; max-width: 100%;
}
.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: 19px; color: var(--primary); letter-spacing: -.01em; text-transform: none; font-weight: 600; }
.convert-form-card .head p { margin: 0; font-size: 14px; color: var(--on-surface-variant); }
.convert-form-card .iframe-wrap { width: 100%; overflow: hidden; }
.convert-form-card iframe { width: 100% !important; max-width: 100% !important; height: 580px; border: 0; display: block; background: #fff; }
@media (max-width: 900px) {
  .convert-grid { grid-template-columns: 1fr; gap: 36px; }
  .convert-form-card { order: -1; }
}

/* ---------- Video testimonials ---------- */
.video-testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 20px 0 0; }
.video-testimonial { position: relative; overflow: hidden; background: var(--surface-container-lowest); border: 1px solid var(--outline-variant); }
.video-testimonial wistia-player { display: block; width: 100%; aspect-ratio: 16/9; background: var(--surface-container); }
.video-testimonials__chip {
  display: flex; align-items: center; flex-wrap: wrap; gap: 8px;
  padding: 12px 16px; border-top: 1px solid var(--outline-variant);
}
.video-testimonials__chip svg { width: 16px; height: 16px; flex: 0 0 auto; color: var(--secondary); }
.video-testimonials__loc { font-weight: 700; font-size: 14px; color: var(--primary); }
.video-testimonials__proj {
  font-size: 11.5px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
  color: var(--on-surface-variant); background: var(--surface-container); padding: 3px 9px;
}
@media (max-width: 1024px) { .video-testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .video-testimonials-grid { grid-template-columns: 1fr; gap: 14px; } }

/* ---------- Google reviews widget ---------- */
.reviews-widget { max-width: 1000px; margin: 20px auto 0; min-height: 120px; }

/* ---------- 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; font-weight: 400; }
.footer-col a:hover { color: var(--secondary-container); }
.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(--secondary-container); }
.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);
}
@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;
  transform: translateY(110%);
  transition: transform .25s ease;
}
/* Shown once the hero CTA has scrolled away (toggled in JS) */
.mobile-sticky-cta.is-visible { transform: translateY(0); }
.mobile-sticky-cta .row {
  display: grid;
  grid-template-columns: 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; }
}

/* ---------- Enquiry anchor: clear the fixed header when CTAs scroll here ---------- */
#enquire { scroll-margin-top: calc(var(--header-h) + 8px); }

/* ---------- Utilities ---------- */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 11px;
  background: var(--surface-container);
  color: var(--on-surface);
  border: 1px solid var(--outline-variant);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
}

/* ---------- 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; }

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

/* ---------- Tap targets ---------- */
.btn { min-height: 48px; transition: background-color .15s ease, transform .1s ease; }
.btn:active { transform: translateY(1px); }

/* ---------- Utilities ---------- */
.cta-row { margin-top: 28px; display: flex; gap: 14px; flex-wrap: wrap; }
.center-cta { text-align: center; margin-top: 48px; }
.footer-note { color: rgba(255,255,255,.55); }
.footer-note--gap { margin-top: 6px; }
