/* ── TOKENS ───────────────────────────────────────────────────────────────── */
:root {
  --thyme-green:       #3a9e1f;
  --thyme-green-mid:   #4db523;
  --thyme-green-light: #7dd64a;
  --thyme-green-pale:  #edfae5;
  --thyme-dark:        #1a2e12;
  --thyme-charcoal:    #222820;
  --thyme-ink:         #1c1f1a;
  --thyme-slate:       #4a5244;
  --thyme-slate-soft:  #6b7265;
  --thyme-cream:       #f8faf5;
  --thyme-bone:        #f0f5ea;
  --thyme-line:        #dce8d5;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --container:    1160px;
  --nav-h:        70px;
  --radius-sm:    8px;
  --radius-md:    14px;
  --radius-lg:    22px;
  --radius-xl:    32px;
  --shadow-card:  0 2px 12px rgba(0,0,0,.07);
  --shadow-lift:  0 8px 32px rgba(0,0,0,.13);
}

/* ── RESET ────────────────────────────────────────────────────────────────── */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;font-size:16px}
body{font-family:var(--font-body);background:var(--thyme-cream);color:var(--thyme-ink);line-height:1.65;-webkit-font-smoothing:antialiased}
img{display:block;max-width:100%}
a{color:inherit;text-decoration:none}
ul{list-style:none}
input,button{font-family:inherit}

/* ── UTILITIES ────────────────────────────────────────────────────────────── */
.container{max-width:var(--container);margin:0 auto;padding:0 1.5rem}

.eyebrow{font-size:.72rem;font-weight:600;letter-spacing:.18em;text-transform:uppercase;color:var(--thyme-green);display:flex;align-items:center;gap:.5rem}
.eyebrow::before{content:'';display:block;width:1.5rem;height:1.5px;background:currentColor}
.eyebrow--green{color:var(--thyme-green-mid)}
.eyebrow--light{color:var(--thyme-green-light)}
.eyebrow--light::before{background:var(--thyme-green-light)}

.section-title{font-family:var(--font-display);font-size:clamp(1.75rem,3vw,2.4rem);font-weight:600;color:var(--thyme-ink);margin:.6rem 0 .9rem;line-height:1.2}
.section-sub{color:var(--thyme-slate-soft);max-width:520px;margin:0 auto;font-size:.97rem}
.section-header{text-align:center;margin-bottom:3rem}

