/* ------------------------------------------------------------------
       TOKENS
    ------------------------------------------------------------------ */
    :root {
      /* brand */
      --navy-900: #08182F;
      --navy-800: #0B2545;
      --navy-700: #13315C;
      --navy-600: #1E3A6B;
      --navy-500: #2C4E85;

      /* accents */
      --orange-500: #F97316;   /* safety orange CTA */
      --orange-400: #FB923C;
      --orange-100: #FFEDD5;

      /* neutrals */
      --paper:   #F7F9FC;
      --white:   #FFFFFF;
      --ink-900: #0F172A;
      --ink-700: #334155;
      --ink-500: #64748B;
      --ink-300: #CBD5E1;
      --line:    #E2E8F0;
      --line-soft: #EEF2F7;

      /* status */
      --success: #16A34A;

      /* type */
      --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
      --font-display: 'Space Grotesk', 'Inter', system-ui, sans-serif;
      --font-mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;

      /* layout */
      --radius-sm: 8px;
      --radius:    14px;
      --radius-lg: 22px;
      --radius-xl: 28px;

      --shadow-sm: 0 1px 2px rgba(8, 24, 47, 0.05);
      --shadow:    0 10px 30px -12px rgba(8, 24, 47, 0.18);
      --shadow-lg: 0 30px 60px -24px rgba(8, 24, 47, 0.35);

      --container: 1200px;
    }

    /* ------------------------------------------------------------------
       GLASSMORPHISM HELPERS
    ------------------------------------------------------------------ */
    .glass-dark {
      background: rgba(255, 255, 255, 0.07);
      backdrop-filter: blur(18px) saturate(1.4);
      -webkit-backdrop-filter: blur(18px) saturate(1.4);
      border: 1px solid rgba(255, 255, 255, 0.14);
      box-shadow:
        0 30px 60px -24px rgba(8, 24, 47, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    }
    .glass-light {
      background: rgba(255, 255, 255, 0.72);
      backdrop-filter: blur(16px) saturate(1.6);
      -webkit-backdrop-filter: blur(16px) saturate(1.6);
      border: 1px solid rgba(255, 255, 255, 0.9);
      box-shadow:
        0 30px 60px -24px rgba(8, 24, 47, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    }
    /* graceful fallback if backdrop-filter isn't supported */
    @supports not ((backdrop-filter: blur(10px)) or (-webkit-backdrop-filter: blur(10px))) {
      .glass-dark  { background: rgba(11, 37, 69, 0.85); }
      .glass-light { background: rgba(255, 255, 255, 0.94); }
    }

    /* dust-particle canvas (pinned to the viewport, ignores pointer) */
    #dust {
      position: fixed;
      inset: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: 1;
    }
    @media (prefers-reduced-motion: reduce) {
      #dust { display: none; }
    }

    /* ------------------------------------------------------------------
       RESET
    ------------------------------------------------------------------ */
    *, *::before, *::after { box-sizing: border-box; }
    html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: var(--font-body);
      color: var(--ink-900);
      background: var(--paper);
      line-height: 1.55;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }
    img, svg { display: block; max-width: 100%; }
    a { color: inherit; text-decoration: none; }
    button { font: inherit; cursor: pointer; }
    h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; letter-spacing: -0.015em; line-height: 1.1; margin: 0; }

    /* utilities */
    .container { max-width: var(--container); margin-inline: auto; padding-inline: clamp(20px, 4vw, 40px); }
    .eyebrow {
      display: inline-flex; align-items: center; gap: 10px;
      font-family: var(--font-mono);
      font-size: 12px; font-weight: 500; letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--ink-500);
    }
    .eyebrow::before {
      content: ""; width: 8px; height: 8px; border-radius: 50%;
      background: var(--orange-500); box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.18);
    }
    .eyebrow--on-dark { color: rgba(255, 255, 255, 0.7); }

    /* ------------------------------------------------------------------
       TOP BAR + NAV
    ------------------------------------------------------------------ */
    .topbar {
      background: var(--navy-900);
      color: rgba(255, 255, 255, 0.8);
      font-size: 13px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }
    .topbar__inner {
      display: flex; align-items: center; justify-content: space-between;
      padding-block: 10px; gap: 20px; flex-wrap: wrap;
    }
    .topbar__meta { display: flex; gap: 18px; flex-wrap: wrap; align-items: center; }
    .topbar__meta span,
    .topbar__phone { display: inline-flex; gap: 8px; align-items: center; line-height: 1; }
    .topbar__meta svg { width: 14px; height: 14px; opacity: 0.75; flex-shrink: 0; }
    .topbar__phone {
      color: white; font-weight: 600; font-variant-numeric: tabular-nums;
    }
    .topbar__phone svg { opacity: 1; color: var(--orange-400); }

    .nav {
      position: sticky; top: 0; z-index: 50;
      background: rgba(247, 249, 252, 0.72);
      backdrop-filter: saturate(1.8) blur(18px);
      -webkit-backdrop-filter: saturate(1.8) blur(18px);
      border-bottom: 1px solid rgba(226, 232, 240, 0.8);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
    }
    @supports not ((backdrop-filter: blur(10px)) or (-webkit-backdrop-filter: blur(10px))) {
      .nav { background: rgba(247, 249, 252, 0.98); }
    }
    .nav__inner {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      padding-block: 14px;
      gap: 24px;
    }
    .nav__inner > .nav__brand { justify-self: start; }
    .nav__inner > .nav__links { justify-self: center; }
    .nav__inner > .nav__cta { justify-self: end; }
    .nav__brand { display: flex; align-items: center; gap: 14px; }
    .nav__brand img { width: 56px; height: 56px; border-radius: 50%; background: white; }
    .nav__brand-text { display: flex; flex-direction: column; line-height: 1.1; }
    .nav__brand-text strong { font-family: var(--font-display); font-weight: 600; font-size: 15px; color: var(--navy-800); letter-spacing: -0.01em; }
    .nav__brand-text small { font-size: 11px; color: var(--ink-500); letter-spacing: 0.04em; text-transform: uppercase; }

    .nav__links { display: flex; align-items: center; gap: 4px; line-height: 1; }
    .nav__links a {
      display: inline-flex; align-items: center;
      padding: 10px 14px; border-radius: 10px; font-size: 14px; font-weight: 500;
      color: var(--ink-700); line-height: 1;
      transition: background 0.15s, color 0.15s;
    }
    .nav__links a:hover { background: var(--line-soft); color: var(--navy-800); }

    .nav__cta { display: flex; align-items: center; gap: 10px; }

    @media (max-width: 860px) {
      .nav__links { display: none; }
    }

    /* ------------------------------------------------------------------
       BUTTONS
    ------------------------------------------------------------------ */
    .btn {
      display: inline-flex; align-items: center; justify-content: center; gap: 10px;
      padding: 12px 18px; border-radius: 10px; font-size: 14px; font-weight: 600;
      border: 1px solid transparent; transition: transform 0.1s, box-shadow 0.15s, background 0.15s;
      white-space: nowrap; line-height: 1;
    }
    .btn svg { flex-shrink: 0; }
    .btn:hover { transform: translateY(-1px); }
    .btn--primary { background: var(--orange-500); color: white; box-shadow: 0 8px 24px -10px rgba(249, 115, 22, 0.6); }
    .btn--primary:hover { background: var(--orange-400); }
    .btn--ghost { background: transparent; color: var(--navy-800); border-color: var(--line); }
    .btn--ghost:hover { border-color: var(--navy-800); }
    .btn--ghost-dark { background: transparent; color: white; border-color: rgba(255, 255, 255, 0.22); }
    .btn--ghost-dark:hover { border-color: rgba(255, 255, 255, 0.6); }
    .btn--lg { padding: 15px 22px; font-size: 15px; }
    .btn svg { width: 16px; height: 16px; }

    /* ------------------------------------------------------------------
       HERO
    ------------------------------------------------------------------ */
    .hero {
      position: relative; overflow: hidden;
      background: linear-gradient(180deg, #0B2545 0%, #0E2A54 55%, #0B2545 100%);
      color: white;
      padding-block: clamp(60px, 9vw, 120px);
    }
    .hero::before {
      /* subtle technical grid */
      content: "";
      position: absolute; inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
      background-size: 56px 56px;
      mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
      -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
      pointer-events: none;
    }
    .hero::after {
      /* orange spotlight */
      content: "";
      position: absolute; right: -200px; top: -200px; width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(249, 115, 22, 0.22), transparent 60%);
      pointer-events: none;
    }
    .hero__inner {
      position: relative; z-index: 2;
      display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(40px, 6vw, 80px);
      align-items: center;
    }
    @media (max-width: 960px) {
      .hero__inner { grid-template-columns: 1fr; }
    }

    .hero h1 {
      font-size: clamp(38px, 5.4vw, 68px);
      letter-spacing: -0.025em;
      margin-block: 22px 18px;
      color: white;
    }
    .hero h1 em {
      font-style: normal;
      background: linear-gradient(90deg, #FDBA74, #F97316);
      -webkit-background-clip: text; background-clip: text;
      color: transparent;
    }
    .hero__lede {
      font-size: clamp(16px, 1.4vw, 18px);
      color: rgba(255, 255, 255, 0.78);
      max-width: 54ch;
    }
    .hero__cta { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }
    .hero__trust {
      display: flex; gap: clamp(16px, 3vw, 40px); margin-top: 44px; flex-wrap: wrap;
    }
    .hero__trust-item { display: flex; align-items: center; gap: 10px; font-size: 13px; color: rgba(255,255,255,0.8); }
    .hero__trust-item svg { width: 18px; height: 18px; color: var(--orange-400); }

    /* right-hand visual composition */
    .hero__visual { position: relative; aspect-ratio: 4 / 5; max-width: 520px; margin-inline: auto; width: 100%; }
    .hero__card-photo {
      position: absolute; inset: 0;
      border-radius: var(--radius-xl);
      overflow: hidden;
      box-shadow: var(--shadow-lg);
      border: 1px solid rgba(255,255,255,0.08);
    }
    .hero__card-photo img { width: 100%; height: 100%; object-fit: cover; }
    .hero__card-photo::after {
      content: "";
      position: absolute; inset: 0;
      background: linear-gradient(180deg, transparent 40%, rgba(8, 24, 47, 0.6) 100%);
    }
    .hero__photo-meta {
      position: absolute; left: 20px; bottom: 20px; right: 20px;
      display: flex; align-items: center; justify-content: space-between; gap: 12px;
      color: white; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
    }
    .hero__photo-meta span {
      background: rgba(8, 24, 47, 0.35);
      backdrop-filter: blur(14px) saturate(1.4);
      -webkit-backdrop-filter: blur(14px) saturate(1.4);
      padding: 7px 12px; border-radius: 8px;
      border: 1px solid rgba(255, 255, 255, 0.14);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    }

    .hero__badge {
      position: absolute;
      left: -32px; bottom: 72px;
      color: white;
      padding: 14px 18px; border-radius: var(--radius);
      display: flex; align-items: center; gap: 14px;
      min-width: 250px;
    }
    .hero__badge img {
      width: 58px; height: 58px; border-radius: 50%;
      background: white;
      box-shadow: 0 6px 16px -4px rgba(0, 0, 0, 0.35);
    }
    .hero__badge-text strong { display: block; font-family: var(--font-display); font-size: 14px; line-height: 1.2; color: white; }
    .hero__badge-text small { display: block; font-size: 11px; color: rgba(255, 255, 255, 0.65); margin-top: 3px; font-family: var(--font-mono); letter-spacing: 0.05em; text-transform: uppercase; }

    .hero__datachip {
      position: absolute; right: -20px; top: 40px;
      color: white;
      padding: 14px 16px; border-radius: var(--radius);
      font-family: var(--font-mono); font-size: 12px;
    }
    .hero__datachip-label { font-size: 10px; color: rgba(255, 255, 255, 0.6); letter-spacing: 0.12em; text-transform: uppercase; }
    .hero__datachip-value { font-size: 14px; color: white; margin-top: 6px; display: flex; align-items: center; gap: 8px; }
    .hero__datachip-value .dot {
      width: 8px; height: 8px; border-radius: 50%;
      background: #22C55E;
      box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.25), 0 0 8px rgba(34, 197, 94, 0.6);
      animation: pulse 2.4s ease-in-out infinite;
    }
    @keyframes pulse {
      0%, 100% { box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.25), 0 0 8px rgba(34, 197, 94, 0.6); }
      50%      { box-shadow: 0 0 0 5px rgba(34, 197, 94, 0.08), 0 0 12px rgba(34, 197, 94, 0.9); }
    }

    @media (max-width: 540px) {
      .hero__badge { left: 12px; bottom: 60px; min-width: 180px; }
      .hero__datachip { right: 8px; top: 16px; }
    }

    /* ------------------------------------------------------------------
       SECTION: WHY IT MATTERS
    ------------------------------------------------------------------ */
    section { padding-block: clamp(70px, 9vw, 120px); }
    .section__head { max-width: 780px; margin-bottom: 48px; }
    .section__head h2 { font-size: clamp(28px, 3.6vw, 44px); color: var(--navy-800); margin-block: 14px 14px; }
    .section__head p { color: var(--ink-700); font-size: 17px; margin: 0; max-width: 60ch; }

    .stats {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 18px; margin-bottom: 60px;
    }
    @media (max-width: 820px) { .stats { grid-template-columns: 1fr; } }

    .stat-card {
      background: white;
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      padding: 28px;
      position: relative; overflow: hidden;
    }
    .stat-card::before {
      content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
      background: linear-gradient(90deg, var(--orange-500), transparent 80%);
    }
    .stat-card__label { font-family: var(--font-mono); font-size: 11px; color: var(--ink-500); text-transform: uppercase; letter-spacing: 0.12em; }
    .stat-card__value {
      font-family: var(--font-display); font-size: clamp(44px, 5vw, 58px);
      color: var(--navy-800); margin-block: 8px 4px; letter-spacing: -0.03em;
      font-variant-numeric: tabular-nums;
    }
    .stat-card__value small { font-size: 0.45em; color: var(--ink-500); font-weight: 400; margin-left: 6px; }
    .stat-card__desc { font-size: 14px; color: var(--ink-700); line-height: 1.55; }
    .stat-card__src { margin-top: 14px; font-size: 11px; color: var(--ink-500); font-family: var(--font-mono); }

    .why-grid {
      display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: start;
    }
    @media (max-width: 900px) { .why-grid { grid-template-columns: 1fr; } }

    .why-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
    .why-list li {
      background: white; border: 1px solid var(--line); border-radius: var(--radius);
      padding: 20px 22px; display: grid; grid-template-columns: auto 1fr; gap: 16px;
    }
    .why-list .num {
      width: 32px; height: 32px; border-radius: 8px; display: grid; place-items: center;
      background: var(--navy-800); color: white; font-family: var(--font-mono); font-size: 13px; font-weight: 600;
    }
    .why-list strong { display: block; color: var(--navy-800); font-family: var(--font-display); font-size: 16px; margin-bottom: 4px; }
    .why-list p { margin: 0; font-size: 14px; color: var(--ink-700); line-height: 1.55; }

    .why-callout {
      position: sticky; top: 100px;
      background: linear-gradient(160deg, rgba(19, 49, 92, 0.95) 0%, rgba(8, 24, 47, 0.9) 100%);
      color: white;
      border-radius: var(--radius-lg);
      padding: 32px; overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.08);
      box-shadow:
        0 30px 60px -24px rgba(8, 24, 47, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    }
    .why-callout::before {
      content: ""; position: absolute; inset: 0;
      background:
        radial-gradient(circle at 90% 10%, rgba(249, 115, 22, 0.28), transparent 55%),
        radial-gradient(circle at 10% 90%, rgba(59, 130, 246, 0.12), transparent 60%);
      pointer-events: none;
    }
    .why-callout h3 { color: white; font-size: 22px; margin-bottom: 10px; position: relative; }
    .why-callout p { color: rgba(255,255,255,0.78); margin: 0 0 18px 0; font-size: 14px; position: relative; }
    .why-callout ul { list-style: none; padding: 0; margin: 0 0 22px 0; display: grid; gap: 8px; position: relative; }
    .why-callout li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: rgba(255,255,255,0.9); }
    .why-callout li svg { width: 18px; height: 18px; color: var(--orange-400); flex-shrink: 0; margin-top: 1px; }

    /* ------------------------------------------------------------------
       SECTION: SERVICES
    ------------------------------------------------------------------ */
    .services { background: white; border-block: 1px solid var(--line); }
    .services-grid {
      display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
    }
    @media (max-width: 820px) { .services-grid { grid-template-columns: 1fr; } }

    .svc {
      background: var(--paper);
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      padding: 32px;
      display: flex; flex-direction: column;
      transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
    }
    .svc:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-color: var(--ink-300); }
    .svc__icon {
      width: 44px; height: 44px; border-radius: 10px;
      background: var(--navy-800); color: white;
      display: grid; place-items: center; margin-bottom: 20px;
    }
    .svc__icon svg { width: 22px; height: 22px; }
    .svc h3 { font-size: 20px; color: var(--navy-800); margin-bottom: 10px; }
    .svc > p { color: var(--ink-700); font-size: 14px; margin: 0 0 18px 0; }
    .svc ul { list-style: none; padding: 0; margin: 0 0 20px 0; display: grid; gap: 8px; }
    .svc ul li { font-size: 13.5px; color: var(--ink-700); display: flex; gap: 8px; align-items: flex-start; }
    .svc ul li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--orange-500); flex-shrink: 0; margin-top: 8px; }
    .svc__trigger {
      margin-top: auto;
      padding: 14px 16px; border-radius: 10px;
      background: linear-gradient(180deg, #F97316 0%, #EA580C 100%);
      border: 1px solid rgba(255, 255, 255, 0.14);
      font-size: 12.5px;
      color: rgba(255, 255, 255, 0.94);
      line-height: 1.55;
      display: flex; gap: 10px; align-items: flex-start;
      position: relative; overflow: hidden;
      box-shadow: 0 12px 24px -16px rgba(234, 88, 12, 0.45);
    }
    .svc__trigger::before {
      content: "";
      position: absolute; inset: 0;
      background:
        radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.12), transparent 50%),
        radial-gradient(circle at 0% 100%, rgba(0, 0, 0, 0.08), transparent 50%);
      pointer-events: none;
    }
    .svc__trigger > * { position: relative; z-index: 1; }
    .svc__trigger svg { stroke: white; }
    .svc__trigger strong {
      color: white;
      font-family: var(--font-display);
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      display: block;
      margin-bottom: 3px;
      font-weight: 600;
    }

    /* ------------------------------------------------------------------
       SECTION: LOCATIONS
    ------------------------------------------------------------------ */
    .locations {
      background: linear-gradient(180deg, var(--paper) 0%, #EAF0F8 100%);
    }
    .loc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
    @media (max-width: 820px) { .loc-grid { grid-template-columns: 1fr; } }

    .loc-card {
      background: white; border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      padding: 28px;
      position: relative; overflow: hidden;
    }
    .loc-card__coords { font-family: var(--font-mono); font-size: 11px; color: var(--ink-500); letter-spacing: 0.06em; }
    .loc-card h3 { font-size: 28px; color: var(--navy-800); margin-block: 6px 10px; }
    .loc-card p { font-size: 14px; color: var(--ink-700); margin: 0 0 18px 0; }
    .loc-card__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; padding-top: 18px; border-top: 1px solid var(--line); }
    .loc-card__stat { font-family: var(--font-mono); }
    .loc-card__stat small { display: block; font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-500); margin-bottom: 4px; }
    .loc-card__stat strong { font-size: 14px; color: var(--navy-800); font-weight: 600; }

    .loc-note {
      margin-top: 32px; padding: 20px; background: white;
      border: 1px dashed var(--ink-300); border-radius: var(--radius);
      font-size: 14px; color: var(--ink-700);
      display: flex; gap: 14px; align-items: center;
    }
    .loc-note svg { width: 22px; height: 22px; color: var(--orange-500); flex-shrink: 0; }

    /* Row divider labels between sections of location cards */
    .loc-row-label {
      margin-top: 32px;
      margin-bottom: 14px;
      display: flex;
      align-items: center;
      gap: 16px;
    }
    .loc-row-label .eyebrow {
      white-space: nowrap;
    }
    .loc-row-label::after {
      content: "";
      flex: 1;
      height: 1px;
      background: var(--line);
    }
    .loc-row-label:first-of-type { margin-top: 0; }

    /* Dedicated Brisbane (specialised quote) card */
    .loc-brisbane {
      margin-top: 24px;
      background: linear-gradient(135deg, #0B2545 0%, #13315C 100%);
      color: white;
      border-radius: var(--radius-lg);
      overflow: hidden;
      position: relative;
      box-shadow: var(--shadow);
    }
    .loc-brisbane::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse at top right, rgba(249, 115, 22, 0.18), transparent 50%);
      pointer-events: none;
    }
    .loc-brisbane__inner {
      position: relative;
      display: grid;
      grid-template-columns: auto 1fr auto;
      align-items: center;
      gap: 32px;
      padding: 28px 32px;
    }
    @media (max-width: 860px) {
      .loc-brisbane__inner { grid-template-columns: 1fr; gap: 18px; padding: 24px; }
    }
    .loc-brisbane__meta { display: flex; flex-direction: column; gap: 10px; align-items: flex-start; min-width: 150px; }
    .loc-brisbane__tag {
      display: inline-flex; align-items: center;
      padding: 6px 12px;
      border-radius: 999px;
      background: rgba(249, 115, 22, 0.22);
      color: var(--orange-400);
      font-family: var(--font-mono);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      border: 1px solid rgba(249, 115, 22, 0.35);
    }
    .loc-brisbane__meta .loc-card__coords {
      font-family: var(--font-mono);
      color: rgba(255, 255, 255, 0.55);
      font-size: 12px;
      letter-spacing: 0.04em;
    }
    .loc-brisbane__body h3 {
      font-family: var(--font-display);
      font-size: 28px;
      color: white;
      margin: 0 0 8px 0;
    }
    .loc-brisbane__body p {
      font-size: 14px;
      color: rgba(255, 255, 255, 0.78);
      margin: 0;
      line-height: 1.6;
      max-width: 60ch;
    }
    .loc-brisbane__actions {
      display: flex; flex-direction: column; gap: 10px; align-items: stretch;
      min-width: 220px;
    }
    @media (max-width: 860px) {
      .loc-brisbane__actions { flex-direction: row; flex-wrap: wrap; }
    }
    .loc-brisbane__actions .loc-card__link {
      color: rgba(255, 255, 255, 0.85);
      justify-content: flex-start;
    }
    .loc-brisbane__actions .loc-card__link:hover { color: var(--orange-400); }

    /* Extended coverage block (retained for compatibility — no longer used on homepage) */
    .loc-extended {
      margin-top: 40px;
      display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
      background: var(--line);
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
    }
    @media (max-width: 820px) { .loc-extended { grid-template-columns: 1fr; } }
    .loc-extended__col {
      background: white;
      padding: 28px 28px 30px;
      display: flex; flex-direction: column; gap: 12px;
    }
    .loc-extended__col:last-child { background: #FFF8F1; }
    .loc-extended__col h3 {
      font-family: var(--font-display);
      font-size: 22px;
      color: var(--navy-800);
      line-height: 1.25;
      margin: 0;
    }
    .loc-extended__col p {
      font-size: 14px;
      color: var(--ink-700);
      line-height: 1.6;
      margin: 0;
    }
    .loc-extended__col p strong { color: var(--navy-800); font-weight: 600; }
    .loc-extended__cta {
      margin-top: 8px;
      align-self: flex-start;
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 14px; font-weight: 600;
      color: var(--orange-500);
      transition: gap 0.15s;
    }
    .loc-extended__cta svg { width: 16px; height: 16px; }
    .loc-extended__cta:hover { gap: 12px; }

    /* ------------------------------------------------------------------
       SECTION: CONTACT
    ------------------------------------------------------------------ */
    .contact { background: var(--white); }
    .contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: start; }
    @media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

    form.quote-form {
      background: var(--paper); border: 1px solid var(--line);
      border-radius: var(--radius-lg); padding: 32px;
    }
    .field { display: block; margin-bottom: 16px; }
    .field label {
      display: block; font-size: 12px; font-weight: 600; color: var(--navy-800);
      text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px;
      font-family: var(--font-mono);
    }
    .field input, .field textarea, .field select {
      width: 100%;
      background: white;
      border: 1px solid var(--line);
      border-radius: 10px;
      padding: 12px 14px;
      font-family: inherit; font-size: 15px;
      color: var(--ink-900);
      transition: border-color 0.15s, box-shadow 0.15s;
    }
    .field input:focus, .field textarea:focus, .field select:focus {
      outline: none;
      border-color: var(--orange-500);
      box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.18);
    }
    .field textarea { resize: vertical; min-height: 110px; }
    .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    @media (max-width: 540px) { .field-row { grid-template-columns: 1fr; } }

    .form-foot { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: 8px; flex-wrap: wrap; }
    .form-foot small { font-size: 12px; color: var(--ink-500); max-width: 28ch; }
    .form-msg {
      display: none;
      margin-top: 14px; padding: 14px; border-radius: 10px;
      background: rgba(22, 163, 74, 0.08); border: 1px solid rgba(22, 163, 74, 0.25);
      color: #166534; font-size: 14px;
    }

    /* -------------------------------------------------------------
       Success panel shown in place of the form after submission.
       display:none by default — JS flips it to flex on success.
       ------------------------------------------------------------- */
    .form-success {
      display: none;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 48px 32px;
      background: linear-gradient(180deg, #ffffff 0%, #F7FBF8 100%);
      border: 1px solid rgba(22, 163, 74, 0.22);
      border-radius: var(--radius-lg);
      box-shadow: 0 24px 48px -28px rgba(22, 163, 74, 0.28);
      position: relative;
      overflow: hidden;
      animation: form-success-in 420ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
    }
    .form-success::before {
      content: "";
      position: absolute; inset: 0 0 auto 0; height: 4px;
      background: linear-gradient(90deg, #16A34A, #22C55E);
    }
    .form-success__tick {
      width: 68px; height: 68px; border-radius: 50%;
      background: linear-gradient(180deg, #22C55E 0%, #16A34A 100%);
      color: white;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 20px;
      box-shadow: 0 14px 28px -10px rgba(22, 163, 74, 0.5);
      animation: form-success-pop 520ms cubic-bezier(0.34, 1.56, 0.64, 1) 120ms both;
    }
    .form-success__tick svg { width: 32px; height: 32px; }
    .form-success__title {
      font-family: var(--font-display);
      font-size: 22px; font-weight: 700;
      color: var(--navy-800);
      margin: 0 0 10px; letter-spacing: -0.01em;
    }
    .form-success__body {
      font-size: 15.5px; line-height: 1.6;
      color: #334155; margin: 0 0 8px; max-width: 42ch;
    }
    .form-success__fine { font-size: 14px; color: #6b7280; margin: 6px 0 0; }
    .form-success__fine a { color: var(--navy-800); }
    .form-success__fine a:hover { color: var(--orange-500); }

    /* Error variant — same layout, red palette */
    .form-success--error {
      background: linear-gradient(180deg, #ffffff 0%, #FEF7F5 100%);
      border-color: rgba(220, 38, 38, 0.25);
      box-shadow: 0 24px 48px -28px rgba(220, 38, 38, 0.25);
    }
    .form-success--error::before { background: linear-gradient(90deg, #DC2626, #F97316); }
    .form-success--error .form-success__tick {
      background: linear-gradient(180deg, #F97316 0%, #DC2626 100%);
      box-shadow: 0 14px 28px -10px rgba(220, 38, 38, 0.45);
    }

    @keyframes form-success-in {
      from { opacity: 0; transform: translateY(8px); }
      to   { opacity: 1; transform: translateY(0);   }
    }
    @keyframes form-success-pop {
      0%   { transform: scale(0.6);  opacity: 0; }
      70%  { transform: scale(1.08); opacity: 1; }
      100% { transform: scale(1);    opacity: 1; }
    }
    @media (max-width: 560px) {
      .form-success { padding: 36px 24px; }
      .form-success__tick { width: 60px; height: 60px; }
      .form-success__title { font-size: 19px; }
    }

    .contact-side h3 { font-size: 24px; color: var(--navy-800); margin-bottom: 12px; }
    .contact-side > p { color: var(--ink-700); margin-bottom: 28px; }
    .contact-row {
      display: flex; gap: 16px; align-items: flex-start;
      padding: 20px 0; border-top: 1px solid var(--line);
    }
    .contact-row:last-child { border-bottom: 1px solid var(--line); }
    .contact-row__icon {
      width: 40px; height: 40px; border-radius: 10px;
      background: var(--orange-100); color: var(--orange-500);
      display: grid; place-items: center; flex-shrink: 0;
    }
    .contact-row__icon svg { width: 18px; height: 18px; }
    .contact-row small { font-family: var(--font-mono); font-size: 11px; color: var(--ink-500); text-transform: uppercase; letter-spacing: 0.08em; }
    .contact-row strong { display: block; font-size: 18px; color: var(--navy-800); font-family: var(--font-display); margin-top: 2px; }
    .contact-row p { font-size: 13px; color: var(--ink-500); margin: 4px 0 0; }

    /* ------------------------------------------------------------------
       FOOTER
    ------------------------------------------------------------------ */
    footer {
      background: var(--navy-900); color: rgba(255, 255, 255, 0.7);
      padding-block: 56px 28px;
    }
    .footer-grid {
      display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px;
      margin-bottom: 40px;
    }
    @media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
    @media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }

    footer h4 { color: white; font-size: 13px; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; font-family: var(--font-mono); font-weight: 500; }
    footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
    footer a:hover { color: white; }
    footer .brand { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
    footer .brand img { width: 68px; height: 68px; border-radius: 50%; background: white; }
    footer .brand strong { font-family: var(--font-display); font-size: 17px; color: white; display: block; }
    footer .brand small { font-size: 12px; color: rgba(255, 255, 255, 0.55); }
    footer p { font-size: 13px; line-height: 1.6; max-width: 32ch; }
    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      padding-top: 24px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
      font-size: 12px; color: rgba(255, 255, 255, 0.5);
    }
    .footer-credit a {
      color: rgba(255, 255, 255, 0.8);
      border-bottom: 1px solid rgba(255, 255, 255, 0.2);
      padding-bottom: 1px;
      transition: color 0.15s, border-color 0.15s;
    }
    .footer-credit a:hover { color: var(--orange-400); border-color: var(--orange-400); }
    .footer-abn {
      margin-top: 8px;
      padding-top: 10px;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      font-family: var(--font-mono);
      font-size: 12px;
      color: rgba(255, 255, 255, 0.55);
      letter-spacing: 0.02em;
    }
    .footer-quote {
      margin-top: 6px;
      padding-top: 10px;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
    }
    .footer-quote a { display: block; }
    .footer-quote span {
      display: block;
      font-size: 11px;
      color: rgba(255, 255, 255, 0.45);
      font-family: var(--font-mono);
      letter-spacing: 0.04em;
      text-transform: uppercase;
      margin-top: 2px;
    }

    /* tiny utility: screen-reader only */
    .sr { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ------------------------------------------------------------------
   DROPDOWN NAV (added for locations menu)
------------------------------------------------------------------ */
.nav__links { position: relative; }
.nav__item { position: relative; display: inline-flex; align-items: center; }
.nav__item--dropdown > a { display: inline-flex; align-items: center; gap: 6px; }
.nav__item--dropdown > a::after {
  content: "";
  display: inline-block;
  width: 6px; height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.15s;
  opacity: 0.6;
  position: relative;
  top: -2px;
}
.nav__item--dropdown[aria-expanded="true"] > a::after,
.nav__item--dropdown:hover > a::after {
  transform: rotate(225deg);
  top: 1px;
}

/* Hover-bridge: an invisible strip directly below the trigger so the cursor
   never leaves a hover target while travelling to the menu. */
.nav__item--dropdown::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  top: 100%;
  height: 14px;
  background: transparent;
  pointer-events: none;
}
.nav__item--dropdown:hover::after,
.nav__item--dropdown:focus-within::after,
.nav__item--dropdown[aria-expanded="true"]::after {
  pointer-events: auto;
}

.nav__menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 14px;
  min-width: 260px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px) saturate(1.8);
  -webkit-backdrop-filter: blur(18px) saturate(1.8);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 8px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.15s, transform 0.15s, visibility 0s linear 0.25s;
  visibility: hidden;
  display: grid;
  gap: 2px;
}
/* Wider, 2-column menu for the full 7-location list */
.nav__menu.nav__menu--wide {
  min-width: 540px;
  grid-template-columns: 1fr 1fr;
  grid-auto-flow: row;
}
@media (max-width: 720px) {
  .nav__menu.nav__menu--wide {
    min-width: 260px;
    grid-template-columns: 1fr;
  }
}
.nav__menu-item--quote {
  grid-column: 1 / -1;
  margin-top: 4px;
  padding-top: 12px !important;
  border-top: 1px solid var(--line-soft);
}
.nav__menu-item--quote .nav__menu-text small { color: var(--orange-500); font-weight: 600; }
.nav__item--dropdown:hover .nav__menu,
.nav__item--dropdown:focus-within .nav__menu,
.nav__item--dropdown[aria-expanded="true"] .nav__menu {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.15s, transform 0.15s, visibility 0s linear 0s;
}
.nav__menu a {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 14px;
  color: var(--ink-700);
  transition: background 0.12s, color 0.12s;
}
.nav__menu a:hover { background: var(--line-soft); color: var(--navy-800); }
.nav__menu-icon {
  width: 28px; height: 28px;
  border-radius: 7px;
  background: var(--navy-800);
  color: white;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.nav__menu-icon svg { width: 14px; height: 14px; }
.nav__menu-text strong { display: block; font-family: var(--font-display); font-size: 14px; color: var(--navy-800); line-height: 1.2; }
.nav__menu-text small { display: block; font-size: 11px; color: var(--ink-500); font-family: var(--font-mono); letter-spacing: 0.04em; text-transform: uppercase; margin-top: 2px; }

/* ------------------------------------------------------------------
   LOCATION PAGES — page hero
------------------------------------------------------------------ */
.loc-hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(249, 115, 22, 0.14), transparent 50%),
    linear-gradient(180deg, #0B2545 0%, #0E2A54 100%);
  color: white;
  padding-block: clamp(80px, 11vw, 140px);
}
.loc-hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 85%);
  pointer-events: none;
}
.loc-hero__inner { position: relative; z-index: 2; max-width: 860px; }
.loc-hero .crumb {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.55); margin-bottom: 18px;
}
.loc-hero .crumb a { color: rgba(255,255,255,0.55); border-bottom: 1px solid rgba(255,255,255,0.2); padding-bottom: 1px; }
.loc-hero .crumb a:hover { color: white; }
.loc-hero .crumb span { margin-inline: 10px; opacity: 0.4; }
.loc-hero h1 {
  font-size: clamp(42px, 6vw, 72px);
  color: white; letter-spacing: -0.028em;
  margin-block: 12px 18px;
}
.loc-hero h1 em {
  font-style: normal;
  background: linear-gradient(90deg, #FDBA74, #F97316);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.loc-hero__lede { font-size: clamp(16px, 1.35vw, 18px); color: rgba(255,255,255,0.78); max-width: 60ch; }
.loc-hero__meta {
  display: flex; gap: clamp(20px, 4vw, 40px); margin-top: 36px; flex-wrap: wrap;
  font-family: var(--font-mono); font-size: 12px; color: rgba(255,255,255,0.65);
}
.loc-hero__meta span { display: inline-flex; align-items: center; gap: 8px; }
.loc-hero__meta svg { width: 14px; height: 14px; color: var(--orange-400); }
.loc-hero__cta { margin-top: 36px; display: flex; gap: 12px; flex-wrap: wrap; }

/* ------------------------------------------------------------------
   QUOTE BANNER — Brisbane "on specialised quote" strip
------------------------------------------------------------------ */
.quote-banner {
  position: relative;
  background: linear-gradient(180deg, #FFF7ED 0%, #FEF3E2 100%);
  border-top: 1px solid rgba(249, 115, 22, 0.25);
  border-bottom: 1px solid rgba(249, 115, 22, 0.25);
  padding-block: clamp(28px, 4vw, 44px);
}
.quote-banner::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 12% 20%, rgba(249, 115, 22, 0.06), transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(249, 115, 22, 0.05), transparent 45%);
  pointer-events: none;
}
.quote-banner__inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(20px, 3vw, 36px);
  align-items: center;
}
.quote-banner__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange-500); color: white;
  font-family: var(--font-mono); font-size: 11px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 8px 12px; border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.25);
}
.quote-banner__badge svg { width: 14px; height: 14px; flex-shrink: 0; }
.quote-banner__body h3 {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.8vw, 22px);
  color: var(--navy-800);
  margin: 0 0 6px;
  letter-spacing: -0.012em;
}
.quote-banner__body p {
  margin: 0;
  font-size: 14px;
  color: var(--ink-700);
  line-height: 1.55;
  max-width: 62ch;
}
.quote-banner__actions { display: flex; gap: 10px; flex-wrap: wrap; }
.quote-banner__actions .btn svg { width: 16px; height: 16px; }
@media (max-width: 860px) {
  .quote-banner__inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .quote-banner__badge { justify-self: start; }
}

