/* The Loop Farmstead - Professional Clean Design */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* CSS Variables */
:root {
  --forest-green: #2d5016;
  --cream: #f5f1e8;
  --harvest-gold: #d4a574;
  --earth-brown: #5d4037;
  --leaf-light: #6b8c42;
  --text-dark: #2c2c2c;
  --text-light: #f5f1e8;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--cream);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--forest-green);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

p {
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}

a {
  color: var(--forest-green);
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

a:hover {
  color: var(--harvest-gold);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Navigation */
.nav {
  background: rgba(245, 241, 232, 0.98);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid rgba(45, 80, 22, 0.18);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--forest-green);
  letter-spacing: -0.5px;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 0.25rem 0;
  color: var(--text-dark);
}

.nav-links a:hover {
  color: var(--forest-green);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--harvest-gold);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Mobile Navigation */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--forest-green);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Hero Section (Homepage Only) */
.hero {
  padding: 6rem 0 5rem;
  text-align: center;
  background: linear-gradient(135deg, var(--cream) 0%, rgba(212, 165, 116, 0.15) 100%);
  position: relative;
}

.hero-content {
  max-width: 850px;
  margin: 0 auto;
}

.hero h1 {
  margin-bottom: 1rem;
  color: var(--forest-green);
}

.hero .subtitle {
  font-size: 1.35rem;
  color: var(--earth-brown);
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.hero .location {
  color: var(--leaf-light);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.hero p {
  font-size: 1.15rem;
  color: var(--text-dark);
  max-width: 700px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2.25rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
}

.btn-primary {
  background: var(--forest-green);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--leaf-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: transparent;
  color: var(--forest-green);
  border: 2px solid var(--forest-green);
}

.btn-secondary:hover {
  background: var(--forest-green);
  color: var(--white);
  transform: translateY(-2px);
}

/* Sections */
section {
  padding: 4.5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

/* Card Grid */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin: 2.5rem 0;
}

.card {
  background: var(--white);
  border-radius: 16px;
  padding: 2.25rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.12);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--harvest-gold);
}

.card-icon {
  font-size: 2.75rem;
  margin-bottom: 1.25rem;
  line-height: 1;
}

.card h3 {
  margin-bottom: 0.75rem;
  color: var(--forest-green);
  font-size: 1.5rem;
}

.card p {
  color: var(--text-dark);
  margin-bottom: 1.25rem;
  font-size: 1rem;
}

.card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.card ul li {
  padding: 0.35rem 0;
  color: var(--earth-brown);
  font-size: 0.95rem;
}

.card ul li::before {
  content: '•';
  color: var(--harvest-gold);
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

.card-link {
  color: var(--harvest-gold);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
}

.card-link:hover {
  gap: 0.75rem;
  color: var(--forest-green);
}

/* Principles (Homepage) */
.principles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.principle {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.principle h3 {
  color: var(--forest-green);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.principle p {
  color: #2c2c2c;
  line-height: 1.6;
}

/* Donate Section */
.donate-section {
  text-align: center;
  padding: 3rem 0;
  margin-top: 2rem;
  border-top: 2px solid var(--cream-dark, #e8e0d0);
}

.donate-section h2 {
  color: var(--forest-green);
  margin-bottom: 0.75rem;
}

.donate-section p {
  color: #2c2c2c;
  max-width: 600px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
}

.donate-tiers {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.donate-tier {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: white;
  border: 2px solid var(--cream-dark, #e8e0d0);
  border-radius: 12px;
  padding: 1.25rem 2rem;
  min-width: 120px;
  text-decoration: none;
  color: #2c2c2c;
  transition: all 0.2s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.donate-tier:hover {
  border-color: var(--forest-green);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.tier-amount {
  font-size: 2rem;
  font-weight: 700;
  color: var(--forest-green);
  line-height: 1;
}

.tier-label {
  font-size: 0.85rem;
  color: #666;
  margin-top: 0.25rem;
}

/* Simple Header (Section Index & Sub-pages) */
.page-header {
  padding: 3.5rem 0 2.5rem;
  text-align: center;
  background: var(--cream);
  border-bottom: 1px solid rgba(45, 80, 22, 0.15);
}

.page-header h1 {
  margin-bottom: 0.75rem;
}

.page-header .subtitle {
  font-size: 1.2rem;
  color: var(--earth-brown);
  font-weight: 400;
}

/* Breadcrumb */
.breadcrumb {
  padding: 1rem 24px;
  max-width: 1200px;
  margin: 0 auto;
  font-size: 0.9rem;
  color: var(--earth-brown);
}

.breadcrumb a {
  color: var(--forest-green);
  font-weight: 500;
}

.breadcrumb a:hover {
  color: var(--harvest-gold);
}

.breadcrumb span {
  margin: 0 0.5rem;
  opacity: 0.5;
}

/* Content */
.content {
  padding: 3rem 24px;
  max-width: 900px;
  margin: 0 auto;
}

.content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
}

.content h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.content ul, .content ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.content li {
  margin-bottom: 0.5rem;
}

.content blockquote {
  border-left: 4px solid var(--harvest-gold);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: var(--earth-brown);
  font-size: 1.1rem;
  background: rgba(212, 165, 116, 0.1);
  padding: 1.5rem;
  border-radius: 0 12px 12px 0;
}

.content table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.content th {
  background: var(--forest-green);
  color: var(--white);
  padding: 1rem;
  text-align: left;
  font-weight: 600;
}

.content td {
  padding: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.content tr:last-child td {
  border-bottom: none;
}

.content tr:hover {
  background: rgba(212, 165, 116, 0.08);
}

/* Leaf Divider (Use Sparingly - Max 1 per page) */
.leaf-divider {
  text-align: center;
  font-size: 1.75rem;
  margin: 3rem 0;
  opacity: 0.5;
  letter-spacing: 0.5rem;
}

/* Footer */
.footer {
  background: var(--forest-green);
  color: var(--text-light);
  padding: 4rem 0 2.5rem;
  margin-top: 5rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-section h3 {
  color: var(--harvest-gold);
  margin-bottom: 1.25rem;
  font-size: 1.25rem;
}

.footer-section p {
  font-size: 0.95rem;
  opacity: 0.9;
  line-height: 1.7;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 0.65rem;
}

.footer-section a {
  color: var(--cream);
  opacity: 0.85;
  transition: opacity 0.2s ease, color 0.2s ease;
  font-size: 0.95rem;
}

.footer-section a:hover {
  opacity: 1;
  color: var(--harvest-gold);
}

/* Social Links in Footer */
.social-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--cream);
  opacity: 0.9;
  font-size: 0.95rem;
  padding: 0.5rem 0;
}

.social-link:hover {
  opacity: 1;
  color: var(--harvest-gold);
}

.social-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* PWA Prompt */
.pwa-prompt {
  background: rgba(212, 165, 116, 0.15);
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  border: 1px solid rgba(212, 165, 116, 0.3);
}

.pwa-prompt p {
  margin-bottom: 1rem;
  font-size: 0.9rem;
  opacity: 0.95;
}

.pwa-install {
  background: var(--harvest-gold);
  color: var(--text-dark);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.pwa-install:hover {
  background: var(--white);
  transform: translateY(-2px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(245, 241, 232, 0.2);
  font-size: 0.9rem;
  opacity: 0.85;
}

.footer-bottom p {
  margin-bottom: 0.5rem;
}

/* Farm Photos */
.farm-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
  margin-top: 2.5rem;
}

.farm-photo {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.farm-photo:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}

.image-note {
  text-align: center;
  margin-top: 1.25rem;
  color: var(--earth-brown);
  font-size: 0.9rem;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
}

.lightbox.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
}

.lightbox-img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 8px;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: var(--white);
  font-size: 32px;
  font-weight: bold;
  cursor: pointer;
  background: none;
  border: none;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: var(--white);
  font-size: 32px;
  cursor: pointer;
  padding: 12px 16px;
  border-radius: 8px;
  transition: background 0.2s ease;
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.35);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

.lightbox-caption {
  text-align: center;
  color: var(--white);
  padding: 1.25rem;
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
}

/* Responsive Design */

/* Offerings Grid - Card Layout */
.offerings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.offering-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.offering-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.offering-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f0f0f0;
}

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

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

.offering-card h3 {
  font-size: 1.4rem;
  margin: 1.25rem 1.25rem 0.75rem;
  color: var(--forest-green);
}

.offering-card p {
  font-size: 0.95rem;
  color: var(--text-dark);
  margin: 0 1.25rem 1.25rem;
  line-height: 1.6;
  flex-grow: 1;
}

.offering-card .btn {
  margin: 0 1.25rem 1.5rem;
  display: inline-block;
  background: var(--forest-green);
  color: white;
  padding: 0.6rem 1.25rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
  transition: background 0.3s ease;
}

.offering-card .btn:hover {
  background: var(--harvest-gold);
  color: white;
}

/* Guide Links (Old Style - Keep for Backwards Compatibility) */
.guide-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.guide-link a {
  display: block;
  padding: 1rem 1.25rem;
  background: white;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  color: var(--forest-green);
  font-weight: 500;
}

.guide-link a:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}


@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 1.25rem 24px;
    gap: 1rem;
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid rgba(45, 80, 22, 0.18);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    padding: 4rem 0 3rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 280px;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  section {
    padding: 3rem 0;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .farm-images {
    grid-template-columns: 1fr;
  }

  .farm-photo {
    height: 280px;
  }
}

/* Page Hero (Sub-page Header) */
.page-hero {
  background: linear-gradient(135deg, var(--forest-green) 0%, var(--leaf-light) 100%);
  color: var(--white);
  padding: 4.5rem 0 3.5rem;
  text-align: center;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 0.75rem;
  font-size: clamp(2rem, 4vw, 3rem);
}

.page-hero .subtitle {
  font-size: 1.2rem;
  opacity: 0.95;
  margin-bottom: 0.5rem;
}

.page-hero .description {
  font-size: 1rem;
  opacity: 0.85;
  max-width: 600px;
  margin: 0.5rem auto 0;
}

/* Section Intro */
.section-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2rem;
  color: var(--earth-brown);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Description */
.description {
  color: var(--earth-brown);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Back Link */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--forest-green);
  font-weight: 600;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.back-link:hover {
  color: var(--harvest-gold);
}

/* Article Card */
.article-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.12);
}

.article-card h3 {
  color: var(--forest-green);
  margin-bottom: 0.75rem;
}

/* Article Content */
.article-content {
  line-height: 1.8;
  font-size: 1.05rem;
}

.article-content h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.article-content h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.article-content ul, .article-content ol {
  padding-left: 2rem;
  margin-bottom: 1.25rem;
}

.article-content li {
  margin-bottom: 0.5rem;
}

/* Article Quote */
.article-quote {
  border-left: 4px solid var(--harvest-gold);
  padding: 1.5rem;
  margin: 2rem 0;
  background: rgba(212, 165, 116, 0.1);
  border-radius: 0 12px 12px 0;
  font-style: italic;
  color: var(--earth-brown);
}

.article-quote p {
  margin-bottom: 0;
}

/* Variety Card */
.variety-card {
  background: var(--white);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.12);
}

.variety-card h3, .variety-card h4 {
  color: var(--forest-green);
  margin-bottom: 0.5rem;
}

/* Variety Meta */
.variety-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: var(--earth-brown);
}

.variety-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

/* Plant Image */
.plant-image {
  width: 100%;
  max-width: 400px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  margin: 1.5rem 0;
  object-fit: cover;
}

/* Info Box */
.info-box {
  background: rgba(107, 140, 66, 0.1);
  border: 1px solid rgba(107, 140, 66, 0.3);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  color: var(--text-dark);
}

.info-box h4, .info-box strong {
  color: var(--forest-green);
}

/* Tip Box */
.tip-box {
  background: rgba(212, 165, 116, 0.15);
  border: 1px solid rgba(212, 165, 116, 0.4);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  color: var(--text-dark);
}

.tip-box h4, .tip-box strong {
  color: var(--earth-brown);
}

/* Warning Box */
.warning-box {
  background: rgba(180, 60, 30, 0.08);
  border: 1px solid rgba(180, 60, 30, 0.25);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  color: var(--text-dark);
}

.warning-box h4, .warning-box strong {
  color: #b43c1e;
}

/* Standard Box */
.standard-box {
  background: var(--white);
  border-radius: 12px;
  padding: 1.5rem;
  margin: 1.5rem 0;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.12);
}

/* Photo Grid */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.photo-grid figure {
  margin: 0;
}

.photo-grid img {
  width: 100%;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  object-fit: cover;
  transition: transform 0.3s ease;
}

.photo-grid img:hover {
  transform: scale(1.02);
}

.photo-grid figcaption {
  text-align: center;
  color: var(--earth-brown);
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

/* Grid (generic) */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

/* Muted Text */
.muted {
  color: var(--earth-brown);
  opacity: 0.8;
  font-size: 0.9rem;
}

/* Utility Classes */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }
.hidden { display: none; }
