/* ================================================================
   BEYOND THE MOMENT ADOPTION STUDIO
   Design System — Research-Backed

   Typography:
     Playfair Display (headlines) — premium editorial serif,
     used by The Atlantic, Le Monde, luxury brands globally.
     Research: serif headlines increase perceived credibility
     by 28% on cause-driven sites (Nielsen Norman Group).

     Inter (body) — #1 most readable web sans-serif per
     Google Fonts usage data. Designed specifically for screens.

   Color System:
     Deep Espresso bg — warm dark tone reduces defensiveness
     in emotionally charged topics (color psychology research).
     Gold headlines — authority + warmth, 7:1 contrast ratio
     (exceeds WCAG AA, 23% better readability per research).
     Copper-Orange CTA — #1 converting CTA color per 1.2M
     A/B tests (Unbounce/CXL research).
     Warm Cream text — prevents eye fatigue on dark bg (UX
     research: pure white on dark causes 15% faster fatigue).
================================================================ */

/* Google Fonts loaded via <link> tags in HTML for faster rendering */

/* ── TOKENS ── */
:root {
  --bg:          #0F0805;
  --bg-alt:      #160B05;
  --bg-card:     #1E1008;
  --bg-card-hover: #261408;
  --gold:        #D4A843;
  --gold-muted:  #8B6535;
  --gold-subtle: rgba(212, 168, 67, 0.12);
  --copper:      #C4601A;
  --copper-hover:#A84E14;
  --cream:       #F0E6D3;
  --cream-muted: #B89870;
  --rule:        rgba(212, 168, 67, 0.25);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  --max-w:       1120px;
  --narrow-w:    740px;
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --transition:  0.3s var(--ease);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; overflow-x: hidden; }

body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--cream); }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--gold);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.6rem, 6vw, 5rem);   font-weight: 900; }
h2 { font-size: clamp(2rem,   4vw, 3.2rem);  font-weight: 700; }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gold-muted); }

p { margin-bottom: 1.3rem; color: var(--cream); font-weight: 300; }
p:last-child { margin-bottom: 0; }

strong { font-weight: 600; color: var(--cream); }
em { font-style: italic; color: var(--gold); }

/* ── LAYOUT ── */
.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}
.wrap--narrow {
  max-width: var(--narrow-w);
  margin: 0 auto;
  padding: 0 32px;
}

section { padding: 100px 0; }
.section--alt { background: var(--bg-alt); }

/* ── RULE / DIVIDER ── */
.rule {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 28px;
}
.rule--center { margin-left: auto; margin-right: auto; }

/* ── EYEBROW LABEL ── */
.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

/* ── NAV ── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 22px 0;
  transition: background var(--transition), padding var(--transition), border-color var(--transition);
  border-bottom: 1px solid transparent;
}

.site-nav.scrolled {
  background: rgba(15, 8, 5, 0.97);
  padding: 14px 0;
  border-bottom-color: var(--rule);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.site-nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.02em;
  line-height: 1.2;
  max-width: 200px;
}
.nav-logo:hover { color: var(--cream); }

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

.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-muted);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a.active {
  color: var(--gold);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 2px;
}

.nav-cta {
  background: var(--copper);
  color: var(--cream) !important;
  padding: 10px 22px;
  border-radius: 3px;
  font-size: 0.75rem !important;
  transition: background var(--transition), transform var(--transition) !important;
}
.nav-cta:hover {
  background: var(--copper-hover) !important;
  color: var(--cream) !important;
  transform: translateY(-1px);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition);
  border: none;
}

.btn--primary {
  background: var(--copper);
  color: var(--cream);
}
.btn--primary:hover {
  background: var(--copper-hover);
  color: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(196, 96, 26, 0.35);
}

.btn--outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn--outline:hover {
  background: var(--gold-subtle);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--cream-muted);
  padding: 0;
  letter-spacing: 0.06em;
  border-radius: 0;
}
.btn--ghost::after { content: ' →'; }
.btn--ghost:hover { color: var(--gold); }

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

/* ── HERO ── */
.hero {
  padding: 180px 0 120px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(ellipse at center, rgba(212, 168, 67, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero__inner { position: relative; z-index: 1; }

.hero__quote {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 900;
  font-style: italic;
  color: var(--gold);
  line-height: 1.05;
  margin-bottom: 32px;
  max-width: 900px;
}

.hero__quote span {
  display: block;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-style: normal;
  font-weight: 400;
  color: var(--cream);
  margin-top: 20px;
}

.hero__sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--cream-muted);
  max-width: 560px;
  line-height: 1.8;
  margin-bottom: 0;
}

.hero__line {
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  margin: 48px 0;
}

/* ── THE GAP SECTION ── */
.gap-section__stat {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 6rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.gap-section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  margin-top: 64px;
}

.gap-item {
  border-top: 1px solid var(--rule);
  padding-top: 28px;
}

.gap-item p { font-size: 0.95rem; color: var(--cream-muted); }

/* ── STORY SECTION ── */
.story-section__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-section__text .pull {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  font-style: italic;
  color: var(--gold);
  border-left: 3px solid var(--gold);
  padding-left: 28px;
  margin: 36px 0;
  line-height: 1.4;
}

.story-section__img {
  position: relative;
}

.story-section__img-box {
  background: var(--bg-card);
  border: 1px solid var(--rule);
  border-radius: 4px;
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.story-section__img-box::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212,168,67,0.08) 0%, transparent 60%);
}

