/* =====================================================
   GRAYSON TOWNCAR — TRAVEL ADVISOR PARTNER PROGRAM
   Editorial luxury treatment: warm beige paper,
   deep navy ink, refined gold accents.
   Scoped under `.ed-page` so it doesn't bleed into
   other pages on the site.
   ===================================================== */

/* ---------- Tokens (authoritative) ---------- */
.ed-page {
  --ed-bg:        #F2EBDB;
  --ed-bg-deep:   #E9E0CB;
  --ed-paper:     #FAF6EA;
  --ed-ink:       #0F1B2D;
  --ed-ink-2:     #1B2436;
  --ed-muted:     #5A6470;
  --ed-muted-2:   #8A8472;
  --ed-gold:      #B8923C;
  --ed-gold-d:    #7A5E1F;
  --ed-gold-l:    #D5B36C;
  --ed-gold-soft: #EFE0BD;
  --ed-rule:      rgba(15, 27, 45, 0.10);
  --ed-rule-l:    rgba(15, 27, 45, 0.06);
  --ed-gold-r:    rgba(184, 146, 60, 0.22);
  --ed-cream:     #F8F2DD;
  --ed-error:     #9A3F2C;

  --ed-serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --ed-sans:  "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  background: var(--ed-bg);
  color: var(--ed-ink);
  font-family: var(--ed-sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}

/* ---------- Resets within .ed-page ---------- */
.ed-page *,
.ed-page *::before,
.ed-page *::after { box-sizing: border-box; }

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

.ed-page ::selection {
  background: rgba(184, 146, 60, 0.35);
  color: var(--ed-ink);
}

.ed-page button,
.ed-page input,
.ed-page textarea,
.ed-page select { font-family: inherit; color: inherit; }

.ed-page img { max-width: 100%; display: block; }

/* ---------- Typography primitives ---------- */
.ed-page .ed-display {
  font-family: var(--ed-serif);
  font-weight: 500;
  letter-spacing: -0.022em;
  color: var(--ed-ink);
  line-height: 1.02;
  margin: 0;
}

.ed-page .ed-italic {
  font-family: var(--ed-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.018em;
  color: var(--ed-gold-d);
}

.ed-page .ed-eyebrow {
  display: inline-block;
  font-family: var(--ed-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ed-gold-d);
  line-height: 1.3;
}

.ed-page .ed-rule-gold {
  display: inline-block;
  width: 56px;
  height: 1px;
  background: linear-gradient(90deg, var(--ed-gold), transparent);
}

.ed-page .ed-link {
  color: var(--ed-ink);
  text-decoration: none;
  transition: color 0.25s ease, border-color 0.25s ease;
}
.ed-page .ed-link:hover { color: var(--ed-gold-d); }

/* ---------- Buttons ---------- */
.ed-page .ed-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  font-family: var(--ed-sans);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease,
              background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.ed-page .ed-btn-ink {
  background: var(--ed-ink);
  color: var(--ed-cream);
  box-shadow: 0 1px 0 rgba(255,255,255,0.10) inset,
              0 14px 30px -16px rgba(15,27,45,0.45);
}
.ed-page .ed-btn-ink:hover {
  background: #1B2C45;
  color: var(--ed-cream);
  transform: translateY(-2px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.10) inset,
              0 18px 38px -16px rgba(15,27,45,0.55);
}

.ed-page .ed-btn-gold {
  background: var(--ed-gold);
  color: var(--ed-ink);
  box-shadow: 0 1px 0 rgba(255,255,255,0.30) inset,
              0 14px 30px -14px var(--ed-gold-r);
}
.ed-page .ed-btn-gold:hover {
  background: var(--ed-gold-d);
  color: var(--ed-cream);
  transform: translateY(-2px);
}

.ed-page .ed-btn-ghost {
  background: transparent;
  color: var(--ed-ink);
  border: 1px solid var(--ed-ink);
  padding: 15px 25px;
}
.ed-page .ed-btn-ghost:hover {
  background: var(--ed-ink);
  color: var(--ed-cream);
  transform: translateY(-2px);
}

.ed-page .ed-btn-ghost-light {
  background: transparent;
  color: var(--ed-cream);
  border: 1px solid rgba(248, 242, 221, 0.40);
  padding: 15px 25px;
}
.ed-page .ed-btn-ghost-light:hover {
  background: var(--ed-cream);
  color: var(--ed-ink);
  transform: translateY(-2px);
}

/* ---------- Form fields ---------- */
.ed-page .ed-field-label {
  display: block;
  font-family: var(--ed-sans);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--ed-gold-d);
  margin-bottom: 4px;
}
.ed-page .ed-field-label .req {
  color: var(--ed-gold-d);
  margin-left: 4px;
}
.ed-page .ed-field-label .opt {
  margin-left: 6px;
  letter-spacing: 0.12em;
  font-weight: 500;
  color: var(--ed-muted-2);
  text-transform: none;
  font-size: 10px;
}

.ed-page .ed-field {
  width: 100%;
  box-sizing: border-box;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--ed-rule);
  border-radius: 0;
  padding: 12px 0 14px;
  font-family: var(--ed-sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--ed-ink);
  outline: none;
  transition: border-color 0.25s ease;
}
.ed-page .ed-field::placeholder {
  color: rgba(15, 27, 45, 0.36);
  font-weight: 400;
}
.ed-page .ed-field:focus { border-bottom-color: var(--ed-gold-d); }
.ed-page .ed-field.has-error { border-bottom-color: var(--ed-error); }

.ed-page select.ed-field {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237A5E1F' stroke-width='2'><path d='M6 9l6 6 6-6'/></svg>");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 24px;
}

