/* =============================================================
   UNLIMITED WARM TRANSFERS — SHARED DESIGN SYSTEM
   Amid Media LLC
   ============================================================= */

/* ---------- TOKENS ---------- */
:root {
  --coral:       #ff7f50;
  --coral-deep:  #e8632f;
  --coral-soft:  #ffe4d6;
  --ink:         #162225;
  --ink-2:       #1e2e32;
  --paper:       #ffffff;
  --cream:       #f5f1e9;
  --cream-2:     #e9e2d5;
  --soft:        #5a6a68;
  --line:        rgba(22,34,37,0.10);
  --line-light:  rgba(255,255,255,0.14);
  --shadow-sm:   0 4px 18px rgba(22,34,37,0.06);
  --shadow-md:   0 18px 50px rgba(22,34,37,0.12);
  --radius:      16px;
  --radius-lg:   26px;
  --maxw:        1160px;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, .serif { font-family: 'DM Serif Display', Georgia, serif; font-weight: 400; letter-spacing: -0.01em; }

/* ---------- LAYOUT ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.eyebrow {
  font-size: 13px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--coral-deep); margin-bottom: 16px; display: inline-block;
}
.center { text-align: center; }
.muted { color: var(--soft); }

/* ---------- TYPE SCALE ---------- */
.h-hero  { font-size: clamp(2.6rem, 5.6vw, 4.4rem); line-height: 1.03; }
.h-1     { font-size: clamp(2.1rem, 4vw, 3.2rem); line-height: 1.08; }
.h-2     { font-size: clamp(1.5rem, 2.4vw, 2rem); line-height: 1.15; }
.lead    { font-size: clamp(1.05rem, 1.6vw, 1.28rem); color: var(--soft); }
.coral-txt { color: var(--coral-deep); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 30px; border-radius: 999px; font-weight: 700; font-size: 1rem;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--coral); color: #fff; box-shadow: 0 10px 26px rgba(255,127,80,0.34); }
.btn-primary:hover { background: var(--coral-deep); transform: translateY(-2px); box-shadow: 0 14px 32px rgba(232,99,47,0.42); }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn-ghost:hover { border-color: var(--coral); color: var(--coral-deep); }
.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-lg { padding: 18px 38px; font-size: 1.08rem; }

.link-underline { font-weight: 700; border-bottom: 2px solid var(--coral); padding-bottom: 2px; }

/* ---------- PILLS ---------- */
.pills { display: flex; flex-wrap: wrap; gap: 12px; }
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--cream); border: 1px solid var(--line);
  padding: 9px 16px; border-radius: 999px; font-size: .92rem; font-weight: 600;
}
.pill b { color: var(--coral-deep); }

/* ---------- LAUNCH / EARLY-INTEREST BANNER ---------- */
.launch-banner {
  display: block; text-decoration: none;
  background: var(--coral-soft); border-bottom: 1px solid var(--line);
  color: var(--coral-deep); text-align: center;
  padding: 11px 16px; font-size: .92rem; font-weight: 600;
  transition: background .18s;
}
.launch-banner:hover { background: var(--coral); color: #fff; }
.launch-banner:hover b { color: #fff; }
.launch-banner b { color: var(--ink); }
.launch-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ink); color: var(--cream);
  padding: 6px 14px; border-radius: 999px;
  font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 700;
  margin-bottom: 16px;
}
.launch-badge::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--coral); box-shadow: 0 0 0 0 rgba(255,127,80,.6);
  animation: pulse-dot 1.8s infinite;
}
@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(255,127,80,.6); }
  70% { box-shadow: 0 0 0 8px rgba(255,127,80,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,127,80,0); }
}

