/* ==========================================================================
   VELDTA TECH — dark technical theme
   One stylesheet, no frameworks, no build step.
   ========================================================================== */

:root {
  --bg:        #060a08;
  --panel:     #0b110e;
  --panel-2:   #101815;
  --panel-3:   #16201b;

  --line:      rgba(255,255,255,.09);
  --line-2:    rgba(255,255,255,.16);

  --head:      #ffffff;
  --text:      #b8c7bf;
  --muted:     #85968d;
  --faint:     #61726a;

  --accent:    #4ade80;   /* signal green */
  --accent-dk: #2fae62;
  --accent-fa: rgba(74,222,128,.10);
  --amber:     #f0a94c;   /* pulled from the banner sunset */

  --radius:    4px;
  --wrap:      1200px;

  --sans:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --display: "Chakra Petch", "Inter", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; background: var(--bg); }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16.5px;
  line-height: 1.72;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  color: var(--head);
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: -.005em;
  margin: 0 0 .55em;
}
h1 { font-size: clamp(2.1rem, 4.4vw, 3.15rem); line-height: 1.08; }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.3rem); }
h3 { font-size: 1.16rem; }
h4 { font-size: 1.02rem; }
p  { margin: 0 0 1.15em; }
a  { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
strong, b { color: #dfe9e4; font-weight: 600; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 26px; }
.wrap-narrow { max-width: 800px; }

section { padding: 108px 0; position: relative; }
section.tight { padding: 68px 0; }
@media (max-width: 700px) { section { padding: 72px 0; } }

.bg-soft { background: var(--panel); }
.bg-dark { background: var(--panel-2); }

/* faint technical grid */
.gridlines::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image:
    linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse at 50% 0%, #000 20%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 0%, #000 20%, transparent 78%);
}
.gridlines > * { position: relative; z-index: 1; }

/* ---------- micro type ---------- */
.eyebrow {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--display);
  font-size: .74rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 22px; height: 1px; background: var(--accent); flex: none; opacity: .8; }
.section-head.centered .eyebrow { justify-content: center; }

.lead { font-size: 1.1rem; color: var(--muted); }
.section-head { max-width: 660px; margin-bottom: 56px; }
.section-head.centered { margin-inline: auto; text-align: center; }
.section-head p:last-child { margin-bottom: 0; }

.small { font-size: .87rem; }
.muted { color: var(--muted); }
.center { text-align: center; }
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.mt-3 { margin-top: 28px; } .mt-4 { margin-top: 48px; }

/* ---------- logo ----------
   The supplied logo is white artwork on black. `screen` blending drops the
   black into the dark background without altering the file itself. */
