/* Fonts are loaded via <link> in each page head (with preconnect) rather than
   @import here, which would serialize HTML -> CSS -> font CSS -> font files. */
:root {
  --cream: #FFF9EE;
  --cream-deep: #F8ECCD;
  --cream-warm: #FBF1DE;
  --burgundy: #7A2E3A;
  --burgundy-deep: #5C1F2A;
  --burgundy-soft: #B85265;
  --burgundy-darker: #3D101A;
  --blush: #F2D4D4;
  --blush-soft: #FCE4E4;
  --sage: #7BA888;
  --sage-deep: #3F6B54;
  --sage-light: #A8C99A;
  --butter: #F4D89E;
  --gold: #C9A763;
  --gold-deep: #8C6F22;
  --lavender: #B5A8D4;
  --ink: #2D3829;
  --ink-muted: #6B7568;
  --border-soft: rgba(45, 56, 41, 0.10);
  --border-burgundy: rgba(122, 46, 58, 0.18);
  --shadow-soft: 0 8px 24px rgba(122, 46, 58, 0.10);
  --shadow-card: 0 4px 16px rgba(45, 56, 41, 0.06);
  --shadow-deep: 0 20px 48px rgba(92, 31, 42, 0.18);
  --shadow-bouquet: 0 30px 60px rgba(92, 31, 42, 0.22), 0 12px 24px rgba(122, 46, 58, 0.14);
  --radius-card: 20px;
  --radius-button: 999px;
  --radius-scrub: 14px;
  --radius-input: 12px;
  --container: 1200px;
  --container-narrow: 880px;
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Nunito Sans', -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background-color: var(--cream);
  background-image:
    radial-gradient(ellipse 120% 30% at 50% 0%, rgba(255,249,238,1) 0%, rgba(255,249,238,0) 70%),
    radial-gradient(ellipse 120% 30% at 50% 100%, rgba(255,249,238,1) 0%, rgba(255,249,238,0) 70%),
    repeating-linear-gradient(0deg, rgba(122,46,58,0.05) 0 1px, transparent 1px 24px),
    repeating-linear-gradient(90deg, rgba(122,46,58,0.05) 0 1px, transparent 1px 24px),
    repeating-linear-gradient(0deg, rgba(122,46,58,0.025) 0 12px, transparent 12px 24px),
    repeating-linear-gradient(90deg, rgba(122,46,58,0.025) 0 12px, transparent 12px 24px);
  background-attachment: fixed, fixed, scroll, scroll, scroll, scroll;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { max-width: 100%; height: auto; display: block; }

a {
  color: var(--burgundy);
  text-decoration: underline;
  text-decoration-color: var(--burgundy-soft);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--burgundy-deep);
  text-decoration-color: var(--burgundy);
}

a:focus-visible {
  outline: 3px solid var(--burgundy);
  outline-offset: 3px;
  border-radius: 4px;
}

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

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); margin-bottom: 1rem; font-weight: 600; }
h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); margin-bottom: 0.5rem; font-weight: 700; }

h1 em, h2 em {
  font-style: italic;
  color: var(--burgundy);
  font-weight: 500;
}

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

ul, ol { margin-bottom: 1rem; padding-left: 1.5rem; }
li { margin-bottom: 0.5rem; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (min-width: 768px) {
  .container { padding: 0 2rem; }
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
}

.eyebrow::before, .eyebrow::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--burgundy), transparent);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  position: relative;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 700;
  padding: 0.875rem 1.875rem;
  border-radius: var(--radius-button);
  border: 2px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease;
  white-space: nowrap;
  overflow: hidden;
  isolation: isolate;
}

.btn:hover { transform: translateY(-2px); text-decoration: none; }
.btn:focus-visible { outline: 3px solid var(--sage-deep); outline-offset: 3px; }

