/* ============================================================
   ONTARIO LANDLORD OS — SHARED STYLESHEET
   Brand: Forest #1C3D2E | Gold #C8A951 | Cream #F5F0E8
   Fonts: Playfair Display | Source Serif 4 | DM Mono
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Source+Serif+4:ital,wght@0,400;0,600;1,400&family=DM+Mono:wght@400;500&display=swap');

/* ── VARIABLES ── */
:root {
  --forest:  #1C3D2E;
  --gold:    #C8A951;
  --cream:   #F5F0E8;
  --ink:     #1A1C1A;
  --sage:    #B8D4C8;
  --mid:     #4A6B5A;
  --alert:   #8B2E2E;
  --white:   #FFFFFF;
  --border:  #DDD8CC;
  --muted:   #6B7280;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Source Serif 4', Georgia, serif;
  --font-mono:    'DM Mono', 'Courier New', monospace;

  --max-width: 1100px;
  --section-padding: 80px 24px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink);
  background: var(--cream);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--forest);
}

h1 { font-size: clamp(36px, 5vw, 56px); font-weight: 900; }
h2 { font-size: clamp(28px, 3.5vw, 40px); font-weight: 700; }
h3 { font-size: clamp(20px, 2.5vw, 26px); font-weight: 700; }
h4 { font-size: 18px; font-weight: 700; }

p { margin-bottom: 1.1rem; }
p:last-child { margin-bottom: 0; }

.label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}

/* ── LAYOUT ── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: var(--section-padding); }
.section-centered { text-align: center; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 3px;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--forest);
}
.btn-primary:hover { background: #b8942e; }

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.btn-dark {
  background: var(--forest);
  color: var(--cream);
}
.btn-dark:hover { background: #152e22; }

/* ── NAVIGATION ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--forest);
  border-bottom: 2px solid rgba(200,169,81,0.3);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-brand img {
  width: 36px;
  height: 36px;
  border-radius: 4px;
}

.nav-brand-text {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--cream);
  white-space: nowrap;
}

.nav-brand-text span { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(245,240,232,0.7);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--gold); }

.nav-cta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--forest);
  padding: 10px 20px;
  border-radius: 3px;
  white-space: nowrap;
  transition: background 0.2s;
}
.nav-cta:hover { background: #b8942e; }

/* ── FOOTER ── */
footer {
  background: var(--forest);
  border-top: 3px solid var(--gold);
  padding: 60px 24px 32px;
  color: rgba(245,240,232,0.7);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(245,240,232,0.6);
  margin-top: 12px;
  max-width: 280px;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--cream);
}

.footer-brand-name span { color: var(--gold); }

.footer-col h5 {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 14px;
  color: rgba(245,240,232,0.65);
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--gold); }

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1px;
  color: rgba(245,240,232,0.4);
}

.footer-bottom a { color: rgba(245,240,232,0.4); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--gold); }

/* ── HERO ── */
.hero {
  background: var(--forest);
  padding: 96px 24px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 40%;
  background: linear-gradient(135deg, transparent 0%, rgba(200,169,81,0.05) 100%);
  pointer-events: none;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-content h1 { color: var(--cream); margin-bottom: 20px; }
.hero-content h1 span { color: var(--gold); }

.hero-content p {
  font-size: 18px;
  color: var(--sage);
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-proof {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-proof-item .num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
}

.hero-proof-item .desc {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1px;
  color: rgba(245,240,232,0.5);
  text-transform: uppercase;
  margin: 0;
}

/* ── CARDS ── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(28,61,46,0.1); }

.card-body { padding: 28px; }
.card-body h3 { margin-bottom: 10px; font-size: 19px; }
.card-body p { font-size: 15px; color: var(--muted); }

/* ── PRODUCT CARDS ── */
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.product-card:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(28,61,46,0.1); }

.product-card .badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
  width: fit-content;
}

.badge-free { background: rgba(200,169,81,0.15); color: var(--mid); }
.badge-paid { background: var(--forest); color: var(--gold); }

.product-card h3 { font-size: 18px; color: var(--forest); }
.product-card p { font-size: 14px; color: var(--muted); flex: 1; }

.product-card .price {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--forest);
}

.product-card .price span {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  font-weight: 400;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

/* ── BLOG CARDS ── */
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.blog-card:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(28,61,46,0.1); }

.blog-card-body { padding: 28px; }

.blog-card-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.blog-card-body h3 { font-size: 20px; margin-bottom: 10px; }
.blog-card-body p { font-size: 15px; color: var(--muted); margin-bottom: 20px; }

