:root {
  --ink: #0F1923;
  --ink-2: #1a2534;
  --muted: #525252;
  --muted-2: #737373;
  --muted-3: #a3a3a3;
  --line: #e5e5e5;
  --line-2: #f0f0f0;
  --line-3: #f7f7f7;
  --paper: #ffffff;
  --paper-2: #fafafa;
  --paper-3: #f5f5f5;
  --accent: #B08D57;
  --accent-hover: #8F6F3E;
  --accent-soft: #F7F1E6;
  --accent-soft-2: #FBF7F0;
  --green: #2f7a4d;
  --green-soft: #f0f7f3;
  --green-on-dark: #3FA86A;
  --red: #c94a3e;
  --red-soft: #fbe9e7;
  --red-on-dark: #E27F75;
  --amber: #b87f2a;
  --amber-soft: #f7eedf;
  --amber-on-dark: #E0A458;
  --blue: #3b5ea5;
  --blue-soft: #eef2f8;
  --blue-on-dark: #5C8AD9;
  --purple-on-dark: #B69BE0;
  --ff-body: 'DM Sans', system-ui, -apple-system, Segoe UI, sans-serif;
  --ff-mono: 'DM Sans', ui-sans-serif, system-ui, -apple-system, sans-serif;
  --max-w: 1440px;
  --inner-pad: 32px;
  --ease-smooth: cubic-bezier(0.2, 0.8, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast: 0.15s;
  --dur-base: 0.3s;
  --dur-slow: 0.7s;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--ff-body); color: var(--ink); background: var(--paper);
  line-height: 1.5; text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; border: 0; background: none; padding: 0; cursor: pointer; }
img, svg { display: block; max-width: 100%; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5, h6 { margin: 0; line-height: 1.1; font-weight: 600; }
p { margin: 0; }
.faq-a a { color: var(--accent); border-bottom: 1px solid rgba(176,141,87,0.35); transition: border-color var(--dur-fast); }
.faq-a a:hover { border-bottom-color: var(--accent); }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.wrap { max-width: var(--max-w); margin: 0 auto; padding-left: var(--inner-pad); padding-right: var(--inner-pad); }
main > section { padding: 96px var(--inner-pad); border-bottom: 1px solid var(--line); }
main > section.section-tight { padding: 80px var(--inner-pad); }
.bg-paper-2 { background: var(--paper-2); }
.bg-ink { background: var(--ink); color: #fff; }

/* Type */
.eyebrow { font-size: 15px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); }
.lede { font-size: 18px; line-height: 1.6; color: var(--muted); }
.h-display { font-size: clamp(48px, 5.2vw, 76px); font-weight: 600; letter-spacing: -0.03em; line-height: 1.05; }
.h-section { font-size: clamp(40px, 4.2vw, 60px); font-weight: 600; letter-spacing: -0.02em; line-height: 1.08; }
.h-section-sm { font-size: clamp(36px, 3.8vw, 52px); font-weight: 600; letter-spacing: -0.02em; line-height: 1.1; }
.h-section-xs { font-size: clamp(32px, 3.4vw, 44px); font-weight: 600; letter-spacing: -0.02em; line-height: 1.12; }
.mono { font-family: var(--ff-mono); }
.num { font-variant-numeric: tabular-nums; }

/* Buttons */
.btn {
  font-family: inherit; font-size: 16px; font-weight: 500;
  padding: 13px 22px; border: 1px solid transparent; border-radius: 0;
  cursor: pointer; display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; white-space: nowrap; text-decoration: none;
  transition: background var(--dur-fast) var(--ease-smooth),
              color var(--dur-fast) var(--ease-smooth),
              border-color var(--dur-fast) var(--ease-smooth),
              transform var(--dur-fast) var(--ease-smooth),
              box-shadow var(--dur-base) var(--ease-smooth);
}
.btn:hover  { transform: translateY(-1px); }
.btn:active { transform: translateY(0); transition-duration: 0s; }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--accent-hover); box-shadow: 0 10px 28px -10px rgba(176, 141, 87, 0.55); }
.btn-ink { background: var(--ink); color: #fff; }
.btn-ink:hover { background: var(--ink-2); box-shadow: 0 10px 28px -10px rgba(15, 25, 35, 0.5); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); background: var(--paper-2); }
.btn-ghost-inv { background: transparent; color: #fff; border-color: rgba(255,255,255,0.25); }
.btn-ghost-inv:hover { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.04); }
.btn-lg { padding: 16px 26px; font-size: 17px; font-weight: 600; }
.link-arrow {
  font-size: 16px; font-weight: 500; color: var(--accent);
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap var(--dur-fast) var(--ease-smooth);
}
.link-arrow:hover { gap: 10px; }