.btn-primary {
  background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-deep) 100%);
  color: white;
  box-shadow: 0 8px 20px rgba(92, 31, 42, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--burgundy-deep) 0%, var(--burgundy-darker) 100%);
  color: white;
  box-shadow: 0 14px 28px rgba(92, 31, 42, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-ghost {
  background-color: transparent;
  color: var(--burgundy);
  padding: 0.5rem 1rem;
}

.btn-ghost:hover { color: var(--burgundy-deep); text-decoration: underline; }

.btn-scrub {
  background-color: var(--cream);
  color: var(--ink);
  border: 2px solid var(--ink);
  border-radius: var(--radius-scrub);
  padding: 0.875rem 1.875rem;
  position: relative;
  z-index: 0;
}

.btn-scrub::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 12% 28%, rgba(45, 56, 41, 0.55) 0 1.5px, transparent 2px),
    radial-gradient(circle at 38% 62%, rgba(45, 56, 41, 0.45) 0 1.2px, transparent 2px),
    radial-gradient(circle at 65% 32%, rgba(45, 56, 41, 0.50) 0 1.6px, transparent 2px),
    radial-gradient(circle at 82% 70%, rgba(45, 56, 41, 0.40) 0 1.3px, transparent 2px),
    radial-gradient(circle at 22% 80%, rgba(45, 56, 41, 0.45) 0 1.4px, transparent 2px),
    radial-gradient(circle at 55% 18%, rgba(45, 56, 41, 0.35) 0 1.0px, transparent 2px),
    radial-gradient(circle at 90% 50%, rgba(45, 56, 41, 0.40) 0 1.2px, transparent 2px),
    radial-gradient(circle at 8% 55%, rgba(45, 56, 41, 0.40) 0 1.2px, transparent 2px);
  background-size: 14px 14px, 18px 18px, 16px 16px, 20px 20px, 12px 12px, 22px 22px, 16px 16px, 14px 14px;
  background-position: 0 0, 6px 4px, 2px 8px, 9px 2px, 4px 6px, 11px 9px, 7px 3px, 3px 11px;
  opacity: 0.95;
  transform: translateY(0);
  transition: opacity 0.55s ease, transform 0.6s ease;
  z-index: -2;
  pointer-events: none;
}

.btn-scrub::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, transparent 0%, transparent 35%, rgba(244, 216, 158, 0.7) 50%, transparent 65%, transparent 100%);
  background-size: 220% 100%;
  background-position: 100% 0;
  opacity: 0;
  transition: background-position 0.7s ease, opacity 0.3s ease;
  z-index: -1;
  pointer-events: none;
}

.btn-scrub:hover {
  background-color: #FFFEF7;
  color: var(--burgundy-deep);
  border-color: var(--burgundy);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(92, 31, 42, 0.15);
}

.btn-scrub:hover::before { opacity: 0; transform: translateY(8px); }
.btn-scrub:hover::after { opacity: 1; background-position: 0 0; }

.bubble-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  overflow: hidden;
}

.bubble {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.4) 40%, rgba(184,82,101,0.15) 70%, rgba(122,46,58,0.05) 100%);
  border: 1px solid rgba(184, 82, 101, 0.35);
  box-shadow: inset -2px -3px 6px rgba(122,46,58,0.08), 0 1px 4px rgba(122,46,58,0.10);
  animation: bubble-rise 1.6s cubic-bezier(0.22, 0.6, 0.36, 1) forwards;
  will-change: transform, opacity;
}

@keyframes bubble-rise {
  0% { transform: translate(0, 0) scale(0.4); opacity: 0; }
  15% { opacity: 1; transform: translate(var(--bx, 0), -10px) scale(0.85); }
  60% { opacity: 1; transform: translate(calc(var(--bx, 0) * 1.4), calc(var(--by, -120px) * 0.7)) scale(1); }
  100% { opacity: 0; transform: translate(calc(var(--bx, 0) * 1.6), var(--by, -160px)) scale(1.05); }
}

.site-header {
  background-color: rgba(255, 249, 238, 0.92);
  border-bottom: 1px solid var(--border-soft);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.announce-bar {
  background-color: var(--burgundy);
  color: var(--cream);
  text-align: center;
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--sage-deep);
  text-decoration: none;
  letter-spacing: -0.015em;
}