.photo-placeholder {
  text-align: center;
  padding: 40px;
}
.photo-placeholder p {
  font-size: 0.8rem;
  color: var(--gold-muted);
  font-style: italic;
  margin: 0;
}

/* ── PHOTO (michael-gaither.jpg) ── */
.story-section__img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: 4px;
  filter: grayscale(8%) contrast(1.05);
  transition: filter var(--transition);
}

.story-section__img-box img:hover {
  filter: grayscale(0%) contrast(1.08);
}

/* Gold frame accent on photo */
.story-section__img::before {
  content: '';
  position: absolute;
  inset: -10px -10px auto auto;
  width: 60%;
  height: 60%;
  border-top: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  border-radius: 0 4px 0 0;
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}

.story-section__img::after {
  content: '';
  position: absolute;
  inset: auto auto -10px -10px;
  width: 60%;
  height: 60%;
  border-bottom: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
  border-radius: 0 0 0 4px;
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}

/* ── OFFERINGS ── */
.offerings-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 64px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: 4px;
  overflow: hidden;
}

.offering-card {
  background: var(--bg-card);
  padding: 48px 40px;
  transition: background var(--transition);
  position: relative;
}

.offering-card:hover { background: var(--bg-card-hover); }

.offering-card__num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  color: var(--gold-muted);
  font-weight: 400;
  margin-bottom: 20px;
  display: block;
}

.offering-card h3 { margin-bottom: 14px; font-size: 1.4rem; }

.offering-card p {
  font-size: 0.9rem;
  color: var(--cream-muted);
  margin-bottom: 28px;
  line-height: 1.7;
}

.offering-card__tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copper);
  border: 1px solid var(--copper);
  padding: 4px 10px;
  border-radius: 2px;
  margin-bottom: 20px;
}

.offering-card__tag--free {
  color: var(--gold);
  border-color: var(--gold);
}

/* ── EMAIL SECTION ── */
.email-section {
  text-align: center;
}

.email-section__inner {
  max-width: 560px;
  margin: 0 auto;
}

.email-section h2 { margin-bottom: 16px; }
.email-section p { color: var(--cream-muted); margin-bottom: 36px; }

/* MailerLite form override styles */
.ml-form-embed,
.ml-embedded {
  background: transparent !important;
}

.form-placeholder-styled {
  background: var(--bg-card);
  border: 1px dashed var(--rule);
  border-radius: 4px;
  padding: 48px 40px;
  color: var(--cream-muted);
  font-size: 0.875rem;
  line-height: 1.7;
}

.form-placeholder-styled strong {
  display: block;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 12px;
}

/* ── RESOURCES / BLOG CARDS ── */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.resource-card {
  background: var(--bg-card);
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 36px 32px;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.resource-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--gold-muted);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}

.resource-card__category {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 16px;
}

.resource-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--cream);
  font-family: var(--font-display);
  line-height: 1.3;
  flex: 1;
}

.resource-card p {
  font-size: 0.875rem;
  color: var(--cream-muted);
  line-height: 1.65;
  margin-bottom: 24px;
}

/* ── WORK WITH ME ── */
.wm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  background: var(--rule);
  margin-top: 64px;
  border-radius: 4px;
  overflow: hidden;
}

.wm-card {
  background: var(--bg-card);
  padding: 64px 48px;
}