.read-more {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--forest);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.read-more:hover { gap: 10px; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 48px;
}

/* ── EMAIL CTA BAND ── */
.cta-band {
  background: var(--forest);
  padding: 72px 24px;
  text-align: center;
}

.cta-band h2 { color: var(--cream); margin-bottom: 16px; }
.cta-band p { color: var(--sage); font-size: 17px; margin-bottom: 36px; max-width: 520px; margin-left: auto; margin-right: auto; }

.cta-form {
  display: flex;
  gap: 12px;
  max-width: 440px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.cta-form input {
  flex: 1;
  min-width: 220px;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 15px;
  border: 1.5px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.07);
  color: var(--cream);
  border-radius: 3px;
  outline: none;
  transition: border-color 0.2s;
}
.cta-form input::placeholder { color: rgba(245,240,232,0.4); }
.cta-form input:focus { border-color: var(--gold); }

.cta-note {
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1px;
  color: rgba(245,240,232,0.35);
}

/* ── DIVIDERS ── */
.gold-rule {
  width: 48px;
  height: 3px;
  background: var(--gold);
  margin: 16px 0 28px;
}

.gold-rule.centered { margin-left: auto; margin-right: auto; }

/* ── PILLARS / FEATURES ── */
.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
  margin-top: 48px;
}

.pillar-icon {
  width: 48px;
  height: 48px;
  background: rgba(200,169,81,0.12);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.pillar-icon svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 1.8; }

.pillar h4 { margin-bottom: 8px; }
.pillar p { font-size: 15px; color: var(--muted); }

/* ── ARTICLE STYLES ── */
.article-hero {
  background: var(--forest);
  padding: 80px 24px 60px;
  text-align: center;
}

.article-hero-inner {
  max-width: 760px;
  margin: 0 auto;
}

.article-hero h1 { color: var(--cream); margin-bottom: 20px; font-size: clamp(28px, 4vw, 42px); }
.article-hero p { color: var(--sage); font-size: 18px; max-width: 600px; margin: 0 auto; }
.article-meta { margin-top: 32px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1); display: flex; gap: 32px; flex-wrap: wrap; justify-content: center; }
.article-meta span { font-family: var(--font-mono); font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: rgba(245,240,232,0.5); }
.article-meta span strong { color: var(--gold); }

.article-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 24px;
}

.article-body h2 { font-size: 26px; margin: 48px 0 16px; color: var(--forest); }
.article-body h3 { font-size: 20px; margin: 36px 0 12px; color: var(--forest); }
.article-body p { font-size: 16px; line-height: 1.8; color: #2a2a2a; margin-bottom: 18px; }
.article-body strong { color: var(--forest); }
.article-body ul, .article-body ol { padding-left: 24px; margin-bottom: 18px; }
.article-body li { font-size: 16px; line-height: 1.8; color: #2a2a2a; margin-bottom: 8px; }

.article-callout {
  background: #EBF2EE;
  border-left: 4px solid var(--mid);
  padding: 20px 24px;
  border-radius: 0 4px 4px 0;
  margin: 32px 0;
}
.article-callout p { margin: 0; font-size: 15px; }

.article-callout.warning {
  background: #F9EEE8;
  border-left-color: #C06020;
}

.article-callout.gold {
  background: #F8F2E0;
  border-left-color: var(--gold);
}

.article-cta {
  background: var(--forest);
  border-radius: 4px;
  padding: 36px;
  margin: 48px 0;
  text-align: center;
}
.article-cta h3 { color: var(--cream); margin-bottom: 12px; }
.article-cta p { color: var(--sage); font-size: 15px; margin-bottom: 24px; }

/* ── BREADCRUMB ── */
.breadcrumb {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 14px 24px;
}
.breadcrumb-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  gap: 12px;
  align-items: center;
}
.breadcrumb-inner a { color: var(--mid); transition: color 0.2s; }
.breadcrumb-inner a:hover { color: var(--forest); }

/* ── SECTION BACKGROUNDS ── */
.bg-cream { background: var(--cream); }
.bg-white { background: var(--white); }
.bg-forest { background: var(--forest); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  :root { --section-padding: 56px 20px; }

  .nav-links { display: none; }
  .nav-cta { display: none; }

  .hero-inner { grid-template-columns: 1fr; gap: 0; }
  .hero-visual { display: none; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }

  .hero { padding: 64px 20px; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-proof { gap: 24px; }
}

/* ── MOBILE HAMBURGER NAV ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 4px;
  margin-left: 8px;
}
@media (max-width: 768px) { .nav-hamburger { display: flex; } }

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--cream);
  border-radius: 1px;
  transition: all 0.2s ease;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--forest);
  border-top: 1px solid rgba(200,169,81,0.2);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(245,240,232,0.75);
  padding: 14px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.2s, background 0.2s;
  text-decoration: none;
}
.nav-mobile a:hover { color: var(--gold); background: rgba(200,169,81,0.05); }
.nav-mobile .nav-mobile-cta { color: var(--gold); border-top: 1px solid rgba(200,169,81,0.2); margin-top: 4px; }

/* ── PRODUCTS PAGE ── */
.products-page { max-width: 900px; margin: 0 auto; padding: 64px 24px 96px; }
.products-list { display: flex; flex-direction: column; gap: 32px; }

.product-full-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 36px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: start;
  transition: box-shadow 0.2s;
}
.product-full-card:hover { box-shadow: 0 8px 32px rgba(28,61,46,0.1); }

.product-full-card__type {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.product-full-card h3 { font-size: 22px; margin-bottom: 12px; color: var(--forest); }
.product-full-card p { font-size: 15px; color: var(--muted); line-height: 1.65; margin-bottom: 16px; }

.product-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.product-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: rgba(184,212,200,0.3);
  color: var(--mid);
  padding: 4px 10px;
  border-radius: 2px;
}

.product-full-card__aside {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  min-width: 160px;
}
.product-full-card__price {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--forest);
  white-space: nowrap;
  text-align: right;
}
.product-full-card__price-note {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  text-align: right;
  margin-top: -8px;
}
.product-full-card__ctas { display: flex; flex-direction: column; gap: 8px; width: 100%; }