/* ------------------------------------------------------------------
   LOCATION PAGES — data grid
------------------------------------------------------------------ */
.data-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  margin-block: -60px 80px; /* pulls up to overlap the hero */
  position: relative; z-index: 3;
}
/* When the quote banner sits between the hero and the data grid
   (Brisbane page), the negative top-margin would pull the cards up
   into the banner — neutralise it with a normal top margin. */
.quote-banner + section .data-grid {
  margin-top: 48px;
}
@media (max-width: 900px) { .data-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .data-grid { grid-template-columns: 1fr; } }

.data-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 20px 40px -24px rgba(8, 24, 47, 0.25);
  position: relative; overflow: hidden;
}
.data-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--orange-500), transparent 80%);
}
.data-card__label { font-family: var(--font-mono); font-size: 11px; color: var(--ink-500); text-transform: uppercase; letter-spacing: 0.1em; }
.data-card__value {
  font-family: var(--font-display); font-size: clamp(32px, 3.6vw, 40px);
  color: var(--navy-800); margin-block: 6px 2px; letter-spacing: -0.025em;
  font-variant-numeric: tabular-nums;
}
.data-card__value small { font-size: 0.45em; color: var(--ink-500); font-weight: 400; margin-left: 4px; }
.data-card__desc { font-size: 13px; color: var(--ink-700); line-height: 1.5; }