/* ---------- NAV ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.86); backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { font-family: 'DM Serif Display', serif; font-size: 1.28rem; letter-spacing: -0.02em; }
.brand span { color: var(--coral-deep); }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-size: .95rem; font-weight: 600; color: var(--ink); transition: color .15s; }
.nav-links a:hover { color: var(--coral-deep); }

/* dropdown */
.dropdown { position: relative; }
.dropdown-toggle { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; }
.dropdown-menu {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(8px);
  background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-md);
  padding: 8px; min-width: 230px; opacity: 0; visibility: hidden; transition: all .2s ease;
}
.dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown-menu a { display: flex; flex-direction: column; padding: 10px 14px; border-radius: 10px; }
.dropdown-menu a:hover { background: var(--cream); }
.dropdown-menu a b { font-size: .95rem; }
.dropdown-menu a small { color: var(--soft); font-weight: 500; }

.nav-cta { display: flex; align-items: center; gap: 16px; }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: .2s; }

/* ---------- HERO ---------- */
.hero { background: linear-gradient(180deg, #fff 0%, var(--cream) 100%); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; padding: 80px 0 90px; }
.hero h1 { margin-bottom: 20px; }
.hero .lead { margin-bottom: 26px; max-width: 540px; }
.hero-cta { display: flex; gap: 16px; align-items: center; margin: 28px 0 22px; flex-wrap: wrap; }
.hero-cta-stack { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; margin: 28px 0 22px; max-width: 440px; }
.hero-cta-stack .btn-lg { width: 100%; text-align: center; }
.hero-cta-stack small { color: var(--soft); font-size: .82rem; line-height: 1.5; }
.hero-media { position: relative; }
.hero-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); width: 100%; height: 520px; object-fit: cover; }
.hero-blob { position: absolute; right: -26px; bottom: -26px; width: 150px; height: 150px; background: var(--coral); border-radius: 40px; z-index: -1; }

/* social proof card */
.proof-card {
  position: absolute; left: -24px; bottom: 28px; background: #fff; border-radius: 16px;
  box-shadow: var(--shadow-md); padding: 16px 20px; display: flex; gap: 14px; align-items: center;
}
.proof-card .stars { color: var(--coral); font-size: 1rem; letter-spacing: 2px; }
.proof-card b { font-size: 1.1rem; }
.proof-card small { color: var(--soft); }

/* inline quick form */
.quickform {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px; box-shadow: var(--shadow-sm); max-width: 540px;
}
.quickform-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.quickform input, .quickform select, .nform input, .nform select {
  width: 100%; padding: 13px 14px; border: 1px solid var(--line); border-radius: 11px;
  font-family: inherit; font-size: .96rem; background: var(--cream); color: var(--ink);
}
.quickform input:focus, .quickform select:focus, .nform input:focus, .nform select:focus {
  outline: none; border-color: var(--coral); background: #fff;
}
.quickform .btn { width: 100%; }
.quickform small { display: block; text-align: center; margin-top: 10px; color: var(--soft); font-size: .82rem; }

/* ---------- MARQUEE ---------- */
.marquee { background: var(--ink); color: var(--cream); padding: 18px 0; overflow: hidden; }
.marquee-track { display: flex; gap: 48px; width: max-content; animation: scroll-x 32s linear infinite; }
.marquee-track span { font-weight: 600; opacity: .8; display: inline-flex; align-items: center; gap: 48px; white-space: nowrap; }
.marquee-track span::after { content: "•"; color: var(--coral); }
@keyframes scroll-x { to { transform: translateX(-50%); } }

