/* ==========================================================================
   Arbor Food Park — demo site styles
   Palette: warm cream / deep ink / terracotta clay / sage / gold
   ========================================================================== */

:root {
  --ink: #1c1510;
  --ink-2: #2a2018;
  --cream: #faf3e6;
  --cream-2: #f3e8d4;
  --clay: #d96c2f;
  --clay-dark: #b4521f;
  --sage: #8a9b7a;
  --sage-dark: #5f7051;
  --gold: #e8b04b;
  --paper: #fffdf8;
  --line: rgba(28, 21, 16, 0.14);
  --line-light: rgba(250, 243, 230, 0.18);
  --shadow: 0 18px 50px -18px rgba(28, 21, 16, 0.45);
  --radius: 18px;
  --font-display: "Georgia", "Times New Roman", ui-serif, serif;
  --font-body: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.12; }

.container {
  width: min(1120px, 92%);
  margin-inline: auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 650;
  font-size: 15px;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }

.btn-primary { background: var(--clay); color: #fff; box-shadow: 0 10px 24px -10px rgba(217, 108, 47, 0.7); }
.btn-primary:hover { background: var(--clay-dark); }

.btn-ghost { border-color: var(--line); color: var(--ink); background: transparent; }
.btn-ghost:hover { border-color: var(--ink); background: var(--paper); }

.btn-light { background: var(--cream); color: var(--ink); }
.btn-light:hover { background: #fff; }

.btn-block { width: 100%; }
.btn-sm { padding: 9px 18px; font-size: 14px; }

/* ---------- Eyebrow / kicker ---------- */
.eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 14px;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.kicker-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(232, 176, 75, 0.25); }

/* ==========================================================================
   NAV
   ========================================================================== */
.site-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  background: rgba(28, 21, 16, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease;
}
.site-nav.scrolled {
  background: rgba(28, 21, 16, 0.92);
  border-bottom-color: var(--line-light);
}
.nav-inner {
  width: min(1120px, 92%);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  color: var(--cream);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 21px;
  color: var(--cream);
}
.brand-mark { font-size: 24px; line-height: 1; }
.brand-name em { font-style: italic; color: var(--gold); }
.nav-links { display: flex; gap: 30px; }
.nav-links a {
  color: var(--cream);
  text-decoration: none;
  font-size: 15px;
  font-weight: 550;
  opacity: 0.85;
  transition: opacity 0.2s ease, color 0.2s ease;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -5px;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.2s ease;
}
.nav-links a:hover { opacity: 1; }
.nav-links a:hover::after { width: 100%; }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.nav-burger span { width: 24px; height: 2px; background: var(--cream); border-radius: 2px; transition: transform 0.2s ease, opacity 0.2s ease; }
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 14px 4% 22px;
  background: var(--ink);
  border-bottom: 1px solid var(--line-light);
}
.nav-mobile a { color: var(--cream); text-decoration: none; padding: 10px 4px; font-size: 17px; }
.nav-mobile .btn { align-self: flex-start; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--cream);
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(28, 21, 16, 0.62) 0%, rgba(28, 21, 16, 0.28) 42%, rgba(28, 21, 16, 0.86) 100%),
    linear-gradient(90deg, rgba(28, 21, 16, 0.55) 0%, rgba(28, 21, 16, 0.1) 60%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(1120px, 92%);
  margin-inline: auto;
  padding: 120px 0 90px;
}
.hero-title {
  font-size: clamp(52px, 9vw, 104px);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 18px 0 22px;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.35);
}
.hero-sub {
  max-width: 560px;
  font-size: clamp(16px, 1.6vw, 19px);
  color: rgba(250, 243, 230, 0.92);
  margin-bottom: 34px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 46px; }
