/* ============================================================
   THE FOODIE CLUB — Grand Canyon  |  style.css
   ============================================================ */

/* ── Cortinilla / Intro Splash ─────────────────────────────── */
.curtain{
  position:fixed;inset:0;z-index:9999;
  background:linear-gradient(160deg,#0d0d0d 0%,#0d0d0d 50%,#1a0c00 100%);
  display:flex;align-items:center;justify-content:center;
  overflow-y:auto;
  transition:opacity .6s var(--ease),visibility .6s;
}
.curtain.hide{
  opacity:0;
  visibility:hidden;
  pointer-events:none;
}
.curtain-inner{
  display:flex;flex-direction:column;align-items:center;
  gap:1.1rem;padding:2.5rem 1.5rem 2rem;
  max-width:460px;width:100%;text-align:center;
}
.curtain-logo{
  animation:curtainLogoIn .9s cubic-bezier(.16,1,.3,1) .2s both;
}
.curtain-logo img{
  width:clamp(110px,25vw,160px);
  height:auto;
  filter:drop-shadow(0 0 40px rgba(235,20,11,.3));
}
/* ── Happy Hour section ── */
.hh-section{
  animation:curtainLogoIn .9s cubic-bezier(.16,1,.3,1) .45s both;
  width:100%;
}
.hh-eyebrow{
  font-size:.65rem;font-weight:800;letter-spacing:.18em;text-transform:uppercase;
  color:rgba(255,255,255,.35);margin-bottom:.45rem;
}
.hh-badge{
  display:inline-flex;align-items:center;justify-content:center;gap:.5rem;
  font-family:var(--ff-serif);
  font-size:clamp(1.5rem,7vw,2.2rem);
  font-weight:700;color:var(--amber);
  letter-spacing:.06em;text-transform:uppercase;
  line-height:1;margin-bottom:.45rem;
}
.hh-rule{
  width:48px;height:2px;background:var(--amber);opacity:.35;
  border:none;margin:.05rem auto .7rem;
}
.hh-times{
  display:flex;align-items:center;justify-content:center;gap:.7rem;
  font-size:.78rem;font-weight:700;letter-spacing:.12em;text-transform:uppercase;
  color:rgba(255,255,255,.5);margin-bottom:.65rem;
}
.hh-times-sep{color:var(--amber);opacity:.55;}
.hh-countdown{
  font-size:.82rem;font-weight:700;letter-spacing:.05em;text-transform:uppercase;
  color:var(--terra-l);margin-bottom:1rem;min-height:1.1em;
}
.hh-promos{
  display:grid;grid-template-columns:repeat(3,1fr);gap:.5rem;margin-bottom:.25rem;
}
.hh-promo{
  background:rgba(245,166,35,.07);
  border:1px solid rgba(245,166,35,.2);
  border-radius:10px;
  padding:.7rem .4rem;
  font-size:.69rem;font-weight:700;
  color:rgba(255,255,255,.82);line-height:1.35;
}
.hh-promo-icon{display:block;font-size:1.1rem;margin-bottom:.3rem;}
.hh-dismiss{
  padding:.65rem 2.5rem;
  background:var(--amber);color:#0d0d0d;
  border:none;border-radius:50px;
  font-size:.78rem;font-weight:800;letter-spacing:.1em;text-transform:uppercase;
  cursor:pointer;
  transition:transform .18s,box-shadow .18s;
  animation:curtainLogoIn .7s cubic-bezier(.16,1,.3,1) .9s both;
}
.hh-dismiss:hover{transform:translateY(-2px);box-shadow:0 8px 24px rgba(245,166,35,.38);}

@keyframes curtainLogoIn{
  from{opacity:0;transform:scale(.7)}
  to  {opacity:1;transform:scale(1)}
}

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --terra:    #C1440E;
  --terra-d:  #9e3509;
  --terra-l:  #E8956D;
  --amber:    #F5A623;
  --forest:   #1B3A2D;
  --sage:     #7aad91;
  --dark:     #111111;
  --mid:      #444444;
  --light:    #888888;
  --offwhite: #FAF7F3;
  --white:    #FFFFFF;
  --border:   rgba(0,0,0,.08);

  --nav-h: 68px;
  --r:     10px;
  --r-lg:  20px;

  --shadow-s:  0 2px 12px rgba(0,0,0,.08);
  --shadow-m:  0 8px 32px rgba(0,0,0,.13);
  --shadow-l:  0 20px 60px rgba(0,0,0,.20);

  --ease: cubic-bezier(.16,1,.3,1);

  --ff-serif:  'Cormorant Garamond', Georgia, serif;
  --ff-sans:   'Nunito', system-ui, sans-serif;
  --ff-script: 'Dancing Script', cursive;

  --max: 1180px;
}

