  /* ---------- Design tokens ---------- */
  :root {
    --forest: #14372B;
    --forest-2: #1E4D3C;
    --forest-3: #0B241C;
    --gold: #B8912D;
    --gold-2: #E4C97A;
    --paper: #FBF9F3;
    --bone: #F1EDE2;
    --ink: #0B1D17;
    --body: #3B4A44;
    --muted: #6A7873;
    --hairline: #D9D2C0;
    --success: #2D6A4F;
    --danger: #9A2A2A;

    --serif: 'Newsreader', Georgia, 'Times New Roman', serif;
    --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --wrap: 1200px;
    --gutter: 24px;

    --radius: 4px;
  }

  /* ---------- Base ---------- */
  *, *::before, *::after { box-sizing: border-box; }
  html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
  body {
    margin: 0;
    font-family: var(--sans);
    font-size: 17px;
    line-height: 1.6;
    color: var(--body);
    background: var(--paper);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition: none !important; animation: none !important; }
  }
  img { max-width: 100%; height: auto; display: block; }
  a { color: var(--forest); text-decoration: underline; text-decoration-color: var(--gold); text-underline-offset: 3px; text-decoration-thickness: 1px; }
  a:hover { text-decoration-thickness: 2px; }
  :focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 2px; }

  h1, h2, h3, h4 {
    font-family: var(--serif);
    color: var(--ink);
    font-weight: 400;
    line-height: 1.15;
    margin: 0 0 0.5em;
    letter-spacing: -0.01em;
  }

  .wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }

  /* ---------- Header / Nav ---------- */
  .site-header {
    position: sticky; top: 0; z-index: 40;
    background: rgba(251, 249, 243, 0.92);
    backdrop-filter: saturate(140%) blur(8px);
    -webkit-backdrop-filter: saturate(140%) blur(8px);
    border-bottom: 1px solid var(--hairline);
  }
  .nav {
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 0;
  }
  .brand {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 500;
    color: var(--ink);
    text-decoration: none;
    letter-spacing: -0.01em;
    display: flex; align-items: baseline; gap: 8px;
  }
  .brand-mark { color: var(--forest); }
  .brand-dot { display: inline-block; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; transform: translateY(-2px); }
  .nav-links {
    display: flex; gap: 32px; align-items: center;
    list-style: none; margin: 0; padding: 0;
  }
  .nav-links a {
    text-decoration: none; color: var(--ink); font-size: 15px; font-weight: 500;
    padding: 6px 0; border-bottom: 1px solid transparent;
  }
  .nav-links a:hover { border-bottom-color: var(--gold); }
  .nav-phone {
    color: var(--forest); font-weight: 600; text-decoration: none;
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 18px;
    border: 1px solid var(--forest);
    border-radius: var(--radius);
    font-size: 14px;
    transition: background 120ms ease, color 120ms ease;
  }
  .nav-phone:hover { background: var(--forest); color: var(--paper); text-decoration: none; }
  .nav-toggle { display: none; background: none; border: 0; padding: 8px; cursor: pointer; }
  .nav-toggle svg { width: 24px; height: 24px; stroke: var(--ink); }

  @media (max-width: 860px) {
    .nav-links, .nav-phone { display: none; }
    .nav-toggle { display: block; }
    .nav-open .nav-links {
      display: flex; flex-direction: column; gap: 16px;
      position: absolute; top: 100%; left: 0; right: 0;
      background: var(--paper); padding: 20px var(--gutter);
      border-bottom: 1px solid var(--hairline);
    }
    .nav-open .nav-phone { display: inline-flex; margin-top: 8px; }
  }

  /* ---------- Hero ---------- */
  .hero {
    padding: 80px 0 100px;
    background:
      radial-gradient(1200px 500px at 85% -10%, rgba(184, 145, 45, 0.08), transparent 60%),
      var(--paper);
    position: relative;
  }
  .hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 64px;
    align-items: start;
  }
  .hero-eyebrow {
    font-size: 13px; color: var(--gold);
    font-weight: 600; letter-spacing: 0.08em;
    margin: 0 0 20px; text-transform: none;
    display: flex; align-items: center; gap: 12px;
  }
  .hero-eyebrow::before {
    content: ''; width: 24px; height: 1px; background: var(--gold);
  }
  .hero h1 {
    font-size: clamp(40px, 5.4vw, 68px);
    line-height: 1.05;
    margin: 0 0 24px;
    font-weight: 400;
  }
  .hero h1 em {
    font-style: italic;
    color: var(--forest);
    position: relative;
  }
  .hero h1 .highlight {
    font-style: normal;
    color: var(--ink);
    background-image: linear-gradient(transparent 62%, var(--gold-2) 62%, var(--gold-2) 92%, transparent 92%);
    padding: 0 4px;
  }
  .hero-sub {
    font-size: 19px;
    color: var(--body);
    max-width: 52ch;
    margin: 0 0 32px;
    line-height: 1.55;
  }
  .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
  .hero-meta {
    margin-top: 40px;
    display: flex; gap: 32px; flex-wrap: wrap;
    padding-top: 28px;
    border-top: 1px solid var(--hairline);
  }
  .hero-meta-item {
    display: flex; flex-direction: column; gap: 4px;
  }
  .hero-meta-num {
    font-family: var(--serif); font-size: 28px; color: var(--forest); font-weight: 500;
    line-height: 1;
  }
  .hero-meta-label { font-size: 13px; color: var(--muted); font-weight: 500; }

  /* Hero form card */
  .hero-form {
    background: #FFF;
    border: 1px solid var(--hairline);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: 0 1px 0 rgba(11, 29, 23, 0.04), 0 20px 40px -20px rgba(11, 29, 23, 0.12);
    position: sticky; top: 100px;
  }
  .hero-form-head {
    padding-bottom: 20px;
    border-bottom: 1px solid var(--hairline);
    margin-bottom: 22px;
  }
  .hero-form-head h2 {
    font-size: 22px; margin: 0 0 6px;
    font-family: var(--serif); font-weight: 500;
  }
  .hero-form-head p {
    margin: 0; font-size: 14px; color: var(--muted);
  }

  @media (max-width: 900px) {
    .hero { padding: 60px 0 72px; }
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-form { position: static; }
  }

  /* ---------- Buttons ---------- */
  .btn {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--sans);
    font-size: 15px; font-weight: 600;
    padding: 14px 24px;
    border-radius: var(--radius);
    text-decoration: none;
    cursor: pointer;
    border: 1px solid transparent;
    transition: transform 100ms ease, background 120ms ease, color 120ms ease, border-color 120ms ease;
    line-height: 1;
  }
  .btn:active { transform: translateY(1px); }
  .btn-primary {
    background: var(--forest); color: var(--paper);
  }
  .btn-primary:hover { background: var(--forest-3); text-decoration: none; }
  .btn-secondary {
    background: transparent; color: var(--forest); border-color: var(--forest);
  }
  .btn-secondary:hover { background: var(--forest); color: var(--paper); text-decoration: none; }
  .btn-gold {
    background: var(--gold); color: var(--ink);
  }
  .btn-gold:hover { background: #A6811F; color: var(--paper); text-decoration: none; }
  .btn-block { width: 100%; justify-content: center; padding: 16px 24px; font-size: 16px; }
  .btn[disabled] { opacity: 0.6; cursor: not-allowed; }
  .btn .arrow { transition: transform 120ms ease; }
  .btn:hover .arrow { transform: translateX(3px); }

  /* ---------- Form fields ---------- */
  .field { margin-bottom: 16px; }
  .field label {
    display: block; font-size: 13px; font-weight: 600;
    color: var(--ink); margin-bottom: 6px;
  }
  .field .req { color: var(--danger); margin-left: 2px; }
  .field input, .field select, .field textarea {
    width: 100%;
    font-family: var(--sans);
    font-size: 15px;
    color: var(--ink);
    background: var(--paper);
    border: 1px solid var(--hairline);
    border-radius: var(--radius);
    padding: 12px 14px;
    transition: border-color 120ms ease, background 120ms ease;
  }
  .field input:focus, .field select:focus, .field textarea:focus {
    outline: none;
    border-color: var(--forest);
    background: #FFF;
  }
  .field textarea { resize: vertical; min-height: 96px; }
  .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  @media (max-width: 500px) { .field-row { grid-template-columns: 1fr; } }
  .field .error {
    display: block; font-size: 12px; color: var(--danger); margin-top: 4px; min-height: 1em;
  }
  .field input.invalid, .field select.invalid, .field textarea.invalid {
    border-color: var(--danger); background: #FBF3F2;
  }
  .consent {
    display: flex; gap: 10px; align-items: flex-start;
    font-size: 12px; color: var(--muted); line-height: 1.5;
    margin: 8px 0 20px;
  }
  .consent input { margin-top: 3px; flex: 0 0 auto; }
  .form-note {
    font-size: 12px; color: var(--muted); text-align: center;
    margin-top: 14px;
  }

  /* Form states */
  .form-success, .form-error {
    padding: 20px; border-radius: var(--radius);
    font-size: 15px; line-height: 1.5;
  }
  .form-success {
    background: #EAF3ED; border: 1px solid var(--success); color: var(--forest-3);
  }
  .form-success h3 { color: var(--forest); margin: 0 0 6px; font-size: 20px; }
  .form-error {
    background: #FBF3F2; border: 1px solid var(--danger); color: var(--danger);
  }

  /* ---------- Trust bar ---------- */
  .trust {
    background: var(--forest);
    color: var(--bone);
    padding: 28px 0;
  }
  .trust-inner {
    display: flex; align-items: center; gap: 40px;
    flex-wrap: wrap;
  }
  .trust-label {
    font-size: 12px; color: var(--gold-2);
    letter-spacing: 0.12em; text-transform: uppercase;
    font-weight: 600; flex-shrink: 0;
    max-width: 200px; line-height: 1.4;
  }
  .trust-list {
    display: flex; flex-wrap: wrap; gap: 8px 28px;
    font-family: var(--serif); font-size: 17px;
    color: var(--paper); font-style: italic; font-weight: 400;
    opacity: 0.92;
  }
  .trust-list span { white-space: nowrap; }
  .trust-list span + span::before {
    content: '·'; color: var(--gold); margin-right: 28px; margin-left: -20px;
  }

  /* ---------- Section basics ---------- */
  section { padding: 96px 0; }
  section.tight { padding: 72px 0; }
  section.bone { background: var(--bone); }
  section.forest { background: var(--forest); color: var(--bone); }
  section.forest h2, section.forest h3 { color: var(--paper); }
  section.forest a { color: var(--gold-2); text-decoration-color: var(--gold); }

  .section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
  .section-head.left { text-align: left; margin-left: 0; }
  .section-eyebrow {
    display: inline-block;
    font-size: 12px; color: var(--gold); font-weight: 600;
    letter-spacing: 0.12em; text-transform: uppercase;
    margin: 0 0 16px;
  }
  section.forest .section-eyebrow { color: var(--gold-2); }
  .section-title {
    font-size: clamp(30px, 3.6vw, 44px);
    margin: 0 0 16px;
    line-height: 1.15;
    font-weight: 400;
  }
  .section-title em { font-style: italic; color: var(--forest); }
  section.forest .section-title em { color: var(--gold-2); }
  .section-lead {
    font-size: 18px; color: var(--body); margin: 0;
    line-height: 1.6;
  }
  section.forest .section-lead { color: var(--bone); opacity: 0.9; }

  /* ---------- Who we are ---------- */
  .who-body {
    max-width: 780px; margin: 0 auto;
    font-size: 18px; line-height: 1.7;
  }
  .who-body p { margin: 0 0 20px; }
  .who-body p:last-child { margin-bottom: 0; }
  .who-cta { text-align: center; margin-top: 48px; }

  /* ---------- Services ---------- */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--hairline);
    border-bottom: 1px solid var(--hairline);
  }
  .service {
    padding: 40px 32px;
    border-right: 1px solid var(--hairline);
    display: flex; flex-direction: column;
  }
  .service:last-child { border-right: 0; }
  .service-num {
    font-family: var(--serif);
    font-size: 15px;
    color: var(--gold);
    font-weight: 500;
    margin: 0 0 12px;
    font-variant-numeric: tabular-nums;
  }
  .service h3 {
    font-size: 24px;
    margin: 0 0 8px;
    font-weight: 500;
  }
  .service-sub {
    font-family: var(--serif);
    font-style: italic;
    font-size: 17px;
    color: var(--forest);
    margin: 0 0 20px;
    line-height: 1.35;
  }
  .service p { font-size: 15px; margin: 0 0 16px; }
  .service ul {
    list-style: none; padding: 0; margin: 0 0 24px;
    font-size: 15px;
  }
  .service ul li {
    padding: 8px 0 8px 20px; position: relative;
    border-bottom: 1px solid var(--hairline);
  }
  .service ul li:last-child { border-bottom: 0; }
  .service ul li::before {
    content: '—'; color: var(--gold); position: absolute; left: 0; top: 8px;
  }
  .service-link {
    margin-top: auto; padding-top: 16px;
    font-weight: 600; font-size: 15px;
    color: var(--forest);
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 6px;
    border-bottom: 1px solid var(--gold);
    padding-bottom: 4px;
    align-self: flex-start;
  }
  .service-link:hover { color: var(--forest-3); border-bottom-color: var(--forest); }
  @media (max-width: 860px) {
    .services-grid { grid-template-columns: 1fr; }
    .service { border-right: 0; border-bottom: 1px solid var(--hairline); }
    .service:last-child { border-bottom: 0; }
  }

  /* ---------- Process (3 steps) ---------- */
  .process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    counter-reset: step;
  }
  .step {
    display: flex; flex-direction: column;
  }
  .step-num {
    font-family: var(--serif);
    font-size: 96px;
    line-height: 0.9;
    color: var(--gold);
    font-weight: 300;
    margin: 0 0 20px;
    font-variant-numeric: oldstyle-nums;
  }
  .step h3 {
    font-size: 22px; margin: 0 0 10px; font-weight: 500;
  }
  .step-sub {
    font-family: var(--serif);
    font-style: italic;
    color: var(--forest);
    font-size: 17px;
    margin: 0 0 14px;
  }
  .step p {
    font-size: 15px; margin: 0;
  }
  .step-tag {
    display: inline-block;
    margin-top: 16px;
    font-size: 12px;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 10px;
    border: 1px solid var(--gold);
    align-self: flex-start;
  }
  @media (max-width: 860px) {
    .process-grid { grid-template-columns: 1fr; gap: 40px; }
  }

  /* ---------- Case study ---------- */
  .case-grid {
    display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: center;
  }
  .case-story h2 {
    font-size: clamp(28px, 3.2vw, 40px); margin: 0 0 18px;
    font-weight: 400;
  }
  .case-story h2 em { font-style: italic; color: var(--forest); }
  .case-story p { font-size: 16px; margin: 0 0 18px; }
  .case-figure {
    background: var(--paper);
    border: 1px solid var(--hairline);
    padding: 32px;
    border-radius: var(--radius);
  }
  .case-figure-head {
    display: flex; align-items: baseline; justify-content: space-between;
    margin-bottom: 28px; padding-bottom: 16px; border-bottom: 1px solid var(--hairline);
  }
  .case-figure-head .init {
    font-size: 13px; color: var(--muted); font-weight: 500;
    letter-spacing: 0.06em; text-transform: uppercase;
  }
  .case-figure-head .init strong {
    display: block; color: var(--ink); font-family: var(--serif);
    font-size: 24px; font-weight: 500; margin-top: 4px; letter-spacing: -0.01em;
    text-transform: none;
  }
  .bars { display: flex; flex-direction: column; gap: 18px; }
  .bar-row { display: grid; grid-template-columns: 160px 1fr 70px; gap: 12px; align-items: center; font-size: 14px; }
  .bar-label { color: var(--ink); font-weight: 500; }
  .bar-track { background: var(--bone); height: 10px; border-radius: 2px; overflow: hidden; }
  .bar-fill { height: 100%; background: var(--forest); }
  .bar-fill.gold { background: var(--gold); }
  .bar-fill.muted { background: var(--muted); opacity: 0.4; }
  .bar-value { text-align: right; color: var(--muted); font-variant-numeric: tabular-nums; font-weight: 500; }
  .bar-value.win { color: var(--forest); font-weight: 700; }
  .case-figure-foot {
    margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--hairline);
    display: flex; justify-content: space-between; align-items: baseline;
    font-size: 13px; color: var(--muted);
  }
  .case-figure-foot strong {
    font-family: var(--serif); font-size: 22px; color: var(--forest);
    font-weight: 500; font-variant-numeric: tabular-nums;
  }
  .case-disclaimer {
    font-size: 12px; color: var(--muted); margin-top: 16px; font-style: italic;
  }
  @media (max-width: 900px) {
    .case-grid { grid-template-columns: 1fr; gap: 40px; }
    .bar-row { grid-template-columns: 120px 1fr 60px; font-size: 13px; }
  }

  /* ---------- Contact section ---------- */
  .contact-grid {
    display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start;
  }
  .contact-info h3 {
    font-family: var(--serif); font-size: 15px; font-weight: 600;
    letter-spacing: 0.06em; text-transform: uppercase;
    color: var(--gold); margin: 0 0 8px;
  }
  .contact-info p { margin: 0 0 24px; font-size: 15px; }
  .contact-info a { color: var(--ink); text-decoration-color: var(--gold); }
  .contact-form-wrap {
    background: #FFF;
    border: 1px solid var(--hairline);
    padding: 40px;
    border-radius: var(--radius);
  }
  .contact-form-wrap h2 {
    font-size: 28px; margin: 0 0 6px; font-weight: 500;
  }
  .contact-form-wrap > p.lead {
    margin: 0 0 28px; color: var(--muted); font-size: 15px;
  }
  @media (max-width: 900px) {
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .contact-form-wrap { padding: 28px; }
  }

  /* ---------- Big CTA band ---------- */
  .cta-band {
    background: var(--forest);
    color: var(--paper);
    padding: 80px 0;
  }
  .cta-band-inner {
    display: grid; grid-template-columns: 1.4fr 1fr;
    gap: 48px; align-items: center;
  }
  .cta-band h2 {
    color: var(--paper);
    font-size: clamp(28px, 3.4vw, 42px);
    margin: 0 0 16px;
    font-weight: 400;
  }
  .cta-band h2 em { color: var(--gold-2); font-style: italic; }
  .cta-band p { margin: 0; opacity: 0.9; font-size: 17px; }
  .cta-band-actions {
    display: flex; flex-direction: column; gap: 12px; align-items: flex-end;
  }
  .cta-band .btn-gold { align-self: flex-end; }
  .cta-band-phone {
    font-family: var(--serif); font-size: 22px;
    color: var(--gold-2); text-decoration: none;
    font-weight: 500;
  }
  .cta-band-phone:hover { color: var(--paper); }
  @media (max-width: 860px) {
    .cta-band-inner { grid-template-columns: 1fr; text-align: left; }
    .cta-band-actions { align-items: flex-start; }
    .cta-band .btn-gold { align-self: flex-start; }
  }

  /* ---------- Footer ---------- */
  .site-footer {
    background: var(--forest-3);
    color: var(--bone);
    padding: 72px 0 32px;
  }
  .footer-grid {
    display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(217, 210, 192, 0.15);
  }
  .footer-brand {
    font-family: var(--serif); font-size: 24px; color: var(--paper);
    margin: 0 0 16px; font-weight: 500;
  }
  .footer-brand-dot { color: var(--gold); }
  .footer-tag { font-size: 15px; opacity: 0.85; margin: 0 0 20px; max-width: 32ch; }
  .footer-contact { font-size: 14px; opacity: 0.9; line-height: 1.8; }
  .footer-contact a { color: var(--gold-2); text-decoration: none; }
  .footer-contact a:hover { text-decoration: underline; }
  .footer-col h4 {
    font-family: var(--sans); font-size: 12px; font-weight: 600;
    color: var(--gold-2); letter-spacing: 0.1em; text-transform: uppercase;
    margin: 0 0 16px;
  }
  .footer-col ul { list-style: none; padding: 0; margin: 0; }
  .footer-col ul li { margin-bottom: 10px; font-size: 14px; }
  .footer-col ul a { color: var(--bone); text-decoration: none; opacity: 0.85; }
  .footer-col ul a:hover { opacity: 1; text-decoration: underline; text-decoration-color: var(--gold); }
  .footer-legal {
    padding-top: 32px;
    font-size: 12px; line-height: 1.65; opacity: 0.7;
    max-width: 950px;
  }
  .footer-legal a { color: var(--gold-2); }
  .footer-copy {
    padding-top: 24px; margin-top: 24px;
    border-top: 1px solid rgba(217, 210, 192, 0.1);
    display: flex; justify-content: space-between;
    font-size: 12px; opacity: 0.6;
    flex-wrap: wrap; gap: 12px;
  }
  @media (max-width: 860px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  }
  @media (max-width: 500px) {
    .footer-grid { grid-template-columns: 1fr; }
  }

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

  /* ---------- Additions for inner pages ---------- */
  .wrap-narrow { max-width: 820px; }

  .skip-link {
    position: absolute; top: -40px; left: 8px; z-index: 100;
    background: var(--forest); color: var(--paper);
    padding: 8px 14px; text-decoration: none; border-radius: var(--radius);
    font-size: 14px; font-weight: 600;
  }
  .skip-link:focus { top: 8px; }

  /* Page hero (About / How It Works / Contact) — quieter than home hero */
  .page-hero {
    padding: 80px 0 60px;
    background:
      radial-gradient(1000px 400px at 90% -20%, rgba(184, 145, 45, 0.08), transparent 60%),
      var(--paper);
  }
  .page-hero h1 {
    font-size: clamp(36px, 4.6vw, 56px);
    line-height: 1.1;
    max-width: 22ch;
    margin: 0 0 16px;
  }
  .page-hero h1 em { font-style: italic; color: var(--forest); }
  .page-hero .page-hero-sub {
    font-size: 18px; max-width: 60ch; color: var(--body); margin: 0 0 24px;
  }

  /* Page body default (index.php / page.php) */
  .page-body { padding: 80px 0; background: var(--paper); }
  .page-body .page-title {
    font-size: clamp(30px, 4vw, 44px);
    margin: 0 0 24px; font-weight: 400;
  }
  .page-body .entry-content p { margin: 0 0 20px; font-size: 17px; line-height: 1.7; }
  .page-body .entry-content h2 {
    font-size: 28px; margin: 40px 0 14px; font-weight: 500;
  }
  .page-body .entry-content h3 { font-size: 22px; margin: 32px 0 12px; font-weight: 500; }

  /* Features grid (About Us — "Why choose us") */
  .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 40px;
  }
  .feature {
    padding: 24px 0 0;
    border-top: 2px solid var(--gold);
  }
  .feature h3 {
    font-size: 20px; margin: 0 0 8px; font-weight: 500;
    line-height: 1.25;
  }
  .feature p { font-size: 15px; margin: 0; color: var(--body); }

  @media (max-width: 860px) {
    .features-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  }
  @media (max-width: 560px) {
    .features-grid { grid-template-columns: 1fr; }
  }

  /* WordPress core / Gutenberg alignment helpers */
  .alignwide { max-width: 1080px; margin-left: auto; margin-right: auto; }
  .alignfull { max-width: 100vw; margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); }
  .wp-caption { max-width: 100%; }
  .wp-caption-text { font-size: 13px; color: var(--muted); text-align: center; margin-top: 8px; }

  /* Custom logo handling (WP) — make it inherit our nav size */
  .site-header .custom-logo {
    height: 36px; width: auto; display: block;
  }

  /* WordPress admin bar spacing */
  body.admin-bar .site-header { top: 32px; }
  @media (max-width: 782px) {
    body.admin-bar .site-header { top: 46px; }
  }

  /* ---------- Apply page ---------- */
  .apply-hero { padding-bottom: 40px; }
  .apply-hero h1 { max-width: 20ch; }

  .apply-body { padding: 40px 0 96px; }
  .apply-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 48px;
    align-items: start;
  }
  .apply-side { position: sticky; top: 100px; }
  .apply-side-card {
    background: #FFF;
    border: 1px solid var(--hairline);
    border-radius: var(--radius);
    padding: 28px;
    margin-bottom: 20px;
  }
  .apply-side-card .section-eyebrow { margin-bottom: 20px; }
  .apply-side-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: none;
  }
  .apply-side-steps li {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 14px;
    padding: 14px 0;
    border-top: 1px solid var(--hairline);
  }
  .apply-side-steps li:first-child { border-top: 0; padding-top: 0; }
  .apply-side-num {
    font-family: var(--serif);
    font-size: 28px;
    color: var(--gold);
    font-weight: 500;
    line-height: 1;
    font-variant-numeric: oldstyle-nums;
  }
  .apply-side-steps li strong {
    display: block;
    color: var(--ink);
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
  }
  .apply-side-steps li p {
    margin: 0;
    font-size: 13px;
    color: var(--body);
    line-height: 1.5;
  }
  .apply-side-trust {
    padding: 20px 28px;
    font-size: 13px;
    color: var(--body);
    line-height: 1.6;
  }
  .apply-side-trust p { margin: 0; }
  .apply-side-trust a { color: var(--forest); font-weight: 600; }

  .apply-form-wrap {
    background: #FFF;
    border: 1px solid var(--hairline);
    border-radius: var(--radius);
    padding: 40px;
  }
  .apply-form-wrap fieldset {
    border: 0;
    padding: 0;
    margin: 0 0 32px;
    border-bottom: 1px solid var(--hairline);
    padding-bottom: 28px;
  }
  .apply-form-wrap fieldset:last-of-type {
    border-bottom: 0;
    padding-bottom: 0;
  }
  .apply-form-wrap legend {
    font-family: var(--serif);
    font-size: 20px;
    color: var(--ink);
    font-weight: 500;
    padding: 0;
    margin-bottom: 16px;
  }
  .apply-form-wrap .consent { margin: 24px 0 20px; }

  .field-hint {
    display: none;
    margin-top: 8px;
    padding: 12px 14px;
    background: rgba(184, 145, 45, 0.1);
    border-left: 3px solid var(--gold);
    font-size: 13px;
    line-height: 1.5;
    color: var(--body);
  }
  .field-hint.is-visible { display: block; }

  @media (max-width: 960px) {
    .apply-grid { grid-template-columns: 1fr; gap: 32px; }
    .apply-side { position: static; }
  }
  @media (max-width: 560px) {
    .apply-form-wrap { padding: 24px; }
  }

  /* ---------- Thank You page ---------- */
  .thanks-hero {
    padding: 80px 0 40px;
    text-align: center;
    background:
      radial-gradient(800px 400px at 50% -20%, rgba(184, 145, 45, 0.08), transparent 60%),
      var(--paper);
  }
  .thanks-wrap { max-width: 720px; margin: 0 auto; }
  .thanks-check {
    display: inline-block;
    margin: 0 auto 16px;
  }
  .thanks-hero h1 {
    font-size: clamp(30px, 4vw, 44px);
    margin: 8px 0 20px;
    font-weight: 400;
    line-height: 1.15;
  }
  .thanks-hero h1 em {
    font-style: italic;
    color: var(--forest);
  }
  .thanks-sub {
    font-size: 17px;
    color: var(--body);
    line-height: 1.6;
    max-width: 60ch;
    margin: 0 auto;
  }

  .thanks-body { padding: 40px 0 96px; }

  .thanks-calendly {
    background: #FFF;
    border: 1px solid var(--hairline);
    border-radius: var(--radius);
    padding: 32px;
    margin-bottom: 48px;
  }
  .thanks-calendly .calendly-inline-widget { border-radius: 4px; overflow: hidden; }

  .thanks-nocalendly {
    background: var(--bone);
    border-left: 4px solid var(--gold);
    padding: 40px;
    text-align: center;
    margin-bottom: 48px;
    border-radius: var(--radius);
  }
  .thanks-nocalendly-inner { max-width: 500px; margin: 0 auto; }
  .thanks-nocalendly h2 {
    font-size: 24px;
    margin: 0 0 8px;
    font-weight: 500;
  }
  .thanks-nocalendly p {
    margin: 0 0 24px;
    color: var(--body);
    font-size: 15px;
  }
  .thanks-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .thanks-reassure {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
  }
  .thanks-reassure-item {
    padding: 24px 0 0;
    border-top: 2px solid var(--forest);
    text-align: center;
  }
  .thanks-reassure-item h3 {
    font-size: 18px;
    margin: 0 0 6px;
    font-weight: 500;
  }
  .thanks-reassure-item p {
    margin: 0;
    font-size: 14px;
    color: var(--body);
    line-height: 1.5;
  }

  .thanks-fallback {
    text-align: center;
    padding: 32px;
    background: var(--bone);
    border-radius: var(--radius);
  }
  .thanks-fallback p { margin: 0 0 8px; font-size: 15px; color: var(--body); }
  .thanks-fallback p:last-child { margin-bottom: 0; }

  @media (max-width: 720px) {
    .thanks-reassure { grid-template-columns: 1fr; gap: 20px; }
    .thanks-nocalendly, .thanks-calendly, .thanks-fallback { padding: 24px; }
  }