/* ============== HEADER ============== */
.site-header { position: sticky; top: 0; z-index: 100; background: var(--paper); border-bottom: 1px solid var(--line); }
.pulse-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); animation: pulse 2s ease-in-out infinite; flex: none; }
.site-nav { background: var(--paper); }
.site-nav-inner { max-width: var(--max-w); margin: 0 auto; padding: 14px var(--inner-pad); display: flex; align-items: center; justify-content: space-between; }
.site-nav-left { display: flex; align-items: center; gap: 44px; }
.site-nav-right { display: flex; align-items: center; gap: 10px; }
.nav-list { display: flex; align-items: center; gap: 22px; }
.nav-link { font-size: 16.5px; font-weight: 500; color: var(--ink); padding: 8px 4px; transition: color var(--dur-fast); }
.nav-link:hover { color: var(--accent); }
.nav-link.is-current { color: var(--accent); position: relative; }
.nav-link.is-current::after { content: ""; position: absolute; left: 4px; right: 4px; bottom: 0; height: 2px; background: var(--accent); }
.nav-signin { font-size: 16px; padding: 8px 12px; color: var(--ink); }
.nav-signin:hover { color: var(--accent); }
.nav-cta { padding: 10px 18px; }
.nav-hamburger { display: none; width: 36px; height: 36px; flex-direction: column; justify-content: center; align-items: center; gap: 5px; padding: 0; background: none; border: 0; }
.nav-hamburger span { display: block; width: 20px; height: 2px; background: var(--ink); }
.edma-logo { display: inline-flex; align-items: center; gap: 8px; color: var(--ink); font-weight: 700; font-size: 22px; letter-spacing: -0.01em; }
.edma-logo .phoenix { height: 34px; width: auto; display: block; }
.edma-wordmark { font-family: var(--ff-body); }

/* ============== HERO ============== */
.s-hero { text-align: center; padding-bottom: 56px; }
.s-hero-inner { max-width: 1040px; margin: 0 auto; }
.s-hero .eyebrow { display: inline-block; margin-bottom: 28px; }
.s-hero h1 { margin-bottom: 24px; }
.s-hero h1 em { font-style: normal; color: var(--accent); }
.s-hero .lede { max-width: 900px; margin: 0 auto 36px; }
.cta-row { display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

.hero-strap {
  display: inline-flex; align-items: center; gap: 14px;
  margin: 0 auto 40px;
  padding: 9px 16px;
  background: var(--ink); color: rgba(255,255,255,0.9);
  font-family: var(--ff-mono); font-size: 14px;
  letter-spacing: 0.02em; flex-wrap: wrap; justify-content: center;
}
.hero-strap .tg {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12.5px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 2px 8px; background: rgba(176,141,87,0.18); color: var(--accent);
  border: 1px solid rgba(176,141,87,0.4);
}
.hero-strap .sep { color: rgba(255,255,255,0.25); }
.hero-strap .dot { width: 6px; height: 6px; background: var(--green-on-dark); border-radius: 50%; }
.hero-strap .num { color: #fff; }

.hero-kpi { max-width: 1180px; margin: 64px auto 0; display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); }
.hero-kpi-cell { padding: 22px 24px; border-right: 1px solid var(--line-2); text-align: left; }
.hero-kpi-cell:last-child { border-right: 0; }
.hero-kpi-label { font-size: 13px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted-2); }
.hero-kpi-val { margin-top: 10px; font-family: var(--ff-mono); font-size: 22px; color: var(--ink); letter-spacing: -0.01em; }
.hero-kpi-val .unit { display: block; font-size: 14px; color: var(--muted-2); margin-top: 6px; letter-spacing: 0.02em; line-height: 1.4; }
.hero-kpi-val .accent { color: var(--accent); }
.hero-kpi-val .small { font-size: 16px; color: var(--muted-2); margin-left: 6px; }
.related-card-title { font-size: 22px; font-weight: 600; letter-spacing: -0.01em; color: var(--ink); }
.related-card-desc { font-size: 16px; color: var(--muted); line-height: 1.55; }
.related-card-link { color: var(--accent); font-size: 15.5px; font-weight: 500; margin-top: auto; padding-top: 8px; }