/* ── Reset ─────────────────────────────────────────────────── */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{font-size:16px;scroll-behavior:smooth}
body{font-family:var(--ff-sans);background:var(--offwhite);color:var(--dark);overflow-x:hidden;-webkit-font-smoothing:antialiased}
img{display:block;max-width:100%}
a{text-decoration:none;color:inherit}
ul{list-style:none}
button{cursor:pointer;border:none;background:none;font-family:inherit}
input,textarea{font-family:inherit}

/* ── Container ─────────────────────────────────────────────── */
.container{
  width:min(100%,var(--max));
  margin-inline:auto;
  padding-inline:clamp(16px,5vw,48px);
}

/* ── Shared typography ─────────────────────────────────────── */
.eyebrow{
  display:inline-block;
  font-family:var(--ff-script);
  font-size:1.15rem;
  color:var(--terra);
  margin-bottom:.4rem;
}
.eyebrow.light{color:var(--terra-l)}

.section-title{
  font-family:var(--ff-serif);
  font-size:clamp(1.9rem,4vw,3rem);
  font-weight:700;
  line-height:1.15;
  color:var(--forest);
}
.section-title.light{color:var(--white)}
.section-title em{font-style:italic;color:var(--terra)}

.section-body{
  font-size:1rem;
  line-height:1.8;
  color:var(--mid);
  max-width:540px;
}
.section-body.light{color:rgba(255,255,255,.8)}

.section-header{
  text-align:center;
  margin-bottom:clamp(32px,5vw,56px);
}
.section-header .section-title{margin:0 auto .8rem}
.section-header .section-body{margin:0 auto}

/* ── Buttons ───────────────────────────────────────────────── */
.btn{
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  padding:.7rem 1.6rem;
  border-radius:50px;
  font-size:.85rem;
  font-weight:700;
  letter-spacing:.07em;
  text-transform:uppercase;
  transition:transform .25s var(--ease),box-shadow .25s var(--ease),background .2s,border-color .2s;
  white-space:nowrap;
}
.btn:hover{transform:translateY(-3px)}
.btn:active{transform:translateY(-1px)}

.btn-terra{background:var(--terra);color:var(--white);box-shadow:0 4px 16px rgba(193,68,14,.3)}
.btn-terra:hover{background:var(--terra-d);box-shadow:0 8px 24px rgba(193,68,14,.4)}

.btn-glass{
  background:rgba(255,255,255,.15);
  border:1.5px solid rgba(255,255,255,.5);
  color:var(--white);
  backdrop-filter:blur(8px);
}
.btn-glass:hover{background:rgba(255,255,255,.25)}

.btn-outline-w{
  background:transparent;
  border:1.5px solid rgba(255,255,255,.6);
  color:var(--white);
}
.btn-outline-w:hover{background:rgba(255,255,255,.1);border-color:var(--white)}

.btn-ghost{
  background:transparent;
  border:1.5px solid var(--terra);
  color:var(--terra);
}
.btn-ghost:hover{background:var(--terra);color:var(--white)}

/* ── Reveal animations ─────────────────────────────────────── */
.reveal,.reveal-l,.reveal-r{
  opacity:0;
  transition:opacity .7s var(--ease),transform .7s var(--ease);
}
.reveal  {transform:translateY(36px)}
.reveal-l{transform:translateX(-48px)}
.reveal-r{transform:translateX(48px)}
.reveal.visible,.reveal-l.visible,.reveal-r.visible{opacity:1;transform:none}

/* ─────────────────────────────────────────────────────────────
   NAV
───────────────────────────────────────────────────────────── */
.site-nav{
  position:fixed;
  top:0;left:0;right:0;
  z-index:900;
  height:var(--nav-h);
  display:flex;
  align-items:center;
  transition:background .35s,box-shadow .35s;
}
.site-nav.scrolled{
  background:rgba(17,17,17,.95);
  backdrop-filter:blur(16px);
  box-shadow:0 2px 20px rgba(0,0,0,.25);
}
.nav-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  width:100%;
  gap:2rem;
}

.nav-logo{display:flex;align-items:center;text-decoration:none}
.nav-logo-img{height:42px;width:auto;display:block}

.nav-links{display:flex;align-items:center;gap:1.8rem;margin-left:auto}
.nav-links a{
  color:rgba(255,255,255,.8);
  font-size:.82rem;
  font-weight:600;
  letter-spacing:.08em;
  text-transform:uppercase;
  transition:color .2s;
  position:relative;
}
.nav-links a::after{
  content:'';
  position:absolute;
  bottom:-3px;left:0;
  width:0;height:2px;
  background:var(--terra-l);
  transition:width .3s var(--ease);
}
.nav-links a:hover{color:var(--white)}
.nav-links a:hover::after{width:100%}

.nav-order{margin-left:.5rem;padding:.55rem 1.2rem;font-size:.78rem}

