/* =========================================
   AUREA HOSTING — Asset Intelligence Design System
   ========================================= */

/* ─── Design Tokens ─── */
:root {
  /* Surfaces */
  --sand:         #fffdf9;
  --sand-mid:     #f5f2eb;
  --sand-deep:    #ede9df;
  --ink:          #172226;
  --ink-light:    #3a4a50;
  --muted:        #7a8a8f;
  --border:       #e4e0d8;
  --white:        #ffffff;

  /* Brand */
  --gold:         #c8a35d;
  --gold-light:   #f5eddc;
  --gold-dim:     rgba(200, 163, 93, 0.12);
  --gold-rule:    rgba(200, 163, 93, 0.28);
  --teal:         #1b7f74;
  --teal-deep:    #14605a;
  --teal-light:   #e6f5f2;

  /* Semantic */
  --positive:     #27ae60;
  --error:        #c0392b;

  /* Typography */
  --text-xs:      clamp(0.6875rem, 0.65rem + 0.15vw, 0.75rem);
  --text-sm:      clamp(0.8125rem, 0.78rem + 0.15vw, 0.875rem);
  --text-base:    clamp(0.9375rem, 0.9rem + 0.2vw, 1.0625rem);
  --text-lg:      clamp(1.0625rem, 1rem + 0.3vw, 1.25rem);
  --text-xl:      clamp(1.25rem, 1.1rem + 0.6vw, 1.5rem);
  --text-2xl:     clamp(1.5rem, 1.2rem + 1.2vw, 2rem);
  --text-3xl:     clamp(1.875rem, 1.4rem + 1.8vw, 2.75rem);
  --text-4xl:     clamp(2.25rem, 1.5rem + 3vw, 3.75rem);
  --text-hero:    clamp(2.75rem, 1.8rem + 4vw, 5rem);

  /* Spacing */
  --space-1: 0.25rem;  --space-2: 0.5rem;   --space-3: 0.75rem;
  --space-4: 1rem;     --space-5: 1.25rem;  --space-6: 1.5rem;
  --space-8: 2rem;     --space-10: 2.5rem;  --space-12: 3rem;
  --space-16: 4rem;    --space-20: 5rem;    --space-24: 6rem;
  --space-32: 8rem;

  /* Radius */
  --radius-sm:   10px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-sm:   0 2px 8px rgba(23,34,38,0.05);
  --shadow-md:   0 4px 20px rgba(23,34,38,0.07);
  --shadow-lg:   0 8px 40px rgba(23,34,38,0.09);
  --shadow-xl:   0 20px 60px rgba(23,34,38,0.12);
  --shadow-gold: 0 4px 24px rgba(200,163,93,0.22);
  --shadow-calc: 0 24px 64px rgba(23,34,38,0.10), 0 4px 16px rgba(23,34,38,0.06);

  /* Easing */
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Layout */
  --container-max:    1200px;
  --container-wide:   1400px;
  --container-narrow: 760px;
  --header-height:    72px;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--ink);
  background: var(--sand);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); text-decoration: none; transition: color 200ms var(--ease-out); }
a:hover { color: var(--teal-deep); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea, select { font: inherit; }
h1, h2, h3, h4, h5, h6 {
  font-family: 'Switzer', -apple-system, sans-serif;
  font-weight: 600;
  line-height: 1.1;
  color: var(--ink);
  letter-spacing: -0.025em;
}

/* ─── Cursor Dot ─── */
.cursor-dot {
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 240ms var(--ease-spring),
              height 240ms var(--ease-spring),
              background 240ms,
              border 240ms;
  will-change: left, top;
  opacity: 0;
}
.cursor-dot.visible { opacity: 1; }
.cursor-dot.expanded {
  width: 36px;
  height: 36px;
  background: transparent;
  border: 1.5px solid var(--gold);
}
@media (hover: none) { .cursor-dot { display: none; } }

/* ─── Layout ─── */
.container { width: 100%; max-width: var(--container-max); margin: 0 auto; padding: 0 var(--space-6); }
.container-wide { max-width: var(--container-wide); }
.container-narrow { max-width: var(--container-narrow); }

/* ─── Header ─── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--header-height);
  background: rgba(255, 253, 249, 0);
  backdrop-filter: blur(0px); -webkit-backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  transition: background 400ms var(--ease-out),
              backdrop-filter 400ms,
              border-color 400ms,
              transform 400ms var(--ease-out),
              box-shadow 400ms var(--ease-out);
}
.site-header.scrolled {
  background: rgba(255, 253, 249, 0.92);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom-color: rgba(228, 224, 216, 0.5);
  box-shadow: var(--shadow-sm);
}
.site-header.hidden { transform: translateY(-100%); }

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; max-width: var(--container-wide); margin: 0 auto; padding: 0 var(--space-6);
}
.logo { display: flex; align-items: center; gap: var(--space-3); text-decoration: none; color: var(--ink); }
.badge-logo { width: 40px; height: 40px; flex-shrink: 0; }
.logo-text {
  font-family: 'Switzer', sans-serif; font-weight: 600;
  font-size: var(--text-lg); letter-spacing: -0.02em;
}

.nav-links { display: flex; align-items: center; gap: var(--space-1); }
.nav-links a {
  font-size: var(--text-sm); font-weight: 500; color: var(--ink-light);
  padding: var(--space-2) var(--space-3); border-radius: var(--radius-pill);
  transition: all 200ms var(--ease-out);
}
.nav-links a:hover { color: var(--ink); background: var(--sand-mid); }
.nav-links a.active { color: var(--ink); font-weight: 600; }
.nav-links a.active::after {
  content: '';
  display: block;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  margin-top: 2px;
  margin-left: var(--space-3);
  margin-right: var(--space-3);
}

/* Apply nav link */
.nav-apply {
  background: var(--ink) !important;
  color: var(--white) !important;
  border-radius: var(--radius-pill) !important;
  padding: var(--space-2) var(--space-5) !important;
  font-weight: 600 !important;
  transition: background 200ms, transform 200ms !important;
}
.nav-apply:hover {
  background: var(--teal) !important;
  color: var(--white) !important;
  transform: translateY(-1px);
}
.nav-apply.active::after { display: none; }

/* Mobile nav */
.nav-toggle { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; border-radius: var(--radius-sm); }
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--ink); position: relative; transition: all 200ms var(--ease-out); }
.nav-toggle span::before, .nav-toggle span::after {
  content: ''; display: block; width: 20px; height: 2px; background: var(--ink);
  position: absolute; left: 0; transition: all 200ms var(--ease-out);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.nav-toggle.open span { background: transparent; }
.nav-toggle.open span::before { top: 0; transform: rotate(45deg); }
.nav-toggle.open span::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 820px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;                               /* avoids iOS nested-fixed clip bug */
    top: 100%;                                        /* flush below header bottom edge */
    left: 0; right: 0;
    height: calc(100vh - var(--header-height));       /* fallback for older browsers */
    height: calc(100dvh - var(--header-height));      /* dynamic viewport — handles Safari address bar */
    flex-direction: column; gap: var(--space-2);
    padding: var(--space-8) var(--space-6);
    background: rgba(255, 253, 249, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);              /* Safari prefix */
    transform: translateX(100%);
    transition: transform 400ms var(--ease-out);
    align-items: stretch;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;                /* smooth momentum scroll on iOS */
    overscroll-behavior: contain;
    z-index: 999;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: var(--text-lg); padding: var(--space-4); }
  .nav-apply { text-align: center !important; }
  .nav-links a.active::after { display: none; }
}