.ed-page textarea.ed-field {
  resize: vertical;
  min-height: 96px;
  padding-top: 14px;
  line-height: 1.55;
}

.ed-page .ed-field-error {
  font-family: var(--ed-sans);
  font-size: 12px;
  color: var(--ed-error);
  margin: 6px 0 0;
  line-height: 1.4;
}

.ed-page .ed-form-error {
  padding: 14px 18px;
  margin-bottom: 24px;
  border: 1px solid rgba(154, 63, 44, 0.30);
  background: rgba(154, 63, 44, 0.06);
  color: var(--ed-error);
  font-family: var(--ed-sans);
  font-size: 13px;
  line-height: 1.5;
  border-radius: 2px;
}

/* Inline radios (preferred contact) — keep editorial */
.ed-page .ed-radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding: 14px 0 4px;
}
.ed-page .ed-radio {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ed-sans);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ed-ink-2);
  cursor: pointer;
}
.ed-page .ed-radio input {
  appearance: none;
  -webkit-appearance: none;
  width: 14px; height: 14px;
  border-radius: 50%;
  border: 1px solid var(--ed-rule);
  background: var(--ed-paper);
  cursor: pointer;
  position: relative;
  margin: 0;
}
.ed-page .ed-radio input:checked {
  border-color: var(--ed-gold-d);
}
.ed-page .ed-radio input:checked::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--ed-gold);
}

/* ---------- Reveal animation ---------- */
@keyframes edFadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes edScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.ed-page .ed-up {
  animation: edFadeUp 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

@media (prefers-reduced-motion: reduce) {
  .ed-page *,
  .ed-page *::before,
  .ed-page *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

/* ---------- Section primitives ---------- */
.ed-page .ed-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.ed-page .ed-section-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.ed-page .ed-section-label .chapter {
  font-family: var(--ed-serif);
  font-style: italic;
  font-size: 18px;
  font-weight: 400;
  color: var(--ed-gold-d);
  letter-spacing: -0.01em;
}
.ed-page .ed-section-label .rule {
  display: inline-block;
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, var(--ed-gold), transparent);
}

/* =====================================================
   NAV
   ===================================================== */
.ed-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--ed-bg);
  border-bottom: 1px solid transparent;
  transition: background 0.35s ease, border-color 0.35s ease,
              backdrop-filter 0.35s ease;
}
.ed-nav.is-scrolled {
  background: rgba(242, 235, 219, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom-color: var(--ed-rule);
}
.ed-nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.ed-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}
.ed-logo .mark {
  font-family: var(--ed-serif);
  font-style: italic;
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.025em;
  color: var(--ed-ink);
  line-height: 1;
}
.ed-logo .tag {
  font-family: var(--ed-sans);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.32em;
  color: var(--ed-gold-d);
  text-transform: uppercase;
  border-left: 1px solid var(--ed-rule);
  padding-left: 14px;
  line-height: 1.3;
}
.ed-nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.ed-nav-links a {
  font-family: var(--ed-sans);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 10px 14px;
  color: var(--ed-ink-2);
  text-decoration: none;
  transition: color 0.25s ease;
}
.ed-nav-links a:hover { color: var(--ed-gold-d); }
.ed-nav-right {
  display: flex;
  align-items: center;
  gap: 18px;
}
.ed-nav-phone {
  font-family: var(--ed-sans);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ed-ink-2);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.25s ease;
}
.ed-nav-phone:hover { color: var(--ed-gold-d); }
.ed-nav-phone .bi { font-size: 12px; color: var(--ed-gold-d); }
.ed-nav-cta {
  padding: 12px 20px;
  font-size: 11.5px;
  white-space: nowrap;
}
.ed-nav-cta .sm-text { display: none; }
.ed-nav-menu-toggle { display: none; }

/* Footer logo as a link reads identical to the span baseline */
.ed-footer-brand .logotype a.mark {
  text-decoration: none;
  transition: color 0.25s ease;
}
.ed-footer-brand .logotype a.mark:hover { color: var(--ed-gold-l); }

/* =====================================================
   HERO
   ===================================================== */
