:root {
  --bg: #fbfaf7;
  --card: #ffffff;
  --text: #1f2937;
  --muted: #6b7280;
  --accent: #2f5d3a;
  --accent2: #7a5c2e;
  --line: #e6e4dc;
  --shadow: 0 12px 30px rgba(0,0,0,.08);
  --radius: 18px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: radial-gradient(1200px 700px at 20% 0%, #ffffff 0%, var(--bg) 55%);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover { text-decoration: underline; }

.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 22px 18px;
}

/* ── HEADER ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand:hover { text-decoration: none; }

.logo {
  height: 48px;
  width: 48px;
  object-fit: contain;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: 0 6px 16px rgba(0,0,0,.06);
}

.brand-text { display: flex; flex-direction: column; }

.brand-top {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: .2px;
}

.brand-name {
  font-weight: 800;
  letter-spacing: .2px;
}

.nav {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.nav a {
  font-size: 14px;
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid transparent;
}

.nav a:hover {
  text-decoration: none;
  border-color: var(--line);
  background: #ffffff;
}

/* ── HERO ── */
.hero { padding: 8px 0 4px; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 26px;
  align-items: stretch;
}

.hero-text {
  background: linear-gradient(180deg, #ffffff, #f6f4ee);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.hero-eyebrow {
  margin: 0 0 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .6px;
}

.hero-text h1 {
  margin: 0 0 10px;
  font-size: 38px;
  letter-spacing: -0.6px;
  line-height: 1.15;
}

.subtitle {
  margin: 0 0 14px;
  color: var(--muted);
  max-width: 56ch;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 8px 0 16px;
}

.tags span {
  background: #ffffff;
  border: 1px solid var(--line);
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: #2b2b2b;
}

.contact-box {
  background: #ffffff;
  border: 1px dashed #d9d7cf;
  border-radius: 14px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.muted { color: var(--muted); }

.hero-image {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background:
    linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,0)),
    url("images/heathcote-heathvale-orchards-main-photo.png") center/cover no-repeat;
  min-height: 320px;
}

/* ── SECTIONS ── */
.section { margin-top: 34px; }

.section h2 {
  margin: 0 0 6px;
  font-size: 22px;
  letter-spacing: -0.2px;
}

.section p { margin: 0; }

/* ── PRODUCE CARDS ── */
.produce-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 18px;
  align-items: start;
}

.produce-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.produce-card-img {
  width: 100%;
  height: 220px;
  background-size: cover;
  background-position: center;
  transition: transform .3s ease;
}

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

/* Hero images for each produce type */
.plums-img {
  background-image: url("images/heathcote-plums-mixed.png");
}

.feijoas-img {
  background-image: url("images/feijoa.jpeg");
}

.produce-card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.produce-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.produce-card-header h3 {
  margin: 0;
  font-size: 20px;
}

.price-badge {
  background: var(--accent);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
}

.price-badge .per {
  font-size: 13px;
  font-weight: 500;
  opacity: .85;
}

/* "More produce" card */
.produce-card--more {
  border-style: dashed;
  background: #fafaf7;
}

.produce-card-body--center {
  align-items: center;
  text-align: center;
  padding: 36px 20px;
}

.more-icon {
  font-size: 40px;
  margin-bottom: 8px;
  line-height: 1;
}

/* Variety list */
.variety-list {
  margin: 0;
  padding-left: 18px;
}

.variety-list li {
  margin-bottom: 4px;
  font-size: 14px;
}

/* CTA buttons */
.btn {
  display: inline-block;
  margin-top: 4px;
  background: var(--accent);
  color: #fff;
  padding: 10px 18px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  align-self: flex-start;
  transition: opacity .2s;
}

.btn:hover {
  opacity: .85;
  text-decoration: none;
}

.btn--outline {
  background: transparent;
  border: 1.5px solid var(--accent);
  color: var(--accent);
}

/* ── GALLERY / MARQUEE ── */
.gallery.marquee {
  overflow: hidden;
  margin-top: 14px;
  border-radius: var(--radius);
}

.marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marquee-scroll 40s linear infinite;
  will-change: transform;
}

.gallery.marquee:hover .marquee-track {
  animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.marquee-item { flex: 0 0 auto; }

.photo {
  margin: 0;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(0,0,0,.06);
}

.photo img {
  width: 340px;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform .25s ease;
}

.photo:hover img { transform: scale(1.03); }

/* ── INFO GRID ── */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 14px;
}

.info-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.info-card h3 {
  margin: 0 0 4px;
  font-size: 16px;
}

.info-card p { margin: 0; }

/* ── MAP ── */
.map {
  margin-top: 14px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 10px 26px rgba(0,0,0,.06);
  background: #fff;
}

iframe {
  width: 100%;
  height: 380px;
  border: 0;
  display: block;
}

/* ── ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  margin-top: 14px;
  align-items: start;
}

.about-grid p {
  margin: 0 0 12px;
}

.about-contact-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about-contact-card h3 {
  margin: 0;
  font-size: 17px;
}

.about-contact-card p {
  margin: 0;
  font-size: 15px;
}

.big-link {
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
}

/* ── SEASON BANNER ── */
.season-banner {
  background: #fff7e6;
  border: 1px solid #f1d8a8;
  color: #5c3a00;
  padding: 14px 18px;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,.06);
  font-size: 15px;
}

/* ── FOOTER ── */
.footer {
  margin-top: 48px;
  padding: 26px 18px;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: #f7f5ef;
}

.footer a { color: var(--muted); }
.footer a:hover { color: var(--accent); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-image { min-height: 240px; }
  .about-grid { grid-template-columns: 1fr; }
  .produce-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .nav { display: none; }
  .hero-text h1 { font-size: 30px; }
  .logo { height: 44px; width: 44px; }
  .price-badge { font-size: 15px; }
}
