/* =========================================================
   Jumping Beans Coffee -- Homepage
   Direction: Earthy artisan coffee meets botanical luxury
   Tokens, base, components, botanical decoration, responsive
   ========================================================= */

:root {
  /* Brand palette (per design brief) */
  --espresso:        #3B2115;  /* logo text, headings, nav, footer */
  --espresso-deep:   #2C180E;  /* deep footer */
  --mocha:           #6B4325;  /* borders, icons, highlights */
  --caramel:         #C88A2D;  /* buttons, promos, accents */
  --cream:           #F5EBDD;  /* main background (oat/latte) */
  --cream-hi:        #FBF3E8;  /* raised cards */
  --cream-2:         #EFE1CD;  /* alt panels */
  --cream-3:         #F0E2CE;
  --cream-4:         #F1E4C9;
  --sage:            #596B45;  /* sustainability / plant-based */
  --sage-hi:         #6B7d55;
  --terracotta:      #C66A3D;  /* festival / seasonal accent */

  /* Neutrals -- warm, biased toward the brown accent (chosen, not default) */
  --ink:             #3B2115;
  --body:            #5a4636;
  --body-2:          #7a6552;
  --line:            rgba(59,33,21,.12);
  --footer-muted:    #a8927e;

  /* Fonts */
  --font-head:   'Playfair Display', Georgia, serif;
  --font-script: 'Great Vibes', cursive;
  --font-body:   'Montserrat', system-ui, sans-serif;

  /* Layout */
  --page-pad: 44px;
  --maxw: 1180px;

  /* Shadows -- soft, organic */
  --shadow-sm:   0 8px 22px -14px rgba(59,33,21,.45);
  --shadow-md:   0 18px 40px -22px rgba(59,33,21,.5);
  --shadow-hero: 0 24px 60px -24px rgba(59,33,21,.55);
  --shadow-bean: 0 14px 30px -8px rgba(59,33,21,.6), inset -3px 0 6px rgba(0,0,0,.4);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

/* Paper-grain texture over the whole page (subtle, non-interactive) */
.grain {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: .5;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.045'/%3E%3C/svg%3E");
}
/* keep real content above the grain */
nav, header, section, footer { position: relative; z-index: 2; }

a { color: var(--caramel); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--espresso); }

::selection { background: var(--sage); color: var(--cream); }

img, svg { max-width: 100%; }

