/* =========================================================
   Strikes Market — home.css
   Garden Tree Webflow reference applied:
   · Bricolage Grotesque headings, Inter body
   · 0 border-radius (sharp corners)
   · dark-green text + pale yellow-green highlight
   · full-bleed hero with centered text
   · accordion, stats counters, showcase grid, mixed gallery
   ========================================================= */

:root {
  /* Palette (Strikes Market greens preserved; green-accent plays Garden Tree's lemon role) */
  --ink: #021e05;            /* near-black green, body text */
  --forest: #374629;         /* dark green */
  --forest-med: #546a40;     /* medium green */
  --lemon: #d1e437;          /* lemon-green accent (Garden Tree signature) */
  --lemon-soft: #f0fa99;     /* pale yellow-green (button text, highlight bg) */
  --olive: #798c4f;          /* muted olive */
  --cream: #f9f7ef;          /* pale cream bg */
  --cream-deep: #f0ebd9;
  --rust: #9a3718;           /* preserved — rare accent */
  --line: rgba(2, 30, 5, 0.12);
  --line-soft: rgba(2, 30, 5, 0.06);
  --white: #ffffff;

  /* Typography */
  --font-display: "Cormorant Garamond", "EB Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  /* Layout */
  --container: 1320px;
  --gutter: clamp(20px, 4vw, 64px);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-slow: cubic-bezier(0.33, 1, 0.68, 1);

  --nav-h: 84px;
}

*, *::before, *::after { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}
body {
  margin: 0;
  background: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, iframe { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; padding: 0; }
ul, ol, li { margin: 0; padding: 0; list-style: none; }
p { margin: 0 0 1em; }
p:last-child { margin: 0; }
address { font-style: normal; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.012em;
  margin: 0;
  color: var(--ink);
}
em { font-style: italic; font-weight: inherit; }

.skip-link {
  position: absolute; left: -9999px;
  background: var(--ink); color: var(--lemon-soft); padding: 10px 16px;
  z-index: 9999;
}
.skip-link:focus { left: 0; top: 0; }

/* ================================================
   NAV (transparent over hero, solid on scroll)
================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: transparent;
  transition: background .4s var(--ease), color .4s var(--ease);
}
.nav.is-scrolled {
  background: var(--white);
  box-shadow: 0 1px 0 var(--line-soft);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 32px;
  height: var(--nav-h);
}
.brand {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--white);
  transition: color .4s var(--ease);
}
.nav.is-scrolled .brand { color: var(--ink); }
.brand-mark {
  width: 42px; height: 42px;
  object-fit: contain;
}
.brand-word {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
}
.brand-word em {
  font-style: italic;
  letter-spacing: 0.03em;
  margin-right: 2px;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2.4vw, 32px);
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: var(--white);
  padding: 6px 0;
  position: relative;
  opacity: .8;
  transition: opacity .2s var(--ease), color .4s var(--ease);
}
.nav.is-scrolled .nav-links a { color: var(--ink); }
.nav-links a:hover { opacity: 1; }
.nav-links a.is-current { opacity: 1; font-weight: 500; }
.nav-links a.is-current::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--lemon);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: var(--forest);
  color: var(--lemon-soft);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.nav-cta:hover {
  background: var(--lemon-soft);
  color: var(--forest);
}

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column; gap: 6px;
  align-items: center; justify-content: center;
  color: var(--white);
  transition: color .4s var(--ease);
}
.nav.is-scrolled .nav-toggle { color: var(--ink); }
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: currentColor;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 12px var(--gutter) 28px;
  gap: 2px;
  background: var(--white);
  border-top: 1px solid var(--line-soft);
}
.nav-mobile a {
  padding: 16px 0;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--line-soft);
}
.nav-mobile a.is-current { color: var(--forest); }
.nav-mobile .mobile-phone {
  margin-top: 14px;
  background: var(--forest);
  color: var(--lemon-soft);
  padding: 16px;
  text-align: center;
  font-size: 16px;
  border: none;
}

@media (max-width: 920px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-inner { grid-template-columns: auto 1fr auto; }
  .nav.is-open { background: var(--white); }
  .nav.is-open .brand { color: var(--ink); }
  .nav.is-open .nav-toggle { color: var(--ink); }
  .nav.is-open .nav-mobile { display: flex; }
}

/* ================================================
   BUTTONS (sharp corners, Garden Tree style)
================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 32px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.btn svg { transition: transform .25s var(--ease); }
.btn:hover svg { transform: translate(3px, -3px); }
.btn-primary {
  background: var(--forest);
  color: var(--lemon-soft);
  border-color: var(--forest);
}
.btn-primary:hover {
  background: var(--lemon-soft);
  color: var(--forest);
  border-color: var(--lemon-soft);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--forest);
}
/* on light sections outline buttons use ink color */
.welcome .btn-outline, .showcase .btn-outline, .gallery-strip-section .btn-outline, .visit .btn-outline {
  color: var(--ink);
  border-color: var(--ink);
}
.welcome .btn-outline:hover, .showcase .btn-outline:hover, .gallery-strip-section .btn-outline:hover, .visit .btn-outline:hover {
  background: var(--ink);
  color: var(--lemon-soft);
}

/* ================================================
   HERO (full-bleed image, centered text)
================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  height: 100vh;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
}
.hero-veil {
  position: absolute; inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(2, 15, 5, 0.3) 0%, rgba(2, 15, 5, 0.15) 50%, rgba(2, 15, 5, 0.6) 100%);
}
.hero-content {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  text-align: center;
  color: var(--white);
}
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--lemon);
  margin: 0 0 28px;
}
.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(44px, 7.5vw, 96px);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--white);
  margin: 0 0 28px;
}
.hero-heading em {
  font-style: italic;
  color: var(--lemon);
  font-weight: 500;
}
.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
  max-width: 38em;
  margin: 0 auto 40px;
}
.hero-actions {
  display: inline-flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ================================================
   SECTION SHELLS
================================================ */
.welcome, .accordion-section, .showcase, .gallery-strip-section, .visit {
  padding: clamp(80px, 10vw, 140px) var(--gutter);
}
.stats {
  padding: clamp(60px, 7vw, 96px) var(--gutter);
  background: var(--forest);
  color: var(--lemon-soft);
}
.welcome, .showcase { background: var(--white); }
.accordion-section, .gallery-strip-section { background: var(--cream); }
.visit { background: var(--white); }

.label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--forest);
  margin: 0 0 20px;
}
.big-heading {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.4vw, 56px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 0 28px;
  max-width: 22ch;
}
.big-heading em {
  font-style: italic;
  color: var(--forest);
  font-weight: 500;
}

