/* =========================================================
   PrimeValley — Sustainable Gardening
   Eco-inspired design: earthy palette, natural textures,
   spacious sections, organic visual flow.
   ========================================================= */

/* ---------- Reset & base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-bg: #faf6ef;
  --color-bg-alt: #f0e9d8;
  --color-cream: #f7f2e8;
  --color-leaf: #3a5f3a;
  --color-leaf-dark: #243f24;
  --color-sage: #8aa97f;
  --color-moss: #6b8e5a;
  --color-earth: #6b4f2c;
  --color-terracotta: #c97b4d;
  --color-text: #2c2a24;
  --color-muted: #6e6a5e;
  --color-border: #d8cfb8;

  --font-serif: "Cormorant Garamond", "Georgia", serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-xl: 40px;

  --shadow-soft: 0 10px 40px rgba(58, 95, 58, 0.08);
  --shadow-card: 0 4px 20px rgba(58, 95, 58, 0.06);

  --container: 1200px;
  --gutter: clamp(1rem, 4vw, 2.5rem);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-bg);
  background-image:
    radial-gradient(ellipse at top left, rgba(138, 169, 127, 0.08), transparent 60%),
    radial-gradient(ellipse at bottom right, rgba(201, 123, 77, 0.05), transparent 60%);
  min-height: 100vh;
  overflow-x: hidden;
}

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

a {
  color: var(--color-leaf);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover,
a:focus {
  color: var(--color-terracotta);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul {
  list-style: none;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.2;
  color: var(--color-leaf-dark);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.35rem, 2vw, 1.6rem); }
h4 { font-size: 1.15rem; }

p { margin-bottom: 1rem; }

.lead {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  color: var(--color-muted);
  max-width: 60ch;
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-moss);
  font-weight: 600;
  margin-bottom: 1rem;
  display: inline-block;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.section {
  padding: clamp(4rem, 9vw, 7rem) 0;
}

.section-tight { padding: clamp(3rem, 6vw, 5rem) 0; }

.section-alt {
  background-color: var(--color-bg-alt);
  background-image:
    repeating-linear-gradient(45deg,
      rgba(255,255,255,0.25) 0,
      rgba(255,255,255,0.25) 2px,
      transparent 2px,
      transparent 12px);
}

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

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

.section-header.left {
  text-align: left;
  margin-left: 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.8rem;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  transition: all 0.25s ease;
  border: 1.5px solid transparent;
  cursor: pointer;
  text-align: center;
}

.btn-primary {
  background-color: var(--color-leaf);
  color: var(--color-cream);
}
.btn-primary:hover,
.btn-primary:focus {
  background-color: var(--color-leaf-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

.btn-ghost {
  background: transparent;
  color: var(--color-leaf-dark);
  border-color: var(--color-leaf);
}
.btn-ghost:hover {
  background: var(--color-leaf);
  color: var(--color-cream);
}

/* ---------- Header / Navigation ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 239, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(216, 207, 184, 0.5);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-leaf-dark);
}

.brand:hover { color: var(--color-leaf-dark); }

.brand-mark {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  color: var(--color-leaf-dark);
}

.nav-toggle:hover { background: rgba(58,95,58,0.08); }

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  position: relative;
  transition: all 0.25s ease;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: currentColor;
  transition: all 0.25s ease;
}
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }

.nav-list {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-list a {
  color: var(--color-text);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
}

.nav-list a:hover,
.nav-list a.active {
  color: var(--color-leaf);
}

.nav-list a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--color-terracotta);
  border-radius: 2px;
}

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .nav-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--color-cream);
    padding: 1rem var(--gutter);
    border-bottom: 1px solid var(--color-border);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .nav-list.open { max-height: 500px; }
  .nav-list li {
    width: 100%;
    border-bottom: 1px solid rgba(216, 207, 184, 0.5);
  }
  .nav-list li:last-child { border-bottom: none; }
  .nav-list a {
    display: block;
    padding: 1rem 0;
    width: 100%;
  }
  .nav-list a.active::after { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(4rem, 9vw, 8rem) 0 clamp(4rem, 9vw, 7rem);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero-text h1 {
  margin-bottom: 1.5rem;
}

.hero-text h1 .accent {
  font-style: italic;
  color: var(--color-moss);
}

.hero-text .lead {
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4 / 5;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(247, 242, 232, 0.95);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  padding: 0.9rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  max-width: 260px;
  box-shadow: var(--shadow-card);
}

.hero-badge-icon {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  background: var(--color-leaf);
  color: var(--color-cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.hero-badge-text {
  font-size: 0.85rem;
  line-height: 1.4;
  color: var(--color-text);
}

.hero-stats {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  border-top: 1px solid var(--color-border);
  padding-top: 2rem;
}

.hero-stats div {
  text-align: left;
}

.hero-stats strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--color-leaf-dark);
  font-weight: 600;
}

.hero-stats span {
  font-size: 0.85rem;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-image { aspect-ratio: 4 / 3; }
}

/* ---------- Categories ---------- */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.category-card {
  display: block;
  padding: 2rem 1.6rem;
  background: var(--color-cream);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: all 0.25s ease;
  text-align: left;
  color: var(--color-text);
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
  border-color: var(--color-sage);
  color: var(--color-text);
}

