/* =====================================================================
   Allie Pure — design system
   ===================================================================== */

:root {
  --sage:         #7A9E87;
  --sage-dark:    #4E7A5C;
  --sage-mid:     #5C8A6A;
  --sage-light:   #8FB89C;
  --sage-pale:    #EAF2EC;
  --sage-lighter: #B8D4C0;
  --cream:        #FAF8F4;
  --bg:           #E8E4DE;
  --charcoal:     #2C2C2C;
  --charcoal-90:  rgba(44,44,44,0.92);
  --mid:          #6B6B6B;
  --rule:         #D0E4D8;

  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body:    'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --text-hero:  clamp(52px, 8vw, 96px);
  --text-h2:    clamp(32px, 5vw, 52px);
  --text-h3:    clamp(20px, 3vw, 28px);
  --text-body:  15px;
  --text-small: 13px;
  --text-micro: 11px;

  --section-pad: clamp(64px, 8vw, 120px);
  --container:   1100px;
  --radius:      4px;
  --radius-pill: 20px;

  --shadow-card:  3px 8px 24px rgba(0,0,0,0.10), -1px 2px 6px rgba(0,0,0,0.06);
  --shadow-hover: 4px 12px 32px rgba(0,0,0,0.16);

  --transition:  0.35s cubic-bezier(0.23, 1, 0.32, 1);
  --transition-fast: 0.2s ease;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-body);
  font-weight: 400;
  line-height: 1.6;
  color: var(--charcoal);
  background: white;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: var(--sage); text-decoration: none; transition: color var(--transition-fast); }
a:hover { color: var(--sage-dark); }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); font-weight: 300; line-height: 1.15; letter-spacing: -0.01em; }
p { margin: 0; }
button { font-family: inherit; }

/* ---------- layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: clamp(20px, 5vw, 40px);
  padding-right: clamp(20px, 5vw, 40px);
}
.section { padding: var(--section-pad) 0; }
.section-cream    { background: var(--cream); }
.section-pale     { background: var(--sage-pale); }
.section-dark     { background: var(--charcoal); color: white; }
.section-white    { background: white; }

/* ---------- typography ---------- */
.eyebrow {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
  margin: 0 0 14px;
}
.section-dark .eyebrow { color: var(--sage-light); }

.h-hero {
  font-size: var(--text-hero);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.h-hero em { font-style: italic; color: var(--sage-light); }

.h2 {
  font-size: var(--text-h2);
  font-weight: 300;
  line-height: 1.15;
}
.h2 em { font-style: italic; color: var(--sage); }
.section-dark .h2 em { color: var(--sage-light); }

.h3 { font-size: var(--text-h3); font-weight: 300; }
.h3 em { font-style: italic; color: var(--sage); }

.lead {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255,255,255,0.72);
  max-width: 540px;
}
.body-mid { color: var(--mid); line-height: 1.7; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--sage);
  color: white;
  border-color: var(--sage);
}
.btn-primary:hover { background: var(--sage-dark); border-color: var(--sage-dark); color: white; }
.btn-ghost {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.4);
}
.btn-ghost:hover { border-color: white; background: rgba(255,255,255,0.08); color: white; }
.btn-arrow::after { content: "→"; margin-left: 2px; transition: transform var(--transition-fast); }
.btn:hover .btn-arrow::after, .btn-arrow:hover::after { transform: translateX(3px); }