.logo { display: inline-flex; align-items: center; }
.logo:hover { text-decoration: none; }
.logo img { height: 48px; width: auto; mix-blend-mode: screen; }
.logo.sm img { height: 60px; }
.logo.lg img { height: 104px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  padding: 13px 26px; border-radius: var(--radius);
  font-family: var(--display); font-weight: 600; font-size: .92rem;
  letter-spacing: .06em; text-transform: uppercase; line-height: 1.2;
  border: 1px solid transparent; cursor: pointer;
  transition: background .15s ease, border-color .15s ease, color .15s ease, box-shadow .15s ease;
  text-decoration: none !important;
}
.btn-primary { background: var(--accent); color: #04150b; }
.btn-primary:hover { background: #6ceb9a; box-shadow: 0 0 24px -6px rgba(74,222,128,.5); }
.btn-outline { border-color: var(--line-2); color: var(--head); background: transparent; }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-ghost { border-color: rgba(255,255,255,.24); color: #fff; background: rgba(255,255,255,.04); }
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.1); }
.btn-light { background: #fff; color: #06120b; }
.btn-light:hover { background: #dfe9e4; }
.btn-lg { padding: 16px 32px; font-size: .98rem; }
.btn-block { width: 100%; }

.link-arrow {
  font-family: var(--display); font-weight: 600; font-size: .92rem;
  letter-spacing: .08em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 9px; color: var(--accent);
}
.link-arrow:hover { text-decoration: none; gap: 14px; transition: gap .15s ease; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(6,10,8,.86);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; gap: 26px; height: 96px; }
.nav-links { display: flex; gap: 4px; margin-left: auto; align-items: center; }
.nav-links a {
  padding: 9px 13px; color: var(--text);
  font-family: var(--display); font-size: .84rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
}
.nav-links a:hover { color: var(--head); text-decoration: none; }
.nav-links a.active { color: var(--accent); }
.nav-links a.btn-primary { color: #04150b; margin-left: 12px; }
.nav-toggle {
  display: none; margin-left: auto; background: none; border: 1px solid var(--line-2);
  border-radius: var(--radius); width: 46px; height: 42px; cursor: pointer;
  align-items: center; justify-content: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  display: block; width: 18px; height: 1.5px; background: #fff; position: relative;
}
.nav-toggle span::before { content: ""; position: absolute; top: -6px; }
.nav-toggle span::after  { content: ""; position: absolute; top: 6px; }

@media (max-width: 980px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute; top: 96px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--panel); border-bottom: 1px solid var(--line);
    padding: 8px 22px 22px; margin: 0; display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 15px 4px; font-size: .95rem; border-bottom: 1px solid var(--line); }
  .nav-links a.btn-primary { margin: 16px 0 0; border: 0; text-align: center; }
}

/* ---------- hero ---------- */
.hero { position: relative; background: var(--bg); padding: 0; }
.hero-banner { position: relative; height: clamp(300px, 44vw, 620px); overflow: hidden; background: #000; }
.hero-banner img { width: 100%; height: 100%; object-fit: cover; object-position: center 42%; }
.hero-banner::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(6,10,8,.28) 0%, transparent 24%, rgba(6,10,8,.25) 52%, rgba(6,10,8,.75) 84%, var(--bg) 100%);
}
.hero-inner { padding: 56px 0 84px; max-width: 820px; }
.hero h1 { color: #fff; margin: 20px 0 20px; }
.hero h1 em { font-style: normal; color: var(--accent); }
.hero p { font-size: 1.13rem; color: var(--text); max-width: 58ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-note {
  margin-top: 28px; font-family: var(--display); font-size: .8rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted);
}
@media (max-width: 760px) {
  .hero-banner { height: clamp(200px, 56vw, 340px); }
  .hero-inner { padding: 40px 0 60px; }
}

.tagline {
  font-family: var(--display); font-size: .78rem; font-weight: 600;
  letter-spacing: .3em; text-transform: uppercase; color: var(--accent);
}

/* ---------- stat bar ---------- */
.stat-bar {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--panel);
}
.stat-bar div { padding: 32px 28px; border-right: 1px solid var(--line); }
.stat-bar div:last-child { border-right: 0; }
.stat-bar b {
  display: block; font-family: var(--display); font-size: 1.85rem; font-weight: 600;
  color: #fff; line-height: 1.15; letter-spacing: -.01em;
}
.stat-bar span {
  font-size: .74rem; color: var(--faint); text-transform: uppercase;
  letter-spacing: .14em; font-family: var(--display); font-weight: 500;
}
@media (max-width: 820px) {
  .stat-bar { grid-template-columns: repeat(2, 1fr); }
  .stat-bar div:nth-child(2n) { border-right: 0; }
  .stat-bar div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}

/* ---------- page head ---------- */
.page-head {
  position: relative; padding: 96px 0 84px; overflow: hidden;
  background: linear-gradient(180deg, var(--panel-2), var(--bg));
  border-bottom: 1px solid var(--line);
}
.page-head::before {
  content: ""; position: absolute; inset: 0;
  background: url("../img/banner.jpg") center 35% / cover no-repeat;
  opacity: .18; filter: saturate(.75);
}
.page-head::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,10,8,.5), var(--bg));
}
.page-head .wrap { position: relative; z-index: 2; }
.page-head h1 { color: #fff; margin-bottom: .35em; }
.page-head p { max-width: 64ch; margin: 0; color: var(--text); font-size: 1.08rem; }
.crumb {
  font-family: var(--display); font-size: .74rem; color: var(--accent);
  margin-bottom: 18px; letter-spacing: .24em; text-transform: uppercase; font-weight: 600;
}
.anchor-nav { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 32px; }
.anchor-nav a {
  font-family: var(--display); font-size: .8rem; font-weight: 500; letter-spacing: .1em;
  text-transform: uppercase; padding: 9px 16px; border-radius: var(--radius);
  background: rgba(255,255,255,.05); color: var(--text); border: 1px solid var(--line);
}
.anchor-nav a:hover { border-color: var(--accent); color: var(--accent); text-decoration: none; }

/* ---------- layout ---------- */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 940px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.split.wide-left { grid-template-columns: 1.12fr .88fr; }
@media (max-width: 900px) { .split, .split.wide-left { grid-template-columns: 1fr; gap: 44px; } }

/* ---------- cards ---------- */
.card {
  background: var(--panel-2); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 30px; position: relative;
}
.card::before {
  content: ""; position: absolute; top: -1px; left: -1px; width: 26px; height: 1px; background: var(--accent);
}
.card h3 { margin-bottom: .5em; }
.card p { color: var(--muted); }
.card p:last-child { margin-bottom: 0; }
.card .icon { display: none; }
.card .price-from {
  font-family: var(--display); font-size: .84rem; color: var(--accent);
  font-weight: 600; margin-top: 16px; display: block; letter-spacing: .06em;
}
.hoverable { transition: border-color .18s ease, background .18s ease; }
.hoverable:hover { border-color: var(--line-2); background: var(--panel-3); }
.bg-dark .card { background: var(--panel-3); }

/* ---------- service list ---------- */
.service-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0 40px; counter-reset: svc; }
@media (max-width: 900px) { .service-list { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .service-list { grid-template-columns: 1fr; } }
.service { padding: 32px 0; border-top: 1px solid var(--line); position: relative; }
.service::before {
  counter-increment: svc; content: "0" counter(svc);
  font-family: var(--display); font-size: .74rem; font-weight: 600; letter-spacing: .16em;
  color: var(--faint); display: block; margin-bottom: 14px;
}
.service h3 { margin-bottom: .45em; }
.service p { font-size: .94rem; color: var(--muted); margin-bottom: .9em; }
.service .rate {
  font-family: var(--display); font-size: .82rem; font-weight: 600;
  color: var(--accent); letter-spacing: .04em;
}

.feature-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 13px; }
.feature-list li { position: relative; padding-left: 28px; font-size: .96rem; }
.feature-list li::before {
  content: ""; position: absolute; left: 0; top: .48em; width: 15px; height: 15px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234ade80' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/15px no-repeat;
}

