/* ============================================================
   CKS PROJECTS, WOLLONGONG DUPLEX FEASIBILITY GUIDE
   "Kingloch" visual direction (developer-site layout) with the
   CKS brand palette: Navy + Gold + warm sand. Libre Franklin.
   Static, mobile-first, zero-build (Cloudflare Pages).
   ============================================================ */

:root {
  /* Brand */
  --navy: #001324;
  --navy-2: #002845;
  --navy-3: #0a2136;
  --gold: #d8a53b;
  --gold-soft: #f4c552;
  --on-gold: #241a05;

  /* Neutrals */
  --cream: #fcf9f8;
  --sand: #e9e3d5;
  --sand-2: #f1ece1;
  --ink: #1c1b1b;
  --ink-soft: #43474d;
  --line: #c9c3b5;
  --white: #ffffff;

  /* Layout */
  --container: 1180px;
  --gutter: 24px;
  --header-h: 76px;
  --pad-y: 84px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Libre Franklin', system-ui, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  font-size: 16px; line-height: 1.55; color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
}
html, body { overflow-x: hidden; max-width: 100%; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy-2); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--gold); }
button { font-family: inherit; cursor: pointer; border: none; background: none; padding: 0; }
ul { margin: 0; padding: 0; list-style: none; }
h1,h2,h3,h4,h5 { margin: 0 0 .4em; font-family: 'Libre Franklin', sans-serif; letter-spacing: -.01em; line-height: 1.15; }
p { margin: 0 0 1em; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: var(--pad-y) 0; }
.center { text-align: center; }
@media (max-width: 640px) { :root { --pad-y: 52px; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 700; font-size: 14px; letter-spacing: .06em; text-transform: uppercase;
  padding: 16px 30px; border: 0; min-height: 48px; transition: background-color .15s ease, color .15s ease, transform .1s ease;
  text-align: center;
}
.btn:active { transform: translateY(1px); }
.btn-gold { background: var(--gold); color: var(--on-gold); }
.btn-gold:hover { background: var(--gold-soft); color: var(--on-gold); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-2); color: #fff; }
.btn-ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.55); }
.btn-ghost:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.btn-lg { padding: 18px 36px; font-size: 15px; }
.btn-block { width: 100%; }
@media (max-width: 600px){ .btn { padding: 15px 22px; font-size: 13px; } }

.eyebrow { display: inline-block; font-size: 12.5px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.section-title { font-size: clamp(24px, 3.2vw, 32px); font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: .01em; }
.section-lead { max-width: 720px; margin: 0 auto; color: var(--ink-soft); font-size: 17px; line-height: 1.6; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 90; height: var(--header-h);
  background: rgba(252,249,248,.96); border-bottom: 1px solid var(--line);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.header-inner { max-width: var(--container); 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; }
.brand img { width: 40px; height: 40px; }
.brand-name { font-weight: 800; font-size: 16px; color: var(--navy); letter-spacing: .02em; line-height: 1; }
.brand-tag { font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-soft); font-weight: 600; margin-top: 4px; }
.header-cta { display: flex; align-items: center; gap: 14px; }
.header-tel { display: inline-flex; align-items: center; gap: 8px; color: var(--navy); font-weight: 700; font-size: 14px; }
.header-tel:hover { color: var(--gold); }
.header-tel svg { width: 17px; height: 17px; }
@media (max-width: 560px){ .brand-tag { display: none; } .header-tel span { display: none; } }

/* ---------- Hero ---------- */
.hero { position: relative; padding-top: var(--header-h); background: var(--navy); }
.hero-media { position: relative; min-height: 620px; display: flex; }
.hero-media::before {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(0,12,22,.55) 0%, rgba(0,12,22,.30) 45%, rgba(0,12,22,.55) 100%),
    linear-gradient(180deg, rgba(0,12,22,.20) 0%, rgba(0,12,22,.10) 40%, rgba(0,12,22,.72) 100%),
    url('img/CKSProjects2CWarillaBeachHouse-ArchitecturalPhotographybyLightandLines00002_2500x1670.jpg') center / cover no-repeat;
}
.hero-media .container { position: relative; z-index: 2; width: 100%; display: grid; grid-template-columns: 1fr minmax(0, 380px); gap: 40px; align-items: center; padding-top: 56px; padding-bottom: 56px; }

