/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: #1a2e1a;
  background: #faf6f0;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
h1, h2, h3, h4 { font-family: 'DM Serif Display', Georgia, serif; font-weight: 400; line-height: 1.15; }

/* ─── CUSTOM PROPERTIES ─── */
:root {
  --emerald-900: #064e3b;
  --emerald-800: #065f46;
  --emerald-700: #047857;
  --emerald-600: #059669;
  --emerald-500: #10b981;
  --cream: #faf6f0;
  --cream-dark: #f0e8d8;
  --warm: #d4a574;
  --warm-light: #e8c9a0;
  --warm-dark: #b8864e;
  --dark: #1a2e1a;
  --dark-soft: #2d4a2d;
  --text: #1a2e1a;
  --text-muted: #5a6b5a;
  --white: #ffffff;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(6,78,59,0.08);
  --shadow-md: 0 4px 20px rgba(6,78,59,0.10);
  --shadow-lg: 0 12px 40px rgba(6,78,59,0.14);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── UTILITIES ─── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--emerald-700);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--warm);
}
.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--dark);
  margin-bottom: 20px;
}
.section-lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
}
.accent {
  color: var(--emerald-700);
  position: relative;
}
.accent::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--warm-light);
  border-radius: 2px;
  opacity: 0.6;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 50px;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--emerald-800);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(6,95,70,0.3);
}
.btn-primary:hover {
  background: var(--emerald-700);
  box-shadow: 0 6px 24px rgba(6,95,70,0.4);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--dark);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn-dark:hover {
  background: var(--dark-soft);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn-small {
  padding: 10px 22px;
  font-size: 0.82rem;
}
.btn-lg {
  padding: 16px 36px;
  font-size: 1rem;
}

/* ─── HEADER ─── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250,246,240,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(6,78,59,0.08);
  transition: var(--transition);
}
.site-header.scrolled {
  background: rgba(250,246,240,0.96);
  box-shadow: var(--shadow-sm);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--emerald-800);
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.05rem;
  line-height: 1.2;
  transition: var(--transition);
}
.logo:hover { color: var(--emerald-700); }
.logo-icon { flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; }
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 8px;
}
.main-nav a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 8px 16px;
  border-radius: 8px;
  transition: var(--transition);
}
.main-nav a:hover {
  color: var(--emerald-800);
  background: rgba(6,95,70,0.06);
}
.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--emerald-800);
  transition: var(--transition);
}
.nav-toggle:hover { background: rgba(6,95,70,0.06); }

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--emerald-900);
  padding-top: 72px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(4,120,87,0.7) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 80% 30%, rgba(212,165,116,0.3) 0%, transparent 60%),
    radial-gradient(ellipse 100% 100% at 50% 100%, rgba(6,78,59,0.9) 0%, var(--emerald-900) 60%);
}
.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.7;
}
.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 40px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--warm-light);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 28px;
}
.hero-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero-title .accent {
  color: var(--warm-light);
}
.hero-title .accent::after { background: var(--warm); }
.hero-desc {
  font-size: 1.12rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
}
.trust-divider {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.2);
}
.hero-image {
  position: relative;
}
.hero-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-img-float {
  position: absolute;
  bottom: -30px;
  left: -40px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--emerald-900);
}
.hero-img-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.float-tag {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 14px;
  background: rgba(6,78,59,0.88);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 1;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.6); }
}

/* ─── ABOUT ─── */
.about {
  padding: 120px 0;
  background: var(--cream);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 48px;
}
.about-text p {
  color: var(--text-muted);
  margin-bottom: 18px;
  font-size: 1.02rem;
  line-height: 1.8;
}
.about-visual { position: relative; }
.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 20px;
}
.stat {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(6,78,59,0.06);
}
.stat-num {
  display: block;
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 2.4rem;
  color: var(--emerald-700);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ─── DEPARTMENTS ─── */
.departments {
  padding: 120px 0;
  background: var(--white);
}
.departments .container > .section-label,
.departments .container > .section-title,
.departments .container > .section-lead {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.departments .section-lead { margin-bottom: 56px; }
.dept-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.dept-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(6,78,59,0.06);
  transition: var(--transition);
}
.dept-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.dept-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.dept-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.dept-card:hover .dept-card-img img {
  transform: scale(1.06);
}
.dept-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(6,78,59,0);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
}
.dept-card:hover .dept-card-overlay {
  background: rgba(6,78,59,0.25);
}
.dept-card-body {
  padding: 24px;
}
.dept-card-title {
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 8px;
}
.dept-card-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ─── FRESH & LOCAL ─── */
.fresh-local {
  padding: 120px 0;
  background: var(--emerald-900);
  position: relative;
  overflow: hidden;
}
.fresh-local::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212,165,116,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.fresh-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.fresh-visual { position: relative; }
.fresh-img-stack { position: relative; height: 600px; }
.fresh-img-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 75%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.fresh-img-1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fresh-img-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 5px solid var(--emerald-900);
}
.fresh-img-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fresh-content .section-label { color: var(--warm-light); }
.fresh-content .section-label::before { background: var(--warm); }
.fresh-content .section-title { color: var(--white); }
.fresh-content .section-lead { color: rgba(255,255,255,0.65); margin-bottom: 32px; }
.fresh-features {
  display: grid;
  gap: 16px;
  margin-bottom: 40px;
}
.fresh-features li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.98rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
}
.check-icon {
  flex-shrink: 0;
  color: var(--emerald-500);
  margin-top: 1px;
}
.fresh-content .btn-dark {
  background: var(--warm);
  color: var(--dark);
}
.fresh-content .btn-dark:hover {
  background: var(--warm-light);
  transform: translateY(-2px);
}