.nav-hamburger{
  display:none;
  flex-direction:column;
  gap:5px;
  padding:8px;
}
.nav-hamburger span{
  display:block;width:22px;height:2px;
  background:var(--white);border-radius:2px;
  transition:transform .3s,opacity .3s;
}

/* Drawer */
.nav-drawer-overlay{
  position:fixed;inset:0;z-index:940;
  background:rgba(0,0,0,.6);
  backdrop-filter:blur(3px);
  opacity:0;pointer-events:none;
  transition:opacity .35s;
}
.nav-drawer-overlay.visible{opacity:1;pointer-events:all}

.nav-drawer{
  position:fixed;top:0;right:-100%;
  width:min(300px,82vw);height:100%;
  z-index:950;
  background:var(--dark);
  display:flex;flex-direction:column;
  padding:1.5rem;
  transition:right .35s var(--ease);
  box-shadow:-8px 0 40px rgba(0,0,0,.5);
}
.nav-drawer.open{right:0}

.drawer-close{
  align-self:flex-end;
  color:rgba(255,255,255,.7);
  font-size:1.3rem;
  padding:.5rem;
  border-radius:6px;
  transition:background .2s;
}
.drawer-close:hover{background:rgba(255,255,255,.1)}

.drawer-logo{margin:1.2rem 0 1.8rem}
.drawer-logo-img{height:48px;width:auto;display:block}

.drawer-links{display:flex;flex-direction:column;gap:.2rem;flex:1}
.drawer-links a{
  color:rgba(255,255,255,.75);
  font-size:1rem;font-weight:600;
  padding:.7rem .9rem;
  border-radius:var(--r);
  transition:background .2s,color .2s;
}
.drawer-links a:hover{background:rgba(255,255,255,.08);color:var(--white)}

.drawer-footer{
  padding-top:1.2rem;
  border-top:1px solid rgba(255,255,255,.1);
}
.drawer-footer .btn{width:100%;justify-content:center;margin-bottom:.8rem}
.drawer-contact{display:flex;flex-direction:column;gap:.5rem}
.drawer-contact a{
  color:rgba(255,255,255,.5);
  font-size:.85rem;
  display:flex;align-items:center;gap:.5rem;
  transition:color .2s;
}
.drawer-contact a:hover{color:var(--amber)}

/* ─────────────────────────────────────────────────────────────
   HERO
───────────────────────────────────────────────────────────── */
.hero{
  position:relative;
  height:100svh;
  min-height:620px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}
.hero-bg{
  position:absolute;inset:0;
  width:100%;height:100%;
  object-fit:cover;
  object-position:center 40%;
}
.hero-overlay{
  position:absolute;inset:0;
  background:linear-gradient(160deg,rgba(17,17,17,.6) 0%,rgba(27,58,45,.5) 50%,rgba(17,17,17,.72) 100%);
}
.hero-content{
  position:relative;z-index:2;
  text-align:center;
  padding:0 1.5rem;
  max-width:700px;
  animation:fadeUp .9s var(--ease) both;
}
.hero-eyebrow{
  display:inline-flex;align-items:center;gap:.5rem;
  color:rgba(255,255,255,.8);
  font-size:.8rem;font-weight:600;letter-spacing:.12em;text-transform:uppercase;
  margin-bottom:1.4rem;
}
.hero-eyebrow i{color:var(--amber)}

.hero-title{
  font-family:var(--ff-serif);
  font-size:clamp(3rem,8vw,6rem);
  font-weight:700;
  line-height:1.05;
  color:var(--white);
  margin-bottom:1.2rem;
}
.hero-title span{display:block}
.hero-title .italic{font-style:italic;color:var(--terra-l)}

.hero-sub{
  font-size:clamp(.95rem,2vw,1.15rem);
  color:rgba(255,255,255,.78);
  line-height:1.7;
  margin-bottom:2.2rem;
}
.hero-actions{
  display:flex;gap:.9rem;justify-content:center;flex-wrap:wrap;
}

.hero-scroll-hint{
  position:absolute;bottom:2rem;left:50%;
  transform:translateX(-50%);
  z-index:2;
  display:flex;flex-direction:column;align-items:center;gap:.4rem;
  color:rgba(255,255,255,.5);
  font-size:.7rem;letter-spacing:.1em;text-transform:uppercase;
  animation:fadeUp 1s var(--ease) .5s both;
  text-decoration:none;
}
.scroll-mouse{
  width:20px;height:30px;
  border:2px solid rgba(255,255,255,.4);
  border-radius:10px;
  position:relative;
}
.scroll-mouse::after{
  content:'';
  width:3px;height:6px;
  background:rgba(255,255,255,.7);
  border-radius:2px;
  position:absolute;
  top:4px;left:50%;transform:translateX(-50%);
  animation:scrollPulse 1.5s ease-in-out infinite;
}

