/* Perth Double Glazing — trade landing page
   PDG design system: navy #16388E, deep navy #081634, sky #05A4DE, light sky #96E3FF,
   red #CF1D24 for primary CTAs only, page #F5F7FB, border #DDE4EA; Poppins + Mulish;
   16px cards, pill buttons, navy-tinted shadows, calm ease-out motion.
   Sky #05A4DE is 2.85:1 on white, so sky-coloured text uses --sky-ink (5.33:1).
   Photos: every frame keeps the photo's own ratio (width:100%; height:auto). */

:root {
  --navy: #16388E;
  --navy-deep: #081634;
  --sky: #05A4DE;
  --sky-ink: #0272A3;
  --sky-lt: #96E3FF;
  --sky-wash: #E8F6FD;
  --red: #CF1D24;
  --red-dk: #B3171D;
  --page: #F5F7FB;
  --line: #DDE4EA;
  --ink: #16223A;
  --text: #37424F;
  --muted: #5A6675;

  --f-disp: 'Poppins', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --f-body: 'Mulish', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  --r: 16px;
  --r-lg: 24px;
  --sh-1: 0 1px 2px rgba(8, 22, 52, .05), 0 6px 16px rgba(8, 22, 52, .06);
  --sh-2: 0 2px 8px rgba(8, 22, 52, .06), 0 22px 48px rgba(8, 22, 52, .14);
  --ease: cubic-bezier(.22, 1, .36, 1);

  --hdr-h: 88px;
  --gut: 24px;
}
@media (max-width: 760px) {
  :root { --hdr-h: 68px; --gut: 16px; }
}