.section-head {
  max-width: var(--container);
  margin: 0 auto clamp(48px, 6vw, 80px);
}
.section-head-split {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  flex-wrap: wrap;
}
.section-head-split > div { max-width: 28em; }

/* ================================================
   WELCOME  (asymmetric — label left, heading right)
================================================ */
.welcome-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2.5fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}
.welcome-side { padding-top: 16px; }
.welcome-main .big-heading { margin-bottom: 36px; }
.welcome-body p {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  max-width: 36em;
  margin-bottom: 1.2em;
  opacity: .82;
}
.welcome-body .signature {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(22px, 2vw, 28px);
  color: var(--forest);
  opacity: 1;
  margin: 28px 0 8px;
  font-weight: 500;
}
.welcome-body .signature em { font-style: italic; }
.welcome-body .btn { margin-top: 24px; }

@media (max-width: 820px) {
  .welcome-inner { grid-template-columns: 1fr; gap: 24px; }
}

/* ================================================
   STATS (dark forest bg, large counters)
================================================ */
.stats-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.stat {
  padding: 0;
  border-left: 1px solid rgba(240, 250, 153, 0.2);
  padding-left: 24px;
}
.stat:first-child { border-left: none; padding-left: 0; }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(54px, 6.5vw, 88px);
  font-weight: 500;
  line-height: 1;
  color: var(--lemon);
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}
.stat-num span { color: inherit; }
.stat-label {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.55;
  color: rgba(240, 250, 153, 0.82);
  margin: 0;
}
@media (max-width: 900px) {
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
  .stat:nth-child(3) { border-left: none; padding-left: 0; }
}
@media (max-width: 560px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat { border-left: none; padding-left: 0; border-top: 1px solid rgba(240, 250, 153, 0.2); padding-top: 24px; }
  .stat:first-child { border-top: none; padding-top: 0; }
}

/* ================================================
   ACCORDION (seasons)
================================================ */
.accordion {
  max-width: 1060px;
  margin: 0 auto;
  border-top: 1px solid var(--ink);
}
.accordion-item {
  border-bottom: 1px solid var(--ink);
}
.accordion-item summary {
  display: grid;
  grid-template-columns: 60px 1fr auto 48px;
  align-items: center;
  gap: 20px;
  padding: 28px 4px;
  cursor: pointer;
  list-style: none;
  transition: padding .3s var(--ease);
}
.accordion-item summary::-webkit-details-marker { display: none; }
.accordion-item[open] summary { padding-bottom: 12px; }
.accordion-item summary:hover { padding-left: 12px; }
.ac-index {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--forest);
  letter-spacing: 0.04em;
}
.ac-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 500;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.ac-sub {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--forest-med);
  font-weight: 400;
}
.ac-toggle {
  width: 48px; height: 48px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--ink);
  color: var(--lemon-soft);
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.accordion-item[open] .ac-toggle {
  background: var(--lemon);
  color: var(--ink);
  transform: rotate(135deg);
}
.ac-body {
  padding: 0 4px 28px 80px;
  max-width: 52em;
}
.ac-body p {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  opacity: .8;
  margin: 0;
}
@media (max-width: 640px) {
  .accordion-item summary { grid-template-columns: 40px 1fr 40px; gap: 14px; padding: 22px 4px; }
  .ac-sub { display: none; }
  .ac-toggle { width: 40px; height: 40px; }
  .ac-body { padding: 0 4px 22px 54px; }
  .ac-title { font-size: 26px; }
}