/* ─── Sections ─── */
.section { padding: var(--space-32) 0; position: relative; }
.section-sm { padding: var(--space-16) 0; }
.section-alt { background: var(--sand-mid); }
.section-kicker {
  font-size: 11px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--teal);
  display: inline-block; margin-bottom: var(--space-4);
}
.section-title { font-size: var(--text-3xl); margin-bottom: var(--space-4); }
.section-lead { font-size: var(--text-lg); color: var(--muted); max-width: 60ch; line-height: 1.6; }
.section-header { text-align: center; margin-bottom: var(--space-12); }
.section-header .section-lead { margin: 0 auto; }

/* ─── Rule Lines ─── */
.rule-line {
  height: 1px;
  background: var(--gold-rule);
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 700ms var(--ease-out);
}
.rule-line.drawn { transform: scaleX(1); }

/* ─── Scroll Reveal ─── */
.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 100ms; }
.reveal-delay-2 { transition-delay: 200ms; }
.reveal-delay-3 { transition-delay: 300ms; }
.reveal-delay-4 { transition-delay: 400ms; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--space-2);
  font-family: 'Switzer', sans-serif; font-weight: 600; font-size: var(--text-sm);
  padding: var(--space-3) var(--space-6); border-radius: var(--radius-pill);
  transition: all 220ms var(--ease-out); text-decoration: none;
  white-space: nowrap; position: relative; overflow: hidden;
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
  box-shadow: var(--shadow-gold);
  letter-spacing: 0.01em;
}
.btn-gold:hover {
  background: #b8924d;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(200,163,93,0.35);
}
.btn-lg { padding: var(--space-4) var(--space-10); font-size: var(--text-base); }
.btn-sm { padding: var(--space-2) var(--space-4); font-size: var(--text-xs); }
.btn-outline {
  background: transparent; color: var(--teal); border: 1.5px solid var(--teal);
}
.btn-outline:hover { background: var(--teal); color: var(--white); transform: translateY(-1px); }
.btn-dark { background: var(--ink); color: var(--white); }
.btn-dark:hover { background: var(--ink-light); color: var(--white); transform: translateY(-1px); }
.btn-group { display: flex; flex-wrap: wrap; gap: var(--space-4); }

/* Apply button (ghost style) */
.btn-apply {
  display: inline-flex; align-items: center; gap: var(--space-2);
  font-family: 'Switzer', sans-serif; font-size: var(--text-sm); font-weight: 500;
  color: var(--ink-light); text-decoration: none;
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  transition: color 200ms, border-color 200ms;
}
.btn-apply:hover { color: var(--ink); border-color: var(--gold); }
.btn-apply span { transition: transform 200ms var(--ease-out); }
.btn-apply:hover span { transform: translateX(4px); }

/* Text link button */
.btn-text-link {
  display: inline-flex; align-items: center; gap: var(--space-2);
  font-family: 'Switzer', sans-serif; font-size: var(--text-sm); font-weight: 600;
  color: var(--teal); text-decoration: none;
  border-bottom: 1px solid rgba(27,127,116,0.3);
  padding-bottom: 2px;
  transition: color 200ms, border-color 200ms;
}
.btn-text-link:hover { color: var(--teal-deep); border-color: var(--teal); }

/* ─── Chips ─── */
.chip {
  display: inline-flex; align-items: center; gap: var(--space-2);
  padding: var(--space-2) var(--space-4); border-radius: var(--radius-pill);
  font-size: var(--text-sm); font-weight: 500;
  background: rgba(255,255,255,0.15); color: var(--white);
  backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.2);
  transition: opacity 180ms, background 180ms;
}
a.chip:hover { opacity: 0.82; }
.chip-light { background: var(--teal-light); color: var(--teal); border: 1px solid rgba(27,127,116,0.15); }
.chip-gold  { background: var(--gold-light); color: var(--gold); border: 1px solid rgba(200,163,93,0.2); }
.chip-outline { background: transparent; color: var(--ink-light); border: 1px solid var(--border); }

/* ─── Cards (kept for subpages) ─── */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  border: 1px solid var(--border);
  transition: all 400ms var(--ease-out);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card-icon {
  width: 52px; height: 52px; display: flex; align-items: center; justify-content: center;
  background: var(--teal-light); border-radius: var(--radius-md);
  color: var(--teal); margin-bottom: var(--space-5);
}
.card-title { font-size: var(--text-xl); margin-bottom: var(--space-3); }
.card-text { color: var(--muted); line-height: 1.65; }