/* ---------- steps ---------- */
.steps { counter-reset: step; display: grid; gap: 30px; grid-template-columns: repeat(4, 1fr); }
@media (max-width: 940px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
.step { padding-top: 26px; border-top: 1px solid var(--line-2); }
.step::before {
  counter-increment: step; content: "0" counter(step);
  display: block; font-family: var(--display); font-size: 1.5rem; font-weight: 600;
  color: var(--accent); margin-bottom: 14px; line-height: 1;
}
.step h3 { font-size: 1.06rem; }
.step p { font-size: .93rem; color: var(--muted); margin: 0; }

/* ---------- tables ---------- */
.table-scroll { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel-2); }
table { border-collapse: collapse; width: 100%; min-width: 560px; font-size: .93rem; }
th, td { text-align: left; padding: 15px 18px; border-bottom: 1px solid var(--line); }
thead th {
  background: var(--panel-3); font-family: var(--display); font-size: .72rem;
  text-transform: uppercase; letter-spacing: .16em; color: var(--muted); font-weight: 600;
}
tbody tr:last-child td { border-bottom: 0; }
tbody th { font-weight: 500; color: var(--text); }
td { color: var(--muted); }
td b { color: var(--head); font-variant-numeric: tabular-nums; font-weight: 600; }
.col-hero { background: var(--accent-fa); }
.tag-best {
  display: inline-block; font-family: var(--display); font-size: .62rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  background: var(--accent); color: #04150b; padding: 2px 7px; border-radius: 2px;
  margin-left: 8px; vertical-align: 2px;
}

