    /* ── Variables ─────────────────────────────────── */
    :root {
      --emerald:   #1a4a2e;
      --emerald-mid: #2d6a44;
      --emerald-lt: #e8f0eb;
      --gold:      #b8963e;
      --gold-lt:   #d4ac5a;
      --black:     #111111;
      --charcoal:  #2c2c2c;
      --grey:      #6b6b6b;
      --border:    #e0e0e0;
      --white:     #ffffff;
      --off-white: #fafaf8;

      --serif:     'Cormorant Garamond', Georgia, serif;
      --sans:      'DM Sans', sans-serif;
    }

    /* ── Reset ─────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: var(--sans);
      color: var(--charcoal);
      background: var(--white);
      line-height: 1.6;
      overflow-x: hidden;
    }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }
    img { max-width: 100%; display: block; }

    /* ── Utility ───────────────────────────────────── */
    .container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
    .section-label {
      font-family: var(--sans);
      font-size: 0.7rem;
      font-weight: 500;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold);
    }
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-family: var(--sans);
      font-size: 0.8rem;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 0.85rem 2rem;
      border: none;
      cursor: pointer;
      transition: all 0.25s ease;
    }
    .btn-primary {
      background: var(--emerald);
      color: var(--white);
    }
    .btn-primary:hover { background: var(--emerald-mid); }
    .btn-outline {
      background: transparent;
      color: var(--emerald);
      border: 1.5px solid var(--emerald);
    }
    .btn-outline:hover { background: var(--emerald); color: var(--white); }
    .btn-gold {
      background: var(--gold);
      color: var(--white);
    }
    .btn-gold:hover { background: var(--gold-lt); }
    .arrow { font-size: 1rem; transition: transform 0.2s; }
    .btn:hover .arrow { transform: translateX(4px); }

    /* ── Nav ───────────────────────────────────────── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      background: rgba(255,255,255,0.97);
      border-bottom: 1px solid var(--border);
      backdrop-filter: blur(8px);
    }
    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 72px;
    }
    .nav-logo {
      display: flex;
      align-items: center;
      gap: 0.9rem;
    }
    .nav-logo-mark {
      width: 42px;
      height: 42px;
      object-fit: contain;
    }
    .nav-wordmark {
      display: flex;
      flex-direction: column;
      line-height: 1.1;
    }
    .nav-wordmark-name {
      font-family: var(--serif);
      font-size: 1.15rem;
      font-weight: 600;
      color: var(--emerald);
      letter-spacing: 0.02em;
    }
    .nav-wordmark-tagline {
      font-family: var(--sans);
      font-size: 0.55rem;
      font-weight: 400;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--gold);
    }
    .nav-links {
      display: flex;
      gap: 2.5rem;
      align-items: center;
    }
    .nav-links a {
      font-size: 0.8rem;
      font-weight: 500;
      letter-spacing: 0.04em;
      color: var(--charcoal);
      text-transform: uppercase;
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--emerald); }
    .nav-cta { margin-left: 1rem; }

    /* ── Hero ──────────────────────────────────────── */
    .hero {
      padding-top: 72px;
      min-height: 100vh;
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
    }
    .hero-left {
      padding: 6rem 4rem 6rem 2re;
    }
    .hero-left .section-label { margin-bottom: 1.5rem; }
    .hero-headline {
      font-family: var(--serif);
      font-size: clamp(2.8rem, 5vw, 4.4rem);
      font-weight: 300;
      line-height: 1.12;
      color: var(--black);
      margin-bottom: 1.5rem;
    }
    .hero-headline em {
      font-style: italic;
      color: var(--emerald);
    }
    .hero-sub {
      font-size: 1rem;
      font-weight: 300;
      color: var(--grey);
      max-width: 480px;
      margin-bottom: 2.5rem;
      line-height: 1.7;
    }
    .hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

    .hero-right {
      background: var(--emerald);
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }
    .hero-right::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse at 20% 80%, rgba(184,150,62,0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(255,255,255,0.06) 0%, transparent 50%);
    }
    .hero-graphic {
      position: relative;
      z-index: 1;
      text-align: center;
      padding: 2rem;
    }
    .hero-logo-mark {
      width: min(280px, 55%);
      filter: brightness(1.1);
      animation: floatLogo 6s ease-in-out infinite;
    }
    @keyframes floatLogo {
      0%, 100% { transform: translateY(0); }
      50%       { transform: translateY(-12px); }
    }

    /* ── Stat bar ──────────────────────────────────── */
    .stats-bar {
      background: var(--off-white);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 2rem 0;
    }
    .stats-inner {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1rem;
    }
    .stat {
      text-align: center;
      padding: 1rem;
      border-right: 1px solid var(--border);
    }
    .stat:last-child { border-right: none; }
    .stat-number {
      font-family: var(--serif);
      font-size: 2.4rem;
      font-weight: 300;
      color: var(--emerald);
      line-height: 1;
      margin-bottom: 0.3rem;
    }
    .stat-label {
      font-size: 0.72rem;
      font-weight: 400;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--grey);
    }

    /* ── Services ──────────────────────────────────── */
    .services { padding: 7rem 0; }
    .section-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 4rem;
    }
    .section-header-left .section-label { margin-bottom: 0.75rem; }
    .section-title {
      font-family: var(--serif);
      font-size: clamp(2rem, 3.5vw, 3rem);
      font-weight: 300;
      color: var(--black);
      line-height: 1.2;
    }
    .section-title em {
      font-style: italic;
      color: var(--emerald);
    }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
      border: 1px solid var(--border);
    }
    .service-card {
      padding: 2.5rem;
      border-right: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      position: relative;
      overflow: hidden;
      transition: background 0.3s ease;
      cursor: default;
    }
    .service-card:nth-child(3n) { border-right: none; }
    .service-card:nth-child(n+4) { border-bottom: none; }
    .service-card::before {
      content: '';
      position: absolute;
      bottom: 0; left: 0;
      width: 100%;
      height: 3px;
      background: var(--gold);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.35s ease;
    }
    .service-card:hover::before { transform: scaleX(1); }
    .service-card:hover { background: var(--off-white); }
    .service-icon {
      width: 40px;
      height: 40px;
      margin-bottom: 1.5rem;
      color: var(--emerald);
    }
    .service-icon svg { width: 100%; height: 100%; }
    .service-name {
      font-family: var(--serif);
      font-size: 1.35rem;
      font-weight: 400;
      color: var(--black);
      margin-bottom: 0.75rem;
    }
    .service-desc {
      font-size: 0.875rem;
      color: var(--grey);
      line-height: 1.7;
    }

    /* ── Process ───────────────────────────────────── */
    .process {
      padding: 7rem 0;
      background: var(--emerald);
      color: var(--white);
    }
    .process .section-label { color: var(--gold-lt); margin-bottom: 0.75rem; }
    .process .section-title { color: var(--white); margin-bottom: 3.5rem; }
    .process .section-title em { color: var(--gold-lt); }
    .process-steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      border-top: 1px solid rgba(255,255,255,0.15);
    }
    .process-step {
      padding: 2.5rem 2rem 2.5rem 0;
      border-right: 1px solid rgba(255,255,255,0.15);
      position: relative;
    }
    .process-step:last-child { border-right: none; padding-right: 0; }
    .process-step:not(:first-child) { padding-left: 2rem; }
    .step-number {
      font-family: var(--serif);
      font-size: 3.5rem;
      font-weight: 300;
      color: rgba(255,255,255,0.15);
      line-height: 1;
      margin-bottom: 1rem;
    }
    .step-title {
      font-family: var(--serif);
      font-size: 1.2rem;
      font-weight: 400;
      color: var(--white);
      margin-bottom: 0.75rem;
    }
    .step-desc {
      font-size: 0.82rem;
      color: rgba(255,255,255,0.6);
      line-height: 1.7;
    }

    /* ── Why Us ────────────────────────────────────── */
    .why { padding: 7rem 0; }
    .why-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 6rem;
      align-items: center;
    }
    .why-visual {
      position: relative;
    }
    .why-bg-block {
      position: absolute;
      top: -2rem; left: -2rem;
      width: 60%;
      height: 60%;
      background: var(--emerald-lt);
      z-index: 0;
    }
    .why-image-card {
      position: relative;
      z-index: 1;
      background: var(--emerald);
      padding: 3rem;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      min-height: 420px;
      overflow: hidden;
    }
    .why-image-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse at 30% 70%, rgba(184,150,62,0.2) 0%, transparent 60%);
    }
    .why-logo-large {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -60%);
      width: 55%;
      opacity: 0.25;
      filter: brightness(2);
    }
    .why-card-quote {
      position: relative;
      z-index: 1;
      font-family: var(--serif);
      font-size: 1.3rem;
      font-style: italic;
      font-weight: 300;
      color: rgba(255,255,255,0.9);
      line-height: 1.5;
      border-left: 2px solid var(--gold);
      padding-left: 1.25rem;
    }
    .why-right .section-label { margin-bottom: 0.75rem; }
    .why-right .section-title { margin-bottom: 1.5rem; }
    .why-body {
      font-size: 0.9rem;
      color: var(--grey);
      line-height: 1.8;
      margin-bottom: 2.5rem;
    }
    .why-points { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2.5rem; }
    .why-point {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
    }
    .why-point-icon {
      flex-shrink: 0;
      width: 20px;
      height: 20px;
      margin-top: 2px;
      color: var(--gold);
    }
    .why-point-icon svg { width: 100%; height: 100%; }
    .why-point-text {
      font-size: 0.875rem;
      color: var(--charcoal);
      line-height: 1.6;
    }
    .why-point-text strong { color: var(--black); font-weight: 500; }

    /* ── Industries ────────────────────────────────── */
    .industries { padding: 7rem 0; background: var(--off-white); }
    .industries .section-header { margin-bottom: 3rem; }
    .industries-list {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: var(--border);
    }
    .industry-item {
      background: var(--white);
      padding: 2rem 2rem;
      display: flex;
      align-items: center;
      gap: 1rem;
      transition: background 0.25s;
      cursor: default;
    }
    .industry-item:hover { background: var(--emerald-lt); }
    .industry-dot {
      flex-shrink: 0;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--gold);
    }
    .industry-name {
      font-family: var(--serif);
      font-size: 1.05rem;
      font-weight: 400;
      color: var(--black);
    }

    /* ── CTA ───────────────────────────────────────── */
    .cta {
      padding: 7rem 0;
      text-align: center;
    }
    .cta .section-label { margin-bottom: 1rem; display: block; }
    .cta-headline {
      font-family: var(--serif);
      font-size: clamp(2.2rem, 4vw, 3.5rem);
      font-weight: 300;
      color: var(--black);
      margin-bottom: 1.25rem;
      line-height: 1.2;
    }
    .cta-headline em { font-style: italic; color: var(--emerald); }
    .cta-sub {
      font-size: 0.95rem;
      color: var(--grey);
      max-width: 520px;
      margin: 0 auto 2.5rem;
      line-height: 1.7;
    }
    .cta-actions { display: flex; justify-content: center; gap: 1rem; }

    /* ── Footer ────────────────────────────────────── */
    footer {
      background: var(--black);
      color: rgba(255,255,255,0.65);
      padding: 4rem 0 2rem;
    }
    .footer-top {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 3rem;
      padding-bottom: 3rem;
      border-bottom: 1px solid rgba(255,255,255,0.1);
      margin-bottom: 2rem;
    }
    .footer-brand-logo {
      display: flex;
      align-items: center;
      gap: 0.8rem;
      margin-bottom: 1rem;
    }
    .footer-logo-mark {
      width: 36px;
      height: 36px;
      object-fit: contain;
    }
    .footer-brand-name {
      font-family: var(--serif);
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--white);
    }
    .footer-tagline {
      font-size: 0.72rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1rem;
    }
    .footer-blurb {
      font-size: 0.82rem;
      line-height: 1.7;
      max-width: 280px;
    }
    .footer-col-title {
      font-size: 0.7rem;
      font-weight: 500;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--white);
      margin-bottom: 1.25rem;
    }
    .footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
    .footer-links a {
      font-size: 0.82rem;
      transition: color 0.2s;
    }
    .footer-links a:hover { color: var(--gold-lt); }
    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.75rem;
    }
    .footer-bottom-right {
      display: flex;
      gap: 1.5rem;
    }
    .footer-bottom-right a:hover { color: var(--gold-lt); }

    /* ── Hero name reveal ──────────────────────────── */
    .hero-name-wrap {
      margin-top: 2rem;
      text-align: center;
      line-height: 1.15;
      position: relative;
      z-index: 1;
    }
    .hero-name {
      font-family: var(--serif);
      font-size: clamp(1.3rem, 2.2vw, 1.75rem);
      font-weight: 300;
      letter-spacing: 0.04em;
      color: rgba(255,255,255,0.95);
      display: block;
    }
    /* The expanding bracket parts */
    .hero-name .em-prefix   { color: var(--gold-lt); font-weight: 600; }
    .hero-name .em-expand   {
      display: inline-block;
      overflow: hidden;
      max-width: 0;
      opacity: 0;
      white-space: nowrap;
      vertical-align: bottom;
      transition: max-width 0.7s cubic-bezier(0.4,0,0.2,1),
                  opacity   0.5s ease 0.15s;
      color: rgba(255,255,255,0.55);
      font-style: italic;
      font-size: 0.85em;
      font-weight: 300;
    }
    .hero-name .em-expand.open {
      max-width: 220px;
      opacity: 1;
    }
    .hero-tagline-hero {
      display: block;
      font-family: var(--sans);
      font-size: 0.65rem;
      font-weight: 400;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold);
      margin-top: 0.5rem;
      opacity: 0;
      transform: translateY(6px);
      transition: opacity 0.5s ease 0.6s, transform 0.5s ease 0.6s;
    }
    .hero-tagline-hero.open {
      opacity: 1;
      transform: none;
    }

    /* ── Scroll animations ─────────────────────────── */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: none;
    }

    /* ── Mobile ────────────────────────────────────── */
    @media (max-width: 900px) {
      .hero { grid-template-columns: 1fr; }
      .hero-left { padding: 5rem 0 3rem; }
      .hero-right { height: 50vw; min-height: 280px; }
      .stats-inner { grid-template-columns: repeat(2, 1fr); }
      .stat:nth-child(2) { border-right: none; }
      .services-grid { grid-template-columns: 1fr 1fr; }
      .service-card:nth-child(3n) { border-right: 1px solid var(--border); }
      .service-card:nth-child(2n) { border-right: none; }
      .process-steps { grid-template-columns: 1fr 1fr; }
      .why-inner { grid-template-columns: 1fr; gap: 3rem; }
      .why-visual { display: none; }
      .industries-list { grid-template-columns: 1fr 1fr; }
      .footer-top { grid-template-columns: 1fr 1fr; }
      .nav-links { display: none; }
    }
    @media (max-width: 560px) {
      .services-grid { grid-template-columns: 1fr; }
      .service-card { border-right: none; }
      .process-steps { grid-template-columns: 1fr; }
      .industries-list { grid-template-columns: 1fr; }
      .cta-actions { flex-direction: column; align-items: center; }
      .footer-top { grid-template-columns: 1fr; }
    }