:root {
  --navy:           #0D1B2A;
  --navy-mid:       #162536;
  --navy-deep:      #0A1520;
  --cream:          #F5F0EB;
  --greige:         #EDE8E1;
  --ivory:          #FAF8F4;
  --parchment:      #E6DFD3;
  --terra:          #A0522D;
  --terra-light:    #C4714A;
  --terra-dark:     #7A3B1E;
  --gold:           #C9A96E;
  --gold-light:     #E8C98A;
  --gold-dark:      #A8873E;
  --text-heading:   #0D1B2A;
  --text-body:      #2A3040;
  --text-muted:     #7A8090;
  --text-on-dark:   #FAF8F4;
  --text-dark-mid:  rgba(250,248,244,0.75);
  --text-dark-low:  rgba(250,248,244,0.45);
  --border-terra:       rgba(160,82,45,0.22);
  --border-terra-hover: rgba(160,82,45,0.55);
  --border-gold:        rgba(201,169,110,0.25);
  --border-gold-hover:  rgba(201,169,110,0.60);
  --border-light:       #DDD6CC;
  --font-heading:   'Cormorant Garamond';
  --font-body:      'DM Sans';
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {  background: var(--greige); color: var(--text-body); font-size: 1.125rem; line-height: 1.65; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'DM Sans', sans-serif;
}
a { text-decoration: none; color: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 2.5rem; }
.section         { padding: 3.5rem 2.5rem; }
.section--greige { background: var(--greige); }
.section--cream  { background: var(--cream); }
.section--dark   { background: var(--navy); }
.eyebrow { font-family: DM Sans; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--terra); display: block; margin-bottom: 0.8rem; }
.eyebrow--dark { color: var(--gold); }
.eyebrow--lined { display: flex; align-items: center; justify-content: center; gap: 0.65rem; }
.eyebrow--lined::before, .eyebrow--lined::after { content: ''; width: 28px; height: 1.5px; background: currentColor; flex-shrink: 0; }
h2.section-title { font-family: Cormorant Garamond; font-size: clamp(2.6rem, 4.5vw, 3.5rem); font-weight: 400; color: var(--text-heading); line-height: 1.12; margin-bottom: 0.6rem; }
h2.section-title em { font-style: italic; color: var(--terra); }
h2.section-title--dark { color: var(--ivory); }
h2.section-title--dark em { color: var(--gold); }
.section-intro { font-size: 1.15rem; color: var(--text-body); line-height: 1.75; }
.section-intro--dark { color: var(--text-dark-mid); }
.section-header { margin-bottom: 2rem; }

/* NAV */
#nav { background: var(--ivory); border-bottom: 1px solid rgba(230,223,211,0.9); position: sticky; top: 0; z-index: 1000; transition: box-shadow .4s; }
#nav.sc { box-shadow: 0 4px 20px rgba(13,27,42,.10); }
.nav-inner { height: 72px; display: flex; align-items: center; justify-content: space-between; max-width: 1200px; margin: 0 auto; padding: 0 2.5rem; }
.nav-logo { display: flex; align-items: center; gap: .6rem; flex-shrink: 0; }
.nav-logo-mark { width: 42px; height: 42px; background: var(--navy); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-family: Cormorant Garamond; font-size: 1.1rem; font-weight: 500; color: var(--gold); letter-spacing: .05em; }
.nav-logo-nm { font-family: Cormorant Garamond; font-size: 1.15rem; font-weight: 500; color: var(--navy); letter-spacing: .06em; line-height: 1.1; }
.nav-logo-sub { font-family: Cormorant Garamond; font-size: .72rem; font-style: italic; color: var(--terra); letter-spacing: .06em; }
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; margin-left: auto; margin-right: 1.5rem; }
.nav-links a { font-size: .88rem; font-weight: 500; color: var(--text-body); letter-spacing: .02em; transition: color .2s; position: relative; padding-bottom: 3px; }
.nav-links a::after { content: ''; position: absolute; bottom: 0; left: 0; right: 100%; height: 1.5px; background: var(--terra); transition: right .3s cubic-bezier(.25,.46,.45,.94); }
.nav-links a:hover { color: var(--terra); }
.nav-links a:hover::after, .nav-links .active::after { right: 0; }
.nav-links .active { color: var(--terra); }
.nav-cta { background: var(--terra); color: var(--ivory); font-size: .88rem; font-weight: 700; letter-spacing: .04em; padding: .65rem 1.5rem; border-radius: 6px; transition: background .25s; border: none; cursor: pointer; font-family: DM Sans; }
.nav-cta:hover { background: var(--terra-light); }
.burger { display: none; flex-direction: column; gap: 5px; width: 38px; height: 38px; background: none; border: none; cursor: pointer; align-items: center; justify-content: center; }
.burger span { display: block; width: 22px; height: 1.5px; background: var(--navy); border-radius: 2px; transition: all .3s; }
.burger.op span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.op span:nth-child(2) { opacity: 0; }
.burger.op span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.mob-nav { position: fixed; inset: 0; background: var(--navy); z-index: 999; transform: translateX(100%); transition: transform .45s cubic-bezier(.25,.46,.45,.94); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.5rem; }
.mob-nav.open { transform: none; }
.mob-nav a { font-family: Cormorant Garamond; font-size: 2.2rem; color: var(--ivory); letter-spacing: .04em; }

