/* =========================================================
   Project Carter - Trent Macartney, corporate property advisor
   Dark editorial theme with a blue accent drawn from the brand portrait
   ========================================================= */

:root {
  --bg:        #0c1016;
  --bg-2:      #141a24;
  --bg-3:      #1c2431;
  --text:      #eef2f7;
  --muted:     #9aa8b8;
  --line:      rgba(180, 205, 232, 0.14);
  --line-soft: rgba(180, 205, 232, 0.08);
  --accent:    #5fa1d0;
  --accent-2:  #7fb8e2;
  --maxw:      1240px;
  --pad:       clamp(20px, 5vw, 64px);

  --font-display: "Barlow Condensed", "Arial Narrow", system-ui, sans-serif;
  --font-body:    "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  margin: 0;
  overflow-x: hidden;
  overscroll-behavior-x: none;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

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

.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }
.narrow { max-width: 820px; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 999;
  background: var(--accent); color: #111; padding: 10px 16px; font-weight: 600;
}
.skip-link:focus { left: 8px; top: 8px; }

/* ---------- Typography ---------- */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.05;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.kicker {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  margin: 0 0 22px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 30px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.btn-accent { background: var(--accent); color: #141210; }
.btn-accent:hover { background: var(--accent-2); }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background-color 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(14, 14, 15, 0.92);
  backdrop-filter: blur(8px);
  border-bottom-color: var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 84px;
}

.brand { text-decoration: none; display: inline-flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.14em;
}
.brand-sub {
  font-size: 10px;
  letter-spacing: 0.42em;
  color: var(--muted);
  margin-top: 5px;
  padding-left: 2px;
}

.nav { display: flex; gap: 34px; }
.nav a {
  text-decoration: none;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--text);
  padding: 6px 0;
  position: relative;
}
.nav a::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px; background: var(--accent);
  transition: width 0.25s ease;
}
.nav a:hover::after { width: 100%; }

.header-cta { padding: 12px 24px; }
.nav-cta-mobile { display: none; }

/* ---------- Calculators dropdown ---------- */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  font-family: var(--font-body);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--text);
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.nav-caret {
  width: 9px; height: 6px; flex: none;
  transition: transform 0.22s ease;
}
.nav-dropdown.open .nav-caret { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 250px;
  display: flex;
  flex-direction: column;
  background: rgba(14, 14, 15, 0.98);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
/* invisible bridge so the cursor can cross the gap without closing */
.nav-dropdown.open::after {
  content: "";
  position: absolute;
  top: 100%; left: 0; right: 0; height: 18px;
}
.nav-dropdown-menu a {
  text-transform: none;
  letter-spacing: 0.01em;
  font-size: 13px;
  font-weight: 500;
  padding: 11px 12px;
  white-space: nowrap;
  color: var(--text);
}
.nav-dropdown-menu a::after { display: none; }
.nav-dropdown-menu a:hover { background: var(--bg-3); color: var(--accent); }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  background: none; border: 0; cursor: pointer;
  padding: 10px;
}
.nav-toggle span {
  display: block; height: 2px; background: var(--text);
  margin: 5px 0; transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--bg);
}
.hero-media {
  position: absolute; inset: 0;
  /* 6 Royal Street streetscape sits behind the hero words, under a dark scrim
     that reaches full opacity at the very bottom so the section below blends
     in rather than the photo appearing to cut off. */
  background:
    linear-gradient(180deg, rgba(12, 16, 22, 0.52) 0%, rgba(12, 16, 22, 0.58) 42%, rgba(12, 16, 22, 0.9) 88%, var(--bg) 100%),
    radial-gradient(1200px 700px at 78% 12%, rgba(95, 161, 208, 0.16), transparent 60%),
    url("assets/images/projects/royal-terraces/rt-01.jpg") center / cover no-repeat,
    linear-gradient(180deg, #10151d 0%, #0c1016 55%, #090c11 100%);
}
.hero-media::after {
  /* faint architectural grid */
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--line-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(180deg, transparent, #000 30%, #000 75%, transparent);
}
.hero-inner {
  position: relative;
  width: 100%;
  padding-bottom: clamp(70px, 12vh, 130px);
  padding-top: 140px;
}
.hero-arrow {
  width: clamp(64px, 9vw, 104px);
  color: var(--accent);
  margin-bottom: 26px;
}
.hero-words {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: 0.02em;
  font-size: clamp(52px, 12vw, 148px);
}
.hero-words span { display: block; }
.hero-words .accent { color: var(--accent); }
.hero-scroll {
  position: absolute;
  right: var(--pad);
  bottom: clamp(70px, 12vh, 130px);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  writing-mode: vertical-rl;
}

/* ---------- Sections ---------- */
.section { padding-block: clamp(72px, 12vw, 150px); }
.section-head { max-width: 620px; margin-bottom: clamp(40px, 6vw, 70px); }
.section-head h2 { font-size: clamp(34px, 6vw, 62px); margin-bottom: 18px; }
.section-head p { color: var(--muted); margin: 0; }

.intro-head {
  font-size: clamp(28px, 4.6vw, 52px);
  margin: 0;
  max-width: 20ch;
}
.intro-body { color: var(--muted); font-size: 1.05rem; margin-top: clamp(34px, 5vw, 52px); }
.intro-body p { margin: 0 0 18px; max-width: 62ch; }
.intro-body p:last-child { margin-bottom: 0; }

/* ---------- Grid + cards ---------- */
.grid { display: grid; gap: 1px; background: var(--line-soft); border: 1px solid var(--line-soft); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2x2 { grid-template-columns: repeat(2, 1fr); }

/* ---------- Full-bleed image band (breaks up the flat colour) ---------- */
.media-band {
  position: relative;
  height: clamp(260px, 42vw, 520px);
  background-color: var(--bg-2);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-block: 1px solid var(--line-soft);
}
.media-band::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(12, 16, 22, 0.34), rgba(12, 16, 22, 0.52));
}
@media (max-width: 620px) {
  .media-band { height: clamp(220px, 62vw, 340px); background-attachment: scroll; }
}

.card { background: var(--bg); }

.project-card { display: flex; flex-direction: column; text-decoration: none; color: inherit; }
.project-card { transition: background-color 0.25s ease; }
.project-card:hover { background: var(--bg-2); }
.card-media {
  aspect-ratio: 4 / 3;
  background:
    linear-gradient(135deg, rgba(95,161,208,0.18), rgba(180,205,232,0.02)),
    var(--bg-2);
  background-size: cover;
  background-position: center;
  position: relative;
}
.card-media::before {
  content: attr(data-label);
  position: absolute; left: 18px; bottom: 16px;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted);
}
.card-media::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--line-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.6;
}
/* Photo cards: swap the blueprint grid for a legibility scrim */
.card-media.has-photo::before { display: none; }
.card-media.has-photo::after {
  background-image: linear-gradient(180deg, rgba(14,14,15,0) 45%, rgba(14,14,15,0.72) 100%);
  background-size: auto;
  opacity: 1;
}
/* Calculator icon cards: a soft blue wash so the flat dark icon artwork
   doesn't read as a plain black tile against the rest of the page */