.nav-logo:hover { color: var(--burgundy); text-decoration: none; }
.nav-logo svg, .nav-logo img { width: 40px; height: 40px; }

.nav-toggle {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--sage-deep);
}

.nav-toggle:focus-visible {
  outline: 3px solid var(--burgundy);
  outline-offset: 2px;
  border-radius: 4px;
}

.nav-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: var(--cream);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  padding: 1rem 1.25rem;
  flex-direction: column;
  gap: 0.5rem;
  list-style: none;
}

.nav-menu.is-open { display: flex; }
.nav-menu li { margin: 0; list-style: none; }

.nav-menu a {
  display: block;
  padding: 0.625rem 0.5rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  border-radius: 8px;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.nav-menu a:hover { background-color: var(--cream-deep); color: var(--burgundy); }
.nav-menu a.is-active { color: var(--burgundy); }
.nav-menu .btn { margin-top: 0.5rem; }

@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .nav-menu {
    display: flex;
    position: static;
    flex-direction: row;
    align-items: center;
    background: transparent;
    border: none;
    padding: 0;
    gap: 1.75rem;
  }
  .nav-menu .btn { margin-top: 0; margin-left: 0.5rem; padding: 0.625rem 1.375rem; }
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  align-items: center;
}

.section { padding: 5rem 0; position: relative; }

@media (min-width: 768px) {
  .section { padding: 6rem 0; }
}

.section-cream { background-color: var(--cream-deep); }

.section-header {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 4rem;
}

.section-header p { font-size: 1.1875rem; color: var(--ink-muted); line-height: 1.6; }

.section-divider {
  position: relative;
  text-align: center;
  margin: 3rem auto 1rem;
  padding: 0 1rem;
}

.section-divider img {
  display: inline-block;
  max-width: 480px;
  width: 100%;
  height: auto;
  opacity: 0.85;
}

.grid-3 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 600px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

.grid-2 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .grid-2 { grid-template-columns: repeat(2, 1fr); gap: 2rem; } }

.card {
  background-color: white;
  border-radius: var(--radius-card);
  padding: 2.25rem;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(122, 46, 58, 0.12);
}

.card h3 { margin-bottom: 0.875rem; color: var(--sage-deep); }
.card > p { color: var(--ink-muted); }

.card-meta {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px dashed var(--border-soft);
  font-size: 0.9375rem;
  color: var(--ink-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.card-meta strong {
  color: var(--burgundy);
  font-family: var(--font-display);
  font-size: 1.1875rem;
  font-weight: 600;
}

.cta-band {
  background-color: var(--burgundy);
  color: white;
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  background-image:
    radial-gradient(circle at 15% 30%, rgba(244, 216, 158, 0.18) 0 4px, transparent 5px),
    radial-gradient(circle at 85% 70%, rgba(244, 216, 158, 0.18) 0 4px, transparent 5px),
    radial-gradient(circle at 50% 50%, rgba(184, 82, 101, 0.30) 0%, transparent 60%);
}

.cta-band::before, .cta-band::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cg fill='%23F4D89E' opacity='0.15'%3E%3Ccircle cx='20' cy='30' r='2'/%3E%3Ccircle cx='75' cy='25' r='2.5'/%3E%3Ccircle cx='40' cy='60' r='1.5'/%3E%3Ccircle cx='80' cy='70' r='2'/%3E%3Ccircle cx='15' cy='75' r='2.5'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
}

.cta-band::before { top: 10%; left: 5%; }
.cta-band::after { bottom: 10%; right: 5%; transform: rotate(45deg); }

.cta-band .eyebrow { color: var(--butter); }
.cta-band .eyebrow::before, .cta-band .eyebrow::after { background: linear-gradient(90deg, transparent, var(--butter), transparent); }

.cta-band h2 { color: white; margin-bottom: 1.25rem; font-size: clamp(2rem, 4vw, 3rem); }
.cta-band h2 em { color: var(--butter); }

.cta-band p {
  font-size: 1.1875rem;
  margin-bottom: 2.25rem;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.95;
  position: relative;
  z-index: 1;
}

.cta-band .btn-primary {
  background: white;
  color: var(--burgundy-deep);
  position: relative;
  z-index: 1;
}

.cta-band .btn-primary:hover {
  background-color: var(--cream-deep);
  color: var(--burgundy-deep);
}

.site-footer {
  background-color: var(--burgundy-darker);
  color: var(--cream);
  padding: 5rem 0 2rem;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background:
    repeating-linear-gradient(90deg, var(--burgundy) 0 14px, var(--cream) 14px 16px, var(--burgundy) 16px 30px, var(--gold) 30px 32px);
}

.site-footer h4 {
  color: white;
  font-family: var(--font-display);
  font-size: 1.125rem;
  margin-bottom: 1.125rem;
  font-weight: 600;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-brand p { opacity: 0.85; font-size: 0.9375rem; max-width: 320px; }
.footer-grid ul { list-style: none; padding: 0; }
.footer-grid li { margin-bottom: 0.625rem; }

.footer-grid a {
  color: var(--cream);
  opacity: 0.85;
  text-decoration: none;
  font-size: 0.9375rem;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.footer-grid a:hover { color: var(--butter); opacity: 1; text-decoration: underline; }

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 249, 238, 0.15);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.875rem;
  opacity: 0.78;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background-color: white;
  padding: 2rem;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-soft);
}

