:root {
  --bg: #f7f5ef;
  --bg-soft: #edf2e8;
  --bg-warm: #eef1f7;
  --surface: #fffefb;
  --surface-strong: #ffffff;
  --text: #2c2621;
  --muted: #746a60;
  --muted-strong: #5e544b;
  --line: #d9dde0;
  --accent: #9e4f36;
  --accent-dark: #7f3f2c;
  --accent-soft: #f3d8c9;
  --sage: #879b7c;
  --sage-dark: #607052;
  --sky: #6f7fa4;
  --sky-soft: #e7ecf6;
  --shadow: 0 24px 70px rgba(84, 61, 42, 0.13);
  --shadow-soft: 0 12px 34px rgba(84, 61, 42, 0.07);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --container: 1160px;
  --header-height: 78px;
  --font-sans: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  --font-serif: Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select { font: inherit; }
::selection { background: var(--accent-soft); }

:focus-visible {
  outline: 3px solid rgba(158, 79, 54, 0.28);
  outline-offset: 3px;
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}
.narrow { width: min(100% - 40px, 820px); }
.center { text-align: center; }
.section-pad { padding: clamp(72px, 8vw, 112px) 0; }
.section-soft { background: var(--bg-soft); }
.section-warm { background: var(--bg-warm); }
.skip-link {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 1000;
  transform: translateY(-140%);
  background: var(--text);
  color: var(--surface);
  padding: 10px 14px;
  border-radius: 999px;
}
.skip-link:focus { transform: translateY(0); }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: var(--header-height);
  border-bottom: 1px solid rgba(231, 216, 202, 0.68);
  background: rgba(251, 247, 241, 0.88);
  backdrop-filter: blur(18px);
}
.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 0;
}
.brand-mark {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border-radius: 16px;
  background: var(--text);
  color: var(--surface);
  font-weight: 950;
  letter-spacing: 0;
  font-size: 0.94rem;
}
.brand-text { font-size: 1.04rem; }
.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.site-nav a {
  text-decoration: none;
  color: var(--muted-strong);
  font-weight: 780;
  padding: 10px 14px;
  border-radius: 999px;
}
.site-nav a:hover { background: rgba(255, 253, 249, 0.78); color: var(--text); }
.site-nav .nav-cta { background: var(--accent); color: var(--surface); box-shadow: 0 10px 24px rgba(127, 63, 44, 0.18); }
.site-nav .nav-cta:hover { background: var(--accent-dark); color: var(--surface); }
.nav-toggle { display: none; }

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.78rem;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 0;
}
h1 { margin-bottom: 20px; font-size: clamp(3rem, 5.45vw, 5.45rem); }
h2 { margin-bottom: 20px; font-size: clamp(2.18rem, 4.8vw, 4.35rem); }
h3 { margin-bottom: 10px; line-height: 1.15; }
p { color: var(--muted-strong); }
.hero-text {
  color: var(--muted-strong);
  font-size: clamp(1.08rem, 1.9vw, 1.34rem);
  line-height: 1.55;
  max-width: 640px;
}
.hero-points {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
  max-width: 620px;
}
.hero-points li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--muted-strong);
  font-weight: 650;
}
.hero-points li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 0.6em;
  border-radius: 999px;
  background: var(--sage);
  flex: none;
}
.section-intro { font-size: 1.15rem; max-width: 680px; }
.microcopy, .form-note, .disclaimer-note { color: var(--muted); font-size: 0.92rem; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: transform 150ms ease, background 150ms ease, box-shadow 150ms ease;
}
.button:hover { transform: translateY(-1px); }
.button-primary {
  background: var(--accent);
  color: var(--surface);
  box-shadow: 0 16px 34px rgba(127, 63, 44, 0.2);
}
.button-primary:hover { background: var(--accent-dark); }
.button-secondary {
  background: rgba(255, 253, 249, 0.76);
  color: var(--text);
  border-color: var(--line);
}
.button-secondary:hover { background: var(--surface); }
.button-full { width: 100%; }
.text-link {
  color: var(--accent-dark);
  font-weight: 900;
  text-decoration: none;
  border-bottom: 2px solid rgba(158, 79, 54, 0.25);
}
.text-link:hover { border-bottom-color: var(--accent-dark); }