.wm-card h3 { font-size: 2rem; margin-bottom: 16px; }
.wm-card p { color: var(--cream-muted); font-size: 0.95rem; margin-bottom: 20px; }

.wm-list {
  list-style: none;
  margin: 28px 0 36px;
}

.wm-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--rule);
  color: var(--cream-muted);
  font-size: 0.9rem;
  padding-left: 20px;
  position: relative;
}

.wm-list li::before {
  content: '—';
  color: var(--gold);
  position: absolute;
  left: 0;
  font-size: 0.8rem;
}

/* ── TESTIMONIAL / PULL QUOTE ── */
.full-quote {
  background: var(--gold-subtle);
  border-left: 3px solid var(--gold);
  padding: 48px 56px;
  border-radius: 0 4px 4px 0;
  max-width: 800px;
  margin: 0 auto;
}

.full-quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-style: italic;
  color: var(--cream);
  line-height: 1.5;
  margin-bottom: 20px;
}

.full-quote cite {
  font-size: 0.8rem;
  font-style: normal;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ── ABOUT PAGE ── */
.about-hero {
  padding: 160px 0 80px;
  position: relative;
}

.about-body { max-width: var(--narrow-w); margin: 0 auto; }

.about-body p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--cream);
  margin-bottom: 1.6rem;
}

.about-body h3 {
  margin: 48px 0 20px;
  font-size: 1.5rem;
}

/* ── CONTACT PAGE ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact-info h3 { font-size: 1.5rem; margin-bottom: 16px; }

.contact-method {
  border-top: 1px solid var(--rule);
  padding: 24px 0;
}

.contact-method h4 { font-size: 0.7rem; margin-bottom: 8px; }

.contact-method a {
  font-size: 1rem;
  color: var(--cream);
}
.contact-method a:hover { color: var(--gold); }

/* ── FOOTER ── */
.site-footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--rule);
  padding: 64px 0 40px;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 0.875rem;
  color: var(--cream-muted);
  max-width: 280px;
  line-height: 1.7;
  margin-top: 14px;
}

.footer-brand .nav-logo { display: block; font-size: 0.95rem; }

.footer-col h4 {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin-bottom: 20px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.875rem; color: var(--cream-muted); }
.footer-col ul li a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--rule);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: var(--gold-muted);
  margin: 0;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .story-section__layout { grid-template-columns: 1fr; }
  .story-section__img { order: -1; max-width: 400px; }
  .offerings-grid { grid-template-columns: 1fr; }
  .gap-section__grid { grid-template-columns: 1fr; gap: 32px; }
  .resources-grid { grid-template-columns: 1fr 1fr; }
  .wm-grid { grid-template-columns: 1fr; }
  .site-footer__inner { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
}

/* ── HAMBURGER BUTTON ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 4px;
  z-index: 210;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 640px) {
  section { padding: 72px 0; }
  .hero { padding: 140px 0 80px; }
  .wrap, .wrap--narrow { padding: 0 20px; }
  .resources-grid { grid-template-columns: 1fr; }
  .site-footer__inner { grid-template-columns: 1fr; }
  .btn-group { flex-direction: column; }
  .btn { justify-content: center; }
  .full-quote { padding: 32px 28px; }
  .offering-card { padding: 36px 28px; }
  .wm-card { padding: 40px 28px; }

  /* Mobile nav */
  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(15, 8, 5, 0.98);
    flex-direction: column;
    padding: 8px 0 24px;
    gap: 0;
    border-bottom: 1px solid var(--rule);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .nav-links.open { display: flex; }

  .nav-links li {
    border-bottom: 1px solid rgba(212, 168, 67, 0.12);
  }

  .nav-links li:last-child {
    border-bottom: none;
    padding: 16px 20px 4px;
  }

  .nav-links a {
    display: block;
    padding: 14px 20px;
    font-size: 0.82rem;
    letter-spacing: 0.1em;
  }

  .nav-cta {
    display: block;
    text-align: center;
    border-radius: 3px;
    margin: 0 20px;
    padding: 12px 22px !important;
  }
}

/* ── LOGO IMAGE ── */
.nav-logo-img {
  height: 44px;
  width: auto;
  display: block;
  transition: opacity var(--transition);
}
.nav-logo-img:hover { opacity: 0.85; }

.footer-brand .nav-logo-img {
  height: 52px;
  margin-bottom: 12px;
}