/* ─── Grid ─── */
.grid { display: grid; gap: var(--space-6); }
.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: 1024px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* ─── FAQ (kept for subpage) ─── */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--space-6) 0; cursor: pointer;
  font-family: 'Switzer', sans-serif; font-size: var(--text-lg); font-weight: 600;
  color: var(--ink); transition: color 200ms; width: 100%; text-align: left; gap: var(--space-4);
}
.faq-question:hover { color: var(--teal); }
.faq-icon {
  width: 28px; height: 28px; flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: var(--teal-light); color: var(--teal);
  transition: all 400ms var(--ease-out); font-size: 18px; line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--teal); color: var(--white); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 600ms var(--ease-out), padding 600ms var(--ease-out); }
.faq-answer-inner { padding: 0 0 var(--space-6); color: var(--muted); line-height: 1.7; }

/* ─── Comparison Table (kept for subpage) ─── */
.comparison-table {
  width: 100%; border-collapse: separate; border-spacing: 0;
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border); background: var(--white);
}
.comparison-table th, .comparison-table td { padding: var(--space-4) var(--space-6); text-align: left; border-bottom: 1px solid var(--border); }
.comparison-table thead th { background: var(--ink); color: var(--white); font-family: 'Switzer', sans-serif; font-weight: 600; font-size: var(--text-sm); text-transform: uppercase; letter-spacing: 0.05em; }
.comparison-table thead th:last-child { background: var(--teal); }
.comparison-table tbody tr:last-child td { border-bottom: none; }
.comparison-table tbody tr:hover { background: var(--sand); }
.comparison-table td:first-child { font-weight: 600; color: var(--ink); }
.comparison-table td:last-child { color: var(--teal); font-weight: 500; }
@media (max-width: 640px) { .comparison-table th, .comparison-table td { padding: var(--space-3) var(--space-4); font-size: var(--text-sm); } }

/* ─── Contact Form ─── */
.form-group { margin-bottom: var(--space-5); }
.form-label { display: block; font-size: var(--text-sm); font-weight: 600; color: var(--ink); margin-bottom: var(--space-2); }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: var(--space-3) var(--space-4);
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  background: var(--white); color: var(--ink); font-size: var(--text-base);
  transition: border-color 200ms, box-shadow 200ms;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none; border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(27,127,116,0.1);
}
.form-textarea { min-height: 120px; resize: vertical; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-5); }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }

/* ─── Map ─── */
.map-container { width: 100%; height: 480px; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); }
@media (max-width: 768px) { .map-container { height: 320px; } }

/* ─── Area Card (kept for subpages) ─── */
.area-card { border-radius: var(--radius-lg); overflow: hidden; position: relative; aspect-ratio: 4/3; }
.area-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms var(--ease-out); }
.area-card:hover img { transform: scale(1.05); }
.area-card-overlay { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: var(--space-6); background: linear-gradient(to top, rgba(23,34,38,0.7) 0%, transparent 60%); }
.area-card-overlay h3 { color: var(--white); font-size: var(--text-xl); margin-bottom: var(--space-1); }
.area-card-overlay p { color: rgba(255,255,255,0.75); font-size: var(--text-sm); }

/* ─── HERO SPLIT ─── */
.hero-split {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-height) + var(--space-20)) 0 var(--space-20);
  background: var(--sand);
  position: relative;
  overflow: hidden;
}

/* Right panel background — dot grid + sand-mid tint */
.hero-calc-bg {
  position: absolute;
  inset: 0;
  left: 50%;           /* starts at the midpoint — right half only */
  overflow: hidden;
  z-index: 0;
}

.hero-bg-image-wrap {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  display: block;
}

/* Gradient overlay — fades left edge into your hero bg colour
   and darkens slightly so the calculator card stays readable */
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to right,
      var(--hero-bg, #f5f3ef) 0%,
      transparent 18%
    ),
    linear-gradient(
      to bottom,
      rgba(0,0,0,0.08) 0%,
      rgba(0,0,0,0.32) 100%
    );
}

/* Make sure hero-split-inner sits above the bg image */
.hero-split-inner {
  position: relative;
  z-index: 1;
}

/* ─── Mobile: full-width image behind everything ─── */
@media (max-width: 767px) {
  .hero-calc-bg {
    left: 0;             /* cover full width on mobile */
    opacity: 0.18;       /* subtle wash so text stays legible */
  }

  .hero-bg-overlay {
    background: linear-gradient(
      to bottom,
      rgba(0,0,0,0.0) 0%,
      rgba(0,0,0,0.55) 100%
    );
  }
}
@media (max-width: 900px) { .hero-calc-bg { display: none; } }

.hero-split-inner {
  position: relative; z-index: 1;
  width: 100%;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 var(--space-8);
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: var(--space-16);
  align-items: center;
}

/* ─── Hero Statement ─── */
.hero-kicker {
  display: flex; align-items: center; gap: var(--space-2);
  font-size: 11px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--muted);
  margin-bottom: var(--space-6);
}
.kicker-pulse {
  display: inline-block;
  width: 7px; height: 7px;
  background: var(--positive);
  border-radius: 50%;
  animation: pulse 2.4s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(39,174,96,0.4); }
  50% { opacity: 0.85; transform: scale(1.1); box-shadow: 0 0 0 5px rgba(39,174,96,0); }
}

.hero-headline {
  font-size: clamp(44px, 5.5vw, 88px);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin-bottom: var(--space-6);
}
.hero-headline em {
  font-style: normal;
  color: var(--gold);
}

.hero-sub {
  font-size: var(--text-lg);
  color: var(--ink-light);
  max-width: 42ch;
  margin-bottom: var(--space-10);
  line-height: 1.55;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-6);
}

/* ─── Calculator Card ─── */
.hero-calc-wrap {
  position: relative;
}

.calc-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-calc);
  overflow: hidden;
  border: 1px solid rgba(228, 224, 216, 0.6);
}

.calc-card-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: var(--space-5) var(--space-6) var(--space-4);
  border-bottom: 1px solid var(--border);
  background: var(--sand);
}

.calc-kicker {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--teal);
}

.calc-disclaimer {
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.02em;
}

/* Output area */
.calc-output-area {
  min-height: 120px;
  padding: var(--space-6);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sand);
  border-bottom: 1px solid var(--border);
  transition: background 300ms;
}

