/* ============================================================
   Saharsa Fresh — Shared Styles
   Earthy / rustic palette · Playfair + Lora · animations
   ============================================================ */

:root {
  --cream: #FAF6EE;
  --cream-dark: #F0E9D8;
  --paper: #FFFCF5;
  --sage: #8AA66A;
  --sage-light: #B5C99A;
  --sage-dark: #5C7A3F;
  --forest: #2D4A2B;
  --terracotta: #C97D5D;
  --terracotta-dark: #A85F40;
  --brown: #5C4033;
  --gold: #D4A437;
  --gold-soft: #E9C46A;
  --ink: #2A2520;
  --muted: #6B5E4F;
  --line: #E2D9C5;
  --shadow-sm: 0 2px 8px rgba(60, 45, 25, 0.08);
  --shadow-md: 0 8px 24px rgba(60, 45, 25, 0.12);
  --shadow-lg: 0 16px 48px rgba(60, 45, 25, 0.18);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --max: 1200px;
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2.5rem;
  --space-5: 4rem;
  --space-6: 6rem;
}

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

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

body {
  font-family: 'Lora', Georgia, serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
  background-image:
    radial-gradient(circle at 20% 10%, rgba(212, 164, 55, 0.06) 0%, transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(138, 166, 106, 0.08) 0%, transparent 50%);
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', 'Times New Roman', serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--forest);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }

p { margin-bottom: 1rem; color: var(--muted); }

a { color: var(--sage-dark); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--terracotta); }

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

.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--space-3); }
.container-narrow { max-width: 800px; margin: 0 auto; padding: 0 var(--space-3); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 246, 238, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: all 0.3s;
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1rem var(--space-3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-logo {
  display: inline-flex; align-items: baseline; gap: 0.35rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem; font-weight: 700;
  color: var(--forest);
  letter-spacing: -0.005em;
  line-height: 1;
  text-decoration: none;
}
.nav-logo:hover { color: var(--forest); }
.nav-logo-mark {
  color: var(--terracotta);
  font-style: italic;
  font-weight: 600;
  letter-spacing: 0;
}

.nav-links { display: flex; align-items: center; gap: 1.8rem; list-style: none; }
.nav-links a {
  color: var(--ink);
  font-family: 'Lora', serif;
  font-size: 1rem;
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
}
.nav-links a:hover { color: var(--terracotta); }
.nav-links a.active::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--terracotta); border-radius: 2px;
}

.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  display: flex; align-items: center; gap: 0.3rem;
  cursor: pointer; background: none; border: none;
  font: inherit; color: var(--ink); font-weight: 500;
  padding: 0.5rem 0;
}
.nav-dropdown-toggle:hover { color: var(--terracotta); }
.nav-dropdown-toggle .chev { transition: transform 0.2s; }
.nav-dropdown.open .chev { transform: rotate(180deg); }

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%; transform: translateX(-50%) translateY(-8px);
  min-width: 240px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 0.6rem;
  opacity: 0; pointer-events: none;
  transition: all 0.25s;
  list-style: none;
}
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: flex; align-items: center; gap: 0.8rem;
  padding: 0.7rem 0.9rem;
  border-radius: var(--radius-sm);
  color: var(--ink);
}
.nav-dropdown-menu a:hover { background: var(--cream-dark); color: var(--forest); }
.nav-dropdown-menu .item-icon {
  width: 32px; height: 32px;
  display: grid; place-items: center;
  background: var(--cream); border-radius: 50%;
}
.nav-dropdown-menu .item-icon svg { width: 20px; height: 20px; }
.nav-dropdown-menu .item-title {
  font-family: 'Playfair Display', serif;
  font-weight: 600; color: var(--forest);
  display: block;
}
.nav-dropdown-menu .item-sub {
  font-size: 0.85rem; color: var(--muted);
}

.nav-cta {
  background: var(--forest); color: var(--cream);
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  transition: all 0.2s;
}
.nav-cta:hover { background: var(--terracotta); color: var(--cream); transform: translateY(-1px); }

.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  padding: 0.4rem;
}
.nav-toggle svg { width: 28px; height: 28px; color: var(--forest); }

