@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Lora:ital,wght@0,400;0,600;1,400&family=DM+Mono:wght@400;500&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
a, a:link, a:visited, a:hover, a:active { color: #d4a853; text-decoration: none; }

:root {
  /* Tropical garden — sunshine through the canopy */
  --bg:        #e0e8da;
  --bg-soft:   #e6ece0;
  --earth:     #3B2A1F;
  --bark:      #5A3E2B;
  --bark-deep: #3B2A1F;
  --gold:      #D9A441;
  --gold-deep: #A66B1F;
  --gold-pale: #F2D17A;
  --citrus:    #F1C94B;
  --orange:    #F28C28;
  --forest:    #2F6B3A;
  --canopy:    #1F4D2B;
  --leaf:      #4E8F42;
  --lime:      #7FBF4D;
  --fresh:     #A8D65E;
  --banana:    #7FBF4D;
  --aubergine: #6A2E5E;
  --lavender:  #9B79C6;
  --lilac:     #C7A7E2;
  --sunset:    #F07A2B;
  --wood:      #8A4F24;
  --clay:      #7B5332;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Lora', Georgia, serif;
  background: var(--bg);
  color: var(--earth);
  overflow-x: hidden;
}

/* ── SITE HEADER — ancient bark with fresh growth ── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: linear-gradient(135deg, var(--canopy) 0%, var(--forest) 50%, var(--leaf) 100%);
  border-bottom: 3px solid var(--lime);
  backdrop-filter: blur(8px);
  padding: 0.75rem 2rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  box-shadow: 0 2px 12px rgba(31,77,43,0.3);
}

.header-brand {
  display: flex; align-items: center; gap: 0.75rem;
  text-decoration: none;
}

.header-logo {
  height: 42px; width: auto; opacity: 0.95;
  border-radius: 6px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.2);
}

.brand-text {}
.brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; color: #fff; display: block; line-height: 1.1;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.brand-tagline {
  font-family: 'DM Mono', monospace;
  font-size: 0.55rem; color: var(--citrus); letter-spacing: 0.15em;
  text-transform: uppercase; display: block;
}

.site-nav {
  display: flex; align-items: center; gap: 0.25rem; flex-wrap: wrap;
}
.site-nav a {
  font-family: 'DM Mono', monospace; font-size: 0.62rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.85); text-decoration: none; padding: 0.4rem 0.7rem;
  border: 1px solid transparent; transition: all 0.2s;
  border-radius: 3px;
}
.site-nav a:hover, .site-nav a.active {
  color: #fff; background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.25);
}
.site-nav .nav-home {
  color: var(--citrus); font-weight: 600;
}

/* ── PAGE HERO ── */
.page-hero {
  min-height: 60vh;
  background-size: cover; background-position: left center;
  display: grid;
  grid-template-columns: 1fr 300px;
  align-items: end;
  padding: 3rem 0 4rem 2rem;
  position: relative;
  margin-top: 64px;
}

.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(31,77,43,0.1) 0%,
    rgba(31,77,43,0.05) 40%,
    rgba(31,77,43,0.6) 75%,
    rgba(31,77,43,0.88) 100%
  );
}

.hero-content {
  position: relative; z-index: 1; max-width: 860px;
}

.hero-badge {
  font-family: 'DM Mono', monospace; font-size: 0.65rem;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--citrus); display: block; margin-bottom: 0.75rem;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700; line-height: 1.05; color: #ffffff;
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.hero-content h1 em { font-style: italic; color: var(--citrus); }