:focus-visible { outline: 2.5px solid var(--sage); outline-offset: 2px; border-radius: 4px; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------------------------------------------------------
   Buttons
   --------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: none;
  border-radius: 40px;
  padding: 14px 26px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .4px;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn:active { transform: translateY(0); }
.btn__ico { width: 17px; height: 17px; flex-shrink: 0; }
.btn--block { display: flex; justify-content: center; width: 100%; }

.btn--caramel  { background: var(--caramel);  color: #2C180E; font-weight: 700; }
.btn--caramel:hover  { color: #2C180E; }
.btn--espresso { background: var(--espresso); color: var(--cream); }
.btn--espresso:hover { color: var(--cream); }
.btn--sage     { background: var(--sage);     color: var(--cream); }
.btn--sage:hover     { color: var(--cream); }
.btn--cream    { background: var(--cream);    color: var(--sage); font-weight: 700; }
.btn--cream:hover    { color: var(--sage); }
.btn--outline  { background: transparent; color: var(--espresso); border: 1.5px solid var(--espresso); }
.btn--outline:hover  { background: var(--espresso); color: var(--cream); }
.btn--outline-cream { background: rgba(245,235,221,.12); color: var(--cream); border: 1.5px solid rgba(245,235,221,.65); -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px); }
.btn--outline-cream:hover { background: var(--cream); color: var(--espresso); }

/* ---------------------------------------------------------
   Eyebrows / headings / shared text
   --------------------------------------------------------- */
.eyebrow-pill {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 15px;
  border: 1px solid currentColor;
  border-radius: 30px;
  color: var(--sage);
  font-size: 11px; font-weight: 600; letter-spacing: 1.6px; text-transform: uppercase;
  margin-bottom: 22px;
}
.eyebrow-pill .dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }

.script-eyebrow { font-family: var(--font-script); font-size: 34px; color: var(--caramel); line-height: 1; }
.script-eyebrow--cream { color: var(--cream-4); }

.script-lg { font-family: var(--font-script); font-size: 40px; color: var(--sage); margin: 6px 0 22px; line-height: 1; }

.section-title {
  font-family: var(--font-head); font-weight: 800; font-size: 44px; line-height: 1.05;
  margin: 6px 0 16px; color: var(--espresso); text-wrap: balance;
}
.section-title--light { color: var(--cream); }

.section-sub { font-size: 15px; color: var(--body-2); margin: 0; }
.section-sub--light { color: rgba(245,235,221,.75); }

.section-head { text-align: center; margin-bottom: 46px; }
.section-head .section-title { margin: 2px 0 10px; }

.text-link {
  display: inline-block; font-weight: 600; letter-spacing: .5px;
  border-bottom: 2px solid var(--caramel); padding-bottom: 3px; color: var(--espresso);
}
.text-link:hover { color: var(--mocha); }
.text-link--light { color: var(--cream); }
.text-link--light:hover { color: var(--cream); opacity: .85; }

.mini-ico { width: 15px; height: 15px; vertical-align: -2px; color: currentColor; flex-shrink: 0; }

/* Striped image placeholders + labels */
.media-frame {
  border-radius: 22px; overflow: hidden; border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center; position: relative;
}
.placeholder-label {
  font-family: ui-monospace, 'SF Mono', Menlo, monospace; font-size: 12px;
  color: var(--mocha); background: rgba(245,235,221,.9); padding: 6px 12px; border-radius: 6px;
}
.placeholder-label--sage   { color: var(--sage); }
.placeholder-label--dark   { color: var(--caramel); background: rgba(59,33,21,.75); font-size: 11px; padding: 5px 10px; }
.placeholder-label--cream  { color: var(--cream-4); background: rgba(0,0,0,.25); font-size: 11px; padding: 5px 10px; }
.placeholder-label--ondark { color: var(--cream-4); background: rgba(0,0,0,.3); }
.media-frame__img { width: 100%; height: 100%; object-fit: cover; object-position: 38% center; display: block; }

/* Botanical decorative sprigs */
.sprig-deco { color: var(--sage); opacity: .16; pointer-events: none; position: absolute; }

/* Brand lockup */
.brand { display: flex; align-items: center; gap: 12px; color: var(--espresso); }
.brand__mark {
  width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid var(--espresso);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.brand__bean {
  width: 15px; height: 22px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--caramel), var(--mocha) 70%, var(--espresso));
  box-shadow: inset -1px 0 2px rgba(0,0,0,.4); transform: rotate(20deg);
}
.brand__word { line-height: .9; }
.brand__script { font-family: var(--font-script); font-size: 22px; color: var(--espresso); display: block; }
.brand__name   { font-family: var(--font-head); font-weight: 700; font-size: 12px; letter-spacing: 2px; color: var(--caramel); display: block; }
.brand__logo { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; flex-shrink: 0; box-shadow: 0 2px 10px -3px rgba(0,0,0,.5); }
.brand__logo--lg { width: 60px; height: 60px; box-shadow: 0 0 0 1px rgba(197,138,45,.4); }

/* "Coming soon" placeholders */
.soon-panel { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; text-align: center; padding: 34px 30px; min-height: 200px; border-radius: 22px; border: 1.5px dashed rgba(59,33,21,.28); background: var(--cream-hi); }
.soon-panel--onDark { background: rgba(245,235,221,.05); border-color: rgba(245,235,221,.32); min-height: 0; margin-top: 6px; }
.soon-panel--bare { background: transparent; border: none; min-height: 0; padding: 14px 0 0; }
.soon-panel__ico { width: 32px; height: 32px; color: var(--sage); opacity: .8; }
.soon-panel--onDark .soon-panel__ico { color: var(--caramel); }
.soon-script { font-family: var(--font-script); font-size: 46px; line-height: 1; color: var(--caramel); }
.soon-note { font-size: 14px; color: var(--body-2); margin: 0; max-width: 300px; }
.soon-note--light { color: rgba(245,235,221,.8); }