.hero-cta .btn-ghost { border-color: rgba(250, 243, 230, 0.4); color: var(--cream); }
.hero-cta .btn-ghost:hover { border-color: var(--cream); background: rgba(250, 243, 230, 0.1); }
.hero-facts {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  font-size: 14.5px;
  color: rgba(250, 243, 230, 0.85);
}
.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 28px;
  height: 46px;
  border: 2px solid rgba(250, 243, 230, 0.5);
  border-radius: 16px;
}
.hero-scroll span {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 4px;
  height: 9px;
  margin-left: -2px;
  border-radius: 3px;
  background: var(--gold);
  animation: scroll-dot 1.8s ease-in-out infinite;
}
@keyframes scroll-dot {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ==========================================================================
   TICKER
   ========================================================================== */
.ticker {
  background: var(--clay);
  color: #fff;
  overflow: hidden;
  padding: 13px 0;
}
.ticker-track {
  display: flex;
  gap: 26px;
  width: max-content;
  animation: ticker 26s linear infinite;
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.ticker-track i { font-style: normal; color: rgba(255, 255, 255, 0.6); }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ==========================================================================
   SECTIONS (shared)
   ========================================================================== */
.section { padding: 96px 0; }
.section-head { max-width: 640px; margin-bottom: 52px; }
.section-head h2, .visit-copy h2, .contact-copy h2 { font-size: clamp(32px, 4.4vw, 46px); margin-bottom: 16px; }
.section-note { color: rgba(28, 21, 16, 0.68); font-size: 15px; margin-top: 10px; }
.section-note em { font-style: italic; }

/* ---------- About ---------- */
.about { background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-media { position: relative; }
.about-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 3 / 2;
  object-fit: cover;
  width: 100%;
}
.about-badge {
  position: absolute;
  right: -18px;
  bottom: -20px;
  background: var(--ink);
  color: var(--cream);
  border-radius: 16px;
  padding: 18px 22px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid rgba(250, 243, 230, 0.12);
}
.about-badge-big { display: block; font-family: var(--font-display); font-size: 34px; color: var(--gold); line-height: 1; }
.about-badge-small { font-size: 11.5px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(250, 243, 230, 0.8); }
.about-copy h2 { margin-bottom: 20px; }
.about-copy p { color: rgba(28, 21, 16, 0.8); margin-bottom: 16px; }
.about-points {
  list-style: none;
  margin: 26px 0 32px;
  display: grid;
  gap: 14px;
}
.about-points li {
  padding-left: 38px;
  position: relative;
  font-size: 15.5px;
  color: rgba(28, 21, 16, 0.85);
}
.about-points li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 1px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(138, 155, 122, 0.22);
  color: var(--sage-dark);
  font-size: 13px;
  display: grid;
  place-items: center;
}
.about-points strong { color: var(--ink); }

/* ---------- Vendors ---------- */
.vendors { background: var(--paper); }
.vendor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 26px;
}
.vendor-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.vendor-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.vendor-img { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.vendor-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.vendor-card:hover .vendor-img img { transform: scale(1.05); }
.vendor-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(28, 21, 16, 0.78);
  color: var(--cream);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}
.vendor-body { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.vendor-body h3 { font-size: 22px; }
.vendor-meta { font-size: 14.5px; color: rgba(28, 21, 16, 0.78); }
.vendor-note { margin-top: auto; padding-top: 12px; font-size: 12.5px; color: rgba(28, 21, 16, 0.5); font-style: italic; }

.vendor-card-empty {
  border: 2px dashed rgba(28, 21, 16, 0.28);
  background: var(--cream-2);
  justify-content: center;
}
.vendor-empty {
  padding: 30px 26px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  justify-content: center;
  flex: 1;
}
.vendor-empty-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--gold);
  font-size: 26px;
  display: grid;
  place-items: center;
}
.vendor-empty h3 { font-size: 21px; }
.vendor-empty p { font-size: 14.5px; color: rgba(28, 21, 16, 0.72); }

/* ---------- Visit ---------- */
.visit { background: var(--ink); color: var(--cream); }
.visit .eyebrow { color: var(--gold); }
.visit-copy h2 { color: var(--cream); }
.visit-address {
  font-style: normal;
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 26px);
  line-height: 1.5;
  margin: 8px 0 16px;
}
.visit-desc { color: rgba(250, 243, 230, 0.75); max-width: 440px; }
.visit-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.visit-actions .btn-ghost { border-color: rgba(250, 243, 230, 0.35); color: var(--cream); }
.visit-actions .btn-ghost:hover { border-color: var(--cream); background: rgba(250, 243, 230, 0.08); }