.hero-intro {
  font-family: 'Lora', serif; font-size: clamp(1rem, 2vw, 1.2rem);
  font-style: italic; color: #ffffff; max-width: 620px; line-height: 1.7;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

/* ── HERO OPS PANEL — dappled shade ── */
.hero-ops {
  position: relative; z-index: 2;
  background: linear-gradient(180deg, rgba(31,77,43,0.88) 0%, rgba(31,77,43,0.94) 100%);
  backdrop-filter: blur(12px);
  border-left: 3px solid var(--lime);
  padding: 1.4rem 1.6rem;
  align-self: stretch;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.hero-ops-logo {
  width: 100%;
  max-height: 45vh;
  object-fit: contain;
  display: block;
  flex: 1 1 auto;
  margin: 0 auto;
  padding: 1rem 0.5rem;
  opacity: 0.92;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}
.hero-ops-title {
  font-family: 'DM Mono', monospace;
  font-size: 0.58rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--fresh);
  margin-bottom: 0.8rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(168,214,94,0.25);
}
.hero-ops-status {
  display: flex; align-items: center; gap: 0.5rem;
  margin-bottom: 0.8rem;
}
.status-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--fresh);
  box-shadow: 0 0 6px rgba(168,214,94,0.6);
  flex-shrink: 0;
}
.status-dot.closed { background: #cc6644; box-shadow: 0 0 6px rgba(204,102,68,0.6); }
.status-dot.limited { background: var(--citrus); box-shadow: 0 0 6px rgba(241,201,75,0.6); }
.status-text {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem; color: rgba(255,255,255,0.8);
  letter-spacing: 0.05em;
}
.hero-ops-hours {
  list-style: none; padding: 0; margin: 0;
}
.hero-ops-hours li {
  display: flex; justify-content: space-between;
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(168,214,94,0.1);
  font-size: 0.78rem; color: rgba(255,255,255,0.75);
}
.hero-ops-hours li:last-child { border-bottom: none; }
.hero-ops-hours .day { font-family: 'Lora', serif; }
.hero-ops-hours .time {
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem; color: var(--citrus);
}
.hero-ops-welcome {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; font-style: italic;
  color: #fff; line-height: 1.4;
  margin-bottom: 0.8rem;
}
.hero-ops-note {
  font-size: 0.68rem; color: rgba(255,255,255,0.5);
  font-style: italic; margin-top: 0.6rem;
  line-height: 1.5;
}
.hero-ops-cya {
  font-family: 'Playfair Display', serif;
  font-size: 0.85rem; font-style: italic;
  color: var(--citrus); margin-top: 0.8rem;
  text-align: right;
}

@media (max-width: 900px) {
  .page-hero {
    grid-template-columns: 1fr;
    padding: 2rem 1rem 2.5rem;
  }
  .hero-ops {
    border-left: none;
    border-top: 3px solid var(--lime);
    margin-top: 1.5rem;
  }
}

/* ── WEDGE ACCENT ── */
.wedge-accent {
  width: 320px; height: auto; opacity: 0.92;
  position: absolute; bottom: 1rem; right: 1.5rem;
  filter: drop-shadow(0 6px 30px rgba(0,0,0,0.5));
}

/* ── PAGE BODY — sunshine on the page ── */
.page-body {
  max-width: 900px; margin: 0 auto; padding: 4rem 2rem 6rem;
}
.page-body.has-sidebar {
  max-width: 1200px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
}
.page-body.has-sidebar .main-content { min-width: 0; }

/* ── SPOKE SIDEBAR — like a market stall chalkboard ── */
.spoke-sidebar {
  position: sticky; top: 80px; align-self: start;
}
.sidebar-card {
  background: #fff;
  border: 2px solid var(--leaf);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.2rem;
  box-shadow: 0 2px 8px rgba(78,143,66,0.1);
}
.sidebar-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; color: var(--forest);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--fresh);
}
.sidebar-card h4 {
  font-family: 'DM Mono', monospace;
  font-size: 0.62rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--leaf);
  margin: 1rem 0 0.5rem; opacity: 0.9;
}
.sidebar-card h4:first-of-type { margin-top: 0.2rem; }
.menu-list {
  list-style: none; padding: 0; margin: 0 0 0.8rem;
}
.menu-list li {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(78,143,66,0.12);
  font-size: 0.85rem; color: var(--earth); line-height: 1.4;
}
.menu-list li:last-child { border-bottom: none; }
.menu-list .item-name { flex: 1; }
.menu-list .item-price {
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem; color: var(--forest); font-weight: 600;
  white-space: nowrap; margin-left: 0.8rem;
}
.menu-list .item-note {
  font-size: 0.72rem; color: var(--clay);
  font-style: italic; display: block;
}
.sidebar-note {
  font-size: 0.75rem; color: var(--clay);
  font-style: italic; line-height: 1.6;
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(78,143,66,0.12);
}
.sidebar-badge {
  display: inline-block;
  font-family: 'DM Mono', monospace;
  font-size: 0.55rem; letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--leaf); color: #fff;
  padding: 0.25rem 0.7rem;
  border-radius: 12px; margin-bottom: 0.8rem;
}
.sidebar-cta {
  display: block; text-align: center;
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem; letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff; text-decoration: none;
  background: linear-gradient(135deg, var(--forest) 0%, var(--leaf) 100%);
  border: none;
  padding: 0.7rem 1rem; margin-top: 1rem;
  transition: all 0.2s; border-radius: 6px;
  box-shadow: 0 2px 6px rgba(47,107,58,0.3);
}
.sidebar-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(47,107,58,0.4); }