.category-icon {
  width: 48px;
  height: 48px;
  background: rgba(138, 169, 127, 0.18);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  color: var(--color-leaf);
}

.category-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.category-card p {
  font-size: 0.95rem;
  color: var(--color-muted);
  margin-bottom: 0;
}

/* ---------- Articles grid ---------- */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 2rem;
}

.article-card {
  background: var(--color-cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.article-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-soft);
}

.article-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--color-bg-alt);
}

.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.article-card:hover .article-image img {
  transform: scale(1.05);
}

.article-body {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.article-meta {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  font-size: 0.78rem;
  color: var(--color-muted);
  margin-bottom: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.article-tag {
  background: rgba(58, 95, 58, 0.1);
  color: var(--color-leaf);
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  font-weight: 600;
}

.article-card h3 {
  font-size: 1.4rem;
  line-height: 1.3;
  margin-bottom: 0.6rem;
  color: var(--color-leaf-dark);
}

.article-card .excerpt {
  color: var(--color-muted);
  font-size: 0.96rem;
  margin-bottom: 1.2rem;
  flex: 1;
}

.article-link {
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--color-leaf);
}

.article-link::after {
  content: "→";
  transition: transform 0.2s ease;
}

.article-card:hover .article-link::after {
  transform: translateX(4px);
}

/* Featured article (latest) */
.featured-article {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: center;
  background: var(--color-cream);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-border);
  margin-bottom: 4rem;
}

.featured-article .article-image { aspect-ratio: 4 / 3; height: 100%; }
.featured-article .article-body { padding: clamp(1.8rem, 4vw, 3rem); }
.featured-article h3 {
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  line-height: 1.25;
  margin-bottom: 1rem;
}

@media (max-width: 760px) {
  .featured-article { grid-template-columns: 1fr; gap: 0; }
}

/* ---------- About ---------- */
.about {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.about-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4 / 5;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-text h2 { margin-bottom: 1.5rem; }

.about-features {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.about-feature {
  background: rgba(247, 242, 232, 0.6);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  border: 1px solid var(--color-border);
}

.about-feature h4 {
  margin-bottom: 0.4rem;
  color: var(--color-leaf-dark);
}

.about-feature p {
  font-size: 0.92rem;
  color: var(--color-muted);
  margin: 0;
}

@media (max-width: 760px) {
  .about { grid-template-columns: 1fr; }
  .about-image { aspect-ratio: 4 / 3; }
  .about-features { grid-template-columns: 1fr; }
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 4vw, 3.5rem);
}

.contact-info {
  background: var(--color-cream);
  padding: clamp(1.8rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}

.contact-info h3 { margin-bottom: 1rem; }
.contact-info p { color: var(--color-muted); margin-bottom: 2rem; }

.contact-list {
  display: grid;
  gap: 1.4rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-item-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  background: rgba(58, 95, 58, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-leaf);
}

.contact-item h4 {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 0.3rem;
  font-weight: 600;
}

.contact-item p,
.contact-item a {
  font-size: 1rem;
  color: var(--color-text);
  margin: 0;
  line-height: 1.5;
}

.contact-item a:hover { color: var(--color-leaf); }

/* Form */
.form {
  display: grid;
  gap: 1.2rem;
  background: var(--color-cream);
  padding: clamp(1.8rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

@media (max-width: 540px) {
  .form-row { grid-template-columns: 1fr; }
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-field label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-leaf-dark);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--color-border);
  background: #fff;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.98rem;
  color: var(--color-text);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--color-leaf);
  box-shadow: 0 0 0 3px rgba(58, 95, 58, 0.12);
}

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

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.88rem;
  color: var(--color-muted);
  line-height: 1.5;
}

.form-checkbox input {
  margin-top: 0.25rem;
  width: 18px;
  height: 18px;
  accent-color: var(--color-leaf);
  flex: 0 0 18px;
}

.form-message {
  display: none;
  padding: 1rem 1.2rem;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
}

.form-message.success {
  display: block;
  background: rgba(138, 169, 127, 0.18);
  color: var(--color-leaf-dark);
  border: 1px solid var(--color-sage);
}

.form-message.error {
  display: block;
  background: rgba(201, 123, 77, 0.12);
  color: #8a4a23;
  border: 1px solid var(--color-terracotta);
}

@media (max-width: 760px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ---------- Newsletter / CTA ---------- */
.cta {
  text-align: center;
  background: linear-gradient(135deg, var(--color-leaf) 0%, var(--color-leaf-dark) 100%);
  color: var(--color-cream);
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 4vw, 3rem);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}