/* ================================================
   SHOWCASE (3-card recipe grid)
================================================ */
.showcase-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.show-card {
  display: flex;
  flex-direction: column;
  transition: transform .3s var(--ease);
}
.show-card:hover { transform: translateY(-4px); }
.show-fig {
  margin: 0;
  overflow: hidden;
  background: var(--cream-deep);
  aspect-ratio: 4/5;
}
.show-fig img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-slow);
}
.show-card:hover .show-fig img { transform: scale(1.06); }
.show-meta {
  padding: 22px 0 8px;
}
.show-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--forest);
  background: var(--lemon-soft);
  padding: 4px 12px;
  margin-bottom: 16px;
}
.show-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 500;
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.show-source {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--forest-med);
  opacity: .8;
}
@media (max-width: 820px) {
  .showcase-grid { grid-template-columns: 1fr; gap: 32px; }
  .show-fig { aspect-ratio: 16/11; }
}

/* ================================================
   GALLERY STRIP (mixed-height grid)
================================================ */
.gallery-strip {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
}
.gs {
  margin: 0;
  overflow: hidden;
  background: var(--cream-deep);
}
.gs.gs-tall { grid-row: span 2; }
.gs a { display: block; width: 100%; height: 100%; }
.gs img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-slow);
}
.gs:hover img { transform: scale(1.05); }
@media (max-width: 900px) {
  .gallery-strip { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 180px; }
  .gs:nth-child(n+4) { display: none; }
  .gs.gs-tall { grid-row: auto; }
}
@media (max-width: 560px) {
  .gallery-strip { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
  .gs:nth-child(n+3) { display: none; }
}

/* ================================================
   VISIT
================================================ */
.visit-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
}
.visit-lede {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  opacity: .82;
  max-width: 30em;
  margin: 0 0 28px;
}
.hours {
  margin: 0 0 32px;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 32px;
  row-gap: 16px;
  padding: 28px 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.hours dt {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--forest);
  align-self: baseline;
}
.hours dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.3;
  font-variant-numeric: tabular-nums;
}
.hours a { transition: color .2s var(--ease); }
.hours a:hover { color: var(--forest); }

.visit-map {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--cream-deep);
}
.visit-map iframe {
  width: 100%; height: 100%;
  border: 0;
  filter: saturate(.94);
}

@media (max-width: 900px) {
  .visit-inner { grid-template-columns: 1fr; }
}

/* ================================================
   FOOTER
================================================ */
.footer {
  background: var(--ink);
  color: var(--lemon-soft);
  padding: clamp(80px, 9vw, 130px) var(--gutter) clamp(32px, 4vw, 60px);
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(240, 250, 153, 0.15);
  margin-bottom: 32px;
}
.footer-brand { display: flex; flex-direction: column; gap: 12px; }
.footer-logo {
  width: 56px; height: 56px;
  object-fit: contain;
  margin-bottom: 8px;
}
.footer-mark {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  color: var(--lemon-soft);
  margin: 0;
  line-height: 1;
}
.footer-tag {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(240, 250, 153, 0.65);
  margin: 0;
}
.footer-col p { margin: 0 0 .6em; font-size: 15px; line-height: 1.6; color: rgba(240, 250, 153, 0.82); }
.footer-col a { transition: color .2s var(--ease); }
.footer-col a:hover { color: var(--lemon); }
.footer-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lemon);
  margin: 0 0 16px !important;
}
.footer-nav { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a {
  font-family: var(--font-body);
  font-size: 15px;
  color: rgba(240, 250, 153, 0.82);
  transition: color .2s var(--ease);
}
.footer-nav a:hover { color: var(--lemon); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(240, 250, 153, 0.55);
}
.footer-bottom p { margin: 0; }

@media (max-width: 820px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 520px) {
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
}

/* ================================================
   REVEAL
================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease-slow), transform .9s var(--ease-slow);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}

/* ================================================
   FOCUS + MOTION
================================================ */
:focus-visible {
  outline: 2px solid var(--lemon);
  outline-offset: 3px;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

.nav { padding-top: env(safe-area-inset-top, 0px); }