@media (min-width: 600px) { .form { padding: 2.5rem; } }

.form-row { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 600px) { .form-row { grid-template-columns: 1fr 1fr; } }

.field { display: flex; flex-direction: column; gap: 0.375rem; }
.field label { font-weight: 700; font-size: 0.9375rem; color: var(--ink); }

.field input, .field select, .field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.75rem 0.875rem;
  border: 2px solid var(--border-soft);
  border-radius: var(--radius-input);
  background-color: var(--cream);
  color: var(--ink);
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--burgundy);
  background-color: white;
}

.field textarea { min-height: 140px; resize: vertical; }
.field-hidden { position: absolute; left: -9999px; }

.faq {
  margin-bottom: 1rem;
  background-color: white;
  border-radius: var(--radius-card);
  border: 1px solid var(--border-soft);
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}

.faq:hover { box-shadow: var(--shadow-card); }

.faq summary {
  padding: 1.25rem 1.5rem;
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 1.0625rem;
  color: var(--sage-deep);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--burgundy);
  transition: transform 0.2s ease;
}

.faq[open] summary::after { transform: rotate(45deg); }
.faq-body { padding: 0 1.5rem 1.5rem; color: var(--ink-muted); }

.tag {
  display: inline-block;
  padding: 0.3rem 0.875rem;
  background-color: var(--burgundy-soft);
  color: white;
  border-radius: var(--radius-button);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tag-recipe { background-color: var(--burgundy); }

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }

.blog-card {
  background-color: white;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-soft);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(122, 46, 58, 0.14);
  text-decoration: none;
  color: var(--ink);
}

.blog-card-image {
  aspect-ratio: 16 / 10;
  background:
    radial-gradient(circle at 25% 25%, rgba(244, 216, 158, 0.55) 0%, transparent 55%),
    radial-gradient(circle at 75% 75%, rgba(242, 212, 212, 0.60) 0%, transparent 55%),
    var(--cream-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.blog-card-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(122, 46, 58, 0.12) 0 1.5px, transparent 2px),
    radial-gradient(circle at 80% 30%, rgba(122, 46, 58, 0.10) 0 1.2px, transparent 2px);
  background-size: 30px 30px;
  pointer-events: none;
}

.blog-card-image svg { width: 60%; height: auto; position: relative; z-index: 1; }