.calc-empty-state {
  text-align: center;
  color: var(--muted);
  font-size: var(--text-sm);
  line-height: 1.5;
}
.calc-empty-icon {
  display: block;
  font-size: 22px;
  color: var(--border);
  margin-bottom: var(--space-2);
  animation: bounceDown 2s ease-in-out infinite;
}
@keyframes bounceDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

/* Result output */
.calc-result { width: 100%; }

.calc-range-row {
  display: flex;
  align-items: baseline;
  gap: var(--space-2);
  margin-bottom: var(--space-2);
  line-height: 1;
}
.calc-range-low,
.calc-range-high {
  font-family: 'Switzer', sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}
.calc-range-sep {
  font-size: 24px;
  color: var(--muted);
  font-weight: 300;
}
.calc-range-unit {
  font-size: var(--text-sm);
  color: var(--muted);
  font-weight: 500;
  margin-left: 2px;
}

.calc-suburb-label {
  font-size: var(--text-xs);
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-3);
}

.calc-events {
  font-size: var(--text-xs);
  color: var(--teal);
  font-weight: 500;
  line-height: 1.6;
  padding: var(--space-3) var(--space-4);
  background: var(--teal-light);
  border-radius: var(--radius-sm);
  border-left: 2px solid var(--teal);
}

/* Inputs */
.calc-inputs {
  padding: var(--space-5) var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.calc-field { display: flex; flex-direction: column; gap: var(--space-2); }
.calc-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.calc-select-wrap { position: relative; }
.calc-select {
  width: 100%;
  padding: var(--space-3) var(--space-10) var(--space-3) var(--space-4);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--ink);
  font-size: var(--text-sm);
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: border-color 200ms, box-shadow 200ms;
}
.calc-select:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(27,127,116,0.08);
}
.calc-select-arrow {
  position: absolute;
  right: var(--space-4);
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  font-size: 12px;
  pointer-events: none;
}

.calc-bed-toggle {
  display: flex;
  gap: var(--space-2);
}
.bed-btn {
  flex: 1;
  padding: var(--space-3) var(--space-2);
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--ink-light);
  font-size: var(--text-sm);
  font-weight: 600;
  cursor: pointer;
  transition: all 200ms var(--ease-out);
  text-align: center;
}
.bed-btn:hover { border-color: var(--teal); color: var(--teal); }
.bed-btn.active {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--white);
}

.calc-bottom-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-6);
  border-top: 1px solid var(--border);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--teal);
  text-decoration: none;
  transition: background 200ms, color 200ms;
  background: var(--white);
}
.calc-bottom-cta:hover { background: var(--teal-light); color: var(--teal-deep); }

/* ─── Market Intelligence Strip ─── */
.intel-strip {
  display: flex;
  align-items: stretch;
  background: var(--ink);
  overflow: hidden;
  position: relative;
  height: 72px;
}

.intel-label-col {
  flex-shrink: 0;
  width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--teal);
  padding: var(--space-3);
  text-align: center;
}
.intel-label-col span {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.85);
  line-height: 1.4;
}

.intel-ticker-mask {
  flex: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  mask-image: linear-gradient(90deg, transparent 0%, black 40px, black calc(100% - 40px), transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 40px, black calc(100% - 40px), transparent 100%);
}

.intel-ticker {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: tickerScroll 45s linear infinite;
}
.intel-ticker:hover { animation-play-state: paused; }

@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.intel-card {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  padding: 0 var(--space-6);
}
.intel-event {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--white);
  font-family: 'Switzer', sans-serif;
}
.intel-period {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.intel-uplift {
  font-family: 'Switzer', sans-serif;
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -0.01em;
}
.intel-uplift em {
  font-style: normal;
  font-size: var(--text-xs);
  font-weight: 500;
  color: rgba(200,163,93,0.7);
}
.intel-ctx {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
}
.intel-sep {
  color: rgba(200,163,93,0.3);
  font-size: 8px;
  padding: 0 var(--space-2);
}

/* ─── Position Statement ─── */
.position-section { padding: var(--space-32) 0; }

.position-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--space-24) var(--space-6);
}

.position-quote {
  font-family: 'Switzer', sans-serif;
  font-size: clamp(28px, 3.5vw, 52px);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: var(--space-16);
  max-width: 22ch;
}

.position-compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: var(--space-12);
  align-items: start;
}

.compare-col-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-5);
}
.compare-against .compare-col-label { color: var(--muted); }
.compare-aurea .compare-col-label { color: var(--teal); }

.compare-col ul { display: flex; flex-direction: column; gap: var(--space-3); }
.compare-against li {
  font-size: var(--text-sm);
  color: var(--muted);
  padding-left: var(--space-5);
  position: relative;
}
.compare-against li::before {
  content: '✕';
  position: absolute; left: 0;
  color: rgba(192,57,43,0.5);
  font-size: 11px;
  top: 2px;
}
.compare-aurea li {
  font-size: var(--text-sm);
  color: var(--ink-light);
  padding-left: var(--space-5);
  position: relative;
}
.compare-aurea li::before {
  content: '→';
  position: absolute; left: 0;
  color: var(--gold);
  font-size: 12px;
  top: 1px;
}

.compare-divider {
  width: 1px;
  background: var(--border);
  align-self: stretch;
  min-height: 100px;
}

/* ─── Performance Section ─── */
.perf-section {
  background-color: var(--ink);
  background-image:
    linear-gradient(
      160deg,
      rgba(23,34,38,0.82) 0%,
      rgba(27,127,116,0.18) 50%,
      rgba(23,34,38,0.78) 100%
    ),
    url('https://images.unsplash.com/photo-1600585154526-990dced4db0d?w=1600&q=80&auto=format&fit=crop');
  background-size: cover, cover;
  background-position: center, center;
  padding: var(--space-24) 0;
  position: relative;
  overflow: hidden;
}

/* Subtle background texture */
.perf-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200,163,93,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,163,93,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.perf-kicker {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(200,163,93,0.6);
  margin-bottom: var(--space-8);
}

.perf-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(200,163,93,0.2);
  padding-top: var(--space-10);
}