.card-media--icon.has-photo::after {
  background-image: linear-gradient(135deg, rgba(95,161,208,0.4), rgba(127,184,226,0.12));
  mix-blend-mode: screen;
}
.card-status {
  position: absolute; left: 16px; top: 16px; z-index: 1;
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600;
  padding: 7px 12px;
  background: rgba(14, 14, 15, 0.78);
  border: 1px solid var(--line);
  color: var(--text);
}
.card-status[data-state="done"] { color: var(--accent); border-color: rgba(95,161,208,0.5); }
.card-body { padding: clamp(26px, 3vw, 38px); }
.card-body h3 { font-size: 27px; margin-bottom: 10px; }
.card-meta {
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 16px;
}
.card-body p { color: var(--muted); font-size: 0.98rem; margin: 0 0 22px; }
.project-card .link-arrow { pointer-events: none; }

.service-card { padding: clamp(30px, 3.4vw, 44px); }
.service-card h3 { font-size: 25px; margin-bottom: 14px; }
.service-card p { color: var(--muted); font-size: 0.98rem; margin: 0 0 22px; }

.link-arrow {
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--text);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 4px;
  transition: color 0.2s ease;
}
.link-arrow::after { content: " →"; }
.link-arrow:hover { color: var(--accent); }

.section-more { margin: clamp(28px, 4vw, 44px) 0 0; }