/* ---------------------------------------------------------
   Nav
   --------------------------------------------------------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px var(--page-pad);
  background: rgba(245,235,221,.86);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(59,33,21,.1);
}
.nav__menu { display: flex; align-items: center; gap: 26px; font-size: 12.5px; font-weight: 600; letter-spacing: 1.1px; text-transform: uppercase; }
.nav__menu > a { color: var(--espresso); }
.nav__menu > a:hover { color: var(--caramel); }
.nav__cta { padding: 10px 20px; letter-spacing: 1px; font-size: 12.5px; }
.nav__cta:hover { color: var(--cream); }

.nav__toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 44px; height: 44px; padding: 0; background: transparent; border: none; cursor: pointer; }
.nav__toggle span { display: block; width: 24px; height: 2px; background: var(--espresso); border-radius: 2px; transition: transform .25s ease, opacity .2s ease; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------------------------------------------------------
   Hero -- full-bleed image + cream overlay + botanical frame
   --------------------------------------------------------- */
.hero {
  position: relative; overflow: hidden;
  padding: 78px var(--page-pad) 70px;
  text-align: center;
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background: repeating-linear-gradient(45deg, #5a3a24, #5a3a24 16px, #4a2e1c 16px, #4a2e1c 32px);
  display: flex; align-items: flex-end; justify-content: center; padding: 14px;
}
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(245,235,221,.72), rgba(245,235,221,.94) 60%),
    linear-gradient(180deg, rgba(245,235,221,.5), rgba(245,235,221,.97));
}
.hero__sun {
  position: absolute; top: 40px; right: 6%; width: 92px; height: 92px; z-index: 2;
  color: var(--caramel); opacity: .5;
}
.hero__sprig { position: absolute; bottom: -18px; width: 130px; height: 216px; z-index: 2; color: var(--sage); opacity: .22; }
.hero__sprig--l { left: 1%; transform: rotate(8deg); }
.hero__sprig--r { right: 1%; transform: scaleX(-1) rotate(8deg); }

.hero__inner { position: relative; z-index: 3; max-width: 760px; margin: 0 auto; }
.hero__inner .eyebrow-pill { color: var(--sage); }
.hero__brand { font-family: var(--font-head); font-weight: 700; font-size: 15px; letter-spacing: 4px; text-transform: uppercase; color: var(--mocha); margin: 0 0 10px; }
.hero__title { font-family: var(--font-head); font-weight: 900; font-size: 60px; line-height: 1.02; margin: 0 0 6px; color: var(--espresso); }
.hero__title .accent { color: var(--caramel); }
.hero__body { font-size: 16.5px; line-height: 1.7; max-width: 500px; margin: 0 auto 32px; color: var(--body); }
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* ---------------------------------------------------------
   Featured info strip
   --------------------------------------------------------- */
.featured { padding: 0 var(--page-pad); margin-top: -58px; }
.featured__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.feat-card {
  background: var(--cream-hi); border: 1px solid var(--line); border-radius: 20px;
  padding: 22px 22px 20px; box-shadow: var(--shadow-md);
}
.feat-card--accent { background: var(--espresso); border-color: transparent; color: var(--cream); }
.feat-card__ico { width: 26px; height: 26px; color: var(--sage); margin-bottom: 12px; }
.feat-card--accent .feat-card__ico { color: var(--caramel); }
.feat-card__label { font-size: 10.5px; font-weight: 700; letter-spacing: 1.6px; text-transform: uppercase; color: var(--body-2); margin-bottom: 6px; }
.feat-card--accent .feat-card__label { color: var(--cream-4); opacity: .85; }
.feat-card__title { font-family: var(--font-head); font-weight: 700; font-size: 19px; line-height: 1.2; color: var(--espresso); margin-bottom: 6px; }
.feat-card--accent .feat-card__title { color: var(--cream); }
.feat-card__title--script { font-family: var(--font-script); font-weight: 400; font-size: 27px; color: var(--caramel); }
.feat-card__meta { font-size: 13px; color: var(--body-2); }
.feat-card--accent .feat-card__meta { color: rgba(245,235,221,.75); }