.blog-card-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card h3 { margin: 0.875rem 0 0.625rem; color: var(--sage-deep); font-size: 1.25rem; }
.blog-card p { color: var(--ink-muted); font-size: 0.9375rem; flex: 1; line-height: 1.6; }
.blog-card-meta { margin-top: 1.125rem; font-size: 0.8125rem; color: var(--ink-muted); }

.recipe-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 1.5rem 2rem;
  background-color: var(--cream-deep);
  border-radius: var(--radius-card);
  margin: 2rem 0;
}

.recipe-meta-item { display: flex; flex-direction: column; gap: 0.25rem; }

.recipe-meta-label {
  font-size: 0.8125rem;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.recipe-meta-value {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--burgundy);
}

.safety-callout {
  background-color: #FAEDED;
  border-left: 4px solid var(--burgundy);
  padding: 1.25rem 1.5rem;
  border-radius: 0 var(--radius-card) var(--radius-card) 0;
  margin: 2rem 0;
}

.safety-callout h4 {
  color: var(--burgundy-deep);
  font-family: var(--font-display);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.safety-callout ul { margin-bottom: 0; }

.prose { max-width: 720px; margin: 0 auto; }
.prose h2 { margin-top: 3rem; }
.prose h3 { margin-top: 2rem; }

.prose-lead {
  font-size: 1.25rem;
  color: var(--ink-muted);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.prose-lead::first-letter {
  font-size: 4rem;
  font-weight: 600;
  font-style: normal;
  color: var(--burgundy);
  float: left;
  line-height: 0.9;
  padding: 0.4rem 0.5rem 0 0;
  font-family: var(--font-display);
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  max-width: 720px;
  margin: 0 auto;
}

@media (min-width: 600px) { .area-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .area-grid { grid-template-columns: repeat(4, 1fr); } }

.area-tile {
  background-color: white;
  padding: 1.125rem 1.25rem;
  border-radius: 14px;
  text-align: center;
  border: 1px solid var(--border-soft);
  font-weight: 700;
  color: var(--burgundy);
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
  position: relative;
}

.area-tile::before {
  content: "✿";
  position: absolute;
  top: 0.4rem;
  right: 0.5rem;
  font-size: 0.625rem;
  color: var(--burgundy-soft);
  opacity: 0.5;
}

.area-tile:hover {
  background-color: var(--blush);
  transform: translateY(-2px);
  text-decoration: none;
  color: var(--burgundy-deep);
  border-color: var(--burgundy-soft);
}

.sparkle {
  display: inline-block;
  color: var(--butter);
  animation: twinkle 2.4s ease-in-out infinite;
}

.sparkle:nth-child(2) { animation-delay: 0.4s; }
.sparkle:nth-child(3) { animation-delay: 0.8s; }

@keyframes twinkle {
  0%, 100% { opacity: 0.45; transform: scale(0.85); }
  50% { opacity: 1; transform: scale(1.1); }
}

.floating-petal {
  position: absolute;
  pointer-events: none;
  opacity: 0.4;
  animation: drift 14s ease-in-out infinite;
}

.floating-petal:nth-child(2) { animation-delay: 3s; animation-duration: 18s; }
.floating-petal:nth-child(3) { animation-delay: 6s; animation-duration: 16s; }

@keyframes drift {
  0%, 100% { transform: translate(0, 0) rotate(0); }
  25% { transform: translate(8px, -12px) rotate(8deg); }
  50% { transform: translate(-4px, -20px) rotate(-5deg); }
  75% { transform: translate(-10px, -8px) rotate(3deg); }
}

@media (prefers-reduced-motion: reduce) {
  .sparkle { animation: none; }
  .floating-petal { animation: none; }
  .bubble { animation: none; opacity: 0; display: none; }
  .btn-scrub::before, .btn-scrub::after { transition: opacity 0.01ms ease; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background-color: var(--sage-deep);
  color: white;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-button);
  text-decoration: none;
  font-weight: 700;
  z-index: 100;
}

.skip-link:focus { top: 1rem; }

.mt-4 { margin-top: 4rem; }