/* ---------- Band ---------- */
.band { background: var(--bg-2); border-block: 1px solid var(--line-soft); }
.band-inner {
  padding-block: clamp(56px, 8vw, 96px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.band-inner h2 { font-size: clamp(28px, 4vw, 46px); max-width: 16ch; }
.band-copy { color: var(--muted); margin: 16px 0 0; max-width: 48ch; }

/* ---------- Statement ---------- */
.statement { padding-block: clamp(80px, 13vw, 170px); text-align: center; }
.statement p {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-weight: 700;
  font-size: clamp(38px, 8vw, 104px);
  line-height: 0.98;
  margin: 0;
}
.statement span { display: block; color: var(--accent); font-size: 0.32em; letter-spacing: 0.3em; margin-top: 24px; }

/* ---------- Contact ---------- */
.contact { border-top: 1px solid var(--line-soft); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 7vw, 90px); }
.contact-intro h2 { font-size: clamp(34px, 5vw, 58px); margin-bottom: 18px; }
.contact-intro > p { color: var(--muted); max-width: 42ch; }

.contact-details { list-style: none; padding: 0; margin: 34px 0 0; }
.contact-details li {
  display: flex; gap: 20px;
  padding: 16px 0;
  border-top: 1px solid var(--line-soft);
  font-size: 0.98rem;
}
.contact-details li:last-child { border-bottom: 1px solid var(--line-soft); }
.contact-details span {
  min-width: 90px; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.16em; font-size: 11px;
  padding-top: 3px;
}
.contact-details a { text-decoration: none; }
.contact-details a:hover { color: var(--accent); }

.socials { margin-top: 28px; display: flex; gap: 22px; }
.socials a {
  text-decoration: none; text-transform: uppercase;
  font-size: 12px; letter-spacing: 0.16em; color: var(--muted);
}
.socials a:hover { color: var(--accent); }

.contact-form { display: grid; gap: 18px; align-content: start; }
.field { display: grid; gap: 8px; align-content: start; }
.field label {
  text-transform: uppercase; letter-spacing: 0.16em;
  font-size: 11px; font-weight: 600; color: var(--muted);
}
.field input:not([type="checkbox"]):not([type="radio"]), .field select, .field textarea {
  width: 100%;
  background: var(--bg-2);
  border: 1px solid var(--line);
  color: var(--text);
  font-family: inherit;
  font-size: 16px;
  padding: 13px 15px;
  border-radius: 0;
}
.field select {
  appearance: none; -webkit-appearance: none; -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='%239aa8b8' stroke-width='1.6'%3E%3Cpath d='M5 7.5l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 40px;
}
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent);
}

/* ---------- Footer ---------- */
.site-footer { background: var(--bg); border-top: 1px solid var(--line); }
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 30px; flex-wrap: wrap;
  padding-block: 50px;
}
.footer-nav { display: flex; gap: 28px; }
.footer-nav a {
  text-decoration: none; text-transform: uppercase;
  font-size: 12px; letter-spacing: 0.14em; color: var(--muted);
}
.footer-nav a:hover { color: var(--text); }
.footer-legal { border-top: 1px solid var(--line-soft); padding-block: 26px; }
.footer-legal p { margin: 0; color: var(--muted); font-size: 12px; letter-spacing: 0.05em; }

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

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 780px) {
  .grid-2x2 { grid-template-columns: 1fr; }
  .header-cta { display: none; }
  .nav-toggle { display: block; }
  .nav {
    position: fixed;
    inset: 84px 0 auto 0;
    flex-direction: column;
    gap: 0;
    background: rgba(14, 14, 15, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
    padding: 12px var(--pad) 28px;
    transform: translateY(-120%);
    transition: transform 0.32s ease;
  }
  .nav.open { transform: none; }
  .nav a { padding: 16px 0; border-bottom: 1px solid var(--line-soft); font-size: 15px; }
  .nav a::after { display: none; }

  .nav-cta-mobile {
    display: block;
    width: 100%;
    margin-top: 18px;
    text-align: center;
  }

  .nav-dropdown { width: 100%; }
  .nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid var(--line-soft);
    font-size: 15px;
  }
  .nav-dropdown-menu {
    position: static;
    transform: none;
    min-width: 0;
    background: none;
    backdrop-filter: none;
    border: 0;
    padding: 0;
    opacity: 1;
    visibility: hidden;
    pointer-events: none;
    height: 0;
    overflow: hidden;
  }
  .nav-dropdown.open .nav-dropdown-menu {
    transform: none;
    visibility: visible;
    pointer-events: auto;
    height: auto;
    padding: 2px 0 10px;
  }
  .nav-dropdown.open::after { display: none; }
  .nav-dropdown-menu a {
    padding: 13px 0 13px 18px;
    font-size: 15px;
    border-bottom: 1px solid var(--line-soft);
  }

  .grid-3 { grid-template-columns: 1fr; }
  .hero-scroll { display: none; }
  body { font-size: 16px; }
}

/* =========================================================
   Landing / enquiry page  (enquire.html, thanks.html)
   Standalone conversion page for ad traffic - no site nav,
   form and headline over a photo/video background.
   ========================================================= */
.landing-page {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}

.landing-header {
  position: relative;
  z-index: 3;
  padding-block: 22px;
}
.landing-header .brand-name { font-size: 20px; }

.landing {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: clamp(124px, 17vw, 160px) 0 clamp(48px, 9vw, 96px);
}

/* Background media layer - swap the gradient for a real image, or drop a
   <video class="landing-video"> inside .landing-media (see enquire.html). */