@media (max-width: 640px) {
  .product-full-card { grid-template-columns: 1fr; }
  .product-full-card__aside { align-items: flex-start; }
  .product-full-card__price { text-align: left; }
  .product-full-card__price-note { text-align: left; }
}

/* ── CONTACT PAGE ── */
.contact-page { max-width: 820px; margin: 0 auto; padding: 64px 24px 96px; }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-top: 48px;
}
@media (max-width: 640px) { .contact-layout { grid-template-columns: 1fr; gap: 40px; } }

.contact-bio { font-size: 16px; color: #4a4a4a; line-height: 1.75; }
.contact-bio p { margin-bottom: 18px; }
.contact-bio strong { color: var(--forest); }

.contact-links-panel { display: flex; flex-direction: column; gap: 14px; }

.contact-link-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.contact-link-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(28,61,46,0.1);
  border-color: var(--sage);
}
.contact-link-card__label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}
.contact-link-card__name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--forest);
}
.contact-link-card__sub { font-size: 14px; color: var(--muted); }

/* ── NEWSLETTER MODAL ── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(11, 30, 20, 0.82);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: var(--cream);
  border-radius: 4px;
  border-top: 4px solid var(--gold);
  max-width: 500px;
  width: 100%;
  padding: 44px 40px;
  position: relative;
  animation: modal-in 0.2s ease;
}
@keyframes modal-in {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  color: var(--muted);
  padding: 4px 8px;
  border-radius: 2px;
  transition: color 0.15s;
}
.modal-close:hover { color: var(--forest); }
.modal-eyebrow {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.modal-heading {
  font-size: clamp(20px, 3vw, 26px);
  color: var(--forest);
  margin-bottom: 0;
}
.modal-rule {
  width: 40px;
  height: 3px;
  background: var(--gold);
  margin: 16px 0 18px;
}
.modal-sub {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.65;
}
@media (max-width: 540px) {
  .modal-box { padding: 36px 24px; }
}
.modal-form-row {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}
.modal-input {
  flex: 1;
  min-width: 0;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  border: 1.5px solid var(--border);
  border-radius: 2px;
  background: var(--white);
  color: var(--ink);
  outline: none;
  transition: border-color 0.15s;
}
.modal-input:focus { border-color: var(--gold); }
.modal-input::placeholder { color: #aaa; }
.modal-form-note {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--muted);
  text-transform: uppercase;
}
.modal-success {
  display: none;
  text-align: center;
  padding: 16px 0 8px;
}
.modal-success-icon {
  width: 52px;
  height: 52px;
  background: var(--forest);
  color: var(--gold);
  font-size: 24px;
  line-height: 52px;
  border-radius: 50%;
  margin: 0 auto 16px;
}
.modal-success-heading {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--forest);
  margin-bottom: 8px;
}
.modal-success-sub {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}
@media (max-width: 440px) {
  .modal-form-row { flex-direction: column; }
}