.ed-hero {
  position: relative;
  background: var(--ed-bg);
  overflow: hidden;
}
.ed-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
  background-image:
    radial-gradient(ellipse 600px 400px at 12% 12%, rgba(184,146,60,0.10), transparent 60%),
    radial-gradient(ellipse 600px 600px at 92% 80%, rgba(15,27,45,0.05), transparent 60%);
}
.ed-hero-inner {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 72px 40px 96px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 72px;
  align-items: center;
}
.ed-hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.ed-hero-eyebrow .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--ed-gold);
  box-shadow: 0 0 0 4px var(--ed-gold-r);
}
.ed-h1 {
  font-family: var(--ed-serif);
  font-weight: 500;
  font-size: clamp(48px, 6.4vw, 96px);
  line-height: 0.96;
  letter-spacing: -0.022em;
  color: var(--ed-ink);
  margin: 0;
}
.ed-h1 .ed-italic { letter-spacing: -0.022em; }
.ed-hero-lede {
  font-family: var(--ed-sans);
  font-size: 17.5px;
  line-height: 1.6;
  font-weight: 400;
  color: var(--ed-muted);
  margin: 32px 0 36px;
  max-width: 540px;
  letter-spacing: -0.005em;
}
.ed-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 56px;
}
.ed-hero-stats {
  padding-top: 32px;
  border-top: 1px solid var(--ed-rule);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.ed-hero-stats .stat {
  position: relative;
  padding: 4px 20px 4px 20px;
  border-left: 1px solid var(--ed-rule);
  cursor: default;
  transition: transform 0.35s ease;
}
.ed-hero-stats .stat:first-child {
  padding-left: 0;
  border-left: none;
}
.ed-hero-stats .stat .ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--ed-gold-soft);
  border: 1px solid var(--ed-gold-r);
  margin-bottom: 14px;
  transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1),
              box-shadow 0.35s ease;
}
.ed-hero-stats .stat .ico .bi {
  color: var(--ed-gold-d);
  font-size: 11px;
  line-height: 1;
}
.ed-hero-stats .stat .k {
  font-family: var(--ed-serif);
  font-size: 40px;
  font-weight: 500;
  color: var(--ed-ink);
  letter-spacing: -0.035em;
  line-height: 1;
  display: flex;
  align-items: baseline;
}
.ed-hero-stats .stat .k .unit {
  font-family: var(--ed-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 26px;
  color: var(--ed-gold-d);
  margin-left: 2px;
  letter-spacing: -0.02em;
}
.ed-hero-stats .stat .k .unit:first-child {
  margin-left: 0;
  margin-right: 2px;
}
.ed-hero-stats .stat::after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background: var(--ed-gold);
  margin-top: 12px;
  transition: width 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.ed-hero-stats .stat:hover::after { width: 40px; }
.ed-hero-stats .stat:hover .ico {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px -6px var(--ed-gold-r);
}
.ed-hero-stats .stat .s {
  font-family: var(--ed-sans);
  font-size: 11px;
  font-weight: 600;
  color: var(--ed-gold-d);
  margin-top: 14px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  line-height: 1.3;
}
.ed-hero-stats .stat .hint {
  font-family: var(--ed-sans);
  font-size: 12.5px;
  font-weight: 400;
  color: var(--ed-muted);
  margin-top: 6px;
  line-height: 1.45;
  letter-spacing: -0.005em;
  max-width: 220px;
}

.ed-hero-photo { position: relative; }
.ed-hero-photo .frame {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 30px 60px -24px rgba(15,27,45,0.30),
              0 1px 0 rgba(255,255,255,0.6) inset;
}
.ed-hero-photo .frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 70% center;
}
.ed-hero-photo .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(15,27,45,0.18) 0%,
    transparent 30%,
    transparent 50%,
    rgba(15,27,45,0.80) 100%);
}
.ed-hero-photo .corner-mark {
  position: absolute;
  top: 18px; left: 22px;
  display: flex; align-items: center; gap: 10px;
}
.ed-hero-photo .corner-mark .hairline {
  width: 22px; height: 1px; background: var(--ed-gold-l);
}
.ed-hero-photo .corner-mark .label {
  font-family: var(--ed-serif);
  font-style: italic;
  font-size: 14px;
  font-weight: 400;
  color: var(--ed-cream);
  letter-spacing: -0.01em;
}
.ed-hero-photo .caption {
  position: absolute;
  bottom: 28px; left: 28px; right: 28px;
  color: var(--ed-cream);
}
.ed-hero-photo .caption .tag {
  font-family: var(--ed-sans);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ed-gold-l);
  margin-bottom: 10px;
}
.ed-hero-photo .caption .line {
  font-family: var(--ed-serif);
  font-weight: 500;
  font-size: 28px;
  color: var(--ed-cream);
  letter-spacing: -0.025em;
  line-height: 1.1;
  max-width: 360px;
}
.ed-hero-photo .caption .line .ed-italic {
  font-size: 22px;
  color: #E8D7A8;
  font-weight: 400;
}
.ed-hero-photo .sticker {
  position: absolute;
  top: -28px; right: -32px;
  background: var(--ed-paper);
  padding: 20px 24px;
  border: 1px solid var(--ed-rule);
  border-radius: 2px;
  box-shadow: 0 14px 30px -16px rgba(15,27,45,0.25);
  max-width: 220px;
  z-index: 2;
}
.ed-hero-photo .sticker .rating {
  font-family: var(--ed-serif);
  font-size: 36px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.03em;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.ed-hero-photo .sticker .rating .ed-italic {
  font-size: 22px;
  color: var(--ed-gold-d);
}
.ed-hero-photo .sticker .sub {
  font-family: var(--ed-sans);
  font-size: 11.5px;
  color: var(--ed-muted);
  margin-top: 6px;
  line-height: 1.4;
  font-weight: 500;
}

/* =====================================================
   TRUST WALL
   ===================================================== */
.ed-trust {
  position: relative;
  background: var(--ed-bg);
  border-top: 1px solid var(--ed-rule);
  border-bottom: 1px solid var(--ed-rule);
  padding: 54px 0 46px;
}
.ed-trust-eyebrow {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px 30px;
  text-align: center;
}
.ed-trust-eyebrow .ed-eyebrow { color: var(--ed-muted-2); }
.ed-trust-marquee {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.ed-trust-track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: edScroll 70s linear infinite;
}
.ed-trust-track .item {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.ed-trust-track .name {
  font-family: var(--ed-serif);
  font-style: italic;
  font-size: 26px;
  font-weight: 500;
  color: var(--ed-ink);
  letter-spacing: -0.025em;
  white-space: nowrap;
}
.ed-trust-track .pip {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--ed-gold);
  opacity: 0.6;
}

/* =====================================================
   I — WHY PARTNER
   ===================================================== */
.ed-why {
  background: var(--ed-bg);
  padding: 120px 0;
  position: relative;
}
.ed-why-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 80px;
  align-items: start;
}
.ed-why h2 {
  font-family: var(--ed-serif);
  font-weight: 500;
  font-size: clamp(38px, 4.6vw, 64px);
  margin: 0;
  max-width: 640px;
  line-height: 1.02;
  letter-spacing: -0.022em;
}
.ed-why .rule { margin: 36px 0 28px; width: 80px; }
.ed-why p {
  font-family: var(--ed-sans);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ed-muted);
  max-width: 540px;
  margin: 0;
  letter-spacing: -0.005em;
}
.ed-why p + p { margin-top: 20px; }