/* ─────────────────────────────────────────────────────────────
   INFO BAR
───────────────────────────────────────────────────────────── */
.info-bar{
  background:var(--forest);
  padding:.9rem 0;
}
.info-bar-inner{
  display:flex;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
  gap:.6rem 0;
}
.info-item{
  display:flex;align-items:center;gap:.5rem;
  color:rgba(255,255,255,.8);
  font-size:.83rem;
  padding:0 1.4rem;
}
.info-item i{color:var(--amber);font-size:.9rem}
.info-item a{color:rgba(255,255,255,.8);transition:color .2s}
.info-item a:hover{color:var(--amber)}
.info-item strong{color:var(--white)}

.info-sep{
  width:1px;height:16px;
  background:rgba(255,255,255,.2);
  flex-shrink:0;
}

/* ─────────────────────────────────────────────────────────────
   MENU SECTION
───────────────────────────────────────────────────────────── */
.menu-section{
  padding:clamp(64px,10vw,110px) 0;
  background:var(--white);
}

/* Tab bar */
.menu-tabs-wrap{
  overflow-x:auto;
  -webkit-overflow-scrolling:touch;
  margin-bottom:2.5rem;
  /* hide scrollbar */
  scrollbar-width:none;
}
.menu-tabs-wrap::-webkit-scrollbar{display:none}

.menu-tabs{
  display:flex;
  gap:.5rem;
  padding-bottom:.25rem;
  white-space:nowrap;
  width:max-content;
  margin:0 auto;
}
.menu-tab{
  padding:.55rem 1.25rem;
  border-radius:50px;
  font-size:.82rem;
  font-weight:700;
  letter-spacing:.05em;
  color:var(--mid);
  border:1.5px solid var(--border);
  background:var(--offwhite);
  transition:background .2s,color .2s,border-color .2s,box-shadow .2s;
}
.menu-tab:hover{border-color:var(--terra-l);color:var(--terra)}
.menu-tab.active{
  background:var(--terra);
  color:var(--white);
  border-color:var(--terra);
  box-shadow:0 4px 14px rgba(193,68,14,.3);
}

/* Menu grid */
.menu-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(260px,1fr));
  gap:1.5rem;
  min-height:200px;
}

/* Menu card */
.menu-card{
  background:var(--white);
  border-radius:var(--r-lg);
  overflow:hidden;
  border:1px solid var(--border);
  transition:transform .3s var(--ease),box-shadow .3s var(--ease);
  display:flex;
  flex-direction:column;
  animation:cardIn .4s var(--ease) both;
}
.menu-card:hover{
  transform:translateY(-6px);
  box-shadow:var(--shadow-l);
}
.menu-card-img{
  aspect-ratio:4/3;
  overflow:hidden;
  background:#f0ebe3;
}
.menu-card-img img{
  width:100%;height:100%;
  object-fit:cover;
  transition:transform .5s var(--ease);
}
.menu-card:hover .menu-card-img img{transform:scale(1.07)}

.menu-card-body{
  padding:1.1rem 1.2rem 1.3rem;
  display:flex;
  flex-direction:column;
  flex:1;
}
.menu-card-name{
  font-family:var(--ff-serif);
  font-size:1.15rem;
  font-weight:700;
  color:var(--dark);
  line-height:1.2;
  margin-bottom:.35rem;
}
.menu-card-desc{
  font-size:.82rem;
  color:var(--light);
  line-height:1.6;
  flex:1;
  margin-bottom:.9rem;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}
.menu-card-variants{
  display:flex;
  flex-wrap:wrap;
  gap:.35rem;
  margin-bottom:.75rem;
}
.variant-pill{
  padding:.28rem .7rem;
  border:1.5px solid var(--border);
  border-radius:50px;
  background:transparent;
  font-size:.7rem;
  font-weight:700;
  letter-spacing:.04em;
  color:var(--mid);
  cursor:pointer;
  transition:background .18s,color .18s,border-color .18s;
  line-height:1;
}
.variant-pill.active,
.variant-pill:hover{
  background:var(--terra);
  color:var(--white);
  border-color:var(--terra);
}
.menu-card-addons{
  display:flex;flex-wrap:wrap;gap:.3rem;
  margin-bottom:.75rem;
  padding-top:.1rem;
}
.addon-pill{
  padding:.26rem .65rem;
  border:1.5px dashed var(--border);
  border-radius:50px;
  background:transparent;
  font-size:.68rem;font-weight:600;letter-spacing:.03em;
  color:var(--mid);cursor:pointer;
  transition:background .18s,color .18s,border-color .18s,border-style .18s;
  line-height:1;
}
.addon-pill:hover{border-style:solid;border-color:var(--sage);color:var(--forest);}
.addon-pill.active{
  background:var(--sage);color:#fff;
  border:1.5px solid var(--sage);
}
.menu-card-footer{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:.5rem;
}
.menu-card-price{
  font-family:var(--ff-serif);
  font-size:1.25rem;
  font-weight:700;
  color:var(--terra);
}
.menu-card-btn{
  display:inline-flex;align-items:center;gap:.35rem;
  padding:.45rem 1rem;
  background:var(--offwhite);
  border:1.5px solid var(--border);
  border-radius:50px;
  font-size:.75rem;
  font-weight:700;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:var(--mid);
  transition:background .2s,color .2s,border-color .2s;
}
.menu-card-btn:hover{
  background:var(--terra);
  color:var(--white);
  border-color:var(--terra);
}