/* ---------------------------------------------------------------- base */
*, *::before, *::after { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--hdr-h) + 12px);
}
body {
  margin: 0;
  font: 400 17px/1.65 var(--f-body);
  color: var(--text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
a[href^="tel:"], .nw { white-space: nowrap; }
p { margin: 0 0 1em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }
h1, h2, h3 { margin: 0; font-family: var(--f-disp); color: var(--navy); text-wrap: balance; }
h1 { font-weight: 700; font-size: clamp(2.25rem, 1.3rem + 3.2vw, 3.6rem); line-height: 1.06; letter-spacing: -.028em; }
h2 { font-weight: 700; font-size: clamp(1.8rem, 1.25rem + 1.9vw, 2.6rem); line-height: 1.12; letter-spacing: -.022em; }
h3 { font-weight: 600; font-size: 1.2rem; line-height: 1.3; letter-spacing: -.01em; }
[hidden] { display: none !important; }

.wrap { width: 100%; max-width: calc(1200px + 2 * var(--gut)); margin-inline: auto; padding-inline: var(--gut); }
.center { text-align: center; }
.sr { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.i { width: 20px; height: 20px; flex: none; }

.skip {
  position: absolute; z-index: 100; left: 12px; top: -64px;
  padding: 10px 16px; border-radius: 8px;
  background: var(--navy); color: #fff; font-weight: 700;
}
.skip:focus { top: 12px; }
:focus-visible { outline: 3px solid var(--sky); outline-offset: 3px; border-radius: 6px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  margin: 0 0 14px;
  font: 600 13px/1.2 var(--f-disp); letter-spacing: .14em; text-transform: uppercase;
  color: var(--sky-ink);
}
.eyebrow::before { content: ""; width: 22px; height: 2px; border-radius: 2px; background: var(--red); }
.eyebrow--light { color: var(--sky-lt); }

/* icon tile */
.tile {
  flex: none; display: grid; place-items: center;
  width: 54px; height: 54px; border-radius: 14px;
  background: var(--sky-wash); color: var(--navy);
}
.tile .i { width: 26px; height: 26px; stroke-width: 1.75; }

/* ---------------------------------------------------------------- buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 12px 24px;
  border: 0; border-radius: 999px;
  font: 600 16px/1.2 var(--f-disp); letter-spacing: -.005em;
  white-space: nowrap; cursor: pointer;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background-color .2s, color .2s;
}
.btn .i { width: 19px; height: 19px; }
.btn--lg { min-height: 58px; padding: 16px 30px; font-size: 17px; }
.btn--block { width: 100%; }
.btn--red { background: var(--red); color: #fff; box-shadow: 0 10px 24px rgba(207, 29, 36, .26); }
.btn--red:hover { background: var(--red-dk); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(207, 29, 36, .32); }
.btn--red .arw { transition: transform .3s var(--ease); }
.btn--red:hover .arw { transform: translateX(3px); }
.btn--line { background: #fff; color: var(--navy); box-shadow: inset 0 0 0 1.5px var(--line), var(--sh-1); }
.btn--line:hover { transform: translateY(-2px); box-shadow: inset 0 0 0 1.5px var(--navy), var(--sh-1); }
.btn--line .i { color: var(--sky-ink); }
.btn--white { background: #fff; color: var(--navy); }
.btn--white:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(3, 10, 30, .3); }
.btn--ghost { color: #fff; box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, .38); }
.btn--ghost:hover { transform: translateY(-2px); box-shadow: inset 0 0 0 1.5px #fff; }
.btn[disabled] { opacity: .7; cursor: progress; transform: none; }

.btns { display: flex; flex-wrap: wrap; gap: 12px; }

.more {
  display: inline-flex; align-items: center; gap: 6px;
  font: 600 15px/1.2 var(--f-disp); color: var(--navy);
  transition: color .2s;
}
.more .i { width: 18px; height: 18px; transition: transform .3s var(--ease); }
.more:hover { color: var(--sky-ink); }
.more:hover .i { transform: translateX(4px); }

/* ---------------------------------------------------------------- header */
.hdr {
  position: sticky; top: 0; z-index: 40;
  background: rgba(255, 255, 255, .92);
  -webkit-backdrop-filter: saturate(1.6) blur(12px);
  backdrop-filter: saturate(1.6) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
.hdr.is-stuck { border-bottom-color: var(--line); box-shadow: 0 8px 28px rgba(8, 22, 52, .06); }
.hdr__bar { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: var(--hdr-h); }
.hdr__logo { flex: none; display: block; }
.hdr__logo img { height: 58px; width: auto; }
.hdr__actions { display: flex; align-items: center; gap: 24px; }
.hdr__phone { display: flex; align-items: center; gap: 12px; color: var(--navy); }
.hdr__phone-ico {
  display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%;
  background: var(--sky-wash); color: var(--navy);
  transition: background-color .2s, color .2s;
}
.hdr__phone:hover .hdr__phone-ico { background: var(--navy); color: #fff; }
.hdr__phone-txt { display: flex; flex-direction: column; line-height: 1.15; }
.hdr__phone-txt small { font: 600 12px/1.3 var(--f-body); color: var(--muted); }
.hdr__phone-txt strong { font: 700 19px/1.2 var(--f-disp); letter-spacing: -.01em; white-space: nowrap; }
.hdr__cta { min-height: 46px; padding: 11px 22px; font-size: 15px; }

@media (max-width: 760px) {
  .hdr__logo img { height: 44px; }
  .hdr__cta { display: none; }
  .hdr__phone-txt { position: absolute; width: 1px; height: 1px; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
  .hdr__phone-ico { width: 46px; height: 46px; background: var(--navy); color: #fff; }
}

/* ---------------------------------------------------------------- hero */
.hero {
  position: relative; isolation: isolate; overflow: hidden;
  padding: clamp(40px, 6vw, 76px) 0 clamp(64px, 8vw, 108px);
  background: linear-gradient(180deg, #fff 0%, #F1F6FB 100%);
}
.hero::before {
  content: ""; position: absolute; z-index: -1; pointer-events: none;
  top: -35%; right: -18%; width: 72%; aspect-ratio: 1;
  background: radial-gradient(closest-side, rgba(5, 164, 222, .13), rgba(5, 164, 222, 0));
}
/* faint product photo: full width at its own ratio, anchored to the bottom and faded upward */
.hero__bg { position: absolute; z-index: -2; left: 0; right: 0; bottom: 0; pointer-events: none; }
.hero__bg img {
  width: 100%; height: auto; opacity: .18;
  -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, .5) 0%, #000 24%, rgba(0, 0, 0, .6) 52%, transparent 90%);
  mask-image: linear-gradient(to top, rgba(0, 0, 0, .5) 0%, #000 24%, rgba(0, 0, 0, .6) 52%, transparent 90%);
}
.hero__grid {
  display: grid; align-items: center;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: clamp(40px, 5vw, 76px);
}
.hero__copy { container-type: inline-size; }
.hero h1 { font-size: clamp(2.25rem, 1.2rem + 2.6vw, 3.25rem); text-wrap: wrap; }
@supports (font-size: 1cqi) {
  /* two lines on desktop: "Double glazed windows," / "supplied & installed in WA" */
  .hero h1 { font-size: clamp(2.25rem, 7.6cqi, 3.25rem); }
}
@media (min-width: 561px) {
  .hero h1 .hl { white-space: nowrap; }
}
@media (max-width: 560px) {
  .hero h1 br { display: none; }
}
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  margin: 0 0 22px; padding: 7px 15px 7px 10px;
  border-radius: 999px; border: 1px solid var(--line);
  background: rgba(255, 255, 255, .9); box-shadow: var(--sh-1);
  font: 600 14px/1.3 var(--f-disp); color: var(--navy);
}
.chip .i { width: 18px; height: 18px; color: var(--sky-ink); }
.hl {
  padding: 0 .04em;
  background: linear-gradient(transparent 64%, rgba(150, 227, 255, .8) 64%, rgba(150, 227, 255, .8) 92%, transparent 92%);
  -webkit-box-decoration-break: clone; box-decoration-break: clone;
}
.lead {
  max-width: 34em; margin: 22px 0 32px;
  font-size: clamp(1.06rem, .98rem + .35vw, 1.22rem); line-height: 1.6; color: var(--text);
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; }
.proof { list-style: none; margin: 28px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px 24px; }
.proof li { display: flex; align-items: center; gap: 8px; font: 600 15px/1.3 var(--f-body); color: var(--ink); }
.proof .i { width: 18px; height: 18px; color: var(--sky-ink); stroke-width: 2.5; }

.hero__media { position: relative; }
.hero__media::before {
  content: ""; position: absolute; z-index: -1;
  inset: 28px -22px -22px 28px; border-radius: var(--r-lg);
  background: linear-gradient(135deg, rgba(150, 227, 255, .6), rgba(150, 227, 255, .12));
}
.photo { margin: 0; overflow: hidden; border-radius: var(--r-lg); background: var(--page); box-shadow: var(--sh-2); }
.photo img { width: 100%; height: auto; }

.badge {
  position: absolute; left: -26px; bottom: 30px;
  display: flex; align-items: center; gap: 12px;
  padding: 12px 20px 12px 12px; border-radius: 14px;
  background: #fff; border: 1px solid rgba(221, 228, 234, .8); box-shadow: var(--sh-2);
}
.badge .tile { width: 46px; height: 46px; border-radius: 12px; color: var(--sky-ink); }
.badge .tile .i { width: 24px; height: 24px; stroke-width: 2; }
.badge strong { display: block; font: 600 15px/1.3 var(--f-disp); color: var(--navy); }
.badge small { display: block; margin-top: 2px; font: 700 12.5px/1.3 var(--f-body); letter-spacing: .04em; color: var(--muted); }

@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { max-width: 640px; }
  .badge { left: 14px; bottom: 14px; }
}
@media (max-width: 760px) {
  .hero__bg { top: 0; bottom: auto; }
  .hero__bg img {
    opacity: .15;
    -webkit-mask-image: linear-gradient(to bottom, #000 0%, rgba(0, 0, 0, .5) 55%, transparent 100%);
    mask-image: linear-gradient(to bottom, #000 0%, rgba(0, 0, 0, .5) 55%, transparent 100%);
  }
  .hero__media::before { inset: 16px -10px -10px 16px; }
}
@media (max-width: 560px) {
  .hero__cta .btn { width: 100%; }
  .chip { border-radius: 14px; }
  /* below the photo on phones so none of it is covered */
  .badge { position: relative; left: auto; bottom: auto; margin: 14px 0 0; }
}

/* ---------------------------------------------------------------- stats band */
.stats { background: var(--navy-deep); color: #fff; }
.stats__grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.stat { display: flex; align-items: center; gap: 18px; padding: 30px 28px; }
.stat + .stat { border-left: 1px solid rgba(255, 255, 255, .12); }
.stat:first-child { padding-left: 0; }
.stat__n { flex: none; font: 700 clamp(2.2rem, 1.6rem + 1.6vw, 3rem)/1 var(--f-disp); letter-spacing: -.03em; color: var(--sky-lt); }
.stat__l { font: 600 15px/1.4 var(--f-body); color: rgba(255, 255, 255, .86); max-width: 18em; }
@media (max-width: 760px) {
  .stats__grid { grid-template-columns: 1fr; padding-block: 6px; }
  .stat, .stat:first-child { padding: 16px 0; }
  .stat + .stat { border-left: 0; border-top: 1px solid rgba(255, 255, 255, .12); }
  .stat__n { min-width: 84px; }
  .stat__l { font-size: 14px; }
}

/* ---------------------------------------------------------------- sections */
.sec { padding: clamp(64px, 8vw, 112px) 0; }
.sec--tint { background: var(--page); }
.head { max-width: 700px; margin: 0 0 clamp(32px, 4vw, 52px); }
.head.center { margin-inline: auto; }
.head > p:not(.eyebrow) { margin-top: 16px; font-size: 1.08rem; color: var(--muted); }
.center .eyebrow { justify-content: center; }

.split {
  display: grid; align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(36px, 5vw, 76px);
}
.split--wide-left { grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); }
@media (max-width: 960px) {
  .split, .split--wide-left { grid-template-columns: 1fr; }
}

/* audience cards */
.cards { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.cards > li { display: flex; }
.card {
  position: relative; flex: 1; display: flex; flex-direction: column;
  padding: 30px 28px 26px; border-radius: var(--r);
  background: #fff; border: 1px solid var(--line); box-shadow: var(--sh-1);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.card::before {
  content: ""; position: absolute; left: 28px; right: 28px; top: -1px; height: 3px;
  border-radius: 0 0 3px 3px; background: var(--sky);
  transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--sh-2); }
.card:hover::before { transform: scaleX(1); }
.card .tile { margin-bottom: 22px; }
.card h3 { margin-bottom: 10px; }
.card p { flex: 1; color: var(--muted); }
.card .more { margin-top: 20px; }
@media (max-width: 900px) {
  .cards { grid-template-columns: 1fr; gap: 16px; }
}

/* products: photo mosaic + feature list.
   The big square spans two rows; its column is sized so its height equals
   two small squares plus the gap, so every photo shows at 1:1 without cropping. */
.mosaic {
  display: grid; align-items: start; gap: 16px;
  grid-template-columns: calc((100% - 32px) * 2 / 3 + 16px) minmax(0, 1fr);
}
.mosaic .photo { border-radius: var(--r); box-shadow: var(--sh-1); }
.mosaic .photo:first-child { grid-row: span 2; }
@media (max-width: 560px) {
  .mosaic { gap: 10px; grid-template-columns: calc((100% - 20px) * 2 / 3 + 10px) minmax(0, 1fr); }
  .mosaic .photo { border-radius: 12px; }
}
.feats { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.feat {
  display: flex; align-items: flex-start; gap: 18px;
  padding: 20px 22px; border-radius: var(--r);
  background: #fff; border: 1px solid var(--line); box-shadow: var(--sh-1);
}
.feat .tile { width: 48px; height: 48px; border-radius: 12px; }
.feat .tile .i { width: 24px; height: 24px; }
.feat h3 { margin: 2px 0 4px; font-size: 1.08rem; }
.feat p { font-size: .98rem; line-height: 1.55; color: var(--muted); }

/* performance */
.ratings { list-style: none; margin: 28px 0 26px; padding: 0; display: grid; gap: 12px; }
.rating {
  display: flex; align-items: center; gap: 16px;
  padding: 14px 18px 14px 14px; border-radius: 14px;
  background: var(--page); border: 1px solid var(--line);
}
.rating .tile { width: 46px; height: 46px; border-radius: 12px; background: #fff; color: var(--sky-ink); }
.rating .tile .i { width: 23px; height: 23px; }
.rating strong { display: block; font: 700 1.05rem/1.25 var(--f-disp); color: var(--navy); }
.rating__desc { display: block; font-size: .97rem; line-height: 1.45; color: var(--muted); }

/* navy: factory + showroom */
.sec--navy {
  position: relative; isolation: isolate; overflow: hidden;
  background: var(--navy); color: rgba(255, 255, 255, .86);
}
.sec--navy::before {
  content: ""; position: absolute; z-index: -1; inset: 0;
  background:
    radial-gradient(900px 520px at 100% 0%, rgba(5, 164, 222, .3), transparent 62%),
    radial-gradient(760px 520px at 0% 100%, rgba(8, 22, 52, .6), transparent 62%);
}
.sec--navy h2 { color: #fff; }
.sec--navy .lead { color: rgba(255, 255, 255, .88); margin: 18px 0 0; }
.photo--dark { position: relative; box-shadow: 0 26px 60px rgba(3, 10, 30, .45); }
.photo--dark::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: linear-gradient(to top, rgba(8, 22, 52, .32), rgba(8, 22, 52, 0) 34%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .12);
}
.visit {
  list-style: none; margin: 28px 0 30px; padding: 4px 20px;
  border-radius: var(--r); background: rgba(255, 255, 255, .07); border: 1px solid rgba(255, 255, 255, .14);
}
.visit li { display: flex; align-items: center; gap: 14px; padding: 14px 0; }
.visit li + li { border-top: 1px solid rgba(255, 255, 255, .12); }
.visit .i { width: 22px; height: 22px; color: var(--sky-lt); }
.visit strong { display: block; font: 600 1.06rem/1.35 var(--f-disp); color: #fff; }
@media (max-width: 560px) {
  .btns .btn { width: 100%; }
}

/* steps */
.steps { position: relative; list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; }
.steps::before {
  content: ""; position: absolute; z-index: 0; top: 36px; left: 17%; right: 17%;
  border-top: 2px dashed #C9D5E1;
}
.step { position: relative; text-align: center; padding: 0 10px; }
.step__ico {
  position: relative; z-index: 1;
  display: grid; place-items: center; width: 72px; height: 72px; margin: 0 auto 22px;
  border-radius: 50%; background: #fff; color: var(--navy);
  border: 1px solid var(--line); box-shadow: var(--sh-1);
}
.step__ico .i { width: 28px; height: 28px; stroke-width: 1.75; }
.step__n {
  position: absolute; top: -4px; right: -6px;
  display: grid; place-items: center; width: 26px; height: 26px; border-radius: 50%;
  background: var(--navy); color: #fff; font: 700 13px/1 var(--f-disp);
  box-shadow: 0 0 0 3px #fff;
}
.step h3 { margin-bottom: 8px; }
.step p { color: var(--muted); max-width: 22em; margin-inline: auto; }
.step a { color: var(--navy); font-weight: 700; overflow-wrap: anywhere; border-bottom: 1px solid rgba(22, 56, 142, .3); }
.step a:hover { border-bottom-color: var(--navy); }
@media (max-width: 760px) {
  .steps { grid-template-columns: 1fr; gap: 26px; }
  .steps::before { top: 10px; bottom: 30px; left: 36px; right: auto; border-top: 0; border-left: 2px dashed #C9D5E1; }
  .step { display: grid; grid-template-columns: 72px minmax(0, 1fr); gap: 18px; align-items: start; text-align: left; padding: 0; }
  .step__ico { margin: 0; }
  .step h3 { margin-top: 8px; }
  .step p { margin-inline: 0; }
}

/* FAQ */
.faq { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(32px, 5vw, 72px); align-items: start; }
.faq .head { margin: 0; }
.faq .head a { color: var(--navy); font-weight: 700; white-space: nowrap; }
.qa { margin: 0 0 12px; border-radius: 14px; background: #fff; border: 1px solid var(--line); transition: box-shadow .3s var(--ease), border-color .3s; }
.qa[open] { border-color: #C9D5E1; box-shadow: var(--sh-1); }
.qa summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 19px 22px; cursor: pointer; list-style: none;
  font: 600 1.04rem/1.4 var(--f-disp); color: var(--navy); text-wrap: balance;
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary .i { width: 22px; height: 22px; color: var(--sky-ink); transition: transform .35s var(--ease); }
.qa[open] summary .i { transform: rotate(45deg); }
.qa__a { padding: 0 22px 20px; color: var(--muted); }
.qa__a a { color: var(--navy); font-weight: 700; }
@supports (interpolate-size: allow-keywords) {
  .qa { interpolate-size: allow-keywords; }
  .qa::details-content { block-size: 0; overflow: hidden; transition: block-size .4s var(--ease), content-visibility .4s allow-discrete; }
  .qa[open]::details-content { block-size: auto; }
}
@media (min-width: 961px) {
  .faq .head { position: sticky; top: calc(var(--hdr-h) + 32px); }
}
@media (max-width: 960px) {
  .faq { grid-template-columns: 1fr; }
}

/* ---------------------------------------------------------------- enquiry */
.quote {
  display: grid; grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  overflow: hidden; border-radius: 28px;
  background: #fff; border: 1px solid var(--line); box-shadow: var(--sh-2);
}
.quote__panel {
  position: relative; isolation: isolate; overflow: hidden;
  padding: clamp(28px, 4vw, 52px);
  display: flex; flex-direction: column;
  background: var(--navy); color: rgba(255, 255, 255, .86);
}
.quote__panel::before {
  content: ""; position: absolute; z-index: -1; inset: 0;
  background: radial-gradient(520px 380px at 100% 0%, rgba(5, 164, 222, .32), transparent 65%);
}
.quote__panel h2 { color: #fff; }
.quote__panel > p:not(.eyebrow) { margin-top: 14px; font-size: 1.06rem; }
.contact { list-style: none; margin: 32px 0 30px; padding: 0; display: grid; gap: 20px; }
.contact li { display: flex; align-items: flex-start; gap: 14px; }
.contact .tile { width: 44px; height: 44px; border-radius: 12px; background: rgba(255, 255, 255, .1); color: var(--sky-lt); }
.contact .tile .i { width: 21px; height: 21px; stroke-width: 2; }
.contact small { display: block; margin: 1px 0 3px; font: 700 12px/1.3 var(--f-body); letter-spacing: .08em; text-transform: uppercase; color: rgba(255, 255, 255, .7); }
.contact a {
  font: 600 1.02rem/1.4 var(--f-disp); color: #fff; overflow-wrap: anywhere;
  border-bottom: 1px solid rgba(255, 255, 255, .28); transition: border-color .2s;
}
.contact a:hover { border-bottom-color: #fff; }
.contact__note { margin: auto 0 0; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, .14); font-size: .95rem; }

.quote__form { display: flex; flex-direction: column; justify-content: center; padding: clamp(24px, 4vw, 52px); }
.quote__form h3 { margin-bottom: 6px; font-size: 1.35rem; }
.quote__form .sub { margin: 0 0 24px; color: var(--muted); }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px 16px; }
.field--full { grid-column: 1 / -1; }
.field label { display: block; margin-bottom: 7px; font: 600 14px/1.3 var(--f-disp); color: var(--navy); }
.req { color: var(--red); }
.field .opt { font-weight: 500; color: var(--muted); }
.field input, .field select, .field textarea {
  display: block; width: 100%; min-height: 52px; padding: 13px 16px;
  border: 1.5px solid var(--line); border-radius: 12px; background: #fff;
  font: 500 16px/1.4 var(--f-body); color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none; appearance: none;
}
.field textarea { min-height: 124px; resize: vertical; }
.field select {
  padding-right: 44px; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2316388E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; background-size: 20px;
}
.field select:invalid { color: #6B7684; }
.field select option { color: var(--ink); }
.field ::placeholder { color: #6B7684; opacity: 1; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: #C3CFDC; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--sky); box-shadow: 0 0 0 4px rgba(5, 164, 222, .18); }
.field input:user-invalid, .field select:user-invalid { border-color: var(--red); }
.hp { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.form-foot { margin-top: 22px; }
.form-alt { margin: 14px 0 0; text-align: center; font-size: .96rem; color: var(--muted); }
.form-alt a { color: var(--navy); font-weight: 700; white-space: nowrap; }
.legal { margin: 18px 0 0; text-align: center; font-size: .78rem; line-height: 1.55; color: #5F6B79; }
.legal a { text-decoration: underline; }
.grecaptcha-badge { visibility: hidden; }

.err {
  margin: 0 0 18px; padding: 14px 16px; border-radius: 12px;
  background: #FDECEC; border: 1px solid #F3C0C2; color: #8A1116; font-size: .96rem;
}
.err a { font-weight: 700; text-decoration: underline; }
.done { padding: 36px 8px; text-align: center; }
.done:focus { outline: none; }
.done .tile { width: 68px; height: 68px; margin: 0 auto 20px; border-radius: 50%; background: #E6F6EC; color: #16804A; }
.done .tile .i { width: 34px; height: 34px; stroke-width: 2; }
.done h3 { margin-bottom: 10px; font-size: 1.4rem; }
.done p { max-width: 34em; margin-inline: auto; color: var(--muted); }
.done a { color: var(--navy); font-weight: 700; overflow-wrap: anywhere; }

@media (max-width: 960px) {
  .quote { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .quote { border-radius: 20px; }
  .quote__panel { padding: 30px 20px; }
  .quote__form { padding: 28px 20px; }
  .contact a { font-size: .94rem; }
  .form-grid { grid-template-columns: 1fr; }
}

/* ---------------------------------------------------------------- footer */
.ftr { background: #fff; border-top: 1px solid var(--line); }
.ftr__grid {
  display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.15fr) minmax(0, .85fr);
  gap: 40px; padding-block: 56px 44px;
}
.ftr__logo { display: inline-block; }
.ftr__logo img { height: 50px; width: auto; }
.ftr__brand p { max-width: 30em; margin-top: 18px; font-size: .97rem; color: var(--muted); }
.ftr__h { margin: 6px 0 16px; font: 600 13px/1.2 var(--f-disp); letter-spacing: .14em; text-transform: uppercase; color: var(--sky-ink); }
.ftr ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.ftr li { display: flex; align-items: center; gap: 10px; }
.ftr li .i { width: 18px; height: 18px; color: var(--sky-ink); }
.ftr li a { color: var(--ink); font-weight: 600; overflow-wrap: anywhere; transition: color .2s; }
.ftr li a:hover { color: var(--sky-ink); }
.ftr address { font-style: normal; color: var(--text); }
.ftr address + .more { margin-top: 14px; }
.ftr__bar { background: var(--navy-deep); color: rgba(255, 255, 255, .72); font-size: .88rem; }
.ftr__bar .wrap { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px 24px; padding-block: 18px; }
.ftr__bar nav { display: flex; flex-wrap: wrap; gap: 8px 22px; }
.ftr__bar a { transition: color .2s; }
.ftr__bar a:hover { color: #fff; }
@media (max-width: 760px) {
  .ftr__grid { grid-template-columns: 1fr; gap: 30px; padding-block: 44px 34px; }
  .ftr__logo img { height: 44px; }
}

/* ---------------------------------------------------------------- mobile call / quote bar */
.mbar { display: none; }
@media (max-width: 760px) {
  .mbar {
    position: fixed; z-index: 45; left: 0; right: 0; bottom: 0;
    display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.55fr); gap: 10px;
    padding: 10px var(--gut) calc(10px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, .96);
    -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
    border-top: 1px solid var(--line); box-shadow: 0 -8px 28px rgba(8, 22, 52, .08);
    transition: transform .45s var(--ease), visibility 0s;
  }
  .js .mbar.is-hidden {
    transform: translateY(110%); visibility: hidden;
    transition: transform .45s var(--ease), visibility 0s linear .45s;
  }
  .mbar .btn { width: 100%; min-height: 50px; padding: 12px 14px; font-size: 15.5px; }
  .mbar .btn--line { box-shadow: inset 0 0 0 1.5px var(--line); }
  .ftr__bar { padding-bottom: calc(72px + env(safe-area-inset-bottom)); }
}

/* ---------------------------------------------------------------- thank-you page */
.hero--thanks { padding: clamp(56px, 9vw, 120px) 0 clamp(72px, 10vw, 140px); }
.wrap.thanks { max-width: calc(760px + 2 * var(--gut)); text-align: center; }
.thanks > .tile { width: 76px; height: 76px; margin: 0 auto 26px; border-radius: 50%; background: #E6F6EC; color: #16804A; box-shadow: var(--sh-1); }
.thanks > .tile .i { width: 38px; height: 38px; stroke-width: 2; }
.thanks h1 { font-size: clamp(2rem, 1.2rem + 2.6vw, 3rem); text-wrap: balance; }
.thanks .lead { max-width: 34em; margin: 18px auto 30px; }
.thanks .lead a { color: var(--navy); font-weight: 700; overflow-wrap: anywhere; }
.thanks .btns { justify-content: center; }
.thanks__visit {
  max-width: 560px; margin: 48px auto 0; padding: 26px 28px;
  border-radius: var(--r); background: #fff; border: 1px solid var(--line); box-shadow: var(--sh-1);
}
.thanks__visit h2 { margin-bottom: 8px; font-size: 1.2rem; letter-spacing: -.01em; }
.thanks__visit p { margin-bottom: 14px; color: var(--muted); }
.thanks__back { margin-top: 28px; font-size: .96rem; }
.thanks__back a { color: var(--navy); font-weight: 700; border-bottom: 1px solid rgba(22, 56, 142, .3); }
.thanks__back a:hover { border-bottom-color: var(--navy); }

/* ---------------------------------------------------------------- 404 */
.nf { padding: clamp(72px, 12vw, 140px) 0; }
.nf h1 { margin-bottom: 16px; }
.nf p { max-width: 34em; margin-inline: auto; color: var(--muted); }
.nf .btns { justify-content: center; margin-top: 28px; }

/* ---------------------------------------------------------------- reveal */
.js .rv {
  opacity: 0; transform: translateY(16px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  transition-delay: calc(var(--d, 0) * 90ms);
}
.js .rv.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .rv { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
