/* ===========================
   Wallace Farm - Styles
   Organic, earthy, heritage
   =========================== */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --green-deep: #1E4D2B;
  --green-mid: #2D6B3F;
  --green-light: #5C8A3C;
  --green-pale: #E8F0E4;
  --gold: #B8860B;
  --gold-light: #D4A843;
  --brown: #5C4033;
  --cream: #FAF7F2;
  --cream-dark: #F0EBE1;
  --white: #FFFFFF;
  --text: #2C2C2C;
  --text-light: #5A5A5A;
  --text-on-dark: #F0EBE1;
  --shadow-sm: 0 2px 8px rgba(30, 77, 43, 0.08);
  --shadow-md: 0 4px 20px rgba(30, 77, 43, 0.12);
  --shadow-lg: 0 8px 40px rgba(30, 77, 43, 0.16);
  --radius: 8px;
  --radius-lg: 16px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

/* Skip Link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--green-deep);
  color: var(--white);
  padding: 12px 24px;
  border-radius: var(--radius);
  z-index: 1000;
  font-weight: 600;
  text-decoration: none;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 16px;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  line-height: 1.15;
  color: var(--green-deep);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.15rem; }

p { max-width: 70ch; }

a {
  color: var(--green-mid);
  text-decoration: none;
  transition: color 0.15s ease;
}
a:hover { color: var(--gold); }
a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

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

/* ===========================
   Header / Navigation
   =========================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(30, 77, 43, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.site-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: opacity 0.15s ease;
}
.site-logo:hover { color: var(--gold-light); opacity: 0.9; }
.site-logo:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 4px;
  border-radius: 2px;
}
.logo-accent {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  margin-left: 2px;
}

.nav-desktop {
  display: none;
}
@media (min-width: 900px) {
  .nav-desktop {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
  }
}
.nav-desktop a {
  color: var(--text-on-dark);
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
  position: relative;
}
.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.25s var(--ease-out);
}
.nav-desktop a:hover::after,
.nav-desktop a.active::after {
  transform: scaleX(1);
}
.nav-desktop a:hover { color: var(--white); }
.nav-desktop a:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 2px;
}
.nav-desktop a.active { color: var(--gold-light); }

/* Mobile nav toggle */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  align-items: center;
}
@media (min-width: 900px) {
  .nav-toggle { display: none; }
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out), opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-mobile {
  display: none;
  position: absolute;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--green-deep);
  padding: 16px 24px 24px;
  list-style: none;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}
.nav-mobile.open { display: block; }
@media (min-width: 900px) {
  .nav-mobile { display: none !important; }
}
.nav-mobile li { border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.nav-mobile li:last-child { border-bottom: none; }
.nav-mobile a {
  display: block;
  color: var(--text-on-dark);
  padding: 14px 0;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  min-height: 44px;
  transition: color 0.15s ease;
}
.nav-mobile a:hover { color: var(--gold-light); }
.nav-mobile a.active { color: var(--gold-light); }
.nav-mobile a:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 2px;
}

/* ===========================
   Hero Section
   =========================== */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 72px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(30, 77, 43, 0.7) 0%,
    rgba(30, 77, 43, 0.5) 50%,
    rgba(30, 77, 43, 0.8) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  padding: 60px 24px;
}
.hero-content h1 {
  color: var(--white);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.1s both;
}
.hero-tagline {
  color: var(--cream);
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.3s both;
}
.hero-cta {
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.5s both;
}

/* ===========================
   Buttons
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius);
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  min-height: 44px;
}
.btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(184, 134, 11, 0.3);
}
.btn-primary:hover {
  background: var(--gold-light);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(184, 134, 11, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--green-deep);
  border: 2px solid var(--green-deep);
}
.btn-outline:hover {
  background: var(--green-deep);
  color: var(--white);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.6);
}
.btn-outline-light:hover {
  background: var(--white);
  color: var(--green-deep);
  border-color: var(--white);
}

.btn-secondary {
  background: var(--green-deep);
  color: var(--white);
}
.btn-secondary:hover {
  background: var(--green-mid);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

/* ===========================
   Sections
   =========================== */
