/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --terracotta-50: #FDF0EB;
  --terracotta-100: #FADCD1;
  --terracotta-200: #F4B8A0;
  --terracotta-300: #E89070;
  --terracotta-400: #D4845A;
  --terracotta-500: #B85C38;
  --terracotta-600: #A04D2E;
  --terracotta-700: #833F26;
  --terracotta-800: #6B3420;
  --terracotta-900: #572B1B;

  --sand-50: #FDF8F4;
  --sand-100: #FAF0E8;
  --sand-200: #F5E6D8;
  --sand-300: #EDD5C0;
  --sand-400: #E0C0A0;
  --sand-500: #C8A078;
  --sand-600: #A88058;
  --sand-700: #886844;
  --sand-800: #685034;
  --sand-900: #4A3A26;

  --warm-white: #FDF8F4;
  --cream: #FAF0E8;
  --text-dark: #3D2B1F;
  --text-body: #5C4033;
  --text-muted: #8B7355;
  --text-light: #FDF8F4;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 3px rgba(93, 55, 35, 0.06), 0 1px 2px rgba(93, 55, 35, 0.04);
  --shadow-md: 0 4px 14px rgba(93, 55, 35, 0.08), 0 2px 6px rgba(93, 55, 35, 0.04);
  --shadow-lg: 0 10px 30px rgba(93, 55, 35, 0.1), 0 4px 10px rgba(93, 55, 35, 0.05);
  --shadow-xl: 0 20px 50px rgba(93, 55, 35, 0.12);

  --font-heading: 'Nunito', sans-serif;
  --font-body: 'Lora', serif;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background-color: var(--warm-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: var(--terracotta-600);
  text-decoration: none;
  transition: color var(--transition);
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  line-height: 1.25;
  font-weight: 800;
}

.section-eyebrow {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta-500);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  margin-bottom: 1.25rem;
  color: var(--text-dark);
}

.section-lead, .lead {
  font-size: 1.1rem;
  color: var(--text-body);
  line-height: 1.75;
  max-width: 600px;
}

.section {
  padding: 5rem 0;
}

.section-alt {
  background-color: var(--sand-100);
}

.text-center {
  text-align: center;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  border-radius: var(--radius-full);
  padding: 0.75rem 1.75rem;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--terracotta-500);
  color: var(--text-light);
  border-color: var(--terracotta-500);
}

.btn-primary:hover {
  background-color: var(--terracotta-600);
  border-color: var(--terracotta-600);
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-light {
  background-color: transparent;
  color: var(--text-light);
  border-color: rgba(253, 248, 244, 0.6);
}

.btn-outline-light:hover {
  background-color: rgba(253, 248, 244, 0.15);
  border-color: var(--text-light);
  color: var(--text-light);
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem;
}

.btn-full {
  width: 100%;
}

/* ===== HEADER / NAV ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(253, 248, 244, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200, 160, 120, 0.15);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--text-dark);
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  line-height: 1.2;
  color: var(--text-dark);
}

.logo-accent {
  color: var(--terracotta-500);
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-body);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  transition: all var(--transition);
}

.nav-links a:hover {
  color: var(--terracotta-600);
  background-color: var(--terracotta-50);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  position: relative;
  padding: 0;
}

.hamburger {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 22px;
  height: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger::before,
.hamburger::after,
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-dark);
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger::before { content: ''; }
.hamburger::after { content: ''; }
.hamburger span { display: none; }

.nav-toggle[aria-expanded="true"] .hamburger::before {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--terracotta-800);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(61, 43, 31, 0.82) 0%,
    rgba(93, 55, 35, 0.72) 50%,
    rgba(160, 77, 46, 0.65) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 8rem 1.5rem 5rem;
  max-width: 820px;
}

.hero-eyebrow {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sand-300);
  margin-bottom: 1.25rem;
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.12;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: rgba(253, 248, 244, 0.88);
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto 2.5rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(253, 248, 244, 0.8);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: rgba(253, 248, 244, 0.6);
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-images {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about-img-main img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.about-img-secondary {
  position: absolute;
  bottom: -2rem;
  right: -1.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--warm-white);
}

.about-img-secondary img {
  width: 220px;
  height: 165px;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  top: -1rem;
  right: 2rem;
  background-color: var(--terracotta-500);
  color: var(--text-light);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.6rem 1rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: var(--shadow-md);
}

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

.about-text p {
  margin-bottom: 1.25rem;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}

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

.feature-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background-color: var(--terracotta-50);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terracotta-500);
}

.feature-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-bottom: 0.15rem;
}

.feature-item span {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ===== PRODUCE ===== */
.section-header {
  margin-bottom: 3.5rem;
}

.produce-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-bottom: 2.5rem;
}

.produce-card {
  background-color: var(--warm-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

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

.produce-img {
  overflow: hidden;
  height: 220px;
}

.produce-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.produce-card:hover .produce-img img {
  transform: scale(1.07);
}

.produce-card-body {
  padding: 1.5rem;
}

.produce-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--terracotta-600);
  background-color: var(--terracotta-50);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
}

