/* ============================================================
   Raised & Rooted Academy — shared styles
   Warm & earthy palette: forest green, sage, cream, terracotta
   ============================================================ */

:root {
  --green-deep: #2f4a32;
  --green: #4a6b46;
  --sage: #7a9b6e;
  --sage-soft: #e4ecdd;
  --cream: #f7f3ea;
  --cream-deep: #efe8d8;
  --tan: #e8dcc4;
  --terracotta: #c77d4a;
  --terracotta-deep: #a8602f;
  --ink: #29302a;
  --muted: #6b6f64;
  --white: #fffdf8;
  --shadow: 0 18px 50px -24px rgba(47, 74, 50, 0.45);
  --shadow-soft: 0 8px 28px -18px rgba(47, 74, 50, 0.35);
  --radius: 18px;
  --maxw: 1120px;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.12; color: var(--green-deep); letter-spacing: -0.01em; }

p { color: var(--ink); }

a { color: var(--terracotta-deep); text-decoration: none; }
a:hover { text-decoration: underline; }

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

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terracotta-deep);
  margin-bottom: 18px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.02rem;
  padding: 16px 30px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
  text-decoration: none;
  line-height: 1;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn-primary { background: var(--terracotta); color: var(--white); box-shadow: var(--shadow-soft); }
.btn-primary:hover { background: var(--terracotta-deep); }
.btn-green { background: var(--green-deep); color: var(--white); box-shadow: var(--shadow-soft); }
.btn-green:hover { background: var(--green); }
.btn-ghost { background: transparent; color: var(--green-deep); border-color: rgba(47,74,50,0.25); }
.btn-ghost:hover { background: rgba(47,74,50,0.06); }
.btn-lg { padding: 19px 38px; font-size: 1.1rem; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247, 243, 234, 0.86);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid rgba(47,74,50,0.08);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 38px; height: 38px; border-radius: 11px; flex: none;
  background: linear-gradient(150deg, var(--green) 0%, var(--green-deep) 100%);
  display: grid; place-items: center; color: var(--cream);
  font-family: var(--font-display); font-weight: 700; font-size: 1.15rem;
  box-shadow: inset 0 -2px 6px rgba(0,0,0,0.18);
}
.brand-name { font-family: var(--font-display); font-weight: 600; font-size: 1.16rem; color: var(--green-deep); line-height: 1.05; }
.brand-name small { display: block; font-family: var(--font-body); font-weight: 700; font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--sage); }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { color: var(--ink); font-weight: 700; font-size: 0.95rem; }
.nav-links a:hover { color: var(--terracotta-deep); text-decoration: none; }
.nav-cta { display: inline-flex; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(1100px 540px at 78% -8%, rgba(122,155,110,0.30), transparent 60%),
    radial-gradient(800px 460px at 8% 12%, rgba(199,125,74,0.13), transparent 55%),
    var(--cream);
  padding: 84px 0 76px;
  overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1.08fr 0.92fr; gap: 56px; align-items: center; }
.hero h1 { font-size: clamp(2.5rem, 5vw, 3.9rem); margin-bottom: 22px; }
.hero h1 .accent { color: var(--terracotta-deep); font-style: italic; }
.hero-sub { font-size: 1.2rem; color: var(--muted); max-width: 540px; margin-bottom: 32px; }
.hero-cta-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-trust { margin-top: 26px; display: flex; align-items: center; gap: 14px; color: var(--muted); font-size: 0.92rem; font-weight: 600; }
.hero-trust .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--sage); }

