/* First Assist - design system v3 "poster" */
:root {
  --red: #df2020;
  --red-dark: #b0161c;
  --ink: #17120e;
  --ink-soft: #5c534b;
  --bone: #f4efe6;
  --bone-dark: #eae3d5;
  --white: #fffdf9;
  --line: #d9d0c0;
  --line-ink: #2e2721;
  --display: "Archivo", "Arial Black", sans-serif;
  --body: "Figtree", "Helvetica Neue", sans-serif;
  --r: 24px;
  --r-sm: 16px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  background: var(--bone);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.6;
  border-top: 6px solid var(--red);
  -webkit-font-smoothing: antialiased;
}
::selection { background: var(--red); color: #fff; }
.wrap { max-width: 1220px; margin: 0 auto; padding: 0 32px; }
h1, h2, h3 { font-family: var(--display); font-weight: 900; line-height: 1.0; letter-spacing: -0.025em; }
.hl {
  color: var(--ink);
  background: linear-gradient(var(--red), var(--red)) no-repeat 0 0 / 0% 100%;
  padding: 0 0.18em;
  border-radius: 0.14em;
  box-decoration-break: clone; -webkit-box-decoration-break: clone;
  animation: hlSweep .55s ease-out .45s forwards;
}
@keyframes hlSweep { to { background-size: 100% 100%; color: #fff; } }
.kicker {
  display: inline-block; font-weight: 800; font-size: 13px;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--red);
  border: 2px solid var(--red); padding: 6px 16px; margin-bottom: 26px;
  border-radius: 999px;
}

/* ---------- header ---------- */
header {
  position: sticky; top: 0; z-index: 100;
  background: var(--bone);
  border-bottom: 2px solid var(--ink);
}
nav { display: flex; align-items: center; justify-content: space-between; height: 78px; gap: 20px; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); }
.logo-img { display: block; height: 42px; width: auto; }
footer .logo-img { height: 46px; }
@media (max-width: 520px) { .logo-img { height: 34px; } }
.logo .word { font-family: var(--display); font-weight: 800; font-size: 24px; letter-spacing: -0.02em; }
.logo .word em { font-style: normal; color: var(--red); }
.logo .est { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); }
.nav-links { display: flex; gap: 26px; list-style: none; }
.nav-links a {
  text-decoration: none; color: var(--ink); font-size: 15px; font-weight: 600;
  padding-bottom: 4px; border-bottom: 2px solid transparent;
  transition: border-color .15s, color .15s;
}
.nav-links a:hover { border-bottom-color: var(--red); }
.nav-links a.active { color: var(--red); border-bottom-color: var(--red); }
.btn {
  display: inline-block; text-decoration: none; text-align: center;
  font-family: var(--display); font-weight: 700; font-size: 15px;
  letter-spacing: 0.04em; text-transform: uppercase;
  padding: 15px 30px; border: 2px solid var(--ink);
  border-radius: 999px;
  transition: transform .15s, box-shadow .15s, background .15s, color .15s;
}
.btn-red { background: var(--red); color: #fff; border-color: var(--ink); box-shadow: 5px 5px 0 var(--ink); }
.btn-red:hover { transform: translate(-2px,-2px); box-shadow: 8px 8px 0 var(--ink); }
.btn-ink { background: transparent; color: var(--ink); }
.btn-ink:hover { background: var(--ink); color: var(--bone); }
.btn-white { background: #fff; color: var(--red); border-color: var(--ink); box-shadow: 5px 5px 0 var(--ink); }
.btn-white:hover { transform: translate(-2px,-2px); box-shadow: 8px 8px 0 var(--ink); }
.nav-phone { white-space: nowrap; padding: 13px 22px; font-size: 14px; }
@media (max-width: 1020px) { .nav-links { display: none; } }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- home hero ---------- */
.hero { padding: 90px 0 80px; }
.hero h1 { font-size: clamp(40px, 5vw, 72px); line-height: 1.05; max-width: 1050px; margin-bottom: 34px; }
.hero .lede { font-size: 20px; color: var(--ink-soft); max-width: 620px; margin-bottom: 42px; font-weight: 500; }
.hero .lede strong { color: var(--ink); }
.hero-ctas { display: flex; gap: 20px; flex-wrap: wrap; }
.hero .reveal { transition-delay: calc(var(--d, 0) * 130ms); }

/* ---------- marquee ---------- */
.marquee { background: var(--ink); color: var(--bone); overflow: hidden; border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink); }
.marquee-track { display: flex; width: max-content; animation: drift 40s linear infinite; padding: 14px 0; }
.marquee-track span {
  font-family: var(--display); font-weight: 700; font-size: 15px;
  letter-spacing: 0.12em; text-transform: uppercase; white-space: nowrap;
}
.marquee-track span::after { content: "✦"; color: var(--red); margin: 0 30px; }
@keyframes drift { to { transform: translateX(-50%); } }

/* ---------- essential eight band (home) ---------- */
.e8-band { background: var(--red); color: #fff; padding: 96px 0; position: relative; }
.e8-head { display: grid; grid-template-columns: auto 1fr; gap: 56px; align-items: start; margin-bottom: 60px; }
.e8-head .big8 {
  font-family: var(--display); font-weight: 800; font-size: clamp(140px, 18vw, 260px);
  line-height: 0.8; color: #fff; text-shadow: 8px 8px 0 var(--red-dark);
}
.e8-head h2 { font-size: clamp(34px, 4vw, 56px); color: #fff; margin-bottom: 18px; }
.e8-head p { max-width: 560px; font-size: 18px; color: #ffd9cf; font-weight: 500; }
.e8-head p strong { color: #fff; }
@media (max-width: 900px) { .e8-head { grid-template-columns: 1fr; gap: 24px; } }

.e8-list { border-top: 2px solid #fff; }
.e8-item { border-bottom: 2px solid #fff; }
.e8-item summary {
  display: grid; grid-template-columns: 84px 1fr auto; gap: 26px; align-items: center;
  padding: 24px 0; cursor: pointer; list-style: none;
}
.e8-item summary::-webkit-details-marker { display: none; }
.e8-item .num { font-family: var(--display); font-weight: 800; font-size: 30px; color: #ffb3a6; }
.e8-item h3 { font-size: clamp(20px, 2.4vw, 30px); color: #fff; }
.e8-item .plus {
  font-family: var(--display); font-size: 30px; font-weight: 700; color: #fff;
  width: 48px; height: 48px; border: 2px solid #fff; display: grid; place-items: center;
  border-radius: 50%;
  transition: transform .25s, background .25s, color .25s;
}
.e8-item[open] .plus { transform: rotate(45deg); background: #fff; color: var(--red); }
.e8-item summary:hover .plus { background: #fff; color: var(--red); }
.e8-body { padding: 0 0 30px 110px; max-width: 760px; }
.e8-body p { color: #ffe0d8; font-size: 16.5px; }
.e8-body p strong { color: #fff; }
@media (max-width: 700px) { .e8-item summary { grid-template-columns: 50px 1fr auto; gap: 14px; } .e8-body { padding-left: 64px; } }
.e8-actions { margin-top: 52px; display: flex; gap: 20px; flex-wrap: wrap; }

/* ---------- section scaffolding ---------- */
section { padding: 100px 0; }
.sec-head { margin-bottom: 60px; max-width: 780px; }
.sec-head h2 { font-size: clamp(36px, 4.6vw, 64px); margin-bottom: 20px; }
.sec-head p { font-size: 18px; color: var(--ink-soft); max-width: 600px; font-weight: 500; }

/* ---------- service rows (home) ---------- */
.rows { border-top: 2px solid var(--ink); }
.row-link {
  display: grid; grid-template-columns: 64px 64px 1.2fr 1.5fr 60px; gap: 30px; align-items: center;
  padding: 36px 10px; border-bottom: 2px solid var(--ink);
  text-decoration: none; color: var(--ink);
  transition: background .2s, color .2s, padding-left .2s;
}
.row-link .ico svg { width: 46px; height: 46px; stroke: var(--red); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; transition: stroke .2s, transform .25s; }
.row-link:hover .ico svg { stroke: #fff; transform: scale(1.08); }
.row-link .num { font-family: var(--display); font-weight: 800; font-size: 20px; color: var(--red); transition: color .2s; }
.row-link h3 { font-size: clamp(24px, 3vw, 38px); }
.row-link p { font-size: 16px; color: var(--ink-soft); max-width: 480px; transition: color .2s; }
.row-link .arr { font-family: var(--display); font-size: 30px; font-weight: 700; justify-self: end; transition: transform .2s; }
.row-link:hover { background: var(--red); color: #fff; padding-left: 26px; }
.row-link:hover .num { color: #ffb3a6; }
.row-link:hover p { color: #ffd9cf; }
.row-link:hover .arr { transform: translateX(8px); }
@media (max-width: 900px) { .row-link { grid-template-columns: 44px 1fr 40px; } .row-link p, .row-link .num { display: none; } .row-link .ico svg { width: 34px; height: 34px; } }

/* ---------- stats band ---------- */
.stats-band { background: var(--ink); color: var(--bone); padding: 80px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-left: 2px solid var(--line-ink); }
.stat { padding: 10px 34px; border-right: 2px solid var(--line-ink); }
.stat .big { font-family: var(--display); font-weight: 800; font-size: clamp(46px, 5.5vw, 76px); line-height: 1; color: #fff; }
.stat .big em { font-style: normal; color: var(--red); }
.stat .sub { font-size: 15px; color: #a89e92; margin-top: 10px; font-weight: 500; }
@media (max-width: 900px) { .stats-grid { grid-template-columns: 1fr 1fr; } .stat { padding: 20px 24px; } }

/* ---------- quote ---------- */
.quote-sec { background: var(--bone); }
.quote-box { border: 2px solid var(--ink); background: var(--white); padding: clamp(40px, 6vw, 80px); position: relative; box-shadow: 10px 10px 0 var(--red); border-radius: var(--r); }
.quote-box .mark { font-family: var(--display); font-size: 110px; line-height: .4; color: var(--red); display: block; margin-bottom: 34px; font-weight: 800; }
blockquote { font-family: var(--display); font-weight: 600; font-size: clamp(24px, 3.2vw, 42px); line-height: 1.15; letter-spacing: -0.01em; max-width: 880px; }
blockquote strong { color: var(--red); }
.attr { margin-top: 34px; font-size: 16px; color: var(--ink-soft); font-weight: 600; }
.attr strong { color: var(--ink); }

/* ---------- steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 2px solid var(--ink); background: var(--white); border-radius: var(--r); overflow: hidden; }
.step { padding: 46px 38px; border-right: 2px solid var(--ink); }
.step:last-child { border-right: none; }
.step .n { font-family: var(--display); font-weight: 800; font-size: 60px; color: var(--red); line-height: 1; }
.step h3 { font-size: 24px; margin: 18px 0 12px; }
.step p { font-size: 15.5px; color: var(--ink-soft); }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr; } .step { border-right: none; border-bottom: 2px solid var(--ink); } .step:last-child { border-bottom: none; } }

/* ---------- CTA band ---------- */
.cta-band { background: var(--red); color: #fff; padding: 110px 0; text-align: center; }
.cta-band h2 { font-size: clamp(40px, 6vw, 84px); color: #fff; max-width: 900px; margin: 0 auto 26px; }
.cta-band p { color: #ffd9cf; font-size: 19px; max-width: 560px; margin: 0 auto 44px; font-weight: 500; }
.cta-band .phone-line { margin-top: 36px; color: #ffd9cf; font-weight: 600; }
.cta-band .phone { font-family: var(--display); font-weight: 800; font-size: 30px; color: #fff; text-decoration: none; border-bottom: 3px solid #fff; }
.cta-band .phone:hover { color: var(--ink); border-color: var(--ink); }

/* ---------- footer ---------- */
footer { background: var(--ink); color: #a89e92; padding: 76px 0 40px; }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 50px; margin-bottom: 60px; }
.foot-grid h4 { font-family: var(--display); font-weight: 700; font-size: 15px; letter-spacing: 0.1em; text-transform: uppercase; color: #fff; margin-bottom: 20px; }
.foot-grid ul { list-style: none; }
.foot-grid li { margin-bottom: 11px; }
.foot-grid a { color: #a89e92; text-decoration: none; font-size: 15px; transition: color .2s; }
.foot-grid a:hover { color: #ff8d7e; }
.foot-brand .word { font-family: var(--display); font-size: 26px; color: #fff; font-weight: 800; }
.foot-brand .word em { font-style: normal; color: var(--red); }
.foot-brand p { font-size: 15px; max-width: 300px; margin-top: 14px; }
.foot-social { display: flex; gap: 12px; margin-top: 22px; }
.foot-social a { width: 40px; height: 40px; border: 2px solid #3c322c; border-radius: 50%; display: grid; place-items: center; color: #a89e92; transition: color .2s, border-color .2s, background .2s; }
.foot-social a:hover { color: #fff; border-color: var(--red); background: var(--red); }
.foot-social svg { width: 18px; height: 18px; fill: currentColor; }
.foot-bottom { border-top: 2px solid var(--line-ink); padding-top: 28px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 13px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }
@media (max-width: 900px) { .foot-grid { grid-template-columns: 1fr 1fr; } }

/* ---------- interior pages ---------- */
.page-hero { padding: 90px 0 70px; border-bottom: 2px solid var(--ink); }
.page-hero h1 { font-size: clamp(44px, 6vw, 88px); max-width: 980px; margin-bottom: 26px; }
.page-hero .lede { font-size: 19px; color: var(--ink-soft); max-width: 640px; font-weight: 500; }
.page-hero .hero-ctas { margin-top: 38px; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
@media (max-width: 900px) { .grid-2, .grid-3 { grid-template-columns: 1fr; } }

.card { background: var(--white); border: 2px solid var(--ink); padding: 40px 36px; border-radius: var(--r); }
.card h3 { font-size: 24px; margin-bottom: 14px; }
.card p { font-size: 15.5px; color: var(--ink-soft); }
.card ul { list-style: none; margin-top: 16px; }
.card li { padding: 8px 0 8px 28px; position: relative; font-size: 15px; border-bottom: 1px solid var(--line); }
.card li:last-child { border-bottom: none; }
.card li::before { content: "→"; position: absolute; left: 0; color: var(--red); font-weight: 700; }
.card.shadow { box-shadow: 8px 8px 0 var(--red); }

/* pricing */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 2px solid var(--ink); border-radius: var(--r); overflow: hidden; }
.plan { background: var(--white); padding: 48px 40px; border-right: 2px solid var(--ink); display: flex; flex-direction: column; }
.plan:last-child { border-right: none; }
.plan.featured { background: var(--ink); color: var(--bone); }
.plan .tag { font-family: var(--display); font-weight: 700; font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--red); margin-bottom: 18px; }
.plan.featured .tag { color: #ff8d7e; }
.plan h3 { font-size: 27px; margin-bottom: 10px; }
.plan.featured h3 { color: #fff; }
.plan .desc { font-size: 15px; color: var(--ink-soft); margin-bottom: 28px; min-height: 66px; }
.plan.featured .desc { color: #a89e92; }
.plan .price { font-family: var(--display); font-weight: 800; font-size: 56px; line-height: 1; }
.plan.featured .price { color: #fff; }
.plan .price small { display: block; font-family: var(--body); font-size: 14px; font-weight: 600; color: var(--ink-soft); margin-top: 8px; }
.plan.featured .price small { color: #a89e92; }
.plan ul { list-style: none; margin: 28px 0 36px; flex: 1; }
.plan li { padding: 9px 0 9px 28px; font-size: 15px; position: relative; border-bottom: 1px solid var(--line); }
.plan.featured li { border-bottom-color: var(--line-ink); }
.plan li::before { content: "✓"; position: absolute; left: 0; color: var(--red); font-weight: 700; }
.plan .btn { display: block; }
@media (max-width: 980px) { .plans { grid-template-columns: 1fr; } .plan { border-right: none; border-bottom: 2px solid var(--ink); } .plan:last-child { border-bottom: none; } }

/* comparison table */
.compare { border: 2px solid var(--ink); background: var(--white); border-radius: var(--r); overflow: hidden; }
.compare-row { display: grid; grid-template-columns: 1.4fr 1fr 1fr; border-bottom: 2px solid var(--ink); }
.compare-row:last-child { border-bottom: none; }
.compare-row > div { padding: 20px 26px; font-size: 15px; border-right: 2px solid var(--ink); }
.compare-row > div:last-child { border-right: none; }
.compare-row.head > div { font-family: var(--display); font-weight: 700; font-size: 16px; text-transform: uppercase; letter-spacing: 0.06em; }
.compare-row.head .bad { background: var(--bone-dark); }
.compare-row.head .good { background: var(--red); color: #fff; }
.compare .bad { color: var(--ink-soft); }
.compare .good { font-weight: 600; }
@media (max-width: 700px) { .compare-row { grid-template-columns: 1fr; } .compare-row > div { border-right: none; border-bottom: 1px solid var(--line); } }

/* team */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.member { border: 2px solid var(--ink); background: var(--white); border-radius: var(--r); overflow: hidden; }
.member .photo {
  aspect-ratio: 1; background: var(--bone-dark); display: grid; place-items: center;
  font-family: var(--display); font-weight: 800; font-size: 54px; color: var(--red);
  border-bottom: 2px solid var(--ink);
}
.member .info { padding: 20px 22px; }
.member h3 { font-size: 19px; }
.member p { font-size: 14px; color: var(--ink-soft); margin-top: 4px; }
@media (max-width: 900px) { .team-grid { grid-template-columns: 1fr 1fr; } }

/* contact */
.contact-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-list { list-style: none; }
.contact-list li { padding: 22px 0; border-bottom: 2px solid var(--ink); display: flex; flex-direction: column; gap: 4px; }
.contact-list .label { font-family: var(--display); font-weight: 700; font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--red); }
.contact-list a, .contact-list span.val { font-size: 22px; font-weight: 700; color: var(--ink); text-decoration: none; }
.contact-list a:hover { color: var(--red); }
form .field { margin-bottom: 20px; }
form label { display: block; font-weight: 700; font-size: 14px; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.06em; }
form input, form textarea {
  width: 100%; padding: 14px 18px; font-family: var(--body); font-size: 16px;
  border: 2px solid var(--ink); background: var(--white); color: var(--ink);
  border-radius: var(--r-sm);
}
form input:focus, form textarea:focus { outline: 3px solid var(--red); outline-offset: -1px; }
.form-success { background: var(--white); border: 2px solid var(--ink); border-radius: var(--r-sm); padding: 28px 30px; font-size: 16px; box-shadow: 6px 6px 0 var(--red); }
.form-success strong { font-family: var(--display); font-size: 21px; }

/* ---------- hero doors illustration (home) ---------- */
.hero-grid2 { display: grid; grid-template-columns: 2.2fr 0.8fr; gap: 40px; align-items: center; }
@media (max-width: 900px) { .hero-grid2 { grid-template-columns: 1fr; gap: 56px; } }
.doors { display: grid; grid-template-columns: repeat(4, 1fr); gap: 11px; max-width: 300px; margin-left: auto; }
@media (max-width: 900px) { .doors { margin: 0 auto; grid-template-columns: repeat(4, 1fr); } }
.door {
  aspect-ratio: 1; border: 2px solid var(--ink); background: var(--white);
  color: var(--ink); box-shadow: 4px 4px 0 var(--ink); border-radius: var(--r-sm);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  position: relative; overflow: hidden; cursor: default;
  transition: transform .2s ease, box-shadow .2s ease;
  animation: lockTile .3s ease forwards;
  animation-delay: calc(var(--i) * 0.22s + 0.9s);
}
.door svg { width: 34px; height: 34px; transition: transform .28s ease, opacity .28s ease; }
.door:hover { transform: translateY(-4px); box-shadow: 7px 7px 0 var(--ink); }
.door:hover .lock { transform: translateY(-32%) scale(0.5); opacity: 0.18; }
.door:hover .door-num { opacity: 0; }
.door:hover .door-name { opacity: 1; transform: none; }
.door .shackle { transform: translateY(-6px); animation: shackleDrop .22s ease forwards; animation-delay: calc(var(--i) * 0.22s + 0.8s); }
.door .keyhole { fill: var(--bone); animation: keyTint .3s ease forwards; animation-delay: calc(var(--i) * 0.22s + 0.9s); }
.door .door-num { font-family: var(--display); font-weight: 800; font-size: 12px; letter-spacing: 0.08em; transition: opacity .2s ease; }
.door .door-name {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 5px; color: #fff;
  font-family: var(--display); font-weight: 800; font-size: 11px; line-height: 1.15; letter-spacing: 0.01em;
  opacity: 0; transform: translateY(6px); transition: opacity .28s ease, transform .28s ease;
}
@keyframes lockTile { to { background: var(--red); color: #fff; } }
@keyframes shackleDrop { to { transform: translateY(0); } }
@keyframes keyTint { to { fill: var(--red); } }
.doors-cap {
  margin-top: 18px; text-align: center; max-width: 300px; margin-left: auto;
  font-weight: 700; font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft);
}
@media (max-width: 900px) { .doors-cap { margin: 18px auto 0; } }

/* ---------- interior page hero medallion ---------- */
.ph-grid { display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: center; }
.medallion {
  width: 210px; height: 210px; border: 2px solid var(--ink); background: var(--white);
  box-shadow: 10px 10px 0 var(--red);
  display: grid; place-items: center;
  border-radius: 44px;
  animation: floaty 5s ease-in-out infinite;
}
.medallion svg { width: 120px; height: 120px; stroke: var(--ink); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.medallion .accent { stroke: var(--red); }
.medallion .fill-accent { fill: var(--red); stroke: none; }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@media (max-width: 820px) { .ph-grid { grid-template-columns: 1fr; } .medallion { display: none; } }

/* Tasmania map dot ping */
.ping { transform-box: fill-box; transform-origin: center; animation: ping 2s ease-out infinite; }
@keyframes ping { 0% { transform: scale(0.4); opacity: 0.9; } 100% { transform: scale(2.6); opacity: 0; } }

/* ---------- mobile nav ---------- */
.nav-cta { display: flex; align-items: center; gap: 18px; }
.nav-phone-link { font-family: var(--display); font-weight: 800; font-size: 16px; color: var(--ink); text-decoration: none; white-space: nowrap; }
.nav-phone-link:hover { color: var(--red); }
.nav-assess { padding: 12px 20px; font-size: 13px; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 26px; height: 3px; background: var(--ink); border-radius: 2px; transition: transform .25s, opacity .25s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
.mobile-only { display: none; }
@media (max-width: 1080px) {
  .nav-toggle { display: flex; }
  .nav-phone-link { display: none; }
  .nav-links {
    display: none; position: absolute; top: 78px; left: 0; right: 0;
    flex-direction: column; gap: 0; background: var(--bone);
    border-bottom: 2px solid var(--ink); padding: 8px 0;
  }
  header.open .nav-links { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links li .mobile-only, .nav-links li.mobile-only { display: block; }
  .mobile-only { display: block; }
  .nav-links a { display: block; padding: 16px 32px; font-size: 17px; border-bottom: none; }
  .nav-links a:hover { border-bottom-color: transparent; color: var(--red); background: var(--bone-dark); }
  .nav-cta { gap: 10px; }
}
@media (max-width: 460px) { .nav-assess { display: none; } }

/* ---------- assessment tool ---------- */
.assess-wrap { max-width: 820px; margin: 0 auto; }
.assess-stage { background: var(--white); border: 2px solid var(--ink); border-radius: var(--r); box-shadow: 10px 10px 0 var(--red); padding: clamp(28px, 5vw, 56px); }
.assess-progress { height: 12px; background: var(--bone-dark); border: 2px solid var(--ink); border-radius: 999px; overflow: hidden; margin-bottom: 12px; }
.assess-progress i { display: block; height: 100%; width: 0; background: var(--red); transition: width .4s ease; }
.assess-count { font-family: var(--display); font-weight: 700; font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 30px; }
.assess-q .ctrl-tag { display: inline-block; font-family: var(--display); font-weight: 700; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--red); border: 2px solid var(--red); border-radius: 999px; padding: 5px 14px; margin-bottom: 20px; }
.assess-q h2 { font-size: clamp(24px, 3.4vw, 36px); margin-bottom: 8px; }
.assess-q .q-help { color: var(--ink-soft); font-size: 16px; margin-bottom: 28px; }
.assess-options { display: flex; flex-direction: column; gap: 12px; }
.assess-opt {
  text-align: left; font-family: var(--body); font-size: 16.5px; font-weight: 600; color: var(--ink);
  background: var(--white); border: 2px solid var(--ink); border-radius: var(--r-sm);
  padding: 18px 22px; cursor: pointer; display: flex; align-items: center; gap: 16px;
  transition: background .15s, color .15s, transform .1s;
}
.assess-opt .dot { width: 22px; height: 22px; border: 2px solid var(--ink); border-radius: 50%; flex-shrink: 0; transition: background .15s, border-color .15s; }
.assess-opt:hover { transform: translateX(4px); }
.assess-opt.selected, .assess-opt:hover { background: var(--red); color: #fff; border-color: var(--ink); }
.assess-opt.selected .dot, .assess-opt:hover .dot { background: #fff; border-color: #fff; }
.assess-nav { display: flex; justify-content: space-between; margin-top: 30px; gap: 12px; }
.assess-back { background: none; border: none; font-family: var(--display); font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-soft); cursor: pointer; }
.assess-back:hover { color: var(--red); }
.assess-back[disabled] { opacity: 0; pointer-events: none; }

/* results */
.result-top { display: grid; grid-template-columns: auto 1fr; gap: 44px; align-items: center; }
@media (max-width: 640px) { .result-top { grid-template-columns: 1fr; text-align: center; justify-items: center; } }
.ring-wrap { position: relative; width: 190px; height: 190px; }
.ring-wrap svg { transform: rotate(-90deg); }
.ring-bg { fill: none; stroke: var(--bone-dark); stroke-width: 16; }
.ring-fg { fill: none; stroke: var(--red); stroke-width: 16; stroke-linecap: round; transition: stroke-dashoffset 1.2s cubic-bezier(.2,.8,.2,1); }
.ring-num { position: absolute; inset: 0; display: grid; place-items: center; flex-direction: column; }
.ring-num b { font-family: var(--display); font-weight: 900; font-size: 52px; line-height: 1; }
.ring-num span { font-family: var(--display); font-weight: 700; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); }
.result-verdict .band { display: inline-block; font-family: var(--display); font-weight: 800; font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; padding: 6px 16px; border-radius: 999px; margin-bottom: 14px; border: 2px solid var(--ink); }
.band.low { background: var(--red); color: #fff; }
.band.mid { background: #ffb703; color: var(--ink); }
.band.high { background: #2e9e6b; color: #fff; }
.result-verdict h2 { font-size: clamp(28px, 4vw, 44px); margin-bottom: 10px; }
.result-verdict p { color: var(--ink-soft); font-size: 17px; }
.control-bars { margin-top: 44px; display: grid; gap: 14px; }
.cbar { display: grid; grid-template-columns: 210px 1fr auto; gap: 16px; align-items: center; }
@media (max-width: 640px) { .cbar { grid-template-columns: 1fr; gap: 4px; } }
.cbar .cname { font-weight: 700; font-size: 15px; }
.cbar .ctrack { height: 14px; background: var(--bone-dark); border: 2px solid var(--ink); border-radius: 999px; overflow: hidden; }
.cbar .cfill { height: 100%; width: 0; border-radius: 999px; transition: width .9s ease; }
.cbar .cscore { font-family: var(--display); font-weight: 800; font-size: 14px; white-space: nowrap; }
.result-cta { margin-top: 44px; background: var(--ink); color: var(--bone); border-radius: var(--r); padding: 40px; text-align: center; }
.result-cta h3 { color: #fff; font-size: clamp(24px, 3.4vw, 34px); margin-bottom: 14px; }
.result-cta p { color: #a89e92; max-width: 480px; margin: 0 auto 26px; }
.result-cta .btn-red { border-color: #fff; }
.result-form { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; max-width: 540px; margin: 26px auto 0; text-align: left; }
.result-form .full { grid-column: 1 / -1; }
.result-form input {
  width: 100%; padding: 13px 16px; font-family: var(--body); font-size: 15px;
  border: 2px solid #fff; border-radius: var(--r-sm);
  background: rgba(255,255,255,0.06); color: #fff;
}
.result-form input::placeholder { color: #a89e92; }
.result-form input:focus { outline: 3px solid var(--red); outline-offset: -1px; }
.result-form button { cursor: pointer; }
.lead-thanks { max-width: 540px; margin: 20px auto 0; }
@media (max-width: 520px) { .result-form { grid-template-columns: 1fr; } }
.hidden { display: none !important; }

/* ---------- savings calculator ---------- */
.calc { background: var(--white); border: 2px solid var(--ink); border-radius: var(--r); box-shadow: 10px 10px 0 var(--red); padding: clamp(28px, 4vw, 48px); display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
@media (max-width: 820px) { .calc { grid-template-columns: 1fr; gap: 30px; } }
.calc-field { margin-bottom: 22px; }
.calc-field label { display: block; font-weight: 700; font-size: 14px; margin-bottom: 10px; }
.calc-field .rangewrap { display: flex; align-items: center; gap: 16px; }
.calc-field input[type=range] { flex: 1; accent-color: var(--red); height: 6px; }
.calc-field .val { font-family: var(--display); font-weight: 900; font-size: 24px; min-width: 54px; text-align: right; }
.calc-checks { display: flex; flex-wrap: wrap; gap: 10px; }
.calc-checks label { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 14px; border: 2px solid var(--ink); border-radius: 999px; padding: 8px 16px; cursor: pointer; user-select: none; }
.calc-checks input { accent-color: var(--red); width: 16px; height: 16px; }
.calc-checks label.on { background: var(--red); color: #fff; }
.calc-out { background: var(--ink); color: var(--bone); border-radius: var(--r); padding: 36px; text-align: center; }
.calc-out .lbl { font-family: var(--display); font-weight: 700; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: #a89e92; }
.calc-out .save { font-family: var(--display); font-weight: 900; font-size: clamp(44px, 7vw, 68px); color: #fff; line-height: 1.05; margin: 8px 0; }
.calc-out .save em { font-style: normal; color: #ff8d7e; }
.calc-out .sub { color: #a89e92; font-size: 14px; margin-top: 6px; }
.calc-out .split { display: flex; justify-content: space-around; margin-top: 24px; padding-top: 22px; border-top: 2px solid var(--line-ink); }
.calc-out .split div span { display: block; font-family: var(--display); font-weight: 800; font-size: 22px; color: #fff; }
.calc-out .split div small { color: #a89e92; font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; }
.calc-note { font-size: 13px; color: var(--ink-soft); margin-top: 18px; }

/* ---------- blog / resources ---------- */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
@media (max-width: 900px) { .post-grid { grid-template-columns: 1fr; } }
.post-card {
  background: var(--white); border: 2px solid var(--ink); border-radius: var(--r); overflow: hidden;
  text-decoration: none; color: var(--ink); display: flex; flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}
.post-card:hover { transform: translateY(-6px); box-shadow: 8px 8px 0 var(--red); }
.post-thumb { aspect-ratio: 16/9; display: grid; place-items: center; border-bottom: 2px solid var(--ink); position: relative; overflow: hidden; }
.post-thumb svg { width: 84px; height: 84px; }
.post-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.post-thumb.t-red { background: var(--red); }
.post-thumb.t-ink { background: var(--ink); }
.post-thumb.t-bone { background: var(--bone-dark); }
.post-card .body { padding: 26px 26px 30px; display: flex; flex-direction: column; flex: 1; }
.post-card .cat { font-family: var(--display); font-weight: 700; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--red); margin-bottom: 12px; }
.post-card h3 { font-size: 22px; line-height: 1.1; margin-bottom: 10px; }
.post-card p { font-size: 15px; color: var(--ink-soft); flex: 1; }
.post-card .meta { margin-top: 18px; font-size: 13px; font-weight: 600; color: var(--ink-soft); }
.post-card .meta .read::before { content: "·"; margin: 0 8px; }
.featured-post { display: grid; grid-template-columns: 1.1fr 1fr; gap: 0; border: 2px solid var(--ink); border-radius: var(--r); overflow: hidden; margin-bottom: 60px; text-decoration: none; color: var(--ink); }
@media (max-width: 820px) { .featured-post { grid-template-columns: 1fr; } }
.featured-post .fp-art { background: var(--red); display: grid; place-items: center; min-height: 230px; border-right: 2px solid var(--ink); overflow: hidden; }
.featured-post .fp-art svg { width: 140px; height: 140px; }
.featured-post .fp-art img { grid-area: 1 / 1; width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 820px) { .featured-post .fp-art { min-height: 220px; } }

/* article banner image */
.article-banner { max-width: 900px; margin: 40px auto 0; border: 2px solid var(--ink); border-radius: var(--r); overflow: hidden; box-shadow: 8px 8px 0 var(--red); }
.article-banner img { width: 100%; display: block; aspect-ratio: 16 / 6; object-fit: cover; }
.featured-post { align-items: stretch; }
.featured-post .fp-body { padding: clamp(24px, 3vw, 40px); background: var(--white); align-self: center; }
.featured-post .cat { font-family: var(--display); font-weight: 700; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--red); margin-bottom: 16px; }
.featured-post h2 { font-size: clamp(24px, 2.8vw, 34px); margin-bottom: 12px; }
.featured-post p { color: var(--ink-soft); font-size: 16px; margin-bottom: 14px; }
.featured-post .go { font-family: var(--display); font-weight: 800; text-transform: uppercase; font-size: 14px; letter-spacing: 0.06em; color: var(--red); }

/* ---------- article ---------- */
.article-hero { padding: 70px 0 50px; border-bottom: 2px solid var(--ink); }
.article-hero .cat { font-family: var(--display); font-weight: 700; font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--red); margin-bottom: 20px; display: inline-block; }
.article-hero h1 { font-size: clamp(34px, 5vw, 66px); max-width: 900px; margin-bottom: 24px; }
.article-hero .meta { font-size: 15px; font-weight: 600; color: var(--ink-soft); }
.article-hero .meta .read::before { content: "·"; margin: 0 10px; }
.article-body { max-width: 760px; margin: 0 auto; padding: 60px 0 40px; font-size: 18.5px; line-height: 1.75; }
.article-body > p { margin-bottom: 26px; }
.article-body h2 { font-size: clamp(26px, 3.4vw, 38px); margin: 46px 0 18px; }
.article-body h3 { font-size: 23px; margin: 34px 0 12px; }
.article-body ul, .article-body ol { margin: 0 0 26px 0; padding-left: 26px; }
.article-body li { margin-bottom: 10px; }
.article-body strong { font-weight: 700; }
.article-body a { color: var(--red); font-weight: 600; }
.article-body .lead { font-size: 22px; font-weight: 500; color: var(--ink); border-left: 5px solid var(--red); padding-left: 22px; margin-bottom: 34px; }
.callout { background: var(--white); border: 2px solid var(--ink); border-radius: var(--r); padding: 30px 32px; margin: 34px 0; box-shadow: 6px 6px 0 var(--red); }
.callout strong { color: var(--red); }
.callout h3 { margin: 0 0 10px; font-size: 21px; }
.article-cta { background: var(--ink); color: var(--bone); border-radius: var(--r); padding: 40px; margin: 44px 0 0; text-align: center; }
.article-cta h3 { color: #fff; font-size: 26px; margin-bottom: 12px; }
.article-cta p { color: #a89e92; margin-bottom: 24px; }
.article-cta .btn-red { border-color: #fff; }

/* ---------- landing page ---------- */
.lp-header { border-bottom: 2px solid var(--ink); background: var(--bone); }
.lp-header .wrap { display: flex; align-items: center; justify-content: space-between; height: 78px; }
.lp-hero { padding: 70px 0 60px; }
.lp-hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: start; }
@media (max-width: 900px) { .lp-hero-grid { grid-template-columns: 1fr; gap: 40px; } }
.lp-hero h1 { font-size: clamp(38px, 5.4vw, 68px); margin-bottom: 22px; }
.lp-hero .lede { font-size: 20px; color: var(--ink-soft); font-weight: 500; margin-bottom: 30px; }
.lp-ticks { list-style: none; margin-bottom: 8px; }
.lp-ticks li { padding: 10px 0 10px 38px; position: relative; font-size: 17px; font-weight: 600; }
.lp-ticks li::before { content: "✓"; position: absolute; left: 0; top: 8px; width: 26px; height: 26px; background: var(--red); color: #fff; border-radius: 50%; display: grid; place-items: center; font-size: 14px; font-weight: 800; }
.lp-form { background: var(--white); border: 2px solid var(--ink); border-radius: var(--r); box-shadow: 10px 10px 0 var(--red); padding: 36px; position: sticky; top: 100px; }
.lp-form h3 { font-size: 25px; margin-bottom: 6px; }
.lp-form .sub { font-size: 14px; color: var(--ink-soft); margin-bottom: 22px; }
.lp-trust { background: var(--ink); color: var(--bone); padding: 30px 0; }
.lp-trust .wrap { display: flex; flex-wrap: wrap; gap: 20px 50px; justify-content: center; align-items: center; }
.lp-trust .item { font-family: var(--display); font-weight: 700; font-size: 15px; letter-spacing: 0.04em; }
.lp-trust .item b { color: #ff8d7e; }
.faq { max-width: 820px; margin: 0 auto; }
.faq details { border: 2px solid var(--ink); border-radius: var(--r-sm); margin-bottom: 16px; background: var(--white); overflow: hidden; }
.faq summary { list-style: none; cursor: pointer; padding: 22px 26px; font-family: var(--display); font-weight: 700; font-size: 18px; display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 28px; color: var(--red); transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 26px 24px; color: var(--ink-soft); font-size: 16px; }

/* checklist band (E8 page) */
.check-band { background: var(--ink); color: var(--bone); padding: 90px 0; }
.check-band h2 { color: #fff; font-size: clamp(32px, 4vw, 54px); margin-bottom: 46px; max-width: 720px; }
.check-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 2px solid var(--line-ink); border-radius: var(--r); overflow: hidden; }
.check-grid div { padding: 18px 26px; border-bottom: 2px solid var(--line-ink); border-right: 2px solid var(--line-ink); font-size: 16px; font-weight: 500; }
.check-grid div::before { content: "✓ "; color: var(--red); font-weight: 800; margin-right: 8px; }
@media (max-width: 700px) { .check-grid { grid-template-columns: 1fr; } }