.section {
  padding: 80px 24px;
}
@media (min-width: 768px) {
  .section { padding: 100px 24px; }
}
.section-narrow {
  max-width: 900px;
  margin: 0 auto;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-header h2 {
  margin-bottom: 16px;
}
.section-header p {
  margin: 0 auto;
  color: var(--text-light);
  font-size: 1.05rem;
}
.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.bg-white { background: var(--white); }
.bg-cream { background: var(--cream); }
.bg-green-pale { background: var(--green-pale); }
.bg-dark {
  background: var(--green-deep);
  color: var(--text-on-dark);
}
.bg-dark h2, .bg-dark h3 { color: var(--white); }
.bg-dark p { color: var(--text-on-dark); }
.bg-dark .section-label { color: var(--gold-light); }

/* ===========================
   About Preview (Homepage)
   =========================== */
.about-preview {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 768px) {
  .about-preview {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
}
.about-preview-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.about-preview-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}
.about-preview-text h2 {
  margin-bottom: 20px;
}
.about-preview-text p {
  color: var(--text-light);
  margin-bottom: 24px;
  font-size: 1.05rem;
}

/* ===========================
   Product Category Cards
   =========================== */
.product-categories {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 600px) {
  .product-categories { grid-template-columns: repeat(3, 1fr); }
}
.product-cat-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}
.product-cat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.product-cat-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.product-cat-card-body {
  padding: 24px;
}
.product-cat-card h3 {
  margin-bottom: 10px;
}
.product-cat-card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* ===========================
   Why Choose Us
   =========================== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 600px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .why-grid { grid-template-columns: repeat(3, 1fr); }
}
.why-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border-left: 4px solid var(--gold);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}
.why-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.why-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.why-card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* ===========================
   Testimonials
   =========================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 600px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}
.testimonial-card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}
.testimonial-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  left: 24px;
  font-family: 'DM Serif Display', serif;
  font-size: 4rem;
  color: var(--green-pale);
  line-height: 1;
}
.testimonial-card blockquote {
  font-style: italic;
  color: var(--text);
  margin-bottom: 16px;
  padding-top: 32px;
  font-size: 0.95rem;
}
.testimonial-stars {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 8px;
}
.testimonial-author {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--green-deep);
}
.testimonial-source {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ===========================
   Locations Preview
   =========================== */
.locations-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 600px) {
  .locations-grid { grid-template-columns: repeat(2, 1fr); }
}
.location-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--green-mid);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}
.location-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.location-card h3 {
  margin-bottom: 16px;
}
.location-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 8px;
}
.location-card .phone-link {
  font-weight: 600;
  color: var(--green-deep);
  font-size: 1.1rem;
  text-decoration: none;
}
.location-card .phone-link:hover {
  color: var(--gold);
}

/* ===========================
   CTA Banner
   =========================== */
.cta-banner {
  text-align: center;
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60"><circle cx="30" cy="30" r="1" fill="rgba(255,255,255,0.05)"/></svg>');
}
.cta-banner h2 {
  margin-bottom: 16px;
  position: relative;
}
.cta-banner p {
  margin: 0 auto 32px;
  position: relative;
  max-width: 600px;
}
.cta-banner .btn { position: relative; }

/* ===========================
   Footer
   =========================== */
.site-footer {
  background: var(--green-deep);
  color: var(--text-on-dark);
  padding: 60px 24px 24px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
@media (min-width: 600px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}
.footer-brand .site-logo {
  margin-bottom: 12px;
  font-size: 1.3rem;
}
.footer-brand p {
  color: rgba(240, 235, 225, 0.7);
  font-size: 0.9rem;
  line-height: 1.6;
}
.footer-heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
}
.footer-links {
  list-style: none;
}
.footer-links li { margin-bottom: 8px; }
.footer-links a {
  color: rgba(240, 235, 225, 0.7);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.15s ease;
}
.footer-links a:hover { color: var(--white); }
.footer-links a:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 2px;
}
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-on-dark);
  text-decoration: none;
  transition: background 0.15s ease, transform 0.15s ease;
  font-size: 0.85rem;
  min-width: 44px;
  min-height: 44px;
}
.footer-social a:hover {
  background: var(--gold);
  transform: translateY(-2px);
}
.footer-social a:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  text-align: center;
}
@media (min-width: 600px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}
.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(240, 235, 225, 0.5);
}

/* ===========================
   About Page
   =========================== */