.visit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.hours-card {
  background: rgba(250, 243, 230, 0.06);
  border: 1px solid rgba(250, 243, 230, 0.14);
  border-radius: var(--radius);
  padding: 30px 32px;
}
.hours-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.hours-head h3 { font-size: 24px; color: var(--cream); }
.hours-pill {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--gold);
  padding: 5px 12px;
  border-radius: 999px;
}
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table th, .hours-table td {
  text-align: left;
  padding: 9px 0;
  font-size: 14.5px;
  border-bottom: 1px solid rgba(250, 243, 230, 0.1);
}
.hours-table th { font-weight: 600; color: rgba(250, 243, 230, 0.75); width: 45%; }
.hours-table td { color: rgba(250, 243, 230, 0.9); font-style: italic; }
.hours-table tr:last-child th, .hours-table tr:last-child td { border-bottom: 0; }
.hours-note { margin-top: 16px; font-size: 13px; color: rgba(250, 243, 230, 0.6); line-height: 1.55; }

/* ---------- Events ---------- */
.events { background: var(--cream); }
.event-strip { display: grid; gap: 20px; }
.event-card {
  display: flex;
  align-items: center;
  gap: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 28px;
  box-shadow: 0 10px 30px -22px rgba(28, 21, 16, 0.4);
}
.event-card-placeholder { border-style: dashed; }
.event-date {
  flex: 0 0 auto;
  width: 74px;
  height: 74px;
  border-radius: 14px;
  background: var(--ink);
  color: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.1;
}
.event-date-day { font-family: var(--font-display); font-size: 26px; color: var(--gold); }
.event-date-month { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.75; }
.event-body { flex: 1; }
.event-body h3 { font-size: 20px; margin-bottom: 4px; }
.event-body p { font-size: 14.5px; color: rgba(28, 21, 16, 0.72); max-width: 560px; }

/* ---------- Contact ---------- */
.contact { background: var(--paper); }
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: start; }
.contact-list { list-style: none; margin-top: 30px; display: grid; gap: 22px; }
.contact-list li { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--cream-2);
  display: grid;
  place-items: center;
  font-size: 20px;
}
.contact-list strong { display: block; font-size: 15px; margin-bottom: 2px; }
.contact-list a { color: var(--clay-dark); text-decoration: underline; text-underline-offset: 3px; }
.contact-list small { display: block; font-size: 12.5px; color: rgba(28, 21, 16, 0.55); font-style: italic; }
.contact-card .hours-card { background: var(--ink); color: var(--cream); border-color: rgba(250, 243, 230, 0.12); }
.contact-card .hours-card h3 { color: var(--cream); margin-bottom: 10px; }
.contact-card .hours-card p { color: rgba(250, 243, 230, 0.78); font-size: 14.5px; margin-bottom: 20px; }
.contact-card-small { margin-top: 14px; text-align: center; }
.contact-card-small small { color: rgba(250, 243, 230, 0.55); }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: var(--cream); border-top: 1px solid var(--line-light); padding: 44px 0; }
.footer-inner { display: flex; flex-direction: column; gap: 10px; align-items: center; text-align: center; }
.footer-brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display); font-size: 20px; }
.footer-brand em { font-style: italic; color: var(--gold); }
.footer-addr { font-size: 14px; color: rgba(250, 243, 230, 0.7); }
.footer-note { font-size: 12.5px; color: rgba(250, 243, 230, 0.45); max-width: 560px; }

/* ==========================================================================
   REVEAL ON SCROLL
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .ticker-track { animation: none; }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 900px) {
  .about-grid, .visit-grid, .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .about-media img { max-height: 420px; }
  .section { padding: 72px 0; }
}
@media (max-width: 720px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .nav-mobile.open { display: flex; }
  .event-card { flex-direction: column; align-items: flex-start; text-align: left; }
  .about-badge { right: 8px; bottom: -14px; }
}