/* PAGE HERO */
.page-hero { background: var(--greige); padding: 2rem 2.5rem 1.5rem; text-align: center; }
.page-hero h1 { font-family:Cormorant Garamond; font-size: clamp(3.2rem, 6vw, 5rem); font-weight: 400; color: var(--text-heading); line-height: 1.08; margin-bottom: 1.1rem; }
.page-hero h1 em { font-style: italic; color: var(--terra); }
.page-hero p {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.75;
    color: var(--text-body);
    max-width: 100%;
    margin: 0 auto 1.75rem;
}

/* CONTACT LAYOUT */
.contact-layout { display: grid; grid-template-columns: 1fr 1.15fr; gap: 3rem; align-items: start; }

/* LEFT — Info + details */
.contact-info-block { display: flex; flex-direction: column; gap: 2.5rem; }

.contact-promise { background: var(--navy); border-radius: 12px; padding: 2.25rem 2rem; }
.contact-promise-title { font-family: Cormorant Garamond; font-size: clamp(1.6rem, 2.4vw, 2.1rem); font-weight: 400; color: var(--ivory); line-height: 1.18; margin-bottom: 1rem; }
.contact-promise-title em { font-style: italic; color: var(--gold-light); }
.contact-promise p { font-size: 0.97rem; color: var(--text-dark-mid); line-height: 1.8; }
.promise-em { font-style: italic; color: var(--gold-light); }

.contact-details { display: flex; flex-direction: column; gap: 1rem; }
.contact-detail-row { display: flex; align-items: flex-start; gap: 1rem; padding: 1.25rem 1.4rem; background: var(--cream); border: 1px solid var(--border-terra); border-radius: 10px; transition: border-color 0.25s, box-shadow 0.25s; }
.contact-detail-row:hover { border-color: var(--border-terra-hover); box-shadow: 0 4px 18px rgba(13,27,42,0.08); }
.contact-detail-icon { width: 42px; height: 42px; background: var(--navy); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.contact-detail-icon svg { width: 18px; height: 18px; fill: none; stroke: var(--gold); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.contact-detail-text { flex: 1; }
.contact-detail-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--terra); margin-bottom: 0.22rem; }
.contact-detail-value { font-family: Cormorant Garamond; font-size: 1.15rem; font-weight: 500; color: var(--text-heading); line-height: 1.3; }
.contact-detail-sub { font-size: 0.82rem; color: var(--text-muted); margin-top: 0.18rem; }