.perf-stat {
  padding: 0 var(--space-8) 0 0;
  border-right: 1px solid rgba(255,255,255,0.06);
  position: relative;
}
.perf-stat:last-child { border-right: none; padding-left: var(--space-8); }
.perf-stat:nth-child(2) { padding-left: var(--space-8); }

.perf-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-bottom: var(--space-3);
}

.perf-number {
  font-family: 'Switzer', sans-serif;
  font-size: clamp(64px, 8vw, 120px);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: var(--space-4);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.03em;
}
.perf-number--static {
  font-family: 'Switzer', sans-serif;
  font-size: clamp(64px, 8vw, 120px);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: var(--space-4);
  letter-spacing: -0.03em;
}
.perf-unit {
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 400;
  color: rgba(200,163,93,0.6);
  vertical-align: baseline;
  margin-left: 4px;
}

.perf-context {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.35);
  max-width: 24ch;
  line-height: 1.5;
}

/* ─── Process Section ─── */
.process-section { padding: var(--space-32) 0; }

.process-header {
  margin-bottom: var(--space-12);
}
.process-header .section-title {
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.15;
}

.process-list { display: flex; flex-direction: column; }

.process-row {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: var(--space-8);
  align-items: start;
  padding: var(--space-8) 0;
  border-bottom: 1px solid var(--border);
  transition: background 200ms;
  position: relative;
}
.process-row:last-child { border-bottom: none; }
.process-row::before {
  content: '';
  position: absolute;
  left: -var(--space-6);
  top: 0; bottom: 0;
  width: 2px;
  background: transparent;
  transition: background 300ms;
}
.process-row:hover::before { background: var(--gold); }

.process-num {
  font-family: 'Switzer', sans-serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  color: var(--sand-deep);
  line-height: 1;
  letter-spacing: -0.02em;
  padding-top: 4px;
  transition: color 300ms;
}
.process-row:hover .process-num { color: rgba(200,163,93,0.25); }

.process-title {
  font-size: var(--text-xl);
  font-weight: 600;
  margin-bottom: var(--space-2);
  color: var(--ink);
}
.process-text {
  font-size: var(--text-base);
  color: var(--muted);
  line-height: 1.65;
  max-width: 52ch;
}

.process-timeline {
  font-family: 'Switzer', sans-serif;
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
  padding-top: 4px;
  letter-spacing: 0.01em;
}

/* ─── Coverage Section ─── */
.coverage-section { padding: var(--space-32) 0; background: var(--sand-mid); }

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-12);
}

.coverage-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  border: 1px solid var(--border);
  border-top: 2px solid var(--teal);
  transition: border-top-color 300ms, box-shadow 300ms, transform 300ms var(--ease-out);
}
.coverage-card:hover {
  border-top-color: var(--gold);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.coverage-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-4);
}

.coverage-area {
  font-family: 'Switzer', sans-serif;
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.demand-indicator {
  display: flex;
  gap: 4px;
  align-items: center;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  display: block;
}
.dot.on { background: var(--gold); }
.dot.half {
  background: linear-gradient(90deg, var(--gold) 50%, var(--border) 50%);
}

.coverage-suburbs {
  font-size: var(--text-sm);
  color: var(--muted);
  margin-bottom: var(--space-3);
  line-height: 1.55;
}
.coverage-peaks {
  font-size: var(--text-xs);
  color: var(--teal);
  font-weight: 600;
  margin-bottom: var(--space-5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.coverage-yield {
  font-size: var(--text-sm);
  color: var(--ink-light);
  padding-top: var(--space-4);
  border-top: 1px solid var(--border);
}
.coverage-yield strong {
  font-family: 'Switzer', sans-serif;
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.coverage-yield strong span {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--muted);
}
.coverage-card {
  position: relative;
  overflow: hidden;
  /* min-height ensures the card is tall enough to show the photo */
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 12px;
}

/* Background image layer */
.coverage-card-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.coverage-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease;
}

/* Zoom on hover */
.coverage-card:hover .coverage-card-img {
  transform: scale(1.05);
}

/* Dark gradient overlay — stronger at bottom so text pops */
.coverage-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0.15) 0%,
    rgba(10, 10, 10, 0.55) 45%,
    rgba(10, 10, 10, 0.82) 100%
  );
}

/* Content sits above the image */
.coverage-card-content {
  position: relative;
  z-index: 1;
  padding: 1.5rem;
}

/* Force all text inside cards to white */
.coverage-card-content .coverage-area,
.coverage-card-content .coverage-suburbs,
.coverage-card-content .coverage-peaks,
.coverage-card-content .coverage-yield,
.coverage-card-content .coverage-yield strong,
.coverage-card-content .coverage-yield span {
  color: #ffffff !important;
}

/* Demand dots stay visible on dark bg */
.coverage-card-content .dot {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
}

.coverage-card-content .dot.on {
  background: var(--gold, #c9a84c);
  border-color: var(--gold, #c9a84c);
}

/* ─── Mobile ─── */
@media (max-width: 767px) {
  .coverage-card {
    min-height: 260px;
  }
}

/* ─── Owner Results ─── */
.results-section { padding: var(--space-32) 0; }

.results-list { display: flex; flex-direction: column; }

.result-row {
  padding: var(--space-10) 0;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-8);
  align-items: end;
}
.result-row:first-child { border-top: none; }
.result-row:last-child { border-bottom: none; }

.result-quote {
  font-family: 'Switzer', sans-serif;
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.45;
  letter-spacing: -0.01em;
  max-width: 68ch;
  grid-column: 1 / -1;
  margin-bottom: var(--space-4);
}
.result-quote::before {
  content: '"';
  font-size: 1.2em;
  color: var(--gold);
  margin-right: 2px;
}
.result-quote::after {
  content: '"';
  font-size: 1.2em;
  color: var(--gold);
  margin-left: 2px;
}

.result-meta {
  font-size: var(--text-sm);
  color: var(--muted);
  grid-column: 1;
}
.result-stat {
  font-weight: 700;
  color: var(--positive);
  font-family: 'Switzer', sans-serif;
}

/* ─── Application CTA ─── */
.apply-section {
  padding: var(--space-32) 0;
  background: var(--sand-mid);
}

.apply-inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6);
}