.ed-ledger { padding-top: 6px; border-top: 1px solid var(--ed-ink); }
.ed-ledger .row {
  padding: 28px 0;
  border-bottom: 1px solid var(--ed-rule);
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  align-items: start;
}
.ed-ledger .row .num {
  font-family: var(--ed-serif);
  font-style: italic;
  font-size: 28px;
  color: var(--ed-gold-d);
  font-weight: 400;
  line-height: 1;
}
.ed-ledger .row .title {
  font-family: var(--ed-serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 6px;
}
.ed-ledger .row .body {
  font-family: var(--ed-sans);
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ed-muted);
  font-weight: 400;
}

/* =====================================================
   II — BENEFITS
   ===================================================== */
.ed-benefits {
  background: var(--ed-bg-deep);
  padding: 120px 0;
  border-top: 1px solid var(--ed-rule);
  border-bottom: 1px solid var(--ed-rule);
}
.ed-benefits-head {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 64px;
}
.ed-benefits-head h2 {
  font-family: var(--ed-serif);
  font-weight: 500;
  font-size: clamp(36px, 4.4vw, 60px);
  margin: 0;
  letter-spacing: -0.022em;
  line-height: 1.02;
}
.ed-benefits-head p {
  font-family: var(--ed-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ed-muted);
  margin: 0;
  max-width: 440px;
  letter-spacing: -0.005em;
}
.ed-benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--ed-ink);
  border-left: 1px solid var(--ed-rule);
}
.ed-benefit-tile {
  padding: 36px 30px 34px;
  border-right: 1px solid var(--ed-rule);
  border-bottom: 1px solid var(--ed-rule);
  background: transparent;
  transition: background 0.3s ease;
}
.ed-benefit-tile:hover { background: rgba(250, 246, 234, 0.55); }
.ed-benefit-tile .icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--ed-paper);
  border: 1px solid var(--ed-rule);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  box-shadow: 0 1px 0 rgba(255,255,255,0.7) inset,
              0 6px 18px -10px rgba(15,27,45,0.20);
}
.ed-benefit-tile .icon img {
  width: 32px; height: 32px;
  object-fit: contain;
}
.ed-benefit-tile h3 {
  font-family: var(--ed-serif);
  font-size: 22px;
  font-weight: 500;
  margin: 0 0 10px;
  letter-spacing: -0.02em;
  line-height: 1.18;
}
.ed-benefit-tile p {
  font-family: var(--ed-sans);
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--ed-muted);
  margin: 0;
  font-weight: 400;
}
.ed-benefits-footnote {
  margin-top: 32px;
  font-family: var(--ed-sans);
  font-size: 12.5px;
  color: var(--ed-muted-2);
  font-style: italic;
  max-width: 720px;
  line-height: 1.55;
}

/* =====================================================
   III — HOW IT WORKS
   ===================================================== */
.ed-how {
  background: var(--ed-bg);
  padding: 120px 0;
}
.ed-how-intro { max-width: 820px; margin-bottom: 80px; }
.ed-how-intro h2 {
  font-family: var(--ed-serif);
  font-weight: 500;
  font-size: clamp(38px, 4.6vw, 60px);
  margin: 0;
  letter-spacing: -0.022em;
  line-height: 1.02;
}
.ed-how-intro p {
  font-family: var(--ed-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ed-muted);
  margin: 24px 0 0;
  max-width: 620px;
  letter-spacing: -0.005em;
}

.ed-how-grid-wrap { position: relative; }
.ed-how-grid-wrap::before,
.ed-how-grid-wrap::after {
  content: "";
  position: absolute;
  background: var(--ed-rule);
  pointer-events: none;
}
.ed-how-grid-wrap::before {
  top: 0; bottom: 0;
  left: 50%;
  width: 1px;
  transform: translateX(-0.5px);
}
.ed-how-grid-wrap::after {
  left: 0; right: 0;
  top: 50%;
  height: 1px;
  transform: translateY(-0.5px);
}
.ed-how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.ed-how-step { box-sizing: border-box; }
.ed-how-step.pos-tl { padding: 0 48px 48px 0; }
.ed-how-step.pos-tr { padding: 0 0 48px 48px; }
.ed-how-step.pos-bl { padding: 48px 48px 0 0; }
.ed-how-step.pos-br { padding: 48px 0 0 48px; }
.ed-how-step .row {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-bottom: 18px;
}
.ed-how-step .num {
  font-family: var(--ed-serif);
  font-style: italic;
  font-size: 86px;
  font-weight: 400;
  color: var(--ed-gold-d);
  line-height: 0.9;
  letter-spacing: -0.04em;
}
.ed-how-step .hairline {
  flex: 1;
  height: 1px;
  background: var(--ed-rule);
  margin-bottom: 18px;
}
.ed-how-step .detail {
  font-family: var(--ed-sans);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ed-muted-2);
  margin-bottom: 18px;
}
.ed-how-step h3 {
  font-family: var(--ed-serif);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 14px;
  max-width: 480px;
}
.ed-how-step p {
  font-family: var(--ed-sans);
  font-size: 15px;
  line-height: 1.7;
  color: var(--ed-muted);
  margin: 0;
  max-width: 480px;
}

