:root {
  --garden: #3F5D4A;
  --sage: #A8B9A0;
  --lavender: #B9A6C9;
  --chamomile: #F4E8B5;
  --ivory: #FFFDF7;
  --rose: #D8B9B1;
  --text: #3C403C;
  --white: #FFFFFF;
  --shadow: 0 14px 35px rgba(63, 93, 74, 0.12);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --shell: min(1120px, calc(100% - 32px));
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 78px;
}

body {
  margin: 0;
  font-family: "Nunito", system-ui, sans-serif;
  color: var(--text);
  background: var(--ivory);
  line-height: 1.65;
}

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

a { color: inherit; }

.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;
}

.skip-link {
  position: absolute;
  left: 10px;
  top: -60px;
  z-index: 999;
  background: var(--garden);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 10px;
  text-decoration: none;
}

.skip-link:focus { top: 10px; }

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.narrow { max-width: 790px; }

.centered { text-align: center; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 253, 247, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(63, 93, 74, 0.10);
}

.nav-wrap {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: "Lora", serif;
  font-size: 1.02rem;
  font-weight: 700;
  text-decoration: none;
}

.brand-mark { font-size: 1.25rem; }

.menu-toggle {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: rgba(168, 185, 160, 0.26);
  color: var(--garden);
  font-size: 1.35rem;
}

.site-nav {
  display: none;
  position: absolute;
  left: 16px;
  right: 16px;
  top: 76px;
  padding: 12px;
  background: var(--ivory);
  border: 1px solid rgba(63, 93, 74, 0.12);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.site-nav.open {
  display: grid;
  gap: 4px;
}

.site-nav a {
  text-decoration: none;
  padding: 11px 12px;
  border-radius: 10px;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(168, 185, 160, 0.25);
}

.hero {
  min-height: 78svh;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--garden);
}

.hero-art {
  position: absolute;
  inset: 0;
}

.hero-placeholder {
  height: 100%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 15% 35%, rgba(244, 232, 181, .20), transparent 22%),
    radial-gradient(circle at 84% 28%, rgba(185, 166, 201, .18), transparent 24%),
    linear-gradient(160deg, #6f8a73 0%, #3f5d4a 50%, #314939 100%);
  color: rgba(255,255,255,.75);
  font-size: .92rem;
  text-align: center;
  padding: 24px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(24, 45, 30, .18), rgba(24, 45, 30, .52));
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 110px 0 120px;
  max-width: 830px;
}

.eyebrow,
.kicker {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: .78rem;
  font-weight: 800;
}

.hero h1,
h1, h2, h3 {
  font-family: "Lora", serif;
  line-height: 1.15;
  margin-top: 0;
}

.hero h1 {
  font-size: clamp(2.5rem, 8vw, 5.4rem);
  margin-bottom: 14px;
}

.hero-tagline {
  font-size: clamp(1.08rem, 3vw, 1.45rem);
  max-width: 680px;
  margin: 0 auto 28px;
}

.garden-divider {
  position: absolute;
  z-index: 3;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  opacity: .9;
  letter-spacing: .15em;
}

.section {
  padding: 72px 0;
}