.apply-overline {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
}

.apply-headline {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.apply-sub {
  font-size: var(--text-lg);
  color: var(--muted);
  line-height: 1.6;
  max-width: 44ch;
}

.apply-phone {
  font-size: var(--text-sm);
  color: var(--muted);
  margin-top: calc(var(--space-2) * -1);
}
.apply-phone a {
  color: var(--ink-light);
  font-weight: 600;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1px;
  transition: color 200ms, border-color 200ms;
}
.apply-phone a:hover { color: var(--ink); border-color: var(--gold); }

/* ─── Type Hero (subpages) ─── */
.hero-type {
  min-height: 40vh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-height) + var(--space-20)) 0 var(--space-16);
  background: var(--sand);
  border-bottom: 1px solid var(--border);
  position: relative;
}
.hero-type .container { position: relative; z-index: 1; }
.hero-type-kicker {
  display: flex; align-items: center; gap: var(--space-2);
  font-size: 11px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--teal);
  margin-bottom: var(--space-5);
}
.hero-type-headline {
  font-size: clamp(32px, 4.5vw, 72px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: var(--space-5);
  max-width: 20ch;
}
.hero-type-sub {
  font-size: var(--text-lg);
  color: var(--muted);
  max-width: 52ch;
  line-height: 1.55;
  margin-bottom: var(--space-6);
}
.hero-type-chips { display: flex; flex-wrap: wrap; gap: var(--space-3); }

/* ─── Footer ─── */
.site-footer { background: var(--ink); color: rgba(255,255,255,0.55); padding: var(--space-16) 0 var(--space-8); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: var(--space-8); margin-bottom: var(--space-12); }
.footer-brand p { margin-top: var(--space-4); line-height: 1.6; max-width: 28ch; font-size: var(--text-sm); }
.footer-col h4 { color: var(--white); font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: var(--space-5); }
.footer-col a { display: block; padding: var(--space-1) 0; color: rgba(255,255,255,0.5); font-size: var(--text-sm); transition: color 200ms; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: var(--space-8); border-top: 1px solid rgba(255,255,255,0.08); font-size: var(--text-xs); }
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: var(--space-3); text-align: center; }
}

/* ─── Side-by-Side (services subpage) ─── */
.side-by-side { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-6); }
.side-by-side .stop-card { background: #fef5f5; border: 1px solid #f5d5d5; border-radius: var(--radius-lg); padding: var(--space-8); }
.side-by-side .start-card { background: var(--teal-light); border: 1px solid rgba(27,127,116,0.15); border-radius: var(--radius-lg); padding: var(--space-8); }
.side-by-side h3 { font-size: var(--text-xl); margin-bottom: var(--space-5); }
.side-by-side li { padding: var(--space-2) 0; display: flex; align-items: flex-start; gap: var(--space-3); color: var(--ink-light); font-size: var(--text-sm); }
@media (max-width: 768px) { .side-by-side { grid-template-columns: 1fr; } }

/* ─── Channel Cloud ─── */
.channel-cloud { display: flex; flex-wrap: wrap; gap: var(--space-3); justify-content: center; padding: var(--space-6) 0; }

/* ─── Suburb Cloud ─── */
.suburb-cloud { display: flex; flex-wrap: wrap; gap: var(--space-3); justify-content: center; }

/* ─── Signal Box ─── */
.signal-box {
  background: linear-gradient(135deg, var(--teal-light) 0%, var(--gold-light) 100%);
  border-radius: var(--radius-lg); padding: var(--space-8);
  border: 1px solid rgba(27,127,116,0.1); text-align: center;
}
.signal-top { font-size: var(--text-sm); font-weight: 600; color: var(--teal); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: var(--space-3); }
.signal-text { font-family: 'Switzer', sans-serif; font-size: var(--text-2xl); font-weight: 600; color: var(--ink); }

/* ─── Parallax ─── */
.parallax-container { position: relative; overflow: hidden; }
.parallax-bg { position: absolute; inset: -20% 0; z-index: 0; background-size: cover; background-position: center; will-change: transform; }

/* ─── Hero full (kept for subpages using photo) ─── */
.hero {
  position: relative; min-height: 65vh; display: flex; align-items: center;
  padding: calc(var(--header-height) + var(--space-16)) 0 var(--space-16); overflow: hidden;
}
.hero-full { min-height: 100svh; }
.hero-bg { position: absolute; inset: 0; z-index: 0; background-size: cover; background-position: center; }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(23,34,38,0.5) 0%, rgba(23,34,38,0.3) 50%, rgba(23,34,38,0.6) 100%); }