/* ---------- nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background var(--transition), padding var(--transition), border-color var(--transition);
  border-bottom: 1px solid transparent;
}
.nav.solid {
  background: var(--charcoal-90);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 12px 0;
  border-bottom-color: rgba(255,255,255,0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 28px;
  letter-spacing: -0.01em;
  color: var(--charcoal);
  line-height: 1;
  text-decoration: none;
}
.logo .logo-allie { font-style: normal; }
.logo .logo-pure  { font-style: italic; color: var(--sage); }
.nav .logo, .logo.light { color: white; }
.nav .logo .logo-pure, .logo.light .logo-pure { color: var(--sage-light); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.85);
  padding: 6px 0;
  position: relative;
}
.nav-links a:hover { color: white; }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 1px; background: var(--sage-light);
}
.nav-links .nav-cta {
  background: var(--sage);
  color: white;
  padding: 10px 20px;
  border-radius: var(--radius);
  letter-spacing: 0.08em;
  transition: background var(--transition-fast);
}
.nav-links .nav-cta:hover { background: var(--sage-dark); color: white; }
.nav-links .nav-cta::after { display: none; }

.nav-burger {
  display: none;
  background: transparent;
  border: 0;
  width: 40px; height: 40px;
  cursor: pointer;
  padding: 0;
  color: white;
}
.nav-burger span {
  display: block;
  height: 1.5px;
  background: currentColor;
  margin: 6px auto;
  width: 22px;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}
.nav.open .nav-burger span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav.open .nav-burger span:nth-child(2) { opacity: 0; }
.nav.open .nav-burger span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

@media (max-width: 820px) {
  .nav-burger { display: block; }
  .nav-links {
    position: fixed;
    inset: 0;
    background: var(--charcoal);
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    padding: 80px 24px 40px;
    transform: translateX(100%);
    transition: transform var(--transition);
    z-index: 99;
  }
  .nav.open .nav-links { transform: translateX(0); }
  .nav-links a { font-size: 22px; font-family: var(--font-display); letter-spacing: 0.04em; }
  .nav-links .nav-cta { font-family: var(--font-body); font-size: 14px; }
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--charcoal);
  color: white;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 80px;
}
.hero-short { min-height: 60vh; padding: 160px 0 80px; }
.hero-glow {
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle at center, rgba(143,184,156,0.18) 0%, rgba(143,184,156,0) 60%);
  pointer-events: none;
}
.hero-leaf {
  position: absolute;
  bottom: -40px; right: 24px;
  width: 280px;
  opacity: 0.07;
  pointer-events: none;
}
.hero-content { position: relative; max-width: 720px; }
.hero-subtext {
  margin-top: 20px;
  font-size: clamp(16px, 2vw, 19px);
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255,255,255,0.72);
  max-width: 560px;
}
.hero-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 36px;
}
.hero-claims {
  margin-top: 48px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-light);
  font-weight: 500;
}

/* hero stagger */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow  { animation: fadeInUp 0.6s ease both; }
.hero-headline { animation: fadeInUp 0.6s 0.15s ease both; }
.hero-subtext  { animation: fadeInUp 0.6s 0.30s ease both; }
.hero-cta-row  { animation: fadeInUp 0.6s 0.45s ease both; }
.hero-claims   { animation: fadeInUp 0.6s 0.60s ease both; }

/* ---------- product cards ---------- */
.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px)  { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .product-grid { grid-template-columns: repeat(4, 1fr); } }

.product-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.card-top-bar { height: 6px; background: var(--sage); }
.card-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--cream);
}
.card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* SVG mocks fill the square card-visual naturally — no object-position offsets needed */
.card-visual img[src$=".svg"] { object-fit: contain; padding: 8px; }
.card-body { padding: 22px 24px 24px; display: flex; flex-direction: column; flex: 1; }
.card-collection {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 8px;
}
.card-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 300;
  font-style: italic;
  color: var(--charcoal);
  margin-bottom: 4px;
  line-height: 1.1;
}
.card-variant { font-size: 12px; color: var(--mid); margin-bottom: 12px; }
.card-description { font-size: 13px; color: var(--mid); line-height: 1.6; margin-bottom: 16px; }
.card-claims { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
.card-footer {
  border-top: 1px solid var(--rule);
  padding-top: 14px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: auto;
}
.card-size { font-size: 12px; color: var(--mid); }
.card-price { font-size: 16px; font-weight: 500; color: var(--sage); }
.card-tagline {
  font-family: var(--font-display);
  font-size: 12px;
  font-style: italic;
  color: #BBBBBB;
  margin-top: 12px;
  text-align: center;
}
.card-badge {
  position: absolute;
  top: 22px; right: 16px;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--charcoal);
  color: var(--sage-light);
  padding: 5px 10px;
  border-radius: var(--radius-pill);
  z-index: 1;
}