.menu-cta-row{
  text-align:center;
  margin-top:2.5rem;
}

/* ─────────────────────────────────────────────────────────────
   EXPERIENCE BANNER
───────────────────────────────────────────────────────────── */
.exp-banner{
  position:relative;
  padding:clamp(72px,11vw,130px) 0;
  overflow:hidden;
}
.exp-banner-bg{
  position:absolute;inset:0;
  background-image:url('../img/hero/hero-img-bg-7-1.webp');
  background-size:cover;
  background-position:center;
  background-attachment:fixed;
}
.exp-banner-overlay{
  position:absolute;inset:0;
  background:linear-gradient(120deg,rgba(27,58,45,.9) 0%,rgba(17,17,17,.85) 100%);
}
.exp-banner-inner{
  position:relative;z-index:1;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:clamp(40px,6vw,80px);
  align-items:center;
}
.exp-text .section-title{margin-bottom:1rem}
.exp-text .section-body{margin-bottom:1.8rem}

.exp-stats{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:1px;
  background:rgba(255,255,255,.1);
  border-radius:var(--r-lg);
  overflow:hidden;
}
.exp-stat{
  background:rgba(255,255,255,.06);
  padding:1.8rem 1.2rem;
  text-align:center;
}
.stat-n{
  display:block;
  font-family:var(--ff-serif);
  font-size:clamp(2.2rem,4vw,3.2rem);
  font-weight:800;
  color:var(--amber);
  line-height:1;
}
.stat-l{
  display:block;
  font-size:.73rem;font-weight:700;
  letter-spacing:.1em;text-transform:uppercase;
  color:rgba(255,255,255,.55);
  margin-top:.4rem;
}

/* ─────────────────────────────────────────────────────────────
   RECOMMENDATION CAROUSEL
───────────────────────────────────────────────────────────── */
/* Featured tab — scrolls to recommendations, not a menu category */
.menu-tab-rec{
  border-left:1px solid rgba(0,0,0,.1);
  margin-left:.5rem;
  padding-left:1.1rem !important;
  color:var(--terra) !important;
  font-weight:700 !important;
}
.menu-tab-rec:hover{background:rgba(var(--terra-rgb),.08) !important}

.rec-section{
  position:relative;z-index:1;
  padding-top:2.5rem;padding-bottom:.5rem;
}
.rec-header{
  display:flex;align-items:center;
  margin-bottom:1.25rem;
}
.rec-pill{
  display:inline-block;
  font-size:.7rem;font-weight:800;
  letter-spacing:.1em;text-transform:uppercase;
  color:var(--amber);
  background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.18);
  border-radius:999px;
  padding:.35rem 1rem;
}
.rec-track{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:1rem;
}
.rec-card{
  display:block;text-decoration:none;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.13);
  border-radius:var(--r-md);
  overflow:hidden;
  transition:transform .22s,box-shadow .22s;
}
.rec-card:hover{
  transform:translateY(-5px);
  box-shadow:0 14px 32px rgba(0,0,0,.4);
}
.rec-card-img{
  width:100%;height:150px;
  object-fit:cover;display:block;
}
.rec-card-body{padding:.7rem .9rem .85rem}
.rec-card-tag{
  font-size:.6rem;font-weight:800;
  letter-spacing:.1em;text-transform:uppercase;
  color:var(--amber);margin-bottom:.3rem;
}
.rec-card-name{
  font-size:.85rem;font-weight:600;
  color:#fff;line-height:1.3;
}
@media(max-width:860px){
  .rec-track{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:480px){
  .rec-track{
    display:flex;
    overflow-x:auto;
    scroll-snap-type:x mandatory;
    -webkit-overflow-scrolling:touch;
    scrollbar-width:none;
    gap:.75rem;padding-bottom:.5rem;
  }
  .rec-track::-webkit-scrollbar{display:none}
  .rec-card{flex:0 0 160px;scroll-snap-align:start}
}

/* ─────────────────────────────────────────────────────────────
   ABOUT
───────────────────────────────────────────────────────────── */
.about-section{
  padding:clamp(72px,10vw,120px) 0;
  background:var(--offwhite);
}
.about-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:clamp(40px,6vw,80px);
  align-items:center;
}

