:root {
  --accent: #8a5920;
  --accent-deep: #6d4416;
  --accent-light: #b8853f;
  --accent-tint: #f3e8d6;
  --dark: #2a1f15;
  --dark-2: #3a2c1e;
  --light: #fbf7f0;
  --light-2: #f6efe3;
  --white: #ffffff;
  --text: #2a1f15;
  --text-muted: #6b5d4f;
  --border: #e4d8c4;
  --nav-h: 68px;
  --banner-h: 42px;
  --maxw: 1200px;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 2px 14px rgba(42, 31, 21, 0.07);
  --shadow-lg: 0 8px 30px rgba(42, 31, 21, 0.12);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--light);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--dark);
}

h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 0.95rem; letter-spacing: 0.04em; }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent-deep);
  margin-bottom: 14px;
}
.eyebrow.light { color: var(--accent-light); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 26px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  transition: transform 0.15s ease, background 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  font-family: inherit;
}
.btn-filled {
  background: var(--accent);
  color: var(--light);
}
.btn-filled:hover {
  background: var(--accent-deep);
  transform: translateY(-1px);
}
.btn-outline {
  border-color: var(--accent);
  color: var(--accent-deep);
  background: transparent;
}
.btn-outline:hover {
  background: var(--accent-tint);
}
.btn-outline-light {
  border-color: rgba(251, 247, 240, 0.5);
  color: var(--light);
  background: transparent;
}
.btn-outline-light:hover {
  background: rgba(251, 247, 240, 0.1);
}

/* Nav */
.site-nav {
  position: sticky;
  top: 42px;
  z-index: 100;
  background: var(--light);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 24px;
}
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--dark);
}
.wordmark .wheat-icon {
  width: 22px;
  height: 22px;
  color: var(--accent);
}
.wordmark.light { color: var(--light); }
.wordmark.light .wheat-icon { color: var(--accent-light); }

.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.nav-links a:hover {
  color: var(--accent-deep);
  border-bottom-color: var(--accent);
}
.nav-cta {
  margin-left: 8px;
  font-size: 0.9rem;
  padding: 10px 20px;
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--dark);
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.nav-toggle svg { width: 26px; height: 26px; }

/* Hero */
.hero {
  background: var(--dark);
  color: var(--light);
  overflow: hidden;
}
.hero-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 70px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.hero-text h1 {
  color: var(--light);
  margin-bottom: 18px;
}
.hero-text p {
  font-size: 1.12rem;
  color: rgba(251, 247, 240, 0.82);
  max-width: 32ch;
  margin-bottom: 30px;
}
.hero-text .eyebrow {
  color: var(--accent-light);
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 480px;
}