/* Map block */
.map-block { border-radius: 10px; overflow: hidden; border: 1px solid var(--border-terra); }
.map-block iframe { display: block; }
.map-directions-link { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.06em; color: var(--terra); padding: 0.75rem 1.1rem; background: var(--cream); width: 100%; border-top: 1px solid var(--border-terra); transition: color 0.2s, background 0.2s; text-decoration: none; }
.map-directions-link:hover { color: var(--terra-light); background: var(--greige); }
.map-directions-link svg { width: 13px; height: 13px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

/* Response time strip */
.response-strip { background: var(--terra-dark); border-radius: 10px; padding: 1.15rem 1.5rem; display: flex; align-items: center; gap: 1rem; }
.response-strip-icon { width: 36px; height: 36px; background: rgba(201,169,110,0.18); border-radius: 7px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.response-strip-icon svg { width: 17px; height: 17px; fill: none; stroke: var(--gold-light); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.response-strip p { font-size: 0.88rem; color: var(--text-dark-mid); line-height: 1.55; }
.response-strip p strong { color: var(--ivory); font-weight: 600; }

/* RIGHT — Form */
.contact-form-card { background: var(--cream); border: 1px solid var(--border-terra); border-radius: 14px; padding: 2.75rem 2.5rem; }
.form-title { font-family: Cormorant Garamond; font-size: clamp(1.7rem, 2.5vw, 2.2rem); font-weight: 400; color: var(--text-heading); line-height: 1.15; margin-bottom: 0.4rem; }
.form-title em { font-style: italic; color: var(--terra); }
.form-subtitle { font-size: 0.93rem; color: var(--text-muted); margin-bottom: 2rem; line-height: 1.6; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.15rem; }
.form-field { display: flex; flex-direction: column; gap: 0.45rem; }
.form-field--full { grid-column: 1 / 3; }
.form-label { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-heading); }
.form-label span { color: var(--terra); }
.form-input, .form-select, .form-textarea { font-family: DM Sans; font-size: 0.97rem; color: var(--text-heading); background: var(--ivory); border: 1px solid var(--border-light); border-radius: 7px; padding: 0.8rem 1rem; width: 100%; outline: none; transition: border-color 0.22s, box-shadow 0.22s; -webkit-appearance: none; appearance: none; }
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-muted); }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--terra); box-shadow: 0 0 0 3px rgba(160,82,45,0.10); }
.form-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237A8090' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; cursor: pointer; }
.form-textarea { resize: vertical; min-height: 120px; line-height: 1.65; }
.form-divider { grid-column: 1 / 3; height: 1px; background: var(--border-light); margin: 0.5rem 0; }
.form-note { grid-column: 1 / 3; font-size: 0.8rem; color: var(--text-muted); line-height: 1.6; }
.form-submit { grid-column: 1 / 3; display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; margin-top: 0.5rem; }
.btn-submit { display: inline-flex; align-items: center; gap: 0.6rem; padding: 0.95rem 2.25rem; background: var(--terra); color: var(--ivory); font-family: DM Sans; font-size: 1rem; font-weight: 700; letter-spacing: 0.03em; border: none; border-radius: 8px; cursor: pointer; transition: background 0.25s; white-space: nowrap; }
.btn-submit:hover { background: var(--terra-light); }
.btn-submit svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.form-submit-note { font-size: 0.8rem; color: var(--text-muted); line-height: 1.55; }

/* Success state */
.form-success { display: none; text-align: center; padding: 3rem 2rem; }
.form-success-icon { width: 64px; height: 64px; background: rgba(160,82,45,0.10); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; }
.form-success-icon svg { width: 30px; height: 30px; fill: none; stroke: var(--terra); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.form-success h3 { font-family: Cormorant Garamond; font-size: 1.9rem; font-weight: 400; color: var(--text-heading); margin-bottom: 0.75rem; }
.form-success h3 em { font-style: italic; color: var(--terra); }
.form-success p { font-size: 0.97rem; color: var(--text-muted); line-height: 1.7; max-width: 360px; margin: 0 auto; }

/* Trust credentials band */
.trust-band { background: var(--navy); border-top: 1px solid rgba(201,169,110,0.18); border-bottom: 1px solid rgba(201,169,110,0.18); padding: 2rem 2.5rem; overflow: hidden; }
.trust-band-inner { display: flex; align-items: center; justify-content: space-between; max-width: 1200px; margin: 0 auto; flex-wrap: nowrap; gap: 0; }
.trust-stat { flex: 1; display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 1rem; position: relative; min-width: 0; }
.trust-stat + .trust-stat::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); height: 40px; width: 1px; background: rgba(201,169,110,0.2); }
.trust-stat-value { font-family: Cormorant Garamond; font-size: clamp(1rem, 1.4vw, 1.45rem); font-weight: 400; color: var(--ivory); line-height: 1.2; margin-bottom: 0.35rem; white-space: nowrap; }
.trust-stat-value em { font-style: italic; color: var(--gold); }
.trust-stat-label { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(250,248,244,0.45); white-space: nowrap; line-height: 1; min-height: 0.6rem; }