/* ---------------------------------------------------------
   Marquee
   --------------------------------------------------------- */
.marquee { background: var(--espresso); color: var(--cream); overflow: hidden; padding: 14px 0; }
.marquee__track {
  display: flex; width: max-content; white-space: nowrap;
  animation: drift 14s linear infinite;
  font-family: var(--font-head); font-style: italic; font-size: 20px; letter-spacing: .5px;
}
@keyframes drift { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ---------------------------------------------------------
   Our Story
   --------------------------------------------------------- */
.story { padding: 92px var(--page-pad); background: var(--cream); overflow: hidden; }
.story__sprig { position: absolute; top: 30px; right: 2%; width: 120px; height: 200px; color: var(--sage); opacity: .13; transform: rotate(-6deg); }
.story__inner { max-width: 1120px; margin: 0 auto; display: grid; grid-template-columns: .9fr 1.1fr; gap: 60px; align-items: center; }
.media-frame--story {
  aspect-ratio: 1; border-radius: 50% 50% 46% 46% / 48% 48% 50% 50%;
  background: repeating-linear-gradient(-45deg, #DDE2CF, #DDE2CF 12px, #D2D8C0 12px, #D2D8C0 24px);
  box-shadow: var(--shadow-md);
}
.story__copy p { font-size: 16px; line-height: 1.8; color: var(--body); margin: 0 0 18px; max-width: 520px; }
.story__copy p + p { margin-bottom: 30px; }

/* ---------------------------------------------------------
   Find Our Truck
   --------------------------------------------------------- */
.truck { padding: 92px var(--page-pad); background: var(--cream-2); }
.truck__inner { max-width: 1120px; margin: 0 auto; }
.truck__grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: 30px; }
.media-frame--map {
  min-height: 380px; border-radius: 24px;
  background: repeating-linear-gradient(0deg, #E4D8C0, #E4D8C0 14px, #DCCEB2 14px, #DCCEB2 28px);
}
.map-pin { position: absolute; top: 42%; left: 50%; color: var(--terracotta); filter: drop-shadow(0 6px 8px rgba(0,0,0,.3)); }
.map-pin svg { width: 34px; height: 34px; }
.map-btn {
  position: absolute; bottom: 16px; left: 16px;
  background: var(--cream-hi); color: var(--espresso); font-size: 13px; font-weight: 600;
  padding: 9px 16px; border-radius: 30px; box-shadow: var(--shadow-sm);
}
.map-btn:hover { color: var(--espresso); }

.truck .soon-panel { min-height: 380px; border-radius: 24px; }
.schedule { display: flex; flex-direction: column; gap: 14px; }
.schedule-card--link { display: block; cursor: pointer; transition: transform .15s ease, box-shadow .2s ease; }
.schedule-card--link:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); color: var(--cream); }
.schedule-card__cta { display: inline-block; margin-top: 8px; font-size: 14px; font-weight: 600; color: var(--cream); border-bottom: 2px solid var(--caramel); padding-bottom: 2px; }
.schedule-card { background: var(--cream-hi); border-radius: 18px; padding: 20px 22px; border: 1px solid var(--line); }
.schedule-card--today { border-color: rgba(89,107,69,.5); box-shadow: var(--shadow-sm); }
.schedule-card--sage { background: var(--sage); color: var(--cream); border: none; }
.schedule-card__head { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.schedule-card__day { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--sage); font-weight: 700; }
.schedule-card--sage .schedule-card__day { color: var(--cream); opacity: .85; }
.schedule-card__title { font-family: var(--font-head); font-weight: 700; font-size: 20px; margin: 6px 0 8px; color: var(--espresso); }
.schedule-card--sage .schedule-card__title { color: var(--cream); }
.schedule-card__detail { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--body-2); margin-bottom: 4px; }
.schedule-card__menu { font-size: 13px; color: var(--sage); font-weight: 600; margin-top: 8px; }
.badge { display: inline-flex; align-items: center; gap: 6px; font-size: 10.5px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase; padding: 4px 10px; border-radius: 20px; }
.badge--live { background: rgba(89,107,69,.14); color: var(--sage); }
.badge__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--sage); box-shadow: 0 0 0 0 rgba(89,107,69,.5); animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(89,107,69,.5); } 70% { box-shadow: 0 0 0 7px rgba(89,107,69,0); } 100% { box-shadow: 0 0 0 0 rgba(89,107,69,0); } }