.hero-card {
  background: var(--white);
  border: 1px solid rgba(47,74,50,0.10);
  border-radius: 24px;
  padding: 30px;
  box-shadow: var(--shadow);
  position: relative;
}
.hero-card h3 { font-size: 1.28rem; margin-bottom: 6px; }
.hero-card .hc-sub { font-size: 0.92rem; color: var(--muted); margin-bottom: 20px; }
.hc-stat { display: flex; align-items: baseline; gap: 12px; padding: 14px 0; border-top: 1px dashed rgba(47,74,50,0.16); }
.hc-stat:first-of-type { border-top: none; }
.hc-num { font-family: var(--font-display); font-weight: 700; font-size: 2rem; color: var(--terracotta-deep); flex: none; min-width: 92px; }
.hc-label { font-size: 0.95rem; color: var(--ink); }

/* ---------- Sections ---------- */
section { padding: 100px 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-head h2 { font-size: clamp(2rem, 3.6vw, 2.75rem); margin-bottom: 16px; }
.section-head p { font-size: 1.13rem; color: var(--muted); }

.bg-sage { background: var(--sage-soft); }
.bg-green { background: var(--green-deep); }
.bg-green h2, .bg-green h3, .bg-green p, .bg-green .section-head p { color: var(--cream); }
.bg-cream-deep { background: var(--cream-deep); }

/* ---------- Problem / stat cards ---------- */
.stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.stat-card {
  background: var(--white); border: 1px solid rgba(47,74,50,0.10);
  border-radius: var(--radius); padding: 30px 26px; box-shadow: var(--shadow-soft);
}
.stat-card .big { font-family: var(--font-display); font-weight: 700; font-size: 2.9rem; color: var(--terracotta-deep); line-height: 1; margin-bottom: 12px; }
.stat-card p { color: var(--muted); font-size: 1rem; }
.stat-card .src { display:block; margin-top: 12px; font-size: 0.74rem; color: var(--sage); font-weight: 700; letter-spacing: 0.04em; }

/* ---------- Comparison table ---------- */
.compare {
  background: var(--white); border-radius: 22px; overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid rgba(47,74,50,0.10);
}
.compare table { width: 100%; border-collapse: collapse; }
.compare th, .compare td { padding: 18px 20px; text-align: left; font-size: 0.98rem; }
.compare thead th { background: var(--green-deep); color: var(--cream); font-family: var(--font-display); font-weight: 600; font-size: 1.02rem; }
.compare thead th.col-us { background: var(--terracotta); }
.compare tbody tr:nth-child(even) { background: var(--cream); }
.compare tbody td:first-child { font-weight: 800; color: var(--green-deep); }
.compare td.col-us { font-weight: 800; color: var(--terracotta-deep); background: rgba(199,125,74,0.08); }
.compare .check { color: var(--green); font-weight: 900; }
.compare .cross { color: #b6695f; font-weight: 900; }

/* ---------- Feature / pillars ---------- */
.pillar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.pillar {
  background: var(--white); border: 1px solid rgba(47,74,50,0.10); border-radius: var(--radius);
  padding: 32px 28px; box-shadow: var(--shadow-soft);
}
.pillar .ico {
  width: 52px; height: 52px; border-radius: 13px; display: grid; place-items: center;
  background: var(--sage-soft); color: var(--green); margin-bottom: 20px;
}
.pillar .ico svg { width: 25px; height: 25px; stroke: currentColor; fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.pillar h3 { font-size: 1.3rem; margin-bottom: 10px; }
.pillar p { color: var(--muted); }

/* ---------- Lead magnet band ---------- */
.magnet-band { background: linear-gradient(155deg, var(--green-deep) 0%, var(--green) 100%); position: relative; overflow: hidden; }
.magnet-grid { display: grid; grid-template-columns: 1fr 0.85fr; gap: 50px; align-items: center; }
.magnet-grid h2 { color: var(--cream); font-size: clamp(2rem, 3.6vw, 2.7rem); margin-bottom: 18px; }
.magnet-grid p { color: rgba(247,243,234,0.85); font-size: 1.14rem; margin-bottom: 14px; }
.magnet-list { list-style: none; margin: 22px 0 30px; }
.magnet-list li { color: var(--cream); padding: 8px 0 8px 32px; position: relative; font-weight: 600; }
.magnet-list li::before { content: "✓"; position: absolute; left: 0; color: var(--terracotta); font-weight: 900; font-size: 1.1rem; }
.magnet-cover {
  background: var(--cream); border-radius: 16px; padding: 8px; box-shadow: 0 30px 60px -24px rgba(0,0,0,0.55);
  transform: rotate(2.5deg);
}
.magnet-cover-inner {
  border: 2px solid var(--tan); border-radius: 10px; padding: 38px 30px; text-align: center;
  background: linear-gradient(180deg, var(--white), var(--cream));
}
.magnet-cover-inner .kicker { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--terracotta-deep); font-weight: 800; }
.magnet-cover-inner h4 { font-family: var(--font-display); font-size: 1.55rem; color: var(--green-deep); margin: 14px 0; line-height: 1.15; }
.magnet-cover-inner .free-tag { display:inline-block; margin-top: 10px; background: var(--terracotta); color: var(--white); font-weight: 800; font-size: 0.8rem; padding: 6px 16px; border-radius: 999px; letter-spacing: 0.05em; }

/* ---------- Testimonials ---------- */
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.quote {
  background: var(--white); border: 1px solid rgba(47,74,50,0.10); border-radius: var(--radius);
  padding: 30px 28px; box-shadow: var(--shadow-soft);
}
.quote .stars { color: var(--terracotta); letter-spacing: 2px; margin-bottom: 14px; }
.quote p { font-size: 1.04rem; color: var(--ink); font-style: italic; margin-bottom: 18px; }
.quote .who { font-weight: 800; color: var(--green-deep); font-style: normal; }
.quote .who small { display:block; font-weight: 600; color: var(--muted); font-size: 0.85rem; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { background: var(--white); border: 1px solid rgba(47,74,50,0.10); border-radius: 14px; margin-bottom: 14px; overflow: hidden; }
.faq-item summary { cursor: pointer; padding: 22px 26px; font-weight: 800; font-size: 1.08rem; color: var(--green-deep); list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.5rem; color: var(--terracotta); font-weight: 400; transition: transform 0.2s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-body { padding: 0 26px 24px; color: var(--muted); }

/* ---------- Final CTA ---------- */
.final-cta { text-align: center; }
.final-cta h2 { color: var(--cream); font-size: clamp(2.1rem, 4vw, 3rem); margin-bottom: 18px; }
.final-cta p { color: rgba(247,243,234,0.85); font-size: 1.2rem; max-width: 600px; margin: 0 auto 32px; }

/* ---------- Footer ---------- */
.site-footer { background: #20311f; color: rgba(247,243,234,0.72); padding: 56px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.site-footer .brand-name { color: var(--cream); }
.site-footer p { color: rgba(247,243,234,0.6); font-size: 0.95rem; margin-top: 14px; max-width: 320px; }
.footer-col h5 { color: var(--cream); font-family: var(--font-body); font-weight: 800; font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col a { display: block; color: rgba(247,243,234,0.72); margin-bottom: 10px; font-size: 0.95rem; }
.footer-col a:hover { color: var(--cream); }
.footer-bottom { border-top: 1px solid rgba(247,243,234,0.14); padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 0.85rem; color: rgba(247,243,234,0.5); }

/* ============================================================
   Opt-in (lead magnet) page
   ============================================================ */
.optin-body { background: radial-gradient(900px 520px at 80% -10%, rgba(122,155,110,0.28), transparent 60%), var(--cream); min-height: 100vh; }
.optin-wrap { max-width: 1040px; margin: 0 auto; padding: 28px 24px 60px; }
.optin-top { text-align: center; margin-bottom: 14px; }
.optin-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; margin-top: 30px; }
.optin-grid h1 { font-size: clamp(2.1rem, 4.4vw, 3.1rem); margin-bottom: 18px; }
.optin-grid h1 .accent { color: var(--terracotta-deep); font-style: italic; }
.optin-lead { font-size: 1.16rem; color: var(--muted); margin-bottom: 24px; }
.optin-list { list-style: none; margin: 22px 0; }
.optin-list li { padding: 9px 0 9px 34px; position: relative; font-weight: 600; color: var(--ink); }
.optin-list li::before { content: "🌱"; position: absolute; left: 0; font-size: 1rem; }

.form-card {
  background: var(--white); border: 1px solid rgba(47,74,50,0.12); border-radius: 22px;
  padding: 38px 34px; box-shadow: var(--shadow);
}
.form-card h2 { font-size: 1.55rem; margin-bottom: 6px; }
.form-card .fc-sub { color: var(--muted); font-size: 0.98rem; margin-bottom: 24px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 800; font-size: 0.85rem; color: var(--green-deep); margin-bottom: 7px; letter-spacing: 0.02em; }
.field input {
  width: 100%; padding: 15px 16px; font-size: 1rem; font-family: var(--font-body);
  border: 1.5px solid rgba(47,74,50,0.18); border-radius: 12px; background: var(--cream);
  color: var(--ink); transition: border 0.15s, box-shadow 0.15s;
}
.field input:focus { outline: none; border-color: var(--sage); box-shadow: 0 0 0 4px rgba(122,155,110,0.18); background: var(--white); }
.form-card .fineprint { font-size: 0.82rem; color: var(--muted); margin-top: 16px; text-align: center; }
.form-card .fineprint a { color: var(--terracotta-deep); }
.trust-row { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 18px; color: var(--sage); font-size: 0.82rem; font-weight: 700; }

.optin-cover {
  background: var(--cream); border-radius: 16px; padding: 8px; box-shadow: var(--shadow);
  border: 1px solid rgba(47,74,50,0.10); margin-bottom: 26px; max-width: 280px;
}
.optin-cover .magnet-cover-inner { padding: 30px 24px; }

.mini-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 28px; }
.mini-stat { text-align: center; background: var(--white); border-radius: 12px; padding: 16px 8px; border: 1px solid rgba(47,74,50,0.08); }
.mini-stat .n { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; color: var(--terracotta-deep); }
.mini-stat .l { font-size: 0.78rem; color: var(--muted); font-weight: 600; }

/* ---------- Thank you ---------- */
.ty-wrap { max-width: 940px; margin: 0 auto; padding: 40px 24px 64px; }
.ty-head { max-width: 640px; margin: 0 auto 30px; text-align: center; }
.ty-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 24px; }
.pdf-frame { width: 100%; height: 82vh; min-height: 520px; border: 1px solid rgba(47,74,50,0.15); border-radius: 16px; box-shadow: var(--shadow); background: var(--white); display: block; }
.ty-card { max-width: 620px; margin: 8vh auto; background: var(--white); border-radius: 22px; padding: 50px 42px; text-align: center; box-shadow: var(--shadow); border: 1px solid rgba(47,74,50,0.10); }
.ty-emoji { font-size: 3.4rem; margin-bottom: 14px; }
.ty-card h1 { font-size: 2.2rem; margin-bottom: 14px; }
.ty-card p { color: var(--muted); font-size: 1.1rem; margin-bottom: 16px; }

/* ---------- Responsive ---------- */
@media (max-width: 880px) {
  .hero-grid, .magnet-grid, .optin-grid, .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .stat-grid, .pillar-grid, .quote-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .hero { padding: 56px 0 50px; }
  section { padding: 56px 0; }
  .magnet-cover { transform: none; max-width: 360px; margin: 0 auto; }
  .compare { overflow-x: auto; }
  .compare table { min-width: 560px; }
  .optin-cover { margin: 0 auto 26px; }
}
@media (max-width: 520px) {
  .hero-cta-row { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .footer-bottom { flex-direction: column; }
}

/* ============================================================
   Professional polish — photography, restraint, credibility
   ============================================================ */

/* Header: add location + phone, refine */
.nav-meta { display: flex; align-items: center; gap: 18px; }
.nav-phone { display: inline-flex; align-items: center; gap: 7px; font-weight: 800; font-size: 0.92rem; color: var(--green-deep); }
.nav-phone svg { width: 16px; height: 16px; stroke: var(--sage); fill: none; stroke-width: 1.8; }
.nav-phone:hover { text-decoration: none; color: var(--terracotta-deep); }

/* Hero photography */
.hero-photo-frame { position: relative; }
.hero-photo {
  width: 100%; border-radius: 22px; box-shadow: var(--shadow);
  border: 1px solid rgba(47,74,50,0.10); aspect-ratio: 3 / 2; object-fit: cover; display: block;
}
.stat-badge {
  position: absolute; left: -22px; bottom: -22px;
  background: var(--white); border: 1px solid rgba(47,74,50,0.10);
  border-radius: 16px; padding: 16px 20px; box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 14px; max-width: 250px;
}
.stat-badge .sb-num { font-family: var(--font-display); font-weight: 700; font-size: 2.1rem; color: var(--terracotta-deep); line-height: 1; }
.stat-badge .sb-label { font-size: 0.82rem; color: var(--muted); font-weight: 600; line-height: 1.35; }

/* Trust bar under hero */
.trust-bar { border-top: 1px solid rgba(47,74,50,0.10); border-bottom: 1px solid rgba(47,74,50,0.10); background: var(--white); }
.trust-bar .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-top: 20px; padding-bottom: 20px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; color: var(--green-deep); font-weight: 700; font-size: 0.92rem; }
.trust-item svg { width: 19px; height: 19px; stroke: var(--sage); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex: none; }

/* Two-column feature (approach photo) */
.feature-split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.feature-split .fs-media img { width: 100%; border-radius: 20px; box-shadow: var(--shadow); border: 1px solid rgba(47,74,50,0.10); aspect-ratio: 4 / 3; object-fit: cover; }
.feature-split h2 { font-size: clamp(1.9rem, 3.2vw, 2.5rem); margin-bottom: 18px; }
.feature-list { list-style: none; margin-top: 22px; }
.feature-list li { position: relative; padding: 11px 0 11px 36px; border-top: 1px solid rgba(47,74,50,0.08); font-weight: 600; color: var(--ink); }
.feature-list li:first-child { border-top: none; }
.feature-list li svg { position: absolute; left: 0; top: 12px; width: 22px; height: 22px; stroke: var(--green); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* Refined citations */
.stat-card .src { color: var(--muted); font-weight: 700; opacity: 0.85; }
.research-note { text-align: center; margin-top: 38px; font-size: 0.86rem; color: var(--muted); max-width: 720px; margin-left: auto; margin-right: auto; }

/* Testimonial avatars */
.quote .who-row { display: flex; align-items: center; gap: 13px; }
.avatar { width: 46px; height: 46px; border-radius: 50%; flex: none; display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; color: var(--cream); font-size: 1.05rem; }
.avatar.a1 { background: linear-gradient(150deg, var(--sage), var(--green)); }
.avatar.a2 { background: linear-gradient(150deg, var(--terracotta), var(--terracotta-deep)); }
.avatar.a3 { background: linear-gradient(150deg, var(--green), var(--green-deep)); }

/* Optin list — swap emoji bullet for clean check */
.optin-list li::before { content: ""; }
.optin-list li { padding-left: 34px; }
.optin-list li svg { position: absolute; left: 0; top: 11px; width: 22px; height: 22px; stroke: var(--green); fill: none; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.optin-list li { position: relative; }

/* Real guide-cover photo */
.cover-photo { width: 100%; border-radius: 16px; box-shadow: 0 30px 60px -24px rgba(0,0,0,0.45); border: 1px solid rgba(47,74,50,0.10); display: block; }

@media (max-width: 880px) {
  .feature-split { grid-template-columns: 1fr; gap: 30px; }
  .feature-split .fs-media { order: -1; }
  .stat-badge { left: 12px; bottom: -18px; }
  .trust-bar .wrap { justify-content: flex-start; gap: 18px 28px; }
  .nav-phone span { display: none; }
}

/* ============================================================
   Announcement bar + opt-in efficiency redesign
   ============================================================ */
.announce-bar { background: var(--terracotta); color: var(--white); }
.announce-bar .inner {
  max-width: var(--maxw); margin: 0 auto; padding: 10px 24px;
  display: flex; align-items: center; justify-content: center; gap: 9px;
  text-align: center; font-size: 0.92rem; font-weight: 700; line-height: 1.35; flex-wrap: wrap;
}
.announce-bar a { color: var(--white); text-decoration: underline; font-weight: 800; white-space: nowrap; }
.announce-bar a:hover { color: var(--cream); }
.announce-bar .star { width: 15px; height: 15px; fill: var(--white); flex: none; }

/* Logo image as the corner brand mark — all-green mark sits straight on cream */
.brand-mark.has-logo { background: none; box-shadow: none; padding: 0; width: 48px; height: 48px; border-radius: 0; }
.brand-mark img { width: 100%; height: 100%; object-fit: contain; display: block; }

/* Opt-in: compact hero + form-first-on-mobile grid */
.optin-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
.optin-back { color: var(--muted); font-weight: 700; font-size: 0.9rem; }
.optin-back:hover { color: var(--terracotta-deep); }
.optin-hero { text-align: center; max-width: 720px; margin: 16px auto 22px; }
.optin-hero h1 { font-size: clamp(1.85rem, 4vw, 2.7rem); margin-bottom: 12px; }
.optin-hero .optin-lead { font-size: 1.06rem; margin: 0 auto; max-width: 600px; }
.support-col h4 { font-family: var(--font-body); font-weight: 800; font-size: 0.95rem; color: var(--green-deep); margin-bottom: 8px; }
.support-col .optin-cover { max-width: 210px; margin: 0 0 22px; }
.lock-ico { width: 14px; height: 14px; stroke: var(--sage); fill: none; stroke-width: 2; vertical-align: -2px; margin-right: 4px; }

@media (min-width: 881px) {
  .optin-grid { grid-template-columns: 1.05fr 0.95fr; gap: 46px; align-items: start; margin-top: 6px; }
  .support-col { padding-top: 4px; }
}
@media (max-width: 880px) {
  /* Compact everything above the form so the form lands above the fold */
  .optin-wrap { padding-top: 14px; }
  .optin-top { margin-bottom: 2px; }
  .optin-top .brand-name { font-size: 1rem; }
  .optin-hero { margin: 8px auto 14px; }
  .optin-hero h1 { font-size: 1.5rem; line-height: 1.16; margin-bottom: 8px; }
  .optin-hero .optin-lead { font-size: 0.96rem; }
  .form-card { padding: 22px 20px; }
  .form-card h2 { font-size: 1.35rem; }
  .form-card .fc-sub { font-size: 0.92rem; margin-bottom: 16px; }
  .field { margin-bottom: 12px; }
  .field input { padding: 13px 15px; }
  .support-col { margin-top: 32px; }
  .support-col .optin-cover { margin: 0 auto 20px; }
  .announce-bar .inner { font-size: 0.83rem; padding: 9px 18px; }

  /* Mobile nav: logo-only + clean single-line, centered CTA */
  .nav { height: 66px; }
  .site-header .brand-name { display: none; }
  .nav-meta { gap: 12px; }
  .nav-cta { white-space: nowrap; text-align: center; padding: 12px 20px; font-size: 0.92rem; }
}