/* ─── Legal ─── */
.legal-doc { max-width: 800px; margin: 0 auto; padding: var(--space-8); font-size: var(--text-base); line-height: 1.8; }
.legal-doc h1 { font-size: var(--text-3xl); margin-bottom: var(--space-6); text-align: center; }
.legal-doc h2 { font-size: var(--text-xl); margin: var(--space-8) 0 var(--space-4); padding-bottom: var(--space-2); border-bottom: 2px solid var(--teal-light); }
.legal-doc h3 { font-size: var(--text-lg); margin: var(--space-6) 0 var(--space-3); }
.legal-doc p { margin-bottom: var(--space-4); }
.legal-doc ul, .legal-doc ol { margin-bottom: var(--space-4); padding-left: var(--space-6); }
.legal-doc li { margin-bottom: var(--space-2); list-style: disc; }
.legal-doc ol li { list-style: decimal; }
.legal-doc .signature-block { margin-top: var(--space-12); display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-8); }
.legal-doc .sig-line { border-bottom: 1px solid var(--ink); padding-bottom: var(--space-2); margin-bottom: var(--space-2); margin-top: var(--space-8); }
.legal-doc .sig-label { font-size: var(--text-sm); color: var(--muted); }
@media print {
  .site-header, .site-footer, .nav-toggle { display: none !important; }
  body { background: white; font-size: 11pt; }
  .legal-doc { max-width: 100%; padding: 0; }
  .print-header { display: flex !important; align-items: center; gap: 1rem; margin-bottom: 2rem; padding-bottom: 1rem; border-bottom: 2px solid #1b7f74; }
}
.print-header { display: none; }
.print-form .form-row { display: grid; grid-template-columns: 1fr 2fr; gap: var(--space-4); align-items: center; padding: var(--space-3) 0; border-bottom: 1px solid var(--border); }
.print-form .field-label { font-weight: 600; font-size: var(--text-sm); }
.print-form .field-value { border-bottom: 1px dotted var(--muted); min-height: 24px; }
.print-form .checkbox-group { display: flex; flex-wrap: wrap; gap: var(--space-4); }
.print-form .checkbox-item { display: flex; align-items: center; gap: var(--space-2); }
.print-form .checkbox-box { width: 16px; height: 16px; border: 1.5px solid var(--ink); border-radius: 3px; flex-shrink: 0; }

/* ─── Admin ─── */
.admin-body { background: #0f1419; color: #e4e8eb; font-family: 'Satoshi', -apple-system, sans-serif; }
.admin-body .site-header { background: rgba(15,20,25,0.9); border-bottom-color: rgba(255,255,255,0.08); }
.admin-header { background: #161b22; border-bottom: 1px solid rgba(255,255,255,0.08); padding: var(--space-4) var(--space-6); }
.admin-tabs { display: flex; gap: var(--space-2); overflow-x: auto; padding: var(--space-4) var(--space-6); border-bottom: 1px solid rgba(255,255,255,0.08); background: #161b22; }
.admin-tab { padding: var(--space-2) var(--space-4); border-radius: var(--radius-pill); font-size: var(--text-sm); font-weight: 500; color: rgba(255,255,255,0.5); white-space: nowrap; transition: all 200ms; cursor: pointer; }
.admin-tab:hover { color: rgba(255,255,255,0.8); background: rgba(255,255,255,0.05); }
.admin-tab.active { color: var(--teal); background: rgba(27,127,116,0.15); }
.admin-content { max-width: 900px; margin: 0 auto; padding: var(--space-8) var(--space-6); }
.admin-field { margin-bottom: var(--space-5); }
.admin-field label { display: block; font-size: var(--text-xs); font-weight: 600; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: var(--space-2); }
.admin-field input, .admin-field textarea, .admin-field select { width: 100%; padding: var(--space-3) var(--space-4); background: #1c2128; border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-sm); color: #e4e8eb; font-size: var(--text-base); transition: border-color 200ms; }
.admin-field input:focus, .admin-field textarea:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(27,127,116,0.2); }
.admin-field input[type="color"] { height: 44px; padding: var(--space-1); cursor: pointer; }
.admin-field textarea { min-height: 80px; resize: vertical; }
.admin-actions { display: flex; gap: var(--space-4); padding: var(--space-6); border-top: 1px solid rgba(255,255,255,0.08); position: sticky; bottom: 0; background: #0f1419; }
.admin-btn { padding: var(--space-3) var(--space-6); border-radius: var(--radius-pill); font-weight: 600; font-size: var(--text-sm); transition: all 200ms; }
.admin-btn-primary { background: var(--teal); color: var(--white); }
.admin-btn-primary:hover { background: var(--teal-deep); }
.admin-btn-secondary { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.7); }
.admin-btn-secondary:hover { background: rgba(255,255,255,0.15); }
.admin-section { display: none; }
.admin-section.active { display: block; }

/* ─── Utilities ─── */
.text-center { text-align: center; }
.text-white { color: var(--white); }
.text-gold  { color: var(--gold); }
.text-muted { color: var(--muted); }
.text-teal  { color: var(--teal); }
.mt-2  { margin-top: var(--space-2); }
.mt-4  { margin-top: var(--space-4); }
.mt-6  { margin-top: var(--space-6); }
.mt-8  { margin-top: var(--space-8); }
.mt-12 { margin-top: var(--space-12); }
.mb-4  { margin-bottom: var(--space-4); }
.mb-6  { margin-bottom: var(--space-6); }
.mb-8  { margin-bottom: var(--space-8); }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ─── Responsive ─── */
@media (max-width: 1100px) {
  .hero-split-inner { grid-template-columns: 1fr 440px; gap: var(--space-12); }
}
@media (max-width: 900px) {
  .hero-split { padding-top: calc(var(--header-height) + var(--space-12)); padding-bottom: var(--space-16); }
  .hero-split-inner { grid-template-columns: 1fr; gap: var(--space-10); padding: 0 var(--space-6); }
  .hero-headline { font-size: clamp(40px, 8vw, 64px); }
  .perf-grid { grid-template-columns: 1fr; gap: var(--space-10); border-top: none; }
  .perf-stat { border-right: none; padding: 0; border-bottom: 1px solid rgba(255,255,255,0.06); padding-bottom: var(--space-10); }
  .perf-stat:last-child { border-bottom: none; padding-bottom: 0; }
  .perf-stat:nth-child(2) { padding-left: 0; }
  .coverage-grid { grid-template-columns: 1fr; }
  .position-compare { grid-template-columns: 1fr; gap: var(--space-8); }
  .compare-divider { display: none; }
  .process-row { grid-template-columns: 40px 1fr; gap: var(--space-5); }
  .process-timeline { grid-column: 2; margin-top: var(--space-2); }
  .result-row { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .intel-strip { height: auto; min-height: 60px; }
  .section { padding: var(--space-20) 0; }
  .apply-section { padding: var(--space-16) 0; }
  .hero-ctas { flex-direction: column; align-items: flex-start; gap: var(--space-4); }
}

/* ─── Reduced Motion ─── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .rule-line { transform: scaleX(1); }
  .intel-ticker { animation: none; }
  .kicker-pulse { animation: none; }
  .cursor-dot { display: none; }
}

/* ─── CTA Panel — Ink (subpages) ─── */
.cta-panel--ink {
  background: var(--ink);
  padding: var(--space-20) 0;
}
.cta-panel--ink .cta-panel-inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}
.cta-panel--ink .cta-panel-inner h2 {
  color: var(--white);
  font-size: var(--text-3xl);
  letter-spacing: -0.03em;
  margin-bottom: var(--space-4);
}
.cta-panel--ink .cta-panel-inner p {
  color: rgba(255,255,255,0.5);
  font-size: var(--text-lg);
  margin-bottom: var(--space-8);
}

/* ─── Compare check (why-us comparison table) ─── */
.compare-check {
  color: var(--gold);
  font-weight: 700;
  margin-right: var(--space-1);
  display: inline-block;
}
.compare-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* ─── Fit Callout (why-us) ─── */
.fit-callout {
  background: var(--sand-mid);
  border-radius: var(--radius-lg);
  padding: var(--space-10) var(--space-12);
  border: 1px solid var(--border);
}
.fit-callout h2 {
  font-size: var(--text-2xl);
  letter-spacing: -0.025em;
  margin-bottom: var(--space-6);
}
.fit-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  list-style: none;
}
.fit-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  color: var(--ink-light);
  font-size: var(--text-base);
  padding: var(--space-1) 0;
}
.fit-list li::before {
  content: '—';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
@media (max-width: 768px) {
  .fit-callout { padding: var(--space-8) var(--space-6); }
}

/* ─── Yield Outcomes (technology page) ─── */
.yield-outcomes {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
}
.yield-outcome-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  border-bottom: 1px solid var(--border);
}
.yield-outcome-row:last-child { border-bottom: none; }
.yield-outcome-capability {
  padding: var(--space-6) var(--space-7);
  background: var(--sand-mid);
  border-right: 1px solid var(--border);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--ink);
  display: flex;
  align-items: center;
  line-height: 1.45;
}
.yield-outcome-result {
  padding: var(--space-6) var(--space-7);
  color: var(--ink-light);
  line-height: 1.65;
  font-size: var(--text-base);
}
.yield-outcome-result strong { color: var(--ink); font-weight: 600; }
@media (max-width: 640px) {
  .yield-outcome-row { grid-template-columns: 1fr; }
  .yield-outcome-capability {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding-bottom: var(--space-3);
    background: var(--sand);
  }
}

/* ─── Yield Table (areas page) ─── */
.yield-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
}
.yield-table th {
  background: var(--ink);
  color: rgba(255,255,255,0.65);
  font-family: 'Switzer', sans-serif;
  font-weight: 600;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: var(--space-4) var(--space-6);
  text-align: left;
}
.yield-table td {
  padding: var(--space-5) var(--space-6);
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.yield-table tbody tr:last-child td { border-bottom: none; }
.yield-table tbody tr:hover { background: var(--sand); transition: background 150ms; }
.yield-cluster { font-weight: 600; color: var(--ink); font-size: var(--text-base); line-height: 1.2; }
.yield-suburbs { font-size: var(--text-xs); color: var(--muted); margin-top: 3px; line-height: 1.4; }
.yield-avg {
  font-family: 'Switzer', sans-serif;
  font-weight: 700;
  color: var(--gold);
  font-size: var(--text-base);
  white-space: nowrap;
}
.yield-event { line-height: 1.5; }
.yield-event-name { font-weight: 500; color: var(--ink-light); font-size: var(--text-sm); }
.yield-event-uplift { color: var(--positive); font-size: var(--text-xs); font-weight: 700; display: block; margin-top: 1px; }
.yield-demand { display: flex; gap: 3px; align-items: center; }
.yield-table-note {
  font-size: var(--text-xs);
  color: var(--muted);
  margin-top: var(--space-4);
}
@media (max-width: 768px) {
  .yield-table th, .yield-table td { padding: var(--space-3) var(--space-4); }
  .yield-table th:nth-child(3), .yield-table td:nth-child(3) { display: none; }
}

/* ─── Mobile calculator nudge (index.html hero, mobile only) ─── */
.hero-calc-nudge {
  display: none;
}
@media (max-width: 767px) {
  .hero-calc-nudge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--teal);
    margin-top: var(--space-6);
    text-decoration: none;
    border: none;
    background: none;
    cursor: pointer;
    padding: 0;
    opacity: 0.8;
    transition: opacity 200ms;
  }
  .hero-calc-nudge:hover { opacity: 1; color: var(--teal); }
  .hero-calc-nudge svg { flex-shrink: 0; }
}