/* Data security line */
.form-secure { grid-column: 1 / 3; display: flex; align-items: center; gap: 0.45rem; font-size: 0.78rem; color: var(--text-muted); margin-bottom: 0.15rem; }
.form-secure svg { width: 12px; height: 12px; fill: none; stroke: var(--terra); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

/* What happens next */
.what-next { grid-column: 1 / 3; background: var(--greige); border-radius: 8px; padding: 1rem 1.25rem; margin-top: 0.75rem; }
.what-next-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; color: var(--terra); margin-bottom: 0.35rem; }
.what-next-body { font-size: 0.88rem; color: var(--text-body); line-height: 1.65; }

/* Urgent call block */
.urgent-block { display: flex; align-items: center; gap: 1.25rem; margin-top: 1.25rem; padding: 1.35rem 1.5rem; background: var(--navy); border-radius: 10px; }
.urgent-block-icon { width: 44px; height: 44px; background: var(--cream); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.urgent-block-icon svg { width: 19px; height: 19px; fill: none; stroke: var(--terra); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.urgent-block-text { display: flex; flex-direction: column; gap: 0.2rem; }
.urgent-block-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); }
.urgent-block-number { font-family: Cormorant Garamond; font-size: 1.6rem; font-weight: 500; color: var(--ivory); line-height: 1.1; text-decoration: none; transition: color 0.2s; }
.urgent-block-number:hover { color: var(--gold-light); }
.urgent-block-sub { font-size: 0.82rem; color: var(--text-dark-mid); }

/* CTA STRIP */
.cta-strip { background: var(--terra); padding: 3.5rem 2.5rem; }
.cta-strip-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; max-width: 1200px; margin: 0 auto; }
.cta-strip-left { flex: 1; min-width: 260px; }
.cta-strip h2 { font-family: Cormorant Garamond; font-size: clamp(1.7rem, 2.5vw, 2.4rem); font-weight: 400; color: var(--text-on-dark); line-height: 1.15; margin-bottom: 0.4rem; }
.cta-strip h2 em { font-style: italic; color: var(--gold-light); }
.cta-strip p { font-size: 0.95rem; color: rgba(250,248,244,0.85); margin: 0.4rem 0 0; line-height: 1.6; }
.cta-actions { display: flex; gap: 0.75rem; flex-shrink: 0; flex-wrap: wrap; align-items: center; }
.btn-terra-filled { display: inline-flex; align-items: center; gap: 0.6rem; padding: 1rem 2.25rem; border: none; border-radius: 10px; font-size: 1rem; font-weight: 700; letter-spacing: 0.02em; color: var(--navy); background: var(--gold); cursor: pointer; transition: background 0.25s; white-space: nowrap; font-family: DM Sans; text-decoration: none; }
.btn-terra-filled:hover { background: var(--gold-light); }
.btn-terra-outline { display: inline-flex; align-items: center; gap: 0.4rem; padding: 1rem 0.5rem; border: none; background: transparent; font-size: 1rem; font-weight: 500; letter-spacing: 0.01em; color: var(--gold-light); cursor: pointer; transition: color 0.25s; white-space: nowrap; font-family: DM Sans; text-decoration: none; }
.btn-terra-outline:hover { color: var(--ivory); }

.compliance-footer { background: var(--navy); border-top: 1px solid rgba(201,169,110,0.18); padding: 1.25rem 1.35rem; }
.compliance-footer p { font-size: 0.82rem; color: var(--text-dark-low); text-align: center; max-width: 860px; margin: 0 auto; line-height: 1.65; letter-spacing: 0.01em; }

/* Scroll reveal */
.rv { opacity: 1; transform: none; transition: opacity .8s cubic-bezier(.25,.46,.45,.94), transform .8s cubic-bezier(.25,.46,.45,.94); }
.rv.js-ready { opacity: 0; transform: translateY(18px); }
.rv.vis { opacity: 1; transform: none; }
.d1{transition-delay:.1s}.d2{transition-delay:.2s}.d3{transition-delay:.3s}.d4{transition-delay:.4s}.d5{transition-delay:.5s}

