:root {
  color-scheme: light;
  --background: #f8f4eb;
  --surface: #fffdf8;
  --surface-accent: #efe5d0;
  --text: #2e2419;
  --muted: #6d5a45;
  --border: #dcc9a9;
  --action: #406a2d;
  --action-hover: #315221;
  --status-bg: #2d5a1b;
  --status-text: #f0fae8;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  background: var(--background);
  color: var(--text);
  line-height: 1.7;
}

/* ── Hero ── */

.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  color: #fffdf8;
  padding: 4rem 1.5rem;
}

.hero__content {
  width: min(100%, 70rem);
  margin: 0 auto;
  max-width: 40rem;
}

.eyebrow {
  margin: 0 0 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: Arial, Helvetica, sans-serif;
  opacity: 0.85;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  line-height: 1.08;
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  margin-bottom: 1.25rem;
}

h3 {
  font-size: 1.15rem;
  font-family: Arial, Helvetica, sans-serif;
  margin-bottom: 0.4rem;
}

.hero__copy {
  font-size: 1.15rem;
  margin-bottom: 2rem;
  max-width: 36rem;
}

.button {
  display: inline-block;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  background: var(--action);
  color: #fffdf8;
  text-decoration: none;
  font-weight: 700;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.button:hover,
.button:focus-visible {
  background: var(--action-hover);
}

/* ── Status banner ── */

.partial-status {
  background: var(--status-bg);
  color: var(--status-text);
  padding: 1.5rem 1.5rem;
}

.partial-status .section__inner {
  width: min(100%, 70rem);
  margin: 0 auto;
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.partial-status h2 {
  font-size: 1.35rem;
  margin: 0;
  white-space: nowrap;
}

.partial-status p {
  margin: 0;
  opacity: 0.9;
  font-size: 1rem;
}

/* ── Shared section layout ── */

.section {
  padding: 4rem 1.5rem;
}

.section__inner {
  width: min(100%, 70rem);
  margin: 0 auto;
}

/* ── Produce section ── */

.partial-produce {
  padding: 4rem 1.5rem;
}

.partial-produce h2 {
  margin-bottom: 0.5rem;
}

.partial-produce h3 {
  color: var(--action);
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.partial-produce h3:first-of-type {
  border-top: none;
  margin-top: 1rem;
  padding-top: 0;
}

/* ── Hours section ── */

.partial-hours {
  background: var(--surface-accent);
  padding: 4rem 1.5rem;
}

.partial-hours h2 {
  margin-bottom: 1.5rem;
}

.partial-hours table {
  border-collapse: collapse;
  width: 100%;
  max-width: 32rem;
  margin-bottom: 1.25rem;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.95rem;
}

.partial-hours th,
.partial-hours td {
  padding: 0.55rem 1rem 0.55rem 0;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.partial-hours th {
  font-weight: 700;
  color: var(--muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── About section ── */

.partial-about {
  padding: 4rem 1.5rem;
}

.about-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0.75rem;
  margin-top: 2rem;
}

.about-gallery img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 0.75rem;
  display: block;
}

@media (max-width: 640px) {
  .about-gallery {
    grid-template-columns: 1fr;
  }

  .about-gallery img {
    height: 220px;
  }
}

/* ── Contact section ── */

.partial-contact {
  background: var(--surface-accent);
  padding: 4rem 1.5rem;
}

.partial-contact address {
  font-style: normal;
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}

.partial-contact address p {
  margin: 0;
  line-height: 1.9;
}

.partial-contact a {
  color: var(--action);
  text-decoration: none;
}

.partial-contact a:hover {
  text-decoration: underline;
}

.contact-map {
  margin-top: 2rem;
  width: 100%;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 0.75rem 1.5rem rgba(46, 36, 25, 0.08);
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}

/* ── Footer ── */

.footer {
  padding: 2rem 1.5rem;
  background: var(--text);
  color: rgba(255, 253, 248, 0.6);
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.85rem;
}

.footer p {
  margin: 0;
}

/* ── Responsive ── */

@media (max-width: 640px) {
  .hero,
  .partial-produce,
  .partial-hours,
  .partial-about {
    padding: 3rem 1rem;
  }

  .partial-status {
    padding: 1.25rem 1rem;
  }
}