.hero { position: relative; overflow: hidden; padding-top: clamp(58px, 7vw, 96px); }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(340px, 0.76fr);
  gap: clamp(34px, 6vw, 72px);
  align-items: center;
}
.hero-copy { position: relative; z-index: 2; }
.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin: 30px 0 12px;
}
.author-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
  padding: 10px 14px 10px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.72);
  box-shadow: 0 10px 30px rgba(84, 61, 42, 0.06);
}
.author-badge img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.author-badge strong { display: block; line-height: 1.1; }
.author-badge span { display: block; color: var(--muted); font-size: 0.88rem; line-height: 1.2; }
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.trust-row span, .topic-row span {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.7);
  color: var(--muted-strong);
  padding: 8px 12px;
  font-size: 0.9rem;
  font-weight: 800;
}
.hero-visual {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
  padding: 28px;
  border: 1px solid rgba(217, 221, 224, 0.95);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 254, 251, 0.98), rgba(244, 246, 242, 0.96)),
    var(--surface);
  box-shadow: var(--shadow);
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: calc(var(--radius-lg) - 12px);
  border: 1px solid rgba(217, 221, 224, 0.55);
  pointer-events: none;
}
.kit-mockup {
  position: relative;
  z-index: 3;
  width: min(100%, 480px);
  filter: drop-shadow(0 38px 48px rgba(75, 53, 39, 0.18));
}
.quote-card {
  position: absolute;
  right: 0;
  bottom: 54px;
  z-index: 4;
  width: min(310px, 74%);
  border: 1px solid rgba(231, 216, 202, 0.8);
  border-radius: var(--radius-md);
  background: rgba(255, 253, 249, 0.86);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  padding: 22px;
}
.quote-card p { margin: 0; font-family: var(--font-serif); font-size: 1.16rem; line-height: 1.35; color: var(--text); }
.quote-card .quote-label { margin-bottom: 8px; color: var(--accent); font-family: var(--font-sans); font-size: 0.76rem; font-weight: 950; letter-spacing: 0.1em; text-transform: uppercase; }

.checklist-card, .signup-panel, .topic-card, .final-cta-card, .link-card, .legal-card {
  border: 1px solid rgba(231, 216, 202, 0.9);
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 249, 0.74);
  box-shadow: var(--shadow);
}
.checklist-card { margin-top: 34px; padding: clamp(24px, 4vw, 38px); }
.split-card { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 34px; }
.checklist { display: grid; gap: 12px; padding: 0; margin: 0; list-style: none; }
.checklist li { position: relative; padding-left: 34px; color: var(--muted-strong); }
.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--sage);
  box-shadow: inset 0 0 0 5px #f7efe7;
}
.muted-list li::before { background: var(--accent-soft); }

