    :root {
      --bg: #1A1A1A;
      --surface: #242424;
      --fg: #FFFFFF;
      --muted: #557173;
      --border: rgba(255, 255, 255, 0.04);
      --border-strong: rgba(255, 255, 255, 0.08);
      --accent: #61A850;
      --accent-secondary: #51AA3F;
      --accent-light: #7EB63B;
      --accent-dark: #2E413C;

      --font-display: 'Satoshi', 'Neue Haas Grotesk', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
      --font-body: 'Inter', 'Satoshi', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;

      --nav-height: 88px;

      scroll-behavior: smooth;
    }

    *,
    *::before,
    *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    body {
      background: var(--bg);
      color: var(--fg);
      font-family: var(--font-body);
      font-size: clamp(16px, 1.05vw, 19px);
      line-height: 1.75;
      overflow-x: hidden;
    }

    ::selection {
      background: var(--accent);
      color: var(--bg);
    }

    a {
      color: inherit;
      text-decoration: none;
    }

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

    /* ── Noise grain overlay ── */
    .noise-overlay {
      position: fixed;
      inset: 0;
      z-index: 9999;
      pointer-events: none;
      opacity: 0.035;
      mix-blend-mode: overlay;
    }

    .noise-overlay svg {
      width: 100%;
      height: 100%;
    }

    /* ── Container ── */
    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 clamp(24px, 5vw, 64px);
    }

    .section {
      padding: clamp(100px, 12vw, 160px) 0;
      position: relative;
    }

    .section-divider {
      width: 100%;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(85, 113, 115, 0.2), transparent);
    }

    .section-label {
      font-family: var(--font-display);
      font-weight: 500;
      font-size: clamp(11px, 0.7vw, 13px);
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 20px;
    }

    .section-title {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: clamp(34px, 4vw, 56px);
      line-height: 1.06;
      letter-spacing: -0.02em;
      margin-bottom: clamp(28px, 3vw, 48px);
    }

    .section-title em {
      font-style: normal;
      color: var(--accent);
    }

    /* ── Navigation ── */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: var(--nav-height);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 clamp(24px, 5vw, 64px);
      z-index: 100;
      transition: background 0.5s ease, backdrop-filter 0.5s ease, border-color 0.5s ease;
      border-bottom: 1px solid transparent;
    }

    nav.scrolled {
      background: rgba(47, 50, 52, 0.85);
      backdrop-filter: blur(20px) saturate(1.2);
      -webkit-backdrop-filter: blur(20px) saturate(1.2);
      border-bottom-color: var(--border);
    }

    .nav-logo {
      display: flex;
      align-items: center;
      line-height: 0;
    }

    .nav-logo img {
      height: 44px;
      width: auto;
      display: block;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: clamp(20px, 2.5vw, 36px);
      list-style: none;
    }

    .nav-links a {
      font-size: clamp(12px, 0.8vw, 14px);
      font-weight: 500;
      letter-spacing: 0.04em;
      color: rgba(255, 255, 255, 0.55);
      transition: color 0.3s ease, transform 0.3s ease;
      position: relative;
      padding: 4px 0;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 1.5px;
      background: var(--accent);
      transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      border-radius: 1px;
    }

    .nav-links a:hover {
      color: var(--accent);
      transform: translateY(-1px);
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    .nav-links a.active {
      color: var(--accent);
    }

    .nav-links a.active::after {
      width: 100%;
      height: 2px;
    }

    .nav-cta {
      display: inline-block;
      padding: 11px 22px;
      min-width: 110px;
      text-align: center;
      border-radius: 6px;
      background: var(--accent);
      color: #fff !important;
      text-decoration: none;
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 0.02em;
      transition: background 0.3s ease, transform 0.3s ease;
      white-space: nowrap;
    }

    .nav-cta::after {
      display: none !important;
    }

    .nav-cta:hover {
      background: var(--accent-light);
      transform: translateY(-1px);
      color: var(--bg) !important;
    }

    .nav-toggle {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 8px;
    }

    .nav-toggle span {
      display: block;
      width: 22px;
      height: 1.5px;
      background: var(--fg);
      transition: transform 0.3s ease, opacity 0.3s ease;
    }

    /* ── Hero ── */
    .hero {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      position: relative;
      padding: calc(var(--nav-height) + 60px) 0 100px;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
      pointer-events: none;
    }

    .hero-bg::before {
      content: '';
      position: absolute;
      top: -60%;
      right: -25%;
      width: 70%;
      height: 130%;
      background: radial-gradient(ellipse at 60% 40%, rgba(97, 168, 80, 0.035) 0%, transparent 65%);
    }

    .hero-bg::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 10%;
      right: 10%;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(97, 168, 80, 0.15), transparent);
    }

    .hero-leaf {
      position: absolute;
      bottom: -5%;
      right: 0;
      width: clamp(180px, 22vw, 360px);
      height: auto;
      z-index: 0;
      pointer-events: none;
      opacity: 0.045;
      filter: brightness(1.2) saturate(0.7);
    }

    .hero-leaf img {
      width: 100%;
      height: auto;
      display: block;
    }

    .hero-content {
      position: relative;
      z-index: 1;
      max-width: 800px;
    }

    .hero-eyebrow {
      font-family: var(--font-body);
      font-weight: 500;
      font-size: clamp(13px, 0.9vw, 17px);
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 32px;
    }

    .hero h1 {
      font-family: var(--font-display);
      font-weight: 900;
      font-size: clamp(44px, 6.5vw, 96px);
      line-height: 0.92;
      letter-spacing: -0.035em;
      margin-bottom: 0;
    }

    .hero .h1-divider {
      display: block;
      width: 32px;
      height: 1px;
      background: var(--accent-dark);
      margin: 4px 0 20px;
    }

    .hero h1 .line {
      display: block;
    }

    .hero-sub {
      font-family: var(--font-display);
      font-weight: 500;
      font-size: clamp(19px, 1.5vw, 26px);
      line-height: 1.35;
      letter-spacing: -0.01em;
      color: var(--accent);
      max-width: 600px;
      margin-top: 0;
      margin-bottom: 40px;
    }

    .hero-actions {
      display: flex;
      align-items: center;
      gap: 24px;
      flex-wrap: wrap;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 17px 38px;
      font-family: var(--font-display);
      font-weight: 600;
      font-size: clamp(13px, 0.85vw, 14px);
      letter-spacing: 0.04em;
      border-radius: 3px;
      border: none;
      cursor: pointer;
      transition: all 0.35s ease;
    }

    .btn-primary {
      background: var(--accent);
      color: #fff;
    }

    .btn-primary:hover {
      background: var(--accent-light);
      color: var(--bg);
      transform: translateY(-2px);
    }

    .btn-outline {
      background: transparent;
      color: var(--fg);
      border: 1px solid var(--border-strong);
    }

    .btn-outline:hover {
      border-color: var(--accent);
      color: var(--accent);
      transform: translateY(-2px);
    }

    /* ── Approach ── */
    .approach-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(48px, 7vw, 96px);
      align-items: start;
    }

    .approach-text p {
      color: rgba(255, 255, 255, 0.7);
      margin-bottom: 22px;
      font-size: clamp(16px, 1.05vw, 19px);
      line-height: 1.8;
    }

    .approach-text p:last-child {
      margin-bottom: 0;
    }

    .approach-sidebar {
      position: relative;
    }

    .approach-portrait {
      width: 92px;
      height: 92px;
      border-radius: 50%;
      object-fit: cover;
      border: 2px solid var(--accent-dark);
      margin-bottom: 28px;
      display: block;
    }

    .approach-sidebar-ornament {
      width: 32px;
      height: 2px;
      background: var(--accent-dark);
      margin-bottom: 28px;
    }

    .approach-quote {
      font-family: var(--font-display);
      font-size: clamp(24px, 2.4vw, 34px);
      font-weight: 500;
      line-height: 1.4;
      letter-spacing: -0.01em;
      color: var(--fg);
      padding: 0 0 0 clamp(28px, 3vw, 40px);
      border-left: 2px solid var(--accent-dark);
      position: relative;
    }

    .approach-quote cite {
      display: block;
      margin-top: 20px;
      font-family: var(--font-body);
      font-size: clamp(13px, 0.8vw, 15px);
      font-weight: 400;
      font-style: normal;
      color: var(--muted);
    }

    /* ── Process ── */
    .process-layout {
      display: grid;
      grid-template-columns: 1fr 1.5fr;
      gap: clamp(48px, 6vw, 96px);
      align-items: start;
    }

    .process-intro {
      position: sticky;
      top: calc(var(--nav-height) + 40px);
    }

    .process-sub {
      color: rgba(255, 255, 255, 0.45);
      font-size: clamp(15px, 1vw, 18px);
      line-height: 1.7;
      margin-top: 20px;
    }

    .process-steps {
      display: flex;
      flex-direction: column;
      gap: 0;
      position: relative;
      padding-left: 48px;
    }

    .process-steps::before {
      content: '';
      position: absolute;
      left: 23px;
      top: 8px;
      bottom: 8px;
      width: 1px;
      background: linear-gradient(180deg, transparent, var(--accent-dark), transparent);
    }

    .process-step {
      padding: 0 0 48px 0;
      position: relative;
      text-align: left;
    }

    .process-step:last-child {
      padding-bottom: 0;
    }

    .process-step::before {
      content: '';
      position: absolute;
      top: 6px;
      left: -41px;
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--bg);
      border: 1.5px solid var(--border-strong);
      transition: border-color 0.5s ease, background 0.5s ease;
      margin-left: 0;
    }

    .process-step:nth-child(2)::before {
      border-color: var(--accent);
      background: var(--accent);
    }

    .process-step:hover::before {
      border-color: var(--accent);
    }

    .process-number {
      font-family: var(--font-display);
      font-weight: 500;
      font-size: clamp(11px, 0.7vw, 13px);
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 16px;
    }

    .process-step h3 {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: clamp(20px, 1.5vw, 24px);
      letter-spacing: -0.01em;
      margin-bottom: 14px;
    }

    .process-step p {
      color: rgba(255, 255, 255, 0.5);
      font-size: clamp(14px, 0.9vw, 16px);
      line-height: 1.75;
    }

    /* ── Cityscape break ── */
    .cityscape-break {
      position: relative;
      height: clamp(420px, 56vh, 660px);
      overflow: hidden;
      display: flex;
      align-items: center;
    }

    .cityscape-img {
      position: absolute;
      inset: 0;
      background: /images/brisbane.webp center 85% / cover no-repeat;
      will-change: transform;
    }

    .cityscape-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, #1A1A1A 0%, rgba(26, 26, 26, 0.82) 30%, rgba(26, 26, 26, 0.75) 70%, rgba(26, 26, 26, 0.85) 100%);
      z-index: 1;
    }

    .cityscape-content {
      position: relative;
      z-index: 2;
      width: 100%;
      text-align: center;
      pointer-events: none;
    }

    .cityscape-tagline {
      font-family: var(--font-display);
      font-weight: 300;
      font-size: clamp(26px, 3vw, 44px);
      letter-spacing: 0.15em;
      text-transform: lowercase;
      color: rgba(255, 255, 255, 0.85);
      opacity: 0;
      transform: translateY(12px);
      transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .cityscape-tagline.revealed {
      opacity: 1;
      transform: translateY(0);
    }

    /* ── Results ── */
    .results-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: clamp(20px, 2.5vw, 40px);
    }

    .result-item {
      padding-top: clamp(28px, 3vw, 40px);
      border-top: 1px solid var(--border-strong);
    }

    .result-marker {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--accent);
      margin-bottom: 16px;
      opacity: 0.5;
    }

    .result-label {
      font-family: var(--font-display);
      font-weight: 600;
      font-size: clamp(15px, 1.1vw, 18px);
      margin-bottom: 10px;
      letter-spacing: 0.02em;
    }

    .result-desc {
      color: rgba(255, 255, 255, 0.45);
      font-size: clamp(13px, 0.8vw, 15px);
      line-height: 1.65;
    }

    /* ── Testimonials ── */
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: clamp(32px, 4vw, 64px);
    }

    .testimonial-text {
      font-size: clamp(17px, 1.15vw, 21px);
      line-height: 1.7;
      color: rgba(255, 255, 255, 0.75);
      margin-bottom: 28px;
      font-style: italic;
      letter-spacing: 0.01em;
    }

    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .testimonial-avatar {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: var(--accent-dark);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 14px;
      color: var(--accent-light);
      flex-shrink: 0;
    }

    .testimonial-name {
      font-weight: 600;
      font-size: clamp(13px, 0.8vw, 15px);
    }

    .testimonial-role {
      font-size: clamp(12px, 0.7vw, 13px);
      color: var(--muted);
      margin-top: 2px;
    }

    /* ── Blog ── */
    .blog-content {
      max-width: 720px;
    }

    .blog-content p {
      color: rgba(255, 255, 255, 0.55);
      margin-bottom: 40px;
      font-size: clamp(16px, 1.05vw, 19px);
      line-height: 1.8;
    }

    .blog-link {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-family: var(--font-display);
      font-weight: 500;
      font-size: clamp(13px, 0.85vw, 15px);
      letter-spacing: 0.05em;
      color: var(--accent);
      padding-bottom: 2px;
      border-bottom: 1px solid transparent;
      transition: border-color 0.35s ease;
    }

    .blog-link:hover {
      border-bottom-color: var(--accent);
    }

    .blog-link svg {
      width: 16px;
      height: 16px;
      transition: transform 0.35s ease;
    }

    .blog-link:hover svg {
      transform: translateX(5px);
    }

    .blog-featured {
      border-left: 1.5px solid var(--accent-dark);
      padding-left: clamp(24px, 2.5vw, 32px);
      margin-top: 40px;
    }

    .blog-featured-label {
      font-family: var(--font-display);
      font-weight: 500;
      font-size: clamp(11px, 0.7vw, 13px);
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 12px;
    }

    .blog-featured-title {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: clamp(18px, 1.3vw, 22px);
      letter-spacing: -0.01em;
      line-height: 1.3;
      margin-bottom: 12px;
      color: var(--fg);
    }

    .blog-featured-excerpt {
      color: rgba(255, 255, 255, 0.45);
      font-size: clamp(14px, 0.9vw, 16px);
      line-height: 1.7;
      margin-bottom: 16px;
    }

    .blog-featured-link {
      font-family: var(--font-display);
      font-weight: 500;
      font-size: clamp(13px, 0.8vw, 14px);
      color: var(--accent);
      transition: opacity 0.3s ease;
    }

    .blog-featured-link:hover {
      opacity: 0.7;
    }

    /* ── Closing band ── */
    .closing-band {
      text-align: center;
    }

    .closing-band p {
      color: rgba(255, 255, 255, 0.55);
      max-width: 480px;
      margin: 0 auto 40px;
      font-size: clamp(15px, 1vw, 18px);
      line-height: 1.75;
    }

    .closing-actions {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
    }



    /* ── Footer ── */
    footer {
      padding: clamp(60px, 6vw, 100px) 0 clamp(40px, 4vw, 60px);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: clamp(32px, 5vw, 80px);
      padding-bottom: clamp(40px, 4vw, 60px);
      border-bottom: 1px solid var(--border);
    }

    .footer-brand p {
      color: rgba(255, 255, 255, 0.35);
      font-size: clamp(13px, 0.8vw, 15px);
      margin-top: 14px;
      max-width: 320px;
      line-height: 1.7;
    }

    .footer-heading {
      font-family: var(--font-display);
      font-weight: 600;
      font-size: clamp(11px, 0.7vw, 13px);
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 22px;
    }

    .footer-links {
      list-style: none;
    }

    .footer-links li {
      margin-bottom: 12px;
    }

    .footer-links a {
      color: rgba(255, 255, 255, 0.4);
      font-size: clamp(13px, 0.8vw, 15px);
      transition: color 0.3s ease;
    }

    .footer-links a:hover {
      color: var(--accent);
    }

    .footer-bottom {
      margin-top: clamp(36px, 3.5vw, 48px);
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 16px;
      font-size: clamp(12px, 0.75vw, 14px);
      color: rgba(255, 255, 255, 0.25);
    }

    /* ── Scroll Reveal ── */
    .reveal {
      opacity: 0;
      transform: translateY(35px);
      transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .reveal-delay-1 {
      transition-delay: 0.08s;
    }

    .reveal-delay-2 {
      transition-delay: 0.18s;
    }

    .reveal-delay-3 {
      transition-delay: 0.3s;
    }

    .reveal-delay-4 {
      transition-delay: 0.42s;
    }

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

    @media (max-width: 768px) {
      :root {
        --nav-height: 64px;
      }

      .nav-links {
        position: fixed;
        top: var(--nav-height);
        left: 0;
        width: 100%;
        background: rgba(47, 50, 52, 0.96);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 28px clamp(24px, 5vw, 64px);
        gap: 22px;
        border-bottom: 1px solid var(--border);
        transform: translateY(-120%);
        transition: transform 0.4s ease;
        align-items: flex-start;
      }

      .nav-links.open {
        transform: translateY(0);
      }

      .nav-cta {
        width: 100%;
        justify-content: center;
      }

      .nav-toggle {
        display: flex;
      }

      .approach-grid {
        grid-template-columns: 1fr;
      }

      .process-layout {
        grid-template-columns: 1fr;
      }

      .process-intro {
        position: static;
      }

      .process-steps {
        padding-left: 40px;
      }

      .process-step::before {
        left: -33px;
      }

      .cityscape-img {
        background-size: auto 160%;
        background-position: center 98%;
      }

      .testimonials-grid {
        grid-template-columns: 1fr;
      }

      .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
      }

      .footer-bottom {
        flex-direction: column;
        text-align: center;
      }
    }

    @media (max-width: 480px) {
      .results-grid {
        grid-template-columns: 1fr;
      }

      .hero-actions {
        flex-direction: column;
        align-items: flex-start;
      }

      .hero-scroll {
        display: none;
      }
    }

    @media (min-width: 1920px) {
      .container {
        max-width: 1400px;
      }
    }