/* Buttons */
.btn-primary{display:inline-flex;align-items:center;background:var(--thyme-green);color:#fff;font-size:.875rem;font-weight:600;padding:.75rem 1.75rem;border-radius:100px;border:2px solid var(--thyme-green);transition:background .2s,transform .15s;white-space:nowrap;cursor:pointer}
.btn-primary:hover{background:#2d8018;border-color:#2d8018;transform:translateY(-1px)}
.btn-ghost{display:inline-flex;align-items:center;background:rgba(255,255,255,.12);color:#fff;font-size:.875rem;font-weight:600;padding:.75rem 1.75rem;border-radius:100px;border:2px solid rgba(255,255,255,.5);transition:background .2s,border-color .2s;white-space:nowrap}
.btn-ghost:hover{background:rgba(255,255,255,.22);border-color:#fff}
.btn-outline{display:inline-flex;align-items:center;background:transparent;color:var(--thyme-green);font-size:.875rem;font-weight:600;padding:.7rem 1.5rem;border-radius:100px;border:2px solid var(--thyme-green);transition:background .2s;white-space:nowrap}
.btn-outline:hover{background:var(--thyme-green-pale)}
.btn-primary-light{display:inline-flex;align-items:center;background:#fff;color:var(--thyme-green);font-size:.875rem;font-weight:700;padding:.75rem 1.75rem;border-radius:100px;border:2px solid #fff;transition:background .2s;white-space:nowrap}
.btn-primary-light:hover{background:var(--thyme-green-pale)}
.btn-outline-light{display:inline-flex;align-items:center;background:transparent;color:#fff;font-size:.875rem;font-weight:600;padding:.7rem 1.5rem;border-radius:100px;border:2px solid rgba(255,255,255,.6);transition:background .2s,border-color .2s;white-space:nowrap}
.btn-outline-light:hover{background:rgba(255,255,255,.12);border-color:#fff}
.text-link{font-size:.9rem;font-weight:600;color:var(--thyme-green);border-bottom:1.5px solid currentColor;padding-bottom:1px}
.text-link:hover{color:#2d8018}

/* Reveal */
.reveal{opacity:0;transform:translateY(20px);transition:opacity .55s ease,transform .55s ease;transition-delay:var(--delay,0s)}
.reveal.visible{opacity:1;transform:none}

/* ── NAV ──────────────────────────────────────────────────────────────────── */
.site-header{position:fixed;top:0;left:0;right:0;z-index:100;transition:background .3s,box-shadow .3s}
.site-header.scrolled{background:rgba(248,250,245,.97);backdrop-filter:blur(10px);box-shadow:0 1px 0 var(--thyme-line)}
.nav-inner{max-width:var(--container);margin:0 auto;padding:0 1.5rem;height:var(--nav-h);display:flex;align-items:center;gap:2rem}
.nav-logo{flex-shrink:0;background:rgba(255,255,255,.9);border-radius:var(--radius-sm);padding:4px 10px}
.site-header.scrolled .nav-logo{background:transparent;padding:0}
.logo-img{height:44px;width:auto}
.desktop-nav{display:flex;gap:2rem;margin-left:auto}
.desktop-nav a{font-size:.87rem;font-weight:500;transition:color .2s}
.site-header:not(.scrolled) .desktop-nav a{color:rgba(255,255,255,.85)}
.site-header:not(.scrolled) .desktop-nav a:hover{color:#fff}
.site-header.scrolled .desktop-nav a{color:var(--thyme-slate)}
.site-header.scrolled .desktop-nav a:hover{color:var(--thyme-green)}
.nav-cta{font-size:.82rem;padding:.5rem 1.2rem}
.site-header:not(.scrolled) .nav-cta{background:rgba(255,255,255,.15);border-color:rgba(255,255,255,.5)}
.site-header:not(.scrolled) .nav-cta:hover{background:rgba(255,255,255,.28)}
.mobile-menu-btn{display:none;flex-direction:column;gap:5px;background:none;border:none;cursor:pointer;padding:.4rem;margin-left:auto}
.mobile-menu-btn span{display:block;width:22px;height:2px;border-radius:2px;transition:background .2s}
.site-header.scrolled .mobile-menu-btn span{background:var(--thyme-ink)}
.site-header:not(.scrolled) .mobile-menu-btn span{background:#fff}
.mobile-nav{background:var(--thyme-cream);border-top:1px solid var(--thyme-line);padding:1rem 1.5rem 1.5rem;flex-direction:column;gap:.75rem}
.mobile-nav a{font-size:.95rem;font-weight:500;color:var(--thyme-slate)}
.mobile-cta-btn{display:inline-block;margin-top:.5rem;background:var(--thyme-green);color:#fff !important;padding:.65rem 1.4rem;border-radius:100px;font-weight:600;font-size:.87rem;text-align:center}

/* ── HERO ─────────────────────────────────────────────────────────────────── */
.hero{position:relative;min-height:100vh;display:flex;align-items:center;padding-top:var(--nav-h)}
.hero-bg{position:absolute;inset:0}
.hero-bg-img{width:100%;height:100%;object-fit:cover;object-position:center 30%}
.hero-overlay{position:absolute;inset:0;background:linear-gradient(to right,rgba(15,28,10,.9) 0%,rgba(15,28,10,.78) 50%,rgba(15,28,10,.4) 100%)}
.hero-content{position:relative;z-index:1;max-width:660px;padding:5rem 1.5rem 8rem;margin:0 auto 0 max(1.5rem,calc((100vw - var(--container)) / 2 + 1.5rem))}
.hero-badge{margin-bottom:1.5rem}
.hero-logo{height:72px;width:auto}
.hero-eyebrow{font-size:.72rem;font-weight:600;letter-spacing:.18em;text-transform:uppercase;color:var(--thyme-green-light);margin-bottom:.9rem}
.hero-headline{font-family:var(--font-display);font-size:clamp(2.6rem,5.5vw,4.2rem);font-weight:700;color:#fff;line-height:1.1;margin-bottom:1.25rem}
.hero-headline em{font-style:italic;font-weight:400;color:var(--thyme-green-light)}
.hero-sub{font-size:1rem;color:rgba(255,255,255,.82);max-width:520px;line-height:1.72;margin-bottom:2rem}
.hero-actions{display:flex;flex-wrap:wrap;gap:.9rem}

/* Hours badge bottom */
.hero-hours{position:absolute;bottom:0;left:50%;transform:translateX(-50%);z-index:2;background:var(--thyme-green);display:flex;align-items:center;gap:0;border-radius:var(--radius-lg) var(--radius-lg) 0 0;overflow:hidden}
.hours-item{display:flex;flex-direction:column;align-items:center;padding:.75rem 2rem;gap:.15rem}
.hours-day{font-size:.7rem;font-weight:600;letter-spacing:.12em;text-transform:uppercase;color:rgba(255,255,255,.7)}
.hours-time{font-size:.95rem;font-weight:700;color:#fff}
.hours-divider{width:1px;height:2.5rem;background:rgba(255,255,255,.2);flex-shrink:0}

/* ── TRUST BAR ────────────────────────────────────────────────────────────── */
.trust-bar{background:var(--thyme-charcoal);padding:1rem 1.5rem}
.trust-inner{max-width:var(--container);margin:0 auto;display:flex;flex-wrap:wrap;align-items:center;justify-content:center;gap:.75rem 2rem}
.trust-item{display:flex;align-items:center;gap:.55rem;color:rgba(255,255,255,.85);font-size:.82rem;font-weight:500}
.trust-item svg{width:1rem;height:1rem;stroke:var(--thyme-green-light);flex-shrink:0}
.trust-dot{width:4px;height:4px;border-radius:50%;background:rgba(255,255,255,.2)}

/* ── MENU ─────────────────────────────────────────────────────────────────── */
.section-menu{padding:5rem 0 4rem}
.menu-concept-wrap{border-radius:var(--radius-xl);overflow:hidden;margin-bottom:3rem;box-shadow:var(--shadow-lift)}
.menu-concept-img{width:100%;max-height:520px;object-fit:cover;object-position:center 20%}
.bowls-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;margin-bottom:2.5rem}
.bowl-card{background:#fff;border-radius:var(--radius-lg);padding:1.75rem;box-shadow:var(--shadow-card);transition:transform .25s,box-shadow .25s;transition-delay:var(--delay,0s)}
.bowl-card:hover{transform:translateY(-3px);box-shadow:var(--shadow-lift)}
.bowl-icon{font-size:2rem;margin-bottom:.75rem}
.bowl-name{font-family:var(--font-display);font-size:1.1rem;font-weight:600;color:var(--thyme-ink);margin-bottom:.5rem}
.bowl-desc{font-size:.875rem;color:var(--thyme-slate-soft);line-height:1.65;margin-bottom:.9rem}
.bowl-tag{display:inline-block;font-size:.7rem;font-weight:600;letter-spacing:.1em;text-transform:uppercase;color:var(--thyme-green);background:var(--thyme-green-pale);padding:.2rem .65rem;border-radius:100px}
.menu-cta-row{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:1rem;background:var(--thyme-bone);border-radius:var(--radius-lg);padding:1.5rem 2rem}
.menu-cta-note{font-size:.9rem;color:var(--thyme-slate-soft);font-style:italic;max-width:400px}

/* ── ALLERGEN ─────────────────────────────────────────────────────────────── */
.section-allergen{padding:6rem 0;background:var(--thyme-dark)}
.allergen-grid{display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:center}
.allergen-text .section-title{color:#fff}
.allergen-text p{font-size:.97rem;color:rgba(255,255,255,.78);line-height:1.75;margin-bottom:1rem}
.allergen-text strong{color:#fff}
.allergen-list{display:flex;flex-wrap:wrap;gap:.5rem;margin:1rem 0 1.25rem}
.allergen-chip{display:inline-block;font-size:.78rem;font-weight:600;padding:.3rem .85rem;border-radius:100px;background:rgba(61,158,31,.2);border:1px solid rgba(125,214,74,.3);color:var(--thyme-green-light)}
.allergen-note{font-size:.875rem !important;color:rgba(255,255,255,.55) !important;font-style:italic}
.allergen-visual{display:flex;flex-direction:column;gap:1.5rem}
.fare-card{background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.1);border-radius:var(--radius-xl);overflow:hidden}
.fare-badge-wrap{background:linear-gradient(135deg,rgba(58,158,31,.25),rgba(29,78,15,.4));padding:2.5rem;display:flex;justify-content:center}
.fare-badge{display:flex;flex-direction:column;align-items:center;gap:.4rem}
.fare-icon{width:64px;height:64px;color:var(--thyme-green-light)}
.fare-title{font-family:var(--font-display);font-size:1.6rem;font-weight:600;color:#fff;letter-spacing:.04em}
.fare-level{font-size:.72rem;font-weight:700;letter-spacing:.22em;text-transform:uppercase;color:var(--thyme-green-light);background:rgba(125,214,74,.15);padding:.25rem .8rem;border-radius:100px;border:1px solid rgba(125,214,74,.3)}
.fare-stats{display:grid;grid-template-columns:1fr 1px 1fr 1px 1fr;align-items:center;padding:1.5rem}
.fare-stat{text-align:center}
.fare-stat-num{display:block;font-family:var(--font-display);font-size:1.6rem;font-weight:600;color:var(--thyme-green-light)}
.fare-stat-label{display:block;font-size:.72rem;color:rgba(255,255,255,.5);margin-top:.2rem;line-height:1.3}
.fare-stat-divider{width:1px;height:2.5rem;background:rgba(255,255,255,.1);margin:0 auto}
.allergen-quote{background:linear-gradient(135deg,var(--thyme-green),#2d8018);border-radius:var(--radius-lg);padding:1.5rem 2rem;text-align:center}
.allergen-quote p{font-family:var(--font-display);font-size:1.35rem;font-style:italic;color:#fff}

/* ── VISIT ────────────────────────────────────────────────────────────────── */
.section-visit{padding:6rem 0}
.visit-grid{display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:center}
.visit-img-wrap{border-radius:var(--radius-xl);overflow:hidden;box-shadow:var(--shadow-lift)}
.visit-img{width:100%;aspect-ratio:4/3;object-fit:cover}
.visit-info{display:flex;flex-direction:column;gap:1rem}
.visit-info>p{font-size:.97rem;color:var(--thyme-slate);line-height:1.75}
.visit-info strong{color:var(--thyme-ink)}
.visit-details{display:flex;flex-direction:column;gap:1rem;margin:.5rem 0 1.5rem}
.visit-detail{display:flex;align-items:flex-start;gap:.9rem}
.visit-detail svg{width:1.1rem;height:1.1rem;stroke:var(--thyme-green);flex-shrink:0;margin-top:3px}
.visit-detail div{display:flex;flex-direction:column;gap:.15rem}
.visit-detail strong{font-size:.9rem;color:var(--thyme-ink)}
.visit-detail span,.visit-detail a{font-size:.875rem;color:var(--thyme-slate-soft)}
.visit-detail a{color:var(--thyme-green);font-weight:500}

/* ── CATERING CALLOUT ─────────────────────────────────────────────────────── */
.section-catering{background:linear-gradient(135deg,var(--thyme-green) 0%,#1e6010 100%);padding:4rem 0}
.catering-inner{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:2rem}
.catering-text{max-width:560px}
.catering-title{font-family:var(--font-display);font-size:clamp(1.4rem,2.5vw,1.9rem);font-weight:600;color:#fff;margin:.5rem 0 .75rem;line-height:1.25}
.catering-text p{font-size:.95rem;color:rgba(255,255,255,.82);line-height:1.7}
.catering-actions{display:flex;flex-wrap:wrap;gap:.75rem}

/* ── FOOTER ───────────────────────────────────────────────────────────────── */
.site-footer{background:var(--thyme-charcoal);color:rgba(255,255,255,.75);padding:4rem 1.5rem 0}
.footer-inner{max-width:var(--container);margin:0 auto;display:grid;grid-template-columns:1.2fr 2fr;gap:4rem;padding-bottom:3rem;border-bottom:1px solid rgba(255,255,255,.07)}
.footer-brand{display:flex;flex-direction:column;gap:1rem}
.footer-logo{height:64px;width:auto;max-width:160px;object-fit:contain}
.footer-tagline{font-size:.82rem;color:rgba(255,255,255,.45);line-height:1.6}
.footer-cols{display:grid;grid-template-columns:repeat(3,1fr);gap:2rem}
.footer-col{display:flex;flex-direction:column;gap:.5rem}
.footer-col-title{font-size:.7rem;font-weight:600;letter-spacing:.14em;text-transform:uppercase;color:rgba(255,255,255,.35);margin-bottom:.25rem}
.footer-col a{font-size:.87rem;color:rgba(255,255,255,.6);transition:color .2s}
.footer-col a:hover{color:var(--thyme-green-light)}
.footer-bottom{max-width:var(--container);margin:0 auto;padding:1.25rem 0;font-size:.78rem;color:rgba(255,255,255,.25)}

/* ── RESPONSIVE ───────────────────────────────────────────────────────────── */
@media(max-width:1024px){
  .allergen-grid,.visit-grid{grid-template-columns:1fr;gap:2.5rem}
  .footer-inner{grid-template-columns:1fr;gap:2rem}
  .bowls-grid{grid-template-columns:1fr 1fr}
}
@media(max-width:768px){
  .desktop-nav,.nav-cta{display:none}
  .mobile-menu-btn{display:flex}
  .hero-content{margin-left:0;padding:4rem 1.5rem 7rem}
  .hero-hours{width:100%;border-radius:0;justify-content:center}
  .trust-dot{display:none}
  .bowls-grid{grid-template-columns:1fr}
  .menu-cta-row{flex-direction:column;align-items:flex-start}
  .catering-inner{flex-direction:column;align-items:flex-start}
  .footer-cols{grid-template-columns:1fr 1fr}
  .fare-stats{padding:1rem}
  .fare-stat-num{font-size:1.3rem}
}
@media(max-width:480px){
  .footer-cols{grid-template-columns:1fr}
  .hero-headline{font-size:2.3rem}
  .allergen-list{gap:.4rem}
}

/* ── BYOB BANNER ─────────────────────────────────────────────────────────── */
.byob-banner {
  margin: 0 0 3rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
}
.byob-banner-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
}

/* ── MENU GALLERY ────────────────────────────────────────────────────────── */
.menu-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.menu-gallery-item {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform .22s ease, box-shadow .22s ease;
}
.menu-gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}
.menu-gallery-img {
  width: 100%;
  height: auto;
  display: block;
}
.menu-gallery-caption {
  padding: .75rem 1rem;
  font-size: .85rem;
  font-weight: 500;
  color: var(--thyme-slate);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  flex-wrap: wrap;
}
.menu-price {
  font-weight: 700;
  color: var(--thyme-green);
  font-size: .9rem;
}
.menu-dinner-note {
  font-size: .78rem;
  color: var(--thyme-slate-soft);
  font-style: italic;
}
@media (max-width: 640px) {
  .menu-gallery {
    grid-template-columns: 1fr;
  }
}