.landing-media {
  position: absolute; inset: 0;
  background:
    radial-gradient(1200px 700px at 78% 12%, rgba(95, 161, 208, 0.20), transparent 60%),
    radial-gradient(900px 900px at 12% 100%, rgba(180, 205, 232, 0.06), transparent 55%),
    linear-gradient(180deg, #10151d 0%, #0c1016 55%, #090c11 100%);
  background-size: cover;
  background-position: center;
}
.landing-media::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--line-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(180deg, transparent, #000 30%, #000 75%, transparent);
}
.landing-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
/* Darkening layer so the copy stays readable over any image/video */
.landing-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(14, 14, 15, 0.55), rgba(14, 14, 15, 0.78)),
    radial-gradient(1000px 600px at 28% 42%, rgba(14, 14, 15, 0.25), transparent 70%);
}

.landing-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(36px, 6vw, 84px);
}

.landing-copy { max-width: 30ch; }
.landing-head {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.02;
  font-size: clamp(34px, 5.4vw, 66px);
  margin: 0 0 22px;
}
.landing-sub {
  color: rgba(244, 243, 241, 0.84);
  font-size: 1.05rem;
  margin: 0;
}
.landing-copy .btn { margin-top: 26px; }

.landing-form {
  width: 100%;
  max-width: 480px;
  justify-self: end;
  display: grid;
  gap: 16px;
  align-content: start;
  padding: clamp(24px, 3.4vw, 40px);
  background: rgba(20, 20, 22, 0.72);
  border: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.landing-form .field input,
.landing-form .field select,
.landing-form .field textarea {
  background: rgba(14, 14, 15, 0.6);
}
.form-fineprint {
  margin: 2px 0 0;
  font-size: 12px;
  color: var(--muted);
}
/* Spam honeypot - kept out of view and out of the tab order.
   display:none (not just off-screen) so browser autofill and password
   managers - which check computed visibility, not screen position - leave
   it alone instead of stuffing it and tripping Formspree's spam flag on a
   genuine human submission. */
.hp {
  display: none !important;
}

/* ---- Multi-step lead form (enquire.html) ---- */
.form-progress { display: grid; gap: 9px; }
.form-progress-bar {
  height: 4px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}
.form-progress-bar span {
  display: block;
  height: 100%;
  background: var(--accent);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.form-progress-label {
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-step {
  border: 0;
  margin: 0;
  padding: 0;
  min-width: 0;
  display: grid;
  gap: 22px;
  animation: stepIn 0.34s ease both;
}
.form-step[hidden] { display: none; }
@keyframes stepIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}
.form-step legend {
  padding: 0;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 22px;
  color: var(--text);
}

.q { display: grid; gap: 10px; }
.q-label {
  margin: 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.opts { display: grid; gap: 8px; }
.opt {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: rgba(14, 14, 15, 0.5);
  font-size: 14px;
  cursor: pointer;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}
.opt:hover { border-color: var(--accent); }
.opt:has(input:checked) {
  border-color: var(--accent);
  background: rgba(95, 161, 208, 0.12);
}
.opt input {
  appearance: none;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  margin: 0;
  flex: none;
  border: 1px solid var(--muted);
  background: transparent;
  display: grid;
  place-content: center;
}
.opt input[type="radio"] { border-radius: 50%; }
.opt input:checked { border-color: var(--accent); }
.opt input:checked::after {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--accent);
}
.opt input[type="radio"]:checked::after { border-radius: 50%; }
.opt input:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

.q-contact { gap: 14px; }

.form-note {
  margin: 6px 0 0;
  font-size: 12px;
  line-height: 1.4;
  color: var(--muted);
  min-height: 1em;
}
.form-note.is-checking { color: var(--muted); }
.form-note.is-bad { color: #e0a34a; }

.form-nav { display: flex; gap: 12px; margin-top: 4px; }
.form-nav .btn { flex: 1; text-align: center; }
.form-nav .btn[hidden] { display: none; }
.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--text);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); background: transparent; }
.btn[disabled] { opacity: 0.4; cursor: not-allowed; }

.landing-foot {
  position: relative;
  z-index: 3;
  background: var(--bg);
  border-top: 1px solid var(--line-soft);
  padding-block: 20px;
}
.landing-foot p { margin: 0; font-size: 12px; letter-spacing: 0.05em; color: var(--muted); }
.landing-foot a { color: var(--muted); text-decoration: none; }
.landing-foot a:hover { color: var(--accent); }

/* thanks.html - single column, no form */
.thanks .landing-inner { grid-template-columns: 1fr; }
.thanks .landing-copy { max-width: 34ch; }

@media (max-width: 900px) {
  .landing-inner { grid-template-columns: 1fr; }
  .landing-copy { max-width: 42ch; }
  .landing-form { justify-self: stretch; max-width: none; }
}

/* =========================================================
   About - portrait beside the intro copy
   ========================================================= */