/* ------------------------------------------------------------------
   LOCATION PAGES — housing context
------------------------------------------------------------------ */
.housing {
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px; align-items: start;
}
@media (max-width: 900px) { .housing { grid-template-columns: 1fr; } }

.housing h2 { font-size: clamp(28px, 3.3vw, 40px); color: var(--navy-800); margin-bottom: 18px; }
.housing p { color: var(--ink-700); font-size: 16px; line-height: 1.7; margin-bottom: 16px; }
.housing p:last-child { margin-bottom: 0; }

.housing-aside {
  background: white; border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 28px;
}
.housing-aside h4 {
  font-family: var(--font-mono); font-size: 11px; color: var(--ink-500);
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 18px; font-weight: 500;
}
.housing-aside ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.housing-aside li {
  display: grid; grid-template-columns: auto 1fr; gap: 12px; align-items: start;
  padding-bottom: 14px; border-bottom: 1px solid var(--line-soft);
}
.housing-aside li:last-child { padding-bottom: 0; border-bottom: none; }
.housing-aside .yr {
  background: var(--navy-800); color: white;
  font-family: var(--font-mono); font-size: 11px; font-weight: 600;
  padding: 3px 8px; border-radius: 6px; white-space: nowrap;
}
.housing-aside strong { display: block; font-family: var(--font-display); font-size: 14px; color: var(--navy-800); margin-bottom: 2px; }
.housing-aside small { font-size: 12.5px; color: var(--ink-700); line-height: 1.5; }

