/* =========================================================
     Page-level layout
     ========================================================= */
  * { box-sizing: border-box; }
  /* HubSpot landing pages don't set overflow-x:hidden on html, so we
     set it on both html and body to prevent any negative-margin or
     viewport-wide hero element from triggering a horizontal scrollbar. */
  html, body { margin: 0; padding: 0; overflow-x: hidden; max-width: 100vw; }
  body {
    background: var(--bg-canvas);
    color: var(--fg-2);
  }
  ::selection { background: var(--vt-green-200); color: var(--vt-ink-900); }

  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: var(--s-7);
    padding-right: var(--s-7);
  }
  .container--narrow { max-width: 880px; }

  /* =========================================================
     Header — quiet, single-page (no top nav)
     ========================================================= */
  .site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(251, 250, 247, 0.86);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-1);
  }
  .site-header__inner {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 76px;
    padding-bottom: 14px;
  }
  .brand {
    display: flex;
    align-items: flex-end;
    gap: var(--s-3);
    text-decoration: none;
  }
  .brand img { width: auto; height: 36px; display: block; }
  .brand__name {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 18px;
    color: var(--fg-1);
    letter-spacing: -0.01em;
    font-variation-settings: "opsz" var(--opsz-text);
    /* Tight line so the text's baseline sits at the bottom of the line box,
       aligning with the bottom of the sprout image and the CTA's underline. */
    line-height: 1;
    /* Visually nudge baseline to the absolute bottom edge */
    transform: translateY(2px);
  }
  .brand__name em {
    font-style: normal;
    color: var(--fg-3);
    font-weight: 400;
  }
  .site-header__cta {
    font-family: var(--font-sans);
    font-size: 14px;
    color: var(--fg-1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 0 4px;
    border-bottom: 1px solid var(--vt-green-600);
    transition: color var(--dur-2) var(--ease-standard),
                border-color var(--dur-2) var(--ease-standard);
  }
  .site-header__cta:hover { color: var(--vt-green-700); border-color: var(--vt-green-700); }
  .site-header__cta svg { width: 12px; height: 12px; stroke: currentColor; stroke-width: 1.5; fill: none; }

  /* =========================================================
     Buttons
     ========================================================= */
  .btn {
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 500;
    padding: 14px 22px;
    border-radius: var(--r-md);
    border: 1px solid transparent;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    line-height: 1;
    transition: background var(--dur-2) var(--ease-standard),
                border-color var(--dur-2) var(--ease-standard),
                box-shadow var(--dur-2) var(--ease-standard),
                color var(--dur-2) var(--ease-standard);
  }
  .btn .arrow {
    width: 14px; height: 14px;
    stroke: currentColor; stroke-width: 1.5; fill: none;
    stroke-linecap: round; stroke-linejoin: round;
    transition: transform var(--dur-2) var(--ease-standard);
  }
  .btn:hover .arrow { transform: translateX(2px); }
  .btn--primary {
    background: var(--vt-green-700);
    color: #fff;
    box-shadow: 0 1px 0 rgba(78,120,38,0.35) inset,
                0 6px 14px -4px rgba(78,120,38,0.40),
                0 2px 4px rgba(23,25,27,0.06);
  }
  .btn--primary:hover {
    background: var(--vt-green-800);
    box-shadow: 0 1px 0 rgba(78,120,38,0.45) inset,
                0 8px 18px -4px rgba(78,120,38,0.50),
                0 3px 6px rgba(23,25,27,0.08);
  }
  .btn--secondary {
    background: transparent;
    color: var(--fg-1);
    border-color: var(--vt-ink-300);
  }
  .btn--secondary:hover { border-color: var(--fg-1); }

  /* =========================================================
     HERO — rotating proposition
     ========================================================= */
  .hero {
    padding: 120px 0 var(--s-9);
    border-bottom: 1px solid var(--border-1);
    position: relative;
    overflow: hidden;
  }
  .hero__inner {
    max-width: 1040px;
    margin: 0 auto;
    padding-left: var(--s-7);
    padding-right: var(--s-7);
  }
  .hero__eyebrow {
    margin-bottom: var(--s-7);
    display: inline-flex;
    align-items: center;
    gap: 12px;
  }
  .hero__eyebrow::before {
    content: '';
    width: 28px; height: 1px;
    background: var(--vt-green-600);
  }
  .hero__headline {
    font-family: var(--font-banner);
    font-weight: 500;
    font-size: clamp(44px, 6.4vw, 88px);
    line-height: 1.06;
    letter-spacing: -0.012em;
    color: var(--fg-1);
    font-variation-settings: "opsz" var(--opsz-banner);
    margin: 0 0 var(--s-6);
    text-wrap: balance;
  }
  .hero__lead {
    display: block;
    color: var(--fg-1);
  }
  /* Rotating ending: relative wrapper sized to fit the longest phrase */
  .hero__rotator {
    position: relative;
    display: block;
    color: var(--vt-green-700);
    /* Use explicit line-height (overrides headline's tight 1.06) so the j/g
       descenders sit fully inside the line box. */
    line-height: 1.18;
    /* Reserve enough vertical space for the line + descender clearance */
    min-height: 1.18em;
    padding-bottom: 0.12em;
  }
  .hero__rotator-sizer {
    visibility: hidden;
    pointer-events: none;
    color: transparent;
  }
  .hero__phrase {
    position: absolute;
    inset: 0;
    color: var(--vt-green-700);
    /* Initial opacity/transform set by JS (inline style). Fallback below
       in case JS is disabled — first phrase visible, others hidden. */
    transition: opacity 600ms var(--ease-standard),
                transform 600ms var(--ease-standard);
    font-variation-settings: "opsz" var(--opsz-banner);
    pointer-events: none;
  }
  /* JS-disabled fallback: only the active phrase is visible */
  .hero__phrase:not([data-state="active"]):not([style]) {
    opacity: 0;
  }

  /* Rotating paragraph beneath */
  .hero__para-stage {
    position: relative;
    margin-top: var(--s-7);
    min-height: 5.5em;
    max-width: 58ch;
  }
  .hero__para {
    position: absolute;
    inset: 0;
    font-family: var(--font-sans);
    font-size: clamp(18px, 1.5vw, 21px);
    line-height: 1.55;
    color: var(--fg-2);
    margin: 0;
    /* Initial opacity/transform set by JS (inline style). */
    transition: opacity 500ms var(--ease-standard),
                transform 500ms var(--ease-standard);
    font-variation-settings: "opsz" var(--opsz-deck);
    text-wrap: pretty;
  }
  /* JS-disabled fallback */
  .hero__para:not([data-state="active"]):not([style]) {
    opacity: 0;
  }

  /* Rotation indicator — three quiet ticks */
  .hero__ticks {
    margin-top: var(--s-7);
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .hero__tick {
    appearance: none;
    border: 0;
    background: transparent;
    padding: 8px 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--fg-4);
    font-variation-settings: "opsz" var(--opsz-micro);
    transition: color var(--dur-2);
  }
  .hero__tick::before {
    content: '';
    width: 28px; height: 1px;
    background: var(--vt-ink-300);
    transition: background var(--dur-3) var(--ease-standard),
                width var(--dur-3) var(--ease-standard);
  }
  .hero__tick.is-active { color: var(--fg-1); }
  .hero__tick.is-active::before {
    background: var(--vt-green-700);
    width: 44px;
  }
  .hero__tick:hover { color: var(--fg-2); }

  .hero__sub {
    margin-top: var(--s-9);
    padding-top: var(--s-6);
    border-top: 1px solid var(--border-1);
    font-family: var(--font-sans);
    font-size: 17px;
    color: var(--fg-3);
    max-width: 60ch;
    font-variation-settings: "opsz" var(--opsz-text);
    line-height: 1.5;
  }

  /* Subtle leaf watermark in hero corner */
  .hero__leaf {
    position: absolute;
    right: -40px;
    bottom: -60px;
    width: 360px;
    height: auto;
    opacity: 0.045;
    pointer-events: none;
    transform: rotate(-8deg);
  }

  @media (prefers-reduced-motion: reduce) {
    /* Disable transitions but DO NOT override layout / opacity —
       the rotator's data-state attributes still drive what's visible.
       JS bails out early in reduced-motion, so the initial active
       phrase + paragraph stay shown and ticks remain interactive. */
    .hero__phrase,
    .hero__para {
      transition: none;
    }
  }

  /* =========================================================
     Section primitives
     ========================================================= */
  .section {
    padding: var(--s-10) 0;
    border-bottom: 1px solid var(--border-1);
  }
  .section--paper-dim { background: var(--vt-ink-100); }
  .section--narrow { padding: var(--s-9) 0; }

  /* Dark slate variant for vertical breakup */
  .section--dark {
    background: var(--vt-slate-900);
    color: var(--fg-on-dark-1);
    border-bottom: 0;
    position: relative;
    overflow: hidden;
  }
  .section--dark::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--vt-green-600), transparent 40%);
  }
  .section--dark .section-head__title { color: #fff; }
  .section--dark .services { border-top-color: var(--border-on-dark); }
  .section--dark .service { border-right-color: var(--border-on-dark); }
  .section--dark .service__num { color: var(--vt-green-300); }
  .section--dark .service__title { color: #fff; }
  .section--dark .service__outcome { color: var(--vt-green-300); }
  .section--dark .service__body { color: var(--fg-on-dark-2); }

  .section-head--single { grid-template-columns: 1fr; }

  .section-head {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: var(--s-7);
    margin-bottom: var(--s-8);
  }
  .section-head__label .num {
    font-family: var(--font-display);
    font-size: 13px;
    color: var(--vt-green-700);
    font-feature-settings: "tnum";
    letter-spacing: 0.04em;
  }
  .section-head__title {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(30px, 3.2vw, 42px);
    line-height: 1.18;
    letter-spacing: -0.005em;
    color: var(--fg-1);
    margin: 0;
    max-width: 22ch;
    font-variation-settings: "opsz" var(--opsz-display);
    text-wrap: balance;
  }
  .section-head__title--wide {
    max-width: none;
    white-space: nowrap;
    text-wrap: nowrap;
  }

  /* =========================================================
     What we do — three blocks
     ========================================================= */
  .services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--border-1);
  }
  .service {
    padding: var(--s-7) var(--s-6) var(--s-6) 0;
    border-right: 1px solid var(--border-1);
  }
  .service:last-child { border-right: 0; padding-right: 0; }
  .service:not(:first-child) { padding-left: var(--s-6); }
  .service__num {
    font-family: var(--font-display);
    font-size: 12px;
    color: var(--vt-green-700);
    letter-spacing: 0.06em;
    font-feature-settings: "tnum";
    margin-bottom: var(--s-5);
  }
  .service__title {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 30px;
    color: var(--fg-1);
    line-height: 1.18;
    letter-spacing: -0.005em;
    margin: 0 0 var(--s-3);
    font-variation-settings: "opsz" var(--opsz-deck);
  }
  .service__outcome {
    font-family: var(--font-sans);
    font-size: 16px;
    color: var(--vt-green-700);
    line-height: 1.4;
    margin: 0 0 var(--s-4);
    font-variation-settings: "opsz" var(--opsz-text);
    text-wrap: balance;
  }
  .service__body {
    font-size: 15px;
    color: var(--fg-3);
    line-height: 1.65;
    margin: 0;
  }

  /* =========================================================
     Who we serve — quiet single paragraph
     ========================================================= */
  .serve {
    text-align: center;
    max-width: 78ch;
    margin: 0 auto;
  }
  .serve__eyebrow {
    margin-bottom: var(--s-6);
    color: var(--fg-3);
    display: inline-block;
  }
  .serve__text {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(22px, 2.2vw, 28px);
    line-height: 1.45;
    color: var(--fg-1);
    margin: 0;
    font-variation-settings: "opsz" var(--opsz-deck);
    text-wrap: pretty;
    letter-spacing: -0.003em;
  }
  .serve__text em {
    font-style: normal;
    color: var(--vt-green-700);
    font-variation-settings: "opsz" var(--opsz-deck);
  }

  /* =========================================================
     A different kind of partner — pull quote on slate
     ========================================================= */
  .partner {
    padding: var(--s-10) 0;
    background: var(--vt-slate-900);
    color: var(--fg-on-dark-1);
    position: relative;
    overflow: hidden;
  }
  .partner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--vt-green-600), transparent 40%);
  }
  .partner__leaf {
    width: 38px;
    height: auto;
    margin-bottom: var(--s-6);
    filter: brightness(0) invert(1) sepia(0.55) hue-rotate(40deg) saturate(3);
    opacity: 0.85;
  }
  .partner__eyebrow {
    color: var(--fg-on-dark-3);
    margin-bottom: var(--s-6);
    display: block;
  }
  .partner__lines {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .partner__lines li {
    font-family: var(--font-banner);
    font-weight: 400;
    font-size: clamp(26px, 3.2vw, 40px);
    line-height: 1.32;
    color: #fff;
    letter-spacing: -0.005em;
    font-variation-settings: "opsz" var(--opsz-banner);
    padding: var(--s-3) 0;
    border-bottom: 1px solid var(--border-on-dark);
    text-wrap: balance;
  }
  .partner__lines li:last-child { border-bottom: 0; }
  .partner__lines li em {
    font-style: italic;
    color: var(--vt-green-300);
    font-variation-settings: "opsz" var(--opsz-banner), "slnt" -8;
    font-weight: 400;
  }

  /* =========================================================
     Contact section
     ========================================================= */
  .contact {
    background: var(--vt-paper);
    padding: var(--s-10) 0 var(--s-9);
  }
  .contact__head {
    margin-bottom: var(--s-8);
  }
  .contact__title {
    font-family: var(--font-banner);
    font-weight: 500;
    font-size: clamp(36px, 4.4vw, 60px);
    line-height: 1.08;
    letter-spacing: -0.01em;
    color: var(--fg-1);
    margin: 0 0 var(--s-5);
    max-width: 16ch;
    font-variation-settings: "opsz" var(--opsz-banner);
    text-wrap: balance;
  }
  .contact__title em {
    font-style: normal;
    color: var(--vt-green-700);
    font-variation-settings: "opsz" var(--opsz-banner);
  }
  .contact__grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: var(--s-9);
    align-items: start;
  }

  .contact-form-card {
    background: #fff;
    border: 1px solid var(--border-1);
    border-radius: var(--r-lg);
    padding: var(--s-7);
    box-shadow: var(--shadow-sm);
  }
  .contact-form__heading {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 22px;
    color: var(--fg-1);
    margin: 0 0 var(--s-2);
    letter-spacing: -0.005em;
    font-variation-settings: "opsz" var(--opsz-deck);
  }
  .contact-form__intro {
    font-size: 15px;
    color: var(--fg-3);
    margin: 0 0 var(--s-6);
    line-height: 1.55;
  }

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--s-4);
    margin-bottom: var(--s-4);
  }
  .form-field { display: block; }
  .form-field--full { grid-column: 1 / -1; }
  .form-field label {
    display: block;
    font-size: 12px;
    letter-spacing: 0.04em;
    color: var(--fg-3);
    margin-bottom: 6px;
    font-weight: 500;
    text-transform: uppercase;
    font-variation-settings: "opsz" var(--opsz-micro);
  }
  .form-field label .opt {
    text-transform: none;
    letter-spacing: 0;
    font-weight: 400;
    color: var(--fg-4);
    font-size: 11px;
  }
  .form-field input,
  .form-field textarea,
  .form-field select {
    width: 100%;
    font-family: var(--font-sans);
    font-size: 15px;
    padding: 11px 13px;
    border: 1px solid var(--border-2);
    border-radius: var(--r-md);
    background: #fff;
    color: var(--fg-1);
    box-sizing: border-box;
    outline: none;
    transition: border-color var(--dur-2),
                box-shadow var(--dur-2);
    font-variation-settings: "opsz" var(--opsz-ui);
  }
  .form-field textarea {
    min-height: 120px;
    resize: vertical;
  }
  .form-field input:focus,
  .form-field textarea:focus,
  .form-field select:focus {
    border-color: var(--vt-green-600);
    box-shadow: 0 0 0 3px rgba(112,176,48,.14);
  }

  /* Radio group — preferred contact */
  .radio-group {
    display: flex;
    gap: var(--s-3);
    flex-wrap: wrap;
  }
  .radio-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border: 1px solid var(--border-2);
    border-radius: var(--r-pill);
    cursor: pointer;
    font-size: 14px;
    color: var(--fg-2);
    background: #fff;
    transition: border-color var(--dur-2),
                background var(--dur-2),
                color var(--dur-2);
  }
  .radio-pill input { position: absolute; opacity: 0; pointer-events: none; }
  .radio-pill .dot {
    width: 12px; height: 12px;
    border-radius: 50%;
    border: 1px solid var(--vt-ink-300);
    background: #fff;
    flex-shrink: 0;
    transition: border-color var(--dur-2), background var(--dur-2),
                box-shadow var(--dur-2);
  }
  .radio-pill:hover { border-color: var(--fg-3); }
  .radio-pill:has(input:checked) {
    border-color: var(--vt-green-700);
    color: var(--fg-1);
  }
  .radio-pill:has(input:checked) .dot {
    border-color: var(--vt-green-700);
    background: var(--vt-green-700);
    box-shadow: inset 0 0 0 2.5px #fff;
  }

  /* Consent checkbox */
  .consent {
    margin-top: var(--s-5);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: var(--s-4);
    background: var(--vt-paper);
    border-radius: var(--r-md);
    border: 1px solid var(--border-1);
  }
  .consent input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin-top: 3px;
    accent-color: var(--vt-green-700);
    flex-shrink: 0;
  }
  .consent label {
    font-size: 13px;
    color: var(--fg-3);
    line-height: 1.5;
    cursor: pointer;
  }

  .form-submit {
    margin-top: var(--s-6);
    display: flex;
    align-items: center;
    gap: var(--s-5);
    flex-wrap: wrap;
  }
  .form-submit .btn { width: auto; }
  .form-submit__note {
    font-size: 12px;
    color: var(--fg-4);
    line-height: 1.5;
    margin: 0;
    flex: 1;
    min-width: 200px;
    font-variation-settings: "opsz" var(--opsz-micro);
  }

  /* Post-submit confirmation */
  .form-confirmed {
    display: none;
    padding: var(--s-7) var(--s-6);
    border: 1px solid var(--vt-green-700);
    border-radius: var(--r-lg);
    background: var(--vt-green-50);
    text-align: left;
  }
  .form-confirmed.is-shown { display: block; }
  .form-confirmed__title {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 22px;
    color: var(--vt-green-900);
    margin: 0 0 var(--s-3);
    letter-spacing: -0.005em;
    font-variation-settings: "opsz" var(--opsz-deck);
  }
  .form-confirmed__body {
    font-size: 15px;
    color: var(--vt-ink-700);
    line-height: 1.6;
    margin: 0;
  }

  /* Right column — direct contact */
  .direct {
    padding-top: var(--s-3);
  }
  .direct__heading {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 22px;
    color: var(--fg-1);
    margin: 0 0 var(--s-5);
    letter-spacing: -0.005em;
    font-variation-settings: "opsz" var(--opsz-deck);
  }
  .direct__name {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 18px;
    color: var(--fg-1);
    margin: 0 0 2px;
    letter-spacing: -0.005em;
  }
  .direct__role {
    font-size: 13px;
    color: var(--fg-3);
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin: 0 0 var(--s-4);
    font-variation-settings: "opsz" var(--opsz-micro);
  }
  .direct__email {
    display: inline-block;
    font-size: 16px;
    color: var(--fg-1);
    text-decoration: none;
    border-bottom: 1px solid var(--vt-green-600);
    padding-bottom: 2px;
    margin: 0 0 var(--s-3);
    transition: color var(--dur-2), border-color var(--dur-2);
  }
  .direct__email:hover { color: var(--vt-green-700); border-color: var(--vt-green-700); }
  .direct__location {
    font-size: 14px;
    color: var(--fg-3);
    margin: 0 0 var(--s-6);
  }
  .direct__note {
    font-size: 14px;
    color: var(--fg-2);
    line-height: 1.6;
    margin: 0;
    padding-top: var(--s-5);
    border-top: 1px solid var(--border-1);
    max-width: 36ch;
  }

  /* =========================================================
     HubSpot form overrides
     The embedded HubSpot form (Section 5) replaces the bespoke
     <form id="enquiry-form"> in the contact section. The selectors
     below scope styling to HubSpot's generated form classes so the
     embedded form picks up the Vinetrees Strategic design system.
     ========================================================= */
  .hs-form {
    font-family: var(--font-sans);
  }
  .hs-form-field {
    margin-bottom: var(--s-4);
  }
  .hs-form-field > label,
  .hs-form .hs-form-field label.hs-error-msg + label,
  .hs-form fieldset > legend {
    display: block;
    font-size: 12px;
    letter-spacing: 0.04em;
    color: var(--fg-3);
    margin-bottom: 6px;
    font-weight: 500;
    text-transform: uppercase;
    font-variation-settings: "opsz" var(--opsz-micro);
  }
  .hs-form-field .hs-field-desc {
    font-size: 12px;
    color: var(--fg-4);
    margin-top: 4px;
  }
  .hs-form-field input[type="text"],
  .hs-form-field input[type="email"],
  .hs-form-field input[type="tel"],
  .hs-form-field input[type="number"],
  .hs-form-field textarea,
  .hs-form-field select {
    width: 100%;
    font-family: var(--font-sans);
    font-size: 15px;
    padding: 11px 13px;
    border: 1px solid var(--border-2);
    border-radius: var(--r-md);
    background: #fff;
    color: var(--fg-1);
    box-sizing: border-box;
    outline: none;
    transition: border-color var(--dur-2) var(--ease-standard),
                box-shadow var(--dur-2) var(--ease-standard);
    font-variation-settings: "opsz" var(--opsz-ui);
  }
  .hs-form-field input:focus,
  .hs-form-field textarea:focus,
  .hs-form-field select:focus {
    border-color: var(--vt-green-600);
    box-shadow: 0 0 0 3px rgba(112,176,48,.14);
  }
  .hs-form-field textarea {
    min-height: 120px;
    resize: vertical;
  }
  .hs-form fieldset.form-columns-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--s-4);
    max-width: none;
  }
  .hs-form fieldset.form-columns-1,
  .hs-form fieldset.form-columns-2 {
    max-width: none;
  }
  .hs-form fieldset .hs-form-field {
    width: 100% !important;
    padding: 0 !important;
    float: none !important;
  }
  .hs-form .legal-consent-container {
    margin-top: var(--s-5);
    padding: var(--s-4);
    background: var(--vt-paper);
    border-radius: var(--r-md);
    border: 1px solid var(--border-1);
    font-size: 13px;
    color: var(--fg-3);
    line-height: 1.5;
  }
  .hs-form .legal-consent-container input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin-top: 3px;
    margin-right: 10px;
    accent-color: var(--vt-green-700);
    flex-shrink: 0;
    vertical-align: top;
  }
  .hs-form .legal-consent-container .hs-richtext p {
    margin: 0;
    font-size: 13px;
  }
  .hs-form .hs-submit {
    margin-top: var(--s-6);
  }
  .hs-button,
  .hs-button.primary,
  .hs-form input[type="submit"] {
    background: var(--vt-green-700);
    color: #fff;
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 500;
    padding: 14px 22px;
    border-radius: var(--r-md);
    border: 0;
    cursor: pointer;
    line-height: 1;
    box-shadow: 0 1px 0 rgba(78,120,38,0.35) inset,
                0 6px 14px -4px rgba(78,120,38,0.40),
                0 2px 4px rgba(23,25,27,0.06);
    transition: background var(--dur-2) var(--ease-standard),
                box-shadow var(--dur-2) var(--ease-standard);
  }
  .hs-button.primary:hover,
  .hs-button:hover,
  .hs-form input[type="submit"]:hover {
    background: var(--vt-green-800);
    box-shadow: 0 1px 0 rgba(78,120,38,0.45) inset,
                0 8px 18px -4px rgba(78,120,38,0.50),
                0 3px 6px rgba(23,25,27,0.08);
  }
  .hs-error-msg,
  .hs-error-msgs label {
    color: #b00020;
    font-size: 13px;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 400;
    margin-top: 4px;
  }
  .hs-form .submitted-message,
  .hs-form .submitted-message p {
    font-family: var(--font-sans);
    font-size: 15px;
    color: var(--fg-2);
    line-height: 1.6;
  }
  /* Radio group (preferred contact method) — match the Vinetrees pill style */
  .hs-form .inputs-list[role="radiogroup"],
  .hs-form ul.inputs-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: var(--s-3);
    flex-wrap: wrap;
  }
  .hs-form ul.inputs-list li label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border: 1px solid var(--border-2);
    border-radius: var(--r-pill);
    cursor: pointer;
    font-size: 14px;
    color: var(--fg-2);
    background: #fff;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 400;
    margin-bottom: 0;
    transition: border-color var(--dur-2),
                color var(--dur-2);
  }
  .hs-form ul.inputs-list li label:hover {
    border-color: var(--fg-3);
  }
  .hs-form ul.inputs-list li label input[type="radio"] {
    accent-color: var(--vt-green-700);
  }

  /* =========================================================
     Footer
     ========================================================= */
  .site-footer {
    background: var(--vt-slate-900);
    color: var(--fg-on-dark-2);
    padding: var(--s-7) 0 var(--s-5);
  }
  .site-footer__inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr auto;
    gap: var(--s-7);
    align-items: start;
  }
  .footer-brand {
    display: flex;
    align-items: center;
    gap: var(--s-3);
    margin-bottom: var(--s-3);
  }
  .footer-brand img {
    width: auto; height: 30px;
    filter: brightness(0) invert(1) sepia(0.55) hue-rotate(40deg) saturate(3);
  }
  .footer-brand span {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 16px;
    color: #fff;
    letter-spacing: -0.005em;
  }
  .footer-legal {
    font-size: 12px;
    color: var(--fg-on-dark-3);
    line-height: 1.6;
    margin: 0;
    font-variation-settings: "opsz" var(--opsz-micro);
    max-width: 50ch;
  }
  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .footer-links a {
    font-size: 13px;
    color: var(--fg-on-dark-2);
    text-decoration: none;
    transition: color var(--dur-2);
  }
  .footer-links a:hover { color: var(--vt-green-300); }
  .footer-social {
    display: flex;
    align-items: center;
    gap: var(--s-3);
  }
  .footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid var(--border-on-dark);
    border-radius: var(--r-md);
    color: var(--fg-on-dark-2);
    transition: color var(--dur-2), border-color var(--dur-2);
  }
  .footer-social a:hover { color: var(--vt-green-300); border-color: var(--vt-green-300); }
  .footer-social svg { width: 16px; height: 16px; fill: currentColor; }

  .footer-bottom {
    margin-top: var(--s-6);
    padding-top: var(--s-4);
    border-top: 1px solid var(--border-on-dark);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--s-3);
    font-size: 11px;
    color: var(--fg-on-dark-3);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-variation-settings: "opsz" var(--opsz-micro);
  }

  /* =========================================================
     Legal pages — privacy notice, cookie preferences, etc.
     ========================================================= */
  .legal-page {
    padding: var(--s-9) 0 var(--s-10);
    background: var(--vt-paper);
    border-bottom: 1px solid var(--border-1);
  }
  .legal-page__inner {
    max-width: 720px;
    margin: 0 auto;
  }
  .legal-page__title {
    font-family: var(--font-banner);
    font-weight: 500;
    font-size: clamp(36px, 4.4vw, 60px);
    line-height: 1.08;
    letter-spacing: -0.01em;
    color: var(--fg-1);
    margin: 0 0 var(--s-4);
    font-variation-settings: "opsz" var(--opsz-banner);
    text-wrap: balance;
  }
  .legal-page__meta {
    font-size: 13px;
    color: var(--fg-3);
    margin: 0 0 var(--s-7);
    letter-spacing: 0.02em;
    padding-bottom: var(--s-5);
    border-bottom: 1px solid var(--border-1);
    font-variation-settings: "opsz" var(--opsz-micro);
  }
  .legal-page__meta strong {
    color: var(--fg-1);
    font-weight: 500;
  }
  .legal-page__body h2 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 24px;
    line-height: 1.3;
    letter-spacing: -0.005em;
    color: var(--fg-1);
    margin: var(--s-8) 0 var(--s-4);
    font-variation-settings: "opsz" var(--opsz-deck);
  }
  .legal-page__body h2:first-child { margin-top: 0; }
  .legal-page__body h3 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 18px;
    color: var(--fg-1);
    margin: var(--s-6) 0 var(--s-3);
    letter-spacing: -0.003em;
  }
  .legal-page__body p,
  .legal-page__body li {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.65;
    color: var(--fg-2);
    font-variation-settings: "opsz" var(--opsz-text);
  }
  .legal-page__body p {
    margin: 0 0 var(--s-4);
  }
  .legal-page__body ul {
    padding-left: 1.4em;
    margin: 0 0 var(--s-4);
  }
  .legal-page__body li {
    margin-bottom: var(--s-2);
  }
  .legal-page__body strong {
    color: var(--fg-1);
    font-weight: 500;
  }
  .legal-page__body a {
    color: var(--fg-1);
    text-decoration: none;
    border-bottom: 1px solid var(--vt-green-600);
    transition: color var(--dur-2) var(--ease-standard),
                border-color var(--dur-2) var(--ease-standard);
  }
  .legal-page__body a:hover {
    color: var(--vt-green-700);
    border-color: var(--vt-green-700);
  }
  .legal-page__body table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--s-5) 0 var(--s-6);
    font-size: 15px;
  }
  .legal-page__body th,
  .legal-page__body td {
    padding: var(--s-3) var(--s-4);
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid var(--border-1);
    font-family: var(--font-sans);
    line-height: 1.5;
  }
  .legal-page__body th {
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--fg-3);
    font-weight: 500;
    background: var(--bg-canvas);
    font-variation-settings: "opsz" var(--opsz-micro);
  }
  .legal-page__cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 500;
    padding: 14px 22px;
    background: var(--vt-green-700);
    color: #fff;
    border-radius: var(--r-md);
    border: 0;
    cursor: pointer;
    text-decoration: none;
    margin: var(--s-3) 0;
    transition: background var(--dur-2) var(--ease-standard),
                box-shadow var(--dur-2) var(--ease-standard);
    box-shadow: 0 1px 0 rgba(78,120,38,0.35) inset,
                0 6px 14px -4px rgba(78,120,38,0.40),
                0 2px 4px rgba(23,25,27,0.06);
  }
  .legal-page__cta-button:hover {
    background: var(--vt-green-800);
    box-shadow: 0 1px 0 rgba(78,120,38,0.45) inset,
                0 8px 18px -4px rgba(78,120,38,0.50),
                0 3px 6px rgba(23,25,27,0.08);
  }

  /* =========================================================
     Responsive
     ========================================================= */
  @media (max-width: 980px) {
    .container, .hero__inner { padding-left: var(--s-5); padding-right: var(--s-5); }
    .section { padding: var(--s-9) 0; }
    .section-head { grid-template-columns: 1fr; gap: var(--s-3); margin-bottom: var(--s-6); }
    .services { grid-template-columns: 1fr; }
    .service { border-right: 0; border-bottom: 1px solid var(--border-1); padding: var(--s-6) 0; }
    .service:not(:first-child) { padding-left: 0; }
    .service:last-child { border-bottom: 0; }
    .contact__grid { grid-template-columns: 1fr; gap: var(--s-7); }
    .site-footer__inner { grid-template-columns: 1fr; gap: var(--s-5); }
    .hero { padding: 80px 0 var(--s-9); }
    .partner { padding: var(--s-9) 0; }
    /* Allow the otherwise-nowrap "wide" headline to wrap at narrow viewports
       (e.g. "Three key services, integrated and aligned." would otherwise
       overflow horizontally on mobile). Keep balance so it wraps gracefully. */
    .section-head__title--wide {
      white-space: normal;
      text-wrap: balance;
      max-width: none;
    }
  }
  @media (max-width: 640px) {
    .form-row { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
    /* Tighten the wide headline a notch on phones so it doesn't dominate. */
    .section-head__title--wide { font-size: clamp(26px, 7vw, 34px); }
  }