.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(260px, 32vw, 440px);
  grid-template-areas:
    "head portrait"
    "body portrait";
  gap: clamp(36px, 6vw, 80px);
  align-items: start;
}
.intro-grid .intro-body { grid-area: body; margin-top: clamp(24px, 3.5vw, 40px); }
.intro-head { grid-area: head; max-width: 20ch; }
.intro-portrait {
  grid-area: portrait;
  position: relative;
  margin: 0;
  border: 1px solid var(--line-soft);
}
.intro-portrait img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 42% 22%;
}
.intro-portrait figcaption {
  padding: 14px 16px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  border-top: 1px solid var(--line-soft);
  background: var(--bg-2);
}
@media (max-width: 820px) {
  .intro-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "head"
      "portrait"
      "body";
  }
  .intro-portrait { max-width: 340px; margin: 28px 0; }
  .intro-portrait img { aspect-ratio: 4 / 5; }
  .intro-grid .intro-body { margin-top: 0; }
}

/* =========================================================
   Project detail pages
   (project-*.html - share the site header + footer)
   ========================================================= */
.project-hero {
  position: relative;
  min-height: min(78vh, 720px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--bg-2);
}
.project-hero-media {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.project-hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(12,16,22,0.6) 0%, rgba(12,16,22,0.32) 26%, rgba(12,16,22,0.55) 60%, var(--bg) 100%);
}
.project-hero-inner {
  position: relative;
  width: 100%;
  padding-top: 160px;
  padding-bottom: clamp(40px, 7vw, 80px);
}
.project-eyebrow {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 600;
  color: var(--accent);
  margin: 0 0 18px;
}
.project-eyebrow .sep { color: var(--muted); margin: 0 10px; }
.project-title {
  font-size: clamp(40px, 8vw, 104px);
  line-height: 0.98;
  margin: 0 0 20px;
}
.project-locale {
  margin: 0;
  color: var(--text);
  font-size: 1.05rem;
}

.project-body { padding-block: clamp(56px, 9vw, 110px); }
.project-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(40px, 7vw, 96px);
  align-items: start;
}
.prose > :first-child { margin-top: 0; }
.prose p { color: var(--muted); margin: 0 0 20px; font-size: 1.05rem; }
.prose h2 {
  font-size: clamp(24px, 3.2vw, 36px);
  margin: 46px 0 18px;
}

.stat-panel {
  border: 1px solid var(--line-soft);
  background: var(--bg-2);
  padding: clamp(24px, 3vw, 36px);
  position: sticky;
  top: 110px;
}
.stat-panel h2 {
  font-size: 16px; letter-spacing: 0.16em; text-transform: uppercase;
  margin: 0 0 20px; color: var(--muted); font-family: var(--font-body); font-weight: 600;
}
.stat-list { display: grid; gap: 0; margin: 0; }
.stat-list div {
  display: flex; justify-content: space-between; gap: 20px;
  padding: 14px 0;
  border-top: 1px solid var(--line-soft);
  font-size: 0.95rem;
}
.stat-list div:first-child { border-top: 0; }
.stat-list dt { color: var(--muted); }
.stat-list dd { margin: 0; text-align: right; font-weight: 500; }