@media (max-width: 880px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed; top: 70px; left: 0; right: 0;
    flex-direction: column; align-items: stretch;
    background: var(--paper);
    padding: 1.5rem var(--space-3);
    gap: 0.5rem;
    border-bottom: 1px solid var(--line);
    transform: translateY(-150%);
    transition: transform 0.3s;
    box-shadow: var(--shadow-md);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-dropdown-menu {
    position: static; transform: none; opacity: 1; pointer-events: auto;
    box-shadow: none; border: none; background: var(--cream);
    margin-top: 0.4rem;
  }
  .nav-dropdown-menu { display: none; }
  .nav-dropdown.open .nav-dropdown-menu { display: block; transform: none; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  font-family: 'Lora', serif;
  font-weight: 600;
  font-size: 1rem;
  border: none; cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
}
.btn-primary { background: var(--forest); color: var(--cream); }
.btn-primary:hover { background: var(--terracotta); color: var(--cream); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-secondary { background: transparent; color: var(--forest); border: 2px solid var(--forest); }
.btn-secondary:hover { background: var(--forest); color: var(--cream); }
.btn-accent { background: var(--terracotta); color: var(--cream); }
.btn-accent:hover { background: var(--terracotta-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-large { padding: 1.1rem 2rem; font-size: 1.1rem; }

/* ============================================================
   HERO / SECTIONS
   ============================================================ */
.hero {
  position: relative;
  padding: var(--space-6) 0 var(--space-5);
  overflow: hidden;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2rem; }
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-size: 0.85rem; color: var(--sage-dark);
  font-weight: 600;
  margin-bottom: 1.2rem;
}
.hero h1 { margin-bottom: 1.2rem; }
.hero h1 .accent {
  font-style: italic;
  color: var(--terracotta);
  position: relative;
}
.hero h1 .accent::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -4px;
  height: 8px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 8'><path d='M2 5 Q 50 -2 100 4 T 198 4' fill='none' stroke='%23D4A437' stroke-width='2.5' stroke-linecap='round'/></svg>") no-repeat;
  background-size: contain;
}
.hero-lede { font-size: 1.15rem; max-width: 540px; margin-bottom: 1.8rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-stats {
  display: flex; gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.hero-stats .stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 700;
  color: var(--forest);
}
.hero-stats .stat-lbl {
  font-size: 0.85rem; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.1em;
}

.hero-art {
  position: relative;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
}
.hero-art svg { width: 100%; height: 100%; }

/* Floating decorative leaves */
.leaf-float {
  position: absolute;
  pointer-events: none;
  opacity: 0.7;
  animation: leafSway 6s ease-in-out infinite;
}
.leaf-float.l1 { top: 10%; left: 5%; width: 50px; animation-delay: 0s; }
.leaf-float.l2 { top: 60%; right: 8%; width: 40px; animation-delay: 1.5s; }
.leaf-float.l3 { bottom: 15%; left: 12%; width: 45px; animation-delay: 3s; }
@keyframes leafSway {
  0%, 100% { transform: translate(0, 0) rotate(-5deg); }
  50% { transform: translate(8px, -12px) rotate(8deg); }
}

/* Section base */
section { padding: var(--space-6) 0; }
.section-narrow { padding: var(--space-5) 0; }
.section-eyebrow {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 700;
  margin-bottom: 0.8rem;
}
.section-head { text-align: center; max-width: 720px; margin: 0 auto var(--space-4); }
.section-head p { font-size: 1.1rem; }

/* ============================================================
   FEATURE / VALUES GRID
   ============================================================ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.feature-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 2rem 1.6rem;
  transition: all 0.3s;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--sage-light);
}
.feature-icon {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  background: var(--cream-dark);
  border-radius: 50%;
  margin-bottom: 1rem;
}
.feature-icon svg { width: 28px; height: 28px; color: var(--forest); }
.feature-card h3 { margin-bottom: 0.6rem; font-size: 1.25rem; }

/* ============================================================
   PRODUCT SHOWCASE
   ============================================================ */
.products {
  background: linear-gradient(180deg, var(--cream-dark) 0%, var(--cream) 100%);
}
.product-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: var(--space-5);
}
.product-row.reverse .product-art { order: 2; }
@media (max-width: 768px) {
  .product-row, .product-row.reverse { grid-template-columns: 1fr; }
  .product-row.reverse .product-art { order: 0; }
}
.product-art {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 2rem;
  aspect-ratio: 4/3;
  display: grid; place-items: center;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.product-art::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(212, 164, 55, 0.15) 0%, transparent 60%);
  pointer-events: none;
}
.product-art svg { max-height: 100%; position: relative; z-index: 1; }
.product-content .tag {
  display: inline-block;
  background: var(--cream-dark);
  color: var(--sage-dark);
  font-size: 0.8rem;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.product-content h3 { font-size: 2rem; margin-bottom: 1rem; }
.product-content ul { list-style: none; margin: 1.2rem 0; }
.product-content ul li {
  padding-left: 1.6rem;
  position: relative;
  margin-bottom: 0.6rem;
  color: var(--ink);
}
.product-content ul li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 0;
  color: var(--sage-dark);
  font-weight: 700;
}

/* ============================================================
   FORMS / WAITLIST
   ============================================================ */
.waitlist-card {
  background: linear-gradient(135deg, var(--forest) 0%, var(--sage-dark) 100%);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3.5rem);
  position: relative;
  overflow: hidden;
}
.waitlist-card::before {
  content: ''; position: absolute;
  top: -40%; right: -10%;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(212, 164, 55, 0.25) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.waitlist-card h2, .waitlist-card h3 { color: var(--cream); }
.waitlist-card p { color: rgba(250, 246, 238, 0.85); }
.waitlist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  position: relative;
}
@media (max-width: 768px) {
  .waitlist-grid { grid-template-columns: 1fr; }
}
.waitlist-form {
  display: grid;
  gap: 0.8rem;
}
.waitlist-form input,
.waitlist-form select,
.waitlist-form textarea,
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.95rem 1.1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: var(--cream);
  font: inherit;
  transition: all 0.2s;
}
.waitlist-form input::placeholder,
.waitlist-form textarea::placeholder { color: rgba(250, 246, 238, 0.55); }
.waitlist-form input:focus,
.waitlist-form select:focus,
.waitlist-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.14);
}
.waitlist-form button {
  background: var(--gold);
  color: var(--ink);
  padding: 1rem;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Lora', serif;
}
.waitlist-form button:hover { background: #C8961F; transform: translateY(-1px); }
.form-success {
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  border: 1px solid var(--gold);
  display: none;
}
.form-success.show { display: block; animation: fadeUp 0.4s ease both; }
.waitlist-counter {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.9rem;
  color: rgba(250, 246, 238, 0.7);
  margin-top: 1rem;
}
.waitlist-counter .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

/* Contact form (light bg version) */
.contact-form input,
.contact-form select,
.contact-form textarea {
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--ink);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--muted); }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--sage-dark);
  background: var(--paper);
  box-shadow: 0 0 0 3px rgba(138, 166, 106, 0.2);
}
.contact-form button {
  background: var(--forest); color: var(--cream);
}
.contact-form button:hover { background: var(--terracotta); }