.section-ivory { background: var(--ivory); }
.section-sage { background: linear-gradient(180deg, #eff3eb 0%, #e5ede2 100%); }
.section-lavender { background: linear-gradient(180deg, #f2edf6 0%, #ebe4f1 100%); }
.section-cream { background: linear-gradient(180deg, #fff9df 0%, #faf1ca 100%); }

.section h2 {
  color: var(--garden);
  font-size: clamp(2rem, 5vw, 3.35rem);
  margin-bottom: 18px;
}

.section h3 {
  color: var(--garden);
  font-size: 1.4rem;
}

.lead {
  font-size: 1.08rem;
  margin: 0;
}

.lead.compact {
  max-width: 720px;
}

.section-heading {
  max-width: 840px;
  margin: 0 auto 36px;
}

.kicker {
  color: var(--garden);
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  border: 2px solid transparent;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--garden);
  color: var(--white);
  box-shadow: 0 9px 20px rgba(63, 93, 74, 0.18);
}

.hero .button-primary {
  background: var(--chamomile);
  color: #334238;
}

.button-secondary {
  background: var(--lavender);
  color: #332c3b;
}

.button-outline {
  border-color: var(--garden);
  color: var(--garden);
  background: transparent;
}

.button-light {
  background: var(--ivory);
  color: var(--garden);
}

.top-gap { margin-top: 28px; }

.book-grid {
  display: grid;
  gap: 24px;
}

.book-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.75);
  box-shadow: var(--shadow);
  border: 1px solid rgba(63, 93, 74, 0.08);
}

.book-cover-placeholder {
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  text-align: center;
  background:
    radial-gradient(circle at 50% 30%, rgba(255,255,255,.55), transparent 28%),
    linear-gradient(145deg, #d8c7e3, #a88dbc);
  color: #41344c;
  font-weight: 800;
  padding: 24px;
}

.book-cover-placeholder.chamomile {
  background:
    radial-gradient(circle at 50% 30%, rgba(255,255,255,.65), transparent 28%),
    linear-gradient(145deg, #f7efc4, #e3cf77);
  color: #5f5528;
}

.book-card-body {
  padding: 24px;
}

.book-card-body p {
  margin-bottom: 22px;
}

.two-col {
  display: grid;
  gap: 34px;
  align-items: center;
}

.friends-scene-placeholder,
.shop-art-placeholder,
.author-photo-placeholder {
  min-height: 310px;
  border-radius: var(--radius-lg);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 24px;
  color: rgba(60,64,60,.78);
  border: 1px dashed rgba(63, 93, 74, .28);
}

.friends-scene-placeholder {
  background:
    radial-gradient(circle at 20% 30%, #f4e8b5 0 6%, transparent 7%),
    radial-gradient(circle at 70% 70%, #b9a6c9 0 8%, transparent 9%),
    linear-gradient(145deg, #edf3e9, #dbe8d6);
}

.shop-art-placeholder {
  background: linear-gradient(145deg, #fff9e7, #f4e8b5);
}

.author-photo-placeholder {
  background: linear-gradient(145deg, #f8f2ee, #dfc7bf);
}

.feature-grid {
  display: grid;
  gap: 16px;
}

.feature-card {
  border-radius: 22px;
  background: rgba(255,255,255,.70);
  padding: 24px;
  border: 1px solid rgba(63, 93, 74, .08);
  box-shadow: 0 10px 25px rgba(63,93,74,.08);
}

.feature-icon {
  font-size: 1.8rem;
  margin-bottom: 9px;
}

.feature-card h3 {
  margin-bottom: 8px;
}

.feature-card p {
  margin: 0;
}

.contact-strip {
  background: var(--garden);
  color: var(--white);
}

.contact-strip h2 {
  color: var(--white);
}

.contact-strip p {
  margin: 0 auto 24px;
  max-width: 700px;
}

.site-footer {
  background: #30453a;
  color: rgba(255,255,255,.88);
  padding: 52px 0 26px;
}

.footer-grid {
  display: grid;
  gap: 28px;
}

.footer-brand {
  color: var(--white);
  font-size: 1.55rem;
  margin-bottom: 8px;
}

.footer-grid p {
  margin: 0;
  max-width: 520px;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 10px 18px;
}

.footer-nav a,
.legal-links a {
  color: inherit;
  text-decoration: none;
}

.footer-nav a:hover,
.legal-links a:hover {
  text-decoration: underline;
}

.footer-bottom {
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.15);
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: .92rem;
}

.footer-bottom p { margin: 0; }

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.disclaimer-note {
  margin-top: 18px;
  font-size: .82rem;
  color: rgba(255,255,255,.7);
}

.disclaimer-note p {
  margin: 0;
  max-width: 850px;
}

@media (min-width: 700px) {
  :root { --shell: min(1120px, calc(100% - 56px)); }

  .section { padding: 92px 0; }

  .book-grid,
  .two-col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1.2fr .8fr;
  }

  .footer-bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 980px) {
  .menu-toggle { display: none; }

  .site-nav {
    display: flex;
    position: static;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    align-items: center;
    gap: 4px;
  }

  .site-nav a {
    font-size: .9rem;
    padding: 9px 10px;
  }

  .feature-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .hero {
    min-height: 86svh;
  }

  .book-cover-placeholder {
    aspect-ratio: 1.35 / 1;
  }
}


/* V2 banner-focused homepage hero */
.hero-image-section {
  min-height: auto;
  display: block;
  position: relative;
  overflow: hidden;
  background: var(--ivory);
  color: var(--text);
}

.hero-banner-image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 1;
  object-fit: cover;
  object-position: center;
}

.hero-message {
  background: var(--ivory);
  text-align: center;
  padding: 22px 16px 26px;
  border-bottom: 1px solid rgba(63, 93, 74, 0.10);
}

.hero-message .hero-tagline {
  color: var(--garden);
  margin: 0 auto 16px;
  max-width: 760px;
  font-family: "Lora", serif;
  font-size: clamp(1rem, 2.6vw, 1.35rem);
}

.hero-message .button-primary {
  background: var(--garden);
  color: var(--white);
}

@media (max-width: 620px) {
  .hero-banner-image {
    aspect-ratio: 3 / 1;
    object-fit: cover;
  }

  .hero-message {
    padding: 18px 16px 22px;
  }
}


/* V3 real Featured Books covers */
.book-cover-frame {
  background: rgba(255,255,255,.7);
  padding: 18px 18px 0;
}

.book-cover-image {
  display: block;
  width: min(100%, 560px);
  height: auto;
  margin: 0 auto;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(63,93,74,.16);
}

@media (min-width: 700px) {
  .book-cover-frame {
    padding: 22px 22px 0;
  }
}


/* V4 Meet the Herbal Friends real artwork */
.friends-scene-frame {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid rgba(63, 93, 74, 0.08);
  background: #eef3ea;
}

.friends-scene-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 310px;
  object-fit: cover;
  object-position: center;
}


/* V5 Shop the Series real artwork */
.shop-art-frame {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid rgba(63, 93, 74, 0.08);
  background: #fff8df;
}

.shop-art-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  object-position: center;
}


/* V6 Meet the Author real photo */
.author-photo-frame {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid rgba(63, 93, 74, 0.08);
  background: #f7f4ef;
}

.author-photo-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  object-position: center;
}


/* V7 Books page */
.page-hero h1 {
  color: var(--garden);
  font-family: "Lora", serif;
  font-size: clamp(2.6rem, 7vw, 4.8rem);
  line-height: 1.1;
  margin: 0 0 18px;
}

.book-detail-grid {
  display: grid;
  gap: 34px;
  align-items: center;
}

.detail-cover-wrap {
  display: flex;
  justify-content: center;
}

.detail-cover {
  width: min(100%, 520px);
  height: auto;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.book-detail-copy h2 {
  margin-bottom: 12px;
}

.book-tagline {
  font-family: "Lora", serif;
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--garden);
  margin: 0 0 18px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

@media (min-width: 820px) {
  .book-detail-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .book-detail-grid.reverse {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .book-detail-grid.reverse .detail-cover-wrap {
    order: 2;
  }

  .book-detail-grid.reverse .book-detail-copy {
    order: 1;
  }
}


/* V8 Meet the Herbal Friends page */
.friends-card-grid {
  display: grid;
  gap: 24px;
}

.friend-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(63,93,74,.08);
  box-shadow: var(--shadow);
}

.friend-image,
.friend-placeholder {
  width: 100%;
  aspect-ratio: 1 / 1;
}

.friend-image {
  display: block;
  object-fit: cover;
  background: var(--ivory);
}

.friend-placeholder {
  display: grid;
  place-items: center;
  text-align: center;
  padding: 24px;
  font-family: "Lora", serif;
  font-weight: 700;
  color: var(--garden);
}

.friend-placeholder.ginger {
  background: linear-gradient(145deg, #f6ddba, #e8bd79);
}
.friend-placeholder.calendula {
  background: linear-gradient(145deg, #ffe6a8, #f6c86e);
}
.friend-placeholder.tulsi {
  background: linear-gradient(145deg, #d9e6cb, #a8bd8f);
}
.friend-placeholder.dandelion {
  background: linear-gradient(145deg, #fff0a6, #e8d167);
}
.friend-placeholder.rose {
  background: linear-gradient(145deg, #f6d9dd, #ddb7be);
}

.friend-card-body {
  padding: 24px;
}

.friend-card-body h2 {
  margin: 0 0 6px;
  font-size: 1.65rem;
}

.friend-card-body p {
  margin-top: 0;
}

.friend-lesson {
  color: var(--garden);
  font-family: "Lora", serif;
  font-weight: 700;
  font-size: 1.03rem;
  margin-bottom: 14px !important;
}

.coming-soon {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 17px;
  border-radius: 999px;
  background: rgba(168,185,160,.28);
  color: var(--garden);
  font-weight: 800;
}

@media (min-width: 720px) {
  .friends-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1080px) {
  .friends-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}


/* V9 fix: keep herbal friend art neatly inside the boxes */
.friend-card {
  display: flex;
  flex-direction: column;
}

.friend-image {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center;
  background: #f7f6f1;
  padding: 18px;
  box-sizing: border-box;
}

.friend-placeholder {
  box-sizing: border-box;
}


/* V10 complete friend-card image fit */
.friend-image {
  background: #fffdf7;
  object-fit: contain;
  object-position: center;
  padding: 16px;
}


/* V11 Activities & Garden Fun page */
.activity-category-grid {
  display: grid;
  gap: 22px;
}

.activity-category-card {
  background: rgba(255,255,255,.84);
  border: 1px solid rgba(63,93,74,.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 28px;
}

.activity-icon {
  font-size: 2.1rem;
  margin-bottom: 12px;
}

.activity-category-card h2 {
  font-size: 1.75rem;
  margin-bottom: 10px;
}

.activity-category-card p {
  margin: 0 0 20px;
}

.disabled-button {
  margin-top: 24px;
  opacity: .75;
  cursor: default;
}

.activities-home-cta {
  margin: 0 0 30px;
}

@media (min-width: 760px) {
  .activity-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1080px) {
  .activity-category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}


/* V12 Shop page */
.shop-page-art {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid rgba(63, 93, 74, 0.08);
  max-width: 1050px;
  margin: 0 auto;
}

.shop-page-art img {
  display: block;
  width: 100%;
  height: auto;
}

.shop-book-grid {
  display: grid;
  gap: 26px;
}

.shop-book-card {
  overflow: hidden;
  background: rgba(255,255,255,.86);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(63,93,74,.08);
  box-shadow: var(--shadow);
}

.shop-book-cover {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: #fffdf7;
  padding: 18px;
}

.shop-book-copy {
  padding: 26px;
}

.shop-book-copy h2 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.shop-book-copy p {
  margin-top: 0;
  margin-bottom: 22px;
}

@media (min-width: 800px) {
  .shop-book-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}


/* V13 About page */
.about-page-grid {
  display: grid;
  gap: 34px;
  align-items: center;
}

.about-page-photo {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid rgba(63,93,74,.08);
  background: #f7f4ef;
}

.about-page-photo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.about-page-copy h2 {
  margin-bottom: 18px;
}

.about-page-copy p:last-child {
  margin-bottom: 0;
}

@media (min-width: 840px) {
  .about-page-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }
}


/* V15 Contact page */
.contact-page-grid {
  display: grid;
  gap: 28px;
  align-items: start;
}

.contact-form-card,
.contact-note-card {
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(63,93,74,.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 28px;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.form-field {
  display: grid;
  gap: 7px;
}

.form-field label {
  font-weight: 800;
  color: var(--garden);
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(63,93,74,.22);
  border-radius: 14px;
  background: var(--ivory);
  color: var(--text);
  font: inherit;
  padding: 13px 14px;
  outline: none;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--garden);
  box-shadow: 0 0 0 3px rgba(168,185,160,.25);
}

.form-field textarea {
  resize: vertical;
  min-height: 160px;
}

.form-status {
  margin: 0;
  color: var(--garden);
  font-weight: 700;
}

.contact-note-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.contact-note-card h2 {
  font-size: 1.85rem;
  margin-bottom: 12px;
}

.contact-note-card p {
  margin-top: 0;
}

.contact-closing {
  font-family: "Lora", serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--garden);
  margin-top: 24px !important;
}

@media (min-width: 850px) {
  .contact-page-grid {
    grid-template-columns: 1.2fr .8fr;
  }
}


/* V16 legal pages */
.legal-updated {
  margin: 10px 0 0;
  font-weight: 700;
  color: var(--garden);
}

.legal-page {
  max-width: 900px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(63,93,74,.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 30px;
}

.legal-page h2 {
  font-size: 1.55rem;
  margin-top: 30px;
  margin-bottom: 10px;
}

.legal-page h2:first-of-type {
  margin-top: 20px;
}

.legal-page p {
  margin-top: 0;
  margin-bottom: 15px;
}

.legal-page a {
  color: var(--garden);
  font-weight: 800;
}

@media (min-width: 760px) {
  .legal-page {
    padding: 46px;
  }
}


/* V18 purchase-format buttons */
.shop-buy-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}


/* V19 individual book detail pages */
.book-detail-page {
  display: grid;
  gap: 34px;
  align-items: center;
}

.detail-title {
  color: var(--garden);
  font-family: "Lora", serif;
  font-size: clamp(2.25rem, 6vw, 4.25rem);
  line-height: 1.08;
  margin: 0 0 14px;
}

.detail-feature-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.detail-feature-list > div {
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(63,93,74,.08);
  border-radius: 16px;
  padding: 14px 16px;
  font-weight: 700;
}

@media (min-width: 820px) {
  .book-detail-page {
    grid-template-columns: .9fr 1.1fr;
  }
}


/* V21 launch polish */
.field-error,
.form-error {
  display: block;
  color: #8a3f3f;
  font-size: .92rem;
  font-weight: 700;
  margin-top: 5px;
}

.form-success {
  display: none;
  border-radius: 14px;
  padding: 14px 16px;
  background: rgba(168,185,160,.28);
  color: var(--garden);
  font-weight: 800;
}

.form-success[data-fs-active] {
  display: block;
}

.form-error[data-fs-active] {
  padding: 12px 0 0;
}

[data-fs-field][aria-invalid="true"] {
  border-color: #8a3f3f;
}

.error-page {
  min-height: 70vh;
  display: grid;
  place-content: center;
}

.error-page h1 {
  color: var(--garden);
  font-family: "Lora", serif;
  font-size: clamp(2.4rem, 7vw, 4.6rem);
  line-height: 1.08;
  margin: 0 0 18px;
}

.error-leaf {
  font-size: 3rem;
  margin-bottom: 14px;
}

.centered-buttons {
  justify-content: center;
}


/* V22 final QA refinements */
.menu-toggle {
  cursor: pointer;
}

.site-nav a[aria-current="page"] {
  background: rgba(168,185,160,.25);
  color: var(--garden);
}

@media (max-width: 420px) {
  .brand {
    font-size: .92rem;
  }

  .section {
    padding: 58px 0;
  }

  .button-row,
  .shop-buy-buttons {
    display: grid;
    width: 100%;
  }

  .button-row .button,
  .shop-buy-buttons .button {
    width: 100%;
  }
}