/* ------------------------------------------------------------------
   LOCATION PAGES — suburbs
------------------------------------------------------------------ */
.suburbs { background: white; border-block: 1px solid var(--line); }
.suburb-list {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 24px;
}
.suburb-chip {
  padding: 8px 14px; background: var(--paper);
  border: 1px solid var(--line); border-radius: 999px;
  font-size: 13px; color: var(--navy-800);
  font-family: var(--font-mono); letter-spacing: 0.02em;
}

/* ------------------------------------------------------------------
   LOCATION PAGES — local triggers
------------------------------------------------------------------ */
.triggers-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
@media (max-width: 860px) { .triggers-grid { grid-template-columns: 1fr; } }

.trigger-card {
  background:
    linear-gradient(180deg, #F97316 0%, #EA580C 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative; overflow: hidden;
  color: white;
  box-shadow: 0 18px 36px -18px rgba(234, 88, 12, 0.45);
}
.trigger-card::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.12), transparent 45%),
    radial-gradient(circle at 0% 100%, rgba(0, 0, 0, 0.08), transparent 45%);
  pointer-events: none;
}
.trigger-card > * { position: relative; z-index: 1; }
.trigger-card__num {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 12px;
}
.trigger-card h3 {
  font-size: 18px;
  color: white;
  margin-bottom: 10px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.trigger-card p {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.94);
  line-height: 1.65;
  margin: 0;
  font-weight: 450;
}