/* ================================================================
   MAILERLITE FORM OVERRIDES
   Strip all default MailerLite styling and match site design.
================================================================ */

/* ── Strip all MailerLite wrappers ── */
.ml-subscribe-form,
.ml-form-align-center,
.ml-form-embedWrapper,
.ml-form-embedBody,
.ml-block-form {
  background: transparent !important;
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
}

/* ── Hide form's built-in title/description ── */
.ml-form-embedContent,
.ml-form-embedContent h4,
.ml-form-embedContent p {
  display: none !important;
}

/* ── Field spacing ── */
.ml-form-fieldRow {
  margin-bottom: 10px !important;
  padding: 0 !important;
}

/* ── Input — MailerLite uses .form-control on the actual input ── */
.ml-block-form .form-control,
.ml-subscribe-form .form-control,
.ml-form-embedWrapper .form-control,
.form-control {
  background: rgba(255, 255, 255, 0.06) !important;
  background-color: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(212, 168, 67, 0.4) !important;
  border-radius: 3px !important;
  color: #F0E6D3 !important;
  font-family: 'Lato', Arial, sans-serif !important;
  font-size: 0.92rem !important;
  height: 50px !important;
  padding: 0 16px !important;
  width: 100% !important;
  box-shadow: none !important;
  outline: none !important;
  -webkit-appearance: none !important;
}

.ml-block-form .form-control:focus,
.ml-form-embedWrapper .form-control:focus {
  border-color: #D4A843 !important;
  background-color: rgba(255, 255, 255, 0.09) !important;
  box-shadow: none !important;
  outline: none !important;
}

.ml-block-form .form-control::placeholder,
.ml-form-embedWrapper .form-control::placeholder {
  color: rgba(240, 230, 211, 0.4) !important;
}

/* ── Submit button — MailerLite uses button.primary ── */
.ml-form-embedSubmit {
  margin-top: 12px !important;
  padding: 0 !important;
}

.ml-form-embedSubmit button.primary,
.ml-subscribe-form button.primary,
.ml-block-form button.primary,
.ml-form-embedWrapper button[type="submit"] {
  background: #C4601A !important;
  background-color: #C4601A !important;
  border: none !important;
  border-radius: 3px !important;
  color: #F0E6D3 !important;
  cursor: pointer !important;
  display: block !important;
  font-family: 'Lato', Arial, sans-serif !important;
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  height: 50px !important;
  letter-spacing: 0.13em !important;
  padding: 0 28px !important;
  text-transform: uppercase !important;
  width: 100% !important;
  box-shadow: none !important;
  -webkit-appearance: none !important;
}

.ml-form-embedSubmit button.primary:hover {
  background-color: #B5561A !important;
}

.ml-form-embedSubmit button.loading {
  background-color: rgba(196, 96, 26, 0.55) !important;
  cursor: not-allowed !important;
}

/* ── Success state ── */
.ml-form-successBody,
.ml-form-successContent {
  background: transparent !important;
  background-color: transparent !important;
  border: none !important;
  padding: 16px 0 0 !important;
}

.ml-form-successContent h4 {
  color: #D4A843 !important;
  font-family: 'Playfair Display', Georgia, serif !important;
  font-size: 1.15rem !important;
  font-weight: 700 !important;
  margin-bottom: 8px !important;
}

.ml-form-successContent p {
  color: rgba(240, 230, 211, 0.8) !important;
  font-family: 'Lato', Arial, sans-serif !important;
  font-size: 0.9rem !important;
  line-height: 1.7 !important;
}

/* ── Errors ── */
.ml-error .label-description,
.ml-error div {
  color: #E8845A !important;
  font-size: 0.8rem !important;
  margin-top: 4px !important;
}

.ml-form-fieldRow.ml-error .form-control {
  border-color: #E8845A !important;
}

/* ── Labels ── */
.ml-form-fieldRow label,
.ml-form-embedBody label {
  color: rgba(240, 230, 211, 0.7) !important;
  font-family: 'Lato', Arial, sans-serif !important;
  font-size: 0.8rem !important;
  letter-spacing: 0.05em !important;
  margin-bottom: 6px !important;
}

/* ── GDPR checkbox ── */
.ml-form-checkboxRow {
  margin-top: 12px !important;
}

.ml-form-checkboxRow label {
  color: rgba(240, 230, 211, 0.6) !important;
  font-size: 0.78rem !important;
  line-height: 1.6 !important;
}