.ed-how-cta {
  margin-top: 72px;
  padding: 32px 40px;
  background: var(--ed-ink);
  color: var(--ed-cream);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  flex-wrap: wrap;
  border-radius: 2px;
  box-shadow: 0 30px 60px -28px rgba(15,27,45,0.40);
}
.ed-how-cta .eyebrow {
  font-family: var(--ed-sans);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ed-gold-l);
  margin-bottom: 8px;
}
.ed-how-cta h3 {
  font-family: var(--ed-serif);
  font-size: 28px;
  font-weight: 500;
  color: var(--ed-cream);
  letter-spacing: -0.02em;
  line-height: 1.15;
  max-width: 560px;
  margin: 0;
}
.ed-how-cta h3 .ed-italic { color: var(--ed-gold-l); }

/* =====================================================
   IV — COMMISSION (dark)
   ===================================================== */
.ed-commission {
  background: var(--ed-ink);
  color: var(--ed-cream);
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}
.ed-commission::before {
  content: "";
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.55;
  background: radial-gradient(ellipse, rgba(184,146,60,0.25), transparent 60%);
  pointer-events: none;
}
.ed-commission-inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}
.ed-commission .eyebrow-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 28px;
}
.ed-commission .eyebrow-row .chapter {
  font-family: var(--ed-serif);
  font-style: italic;
  font-size: 18px;
  color: var(--ed-gold-l);
  font-weight: 400;
}
.ed-commission .eyebrow-row .rule {
  width: 28px; height: 1px;
  background: var(--ed-gold-l);
  opacity: 0.6;
}
.ed-commission .eyebrow-row .ed-eyebrow { color: var(--ed-gold-l); }
.ed-commission h2 {
  font-family: var(--ed-serif);
  font-weight: 500;
  font-size: clamp(40px, 5.2vw, 76px);
  color: var(--ed-cream);
  letter-spacing: -0.03em;
  line-height: 1.0;
  margin: 0;
}
.ed-commission h2 .ed-italic { color: var(--ed-gold-l); font-weight: 400; }
.ed-commission .lede {
  font-family: var(--ed-sans);
  font-size: 17.5px;
  line-height: 1.65;
  color: rgba(248, 242, 221, 0.72);
  margin: 32px auto 0;
  max-width: 680px;
  letter-spacing: -0.005em;
}
.ed-commission-features {
  margin: 60px auto 0;
  max-width: 880px;
  padding: 40px 0;
  border-top: 1px solid rgba(248, 242, 221, 0.18);
  border-bottom: 1px solid rgba(248, 242, 221, 0.18);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 56px;
  text-align: left;
}
.ed-commission-features .item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-family: var(--ed-sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--ed-cream);
  line-height: 1.5;
  letter-spacing: -0.005em;
}
.ed-commission-features .item .n {
  font-family: var(--ed-serif);
  font-style: italic;
  color: var(--ed-gold-l);
  font-size: 18px;
  line-height: 1.2;
  min-width: 24px;
}
.ed-commission .cta-row {
  margin-top: 44px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.ed-commission .disclaimer {
  margin: 22px auto 0;
  font-family: var(--ed-sans);
  font-size: 12px;
  font-style: italic;
  color: rgba(248, 242, 221, 0.55);
  max-width: 560px;
}

/* =====================================================
   V — CLIENT EXPERIENCE
   ===================================================== */
.ed-client {
  background: var(--ed-bg);
  padding: 140px 0;
}
.ed-client-head { max-width: 880px; margin-bottom: 72px; }
.ed-client-head h2 {
  font-family: var(--ed-serif);
  font-weight: 500;
  font-size: clamp(38px, 4.6vw, 60px);
  margin: 0;
  letter-spacing: -0.022em;
  line-height: 1.02;
}
.ed-client-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.ed-client-card { position: relative; }
.ed-client-card .frame {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 24px 50px -28px rgba(15,27,45,0.30);
}
.ed-client-card .frame img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.ed-client-card .frame .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(15,27,45,0.55) 100%);
}
.ed-client-card .ch {
  position: absolute;
  top: 18px; left: 20px;
  display: flex; align-items: center; gap: 10px;
}
.ed-client-card .ch .label {
  font-family: var(--ed-serif);
  font-style: italic;
  font-size: 14px;
  color: var(--ed-cream);
  letter-spacing: 0.02em;
}
.ed-client-card .ch .hair {
  width: 18px; height: 1px;
  background: var(--ed-gold-l);
}
.ed-client-card .tag {
  position: absolute;
  bottom: 20px; left: 22px; right: 22px;
  font-family: var(--ed-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ed-gold-l);
}
.ed-client-card h3 {
  font-family: var(--ed-serif);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 24px 0 16px;
}
.ed-client-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--ed-rule);
}
.ed-client-card li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--ed-rule);
  font-family: var(--ed-sans);
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ed-ink-2);
}
.ed-client-card li .bi {
  color: var(--ed-gold-d);
  font-size: 14px;
  margin-top: 3px;
  flex-shrink: 0;
}

/* =====================================================
   TESTIMONIAL
   ===================================================== */
.ed-testimonial {
  background: var(--ed-bg-deep);
  padding: 120px 0;
  border-top: 1px solid var(--ed-rule);
  border-bottom: 1px solid var(--ed-rule);
}
.ed-testimonial-inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}
.ed-testimonial .quote-mark {
  font-family: var(--ed-serif);
  font-style: italic;
  font-size: 96px;
  font-weight: 400;
  color: var(--ed-gold-d);
  line-height: 0.6;
  margin-bottom: 28px;
  letter-spacing: -0.04em;
}
.ed-testimonial blockquote {
  font-family: var(--ed-serif);
  font-weight: 500;
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--ed-ink);
  margin: 0 auto;
  max-width: 880px;
}
.ed-testimonial blockquote .ed-italic { color: var(--ed-gold-d); }
.ed-testimonial .attribution {
  margin-top: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.ed-testimonial .avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--ed-gold-d);
}
.ed-testimonial .avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.ed-testimonial .who { text-align: left; }
.ed-testimonial .who .name {
  font-family: var(--ed-sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--ed-ink);
  letter-spacing: -0.01em;
}
.ed-testimonial .who .role {
  font-family: var(--ed-sans);
  font-size: 12px;
  font-weight: 500;
  color: var(--ed-muted);
  margin-top: 2px;
}
.ed-testimonial .divider {
  width: 36px; height: 1px;
  background: var(--ed-rule);
  margin: 0 14px;
}
.ed-testimonial .stars {
  display: flex;
  align-items: center;
  gap: 4px;
}
.ed-testimonial .stars .bi {
  color: var(--ed-gold-d);
  font-size: 13px;
}