.produce-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.produce-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.produce-note {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.produce-note a {
  color: var(--terracotta-600);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ===== VISIT ===== */
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

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

.visit-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.visit-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.visit-detail-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background-color: var(--terracotta-50);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terracotta-500);
}

.visit-detail strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: var(--text-dark);
  margin-bottom: 0.2rem;
}

.visit-detail p {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.6;
}

.visit-detail a {
  color: var(--terracotta-600);
}

.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

/* ===== COMMUNITY ===== */
.community-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-bottom: 3rem;
}

.community-card {
  background-color: var(--warm-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid rgba(200, 160, 120, 0.12);
}

.community-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--terracotta-200);
}

.community-card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--terracotta-500), var(--terracotta-400));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  margin-bottom: 1.25rem;
}

.community-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
}

.community-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.community-cta {
  padding: 2.5rem;
  background: linear-gradient(135deg, var(--terracotta-500), var(--terracotta-600));
  border-radius: var(--radius-xl);
  color: var(--text-light);
}

.community-cta p {
  font-size: 1.1rem;
  color: rgba(253, 248, 244, 0.9);
  margin-bottom: 1.25rem;
  font-family: var(--font-heading);
  font-weight: 600;
}

.community-cta .btn-primary {
  background-color: var(--text-light);
  color: var(--terracotta-600);
  border-color: var(--text-light);
}

.community-cta .btn-primary:hover {
  background-color: var(--sand-200);
  border-color: var(--sand-200);
  color: var(--terracotta-700);
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

.contact-info .section-lead {
  margin-bottom: 2rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background-color: var(--sand-100);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all var(--transition);
  border: 1px solid transparent;
}

.contact-method:hover {
  background-color: var(--terracotta-50);
  border-color: var(--terracotta-200);
  transform: translateX(4px);
}

.contact-method-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background-color: var(--terracotta-500);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
}

.contact-method strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: var(--text-dark);
  margin-bottom: 0.1rem;
}

.contact-method span {
  font-size: 0.9rem;
  color: var(--text-body);
}

.contact-form-wrapper {
  background-color: var(--warm-white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(200, 160, 120, 0.12);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  background-color: var(--sand-100);
  border: 2px solid var(--sand-300);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  transition: all var(--transition);
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--terracotta-400);
  background-color: var(--warm-white);
  box-shadow: 0 0 0 3px rgba(184, 92, 56, 0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-success {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--terracotta-50);
  border: 1px solid var(--terracotta-200);
  color: var(--terracotta-700);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
}

/* ===== FOOTER ===== */
.site-footer {
  background-color: var(--text-dark);
  color: rgba(253, 248, 244, 0.7);
  padding: 4rem 0 0;
}

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

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 1rem;
  max-width: 280px;
}

.logo-footer .logo-text {
  color: var(--text-light);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links strong {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(253, 248, 244, 0.65);
  padding: 0.25rem 0;
  transition: all var(--transition);
}

.footer-links a:hover {
  color: var(--terracotta-300);
  padding-left: 0.5rem;
}

.footer-contact strong {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 0.75rem;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-contact p {
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-contact a {
  color: rgba(253, 248, 244, 0.65);
}

.footer-contact a:hover {
  color: var(--terracotta-300);
}

.footer-bottom {
  border-top: 1px solid rgba(253, 248, 244, 0.1);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(253, 248, 244, 0.45);
}

.footer-bottom a {
  color: rgba(253, 248, 244, 0.45);
  font-size: 0.8rem;
}

.footer-bottom a:hover {
  color: var(--terracotta-300);
}

/* ===== SCROLL REVEAL (progressive enhancement) ===== */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .reveal.revealed {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== MOBILE NAV ===== */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background-color: rgba(253, 248, 244, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.5rem 1.5rem;
    gap: 0.25rem;
    border-bottom: 1px solid rgba(200, 160, 120, 0.15);
    box-shadow: var(--shadow-lg);
    transform: translateY(-110%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-links a {
    padding: 0.75rem 1rem;
    font-size: 1rem;
  }

  .nav-links .btn {
    align-self: center;
    margin-top: 0.5rem;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .produce-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .community-grid .community-card:last-child {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 3.5rem 0;
  }

  .hero-content {
    padding: 7rem 1.25rem 4rem;
  }

  .about-grid,
  .visit-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-img-secondary {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 1rem;
  }

  .about-img-secondary img {
    width: 100%;
    height: 220px;
  }

  .about-badge {
    top: -0.75rem;
    right: 0.5rem;
  }

  .produce-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

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

  .community-grid .community-card:last-child {
    grid-column: span 1;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .hero-actions {
    flex-direction: column;
  }

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

@media (max-width: 480px) {
  .container {
    padding: 0 1.1rem;
  }

  .hero-headline {
    font-size: 1.9rem;
  }

  .contact-form-wrapper {
    padding: 1.5rem;
  }
}