.about-media{position:relative}
.about-img-main{
  border-radius:var(--r-lg);
  overflow:hidden;
  aspect-ratio:3/4;
}
.about-img-main img{
  width:100%;height:100%;
  object-fit:cover;
  transition:transform .6s var(--ease);
}
.about-media:hover .about-img-main img{transform:scale(1.04)}

.about-img-float{
  position:absolute;
  bottom:-24px;right:-24px;
  width:160px;
  border-radius:var(--r-lg);
  overflow:hidden;
  box-shadow:var(--shadow-l);
  border:4px solid var(--white);
}
.about-img-float img{
  width:100%;
  aspect-ratio:1;
  object-fit:cover;
}
.float-badge{
  position:absolute;
  bottom:0;left:0;right:0;
  background:linear-gradient(0deg,rgba(17,17,17,.85),transparent);
  padding:.6rem .8rem .5rem;
  text-align:center;
}
.float-badge-num{
  display:block;
  font-family:var(--ff-serif);
  font-size:1.3rem;font-weight:800;
  color:var(--amber);line-height:1;
}
.float-badge-txt{
  display:block;
  font-size:.65rem;font-weight:700;
  letter-spacing:.08em;text-transform:uppercase;
  color:rgba(255,255,255,.75);
}

.about-text{padding:1rem 0}
.about-text .section-title{margin:0 0 1rem}
.about-text .section-body{margin-bottom:0}

.about-list{
  margin:1.6rem 0 2rem;
  display:flex;flex-direction:column;gap:.7rem;
}
.about-list li{
  display:flex;align-items:flex-start;gap:.65rem;
  font-size:.9rem;color:var(--mid);line-height:1.5;
}
.about-list li i{
  color:var(--terra);
  font-size:.8rem;
  margin-top:.2rem;flex-shrink:0;
}

/* ─────────────────────────────────────────────────────────────
   GALLERY
───────────────────────────────────────────────────────────── */
.gallery-section{
  padding:clamp(64px,9vw,100px) 0 0;
  background:var(--white);
}
.gallery-strip{
  margin-top:2.5rem;
  overflow:hidden;
  padding-bottom:clamp(40px,6vw,80px);
}
.gallery-track{
  display:flex;
  gap:14px;
  padding:0 clamp(16px,5vw,48px);
  overflow-x:auto;
  -webkit-overflow-scrolling:touch;
  scroll-snap-type:x mandatory;
  scrollbar-width:thin;
  scrollbar-color:var(--terra-l) transparent;
  cursor:grab;
}
.gallery-track:active{cursor:grabbing}
.gallery-track::-webkit-scrollbar{height:4px}
.gallery-track::-webkit-scrollbar-track{background:transparent}
.gallery-track::-webkit-scrollbar-thumb{background:var(--terra-l);border-radius:2px}

.gallery-item{
  flex:0 0 260px;
  border-radius:var(--r-lg);
  overflow:hidden;
  position:relative;
  scroll-snap-align:start;
  transition:transform .3s var(--ease);
}
.gallery-item:hover{transform:scale(1.02)}
.gallery-item img{
  width:100%;
  aspect-ratio:3/4;
  object-fit:cover;
  display:block;
}
.gallery-item figcaption{
  position:absolute;
  bottom:0;left:0;right:0;
  background:linear-gradient(0deg,rgba(17,17,17,.8),transparent);
  color:var(--white);
  font-family:var(--ff-serif);
  font-size:1rem;font-weight:600;
  padding:.8rem 1rem;
  transform:translateY(4px);
  opacity:0;
  transition:opacity .3s,transform .3s;
}
.gallery-item:hover figcaption{opacity:1;transform:translateY(0)}

/* ─────────────────────────────────────────────────────────────
   HOURS & LOCATION
───────────────────────────────────────────────────────────── */
.hours-section{
  padding:clamp(64px,10vw,110px) 0;
  background:var(--offwhite);
}
.hours-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:1.5rem;
}
.hours-card{
  background:var(--white);
  border-radius:var(--r-lg);
  padding:clamp(24px,4vw,40px);
  border:1px solid var(--border);
  transition:box-shadow .3s,transform .3s;
}
.hours-card:hover{
  box-shadow:var(--shadow-m);
  transform:translateY(-4px);
}
.hours-card-head{
  display:flex;align-items:flex-start;gap:1rem;
  margin-bottom:1.8rem;
  padding-bottom:1.5rem;
  border-bottom:1px solid var(--border);
}
.hours-icon{
  width:46px;height:46px;
  border-radius:12px;
  background:var(--terra);
  color:var(--white);
  display:flex;align-items:center;justify-content:center;
  font-size:1.05rem;
  flex-shrink:0;
}
.hours-card-head h3{
  font-family:var(--ff-serif);
  font-size:1.3rem;font-weight:700;
  color:var(--dark);line-height:1.2;
}
.hours-card-head p{
  font-size:.8rem;color:var(--light);margin-top:.15rem;
}