/* ---------- spec rows ---------- */
.spec-row { display: grid; grid-template-columns: repeat(6, 1fr); border-top: 1px solid var(--line); }
@media (max-width: 900px) { .spec-row { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .spec-row { grid-template-columns: repeat(2, 1fr); } }
.spec-row div { padding: 26px 20px; border-bottom: 1px solid var(--line); border-right: 1px solid var(--line); }
.spec-row div:last-child { border-right: 0; }
.spec-row b { display: block; font-family: var(--display); font-size: 1.34rem; font-weight: 600; color: #fff; line-height: 1.2; }
.spec-row span {
  font-size: .72rem; color: var(--faint); text-transform: uppercase;
  letter-spacing: .13em; font-family: var(--display);
}

.spec-list { display: grid; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.spec-list div {
  display: flex; justify-content: space-between; gap: 14px;
  padding: 14px 18px; font-size: .92rem; color: var(--muted);
  border-bottom: 1px solid var(--line); background: var(--panel-2);
}
.spec-list div:last-child { border-bottom: 0; }
.spec-list div b { color: #fff; font-weight: 600; font-family: var(--display); font-variant-numeric: tabular-nums; }

/* ---------- notice ---------- */
.notice {
  border: 1px solid var(--line); border-left: 2px solid var(--accent);
  background: var(--panel-2); padding: 22px 26px; border-radius: 0 var(--radius) var(--radius) 0;
  font-size: .95rem; color: var(--muted);
}
.notice strong { color: #fff; }
.notice.warn { border-left-color: var(--amber); }

/* ---------- timeline ---------- */
.timeline { display: grid; }
.timeline-item {
  display: grid; grid-template-columns: 120px 1fr; gap: 28px;
  padding: 24px 0; border-bottom: 1px solid var(--line);
}
.timeline-item:last-child { border-bottom: 0; }
.timeline-item .t {
  font-family: var(--display); font-weight: 600; color: var(--accent);
  font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; padding-top: 4px;
}
.timeline-item h4 { margin-bottom: .3em; }
.timeline-item p { margin: 0; font-size: .94rem; color: var(--muted); }
@media (max-width: 560px) { .timeline-item { grid-template-columns: 1fr; gap: 6px; } }

/* ---------- season ---------- */
.season { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); }
@media (max-width: 900px) { .season { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .season { grid-template-columns: 1fr; } }
.season-card { padding: 30px 26px 30px 0; border-right: 1px solid var(--line); }
.season-card:last-child { border-right: 0; }
@media (max-width: 900px) { .season-card { padding-right: 26px; } }
.season-card .months {
  font-family: var(--display); font-size: .74rem; font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 14px;
}
.season-card h4 { margin-bottom: 14px; }
.season-card ul { margin: 0; padding-left: 17px; font-size: .91rem; color: var(--muted); }
.season-card li { margin-bottom: 6px; }

/* ---------- verdict ---------- */
.verdict { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
@media (max-width: 760px) { .verdict { grid-template-columns: 1fr; } }
.verdict-col { padding: 28px 30px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel-2); }
.verdict-col.yes { border-top: 2px solid var(--accent); }
.verdict-col.no  { border-top: 2px solid var(--amber); }
.verdict-col h3 { display: flex; align-items: center; gap: 11px; }
.verdict-col h3 .mark { font-size: 1.05rem; color: var(--accent); }
.verdict-col.no h3 .mark { color: var(--amber); }
.verdict-col ul { list-style: none; padding: 0; margin: 20px 0 0; display: grid; gap: 12px; }
.verdict-col li { font-size: .95rem; padding-left: 19px; position: relative; color: var(--muted); }
.verdict-col li::before {
  content: ""; position: absolute; left: 0; top: .7em; width: 6px; height: 6px; background: var(--accent);
}
.verdict-col.no li::before { background: var(--amber); }

/* ---------- forms ---------- */
.form-card { background: var(--panel-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 38px; }
@media (max-width: 560px) { .form-card { padding: 26px 20px; } }
.field { margin-bottom: 22px; }
.field label, .field-label {
  display: block; font-family: var(--display); font-weight: 600; font-size: .8rem;
  letter-spacing: .1em; text-transform: uppercase; color: var(--text); margin-bottom: 9px;
}
.field .hint {
  display: block; font-family: var(--sans); font-size: .83rem; color: var(--faint);
  font-weight: 400; letter-spacing: 0; text-transform: none; margin-top: 7px;
}
input[type=text], input[type=email], input[type=tel], input[type=number],
input[type=date], input[type=time], select, textarea {
  width: 100%; padding: 13px 15px; font-size: 1rem; font-family: inherit; color: var(--head);
  background: var(--bg); border: 1px solid var(--line-2); border-radius: var(--radius);
  transition: border-color .15s ease, box-shadow .15s ease;
}
input::placeholder, textarea::placeholder { color: var(--faint); }
select {
  appearance: none; padding-right: 42px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2385968d' stroke-width='2' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; background-size: 17px;
}
select option { background: #101815; color: #ffffff; }
textarea { min-height: 120px; resize: vertical; }
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(74,222,128,.14);
}
input[type=date]::-webkit-calendar-picker-indicator { filter: invert(1) opacity(.5); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 620px) { .field-row { grid-template-columns: 1fr; } }

.choice-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
@media (max-width: 620px) { .choice-grid { grid-template-columns: 1fr; } }
.choice { position: relative; }
.choice input { position: absolute; opacity: 0; width: 0; height: 0; }
.choice span {
  font-family: var(--sans); text-transform: none; letter-spacing: normal;
  display: block; padding: 14px 17px; border: 1px solid var(--line-2); border-radius: var(--radius);
  cursor: pointer; font-size: .94rem; font-weight: 500; color: var(--text);
  transition: all .15s ease; background: var(--bg);
}
.choice span small { font-family: var(--sans); text-transform: none; letter-spacing: normal; display: block; font-weight: 400; color: var(--faint); font-size: .82rem; margin-top: 3px; }
.choice input:checked + span { border-color: var(--accent); background: var(--accent-fa); color: #fff; }
.choice input:focus-visible + span { box-shadow: 0 0 0 3px rgba(74,222,128,.18); }

.form-steps { display: flex; gap: 6px; margin-bottom: 32px; }
.form-steps div { flex: 1; height: 2px; background: var(--line-2); transition: background .3s ease; }
.form-steps div.done { background: var(--accent); }
.step-label {
  font-family: var(--display); font-size: .74rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--accent); font-weight: 600; margin-bottom: 10px;
}
form[data-multistep] { scroll-margin-top: 100px; }
.fs { display: none; }
.fs.active { display: block; animation: fade .22s ease; }
@keyframes fade { from { opacity: 0; transform: translateY(3px); } to { opacity: 1; transform: none; } }
.form-nav { display: flex; gap: 12px; margin-top: 32px; }
.form-nav .btn { flex: 1; }
.error-text { color: #f08b6a; font-size: .85rem; margin-top: 7px; display: none; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #d4674a; }
.field.invalid .error-text { display: block; }

/* ---------- calculator ---------- */
.calc { display: grid; grid-template-columns: 1.02fr .98fr; gap: 34px; align-items: start; }
@media (max-width: 900px) { .calc { grid-template-columns: 1fr; } }
.calc-out {
  position: sticky; top: 106px;
  background: linear-gradient(170deg, var(--panel-3), var(--panel));
  border: 1px solid var(--line-2); border-radius: var(--radius); padding: 34px;
}
@media (max-width: 900px) { .calc-out { position: static; } }
.calc-out .est-label {
  font-family: var(--display); font-size: .74rem; letter-spacing: .22em;
  text-transform: uppercase; color: var(--accent); font-weight: 600;
}
.calc-out .est {
  font-family: var(--display); font-size: clamp(2.2rem, 5vw, 3rem); font-weight: 600;
  color: #fff; line-height: 1.08; margin: 12px 0 5px; font-variant-numeric: tabular-nums;
}
.calc-out .est-sub { font-size: .92rem; color: var(--muted); }
.calc-breakdown { margin-top: 26px; border-top: 1px solid var(--line); padding-top: 22px; display: grid; gap: 12px; }
.calc-breakdown div { display: flex; justify-content: space-between; font-size: .91rem; gap: 12px; color: var(--muted); }
.calc-breakdown div b { color: #fff; font-weight: 600; font-variant-numeric: tabular-nums; font-family: var(--display); }
.calc-breakdown .total { border-top: 1px solid var(--line); padding-top: 14px; margin-top: 5px; font-size: .97rem; }
.range-wrap { display: flex; align-items: center; gap: 16px; }
input[type=range] { flex: 1; accent-color: var(--accent); height: 26px; background: transparent; }
.range-val {
  min-width: 96px; text-align: right; font-variant-numeric: tabular-nums;
  font-family: var(--display); font-weight: 600; color: #fff;
}
.range-num { display: flex; align-items: center; gap: 8px; min-width: 122px; }
.range-num input[type=number] {
  width: 86px; padding: 9px 11px; text-align: right; font-family: var(--display);
  font-weight: 600; font-variant-numeric: tabular-nums;
}
.range-num span { font-family: var(--display); font-weight: 500; color: var(--muted); font-size: .88rem; }

/* ---------- faq ---------- */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer; padding: 22px 44px 22px 0; font-weight: 600; color: var(--head);
  font-family: var(--display); list-style: none; position: relative; font-size: 1.04rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--accent); }
.faq summary::after {
  content: "+"; position: absolute; right: 6px; top: 19px;
  font-size: 1.4rem; font-weight: 400; color: var(--accent); line-height: 1;
}
.faq details[open] summary::after { content: "\2212"; }
.faq details p { color: var(--muted); font-size: .95rem; padding: 0 44px 8px 0; margin-bottom: 14px; }

/* ---------- cta band ---------- */
.cta-band {
  position: relative; overflow: hidden; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 76px 48px; text-align: center;
  background: linear-gradient(160deg, var(--panel-3), var(--panel));
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: url("../img/banner.jpg") center 45% / cover no-repeat; opacity: .16;
}
.cta-band::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,10,8,.5), rgba(6,10,8,.85));
}
.cta-band > * { position: relative; z-index: 2; }
.cta-band h2 { color: #fff; }
.cta-band .btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 32px; }
@media (max-width: 640px) { .cta-band { padding: 48px 22px; } }

/* ---------- badges ---------- */
.badge-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--display); font-size: .76rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  border: 1px solid var(--line); border-radius: var(--radius); padding: 7px 14px; color: var(--text);
}
.badge svg { width: 14px; height: 14px; color: var(--accent); }

/* ---------- map ---------- */
.map-au { max-width: 420px; }
.map-au svg { width: 100%; height: auto; }
.map-au .land { fill: rgba(255,255,255,.04); stroke: var(--line-2); stroke-width: 1.1; }
.map-au .dot { fill: var(--accent); }

/* ---------- imagery ---------- */
.media {
  position: relative; aspect-ratio: var(--ar, 3 / 2); border-radius: var(--radius);
  overflow: hidden; background: var(--panel-2); border: 1px solid var(--line);
}
.media img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- footer ---------- */
.site-footer { background: var(--panel); border-top: 1px solid var(--line); padding: 76px 0 34px; font-size: .92rem; color: var(--muted); }
.site-footer h4 {
  color: #fff; font-size: .74rem; letter-spacing: .2em; text-transform: uppercase;
  margin-bottom: 20px; font-family: var(--display); font-weight: 600;
}
.site-footer a { color: var(--muted); display: block; padding: 5px 0; }
.site-footer a:hover { color: var(--accent); text-decoration: none; }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr; gap: 48px; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; } }
.footer-bottom {
  margin-top: 60px; padding-top: 26px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap;
  font-size: .8rem; color: var(--faint);
}

/* legacy aliases so older inline styles still resolve on the dark theme */
:root {
  --ink: var(--head); --ink-2: var(--text);
  --paper: var(--panel-2); --paper-2: var(--panel); --paper-3: var(--panel-3);
  --lime: var(--accent); --soil: var(--amber); --green: var(--accent);
}

@media print { .site-header, .site-footer, .btn { display: none; } }