.lead-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, 420px); gap: 46px; align-items: start; }
.kit-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin-top: 32px; }
.mini-card, .method-steps article, .category-card, .post-card, .script-card, .article-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  padding: 24px;
  box-shadow: var(--shadow-soft);
}
.mini-card:nth-child(5) { grid-column: 1 / -1; }
.mini-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-weight: 950;
}
.mini-card p, .method-steps p, .category-card p, .post-card p, .script-card p { margin-bottom: 0; color: var(--muted-strong); }
.signup-panel { position: sticky; top: calc(var(--header-height) + 24px); padding: clamp(24px, 3.2vw, 34px); }
.signup-panel h3 { font-family: var(--font-serif); font-size: 2rem; font-weight: 500; }
.signup-form, .inline-form { display: grid; gap: 12px; }
.signup-form label:not(.honeypot):not(.consent-row) { margin-top: 6px; color: var(--text); font-weight: 850; }
.optional { color: var(--muted); font-size: 0.84rem; font-weight: 700; }
input, select {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: #fffaf5;
  color: var(--text);
  padding: 0 15px;
  outline: none;
}
input:focus, select:focus { border-color: var(--accent); box-shadow: 0 0 0 4px rgba(158, 79, 54, 0.14); }
.consent-row {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  margin: 8px 0;
  color: var(--muted-strong);
  font-size: 0.9rem;
  font-weight: 650;
}
.consent-row input { min-height: auto; width: 18px; height: 18px; margin-top: 0.2em; accent-color: var(--accent); }
.consent-row.compact { grid-column: 1 / -1; max-width: 620px; }
.form-success {
  margin: 0;
  border-radius: 16px;
  background: rgba(135, 155, 124, 0.18);
  color: var(--sage-dark);
  padding: 12px 14px;
  font-weight: 850;
}
.form-success.is-error { background: rgba(158, 79, 54, 0.12); color: var(--accent-dark); }
.paid-offer {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.paid-offer h3 { margin-top: 0; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.section-heading { width: min(100%, 760px); margin: 0 auto 42px; text-align: center; }
.section-heading.left { margin-inline: 0; text-align: left; }
.method-note {
  display: inline-block;
  max-width: 660px;
  margin-top: 10px;
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.62);
  padding: 10px 16px;
}
.method-steps, .script-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.script-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.method-steps article { position: relative; overflow: hidden; }
.method-steps article::after {
  content: "";
  position: absolute;
  right: -45px;
  top: -45px;
  width: 112px;
  height: 112px;
  border-radius: 999px;
  background: rgba(158, 79, 54, 0.08);
}
.method-steps span, .script-kicker, .post-meta {
  display: inline-block;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.script-card { min-height: 225px; display: flex; flex-direction: column; justify-content: space-between; }
.script-card h3 { font-family: var(--font-serif); font-weight: 500; font-size: clamp(1.45rem, 2vw, 2.05rem); line-height: 1.16; letter-spacing: 0; }

.category-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.category-card { display: grid; gap: 12px; text-decoration: none; min-height: 220px; }
.category-card:hover, .post-card:hover, .script-card:hover { transform: translateY(-2px); box-shadow: 0 18px 42px rgba(84, 61, 42, 0.1); }
.category-card, .post-card, .script-card { transition: transform 150ms ease, box-shadow 150ms ease; }
.category-card span { font-family: var(--font-serif); font-size: 1.55rem; line-height: 1.12; letter-spacing: 0; }
.category-card strong { color: var(--accent-dark); }
.post-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 16px; }
.post-card { display: flex; flex-direction: column; gap: 10px; }
.post-card h3 { font-size: 1.16rem; }
.post-card a { text-decoration: none; }
.post-card a:hover { color: var(--accent); }
.center-action { display: flex; justify-content: center; margin-top: 34px; }

.about-grid { display: grid; grid-template-columns: minmax(250px, 0.7fr) minmax(0, 1fr); gap: clamp(34px, 7vw, 78px); align-items: center; }
.author-image-wrap { position: relative; }
.author-image-wrap::before {
  content: "";
  position: absolute;
  inset: 32px -20px -20px 28px;
  border-radius: var(--radius-lg);
  background: var(--bg-soft);
  z-index: 0;
}
.author-image-wrap img { position: relative; z-index: 1; border-radius: var(--radius-lg); border: 1px solid var(--line); box-shadow: var(--shadow); }
.pill-list, .topic-row { display: flex; flex-wrap: wrap; gap: 10px; padding: 0; margin: 22px 0 28px; list-style: none; }
.pill-list li { border: 1px solid var(--line); background: var(--surface); color: var(--muted-strong); border-radius: 999px; padding: 9px 13px; font-weight: 800; }
.topic-row { justify-content: center; margin-top: 28px; }
.topic-row span:nth-child(2),
.topic-row span:nth-child(5) {
  background: var(--sky-soft);
  color: var(--sky);
}
.final-cta-card { padding: clamp(24px, 4.5vw, 48px); display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.7fr); gap: 30px; align-items: center; }
.inline-form { grid-template-columns: minmax(0, 1fr) auto; align-items: center; }
.inline-form input[type="email"] { min-width: 220px; }