.hours-list{display:flex;flex-direction:column;gap:.6rem;margin-bottom:1.4rem}
.hours-row{
  display:flex;align-items:center;justify-content:space-between;
  padding:.7rem 1rem;
  background:var(--offwhite);
  border-radius:var(--r);
  font-size:.88rem;
}
.h-season{
  display:flex;align-items:center;gap:.5rem;
  color:var(--mid);font-weight:600;
}
.h-season i{color:var(--terra);width:14px;text-align:center}
.h-time{color:var(--terra);font-weight:800;font-family:var(--ff-serif);font-size:1rem}

.hours-note{
  display:flex;align-items:flex-start;gap:.5rem;
  font-size:.8rem;color:var(--light);
  background:var(--offwhite);
  border-radius:var(--r);
  padding:.75rem 1rem;
  line-height:1.5;
}
.hours-note i{color:var(--amber);flex-shrink:0;margin-top:.1rem}

.location-list{
  display:flex;flex-direction:column;gap:.8rem;
  margin-bottom:1.8rem;
}
.loc-item{
  display:flex;align-items:flex-start;gap:.65rem;
  font-size:.88rem;color:var(--mid);
}
.loc-item i{color:var(--terra);width:16px;text-align:center;flex-shrink:0;margin-top:.1rem}
.loc-item a{color:var(--mid);transition:color .2s}
.loc-item a:hover{color:var(--terra)}

.map-btn{width:100%;justify-content:center}

/* ─────────────────────────────────────────────────────────────
   ORDER CTA
───────────────────────────────────────────────────────────── */
.order-cta{
  position:relative;
  padding:clamp(72px,11vw,130px) 0;
  overflow:hidden;
}
.order-cta-bg{
  position:absolute;inset:0;
  background-image:url('../img/hero/hero-img-bg-6-1.webp');
  background-size:cover;
  background-position:center 70%;
  filter:brightness(.3) saturate(.7);
}
.order-cta-overlay{
  position:absolute;inset:0;
  background:linear-gradient(135deg,rgba(27,58,45,.7),rgba(17,17,17,.8));
}
.order-cta-inner{
  position:relative;z-index:1;
  text-align:center;
  max-width:640px;
  margin:0 auto;
}
.order-cta-inner .eyebrow{margin-bottom:.5rem;display:block}
.order-cta-inner .section-title{margin-bottom:1.1rem}
.order-cta-inner .section-body{margin:0 auto 2rem}
.cta-btns{display:flex;gap:1rem;justify-content:center;flex-wrap:wrap}

/* ─────────────────────────────────────────────────────────────
   MENU OVERVIEW
───────────────────────────────────────────────────────────── */
.menu-overview{
  background:var(--cream);
  padding:clamp(56px,7vw,88px) 0;
}
.menu-overview-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:2rem;
  margin-top:2.5rem;
}
.menu-ov-col{
  padding:1.5rem;
  background:#fff;
  border-radius:var(--r2);
  border:1px solid rgba(0,0,0,.06);
}
.menu-ov-col h3{
  font-family:var(--font-head);
  font-size:1.15rem;
  color:var(--forest);
  margin-bottom:.75rem;
  display:flex;align-items:center;gap:.5rem;
}
.menu-ov-col h3 i{color:var(--terra);font-size:1rem;}
.menu-ov-col p{
  font-size:.9rem;
  line-height:1.7;
  color:var(--charcoal);
}
.mt-1{margin-top:1rem;}

/* ─────────────────────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────────────────────── */
.site-footer{
  background:#0d0d0d;
  color:rgba(255,255,255,.65);
  padding:clamp(56px,8vw,88px) 0 0;
}
.footer-inner{
  display:grid;
  grid-template-columns:1.8fr 1fr 1fr 1.2fr;
  gap:2.5rem;
  padding-bottom:3rem;
  border-bottom:1px solid rgba(255,255,255,.07);
}

.footer-brand .footer-logo{margin-bottom:1rem}
.footer-logo-img{height:48px;width:auto;display:block}
.footer-brand p{
  font-size:.85rem;line-height:1.7;
  max-width:240px;
  color:rgba(255,255,255,.5);
}
.footer-social{
  display:flex;gap:.6rem;margin-top:1.3rem;
}
.footer-social a{
  width:36px;height:36px;
  border:1px solid rgba(255,255,255,.15);
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  color:rgba(255,255,255,.55);
  font-size:.9rem;
  transition:all .2s;
}
.footer-social a:hover{background:var(--terra);border-color:var(--terra);color:var(--white)}