/* =====================================================
   VI — APPLICATION
   ===================================================== */
.ed-apply {
  background: var(--ed-bg);
  padding: 140px 0;
  position: relative;
}
.ed-apply-grid {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.ed-apply-left { position: sticky; top: 96px; }
.ed-apply-left h2 {
  font-family: var(--ed-serif);
  font-weight: 500;
  font-size: clamp(42px, 4.8vw, 64px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin: 0;
}
.ed-apply-left p {
  font-family: var(--ed-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ed-muted);
  margin: 28px 0 32px;
  letter-spacing: -0.005em;
  max-width: 440px;
}
.ed-reassurance { border-top: 1px solid var(--ed-ink); }
.ed-reassurance .row {
  padding: 22px 0;
  border-bottom: 1px solid var(--ed-rule);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.ed-reassurance .icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--ed-gold-soft);
  border: 1px solid var(--ed-gold-r);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ed-reassurance .icon .bi {
  color: var(--ed-gold-d);
  font-size: 14px;
}
.ed-reassurance .t {
  font-family: var(--ed-sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--ed-ink);
  letter-spacing: -0.005em;
}
.ed-reassurance .d {
  font-family: var(--ed-sans);
  font-size: 13px;
  color: var(--ed-muted);
  margin-top: 4px;
  line-height: 1.5;
}

.ed-apply-card {
  background: var(--ed-paper);
  border-radius: 2px;
  padding: 48px;
  position: relative;
  border: 1px solid var(--ed-rule);
  box-shadow: 0 1px 0 rgba(255,255,255,0.7) inset,
              0 30px 60px -28px rgba(15,27,45,0.18),
              0 0 0 1px rgba(15,27,45,0.06);
}
.ed-apply-card .corner-mark {
  position: absolute;
  top: -1px; right: 36px;
  padding: 8px 14px 10px;
  background: var(--ed-ink);
  color: var(--ed-gold-l);
  font-family: var(--ed-serif);
  font-style: italic;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1;
}
.ed-apply-card .corner-mark .year { color: var(--ed-cream); }

.ed-field-group {
  padding-bottom: 28px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--ed-rule);
}
.ed-field-group:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.ed-field-group .group-head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 22px;
}
.ed-field-group .group-head .ch {
  font-family: var(--ed-serif);
  font-style: italic;
  font-size: 18px;
  color: var(--ed-gold-d);
  font-weight: 400;
  letter-spacing: -0.01em;
  min-width: 18px;
}
.ed-field-stack {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.ed-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.ed-field-cell { display: block; }

.ed-consent {
  margin-top: 24px;
  padding: 20px 0;
  border-top: 1px solid var(--ed-rule);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.ed-consent .agree {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--ed-sans);
  font-size: 13px;
  color: var(--ed-muted);
  line-height: 1.55;
  cursor: pointer;
}
.ed-consent .agree input[type="checkbox"] {
  margin-top: 4px;
  width: 16px; height: 16px;
  accent-color: var(--ed-gold-d);
  flex-shrink: 0;
}
.ed-submit {
  padding: 20px 28px;
  font-size: 13px;
  width: 100%;
  justify-content: center;
  letter-spacing: 0.16em;
}
.ed-apply-footnote {
  font-family: var(--ed-sans);
  font-size: 12px;
  color: var(--ed-muted-2);
  text-align: center;
  line-height: 1.5;
}

/* Success state */
.ed-apply-success {
  max-width: 720px;
  margin: 0 auto;
  padding: 60px 48px;
  text-align: center;
  background: var(--ed-paper);
  border-radius: 2px;
  border: 1px solid var(--ed-rule);
  box-shadow: 0 30px 60px -28px rgba(15,27,45,0.20);
}
.ed-apply-success .check {
  width: 64px; height: 64px;
  border-radius: 50%;
  margin: 0 auto 24px;
  background: var(--ed-gold-soft);
  border: 1px solid var(--ed-gold-r);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ed-apply-success .check .bi {
  color: var(--ed-gold-d);
  font-size: 32px;
}
.ed-apply-success h2 {
  font-family: var(--ed-serif);
  font-size: 36px;
  font-weight: 500;
  margin: 0 0 14px;
  letter-spacing: -0.025em;
}
.ed-apply-success p {
  font-family: var(--ed-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ed-muted);
  margin: 0 auto;
  max-width: 480px;
}
.ed-apply-success a {
  color: var(--ed-ink);
  border-bottom: 1px solid var(--ed-gold-d);
  text-decoration: none;
  padding-bottom: 1px;
}

/* =====================================================
   VII — FAQ
   ===================================================== */
.ed-faq {
  background: var(--ed-bg-deep);
  padding: 140px 0;
  border-top: 1px solid var(--ed-rule);
}
.ed-faq-grid {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 0.8fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.ed-faq-left { position: sticky; top: 96px; }
.ed-faq-left h2 {
  font-family: var(--ed-serif);
  font-weight: 500;
  font-size: clamp(36px, 4vw, 52px);
  margin: 0;
  letter-spacing: -0.025em;
  line-height: 1.05;
}
.ed-faq-left p {
  font-family: var(--ed-sans);
  font-size: 15px;
  line-height: 1.65;
  color: var(--ed-muted);
  margin-top: 22px;
  max-width: 360px;
}
.ed-faq-left p a {
  border-bottom: 1px solid var(--ed-gold-d);
  padding-bottom: 1px;
  color: var(--ed-gold-d);
  text-decoration: none;
}
.ed-faq-list { border-top: 1px solid var(--ed-ink); }
.ed-faq-item {
  border-bottom: 1px solid var(--ed-rule);
}
.ed-faq-q {
  width: 100%;
  background: transparent;
  border: none;
  padding: 26px 4px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  color: inherit;
}
.ed-faq-q .left {
  display: flex;
  align-items: baseline;
  gap: 18px;
  flex: 1;
  max-width: calc(100% - 56px);
}
.ed-faq-q .n {
  font-family: var(--ed-serif);
  font-style: italic;
  font-size: 16px;
  color: var(--ed-gold-d);
  font-weight: 400;
  min-width: 26px;
  padding-top: 4px;
}
.ed-faq-q .text {
  font-family: var(--ed-serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.018em;
  line-height: 1.25;
  color: var(--ed-ink);
}
.ed-faq-q .toggle {
  width: 32px; height: 32px;
  flex-shrink: 0;
  border: 1px solid var(--ed-rule);
  border-radius: 50%;
  background: transparent;
  color: var(--ed-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  margin-top: 4px;
  font-size: 16px;
}
.ed-faq-q[aria-expanded="true"] .toggle {
  background: var(--ed-ink);
  color: var(--ed-cream);
  border-color: var(--ed-ink);
}
.ed-faq-q[aria-expanded="true"] .toggle .bi::before { content: "\f2ea"; } /* bi-dash */
.ed-faq-q[aria-expanded="false"] .toggle .bi::before { content: "\f4fe"; } /* bi-plus */

.ed-faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.ed-faq-panel.is-open { max-height: 360px; }
.ed-faq-panel .inner {
  padding: 0 56px 28px 44px;
  font-family: var(--ed-sans);
  font-size: 15px;
  line-height: 1.7;
  color: var(--ed-muted);
  max-width: 720px;
}

/* =====================================================
   FINAL CTA
   ===================================================== */
.ed-final {
  background: var(--ed-bg);
  padding: 160px 0 140px;
  position: relative;
  overflow: hidden;
}
.ed-final::before {
  content: "";
  position: absolute;
  bottom: -260px;
  right: -200px;
  width: 700px; height: 700px;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.65;
  background: radial-gradient(circle, rgba(184,146,60,0.18), transparent 65%);
  pointer-events: none;
}
.ed-final-inner {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}
.ed-final h2 {
  font-family: var(--ed-serif);
  font-weight: 500;
  font-size: clamp(46px, 5.6vw, 80px);
  margin: 0;
  letter-spacing: -0.03em;
  line-height: 1.0;
}
.ed-final .lede {
  font-family: var(--ed-sans);
  font-size: 18px;
  line-height: 1.65;
  color: var(--ed-muted);
  margin: 32px auto 44px;
  max-width: 640px;
  letter-spacing: -0.005em;
}
.ed-final .cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.ed-final .service-cap {
  margin-top: 56px;
  display: flex;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
  font-family: var(--ed-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ed-muted-2);
}
.ed-final .service-cap .sep { color: var(--ed-gold-d); }

/* =====================================================
   FOOTER
   ===================================================== */
.ed-footer {
  background: var(--ed-ink);
  color: rgba(248, 242, 221, 0.65);
  padding: 72px 0 32px;
}
.ed-footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
.ed-footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(248, 242, 221, 0.10);
}
.ed-footer-brand .logotype {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 22px;
}
.ed-footer-brand .mark {
  font-family: var(--ed-serif);
  font-style: italic;
  font-size: 30px;
  font-weight: 500;
  color: var(--ed-cream);
  letter-spacing: -0.025em;
  line-height: 1;
}
.ed-footer-brand .tag {
  font-family: var(--ed-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.32em;
  color: var(--ed-gold-l);
  text-transform: uppercase;
  border-left: 1px solid rgba(248, 242, 221, 0.20);
  padding-left: 14px;
  line-height: 1.3;
}
.ed-footer-brand p {
  font-family: var(--ed-sans);
  font-size: 13px;
  line-height: 1.7;
  color: rgba(248, 242, 221, 0.60);
  margin: 0;
  max-width: 340px;
}
.ed-footer-brand .socials {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.ed-footer-brand .socials a {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(248, 242, 221, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(248, 242, 221, 0.65);
  text-decoration: none;
  transition: color 0.25s ease, border-color 0.25s ease;
}
.ed-footer-brand .socials a:hover {
  color: var(--ed-cream);
  border-color: var(--ed-gold-l);
}
.ed-footer-brand .socials .bi { font-size: 13px; }
.ed-footer-col .title {
  font-family: var(--ed-sans);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ed-gold-l);
  margin-bottom: 20px;
}
.ed-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.ed-footer-col a {
  font-family: var(--ed-sans);
  font-size: 13px;
  color: rgba(248, 242, 221, 0.72);
  text-decoration: none;
  transition: color 0.25s ease;
}
.ed-footer-col a:hover { color: var(--ed-gold-l); }
.ed-footer-bottom {
  margin-top: 28px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--ed-sans);
  font-size: 11.5px;
  color: rgba(248, 242, 221, 0.45);
}
.ed-footer-bottom .legal {
  display: flex;
  gap: 24px;
}
.ed-footer-bottom a {
  color: rgba(248, 242, 221, 0.55);
  text-decoration: none;
  transition: color 0.25s ease;
}
.ed-footer-bottom a:hover { color: var(--ed-cream); }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
  .ed-nav-inner { padding: 18px 24px; }
  .ed-nav-links { display: none; }
  .ed-hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 24px 20px 56px;
  }
  /* Photo first on mobile — editorial mag-style anchor before the headline */
  .ed-hero-photo { order: -1; }
  .ed-hero-photo .frame { aspect-ratio: 5 / 4; }
  .ed-hero-photo .frame img { object-position: 60% center; }
  /* The in-photo caption fights the figure on mobile; hide it.
     Replace with a discreet print-style caption beneath the photo. */
  .ed-hero-photo .corner-mark,
  .ed-hero-photo .caption,
  .ed-hero-photo .overlay { display: none; }
  .ed-hero-photo .frame::after {
    content: "The Arrival — Inside MCO, Orlando";
    display: block;
    position: absolute;
    left: 14px; right: 14px; bottom: 14px;
    font-family: var(--ed-serif);
    font-style: italic;
    font-size: 13px;
    color: var(--ed-cream);
    letter-spacing: -0.005em;
    text-shadow: 0 1px 4px rgba(15, 27, 45, 0.55);
    pointer-events: none;
  }
  .ed-hero-photo .frame::before {
    content: "";
    position: absolute;
    inset: 60% 0 0 0;
    background: linear-gradient(180deg, transparent, rgba(15, 27, 45, 0.55));
    pointer-events: none;
  }
  .ed-hero-photo .sticker {
    position: static;
    margin: 14px 0 0;
    max-width: 100%;
  }
  .ed-why,
  .ed-how,
  .ed-client,
  .ed-apply,
  .ed-faq,
  .ed-final,
  .ed-commission,
  .ed-benefits,
  .ed-testimonial { padding-left: 0; padding-right: 0; }
  .ed-wrap,
  .ed-apply-grid,
  .ed-faq-grid,
  .ed-commission-inner,
  .ed-testimonial-inner,
  .ed-final-inner,
  .ed-footer-inner,
  .ed-trust-eyebrow { padding-left: 24px; padding-right: 24px; }

  .ed-why-grid,
  .ed-benefits-head,
  .ed-apply-grid,
  .ed-faq-grid { grid-template-columns: 1fr; gap: 56px; }
  .ed-apply-left,
  .ed-faq-left { position: static; }
  .ed-how-grid { grid-template-columns: 1fr; }
  .ed-how-step.pos-tl,
  .ed-how-step.pos-tr,
  .ed-how-step.pos-bl,
  .ed-how-step.pos-br { padding: 28px 0; border-top: 1px solid var(--ed-rule); }
  .ed-how-step:first-child { border-top: none; padding-top: 0; }
  .ed-how-grid-wrap::before,
  .ed-how-grid-wrap::after { display: none; }
  .ed-how-step .num { font-size: 64px; }
}

@media (max-width: 768px) {
  .ed-page { font-size: 15px; }
  .ed-why,
  .ed-how,
  .ed-client,
  .ed-apply,
  .ed-faq,
  .ed-final,
  .ed-commission,
  .ed-benefits,
  .ed-testimonial { padding-top: 72px; padding-bottom: 72px; }
  .ed-hero-inner { padding: 24px 20px 56px; gap: 28px; }
  .ed-hero-eyebrow { margin-bottom: 16px; }
  .ed-h1 { font-size: 38px; line-height: 1.04; letter-spacing: -0.02em; }
  .ed-hero-lede { font-size: 16px; margin: 22px 0 28px; }
  .ed-hero-cta { margin-bottom: 32px; }
  .ed-hero-stats { grid-template-columns: 1fr; gap: 18px; }
  .ed-hero-stats .stat { padding-left: 0; border-left: none; border-top: 1px solid var(--ed-rule); padding-top: 18px; }
  .ed-hero-stats .stat:first-child { border-top: none; padding-top: 0; }
  .ed-hero-photo .sticker {
    position: static;
    margin: 16px auto 0;
    max-width: 100%;
  }
  .ed-benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .ed-client-grid { grid-template-columns: 1fr; gap: 40px; }
  .ed-commission-features { grid-template-columns: 1fr; gap: 12px; padding: 28px 0; }
  .ed-field-row { grid-template-columns: 1fr; gap: 22px; }
  .ed-apply-card { padding: 36px 24px; }
  .ed-apply-card .corner-mark { right: 16px; font-size: 12px; }
  .ed-footer-grid { grid-template-columns: 1fr 1fr; }
  .ed-footer-brand { grid-column: 1 / -1; }
  .ed-how-cta { padding: 24px; }
  .ed-how-cta h3 { font-size: 22px; }
  .ed-faq-q .text { font-size: 18px; }
  .ed-trust-track .name { font-size: 20px; }
  .ed-testimonial .attribution { flex-direction: column; gap: 12px; }
  .ed-testimonial .divider { display: none; }
}

@media (max-width: 520px) {
  .ed-benefits-grid { grid-template-columns: 1fr; }
  .ed-footer-grid { grid-template-columns: 1fr; }
  .ed-final .service-cap { gap: 14px; font-size: 11px; }
  .ed-nav-inner { gap: 12px; padding: 14px 18px; }
  .ed-logo { gap: 10px; }
  .ed-logo .tag { display: none; }
  .ed-logo .mark { font-size: 21px; }
  .ed-nav-phone span { display: none; }
  .ed-nav-cta { padding: 10px 14px; font-size: 11px; gap: 6px; }
  .ed-nav-cta .lg-text { display: none; }
  .ed-nav-cta .sm-text { display: inline; }
}