/* ============== FOOTER (shared) ============== */
.site-footer { background: var(--ink); color: #fff; }
.footer-top { border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-top-inner { max-width: var(--max-w); margin: 0 auto; padding: 48px var(--inner-pad); display: grid; grid-template-columns: 1.4fr 1fr; gap: 64px; align-items: start; }
.edma-logo--footer .phoenix { height: 40px; }
.edma-logo--footer .edma-wordmark { font-size: 26px; color: #fff; }
.edma-logo--footer { color: #fff; }
.footer-brand-tag { color: rgba(255,255,255,0.55); font-size: 16px; line-height: 1.55; margin-top: 14px; max-width: 480px; }
.footer-newsletter-title { color: #fff; font-size: 15px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 6px; }
.footer-newsletter-sub { color: rgba(255,255,255,0.55); font-size: 15px; margin-bottom: 14px; }
.footer-newsletter { display: flex; gap: 8px; }
.footer-newsletter input { flex: 1; padding: 12px 14px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.12); color: #fff; font-family: inherit; font-size: 15px; outline: none; }
.footer-newsletter input::placeholder { color: rgba(255,255,255,0.35); }
.footer-newsletter input:focus { border-color: var(--accent); }
.footer-newsletter button { padding: 12px 18px; background: var(--accent); color: #fff; font-family: inherit; font-size: 15px; font-weight: 500; border: 0; cursor: pointer; }
.footer-newsletter button:hover { background: var(--accent-hover); }
.footer-links { max-width: var(--max-w); margin: 0 auto; padding: 56px var(--inner-pad); display: grid; grid-template-columns: repeat(6, 1fr); gap: 32px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-col-title { font-size: 14px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.footer-link-list li { padding: 4px 0; }
.footer-link-list a { font-size: 15px; color: rgba(255,255,255,0.65); transition: color var(--dur-fast); }
.footer-link-list a:hover { color: #fff; }
.footer-region { border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-region-inner { max-width: var(--max-w); margin: 0 auto; padding: 22px var(--inner-pad); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-region-left, .footer-social { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; font-size: 14.5px; color: rgba(255,255,255,0.7); }
.footer-region-left .label, .footer-social .label { font-size: 13px; font-weight: 600; letter-spacing: 0.1em; color: rgba(255,255,255,0.4); text-transform: uppercase; }
.footer-region-left a:hover { color: #fff; }
.footer-region-divider { color: rgba(255,255,255,0.2); }
.footer-region-left a.is-muted { color: rgba(255,255,255,0.4); }
.footer-social-icon { width: 30px; height: 30px; border: 1px solid rgba(255,255,255,0.15); display: inline-flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 600; }
.footer-social-icon:hover { border-color: var(--accent); color: var(--accent); }
.footer-legal-inner { max-width: var(--max-w); margin: 0 auto; padding: 22px var(--inner-pad); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; font-size: 14px; color: rgba(255,255,255,0.5); }
.footer-legal-inner .links { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.footer-legal-inner .status-ok { color: var(--green-on-dark); }


/* ============================================================== */
/* CONTACT — SECTION STYLES                                        */
/* ============================================================== */

/* Hero override — slightly tighter than /about */
.s-hero h1 em { font-style: normal; color: var(--accent); }
.s-hero .lede { max-width: 820px; }

.inline-link {
  color: var(--accent);
  border-bottom: 1px solid rgba(176,141,87,0.35);
  transition: border-color var(--dur-fast);
}
.inline-link:hover { border-bottom-color: var(--accent); }

/* ============== 2 · ROUTE PICKER ============== */
.s-routes { padding-top: 96px; padding-bottom: 96px; }
.s-routes-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--inner-pad); }
.s-routes-head { max-width: 860px; margin: 0 auto 56px; text-align: center; }
.s-routes-head .eyebrow { display: inline-block; margin-bottom: 14px; }
.s-routes-head h2 { margin: 0 0 16px; }
.s-routes-head .lede { margin: 0 auto; max-width: 740px; }

.routes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 1080px;
  margin: 0 auto;
}
.route-card {
  padding: 26px 26px 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out),
              border-color var(--dur-fast) var(--ease-smooth);
}
.route-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(15, 25, 35, 0.06), 0 3px 8px rgba(15, 25, 35, 0.04);
  border-color: var(--accent);
}
.route-card-primary {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.route-card-primary:hover { border-color: var(--accent); }

.route-eb {
  font-family: var(--ff-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.route-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin-bottom: 12px;
}
.route-card-primary h3 { color: #fff; }
.route-card > p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--muted);
  margin-bottom: 14px;
  flex-grow: 1;
}
.route-card-primary > p { color: rgba(255,255,255,0.72); }

.route-foot {
  margin-top: auto !important;
  padding-top: 14px !important;
  border-top: 1px solid var(--line-2);
  margin-bottom: 0 !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  color: var(--muted-2) !important;
  font-family: var(--ff-mono);
  display: flex; align-items: center; gap: 8px;
}
.route-card-primary .route-foot {
  border-top-color: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7) !important;
}
.route-foot .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}
.route-foot .dot-green { background: var(--green); }
.route-card-primary .route-foot .dot-green { background: var(--green-on-dark); }

/* ============== 3 · FORM ============== */
.s-form { padding-top: 96px; padding-bottom: 96px; scroll-margin-top: 80px; }
.s-form-inner { max-width: 860px; margin: 0 auto; padding: 0 var(--inner-pad); }
.s-form-head { text-align: center; margin-bottom: 48px; }
.s-form-head .eyebrow { display: inline-block; margin-bottom: 14px; }
.s-form-head h2 { margin: 0 0 16px; }
.s-form-head .lede { margin: 0 auto; max-width: 660px; font-size: 15.5px; }

.contact-form {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 36px 36px;
  display: flex; flex-direction: column; gap: 22px;
}

.cf-field { display: flex; flex-direction: column; gap: 8px; }
.cf-field-type { gap: 14px; }
.cf-legend, .cf-field label {
  font-family: var(--ff-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0;
  padding: 0;
}
.cf-field label .req { color: var(--accent); font-weight: 700; }

.cf-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.cf-field input,
.cf-field textarea {
  width: 100%;
  padding: 12px 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  outline: none;
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
}
.cf-field input::placeholder,
.cf-field textarea::placeholder { color: var(--muted-3); }
.cf-field input:focus,
.cf-field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(176,141,87,0.12);
}
.cf-field textarea { resize: vertical; min-height: 130px; line-height: 1.5; }

/* Inquiry type pills (radio group) — high-specificity overrides
   to defeat the .cf-field label rule above which sets padding:0,
   font-size:12px, text-transform:uppercase that we don't want.
   Sharp corners to match the rest of the site (btn { border-radius:0 }). */
.cf-type-row {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.cf-type-row .cf-type-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 0;
  font-family: var(--ff-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--muted);
  cursor: pointer;
  margin: 0;
  transition: border-color var(--dur-fast), background var(--dur-fast), color var(--dur-fast), box-shadow var(--dur-fast);
  user-select: none;
}
.cf-type-row .cf-type-pill input {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
}
.cf-type-row .cf-type-pill:hover {
  border-color: var(--accent);
  color: var(--ink);
}
.cf-type-row .cf-type-pill:has(input:focus-visible) {
  box-shadow: 0 0 0 3px rgba(176, 141, 87, 0.18);
}
.cf-type-row .cf-type-pill.is-active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.cf-type-row .cf-type-pill.is-active:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: #fff;
}

/* Honeypot — accessibly hidden from humans, visible to dumb bots */
.cf-honeypot {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.cf-error {
  padding: 12px 14px;
  background: var(--red-soft);
  border-left: 3px solid var(--red);
  font-size: 14px;
  color: var(--red);
  line-height: 1.5;
}

.cf-submit-row {
  display: flex; flex-direction: column; gap: 10px;
  padding-top: 8px;
  border-top: 1px solid var(--line-2);
  margin-top: 4px;
}
.cf-submit {
  align-self: flex-start;
  padding: 14px 28px;
  background: var(--accent);
  color: #fff;
  font-family: inherit;
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 0;
  cursor: pointer;
  transition: background var(--dur-fast), transform var(--dur-fast);
}
.cf-submit:hover:not(:disabled) {
  background: var(--accent-hover);
  transform: translateY(-1px);
}
.cf-submit:active { transform: translateY(0); }
.cf-submit:disabled {
  background: var(--muted-3);
  cursor: not-allowed;
  transform: none;
}
.cf-submit-note {
  font-size: 12.5px;
  color: var(--muted-2);
  line-height: 1.5;
}

/* Success state */
.form-success {
  background: var(--paper);
  border: 1px solid var(--green);
  border-left: 3px solid var(--green);
  padding: 40px 36px;
  text-align: center;
}
.form-success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}
.form-success h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.form-success > p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0 auto 18px;
  max-width: 540px;
}
.form-success-foot {
  font-size: 13.5px !important;
  color: var(--muted-2) !important;
  padding-top: 16px;
  border-top: 1px solid var(--line-2);
  margin-top: 12px !important;
  max-width: 600px !important;
}

/* ============== 4 · DIRECT ADDRESS ============== */
.s-direct { padding-top: 96px; padding-bottom: 96px; }
.s-direct-inner { max-width: 860px; margin: 0 auto; padding: 0 var(--inner-pad); }
.s-direct-head { text-align: center; margin-bottom: 40px; }
.s-direct-head .eyebrow { display: inline-block; margin-bottom: 14px; }
.s-direct-head h2 { margin: 0 0 16px; }
.s-direct-head .lede { margin: 0 auto; max-width: 700px; font-size: 15.5px; }

.direct-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  padding: 32px 32px;
  text-align: center;
}
.direct-email {
  display: block;
  font-family: var(--ff-mono);
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 10px;
  transition: color var(--dur-fast);
}
.direct-email:hover { color: var(--accent); }
.direct-sub {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 22px;
}
.direct-tip {
  padding: 14px 16px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--muted);
  text-align: left;
}
.direct-tip .tip-eb {
  font-family: var(--ff-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent);
  display: block;
  margin-bottom: 6px;
}
.direct-tip .mono {
  font-family: var(--ff-mono);
  font-size: 12.5px;
  background: var(--paper);
  padding: 1px 6px;
  border: 1px solid var(--line);
  color: var(--ink);
}

.direct-pgp {
  margin-top: 24px;
  text-align: center;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--muted-2);
}
.direct-pgp strong { color: var(--ink); font-weight: 600; }
.direct-pgp .mono {
  font-family: var(--ff-mono);
  font-size: 12.5px;
  background: var(--paper-2);
  padding: 1px 6px;
  border: 1px solid var(--line);
  color: var(--ink);
}

/* ============== 5 · ENTITY ============== */
.s-entity { padding-top: 80px; padding-bottom: 80px; }
.s-entity-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--inner-pad); }
.s-entity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1180px;
  margin: 0 auto;
}
.s-entity-block {
  padding: 28px 28px;
  background: var(--paper-2);
  border: 1px solid var(--line);
}
.entity-eb {
  font-family: var(--ff-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.entity-name {
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.entity-meta {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
}
.entity-link {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.entity-not {
  display: flex; flex-direction: column; gap: 10px;
  margin: 0; padding: 0;
}
.entity-not li {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
  padding-left: 18px;
  position: relative;
}
.entity-not li::before {
  content: '×';
  position: absolute;
  left: 0;
  top: -1px;
  color: var(--red);
  font-weight: 700;
  font-size: 14px;
}

/* ============================================================== */
/* RESPONSIVE                                                      */
/* ============================================================== */
@media (max-width: 1100px) {
  .routes-grid { grid-template-columns: repeat(2, 1fr); }
  .s-entity-grid { grid-template-columns: 1fr; gap: 18px; max-width: 720px; }
  .footer-links { grid-template-columns: repeat(3, 1fr); }
  .footer-top-inner { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 720px) {
  main > section { padding: 56px 20px; }
  .nav-list, .nav-signin, .nav-link-pricing { display: none; }
  .nav-cta { display: inline-flex; font-size: 14px; padding: 8px 14px; }
  .nav-hamburger { display: flex; }

  /* Eliminate the second layer of horizontal padding on inner
     containers so the total page side-spacing on mobile is just
     the 20px from main > section above, per Vio's spec. */
  .s-hero-inner,
  .s-routes-inner,
  .s-form-inner,
  .s-direct-inner,
  .s-entity-inner {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .routes-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 24px 20px; }
  .cf-grid { grid-template-columns: 1fr; gap: 18px; }
  .cf-submit { align-self: stretch; text-align: center; }
  .direct-card { padding: 24px 20px; }
  .direct-email { font-size: 22px; word-break: break-all; }
  .s-entity-block { padding: 24px 20px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }

  /* Pills go full-width on mobile so they don't wrap awkwardly */
  .cf-type-row .cf-type-pill {
    flex: 1 1 calc(50% - 4px);
    justify-content: center;
    padding: 11px 12px;
  }
}