/* Corner ribbon */
.ribbon { position: absolute; top: 0; left: 0; z-index: 3; overflow: hidden; width: 168px; height: 168px; pointer-events: none; }
.ribbon span {
  position: absolute; display: block; width: 240px; padding: 9px 0; text-align: center;
  background: var(--gold); color: var(--on-gold); font-size: 11.5px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  left: -60px; top: 40px; transform: rotate(-45deg); box-shadow: 0 4px 10px rgba(0,0,0,.25);
}

/* Hero display title */
.hero-title { text-align: center; color: #fff; }
.hero-title .line1 { display: block; font-size: clamp(38px, 7vw, 76px); font-weight: 800; letter-spacing: .02em; text-transform: uppercase; line-height: .96; text-shadow: 0 2px 20px rgba(0,8,16,.5); }
.hero-title .line2 { display: block; font-style: italic; font-weight: 500; color: var(--gold-soft); font-size: clamp(24px, 4vw, 40px); margin-top: 6px; letter-spacing: .01em; }
.hero-copy { display: flex; flex-direction: column; align-items: center; gap: 26px; }
.hero-offer { text-align: center; color: #fff; max-width: 640px; }
.hero-offer h1 { font-size: clamp(22px, 2.6vw, 30px); font-weight: 800; text-transform: uppercase; color: #fff; text-shadow: 0 2px 14px rgba(0,8,16,.45); margin-bottom: 8px; }
.hero-offer p { color: rgba(255,255,255,.9); font-size: 15.5px; margin: 0; }
.hero-offer .fine { font-size: 12px; color: rgba(255,255,255,.62); margin-top: 6px; }

/* Hero enquire card */
.enquire-card { background: var(--white); box-shadow: 0 24px 60px rgba(0,8,18,.5); align-self: center; }
.enquire-card .ec-head { text-align: center; padding: 22px 24px 6px; }
.enquire-card .ec-head h2 { font-size: 24px; font-weight: 800; text-transform: uppercase; color: var(--navy); letter-spacing: .04em; margin: 0; }
.enquire-card .ec-head p { font-size: 11.5px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin: 6px 0 0; }
.enquire-card .ec-form iframe { width: 100% !important; max-width: 100% !important; height: 468px; border: 0; display: block; background: #fff; }
.enquire-card .ec-foot { padding: 0 24px 18px; text-align: center; font-size: 12px; color: var(--ink-soft); }

@media (max-width: 900px) {
  .hero-media .container { grid-template-columns: 1fr; gap: 30px; }
  .hero-media { min-height: 0; }
  .enquire-card { max-width: 440px; width: 100%; margin: 0 auto; }
  /* Lift the video up so it's the focus above the fold; offer copy + button drop below it */
  .hero-title { order: 1; }
  .hero-video-label { order: 2; }
  .hero-video { order: 3; }
  .hero-offer { order: 4; }
  .hero-stories-btn { order: 5; }
}
@media (max-width: 600px) { .ribbon { width: 132px; height: 132px; } .ribbon span { font-size: 10px; width: 200px; left: -52px; top: 30px; } }

/* ---------- Dark CTA band ---------- */
.band { background: var(--navy); color: #fff; }
.band-cta { padding: 40px 0; }
.band-cta .row { display: flex; align-items: center; justify-content: center; gap: 14px 34px; flex-wrap: wrap; text-align: center; }
.band-cta h2 { font-size: clamp(20px, 2.4vw, 26px); font-weight: 800; text-transform: uppercase; color: #fff; margin: 0; letter-spacing: .03em; }
.band-cta p { margin: 4px 0 0; color: rgba(255,255,255,.8); font-size: 15.5px; }

/* ---------- Options / spec row ---------- */
.options { background: var(--cream); }
.options .head { text-align: center; max-width: 820px; margin: 0 auto 44px; }
.spec-row { display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.spec-col { text-align: center; padding: 30px 18px; border-right: 1px solid var(--line); }
.spec-col:last-child { border-right: 0; }
.spec-col .ico { width: 40px; height: 40px; margin: 0 auto 14px; color: var(--gold); }
.spec-col .ico svg { width: 40px; height: 40px; }
.spec-col h3 { font-size: 12.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); margin: 0 0 8px; min-height: 2.4em; display: flex; align-items: center; justify-content: center; }
.spec-col .val { font-size: 20px; font-weight: 800; color: var(--navy); }
.spec-col p { font-size: 13px; color: var(--ink-soft); margin: 8px 0 0; line-height: 1.45; }
@media (max-width: 860px) {
  .spec-row { grid-template-columns: repeat(2, 1fr); border: 1px solid var(--line); }
  .spec-col { border-bottom: 1px solid var(--line); }
  .spec-col:nth-child(odd) { border-right: 1px solid var(--line); }
  .spec-col:nth-child(even) { border-right: 0; }
  .spec-col:last-child { grid-column: 1 / -1; }
}
@media (max-width: 460px) { .spec-row { grid-template-columns: 1fr; } .spec-col, .spec-col:nth-child(odd) { border-right: 0; } }

/* ---------- Hero personalised video ---------- */
.hero-video-label { display: inline-flex; align-items: center; gap: 8px; margin: 6px 0 0; 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 { margin: 0; width: 100%; max-width: 620px; border: 1px solid rgba(255,255,255,.16); box-shadow: 0 24px 60px rgba(0,8,18,.45); background: #000; }
/* 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; background: var(--navy-2); color: #fff; text-align: left; }
.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; letter-spacing: .02em; border-radius: 50%; }
.hp-meta { display: flex; flex-direction: column; min-width: 0; line-height: 1.25; }
.hp-name { font-weight: 800; 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-stories-btn { margin-top: 2px; background: rgba(0,12,22,.55); border-color: rgba(255,255,255,.6); }
.hero-stories-btn svg { width: 16px; height: 16px; }
@media (max-width: 600px) { .hero-stories-btn { width: 100%; } }

/* ---------- Carousel ---------- */
.gallery { background: var(--navy); color: #fff; overflow: hidden; }
.gallery .head { text-align: center; max-width: 760px; margin: 0 auto 34px; }
.gallery .eyebrow { color: var(--gold-soft); }
.gallery h2 { color: #fff; }
.carousel { position: relative; max-width: 940px; margin: 0 auto; }
.carousel-viewport { overflow: hidden; }
.carousel-track { display: flex; transition: transform .5s cubic-bezier(.4,0,.2,1); }
.carousel-slide { flex: 0 0 100%; }
.carousel-slide figure { margin: 0; position: relative; aspect-ratio: 16/9; background: var(--navy-3); }
.carousel-slide img { width: 100%; height: 100%; object-fit: cover; }
.carousel-slide figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 40px 24px 20px; background: linear-gradient(180deg, transparent, rgba(0,12,22,.9)); }
.carousel-slide figcaption h4 { margin: 0; color: #fff; font-size: 19px; font-weight: 700; }
.carousel-slide figcaption span { color: var(--gold-soft); font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  width: 46px; height: 46px; border-radius: 50%; background: rgba(255,255,255,.92); color: var(--navy);
  display: grid; place-items: center; box-shadow: 0 4px 14px rgba(0,0,0,.3); transition: background .15s ease;
}
.carousel-btn:hover { background: #fff; }
.carousel-btn svg { width: 20px; height: 20px; }
.carousel-btn.prev { left: -22px; }
.carousel-btn.next { right: -22px; }
.carousel-dots { display: flex; justify-content: center; gap: 9px; margin-top: 22px; }
.carousel-dots button { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,.32); transition: background .15s ease, transform .15s ease; }
.carousel-dots button.active { background: var(--gold); transform: scale(1.25); }
@media (max-width: 1000px){ .carousel-btn.prev { left: 8px; } .carousel-btn.next { right: 8px; } }

/* ---------- Video testimonials ---------- */
.testimonials { background: var(--cream); }
.testimonials .head { text-align: center; margin-bottom: 44px; }
.testi-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 940px; margin: 0 auto; }
.testi-card { margin: 0; background: var(--white); border: 1px solid var(--line); box-shadow: 0 6px 20px rgba(0,8,18,.08); overflow: hidden; }
.testi-card figcaption { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; padding: 13px 16px; border-top: 1px solid var(--line); }
.testi-card figcaption svg { width: 16px; height: 16px; flex: 0 0 auto; color: var(--navy-2); }
.testi-card .loc { font-weight: 700; font-size: 14px; color: var(--navy); }
.testi-card .proj { margin-left: auto; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--on-gold); background: var(--gold); padding: 3px 9px; }
@media (max-width: 700px) { .testi-grid { grid-template-columns: 1fr; gap: 16px; } .testi-card .proj { margin-left: 0; } }

/* ---------- Meet Keiron / credentials ---------- */
.keiron { background: var(--cream); }
.keiron-grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1.05fr); gap: 48px; align-items: center; }
.keiron-photo { margin: 0; border: 1px solid var(--line); box-shadow: 0 16px 40px rgba(0,8,18,.14); }
.keiron-photo img { width: 100%; display: block; }
.keiron-copy h2 { color: var(--navy); }
.keiron-copy p { color: var(--ink-soft); font-size: 16px; line-height: 1.65; }
.cred-chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0 24px; }
.cred-chips li { display: inline-flex; align-items: center; gap: 8px; background: var(--white); border: 1px solid var(--line); padding: 9px 14px; font-size: 13px; font-weight: 700; color: var(--navy); }
.cred-chips svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }
.keiron-quote { margin: 0 0 24px; padding: 20px 24px; background: var(--sand); border-left: 3px solid var(--gold); }
.keiron-quote p { margin: 0 0 10px; font-size: 16.5px; font-style: italic; color: var(--navy); line-height: 1.55; }
.keiron-quote cite { font-style: normal; font-size: 12.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-soft); }
@media (max-width: 900px) { .keiron-grid { grid-template-columns: 1fr; gap: 32px; } }

/* ---------- Offers ---------- */
.offers { background: var(--cream); }
.offers .head { text-align: center; margin-bottom: 44px; }
.offers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.offer-card { background: var(--sand); padding: 34px 28px; text-align: center; border: 1px solid var(--line); }
.offer-card .oc-ic { width: 46px; height: 46px; margin: 0 auto 16px; background: var(--navy); color: var(--gold-soft); display: grid; place-items: center; }
.offer-card .oc-ic svg { width: 22px; height: 22px; }
.offer-card h3 { font-size: 16px; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; color: var(--navy); margin-bottom: 14px; }
.offer-card ul { display: grid; gap: 9px; }
.offer-card li { font-size: 14.5px; color: var(--ink-soft); line-height: 1.4; }
@media (max-width: 820px){ .offers-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; } }

/* ---------- Location strip ---------- */
.location { background: var(--navy); color: #fff; }
.location .head { text-align: center; margin-bottom: 40px; }
.location .eyebrow { color: var(--gold-soft); }
.location h2 { color: #fff; }
.location p.section-lead { color: rgba(255,255,255,.78); }
.loc-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.loc-item { text-align: center; padding: 8px; }
.loc-item .li-ic { width: 42px; height: 42px; margin: 0 auto 12px; color: var(--gold-soft); }
.loc-item .li-ic svg { width: 42px; height: 42px; }
.loc-item h4 { font-size: 15px; font-weight: 700; color: #fff; margin: 0 0 4px; }
.loc-item p { font-size: 13px; color: rgba(255,255,255,.7); margin: 0; line-height: 1.4; }
@media (max-width: 860px){ .loc-grid { grid-template-columns: repeat(2, 1fr); gap: 26px 18px; } .loc-item:last-child { grid-column: 1 / -1; } }

/* ---------- Address band ---------- */
.address-band { background: var(--sand); text-align: center; padding: 30px 0; }
.address-band p { margin: 0; font-size: clamp(17px, 2.4vw, 22px); font-weight: 800; text-transform: uppercase; letter-spacing: .06em; color: var(--navy); }
.address-band .sub { display: block; font-size: 13px; font-weight: 600; letter-spacing: .1em; color: var(--ink-soft); margin-top: 6px; text-transform: none; }

/* ---------- Map ---------- */
.map-wrap { line-height: 0; }
.map-wrap iframe { width: 100%; height: 440px; border: 0; display: block; }
@media (max-width: 640px){ .map-wrap iframe { height: 320px; } }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: rgba(255,255,255,.72); padding: 56px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 40px; align-items: start; }
.footer-brand img { width: 54px; height: 54px; margin-bottom: 14px; }
.footer-brand h4 { color: #fff; font-size: 18px; font-weight: 800; margin: 0 0 8px; text-transform: uppercase; letter-spacing: .03em; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,.62); line-height: 1.6; margin: 0 0 14px; }
.footer-license { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); padding: 8px 13px; font-size: 12.5px; font-weight: 700; color: rgba(255,255,255,.9); letter-spacing: .03em; }
.footer-license svg { width: 15px; height: 15px; color: var(--gold-soft); }
.footer-col h5 { color: #fff; font-size: 12px; letter-spacing: .16em; text-transform: uppercase; margin: 0 0 16px; font-weight: 800; }
.footer-col ul { display: grid; gap: 10px; }
.footer-col a, .footer-col li { color: rgba(255,255,255,.72); font-size: 14.5px; }
.footer-col a:hover { color: var(--gold-soft); }
.footer-bottom { margin-top: 40px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 12.5px; color: rgba(255,255,255,.5); }
@media (max-width: 760px){ .footer-grid { grid-template-columns: 1fr; gap: 30px; } }

/* ---------- Partner / trust logo strip ---------- */
.partners { background: transparent; padding: 30px 0; }
.partners ul { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 22px 46px; }
.partners img { height: 52px; width: auto; object-fit: contain; }
@media (max-width: 640px){ .partners img { height: 40px; } .partners ul { gap: 18px 30px; } }

/* ---------- Sticky mobile CTA ---------- */
.mobile-cta { position: fixed; bottom: 0; left: 0; right: 0; z-index: 80; display: none; background: var(--cream); border-top: 1px solid var(--line); padding: 9px 12px env(safe-area-inset-bottom, 9px); }
.mobile-cta .row { display: grid; grid-template-columns: 1fr 1.5fr; gap: 8px; max-width: var(--container); margin: 0 auto; }
.mobile-cta .btn { padding: 13px 6px; }
@media (max-width: 840px){ .mobile-cta { display: block; } body { padding-bottom: 72px; } }

/* ---------- Modal ---------- */
.modal-backdrop { position: fixed; inset: 0; z-index: 100; background: rgba(0,12,22,.8); display: none; align-items: center; justify-content: center; padding: 16px; }
.modal-backdrop.open { display: flex; animation: fade .18s ease; }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
.modal { width: 100%; max-width: 560px; background: #fff; max-height: calc(100vh - 32px); display: flex; flex-direction: column; overflow: hidden; }
.modal-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; padding: 20px 24px; background: var(--navy); color: #fff; }
.modal-head h3 { margin: 0 0 4px; font-size: 18px; color: #fff; text-transform: uppercase; letter-spacing: .03em; font-weight: 800; }
.modal-head p { margin: 0; font-size: 13px; color: rgba(255,255,255,.75); }
.modal-close { width: 36px; height: 36px; display: grid; place-items: center; color: #fff; flex-shrink: 0; }
.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(--navy); color: #fff; padding: 10px 16px; z-index: 200; font-weight: 700; }
.skip-link:focus { top: 12px; }

@media print { .site-header, .mobile-cta, .modal-backdrop { display: none !important; } body { padding: 0; } }