/* ------------------------------------------------------------------
   CTA BAND (shared across locations + homepage tail)
------------------------------------------------------------------ */
.cta-band {
  background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-900) 100%);
  color: white; position: relative; overflow: hidden;
  padding-block: clamp(60px, 8vw, 100px);
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(249, 115, 22, 0.24), transparent 55%),
    radial-gradient(circle at 15% 90%, rgba(59, 130, 246, 0.12), transparent 60%);
  pointer-events: none;
}
.cta-band__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: center; }
@media (max-width: 820px) { .cta-band__inner { grid-template-columns: 1fr; } }
.cta-band h2 { font-size: clamp(28px, 3.2vw, 40px); color: white; margin-bottom: 14px; }
.cta-band p { color: rgba(255, 255, 255, 0.78); font-size: 16px; max-width: 50ch; margin: 0; }
.cta-band__actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; }
@media (max-width: 820px) { .cta-band__actions { justify-content: flex-start; } }

/* Location cards on homepage — "See detail" CTA */
.loc-card { display: flex; flex-direction: column; transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s; }
.loc-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-color: var(--ink-300); }
.loc-card__link {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: auto; padding-top: 18px;
  border-top: 1px solid var(--line);
  font-family: var(--font-display); font-size: 14px; font-weight: 600;
  color: var(--navy-800);
  transition: color 0.15s, gap 0.15s;
}
.loc-card__link:hover { color: var(--orange-500); gap: 12px; }
.loc-card__link svg { width: 14px; height: 14px; }