/* ---------- STATS ---------- */
.stats { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.stat { padding: 44px 24px; text-align: center; border-right: 1px solid var(--line); }
.stat:last-child { border-right: none; }
.stat .num { font-family: 'DM Serif Display', serif; font-size: clamp(2rem,3.4vw,2.9rem); color: var(--coral-deep); line-height: 1; }
.stat .lbl { color: var(--soft); font-size: .92rem; margin-top: 10px; }

/* ---------- CARDS / GRIDS ---------- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card h3 { color: var(--coral-deep); margin-bottom: 10px; font-size: 1.35rem; }

/* vertical cards (link cards) */
.vcard { display: flex; flex-direction: column; overflow: hidden; padding: 0; }
.vcard-img { height: 170px; width: 100%; object-fit: cover; }
.vcard-body { padding: 24px 24px 26px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.vcard-body .idx { font-family: 'DM Serif Display', serif; color: var(--coral); font-size: 1.1rem; }
.vcard-body h3 { color: var(--ink); font-size: 1.5rem; margin: 0; }
.vcard-body .tick { color: var(--soft); font-size: .9rem; }
.vcard-body .go { margin-top: auto; font-weight: 700; color: var(--coral-deep); display: inline-flex; gap: 6px; padding-top: 10px; }
.vcard-img-wrap { position: relative; }
.vcard-ribbon {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 11px; border-radius: 999px;
  font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 700;
}
.vcard-ribbon.live { background: var(--coral); color: #fff; }
.vcard-ribbon.soon { background: rgba(22,34,37,.82); color: var(--cream); backdrop-filter: blur(2px); }
.vcard-ribbon.live::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #fff; }

/* steps */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 26px; }
.step .n { font-family: 'DM Serif Display', serif; font-size: 2.4rem; color: var(--coral); line-height: 1; }
.step h3 { font-size: 1.2rem; margin: 12px 0 8px; color: var(--ink); }
.step p { color: var(--soft); font-size: .95rem; }

/* comparison */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.compare-col { border-radius: var(--radius); padding: 32px; }
.compare-old { background: var(--cream); border: 1px solid var(--line); }
.compare-old h3 { color: var(--ink); }
.compare-new { background: var(--ink); color: var(--cream); }
.compare-new h3 { color: #fff; }
.compare ul { list-style: none; margin-top: 18px; display: flex; flex-direction: column; gap: 14px; }
.compare li { display: flex; gap: 12px; font-size: 1rem; }
.compare-old li::before { content: "—"; color: var(--soft); }
.compare-new li::before { content: "+"; color: var(--coral); font-weight: 700; }
.compare-new li { color: rgba(245,241,233,0.92); }
.compare-tag {
  display: inline-block; margin-bottom: 14px;
  padding: 5px 13px; border-radius: 999px;
  font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 700;
  background: rgba(22,34,37,.08); color: var(--soft);
}
.compare-tag-new { background: var(--coral); color: #fff; }

/* choice section */
.choice { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.choice-single { grid-template-columns: 1fr; max-width: 720px; margin: 0 auto; }
.choice-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; }
.choice-card .tag { display: inline-block; background: var(--coral-soft); color: var(--coral-deep); font-weight: 700; font-size: .8rem; letter-spacing: .06em; padding: 6px 12px; border-radius: 999px; text-transform: uppercase; margin-bottom: 16px; }
.choice-card h3 { color: var(--ink); font-size: 1.5rem; margin-bottom: 10px; }

/* pricing */
.price-card { background: var(--ink); color: var(--cream); border-radius: var(--radius-lg); padding: 40px; }
.price-card .tag { font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: var(--coral); font-weight: 700; }
.price-card .amount { font-family: 'DM Serif Display', serif; font-size: 4rem; line-height: 1; margin: 12px 0 4px; }
.price-card .per { color: rgba(245,241,233,0.7); margin-bottom: 24px; }
.price-card ul { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 26px; }
.price-card li { display: flex; gap: 12px; color: rgba(245,241,233,0.92); }
.price-card li::before { content: "+"; color: var(--coral); font-weight: 700; }
.price-card .note { font-size: .86rem; color: rgba(245,241,233,0.6); margin-top: 16px; }
.price-card .btn { width: 100%; margin-top: 4px; }

/* testimonial */
.quote-block { max-width: 820px; margin: 0 auto; text-align: center; }
.quote-mark { font-family: 'DM Serif Display', serif; font-size: 5rem; color: var(--coral); line-height: .6; }
.quote-block p { font-family: 'DM Serif Display', serif; font-size: clamp(1.4rem,2.6vw,2.1rem); line-height: 1.3; margin: 20px 0; }
.quote-block cite { font-style: normal; color: var(--soft); font-weight: 600; }

/* team */
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.member { text-align: center; }
.avatar {
  width: 148px; height: 148px; border-radius: 50%; margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-deep) 100%);
  display: flex; align-items: center; justify-content: center;
  font-family: 'DM Serif Display', serif; font-size: 2.9rem; color: #fff;
  box-shadow: var(--shadow-sm); overflow: hidden;
}
.avatar img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; image-rendering: auto; }
.member h3 { color: var(--ink); font-size: 1.3rem; }
.member .role { color: var(--coral-deep); font-weight: 700; font-size: .9rem; margin-bottom: 8px; }
.member p { color: var(--soft); font-size: .94rem; }

/* about split */
.about-metrics { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 26px; }
.about-metric { background: var(--cream); border-radius: 14px; padding: 20px; }
.about-metric .n { font-family: 'DM Serif Display', serif; font-size: 1.9rem; color: var(--coral-deep); }
.about-metric .l { font-size: .86rem; color: var(--soft); }

/* apply / form */
.apply { background: var(--cream); }
.apply-wrap { max-width: 640px; margin: 0 auto; }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 12px; box-shadow: var(--shadow-sm); }
.nform { padding: 20px; }
.nform .row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.nform label { display: block; font-size: .84rem; font-weight: 700; margin-bottom: 6px; color: var(--ink); }
.nform .full { grid-column: 1 / -1; }
.nform .btn { width: 100%; margin-top: 6px; }