.page-hero {
  margin-top: 72px;
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--green-pale) 0%, var(--cream) 50%, var(--green-pale) 100%);
  z-index: 0;
}
.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}
.page-hero h1 {
  margin-bottom: 16px;
}
.page-hero p {
  color: var(--text-light);
  font-size: 1.1rem;
  margin: 0 auto;
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  padding-left: 32px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--gold), var(--green-mid));
  border-radius: 2px;
}
.timeline-item {
  position: relative;
  padding-bottom: 32px;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -36px;
  top: 6px;
  width: 12px;
  height: 12px;
  background: var(--gold);
  border-radius: 50%;
  border: 3px solid var(--cream);
}
.timeline-year {
  font-family: 'DM Serif Display', serif;
  font-size: 1.4rem;
  color: var(--green-deep);
  margin-bottom: 4px;
}
.timeline-item p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 600px) {
  .team-grid { grid-template-columns: repeat(3, 1fr); }
}
.team-member {
  text-align: center;
  padding: 32px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--green-pale);
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
  color: var(--green-deep);
}
.team-member h3 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}
.team-member .team-title {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.team-member p:last-child {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Certifications */
.cert-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 600px) {
  .cert-list { grid-template-columns: repeat(2, 1fr); }
}
.cert-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 20px;
  background: var(--green-pale);
  border-radius: var(--radius);
}
.cert-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--green-deep);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

/* ===========================
   Products Page
   =========================== */
.product-section-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.product-section-header h2 {
  margin: 0;
}
.product-section-desc {
  color: var(--text-light);
  margin-bottom: 32px;
  max-width: 700px;
  font-size: 1.05rem;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 600px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}
.product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.product-card-img {
  aspect-ratio: 3/2;
  overflow: hidden;
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease-out);
}
.product-card:hover .product-card-img img {
  transform: scale(1.03);
}
.product-card-body {
  padding: 20px;
}
.product-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.product-card p {
  color: var(--text-light);
  font-size: 0.9rem;
}
.product-badge {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green-deep);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
}

/* ===========================
   Delivery Page
   =========================== */
.delivery-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) {
  .delivery-options { grid-template-columns: repeat(3, 1fr); }
}
.delivery-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--gold);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}
.delivery-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.delivery-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background: var(--green-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.delivery-card h3 {
  margin-bottom: 8px;
}
.delivery-capacity {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 8px;
}
.delivery-card p {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Recycling services */
.recycling-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: 700px;
}
@media (min-width: 600px) {
  .recycling-list { grid-template-columns: repeat(2, 1fr); }
}
.recycling-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  font-size: 0.95rem;
}
.recycling-check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--white);
}

/* ===========================
   Locations Page
   =========================== */
.location-detail {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  margin-bottom: 32px;
}
.location-detail h2 {
  margin-bottom: 16px;
  font-size: 1.5rem;
}
.location-detail p {
  color: var(--text-light);
  margin-bottom: 16px;
  font-size: 1.05rem;
}
.location-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 24px;
}
@media (min-width: 600px) {
  .location-info-grid { grid-template-columns: repeat(2, 1fr); }
}
.location-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.location-info-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--green-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.location-info-item strong {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--green-deep);
  margin-bottom: 2px;
}
.location-info-item span,
.location-info-item a {
  font-size: 0.95rem;
  color: var(--text-light);
}
.location-services-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: 24px;
}
@media (min-width: 600px) {
  .location-services-list { grid-template-columns: repeat(2, 1fr); }
}
.location-services-list li {
  padding: 10px 16px;
  background: var(--green-pale);
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: var(--green-deep);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ===========================
   Contact Page
   =========================== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 768px) {
  .contact-layout { grid-template-columns: 1fr 1fr; }
}
.contact-form-wrap {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: var(--green-deep);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--cream);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  min-height: 44px;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(45, 107, 63, 0.15);
}
.form-group textarea {
  min-height: 120px;
  resize: vertical;
}
.form-status {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  display: none;
}
.form-status.success {
  display: block;
  background: var(--green-pale);
  color: var(--green-deep);
  border: 1px solid var(--green-mid);
}
.form-status.error {
  display: block;
  background: #fff0f0;
  color: #c53030;
  border: 1px solid #feb2b2;
}
.contact-info-side h3 {
  margin-bottom: 24px;
}
.contact-info-block {
  margin-bottom: 28px;
}
.contact-info-block h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gold);
  margin-bottom: 8px;
}
.contact-info-block p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.contact-info-block a {
  color: var(--green-deep);
  font-weight: 500;
}
.contact-info-block a:hover { color: var(--gold); }

/* ===========================
   Scroll Reveal Animations
   =========================== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideFromLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideFromRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger children */
.stagger > * { transition-delay: calc(var(--i, 0) * 0.1s); }

/* ===========================
   Reduced Motion
   =========================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-delay: 0ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .reveal-left, .reveal-right {
    opacity: 1;
    transform: none;
  }
}

/* ===========================
   Utility
   =========================== */
.text-center { text-align: center; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.gap-2 { gap: 16px; }