/* ============================================================
   QR / TRACE STORY (ghee page)
   ============================================================ */
.trace-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  counter-reset: step;
}
.trace-step {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 2rem 1.6rem;
  position: relative;
  counter-increment: step;
}
.trace-step::before {
  content: counter(step, decimal-leading-zero);
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 0.8rem;
}
.trace-step h4 {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
  color: var(--forest);
}
.qr-demo {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: var(--paper);
  border: 1px dashed var(--terracotta);
  border-radius: var(--radius-md);
  padding: 2rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}
.qr-demo svg { width: 140px; height: 140px; flex-shrink: 0; }
.qr-demo .qr-info p { margin-bottom: 0.4rem; }
.qr-demo .qr-info strong { color: var(--forest); font-family: 'Playfair Display', serif; }

/* ============================================================
   TIMELINE (about / origin)
   ============================================================ */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
.timeline::before {
  content: ''; position: absolute;
  left: 30px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--sage-light), var(--sage-dark));
}
.timeline-item {
  position: relative;
  padding-left: 80px;
  margin-bottom: 2.5rem;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: 22px; top: 6px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--cream);
  box-shadow: 0 0 0 2px var(--sage-dark);
}
.timeline-item .when {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--terracotta);
  font-weight: 600;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq details {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.6rem;
  margin-bottom: 0.8rem;
  transition: all 0.2s;
}
.faq details[open] {
  background: var(--cream-dark);
  border-color: var(--sage-light);
}
.faq summary {
  cursor: pointer;
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--forest);
  list-style: none;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--terracotta);
  transition: transform 0.2s;
}
.faq details[open] summary::after { content: '−'; }
.faq details p { margin-top: 0.8rem; margin-bottom: 0; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--forest);
  color: var(--cream);
  padding: var(--space-5) 0 var(--space-3);
  margin-top: var(--space-5);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