.footer-col h4{
  font-size:.75rem;font-weight:800;
  letter-spacing:.13em;text-transform:uppercase;
  color:var(--white);
  margin-bottom:1.1rem;
}
.footer-col ul{display:flex;flex-direction:column;gap:.55rem}
.footer-col ul a{
  font-size:.85rem;
  color:rgba(255,255,255,.5);
  transition:color .2s;
}
.footer-col ul a:hover{color:var(--terra-l)}

.footer-hours{
  display:flex;flex-direction:column;gap:.5rem;
  margin-bottom:1.2rem;
}
.fh-row{
  display:flex;justify-content:space-between;
  font-size:.82rem;
}
.fh-row span{color:rgba(255,255,255,.5)}
.fh-row strong{color:var(--amber);font-weight:700}
.fh-open{
  display:flex;align-items:center;gap:.4rem;
  font-size:.78rem;font-weight:700;
  letter-spacing:.07em;text-transform:uppercase;
  color:var(--sage);
  margin-top:.3rem;
}
.fh-open i{font-size:.5rem;animation:pulse 1.5s ease-in-out infinite}

.footer-addr{
  font-size:.82rem;
  color:rgba(255,255,255,.45);
  line-height:1.7;
}
.footer-addr a{color:rgba(255,255,255,.55);transition:color .2s}
.footer-addr a:hover{color:var(--amber)}

.footer-bottom{
  padding:1.4rem 0;
  border-top:0;
}
.footer-bottom-inner{
  display:flex;justify-content:space-between;flex-wrap:wrap;gap:.5rem;
}
.footer-bottom-inner p{
  font-size:.76rem;
  color:rgba(255,255,255,.3);
}

/* ─────────────────────────────────────────────────────────────
   FAB
───────────────────────────────────────────────────────────── */
.site-fab{
  position:fixed;
  bottom:1.5rem;right:1.5rem;
  z-index:800;
  display:flex;align-items:center;gap:.5rem;
  background:var(--terra);
  color:var(--white);
  font-size:.78rem;font-weight:700;
  letter-spacing:.07em;text-transform:uppercase;
  padding:.65rem 1.3rem;
  border-radius:50px;
  box-shadow:0 6px 24px rgba(193,68,14,.45);
  opacity:0;transform:translateY(16px);
  transition:opacity .4s var(--ease),transform .4s var(--ease),box-shadow .2s,background .2s;
  pointer-events:none;
}
.site-fab.visible{opacity:1;transform:translateY(0);pointer-events:all}
.site-fab:hover{background:var(--terra-d);box-shadow:0 10px 32px rgba(193,68,14,.55);transform:translateY(-3px)}

/* ─────────────────────────────────────────────────────────────
   KEYFRAMES
───────────────────────────────────────────────────────────── */
@keyframes fadeUp{
  from{opacity:0;transform:translateY(28px)}
  to  {opacity:1;transform:translateY(0)}
}
@keyframes cardIn{
  from{opacity:0;transform:translateY(20px)}
  to  {opacity:1;transform:translateY(0)}
}
@keyframes scrollPulse{
  0%,100%{opacity:1;transform:translateX(-50%) translateY(0)}
  60%    {opacity:0;transform:translateX(-50%) translateY(8px)}
}
@keyframes pulse{
  0%,100%{opacity:1}50%{opacity:.4}
}

/* ─────────────────────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────────────────────── */
@media(max-width:1024px){
  .footer-inner{grid-template-columns:1fr 1fr;gap:2rem}
  .footer-brand{grid-column:1/-1}
  .exp-banner-inner{grid-template-columns:1fr;max-width:580px;margin:0 auto;text-align:center}
  .exp-text .section-body{max-width:100%}
  .exp-stats{max-width:380px;margin:0 auto}
  .about-grid{grid-template-columns:1fr;max-width:560px;margin:0 auto}
  .about-img-float{right:-12px;bottom:-12px}
}

@media(max-width:768px){
  .nav-links,.nav-order{display:none}
  .nav-hamburger{display:flex}
  .hours-grid{grid-template-columns:1fr}
  .info-bar-inner{gap:.4rem 0}
  .info-sep{display:none}
  .info-item{padding:.2rem 1rem}
  .footer-inner{grid-template-columns:1fr}
  .footer-brand{grid-column:auto}
  .footer-bottom-inner{flex-direction:column;align-items:center;text-align:center}
  .menu-grid{grid-template-columns:1fr 1fr}
}

@media(max-width:520px){
  .hero-actions{flex-direction:column;align-items:center}
  .cta-btns{flex-direction:column;align-items:center}
  .menu-grid{grid-template-columns:1fr}
  .gallery-item{flex:0 0 220px}
  .about-img-float{display:none}
}

@media(prefers-reduced-motion:reduce){
  *,*::before,*::after{animation-duration:.01ms!important;transition-duration:.01ms!important}
  html{scroll-behavior:auto}
}