/* ─── Form card (contact/apply page) ─── */
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-10) var(--space-12);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.form-card h2 {
  font-size: var(--text-2xl);
  letter-spacing: -0.025em;
  margin-bottom: var(--space-3);
}
.form-card .form-intro {
  color: var(--muted);
  font-size: var(--text-sm);
  margin-bottom: var(--space-8);
  line-height: 1.55;
}
.btn-full { width: 100%; margin-top: var(--space-2); }
.form-disclaimer {
  text-align: center;
  font-size: var(--text-xs);
  color: var(--muted);
  margin-top: var(--space-4);
}
@media (max-width: 768px) {
  .form-card { padding: var(--space-8) var(--space-6); }
}

/* ─── Legal Document Brand Updates ─── */
.legal-doc h1 {
  font-size: var(--text-3xl);
  letter-spacing: -0.03em;
  color: var(--ink);
  text-align: center;
  margin-bottom: var(--space-4);
}
.legal-doc h2 {
  border-bottom-color: var(--gold-rule);
  color: var(--ink);
}
.legal-doc h2::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--gold);
  margin-bottom: var(--space-4);
}
.legal-doc strong { color: var(--ink); }
.legal-doc .signature-block { border-top: 1px solid var(--border); padding-top: var(--space-8); }
.legal-doc .sig-line { border-bottom-color: var(--gold); }
.print-header .badge-logo { width: 48px; height: 48px; flex-shrink: 0; }
.print-form .field-label { color: var(--ink); }
.print-form .checkbox-box { border-color: var(--gold); }
@media print {
  .legal-doc h2::before { background: #c8a35d; }
  .legal-doc { font-size: 10.5pt; }
}
/* ─── Results Section Background Photo ─── */
.results-section {
  position: relative;
  overflow: hidden;
}

.results-bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.results-bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}

.results-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 253, 249, 0.96) 0%,
    rgba(255, 253, 249, 0.92) 50%,
    rgba(255, 253, 249, 0.80) 100%
  );
}

/* Push all results content above the bg image */
.results-section .rule-line,
.results-section .container {
  position: relative;
  z-index: 1;
}