@media (max-width: 900px) {
  .page-body.has-sidebar {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .spoke-sidebar {
    position: static;
    margin-top: 2rem;
  }
}

.page-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--canopy); margin: 2.5rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 3px solid var(--lime);
}

.page-body h2:first-child { margin-top: 0; }

.page-body p {
  font-size: 1rem; line-height: 1.9; color: #2a2a2a;
  margin-bottom: 1.2rem;
}

.page-body strong { color: var(--forest); }

.page-body ul {
  padding-left: 1.5rem; margin-bottom: 1.5rem;
}
.page-body li {
  font-size: 1rem; line-height: 1.8; color: #333;
  margin-bottom: 0.4rem;
}
.page-body li strong { color: var(--canopy); }

/* ── PULL QUOTE — sunshine streak ── */
.pull-quote {
  border-left: 4px solid var(--citrus);
  padding: 1.2rem 1.5rem;
  margin: 2rem 0;
  background: linear-gradient(90deg, rgba(241,201,75,0.08) 0%, rgba(168,214,94,0.06) 100%);
  border-radius: 0 8px 8px 0;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-style: italic; color: var(--bark); line-height: 1.6;
}

/* ── INFO CARDS — fresh produce boxes ── */
.card-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.2rem; margin: 2rem 0;
}

.info-card {
  background: #fff;
  border: 2px solid var(--lime);
  border-top: 4px solid var(--leaf);
  padding: 1.5rem; border-radius: 8px;
  box-shadow: 0 2px 8px rgba(78,143,66,0.08);
}

.info-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; color: var(--forest); margin-bottom: 0.75rem;
}

.info-card p, .info-card li {
  font-size: 0.88rem; line-height: 1.75; color: #444;
}

/* ── BACK NAV ── */
.back-to-wheel {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: 'DM Mono', monospace; font-size: 0.65rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: #fff; text-decoration: none;
  background: var(--leaf);
  padding: 0.5rem 1rem; margin-bottom: 3rem;
  transition: all 0.2s; border-radius: 6px; border: none;
  box-shadow: 0 2px 6px rgba(78,143,66,0.25);
}
.back-to-wheel:hover { background: var(--forest); transform: translateY(-1px); }

/* ── PHOTO STRIP ── */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0.5rem; margin: 2.5rem 0;
}
.photo-strip img {
  width: 100%; height: 260px; object-fit: cover;
  display: block; border-radius: 6px;
  transition: filter 0.3s, transform 0.3s;
}
.photo-strip img:hover { transform: scale(1.02); }

/* ── SITE FOOTER — forest floor ── */
.site-footer {
  background: linear-gradient(135deg, var(--canopy) 0%, var(--forest) 100%);
  padding: 3rem 2rem 2rem;
  text-align: center;
  border-top: 4px solid var(--lime);
}
.footer-logo { max-width: 180px; opacity: 0.9; margin: 0 auto 1.5rem; display: block; }
.footer-nav {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 0.3rem 1rem; margin-bottom: 1.2rem;
}
.footer-nav a {
  font-family: 'DM Mono', monospace; font-size: 0.6rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--fresh); text-decoration: none; transition: color 0.2s;
}
.footer-nav a:hover { color: var(--citrus); }
.footer-tagline { font-family: 'Lora', serif; font-style: italic; font-size: 0.8rem; color: rgba(255,255,255,0.7); margin-bottom: 0.4rem; }
.footer-copy { font-family: 'DM Mono', monospace; font-size: 0.58rem; color: rgba(255,255,255,0.4); letter-spacing: 0.1em; }