/* ---------- claim badges ---------- */
.claim-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: white;
  border: 1px solid var(--sage-lighter);
  border-radius: var(--radius-pill);
  padding: 5px 14px;
  font-size: 11px;
  font-weight: 500;
  color: var(--sage);
  letter-spacing: 0.04em;
  line-height: 1.4;
}
.claim-badge::before { content: "✓"; color: var(--sage); font-weight: 500; }

.claim-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

/* ---------- brand promise / 3-col ---------- */
.three-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 768px) { .three-col { grid-template-columns: repeat(3, 1fr); gap: 56px; } }
.promise-item .leaf { width: 28px; margin-bottom: 18px; opacity: 0.85; }
.promise-item h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
  font-weight: 300;
  color: var(--charcoal);
  margin-bottom: 12px;
}
.promise-item p { color: var(--mid); line-height: 1.7; font-size: 14.5px; }

/* ---------- quote pull ---------- */
.quote-block {
  position: relative;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.quote-mark {
  position: absolute;
  top: -40px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 200px;
  line-height: 1;
  color: var(--sage);
  opacity: 0.12;
  pointer-events: none;
  user-select: none;
}
.quote-text {
  position: relative;
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(22px, 3vw, 28px);
  line-height: 1.5;
  color: rgba(255,255,255,0.92);
}
.quote-attr {
  margin-top: 24px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage-light);
}
.quote-link {
  display: inline-block;
  margin-top: 28px;
  font-size: 13px;
  color: var(--sage-light);
  letter-spacing: 0.04em;
}
.quote-link:hover { color: white; }

/* ---------- two-col CTA (retailer) ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 900px) { .two-col { grid-template-columns: 1.1fr 1fr; gap: 64px; } }
.feature-box {
  background: var(--sage-pale);
  border: 1px solid var(--sage-lighter);
  padding: 32px;
  border-radius: var(--radius);
}
.feature-box h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
  color: var(--charcoal);
  margin-bottom: 18px;
}
.feature-list { list-style: none; margin: 0; padding: 0; }
.feature-list li {
  font-size: 14px;
  color: var(--charcoal);
  padding: 9px 0 9px 24px;
  position: relative;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 8px;
  color: var(--sage);
  font-weight: 500;
}

/* ---------- contact CTA banner ---------- */
.banner {
  text-align: center;
  padding: clamp(64px, 8vw, 100px) 0;
}
.banner h2 { margin-bottom: 14px; }
.banner p { color: rgba(255,255,255,0.7); max-width: 540px; margin: 0 auto 32px; }

/* ---------- footer ---------- */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.85);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; } }
.footer h4 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage-light);
  margin-bottom: 16px;
}
.footer p, .footer li { font-size: 13.5px; color: rgba(255,255,255,0.6); line-height: 1.8; }
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer ul a { color: rgba(255,255,255,0.78); }
.footer ul a:hover { color: white; }
.footer .tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  color: var(--sage-light);
  margin-top: 8px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
}

/* ---------- products page ---------- */
.bundle-callout {
  background: var(--charcoal);
  color: white;
  border-radius: var(--radius);
  padding: 36px;
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: center;
}
@media (min-width: 768px) { .bundle-callout { grid-template-columns: 1.5fr 1fr; } }
.bundle-callout h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-style: italic;
  font-weight: 300;
}
.bundle-callout .bundle-sub {
  font-size: 13.5px;
  color: rgba(255,255,255,0.65);
  margin-top: 8px;
}
.bundle-price {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 36px;
  color: var(--sage-light);
}

/* ---------- story page extras ---------- */
.long-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(19px, 2.4vw, 23px);
  line-height: 1.6;
  color: var(--charcoal);
  max-width: 740px;
  margin: 0 auto;
  position: relative;
}
.long-quote p { margin: 0 0 22px; }
.long-quote .attr {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 500;
  display: block;
  margin-top: 24px;
}
.long-quote-mark {
  font-family: var(--font-display);
  font-size: 220px;
  line-height: 1;
  color: var(--sage);
  opacity: 0.12;
  position: absolute;
  top: -60px; left: -20px;
  pointer-events: none;
  user-select: none;
}