.faq-list { display: grid; gap: 12px; }
details { border: 1px solid var(--line); border-radius: 22px; background: var(--surface); padding: 18px 22px; }
summary { cursor: pointer; font-weight: 900; }
details p { margin: 12px 0 0; }
.site-footer { padding: 56px 0 32px; background: #26302c; color: var(--surface); }
.site-footer p, .site-footer a, .footer-bottom span { color: rgba(255, 253, 249, 0.78); }
.site-footer .brand-mark { background: var(--surface); color: #29231f; }
.footer-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(250px, 0.8fr); gap: 30px; align-items: start; }
.footer-links { display: flex; flex-wrap: wrap; gap: 10px 18px; justify-content: flex-end; }
.footer-links a { text-decoration: none; font-weight: 800; }
.footer-links a:hover { color: #fff; }
.footer-bottom { margin-top: 34px; padding-top: 22px; border-top: 1px solid rgba(255, 253, 249, 0.14); display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; }

/* Legal, blog, and utility pages */
.page-hero { padding: 74px 0 34px; }
.page-hero h1 { font-size: clamp(2.8rem, 7vw, 5.4rem); }
.legal-page, .article-page { padding-top: 62px; padding-bottom: 92px; }
.legal-page h1, .article-page h1 { font-size: clamp(2.8rem, 7vw, 5.3rem); }
.legal-page h2, .article-page h2 { font-size: clamp(1.8rem, 3vw, 2.65rem); margin-top: 42px; }
.legal-card { padding: clamp(24px, 4vw, 42px); }
.article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 46px; align-items: start; }
.article-content { border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--surface); padding: clamp(26px, 5vw, 58px); box-shadow: var(--shadow-soft); }
.article-content p, .article-content li { font-size: 1.06rem; }
.article-content ul, .article-content ol { color: var(--muted-strong); }
.script-box { margin: 28px 0; border-radius: var(--radius-md); background: var(--bg-soft); padding: 24px; border: 1px solid var(--line); }
.script-box strong { color: var(--accent-dark); }
.script-box p:last-child { margin-bottom: 0; }
.article-sidebar { position: sticky; top: calc(var(--header-height) + 24px); display: grid; gap: 16px; }
.article-card h3 { font-family: var(--font-serif); font-size: 1.7rem; font-weight: 500; }
.blog-index-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.link-page { min-height: 100svh; padding: 34px 0; background: linear-gradient(180deg, rgba(237, 242, 232, 0.55), transparent 34%), var(--bg); }
.link-card { max-width: 560px; margin: 0 auto; padding: 24px; text-align: center; }
.link-card .author-badge { margin: 0 auto 20px; }
.link-buttons { display: grid; gap: 12px; margin-top: 24px; }
.link-button { display: block; border: 1px solid var(--line); border-radius: 22px; background: var(--surface); padding: 16px 18px; text-decoration: none; font-weight: 900; color: var(--text); box-shadow: var(--shadow-soft); }
.link-button.primary { background: var(--accent); color: var(--surface); border-color: var(--accent); }
.admin-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.stat-card { border: 1px solid var(--line); border-radius: 22px; padding: 18px; background: var(--surface); }
.stat-card strong { display: block; font-size: 2rem; line-height: 1; }
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 18px; background: var(--surface); }
table { width: 100%; border-collapse: collapse; }
th, td { padding: 12px 14px; border-bottom: 1px solid var(--line); text-align: left; font-size: 0.92rem; }
th { color: var(--accent-dark); }

