/* DHI Commercial Growth Advisory — append to Zoho template style.css */
    :root {
      --ink: #101816;
      --ink-soft: #1b2623;
      --paper: #f3f0e9;
      --paper-deep: #e9e4da;
      --white: #fffdf8;
      --accent: #c9875d;
      --accent-dark: #9b5d3a;
      --sage: #87998f;
      --muted: #5e6965;
      --line: rgba(16, 24, 22, 0.16);
      --line-dark: rgba(255, 253, 248, 0.16);
      --serif: Iowan Old Style, Baskerville, "Times New Roman", Times, serif;
      --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      --wrap: min(1180px, calc(100% - 48px));
      --section: clamp(84px, 10vw, 152px);
      --radius: 2px;
    }

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

    html {
      scroll-behavior: smooth;
      scroll-padding-top: 90px;
    }

    body {
      margin: 0;
      color: var(--ink);
      background: var(--paper);
      font-family: var(--sans);
      font-size: 16px;
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }

    body.nav-open { overflow: hidden; }

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

    a { color: inherit; }

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

    button, input, textarea, select { font: inherit; }

    button, a { -webkit-tap-highlight-color: transparent; }

    :focus-visible {
      outline: 3px solid var(--accent);
      outline-offset: 4px;
    }

    .skip-link {
      position: fixed;
      z-index: 1000;
      top: 12px;
      left: 12px;
      padding: 10px 14px;
      color: var(--ink);
      background: var(--white);
      transform: translateY(-160%);
      transition: transform 180ms ease;
    }

    .skip-link:focus { transform: translateY(0); }

    .wrap { width: var(--wrap); margin-inline: auto; }

    .section { padding-block: var(--section); }

    .section--dark { color: var(--white); background: var(--ink); }

    .section--deep { color: var(--white); background: var(--ink-soft); }

    .section--white { background: var(--white); }

    .eyebrow {
      display: flex;
      align-items: center;
      gap: 12px;
      margin: 0 0 24px;
      color: var(--accent-dark);
      font-size: 0.72rem;
      font-weight: 750;
      letter-spacing: 0.18em;
      line-height: 1.35;
      text-transform: uppercase;
    }

    .section--dark .eyebrow,
    .section--deep .eyebrow { color: var(--accent); }

    .eyebrow::before {
      width: 34px;
      height: 1px;
      content: "";
      background: currentColor;
    }

    h1, h2, h3, p { margin-top: 0; }

    h1, h2, .display {
      font-family: var(--serif);
      font-weight: 400;
      letter-spacing: -0.035em;
      line-height: 0.98;
    }

    h1 {
      max-width: 890px;
      margin-bottom: 30px;
      font-size: clamp(3.75rem, 5.55vw, 5rem);
    }

    h2 {
      max-width: 880px;
      margin-bottom: 28px;
      font-size: clamp(2.65rem, 5.8vw, 5.3rem);
    }

    h3 {
      margin-bottom: 14px;
      font-size: clamp(1.25rem, 2vw, 1.55rem);
      font-weight: 600;
      line-height: 1.24;
    }

    p:last-child { margin-bottom: 0; }

    .lead {
      max-width: 720px;
      color: var(--muted);
      font-size: clamp(1.12rem, 2vw, 1.38rem);
      line-height: 1.55;
    }

    .section--dark .lead,
    .section--deep .lead { color: rgba(255, 253, 248, 0.72); }

    .kicker {
      max-width: 680px;
      color: rgba(255, 253, 248, 0.76);
      font-size: clamp(1.16rem, 2vw, 1.42rem);
    }

    .muted { color: var(--muted); }

    .button-row {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 38px;
    }

    .button {
      display: inline-flex;
      min-height: 52px;
      align-items: center;
      justify-content: center;
      gap: 18px;
      padding: 14px 20px;
      border: 1px solid transparent;
      border-radius: var(--radius);
      font-size: 0.76rem;
      font-weight: 750;
      letter-spacing: 0.11em;
      line-height: 1.2;
      text-align: center;
      text-decoration: none;
      text-transform: uppercase;
      transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
    }

    .button:hover { transform: translateY(-2px); }

    .button--accent { color: var(--ink); background: var(--accent); }

    .button--accent:hover { background: #d89a73; }

    .button--ghost { color: var(--white); border-color: var(--line-dark); }

    .button--ghost:hover { border-color: var(--white); }

    .button--dark { color: var(--white); background: var(--ink); }

    .button--dark:hover { background: var(--ink-soft); }

    .text-link {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: inherit;
      font-size: 0.76rem;
      font-weight: 750;
      letter-spacing: 0.1em;
      text-decoration: none;
      text-transform: uppercase;
    }

    .text-link span { color: var(--accent-dark); transition: transform 180ms ease; }
    .text-link:hover span { transform: translateX(5px); }

    /* Navigation */
    .site-header {
      position: sticky;
      z-index: 100;
      top: 0;
      height: 76px;
      color: var(--white);
      background: rgba(16, 24, 22, 0.94);
      border-bottom: 1px solid var(--line-dark);
      backdrop-filter: blur(14px);
    }

    .nav {
      display: flex;
      width: var(--wrap);
      height: 100%;
      align-items: center;
      justify-content: space-between;
      margin-inline: auto;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 13px;
      color: var(--white);
      text-decoration: none;
    }

    .brand-mark {
      display: grid;
      width: 40px;
      height: 40px;
      place-items: center;
      border: 1px solid var(--accent);
      color: var(--accent);
      font-family: var(--serif);
      font-size: 1.1rem;
      letter-spacing: -0.08em;
    }

    .brand-text { line-height: 1.15; }
    .brand-text strong { display: block; font-size: 0.86rem; letter-spacing: 0.14em; }
    .brand-text small { display: block; margin-top: 4px; color: rgba(255, 253, 248, 0.6); font-size: 0.61rem; letter-spacing: 0.1em; text-transform: uppercase; }

    .nav-links { display: flex; align-items: center; gap: clamp(18px, 2.2vw, 32px); }

    .nav-links a {
      color: rgba(255, 253, 248, 0.72);
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-decoration: none;
      text-transform: uppercase;
      transition: color 160ms ease;
    }

    .nav-links a:hover,
    .nav-links a[aria-current="true"] { color: var(--white); }

    .nav-links .nav-cta {
      padding: 11px 15px;
      border: 1px solid var(--accent);
      color: var(--accent);
    }

    .menu-toggle {
      display: none;
      width: 46px;
      height: 46px;
      padding: 12px;
      border: 0;
      color: var(--white);
      background: transparent;
      cursor: pointer;
    }

    .menu-toggle span {
      display: block;
      width: 100%;
      height: 1px;
      margin: 6px 0;
      background: currentColor;
      transition: transform 180ms ease, opacity 180ms ease;
    }

    .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(7px) rotate(45deg); }
    .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-7px) rotate(-45deg); }

    /* Hero */
    .hero {
      min-height: calc(100svh - 76px);
      padding-block: clamp(90px, 12vw, 158px) 72px;
      color: var(--white);
      background: var(--ink);
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(230px, 0.33fr);
      gap: clamp(48px, 5.5vw, 80px);
      align-items: end;
    }

    .hero h1 span { color: var(--accent); }

    .hero-aside {
      padding-top: 28px;
      border-top: 1px solid var(--line-dark);
    }

    .signal {
      display: grid;
      grid-template-columns: 34px 1fr;
      gap: 14px;
      padding: 18px 0;
      border-bottom: 1px solid var(--line-dark);
    }

    .signal-number { color: var(--accent); font-family: var(--serif); font-size: 1.15rem; }
    .signal strong { display: block; margin-bottom: 2px; font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; }
    .signal span:last-child { color: rgba(255, 253, 248, 0.58); font-size: 0.86rem; }

    .hero-foot {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      margin-top: clamp(72px, 10vw, 132px);
      padding-top: 22px;
      border-top: 1px solid var(--line-dark);
      color: rgba(255, 253, 248, 0.52);
      font-size: 0.68rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }

    .scroll-cue { text-decoration: none; }

    /* Problem */
    .split {
      display: grid;
      grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
      gap: clamp(58px, 10vw, 150px);
      align-items: start;
    }

    .problem-copy p { max-width: 650px; color: var(--muted); }

    .question-list { margin-top: 42px; border-top: 1px solid var(--line); }

    .question {
      display: grid;
      grid-template-columns: 34px 1fr;
      gap: 16px;
      padding: 18px 0;
      border-bottom: 1px solid var(--line);
    }

    .question span { color: var(--accent-dark); font-family: var(--serif); font-size: 1.2rem; }
    .question p { margin: 0; color: var(--ink); font-size: 0.96rem; font-weight: 550; }

    .pull-quote {
      margin: 0;
      padding: clamp(34px, 5vw, 58px);
      color: var(--white);
      background: var(--ink-soft);
      font-family: var(--serif);
      font-size: clamp(2rem, 4vw, 3.5rem);
      letter-spacing: -0.03em;
      line-height: 1.08;
    }

    .pull-quote::before {
      display: block;
      width: 48px;
      height: 2px;
      margin-bottom: 28px;
      content: "";
      background: var(--accent);
    }

    /* Cards and grids */
    .section-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 40px;
      margin-bottom: clamp(44px, 7vw, 82px);
    }

    .section-head h2 { margin-bottom: 0; }
    .section-head .lead { max-width: 430px; margin-bottom: 5px; }

    .card-grid { display: grid; gap: 1px; background: var(--line); }
    .card-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .card-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

    .card {
      min-height: 300px;
      padding: clamp(28px, 3.2vw, 42px);
      background: var(--paper);
    }

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

    .card-number {
      display: block;
      margin-bottom: clamp(48px, 7vw, 92px);
      color: var(--accent-dark);
      font-family: var(--serif);
      font-size: 1.3rem;
    }

    .card-label {
      display: block;
      margin-bottom: 12px;
      color: var(--accent-dark);
      font-size: 0.68rem;
      font-weight: 750;
      letter-spacing: 0.13em;
      text-transform: uppercase;
    }

    .card p { margin-bottom: 0; color: var(--muted); font-size: 0.94rem; }

    .expertise-card {
      display: flex;
      min-height: 560px;
      flex-direction: column;
      padding: clamp(30px, 4vw, 50px);
      background: var(--white);
    }

    .expertise-card:nth-child(2) { background: var(--paper-deep); }

    .expertise-card .card-number { margin-bottom: auto; }
    .expertise-card h3 { max-width: 270px; font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.7rem); font-weight: 400; letter-spacing: -0.025em; }

    .tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }

    .tag {
      padding: 7px 10px;
      border: 1px solid var(--line);
      color: var(--muted);
      font-size: 0.66rem;
      font-weight: 650;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

    /* Services */
    .service-list { border-top: 1px solid var(--line-dark); }

    .service {
      display: grid;
      grid-template-columns: 80px minmax(210px, 0.75fr) minmax(300px, 1.1fr);
      gap: clamp(24px, 5vw, 70px);
      padding: clamp(34px, 5vw, 64px) 0;
      border-bottom: 1px solid var(--line-dark);
    }

    .service-index { color: var(--accent); font-family: var(--serif); font-size: 1.35rem; }
    .service h3 { margin-bottom: 10px; color: var(--white); font-family: var(--serif); font-size: clamp(1.75rem, 3vw, 2.65rem); font-weight: 400; letter-spacing: -0.02em; }
    .service-title p { color: rgba(255, 253, 248, 0.66); }
    .service-body > p { color: rgba(255, 253, 248, 0.7); }

    .service-meta {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      margin: 28px 0 30px;
      padding-top: 22px;
      border-top: 1px solid var(--line-dark);
    }

    .service-meta small { display: block; margin-bottom: 7px; color: var(--accent); font-size: 0.64rem; font-weight: 750; letter-spacing: 0.12em; text-transform: uppercase; }
    .service-meta span { color: var(--white); font-size: 0.9rem; }

    .principles {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1px;
      margin-top: 1px;
      background: var(--line-dark);
    }

    .principle { padding: 34px 26px; background: var(--ink-soft); }
    .principle strong { display: block; margin-bottom: 8px; color: var(--accent); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; }
    .principle span { color: rgba(255, 253, 248, 0.68); font-size: 0.88rem; }

    /* Client / pain */
    .client-card { min-height: 340px; }
    .client-card h3 { font-family: var(--serif); font-size: 2rem; font-weight: 400; letter-spacing: -0.02em; }

    .pain-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1px;
      background: var(--line);
    }

    .pain {
      display: flex;
      min-height: 190px;
      align-items: flex-start;
      gap: 18px;
      padding: clamp(28px, 4vw, 44px);
      background: var(--white);
      font-family: var(--serif);
      font-size: clamp(1.35rem, 2.4vw, 2rem);
      letter-spacing: -0.02em;
      line-height: 1.25;
    }

    .pain span { color: var(--accent-dark); font-size: 1rem; }

    .pain-closing {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 38px;
      margin-top: 48px;
      padding-top: 30px;
      border-top: 1px solid var(--line);
    }

    .pain-closing p { max-width: 730px; margin: 0; font-size: 1.1rem; }

    /* Approach */
    .approach-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      border-top: 1px solid var(--line-dark);
      border-bottom: 1px solid var(--line-dark);
    }

    .step {
      min-height: 330px;
      padding: 34px 28px;
      border-right: 1px solid var(--line-dark);
    }

    .step:last-child { border-right: 0; }
    .step-number { display: block; margin-bottom: 78px; color: var(--accent); font-family: var(--serif); font-size: 1.3rem; }
    .step h3 { color: var(--white); font-family: var(--serif); font-size: 2rem; font-weight: 400; }
    .step p { color: rgba(255, 253, 248, 0.62); font-size: 0.93rem; }

    .approach-close {
      margin: clamp(58px, 8vw, 102px) 0 0;
      color: var(--white);
      font-family: var(--serif);
      font-size: clamp(3rem, 7.5vw, 7rem);
      letter-spacing: -0.045em;
      line-height: 0.95;
    }

    .approach-close span { color: var(--accent); }

    /* About / leadership */
    .about-copy { max-width: 720px; }
    .about-copy p { color: var(--muted); font-size: 1.03rem; }

    .about-aside { border-top: 1px solid var(--line); }

    .about-point { padding: 22px 0; border-bottom: 1px solid var(--line); }
    .about-point strong { display: block; margin-bottom: 5px; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; }
    .about-point span { color: var(--muted); font-size: 0.9rem; }

    .highlight {
      margin-top: 48px;
      padding: 32px 0 0 34px;
      border-top: 1px solid var(--line);
      border-left: 3px solid var(--accent);
      font-family: var(--serif);
      font-size: clamp(1.8rem, 3vw, 2.7rem);
      letter-spacing: -0.025em;
      line-height: 1.18;
    }

    .leadership-grid {
      display: grid;
      grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
      gap: clamp(52px, 9vw, 130px);
      align-items: stretch;
    }

    .leadership-panel {
      display: flex;
      min-height: 460px;
      flex-direction: column;
      justify-content: space-between;
      padding: clamp(30px, 4vw, 48px);
      border: 1px solid var(--line-dark);
      background: rgba(255, 255, 255, 0.025);
    }

    .leadership-panel .leadership-monogram { color: var(--accent); font-family: var(--serif); font-size: clamp(3.8rem, 7vw, 6.4rem); font-weight: 400; letter-spacing: -0.06em; line-height: 0.8; text-transform: none; }
    .leadership-panel strong { display: block; margin-bottom: 6px; font-family: var(--serif); font-size: 2.1rem; font-weight: 400; }
    .leadership-panel span { color: rgba(255, 253, 248, 0.58); font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; }

    .leadership-copy h2 { max-width: 580px; }
    .leadership-copy > p { max-width: 680px; color: rgba(255, 253, 248, 0.68); }

    .experience-strip {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 48px;
    }

    .experience-strip div { padding-top: 20px; border-top: 1px solid var(--line-dark); }
    .experience-strip strong { display: block; margin-bottom: 7px; color: var(--white); font-size: 0.78rem; line-height: 1.35; }
    .experience-strip span { color: rgba(255, 253, 248, 0.5); font-size: 0.76rem; line-height: 1.45; }

    /* CTA */
    .cta {
      position: relative;
      overflow: hidden;
      padding-block: clamp(98px, 14vw, 190px);
      color: var(--white);
      background: var(--ink);
    }

    .cta::after {
      position: absolute;
      right: -90px;
      bottom: -250px;
      width: 480px;
      height: 480px;
      border: 1px solid var(--line-dark);
      border-radius: 50%;
      content: "";
    }

    .cta h2 { max-width: 930px; }
    .cta .lead { max-width: 660px; }
    .confidential { margin-top: 20px; color: rgba(255, 253, 248, 0.48); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; }

    /* Form */
    .contact-grid {
      display: grid;
      grid-template-columns: minmax(260px, 0.66fr) minmax(0, 1.34fr);
      gap: clamp(54px, 9vw, 140px);
      align-items: start;
    }

    .contact-aside { position: sticky; top: 110px; }
    .contact-aside h2 { font-size: clamp(2.7rem, 5vw, 4.7rem); }

    .contact-note {
      margin-top: 38px;
      padding-top: 20px;
      border-top: 1px solid var(--line);
      color: var(--muted);
      font-size: 0.84rem;
    }

    .contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 26px 20px; }

    .field { display: flex; flex-direction: column; gap: 8px; }
    .field--wide { grid-column: 1 / -1; }

    .field label {
      font-size: 0.68rem;
      font-weight: 750;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }

    .field label span { color: var(--muted); font-weight: 500; letter-spacing: 0; text-transform: none; }

    .field input,
    .field select,
    .field textarea {
      width: 100%;
      min-height: 54px;
      padding: 13px 0;
      border: 0;
      border-bottom: 1px solid #abb0ad;
      border-radius: 0;
      color: var(--ink);
      background: transparent;
      font-size: 1rem;
      transition: border-color 160ms ease;
    }

    .field textarea { min-height: 150px; resize: vertical; }
    .field input:focus,
    .field select:focus,
    .field textarea:focus { outline: 0; border-color: var(--accent-dark); }

    .consent {
      display: grid;
      grid-column: 1 / -1;
      grid-template-columns: 20px 1fr;
      gap: 12px;
      align-items: start;
      color: var(--muted);
      font-size: 0.82rem;
      line-height: 1.5;
    }

    .consent input { width: 18px; height: 18px; margin: 2px 0 0; accent-color: var(--accent-dark); }

    .form-actions {
      display: flex;
      grid-column: 1 / -1;
      flex-wrap: wrap;
      align-items: center;
      gap: 18px;
      margin-top: 8px;
    }

    .form-actions button { border: 0; cursor: pointer; }
    .form-help { max-width: 380px; margin: 0; color: var(--muted); font-size: 0.76rem; }

    .form-status {
      display: none;
      grid-column: 1 / -1;
      margin: 0;
      padding: 14px 16px;
      border-left: 3px solid var(--accent-dark);
      background: var(--paper-deep);
      font-size: 0.88rem;
    }

    .form-status.is-visible { display: block; }

    /* Legal notice */
    .legal { background: var(--paper-deep); }

    .legal-grid {
      display: grid;
      grid-template-columns: minmax(260px, 0.66fr) minmax(0, 1.34fr);
      gap: clamp(54px, 9vw, 140px);
      align-items: start;
    }

    .legal h2 { font-size: clamp(2.7rem, 5vw, 4.7rem); }

    .legal-details {
      max-width: 720px;
      padding-top: 8px;
    }

    .legal-details h3 {
      margin-bottom: 24px;
      color: var(--ink) !important;
      font-family: var(--serif);
      font-size: clamp(1.55rem, 2.5vw, 2.1rem);
      font-weight: 400;
      letter-spacing: -0.02em;
    }

    .legal-details address {
      margin-bottom: 34px;
      color: var(--muted);
      font-style: normal;
    }

    .legal-list {
      display: grid;
      gap: 0;
      border-top: 1px solid var(--line);
    }

    .legal-row {
      display: grid;
      grid-template-columns: minmax(150px, 0.42fr) minmax(0, 1fr);
      gap: 24px;
      padding: 18px 0;
      border-bottom: 1px solid var(--line);
    }

    .legal-row dt {
      font-size: 0.68rem;
      font-weight: 750;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }

    .legal-row dd { margin: 0; color: var(--muted); }
    .legal-row a { color: var(--ink); text-underline-offset: 3px; }

    /* Footer */
    .footer {
      padding-block: 58px 30px;
      color: var(--white);
      background: var(--ink);
    }

    .footer-main {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 50px;
      align-items: start;
      padding-bottom: 54px;
      border-bottom: 1px solid var(--line-dark);
    }

    .footer-brand { max-width: 430px; }
    .footer-brand strong { display: block; margin-bottom: 10px; font-family: var(--serif); font-size: 2.3rem; font-weight: 400; }
    .footer-brand p { color: rgba(255, 253, 248, 0.58); }

    .footer-links { display: grid; grid-template-columns: repeat(2, auto); gap: 10px 42px; }
    .footer-links a { color: rgba(255, 253, 248, 0.68); font-size: 0.76rem; letter-spacing: 0.08em; text-decoration: none; text-transform: uppercase; }
    .footer-links a:hover { color: var(--white); }

    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      padding-top: 28px;
      color: rgba(255, 253, 248, 0.38);
      font-size: 0.68rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    @media (max-width: 1020px) {
      .card-grid--4 { grid-template-columns: repeat(2, 1fr); }
      .card-grid--3 { grid-template-columns: 1fr; }
      .expertise-card { min-height: 430px; }
      .service { grid-template-columns: 58px minmax(190px, 0.7fr) minmax(260px, 1.3fr); }
      .principles { grid-template-columns: repeat(2, 1fr); }
      .approach-grid { grid-template-columns: repeat(2, 1fr); }
      .step:nth-child(2) { border-right: 0; }
      .step:nth-child(-n+2) { border-bottom: 1px solid var(--line-dark); }
    }

    @media (max-width: 840px) {
      :root { --wrap: min(100% - 36px, 1180px); }
      .menu-toggle { display: block; }
      .nav-links {
        position: fixed;
        inset: 76px 0 auto;
        display: grid;
        max-height: 0;
        gap: 0;
        overflow: hidden;
        visibility: hidden;
        background: var(--ink);
        border-bottom: 1px solid var(--line-dark);
        opacity: 0;
        transition: max-height 260ms ease, opacity 180ms ease, visibility 180ms ease;
      }

      .nav-links.is-open { max-height: calc(100svh - 76px); visibility: visible; opacity: 1; }
      .nav-links a { padding: 18px 24px; border-top: 1px solid var(--line-dark); }
      .nav-links .nav-cta { margin: 18px 24px 26px; text-align: center; }

      .hero-grid,
      .split,
      .leadership-grid,
      .contact-grid,
      .legal-grid { grid-template-columns: 1fr; }

      .hero-aside { max-width: 520px; }
      .section-head { display: block; }
      .section-head .lead { margin-top: 24px; }
      .pull-quote { order: -1; }
      .service { grid-template-columns: 46px 1fr; }
      .service-body { grid-column: 2; }
      .contact-aside { position: static; }
      .footer-main { grid-template-columns: 1fr; }
    }

    @media (max-width: 620px) {
      :root { --wrap: min(100% - 28px, 1180px); --section: 78px; }
      .brand-text small { display: none; }
      h1 { font-size: clamp(3rem, 13vw, 4rem); }
      h2 { font-size: clamp(2.55rem, 13vw, 4rem); }
      .hero { padding-top: 76px; }
      .hero-foot { align-items: flex-start; flex-direction: column; }
      .button-row { align-items: stretch; flex-direction: column; }
      .button { width: 100%; }
      .card-grid--4,
      .principles,
      .pain-grid,
      .approach-grid,
      .experience-strip,
      .contact-form { grid-template-columns: 1fr; }
      .card { min-height: 250px; }
      .expertise-card { min-height: 400px; }
      .service { grid-template-columns: 1fr; }
      .service-title,
      .service-body { grid-column: 1; }
      .service-meta { grid-template-columns: 1fr; gap: 16px; }
      .pain { min-height: 150px; }
      .pain-closing { align-items: flex-start; flex-direction: column; }
      .step { min-height: 260px; border-right: 0; border-bottom: 1px solid var(--line-dark); }
      .step:last-child { border-bottom: 0; }
      .step-number { margin-bottom: 44px; }
      .leadership-panel { min-height: 360px; }
      .field--wide,
      .consent,
      .form-actions,
      .form-status { grid-column: 1; }
      .footer-links { grid-template-columns: 1fr 1fr; }
      .footer-bottom { align-items: flex-start; flex-direction: column; }
      .legal-row { grid-template-columns: 1fr; gap: 7px; }
    }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; }
    }

    /* Protect DHI typography and indexes from Zoho template overrides */
    #main-content h1,
    #main-content h2,
    #main-content h3 { margin-top: 0 !important; text-transform: none !important; }

    #home h1 {
      color: var(--white) !important;
      font-family: var(--serif) !important;
      font-weight: 400 !important;
      line-height: 0.98 !important;
      letter-spacing: -0.035em !important;
    }

    #home h1 span { color: var(--accent) !important; }

    #main-content .section h2 {
      color: var(--ink) !important;
      font-family: var(--serif) !important;
      font-weight: 400 !important;
      line-height: 0.98 !important;
      letter-spacing: -0.035em !important;
    }

    #main-content .section--dark h2,
    #main-content .section--deep h2,
    #main-content .cta h2 { color: var(--white) !important; }

    #main-content .card h3,
    #main-content .expertise-card h3,
    #main-content .client-card h3 { color: var(--ink) !important; }

    #main-content .section--dark h3,
    #main-content .section--deep h3 { color: var(--white) !important; }

    #main-content .eyebrow { color: var(--accent-dark) !important; }

    #main-content .section--dark .eyebrow,
    #main-content .section--deep .eyebrow,
    #main-content .cta .eyebrow { color: var(--accent) !important; }

    #main-content .pain { display: flex !important; align-items: flex-start !important; gap: 18px !important; }

    #main-content .pain > span:first-child {
      display: block !important;
      flex: 0 0 30px !important;
      width: 30px !important;
      min-width: 30px !important;
      white-space: nowrap !important;
      word-break: normal !important;
      overflow-wrap: normal !important;
      writing-mode: horizontal-tb !important;
      line-height: 1.2 !important;
      letter-spacing: 0 !important;
      color: var(--accent-dark) !important;
    }

    @media print {
      .site-header, .skip-link, .button-row, .contact-form { display: none !important; }
      .section, .cta { padding-block: 42px; }
      body, .section--dark, .section--deep, .cta, .footer { color: #000; background: #fff; }
      .section--dark p, .section--deep p, .service-title p, .service-body > p, .step p, .leadership-copy > p { color: #333; }
      #main-content h1, #main-content h2, #main-content h3, #home h1 span { color: #000 !important; }
    }
  