/* ---------------------------------------------------------
   Menu -- cream paper board on espresso
   --------------------------------------------------------- */
.menu { padding: 92px var(--page-pad); background: var(--espresso); color: var(--cream); overflow: hidden; }
.menu__overlay { position: absolute; inset: 0; opacity: .06; background: radial-gradient(circle at 20% 30%, var(--caramel), transparent 45%), radial-gradient(circle at 85% 70%, var(--sage), transparent 45%); }
.menu__sprig { position: absolute; bottom: 20px; left: 2%; width: 120px; height: 200px; color: var(--cream); opacity: .08; transform: scaleX(-1); }
.menu__inner { position: relative; max-width: 1000px; margin: 0 auto; }
.menu__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px 56px; }
.menu__col-title { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-size: 22px; color: var(--caramel); margin: 0 0 16px; border-bottom: 1px solid rgba(245,235,221,.25); padding-bottom: 10px; }
.menu__col-ico { width: 20px; height: 20px; }
.menu__list { list-style: none; margin: 0; padding: 0; font-size: 15px; line-height: 2.4; }
.menu__list li { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.menu__item { display: inline-flex; align-items: center; gap: 8px; }
.price { color: var(--caramel); font-variant-numeric: tabular-nums; }
.tag { font-size: 9px; font-weight: 700; letter-spacing: .5px; padding: 2px 6px; border-radius: 5px; border: 1px solid currentColor; line-height: 1.4; }
.tag--v  { color: #9ab884; }
.tag--gf { color: #d9a95c; }
.tag--df { color: #b9c7ad; }
.special-card { margin-top: 26px; padding: 16px 18px; border: 1px dashed rgba(200,138,45,.6); border-radius: 12px; }
.special-card__tag { font-size: 10px; letter-spacing: 2px; color: #8ea078; text-transform: uppercase; margin-bottom: 4px; }
.special-card__title { font-family: var(--font-script); font-size: 26px; color: var(--cream); }
.media-frame--treats { margin-top: 20px; aspect-ratio: 1; border-radius: 16px; border: none; background: repeating-linear-gradient(45deg, #5a3a24, #5a3a24 10px, #4a2e1c 10px, #4a2e1c 20px); }
.menu__allergens { margin: 40px 0 0; text-align: center; font-size: 12.5px; color: rgba(245,235,221,.7); }
.menu__allergens .tag { color: var(--cream-4); }

/* ---------------------------------------------------------
   Coffee Club + reviews
   --------------------------------------------------------- */
.club { padding: 92px var(--page-pad); background: var(--cream); }
.club__inner { max-width: 1120px; margin: 0 auto; display: grid; grid-template-columns: 1.05fr .95fr; gap: 32px; align-items: stretch; }
.club-card { background: var(--espresso); color: var(--cream); border-radius: 26px; padding: 44px 40px; position: relative; overflow: hidden; }
.club-card__blob { position: absolute; top: -30px; right: -30px; width: 160px; height: 160px; border-radius: 50%; background: radial-gradient(circle, var(--caramel), transparent 70%); opacity: .3; }
.club-card__sprig { position: absolute; bottom: -20px; right: 6%; width: 110px; height: 184px; color: var(--cream); opacity: .1; }
.card-title { font-family: var(--font-head); font-weight: 800; font-size: 32px; margin: 4px 0 12px; position: relative; text-wrap: balance; }
.card-title--dark { color: var(--espresso); }
.card-body { font-size: 15px; line-height: 1.7; opacity: .92; margin: 0 0 22px; max-width: 400px; position: relative; }
.perks { list-style: none; margin: 0 0 26px; padding: 0; font-size: 14.5px; display: grid; gap: 12px; position: relative; }
.perks li { display: flex; align-items: center; gap: 12px; }
.perk-ico { width: 20px; height: 20px; color: var(--caramel); flex-shrink: 0; }
.club-form { position: relative; }
.club-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 10px; }

.club-side { display: flex; }
.reviews { background: var(--cream-hi); border: 1px solid var(--line); border-radius: 26px; padding: 40px 36px; width: 100%; box-shadow: var(--shadow-sm); }
.review { border-top: 1px solid var(--line); padding: 20px 0 4px; }
.review:first-of-type { border-top: none; }
.review__stars { display: flex; gap: 3px; color: var(--caramel); margin-bottom: 10px; }
.review__stars svg { width: 17px; height: 17px; }
.review p { font-size: 15px; line-height: 1.7; color: var(--body); margin: 0 0 8px; font-style: italic; }
.review__by { font-size: 13px; font-weight: 600; color: var(--mocha); }

/* Shared form fields */
input, select { font-family: inherit; font-size: 14px; color: var(--espresso); }
.club-form input, .booking label input, .booking label select {
  width: 100%; padding: 13px 16px; border: 1.5px solid rgba(59,33,21,.2);
  border-radius: 14px; background: var(--cream-hi);
}
.club-card .club-form input { background: rgba(245,235,221,.95); border-color: transparent; }
.club-form input:focus, .booking input:focus, .booking select:focus, .join__form input:focus {
  outline: none; border-color: var(--sage); box-shadow: 0 0 0 3px rgba(89,107,69,.18);
}
.form-status { min-height: 20px; margin: 12px 0 0; font-size: 13.5px; font-weight: 600; }
.form-status.is-success { color: var(--sage); }
.form-status.is-error { color: var(--terracotta); }
.club-card .form-status.is-success { color: #a9c493; }
.club-card .form-status.is-error { color: #e39a72; }

/* ---------------------------------------------------------
   Order ahead
   --------------------------------------------------------- */
.order { padding: 92px var(--page-pad); background: var(--cream-2); }
.order__inner { max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: 1.3fr .7fr; gap: 48px; align-items: center; }
.order__inner--soon { display: block; text-align: center; max-width: 640px; }
.order__body { font-size: 16px; line-height: 1.7; color: var(--body); margin: 6px 0 24px; max-width: 460px; }
.steps { list-style: none; margin: 0 0 28px; padding: 0; display: grid; gap: 14px; }
.steps li { display: flex; align-items: center; gap: 14px; font-size: 15px; font-weight: 500; color: var(--espresso); }
.steps__n { width: 30px; height: 30px; flex-shrink: 0; border-radius: 50%; background: var(--sage); color: var(--cream); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; }
.order__apps { display: flex; gap: 12px; flex-wrap: wrap; }
.app-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--espresso); color: var(--cream);
  border-radius: 14px; padding: 10px 18px 10px 14px;
}
.app-badge:hover { color: var(--cream); transform: translateY(-2px); box-shadow: var(--shadow-sm); transition: transform .15s ease, box-shadow .2s ease; }
.app-badge__ico { width: 22px; height: 22px; }
.app-badge span { display: flex; flex-direction: column; line-height: 1.15; font-size: 15px; font-weight: 700; }
.app-badge small { font-size: 9.5px; font-weight: 500; letter-spacing: .5px; opacity: .8; text-transform: uppercase; }
.app-badge--dark { background: rgba(245,235,221,.08); border: 1px solid rgba(245,235,221,.2); }

.order__qr { text-align: center; }
.qr { aspect-ratio: 1; max-width: 220px; margin: 0 auto; border-radius: 20px; background: repeating-linear-gradient(45deg, #4a2e1c, #4a2e1c 8px, #3B2115 8px, #3B2115 16px); display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-md); }
.qr__caption { font-size: 13px; font-weight: 600; color: var(--body-2); margin: 14px 0 0; }

/* ---------------------------------------------------------
   Gallery
   --------------------------------------------------------- */
.gallery { padding: 92px var(--page-pad); background: var(--cream); }
.gallery__inner { max-width: 1120px; margin: 0 auto; }
.gallery__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 760px; margin: 0 auto; }
.gallery__tile {
  aspect-ratio: 1; border-radius: 20px; overflow: hidden; border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  background: repeating-linear-gradient(45deg, #5a3a24, #5a3a24 12px, #4a2e1c 12px, #4a2e1c 24px);
  transition: transform .25s ease, box-shadow .25s ease;
}
.gallery__tile:nth-child(3n+2) { background: repeating-linear-gradient(-45deg, #6a7a55, #6a7a55 12px, #5c6c48 12px, #5c6c48 24px); }
.gallery__tile:nth-child(3n) { background: repeating-linear-gradient(45deg, #c88a2d, #c88a2d 12px, #b57c28 12px, #b57c28 24px); }
.gallery__tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.gallery__tile img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }

/* ---------------------------------------------------------
   Events & Catering
   --------------------------------------------------------- */
.events { padding: 92px var(--page-pad); background: var(--sage); color: var(--cream); overflow: hidden; }
.events__sprig { position: absolute; top: 24px; right: 2%; width: 130px; height: 216px; color: var(--cream); opacity: .12; }
.events__inner { max-width: 1120px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; }
.events__body { font-size: 16px; line-height: 1.7; margin: 6px 0 24px; opacity: .95; }
.media-frame--events { aspect-ratio: 16/9; border-radius: 20px; border: none; background: repeating-linear-gradient(45deg, #4a5c3b, #4a5c3b 12px, #425334 12px, #425334 24px); }
.booking { background: var(--cream-hi); color: var(--espresso); border-radius: 26px; padding: 34px 32px; box-shadow: var(--shadow-md); }
.booking__title { font-family: var(--font-head); font-weight: 800; font-size: 24px; margin: 0 0 20px; }
.booking__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 18px; }
.booking label { display: flex; flex-direction: column; gap: 6px; font-size: 12px; font-weight: 600; letter-spacing: .4px; text-transform: uppercase; color: var(--body-2); }
.booking label input, .booking label select { text-transform: none; font-weight: 400; letter-spacing: normal; color: var(--espresso); }

/* ---------------------------------------------------------
   Join Community
   --------------------------------------------------------- */
.join { padding: 88px var(--page-pad); background: radial-gradient(120% 100% at 50% 0%, var(--cream-3), var(--cream) 60%); text-align: center; overflow: hidden; }
.join__sun { position: absolute; top: 30px; left: 6%; width: 74px; height: 74px; color: var(--caramel); opacity: .35; }
.join__inner { max-width: 560px; margin: 0 auto; position: relative; }
.join .section-title { margin: 4px 0 14px; }
.join__body { font-size: 16px; line-height: 1.7; color: var(--body); margin: 0 0 26px; }
.join__form { display: flex; gap: 10px; max-width: 460px; margin: 0 auto; }
.join__form input { flex: 1; padding: 15px 18px; border: 1.5px solid rgba(59,33,21,.22); border-radius: 30px; background: var(--cream-hi); }
.join .form-status { text-align: center; }

/* ---------------------------------------------------------
   Footer
   --------------------------------------------------------- */
.footer { background: var(--espresso-deep); color: var(--cream); padding: 60px var(--page-pad) 34px; }
.footer__inner { max-width: 1120px; margin: 0 auto; }
.footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1.4fr; gap: 40px; padding-bottom: 34px; border-bottom: 1px solid rgba(245,235,221,.15); }
.footer__col { display: flex; flex-direction: column; gap: 12px; }
.footer__col > a { color: rgba(245,235,221,.82); font-size: 14px; display: flex; align-items: center; gap: 9px; }
.footer__col > a:hover { color: var(--caramel); }
.footer__h { font-family: var(--font-head); font-weight: 700; font-size: 14px; letter-spacing: 1px; text-transform: uppercase; color: var(--cream-4); margin: 0 0 4px; }
.footer__col--brand { gap: 16px; }
.brand--footer { gap: 14px; }
.brand__mark--lg { width: 52px; height: 52px; border-color: var(--caramel); }
.brand__bean--lg { width: 16px; height: 24px; box-shadow: none; }
.brand--footer .brand__script { color: var(--cream); }
.brand__script--lg { font-size: 26px; }
.brand__name--lg { font-size: 13px; letter-spacing: 3px; }
.brand--footer .brand__word { line-height: 1; }
.footer__slogan { font-family: var(--font-head); font-style: italic; font-size: 19px; margin: 0; color: var(--cream-4); }
.footer__social { display: flex; gap: 12px; }
.footer__social a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(245,235,221,.3); display: flex; align-items: center; justify-content: center; color: var(--cream); }
.footer__social a svg { width: 19px; height: 19px; }
.footer__social a:hover { background: rgba(245,235,221,.1); color: var(--caramel); }
.footer__values { display: flex; justify-content: center; gap: 22px; flex-wrap: wrap; padding-top: 26px; font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--footer-muted); }
.footer__dot { color: var(--caramel); }
.footer__legal { text-align: center; font-size: 11.5px; color: var(--footer-muted); margin: 16px 0 0; }

/* ---------------------------------------------------------
   Responsive
   --------------------------------------------------------- */
@media (max-width: 980px) {
  .featured__inner { grid-template-columns: 1fr 1fr; }
  .story__inner { grid-template-columns: 1fr; gap: 36px; }
  .truck__grid { grid-template-columns: 1fr; }
  .club__inner { grid-template-columns: 1fr; }
  .order__inner { grid-template-columns: 1fr; gap: 32px; }
  .events__inner { grid-template-columns: 1fr; gap: 28px; }
  .menu__grid { grid-template-columns: 1fr 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  :root { --page-pad: 20px; }

  .nav__toggle { display: flex; }
  .nav__menu {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: flex-start; gap: 4px;
    padding: 12px var(--page-pad) 20px;
    background: rgba(245,235,221,.98);
    -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(59,33,21,.1);
    box-shadow: 0 16px 30px -18px rgba(59,33,21,.5);
    transform: translateY(-8px); opacity: 0; pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
  }
  .nav__menu > a { padding: 10px 0; }
  .nav__menu.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .nav__cta { margin-top: 8px; }

  .hero { padding: 56px var(--page-pad) 64px; }
  .hero__title { font-size: 38px; }
  .hero__brand { font-size: 13px; letter-spacing: 3px; }
  .script-lg { font-size: 30px; }
  .hero__sprig, .hero__sun { opacity: .14; }

  .featured { margin-top: -44px; }
  .featured__inner { grid-template-columns: 1fr; gap: 14px; }
  .marquee { margin-top: 56px; }

  .section-title { font-size: 30px; }
  .script-eyebrow { font-size: 28px; }

  .story, .truck, .menu, .club, .order, .gallery, .events, .join { padding: 60px var(--page-pad); }
  .menu__grid { grid-template-columns: 1fr; gap: 30px; }
  .club-form__row, .booking__grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: 1fr 1fr; }

  .footer__top { grid-template-columns: 1fr; gap: 26px; }
  .footer__slogan { font-size: 18px; }
  .join__form { flex-direction: column; }
  .join__form .btn { width: 100%; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee__track, .badge__dot { animation: none; }
  .btn:hover, .app-badge:hover, .gallery__tile:hover { transform: none; }
}