/* FAQ */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 40px; }
.faq details { border-bottom: 1px solid var(--line); padding: 18px 0; }
.faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: 700; font-size: 1.08rem; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--coral-deep); font-size: 1.5rem; transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p { color: var(--soft); margin-top: 12px; }

/* final CTA */
.final-cta { background: var(--ink); color: var(--cream); text-align: center; }
.final-cta h2 { color: #fff; margin-bottom: 14px; }
.final-cta p { color: rgba(245,241,233,0.7); margin-bottom: 28px; }

/* footer */
.footer { background: var(--ink); color: rgba(245,241,233,0.66); padding: 56px 0 34px; border-top: 1px solid var(--line-light); }
.footer-top { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 30px; margin-bottom: 34px; }
.footer .brand { color: var(--cream); }
.footer-links { display: flex; gap: 26px; flex-wrap: wrap; }
.footer-links a:hover { color: var(--coral); }
.footer-social { display: flex; flex-wrap: wrap; gap: 34px; margin-bottom: 34px; }
.footer-social-group { display: flex; flex-direction: column; gap: 10px; }
.footer-social-group .fs-label { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 700; color: rgba(245,241,233,0.5); }
.footer-social-icons { display: flex; gap: 12px; }
.footer-social-icons a { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background: rgba(245,241,233,0.08); color: var(--cream); transition: background .2s ease, transform .2s ease; }
.footer-social-icons a:hover { background: var(--coral); color: #fff; transform: translateY(-2px); }
.footer-social-icons svg { width: 19px; height: 19px; }
.footer .disclaimer { font-size: .78rem; line-height: 1.6; color: rgba(245,241,233,0.44); border-top: 1px solid var(--line-light); padding-top: 22px; }

/* ---------- REVEAL ANIMATION ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- CAROUSEL ---------- */
.carousel { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.carousel-track { display: flex; gap: 20px; width: max-content; animation: scroll-x 46s linear infinite; will-change: transform; }
.carousel:hover .carousel-track { animation-play-state: paused; }
.carousel img { flex: 0 0 auto; width: 320px; height: 220px; object-fit: cover; border-radius: var(--radius); border: 1px solid var(--line); }
@media (max-width: 640px) {
  .carousel img { width: 260px; height: 180px; }
  .carousel-track { gap: 14px; animation-duration: 38s; }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; padding: 52px 0 60px; }
  .hero-media img { height: 380px; }
  .proof-card { left: 12px; }
  .grid-4, .steps { grid-template-columns: 1fr 1fr; }
  .team-grid, .about-metrics { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: none; }
  .stat { border-bottom: 1px solid var(--line); }
}
/* CTA that lives inside the mobile dropdown menu — hidden on desktop */
.nav-menu-cta { display: none; }

@media (max-width: 720px) {
  .section { padding: 66px 0; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  /* Keep the top bar clean: just brand + hamburger */
  .nav-bar-cta { display: none; }
  .brand { font-size: 1.16rem; white-space: nowrap; }
  .nav-inner { height: 64px; }
  .nav-links.open {
    display: flex; position: absolute; top: 64px; left: 0; right: 0; flex-direction: column;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: 20px 24px 24px; gap: 18px; align-items: stretch;
    box-shadow: 0 18px 40px rgba(22,34,37,0.12);
  }
  .nav-links.open a { font-size: 1.05rem; }
  .nav-links.open .dropdown-menu { position: static; transform: none; opacity: 1; visibility: visible; box-shadow: none; border: none; padding: 6px 0 0 12px; min-width: 0; }
  /* Show the in-menu CTA, full width, visually separated */
  .nav-menu-cta { display: inline-flex; width: 100%; margin-top: 6px; padding: 14px 24px; }
  .grid-2, .grid-3, .grid-4, .steps, .compare, .choice, .faq-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .quickform-row { grid-template-columns: 1fr; }
  .nform .row { grid-template-columns: 1fr; }
}

/* =============================================================
   LEGAL PAGES (privacy, terms) — prose layout
   ============================================================= */
.legal-hero {
  background: var(--ink);
  color: var(--cream);
  padding: 64px 0 48px;
}
.legal-hero .eyebrow {
  font-size: .75rem; letter-spacing: .16em; text-transform: uppercase;
  font-weight: 700; color: var(--coral); margin-bottom: 14px;
}
.legal-hero h1 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(2rem, 5vw, 3rem); line-height: 1.08; margin: 0 0 14px;
}
.legal-hero .updated { font-size: .9rem; color: rgba(245,241,233,0.6); }
.legal-wrap { background: var(--cream); padding: 56px 0 80px; }
.legal {
  max-width: 760px; margin: 0 auto; background: var(--paper);
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); padding: clamp(28px, 5vw, 56px);
}
.legal h2 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.5rem; color: var(--ink); margin: 40px 0 14px;
  padding-top: 8px;
}
.legal h2:first-child { margin-top: 0; }
.legal h3 { font-size: 1.05rem; color: var(--ink); margin: 26px 0 8px; font-weight: 700; }
.legal p, .legal li { color: #33403f; line-height: 1.72; font-size: 1rem; }
.legal p { margin: 0 0 16px; }
.legal ul, .legal ol { margin: 0 0 18px; padding-left: 22px; }
.legal li { margin-bottom: 8px; }
.legal a { color: var(--coral-deep); text-decoration: underline; }
.legal a:hover { color: var(--coral); }
.legal strong { color: var(--ink); }
.legal .toc {
  background: var(--cream); border-radius: var(--radius);
  padding: 20px 24px; margin: 0 0 32px;
}
.legal .toc ul { margin: 0; padding-left: 20px; columns: 2; }
.legal .toc a { text-decoration: none; }
.legal .toc a:hover { text-decoration: underline; }
.legal .lead-intro { font-size: 1.08rem; color: var(--ink-2); }
.legal hr { border: none; border-top: 1px solid var(--line); margin: 36px 0; }
.legal address {
  font-style: normal; background: var(--cream); border-radius: var(--radius);
  padding: 20px 24px; line-height: 1.7;
}
.footer-legal { margin-top: 14px; }
.footer-legal a { color: rgba(245,241,233,0.55); text-decoration: none; margin-right: 18px; font-size: .82rem; }
.footer-legal a:hover { color: var(--coral); }
@media (max-width: 560px) { .legal .toc ul { columns: 1; } }