.cta h2 { color: var(--color-cream); margin-bottom: 1rem; }
.cta p { color: rgba(247, 242, 232, 0.85); max-width: 60ch; margin: 0 auto 2rem; }
.cta .btn-primary {
  background: var(--color-cream);
  color: var(--color-leaf-dark);
}
.cta .btn-primary:hover { background: #fff; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-leaf-dark);
  color: rgba(247, 242, 232, 0.85);
  padding-top: 4rem;
}

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

.footer-col h4 {
  color: var(--color-cream);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1.2rem;
}

.footer-col p { font-size: 0.92rem; color: rgba(247, 242, 232, 0.7); }
.footer-col ul li { margin-bottom: 0.7rem; }
.footer-col a { color: rgba(247, 242, 232, 0.85); font-size: 0.92rem; }
.footer-col a:hover { color: var(--color-cream); }

.footer-brand {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--color-cream);
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.footer-brand:hover { color: var(--color-cream); }

.footer-bottom {
  border-top: 1px solid rgba(247, 242, 232, 0.15);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(247, 242, 232, 0.6);
}

@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  max-width: 600px;
  margin: 0 auto;
  background: var(--color-cream);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: 0 20px 60px rgba(36, 63, 36, 0.18);
  z-index: 1000;
  transform: translateY(120%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.visible { transform: translateY(0); }

.cookie-banner h4 { margin-bottom: 0.4rem; font-size: 1.1rem; }
.cookie-banner p { font-size: 0.9rem; color: var(--color-muted); margin-bottom: 1rem; }

.cookie-actions {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.cookie-actions .btn {
  padding: 0.65rem 1.2rem;
  font-size: 0.88rem;
}

@media (max-width: 480px) {
  .cookie-actions .btn { flex: 1 1 auto; justify-content: center; }
}

/* ---------- Page header (subpages) ---------- */
.page-header {
  padding: clamp(3rem, 7vw, 5rem) 0 clamp(2rem, 5vw, 3.5rem);
  text-align: center;
  background: var(--color-bg-alt);
  background-image:
    repeating-linear-gradient(45deg,
      rgba(255,255,255,0.25) 0,
      rgba(255,255,255,0.25) 2px,
      transparent 2px,
      transparent 12px);
}

.page-header .breadcrumbs {
  font-size: 0.85rem;
  color: var(--color-muted);
  margin-bottom: 0.8rem;
}

.page-header .breadcrumbs a:hover { color: var(--color-leaf); }

.page-header h1 { margin-bottom: 0.8rem; }
.page-header p { color: var(--color-muted); max-width: 60ch; margin: 0 auto; }

/* ---------- Article (single) ---------- */
.article-hero {
  text-align: center;
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(2rem, 4vw, 3rem);
}

.article-hero h1 {
  max-width: 22ch;
  margin: 0.8rem auto 1.2rem;
}

.article-hero .article-meta {
  justify-content: center;
}

.article-hero-image {
  max-width: 1000px;
  margin: 2.5rem auto 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  box-shadow: var(--shadow-soft);
}

.article-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-content {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.08rem;
  line-height: 1.8;
}

.article-content h2 {
  margin: 2.5rem 0 1rem;
  font-size: 1.8rem;
}

.article-content h3 {
  margin: 2rem 0 0.8rem;
}

.article-content p { margin-bottom: 1.2rem; color: #3d3a30; }

.article-content ul,
.article-content ol {
  margin: 1.2rem 0 1.5rem 1.5rem;
  padding-left: 0;
}

.article-content ul li {
  list-style: disc;
  margin-bottom: 0.6rem;
}

.article-content ol li {
  list-style: decimal;
  margin-bottom: 0.6rem;
}

.article-content blockquote {
  margin: 2rem 0;
  padding: 1.5rem 2rem;
  border-left: 4px solid var(--color-sage);
  background: var(--color-cream);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--color-leaf-dark);
}

/* ---------- Legal page ---------- */
.legal {
  max-width: 820px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.8;
}

.legal h2 { margin: 2.5rem 0 1rem; font-size: 1.6rem; }
.legal h3 { margin: 1.8rem 0 0.7rem; font-size: 1.2rem; }
.legal p { margin-bottom: 1rem; color: #3d3a30; }
.legal ul { margin: 1rem 0 1.5rem 1.5rem; }
.legal ul li { list-style: disc; margin-bottom: 0.5rem; }

.legal table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.95rem;
}
.legal th, .legal td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}
.legal th {
  background: var(--color-cream);
  color: var(--color-leaf-dark);
  font-weight: 600;
}

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-2 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
.mb-3 { margin-bottom: 3rem; }

.divider-leaf {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 2.5rem 0;
}

.divider-leaf::before,
.divider-leaf::after {
  content: "";
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: var(--color-border);
}

.divider-leaf svg {
  width: 22px;
  height: 22px;
  color: var(--color-sage);
}

/* Visually hidden (a11y) */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  border: 0;
}

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