.stat-box {
  background: var(--charcoal);
  color: white;
  padding: 36px;
  border-radius: var(--radius);
}
.stat-box .stat-row { padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.stat-box .stat-row:last-child { border-bottom: none; }
.stat-box .stat-num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 36px;
  color: var(--sage-light);
  line-height: 1.1;
}
.stat-box .stat-lbl {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  margin-top: 4px;
}
.stat-box .stat-foot {
  margin-top: 22px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 17px;
  color: white;
}

.mission-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(24px, 3.2vw, 36px);
  line-height: 1.4;
  color: white;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}
.mission-attr {
  margin-top: 22px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-light);
  font-weight: 500;
  text-align: center;
}

/* ---------- retailers page ---------- */
.stat-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.stat-card {
  background: var(--sage-pale);
  border: 1px solid var(--sage-lighter);
  border-radius: var(--radius);
  padding: 18px 22px;
}
.stat-card .num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 28px;
  color: var(--sage-dark);
  line-height: 1.1;
}
.stat-card .lbl {
  font-size: 13px;
  color: var(--mid);
  margin-top: 4px;
}

.line-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 24px;
  font-size: 14px;
}
.line-table th, .line-table td {
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid var(--rule);
}
.line-table th {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
  background: var(--cream);
}
.line-table tr:last-child td { border-bottom: none; }
.line-table .price { color: var(--sage); font-weight: 500; }

/* ---------- contact page ---------- */
.contact-split {
  display: grid;
  grid-template-columns: 1fr;
  min-height: calc(100vh - 80px);
}
@media (min-width: 900px) { .contact-split { grid-template-columns: 1fr 1.1fr; } }
.contact-side {
  background: var(--charcoal);
  color: white;
  padding: clamp(80px, 10vw, 120px) clamp(24px, 5vw, 64px);
  display: flex;
  align-items: center;
}
.contact-side .contact-info {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 14.5px;
  color: rgba(255,255,255,0.85);
}
.contact-side .contact-info span { display: inline-flex; align-items: center; gap: 12px; }
.contact-side .contact-info svg { color: var(--sage-light); flex: 0 0 auto; }

.contact-form-side {
  background: var(--cream);
  padding: clamp(80px, 10vw, 120px) clamp(24px, 5vw, 64px);
  display: flex;
  align-items: center;
}
.contact-form { width: 100%; max-width: 520px; }
.form-row { margin-bottom: 18px; }
.form-row label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 6px;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--charcoal);
  background: white;
  border: 1px solid var(--sage-lighter);
  border-radius: var(--radius);
  padding: 12px 14px;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(122,158,135,0.15);
}
.form-row textarea { resize: vertical; min-height: 130px; }
.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px; height: 1px; overflow: hidden;
}
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--mid);
  margin-bottom: 22px;
  line-height: 1.5;
}
.form-check input { margin-top: 3px; }
.form-submit {
  width: 100%;
  justify-content: center;
  padding: 16px 24px;
  font-size: 14px;
  letter-spacing: 0.08em;
}
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success.show { display: block; }
.form-success .check {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--sage);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 18px;
}
.form-success h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 26px;
  color: var(--charcoal);
  margin-bottom: 10px;
}
.form-success p { color: var(--mid); font-size: 14px; }
.form-error {
  display: none;
  background: #fde8e8;
  border: 1px solid #f5c1c1;
  color: #8a2a2a;
  padding: 12px 14px;
  border-radius: var(--radius);
  font-size: 13.5px;
  margin-bottom: 16px;
}
.form-error.show { display: block; }

/* ---------- small helpers ---------- */
.rule-sage { height: 1px; background: var(--sage-lighter); border: 0; max-width: 80px; margin: 0 0 24px; }
.center { text-align: center; }
.text-mid { color: var(--mid); }
.mt-md { margin-top: 24px; }
.mt-lg { margin-top: 40px; }

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