/* Pillars */
.pillars {
  background: var(--light-2);
  padding: 70px 0;
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.pillar {
  text-align: center;
}
.pillar h3 {
  margin: 14px 0 8px;
  color: var(--dark);
}
.pillar p {
  font-size: 0.92rem;
  color: var(--text-muted);
  max-width: 22ch;
  margin: 0 auto;
}

.icon-chip {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--accent-tint);
  color: var(--accent-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.icon-chip svg {
  width: 26px;
  height: 26px;
}

/* About */
.about {
  background: var(--light);
  padding: 90px 0;
}
.about-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: center;
}
.about-text h2 {
  margin-bottom: 20px;
}
.about-text p {
  margin-bottom: 16px;
  color: var(--text);
  max-width: 52ch;
}
.about-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-image img {
  width: 100%;
  object-fit: cover;
}

/* Offerings */
.offerings {
  background: var(--light-2);
  padding: 90px 0;
}
.section-head {
  text-align: center;
  margin-bottom: 50px;
}
.section-head h2 { margin-bottom: 0; }

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.card h3 {
  color: var(--dark);
}
.card p {
  color: var(--text-muted);
  font-size: 0.96rem;
}

/* Gallery */
.gallery {
  background: var(--light);
  padding: 90px 0;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 2 / 1;
  background: var(--light-2);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img {
  transform: scale(1.04);
}

/* Final CTA */
.final-cta {
  background: var(--dark);
  color: var(--light);
  padding: 90px 0;
}
.final-cta-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 50px;
  align-items: start;
}
.final-cta-text h2 {
  color: var(--light);
  margin-bottom: 16px;
}
.final-cta-text p {
  color: rgba(251, 247, 240, 0.82);
  max-width: 40ch;
  margin-bottom: 28px;
}
.final-cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hours-block {
  background: rgba(251, 247, 240, 0.06);
  border: 1px solid rgba(251, 247, 240, 0.12);
  border-radius: var(--radius);
  padding: 26px;
}
.hours-table {
  width: 100%;
  border-collapse: collapse;
}
.hours-table th,
.hours-table td {
  text-align: left;
  padding: 8px 0;
  font-size: 0.92rem;
  border-bottom: 1px solid rgba(251, 247, 240, 0.1);
}
.hours-table th {
  font-weight: 600;
  color: var(--light);
}
.hours-table td {
  color: rgba(251, 247, 240, 0.75);
  text-align: right;
}
.hours-note {
  margin-top: 14px;
  font-size: 0.82rem;
  color: rgba(251, 247, 240, 0.55);
}

/* Contact form */
.contact-form-section {
  background: var(--light-2);
  padding: 90px 0;
}
.contact-form-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
.contact-info h2 {
  margin-bottom: 16px;
}
.contact-info > p {
  margin-bottom: 24px;
  color: var(--text-muted);
  max-width: 40ch;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-details li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.96rem;
  color: var(--text);
}
.contact-details svg {
  width: 22px;
  height: 22px;
  color: var(--accent-deep);
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-details a:hover {
  color: var(--accent-deep);
  text-decoration: underline;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
}
.field input,
.field select {
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text);
  background: var(--light);
  transition: border-color 0.15s;
}
.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--accent);
}
.form-submit {
  margin-top: 6px;
  width: 100%;
}
.form-notice {
  font-size: 0.88rem;
  color: var(--accent-deep);
  text-align: center;
  min-height: 1.2em;
}

/* Footer */
.site-footer {
  background: var(--dark);
  color: rgba(251, 247, 240, 0.8);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
}
.footer-brand .footer-tagline {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--light);
  margin: 14px 0 8px;
}
.footer-sub {
  font-size: 0.9rem;
  color: rgba(251, 247, 240, 0.6);
  max-width: 30ch;
}
.footer-col h4 {
  color: var(--accent-light);
  margin-bottom: 14px;
  text-transform: uppercase;
}
.footer-col a,
.footer-col p {
  display: block;
  font-size: 0.92rem;
  color: rgba(251, 247, 240, 0.75);
  margin-bottom: 10px;
}
.footer-col a:hover {
  color: var(--light);
}
.footer-address,
.footer-hours,
.footer-hours-note {
  margin-bottom: 6px;
}
.footer-hours-note {
  color: rgba(251, 247, 240, 0.5);
  font-size: 0.82rem;
}
.footer-bottom {
  border-top: 1px solid rgba(251, 247, 240, 0.12);
  padding: 24px;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(251, 247, 240, 0.5);
}

/* Responsive */
@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: calc(var(--banner-h) + var(--nav-h));
    left: 0;
    right: 0;
    background: var(--light);
    flex-direction: column;
    gap: 0;
    padding: 10px 24px 20px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-150%);
    transition: transform 0.3s ease;
    z-index: 90;
  }
  .nav-links.open {
    transform: translateY(0);
  }
  .nav-links a {
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
  }
  .nav-cta { display: none; }
  .nav-toggle { display: inline-flex; }

  .hero-inner {
    grid-template-columns: 1fr;
    padding: 50px 24px 60px;
    gap: 36px;
  }
  .hero-image { order: -1; }
  .hero-image img { max-height: 300px; }

  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 20px;
  }

  .about-inner,
  .contact-form-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .card-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .final-cta-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px 28px;
  }
}

@media (max-width: 520px) {
  body { font-size: 16px; }
  .pillars-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-ctas .btn { width: 100%; }
  .final-cta-actions .btn { width: 100%; }
  .contact-form { padding: 26px 22px; }
}

/* Reveal animation (applied by JS) */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}