/* ── OPS PAGES ── */
.ops-body { font-family: 'DM Mono', monospace; background: #080a08; color: #b8c8b0; }
.ops-header {
  position: sticky; top: 0; z-index: 100;
  background: #0d0f0d; border-bottom: 1px solid #1e281e;
  padding: 0.75rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem;
}
.ops-brand { display: flex; align-items: center; gap: 0.5rem; }
.ops-mark { color: #4a7c59; font-size: 1rem; }
.ops-brand-name { font-size: 0.85rem; color: #b8c8b0; }
.ops-brand-sub { font-size: 0.6rem; color: #5a7a54; }
.ops-nav { display: flex; flex-wrap: wrap; gap: 0.2rem; }
.ops-nav a {
  font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: #5a7a54; text-decoration: none; padding: 0.3rem 0.6rem;
  border: 1px solid transparent; transition: all 0.2s;
}
.ops-nav a:hover { color: #b8c8b0; border-color: #1e281e; }
.ops-wrap { max-width: 900px; margin: 0 auto; padding: 2.5rem 1.5rem 5rem; }
.ops-badge { display: inline-block; font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase; background: #1e3828; color: #4a9a64; padding: 0.2rem 0.6rem; margin-bottom: 0.75rem; }
.ops-h1 { font-family: 'Lora', serif; font-size: 1.8rem; color: #c8d4c0; margin-bottom: 0.4rem; font-weight: 400; }
.ops-lead { font-size: 0.9rem; color: #5a7a54; font-style: italic; margin-bottom: 2rem; }
.ops-card { background: #0d0f0d; border: 1px solid #1e281e; padding: 1.5rem; margin-bottom: 1rem; }
.ops-card h2 { font-family: 'Lora', serif; font-size: 1.1rem; color: #b8c8b0; margin-bottom: 0.8rem; font-weight: 400; }
.ops-card p, .ops-card li { font-size: 0.82rem; line-height: 1.7; color: #5a7a54; }
.ops-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; margin-top: 1rem; }
.ops-footer { border-top: 1px solid #1e281e; padding: 1.5rem 0 0; margin-top: 3rem; display: flex; justify-content: space-between; font-size: 0.6rem; color: #3a5a3a; flex-wrap: wrap; gap: 0.5rem; }
.ops-footer a { color: #3a5a3a; text-decoration: none; }
.ops-footer a:hover { color: #4a9a64; }

/* ── HAMBURGER BUTTON ── */
.nav-toggle {
  display: none;
  background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3);
  color: #fff; font-size: 1.4rem; padding: 0.3rem 0.6rem;
  cursor: pointer; line-height: 1; border-radius: 4px;
}

@media (max-width: 768px) {
  .nav-toggle { display: block; }

  .site-header {
    flex-wrap: wrap; padding: 0.5rem 1rem;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    background: linear-gradient(180deg, var(--canopy) 0%, var(--forest) 100%);
    padding: 0.5rem 0;
    border-top: 2px solid var(--lime);
    margin-top: 0.5rem;
    border-radius: 0 0 8px 8px;
  }
  .site-nav.open { display: flex; }
  .site-nav a {
    padding: 0.6rem 1rem;
    font-size: 0.72rem;
    border-bottom: 1px solid rgba(168,214,94,0.1);
  }

  .page-hero {
    aspect-ratio: auto;
    min-height: auto;
    max-height: none;
    grid-template-columns: 1fr;
    padding: 2rem 1rem 0;
    margin-top: 56px;
  }
  .hero-ops {
    border-left: none;
    border-top: 3px solid var(--lime);
    background: linear-gradient(180deg, rgba(31,77,43,0.90) 0%, rgba(31,77,43,0.95) 100%);
    padding: 1rem 1.2rem;
  }
  .hero-ops-welcome { font-size: 0.85rem; margin-bottom: 0.5rem; }
  .hero-ops-hours li { font-size: 0.72rem; padding: 0.25rem 0; }
  .hero-ops-note { font-size: 0.62rem; }
  .hero-ops-cya { font-size: 0.75rem; margin-top: 0.5rem; }
  .hero-content h1 { font-size: 1.8rem; }
  .hero-intro { font-size: 0.95rem; }

  .wedge-accent { width: 140px; bottom: 0.5rem; right: 0.5rem; }

  .page-body { padding: 2rem 1rem 4rem; }
  .page-body h2 { font-size: 1.3rem; }

  .footer-nav { gap: 0.2rem 0.6rem; }
  .footer-nav a { font-size: 0.55rem; }
}