/* Responsive */
@media (max-width: 1024px) {
  .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .burger { display: flex; }
  .trust-band-inner { flex-wrap: wrap; gap: 1.5rem; justify-content: center; }
  .trust-stat + .trust-stat::before { display: none; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field--full, .form-divider, .form-note, .form-submit { grid-column: 1; }
  .section { padding: 2.5rem 1.35rem; }
  .page-hero { padding: 2.5rem 1.35rem 2rem; }
  .cta-strip { padding: 1.75rem 1.35rem; }
  .cta-strip-inner { flex-direction: column; align-items: flex-start; }
  .contact-form-card { padding: 2rem 1.5rem; }
}
<!-- ═══════════════════════════════════════
       CUSTOM CURSOR v3 — Ledgertech stock-chart arrow
  ═══════════════════════════════════════ -->

/* ── CUSTOM CURSOR ── */
    #lt-cursor-arrow {
      position: fixed; top: 0; left: 0;
      width: 14px; height: 14px;
      pointer-events: none; z-index: 999999;
      transform: translate(-50%, -50%);
      will-change: left, top;
      transition: transform 0.2s cubic-bezier(.25,.46,.45,.94), opacity 0.3s;
    }
    #lt-cursor-ring {
      position: fixed; top: 0; left: 0;
      width: 28px; height: 28px;
      border-radius: 50%;
      border: 1px solid rgba(201,169,110,0.55);
      pointer-events: none; z-index: 999998;
      transform: translate(-50%, -50%);
      will-change: left, top;
      transition: width 0.35s cubic-bezier(.25,.46,.45,.94), height 0.35s cubic-bezier(.25,.46,.45,.94), border-color 0.35s, opacity 0.3s;
    }
    body.cursor-hover #lt-cursor-ring { width: 42px; height: 42px; border-color: rgba(201,169,110,0.9); }
    body.cursor-hover #lt-cursor-arrow { transform: translate(-50%,-50%) scale(1.1); }
    body.cursor-click #lt-cursor-ring { width: 18px; height: 18px; border-color: rgba(201,169,110,1); }
    @media (hover: none) { #lt-cursor-arrow, #lt-cursor-ring { display: none; } body { cursor: auto !important; } }
    @media (hover: hover) and (pointer: fine) { body {  } }


/* ═══════════════════════════════════════════════════
   CONTACT PAGE — MOBILE RESPONSIVE OVERRIDES
   Add this AFTER contact.css
   Breakpoints: 1024px, 768px, 560px, 400px
═══════════════════════════════════════════════════ */

/* ── GLOBAL ── */
@media (max-width: 768px) {
  html { font-size: 15px; }
  body { font-size: 1rem; }
  .container { padding: 0 1.25rem; }
  .section { padding: 2rem 1.25rem; }
}
@media (max-width: 400px) {
  html { font-size: 14px; }
  .container { padding: 0 1rem; }
  .section { padding: 1.75rem 1rem; }
}

/* ═══════════ NAV — MOBILE ═══════════ */
@media (max-width: 768px) {
  .nav-inner { height: 60px; padding: 0 1.25rem; }
  .nav-logo-mark { width: 36px; height: 36px; font-size: .95rem; }
  .nav-logo-nm  { font-size: 1rem; }
  .nav-logo-sub { font-size: .65rem; }
  .nav-links { display: none; }
  .nav-cta   { display: none; }
  .burger    { display: flex; }
  .mob-nav a { font-size: 1.8rem; }
}

/* ═══════════ PAGE HERO — MOBILE ═══════════ */
@media (max-width: 768px) {
  .page-hero { padding: 2rem 1.25rem 1.5rem; }
  .page-hero h1 { font-size: clamp(2.4rem, 8vw, 3.5rem); margin-bottom: .85rem; }
  .page-hero p  { font-size: 1.05rem; margin-bottom: 0;  font-family: 'DM Sans', sans-serif !important;
    font-size: 0.85rem !important;s }
}
@media (max-width: 400px) {
  .page-hero h1 { font-size: clamp(2rem, 9vw, 3rem); }
}

/* ═══════════ CONTACT LAYOUT — MOBILE ═══════════ */
@media (max-width: 1024px) {
  .contact-layout { grid-template-columns: 1fr; gap: 2.25rem; }
}

/* ═══════════ LEFT — PROMISE BLOCK — MOBILE ═══════════ */
@media (max-width: 768px) {
  .contact-promise { padding: 1.75rem 1.5rem; border-radius: 10px; }
  .contact-promise-title { font-size: clamp(1.4rem, 5.5vw, 1.8rem); margin-bottom: .75rem; }
  .contact-promise p { font-size: .92rem; }
}

/* ═══════════ CONTACT DETAIL ROWS — MOBILE ═══════════ */
@media (max-width: 768px) {
  .contact-details { gap: .75rem; }
  .contact-detail-row { padding: 1rem 1.15rem; gap: .75rem; border-radius: 9px; }
  .contact-detail-icon { width: 38px; height: 38px; border-radius: 7px; }
  .contact-detail-icon svg { width: 16px; height: 16px; }
  .contact-detail-label { font-size: .65rem; }
  .contact-detail-value { font-size: 1.05rem; }
  .contact-detail-sub   { font-size: .78rem; }
}

/* ═══════════ MAP BLOCK — MOBILE ═══════════ */
@media (max-width: 768px) {
  .map-block { border-radius: 9px; }
  .map-block iframe { height: 200px !important; }
  .map-directions-link { font-size: .78rem; padding: .65rem 1rem; }
}

/* ═══════════ RESPONSE STRIP — MOBILE ═══════════ */
@media (max-width: 768px) {
  .response-strip { padding: 1rem 1.25rem; gap: .85rem; border-radius: 9px; }
  .response-strip-icon { width: 32px; height: 32px; border-radius: 6px; }
  .response-strip-icon svg { width: 15px; height: 15px; }
  .response-strip p { font-size: .84rem; }
}

/* ═══════════ URGENT BLOCK — MOBILE ═══════════ */
@media (max-width: 768px) {
  .urgent-block { padding: 1.1rem 1.25rem; gap: 1rem; border-radius: 9px; margin-top: 1rem; }
  .urgent-block-icon { width: 38px; height: 38px; border-radius: 7px; }
  .urgent-block-icon svg { width: 17px; height: 17px; }
  .urgent-block-label  { font-size: .65rem; }
  .urgent-block-number { font-size: 1.35rem; }
  .urgent-block-sub    { font-size: .78rem; }
}

/* ═══════════ CONTACT FORM CARD — MOBILE ═══════════ */
@media (max-width: 1024px) {
  .contact-form-card { padding: 2.25rem 2rem; }
}

@media (max-width: 768px) {
  .contact-form-card { padding: 1.75rem 1.35rem; border-radius: 12px; }
  .form-title    { font-size: clamp(1.5rem, 5.5vw, 1.9rem); }
  .form-subtitle { font-size: .88rem; margin-bottom: 1.5rem; }

  /* Single column form */
  .form-grid { grid-template-columns: 1fr; gap: .9rem; }
  .form-field--full,
  .form-divider,
  .form-note,
  .form-submit,
  .form-secure,
  .what-next    { grid-column: 1; }

  .form-label   { font-size: .72rem; }
  .form-input,
  .form-select,
  .form-textarea { font-size: .92rem; padding: .72rem .9rem; }
  .form-textarea { min-height: 100px; }

  /* Submit row */
  .form-submit { flex-direction: column; align-items: stretch; gap: .85rem; margin-top: .35rem; }
  .btn-submit  { width: 100%; justify-content: center; padding: .9rem 1.5rem; font-size: .95rem; }
  .form-submit-note { font-size: .75rem; text-align: center; }

  /* Security line */
  .form-secure { font-size: .72rem; gap: .38rem; }

  /* What happens next */
  .what-next { padding: .85rem 1.1rem; margin-top: .55rem; }
  .what-next-label { font-size: .68rem; }
  .what-next-body  { font-size: .84rem; }
}

@media (max-width: 400px) {
  .contact-form-card { padding: 1.5rem 1.1rem; }
  .form-title { font-size: clamp(1.4rem, 7vw, 1.8rem); }
  .form-input,
  .form-select,
  .form-textarea { font-size: .88rem; }
}

/* ═══════════ FORM SUCCESS STATE — MOBILE ═══════════ */
@media (max-width: 768px) {
  .form-success { padding: 2.5rem 1.5rem; }
  .form-success-icon { width: 54px; height: 54px; margin-bottom: 1.25rem; }
  .form-success-icon svg { width: 26px; height: 26px; }
  .form-success h3 { font-size: 1.65rem; }
  .form-success p  { font-size: .92rem; }
}

/* ═══════════ TRUST BAND — MOBILE ═══════════ */
@media (max-width: 768px) {
  .trust-band { padding: 1.5rem 1.25rem; }
  .trust-band-inner { flex-wrap: wrap; gap: 1.25rem; justify-content: center; }
  .trust-stat { flex: 0 0 calc(50% - 1rem); min-width: 120px; }
  .trust-stat + .trust-stat::before { display: none; }
  .trust-stat-value { font-size: clamp(.95rem, 3vw, 1.3rem); }
  .trust-stat-label { font-size: .56rem; }
}

@media (max-width: 400px) {
  .trust-stat { flex: 0 0 calc(50% - .5rem); }
  .trust-stat-value { font-size: .9rem; }
}

/* ═══════════ CTA STRIP — MOBILE ═══════════ */
@media (max-width: 768px) {
  .cta-strip { padding: 2rem 1.25rem; }
  .cta-strip-inner { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .cta-strip h2 { font-size: clamp(1.5rem, 5.5vw, 2rem); }
  .cta-strip p  { font-size: .9rem; }
  .cta-actions  { width: 100%; flex-direction: column; gap: .65rem; }
  .btn-terra-filled  { width: 100%; justify-content: center; padding: .9rem 1.5rem; }
  .btn-terra-outline { padding: .5rem 0; }
}

/* ═══════════ COMPLIANCE FOOTER — MOBILE ═══════════ */
@media (max-width: 768px) {
  .compliance-footer { padding: 1rem 1.25rem; }
  .compliance-footer p { font-size: .76rem; }
}

/* ═══════════ CONTACT INFO BLOCK — SPACING ═══════════ */
@media (max-width: 768px) {
  .contact-info-block { gap: 1.75rem; }
}

/* ═══════════ SECTION TITLES — MOBILE ═══════════ */
@media (max-width: 768px) {
  h2.section-title { font-size: clamp(2rem, 7vw, 2.8rem); }
  .section-intro    { font-size: 1rem; }
  .section-header   { margin-bottom: 1.5rem; }
}

/* ═══════════ CUSTOM CURSOR — TOUCH HIDE ═══════════ */
@media (hover: none) {
  #lt-cursor-arrow,
  #lt-cursor-ring { display: none !important; }
  body { cursor: auto !important; }
}

/* ═══════════ OVERFLOW SAFETY ═══════════ */
@media (max-width: 768px) {
  body { overflow-x: hidden; }
}


/* ==========================================================
   Ledgertech — Self-hosted fonts (PECR / UK GDPR compliant)
   No external requests. All files served from /fonts/
   Generated from Fontsource (identical to Google Fonts data).
   ========================================================== */

/* ── Cormorant Garamond ── */

@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('cormorant-garamond-latin-300-normal.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
                 U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url('cormorant-garamond-latin-300-italic.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
                 U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('cormorant-garamond-latin-400-normal.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
                 U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('cormorant-garamond-latin-400-italic.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
                 U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('cormorant-garamond-latin-500-normal.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
                 U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url('cormorant-garamond-latin-500-italic.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
                 U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('cormorant-garamond-latin-600-normal.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
                 U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url('cormorant-garamond-latin-600-italic.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
                 U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ── DM Sans ── */

@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('dm-sans-latin-300-normal.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
                 U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('dm-sans-latin-400-normal.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
                 U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('dm-sans-latin-500-normal.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
                 U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('dm-sans-latin-600-normal.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
                 U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('dm-sans-latin-700-normal.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
                 U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ── DM Mono ── */

@font-face {
  font-family: 'DM Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('dm-mono-latin-400-normal.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
                 U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'DM Mono';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('dm-mono-latin-500-normal.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
                 U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