.footer-brand p { color: rgba(250, 246, 238, 0.7); max-width: 300px; }
.footer-logo {
  display: inline-flex; align-items: baseline; gap: 0.35rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem; font-weight: 700;
  color: var(--cream);
  letter-spacing: -0.005em;
  line-height: 1;
  margin-bottom: 1rem;
}
.footer-logo .footer-logo-mark { color: var(--gold); font-style: italic; font-weight: 600; }
.footer-col h4 {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a { color: rgba(250, 246, 238, 0.75); }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(250, 246, 238, 0.15);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.9rem;
  color: rgba(250, 246, 238, 0.6);
}
.footer-bottom a { color: rgba(250, 246, 238, 0.6); }

/* ============================================================
   PAGE BANNERS
   ============================================================ */
.page-banner {
  padding: var(--space-5) 0 var(--space-4);
  background: linear-gradient(180deg, var(--cream-dark) 0%, var(--cream) 100%);
  text-align: center;
  position: relative;
}
.page-banner h1 { margin-bottom: 0.8rem; }
.page-banner .breadcrumb {
  font-size: 0.9rem; color: var(--muted);
  margin-bottom: 1rem;
}
.page-banner .breadcrumb a { color: var(--sage-dark); }

/* ============================================================
   PROSE (legal pages)
   ============================================================ */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { margin: 2.5rem 0 0.8rem; font-size: 1.6rem; }
.prose h3 { margin: 1.8rem 0 0.6rem; font-size: 1.25rem; }
.prose p, .prose li { color: var(--ink); }
.prose ul, .prose ol { margin: 1rem 0 1.2rem 1.4rem; }
.prose li { margin-bottom: 0.4rem; }
.prose strong { color: var(--forest); }

/* ============================================================
   CONTACT GRID
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.6rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  transition: all 0.2s;
}
.contact-card:hover { border-color: var(--sage-light); transform: translateX(4px); }
.contact-card .ico {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--cream-dark);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.contact-card .ico svg { width: 24px; height: 24px; color: var(--forest); }
.contact-card h4 {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.2rem;
}
.contact-card a, .contact-card span {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--forest);
  font-weight: 600;
}

/* ============================================================
   ANIMATIONS — scroll reveal
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Cow gentle bob */
.cow-bob { animation: cowBob 4s ease-in-out infinite; transform-origin: center bottom; }
@keyframes cowBob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }
.sun-rotate { animation: sunSpin 30s linear infinite; transform-origin: center; transform-box: fill-box; }
@keyframes sunSpin { to { transform: rotate(360deg); } }
.cloud-drift { animation: cloudDrift 20s ease-in-out infinite; }
.cloud-drift.c2 { animation-duration: 26s; animation-delay: -8s; }
@keyframes cloudDrift {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(20px); }
}
.grass-sway { animation: grassSway 3s ease-in-out infinite; transform-origin: center bottom; }
.grass-sway.g2 { animation-delay: -1.5s; }
@keyframes grassSway {
  0%, 100% { transform: skewX(-2deg); }
  50% { transform: skewX(2deg); }
}
.steam-rise { animation: steamRise 2.5s ease-out infinite; opacity: 0; }
.steam-rise.s2 { animation-delay: 0.8s; }
.steam-rise.s3 { animation-delay: 1.6s; }
@keyframes steamRise {
  0% { opacity: 0; transform: translateY(0) scale(1); }
  30% { opacity: 0.7; }
  100% { opacity: 0; transform: translateY(-30px) scale(1.4); }
}

/* Honor reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   UTILITIES
   ============================================================ */
.center-text { text-align: center; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2.5rem; }
.mb-3 { margin-bottom: 1.5rem; }
.bg-cream { background: var(--cream); }
.bg-paper { background: var(--paper); }