.feature-list {
  list-style: none; padding: 0; margin: 8px 0 0;
  columns: 2; column-gap: 40px;
}
.feature-list li {
  padding: 9px 0 9px 22px;
  position: relative;
  color: var(--muted);
  font-size: 0.98rem;
  break-inside: avoid;
}
.feature-list li::before {
  content: "→";
  position: absolute; left: 0;
  color: var(--accent);
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
}
.gallery.cols-2 { grid-template-columns: repeat(2, 1fr); }
.gallery a { display: block; background: var(--bg); }
.gallery img {
  width: 100%; height: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: block;
  transition: opacity 0.2s ease;
}
.gallery a:hover img { opacity: 0.86; }
.gallery.floorplans img { object-fit: contain; background: #fff; padding: 8px; }

.project-cta {
  border-top: 1px solid var(--line-soft);
  padding-block: clamp(56px, 9vw, 110px);
}
.project-cta .wrap { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.project-cta h2 { font-size: clamp(28px, 4vw, 48px); max-width: 20ch; }

.back-link {
  display: inline-block;
  margin-bottom: 30px;
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600;
  color: var(--muted); text-decoration: none;
}
.back-link::before { content: "← "; color: var(--accent); }
.back-link:hover { color: var(--text); }

@media (max-width: 900px) {
  .project-layout { grid-template-columns: 1fr; }
  .stat-panel { position: static; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .feature-list { columns: 1; }
  .gallery { grid-template-columns: 1fr; }
}

/* =========================================================
   ROI Calculator  (roi-calculator.html)
   ========================================================= */
.calc { padding: calc(clamp(120px, 15vw, 170px) + 40px) 0 clamp(72px, 12vw, 130px); }
@media (max-width: 620px) {
  .calc { padding-top: calc(clamp(120px, 15vw, 170px) + 76px); }
}
.calc-intro { max-width: 640px; margin-bottom: clamp(36px, 6vw, 60px); }
.calc-intro h1 { font-size: clamp(34px, 6vw, 62px); margin-bottom: 18px; }
.calc-intro p { color: var(--muted); margin: 0; }

.calc-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}
.calc-inputs { display: grid; gap: 30px; }
.calc-inputs .field-hint { font-size: 12px; color: var(--muted); margin: 2px 0 0; }
.calc-inputs .field label span { color: var(--muted); font-weight: 500; }

.calc-group { display: grid; gap: 16px; }
.calc-subhead {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.calc-check {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 0.95rem; color: var(--text); cursor: pointer;
}
.calc-check input { width: auto; margin-top: 3px; flex: none; accent-color: var(--accent); }

/* Tenant-recoverable outgoings (NOI calculator) */
.calc-recover { font-size: 0.8rem; color: var(--muted); margin-top: 3px; }
.calc-recover input { margin-top: 2px; }
.field.is-recovered .input-money input,
.field.is-recovered .input-pct input { text-decoration: line-through; opacity: 0.55; }
.field.is-recovered .calc-recover { color: var(--accent); }

/* type-swapped card fields (PR calculator: residential vs commercial) */
.field[hidden], .calc-check[hidden], .field-row[hidden] { display: none !important; }

.calc-uplift {
  display: grid; gap: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  background: var(--bg-2);
}

/* Stamp duty state estimator */
.stamp-est {
  display: grid; gap: 8px;
  margin: 4px 0 10px; padding: 14px;
  border: 1px solid var(--line);
  background: var(--bg-3);
}
.stamp-est[hidden] { display: none; }
.stamp-disclaimer { margin: 0; font-size: 11px; line-height: 1.55; color: var(--muted); }

/* Demolition $/m2 estimator (DA calculator) */
.demo-est {
  display: grid; gap: 8px;
  margin: 4px 0 10px; padding: 14px;
  border: 1px solid var(--line);
  background: var(--bg-3);
}
.demo-est[hidden] { display: none; }

/* Site characteristics + report-requirement flags (DA calculator) */
.site-checks {
  display: grid; gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  background: var(--bg-3);
}
.report-flag { margin: 4px 0 0; font-size: 12px; font-weight: 500; }
.report-flag[hidden] { display: none; }
.report-flag.is-standard { color: var(--muted); }
.report-flag.is-likely { color: var(--accent); }
.report-flag.is-possible { color: var(--muted); }
.field.is-likely > label { color: var(--accent); }

/* Constraint callout (DA calculator) */
.calc-warn {
  margin: 0 0 16px;
  padding: 12px 14px;
  border: 1px solid rgba(224, 169, 85, 0.4);
  border-left: 3px solid #e0a955;
  background: rgba(224, 169, 85, 0.08);
  color: var(--text);
  font-size: 12.5px;
  line-height: 1.6;
}
.calc-warn[hidden] { display: none; }
.calc-warn strong { color: #e8b96b; }

/* Neutral info note (GRV calculator: D&C inclusions) */
.calc-note {
  margin: 4px 0 0;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  background: var(--bg-2);
  color: var(--text);
  font-size: 12.5px;
  line-height: 1.6;
}
.calc-note[hidden] { display: none; }
.calc-note strong { color: var(--accent); }

/* GRV calculator: dwelling-type cards + finance-charge rows */
.dwelling-types, .finance-rows { display: grid; gap: 16px; }
.dwelling-type, .finance-row { gap: 14px; }
.dwelling-type .field-row, .finance-row .field-row { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 14px; }
.dwelling-type__remove, .finance-row__remove { justify-self: start; }
@media (max-width: 560px) {
  .dwelling-type .field-row, .finance-row .field-row { grid-template-columns: 1fr; }
}
.finance-row select { width: 100%; }
.dwelling-type__calc {
  margin: 2px 0 0;
  display: grid; gap: 4px;
  font-size: 12px; color: var(--muted);
  padding-top: 10px; border-top: 1px solid var(--line-soft);
}
.dwelling-type__calc strong { color: var(--accent); font-weight: 600; margin-left: 4px; }

/* GRV calculator: line items folded into a D&C contract sum */
.field.is-included .input-money input { text-decoration: line-through; opacity: 0.5; }
.field.is-included > label { opacity: 0.6; }
.report-flag.is-included { color: var(--muted); font-style: italic; }

/* ---- year-by-year schedule ---- */
.calc-schedule-wrap { margin-top: clamp(40px, 6vw, 64px); }
.calc-schedule-scroll { overflow-x: auto; margin-top: 18px; }
.calc-schedule {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  min-width: 720px;
}
.calc-schedule th, .calc-schedule td {
  padding: 11px 14px;
  text-align: right;
  border-bottom: 1px solid var(--line-soft);
  white-space: nowrap;
}
.calc-schedule th:first-child, .calc-schedule td:first-child { text-align: left; }
.calc-schedule thead th {
  color: var(--muted);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom-color: var(--line);
}
.calc-schedule tbody td { color: var(--text); }
.calc-schedule tbody tr:hover td { background: var(--bg-2); }
.calc-schedule-empty { text-align: center !important; color: var(--muted); padding: 22px 14px; }

/* ---- assumptions ---- */
.calc-assumptions { margin-top: clamp(40px, 6vw, 64px); max-width: 80ch; }
.calc-assumptions ul { margin: 18px 0 0; padding-left: 20px; color: var(--muted); }
.calc-assumptions li { margin-bottom: 10px; }
.calc-assumptions li strong { color: var(--text); font-weight: 600; }

/* ---- FAQ ---- */
.calc-faq { margin-top: clamp(40px, 6vw, 64px); max-width: 80ch; }
.calc-faq details {
  border-bottom: 1px solid var(--line-soft);
  padding: 16px 0;
}
.calc-faq details:first-of-type { border-top: 1px solid var(--line-soft); }
.calc-faq summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--text);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.calc-faq summary::-webkit-details-marker { display: none; }
.calc-faq summary::after {
  content: "+";
  color: var(--accent);
  font-size: 20px;
  line-height: 1;
  flex: none;
  transition: transform 0.2s ease;
}
.calc-faq details[open] summary::after { transform: rotate(45deg); }
.calc-faq details p { color: var(--muted); margin: 12px 0 0; font-size: 0.98rem; }

.input-money, .input-pct { position: relative; }
.input-money input, .input-pct input { width: 100%; }
.input-money::before {
  content: "$";
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  color: var(--muted); font-size: 15px; pointer-events: none;
}
.input-money input { padding-left: 28px; }
/* % sits just after the number; --pct-x is set from the value width in JS */
.input-pct input { text-align: left; }
.input-pct::after {
  content: "%";
  position: absolute; left: var(--pct-x, 2.6em); right: auto;
  top: 50%; transform: translateY(-50%);
  color: var(--muted); font-size: 15px; pointer-events: none;
}

.calc-results {
  border: 1px solid var(--line);
  background: var(--bg-2);
  padding: clamp(24px, 3vw, 36px);
  position: sticky;
  top: 110px;
  margin: 0;
}
.calc-results h2 {
  font-size: 16px; letter-spacing: 0.16em; text-transform: uppercase;
  margin: 0 0 8px; color: var(--muted);
  font-family: var(--font-body); font-weight: 600;
}
.result-row {
  display: flex; justify-content: space-between; align-items: baseline; gap: 16px;
  padding: 13px 0;
  border-top: 1px solid var(--line-soft);
  font-size: 0.95rem;
}
.result-row dt { color: var(--muted); margin: 0; }
.result-row dd { margin: 0; font-weight: 600; text-align: right; }
.result-row.is-key dt { color: var(--text); }
.result-row.is-key dd { color: var(--accent); font-size: 1.15rem; }

/* CTA under the results panel */
.calc-cta { margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line); display: grid; gap: 10px; }
.calc-cta .form-fineprint { margin: 0; }
.btn-block { display: block; width: 100%; text-align: center; }

/* Reveal gate: figures update live but each digit after the first is masked
   until the visitor submits their details */
.calc-lock-note {
  margin: 0; font-size: 12px; line-height: 1.5; color: var(--accent);
  border: 1px solid rgba(95, 161, 208, 0.4); background: rgba(95, 161, 208, 0.08);
  padding: 10px 12px;
}

.calc-results.is-locked .result-row:not(.is-teaser) { cursor: pointer; }
.calc-results.is-locked .result-row:not(.is-teaser) dd,
.calc-schedule-wrap.is-locked .calc-schedule tbody td:not(:first-child) {
  color: var(--muted);
  user-select: none; -webkit-user-select: none;
}
.calc-schedule-wrap.is-locked .calc-schedule tbody { cursor: pointer; }

/* Lead-capture modal */
.modal { position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; padding: 20px; }
.modal[hidden] { display: none; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(6, 9, 13, 0.74); backdrop-filter: blur(3px); }
.modal-card {
  position: relative; z-index: 1;
  width: min(460px, 100%);
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  background: var(--bg-2);
  border: 1px solid var(--line);
  padding: clamp(26px, 4vw, 42px);
}
.modal-card h2 { font-size: clamp(22px, 3vw, 30px); margin-bottom: 10px; }
.modal-card > p { color: var(--muted); margin: 0 0 22px; }
.modal-close {
  position: absolute; top: 8px; right: 12px;
  background: none; border: 0; color: var(--muted);
  font-size: 28px; line-height: 1; cursor: pointer; padding: 4px 8px;
}
.modal-close:hover { color: var(--text); }

.calc-lead-form { display: grid; gap: 16px; }
.calc-lead-form .btn { margin-top: 4px; }

.calc-done {
  margin-top: 6px;
  border: 1px solid rgba(95, 161, 208, 0.5);
  background: rgba(95, 161, 208, 0.08);
  padding: 20px 22px;
}
.calc-done p { margin: 0; }
.linklike {
  background: none; border: 0; padding: 0;
  color: var(--accent); font: inherit; text-decoration: underline; cursor: pointer;
}

@media (max-width: 900px) {
  .calc-grid { grid-template-columns: minmax(0, 1fr); }
  .calc-results { position: static; }
}

/* =========================================================
   Accounts - auth bar, save button, account page
   ========================================================= */

.pc-auth-bar {
  position: fixed;
  top: 84px; left: 0; right: 0;
  z-index: 99;
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}
.pc-auth-bar__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding-top: 8px; padding-bottom: 8px;
}
.pc-auth-bar__who { color: var(--muted); }
.pc-auth-bar__who strong { color: var(--text); font-weight: 600; }
.pc-auth-bar__links { display: flex; align-items: center; gap: 16px; white-space: nowrap; }
.pc-auth-bar__links a { color: var(--accent); text-decoration: none; font-weight: 600; }
.pc-auth-bar__links a:hover { text-decoration: underline; }

@media (max-width: 620px) {
  .pc-auth-bar__inner { flex-direction: column; align-items: flex-start; gap: 6px; }
}

/* Save-report button sits in .calc-cta above the download button */
.pc-save-btn { margin: 0; }
.pc-save-msg {
  margin: 0; font-size: 12.5px; line-height: 1.5; color: var(--muted);
}
.pc-save-msg.is-ok    { color: var(--accent-2); }
.pc-save-msg.is-error { color: #e2938c; }

/* Pull-a-figure-from-another-saved-report widget (pc-report.js addPuller),
   sits inside the target field, under its own hint */
.pc-pull { margin-top: 6px; font-size: 12px; line-height: 1.5; }
.pc-pull[hidden] { display: none; }
.pc-pull__btn { color: var(--accent); font-weight: 600; }
.pc-pull__select { width: 100%; margin-top: 2px; font-size: 16px; padding: 8px 10px; }
.pc-pull__note { margin: 0 0 4px; color: var(--muted); }

/* ---- account.html ---- */
.acct-card { padding: clamp(22px, 3vw, 34px); margin-bottom: 20px; }
.acct-card + .acct-card { margin-top: 0; }
.acct-card h2 { margin-bottom: 16px; }
.acct-card form { display: grid; gap: 16px; }
.acct-card .field { display: grid; gap: 6px; }
.acct-card input {
  width: 100%; padding: 12px 14px;
  background: var(--bg-3); border: 1px solid var(--line); color: var(--text);
  font: inherit; border-radius: 2px;
}
.acct-card input:focus { outline: 2px solid var(--accent); outline-offset: 1px; }

.acct-msg { margin: 14px 0 0; font-size: 13.5px; line-height: 1.6; }
.acct-msg.is-ok    { color: var(--accent-2); }
.acct-msg.is-error { color: #e2938c; }

.acct-whoami { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.acct-eyebrow {
  margin: 0; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted);
}
.acct-email { margin: 4px 0 0; font-size: 18px; font-weight: 600; word-break: break-all; }

.acct-reports { display: grid; gap: 2px; }
.acct-group-head {
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.04em;
  font-size: 15px; color: var(--muted); margin: 18px 0 8px;
}
.acct-group-head:first-child { margin-top: 0; }
.acct-report {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 12px 0; border-bottom: 1px solid var(--line-soft);
}
.acct-report__main { display: grid; gap: 2px; min-width: 0; }
.acct-report__title { color: var(--text); font-weight: 600; text-decoration: none; }
.acct-report__title:hover { color: var(--accent); text-decoration: underline; }
.acct-report__date { font-size: 12px; color: var(--muted); }
.acct-report__actions { display: flex; gap: 14px; white-space: nowrap; }
.acct-report__actions .linklike { font-size: 13px; }

.acct-empty { color: var(--muted); font-size: 14px; }
.acct-calc-links { margin-top: 18px; font-size: 14px; color: var(--muted); }
.acct-calc-links a { color: var(--accent); text-decoration: none; font-weight: 600; }
.acct-calc-links a:hover { text-decoration: underline; }

.acct-badge {
  justify-self: start; font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.04em; color: #141210; background: var(--accent);
  padding: 2px 8px; border-radius: 3px;
}
.acct-overview {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1px; background: var(--line-soft); border: 1px solid var(--line-soft);
  margin: 16px 0 6px;
}
.acct-overview__stat {
  background: var(--bg-2); padding: 14px 16px;
}
.acct-overview__stat dt { margin: 0 0 4px; font-size: 12px; color: var(--muted); }
.acct-overview__stat dd { margin: 0; font-size: 1.05rem; font-weight: 600; color: var(--text); }