/* ─── COMMUNITY ─── */
.community {
  padding: 120px 0;
  background: var(--cream);
}
.community .section-label,
.community .section-title,
.community .section-lead {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.community .section-lead { margin-bottom: 56px; }
.community-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.community-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(6,78,59,0.06);
  transition: var(--transition);
}
.community-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.comm-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6,95,70,0.08);
  border-radius: var(--radius);
  color: var(--emerald-700);
  margin-bottom: 24px;
  transition: var(--transition);
}
.community-card:hover .comm-icon {
  background: var(--emerald-800);
  color: var(--white);
}
.community-card h3 {
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 12px;
}
.community-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ─── VISIT ─── */
.visit {
  padding: 120px 0;
  background: var(--white);
}
.visit-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.visit-info .section-label,
.visit-info .section-title,
.visit-info .section-lead {
  text-align: left;
}
.contact-details {
  margin: 40px 0;
  display: grid;
  gap: 24px;
}
.contact-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6,95,70,0.08);
  border-radius: 10px;
  color: var(--emerald-700);
}
.contact-row strong {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 4px;
}
.contact-row span,
.contact-row a {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.contact-row a:hover { color: var(--emerald-700); }
.visit-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  min-height: 400px;
}
.map-placeholder {
  width: 100%;
  height: 100%;
  min-height: 500px;
}
.map-placeholder iframe {
  width: 100%;
  height: 100%;
  min-height: 500px;
}

/* ─── FOOTER ─── */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.6);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
}
.logo-light { color: var(--white); margin-bottom: 20px; }
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.75;
  max-width: 300px;
}
.footer-links h4,
.footer-contact h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm-light);
  margin-bottom: 20px;
}
.footer-links ul { display: grid; gap: 12px; }
.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--white); }
.footer-contact-list { display: grid; gap: 14px; }
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  line-height: 1.6;
}
.footer-contact a {
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
}
.footer-contact a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom a {
  color: rgba(255,255,255,0.35);
  transition: var(--transition);
}
.footer-bottom a:hover { color: var(--white); }

/* ─── SCROLL ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── MOBILE NAV ─── */
@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(250,246,240,0.98);
    backdrop-filter: blur(16px);
    padding: 24px;
    border-bottom: 1px solid rgba(6,78,59,0.08);
    box-shadow: var(--shadow-md);
    transform: translateY(-120%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
  }
  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .main-nav ul {
    flex-direction: column;
    gap: 4px;
  }
  .main-nav a {
    display: block;
    padding: 14px 16px;
    font-size: 1rem;
  }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-image { max-width: 480px; margin: 0 auto; }
  .hero-img-float { left: -16px; bottom: -20px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .dept-grid { grid-template-columns: repeat(2, 1fr); }
  .fresh-grid { grid-template-columns: 1fr; gap: 48px; }
  .fresh-visual { order: -1; }
  .fresh-img-stack { height: 420px; }
  .community-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .visit-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .container { padding: 0 18px; }
  .hero { padding-top: 72px; }
  .hero-title { font-size: 2.2rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .dept-grid { grid-template-columns: 1fr; }
  .fresh-img-stack { height: 340px; }
  .fresh-img-1 { width: 80%; }
  .fresh-img-2 { width: 60%; }
  .about-stats { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .map-placeholder,
  .map-placeholder iframe { min-height: 320px; }
}