@media (max-width: 1040px) {
  .hero-grid, .lead-grid, .about-grid, .final-cta-card, .article-layout { grid-template-columns: 1fr; }
  .hero-visual { min-height: 520px; }
  .signup-panel, .article-sidebar { position: relative; top: 0; }
  .method-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .post-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .category-grid, .script-grid, .blog-index-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  :root { --header-height: 66px; }
  .container, .narrow { width: min(100% - 28px, var(--container)); }
  .section-pad { padding: 56px 0; }
  .site-header { min-height: var(--header-height); }
  .header-inner { min-height: var(--header-height); }
  .brand-mark { width: 38px; height: 38px; border-radius: 14px; }
  .brand-text { font-size: 0.98rem; }
  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: rgba(255, 253, 249, 0.8);
  }
  .nav-toggle span:not(.sr-only) { width: 18px; height: 2px; border-radius: 2px; background: var(--text); }
  .site-nav {
    position: absolute;
    left: 14px;
    right: 14px;
    top: calc(var(--header-height) + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 253, 249, 0.96);
    box-shadow: var(--shadow);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 12px 14px; }
  .hero { padding-top: 38px; }
  h1 { font-size: clamp(2.55rem, 11vw, 3.45rem); line-height: 1.02; }
  h2 { font-size: clamp(2rem, 9vw, 3rem); }
  .hero-text { font-size: 1.03rem; }
  .author-badge { border-radius: 24px; align-items: flex-start; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 12px; }
  .hero-actions .button { width: 100%; }
  .hero-actions .text-link { align-self: center; padding: 6px 0; }
  .hero-visual { min-height: 430px; padding: 12px 0 24px; }
  .kit-mockup { width: min(96%, 350px); }
  .quote-card { right: 4px; bottom: 16px; width: min(300px, 86%); padding: 18px; }
  .split-card, .kit-list, .method-steps, .category-grid, .post-grid, .script-grid, .blog-index-grid, .footer-grid, .admin-grid { grid-template-columns: 1fr; }
  .inline-form { grid-template-columns: 1fr; }
  .inline-form .button { width: 100%; }
  .category-card { min-height: auto; }
  .script-card { min-height: 190px; }
  .footer-links { justify-content: flex-start; }
  .footer-bottom { display: grid; }
  .legal-page, .article-page { padding-top: 42px; }
  .article-content { padding: 24px; border-radius: 28px; }
}

/* V6 launch hardening additions */
.preference-fieldset {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 16px;
  margin: 18px 0;
  background: var(--surface);
}
.preference-fieldset legend {
  font-weight: 900;
  color: var(--accent-dark);
  padding: 0 8px;
}
.mobile-sticky-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 60;
  transform: translateY(140%);
  transition: transform 0.25s ease;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid rgba(231, 216, 202, 0.95);
  border-radius: 24px;
  background: rgba(255, 253, 249, 0.96);
  box-shadow: 0 16px 60px rgba(44, 38, 33, 0.18);
  padding: 12px;
  backdrop-filter: blur(16px);
}
.mobile-sticky-cta strong {
  display: block;
  font-size: 0.95rem;
  line-height: 1.1;
}
.mobile-sticky-cta span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  margin-top: 2px;
}
.mobile-sticky-cta .button {
  min-height: 42px;
  padding: 10px 14px;
  white-space: nowrap;
}
.admin-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: 26px 0;
}
.admin-toolbar label {
  font-weight: 900;
  color: var(--accent-dark);
}
.admin-toolbar select {
  max-width: 240px;
}
.admin-panels {
  display: grid;
  gap: 24px;
  margin-top: 28px;
}
.admin-panel {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
  padding: 20px;
}
.admin-panel h2 {
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  margin-top: 0;
}
.admin-panel.two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

@media (max-width: 760px) {
  body { padding-bottom: 84px; }
  .mobile-sticky-cta { display: flex; }
  .mobile-sticky-cta.is-visible { transform: translateY(0); }
  .admin-panel.two-col { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* V7 admin additions */
.admin-toolbar input[type="email"] {
  max-width: 260px;
  min-height: 46px;
  border-radius: 999px;
  padding: 10px 14px;
}
