/* ============================================================
   SHOTGUN EDDYS — Rustic Modern Americana Design System
   Charcoal #1A1A1A · Whiskey #6B4423 · Burnt Orange #D97706
   Cream #F8F4EE · Forest Green #2F4F3A
   Headings: Bebas Neue · Body: Inter
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --charcoal: #1A1A1A;
  --charcoal-soft: #232120;
  --charcoal-card: #2a2724;
  --whiskey: #6B4423;
  --whiskey-light: #8a5a30;
  --orange: #D97706;
  --orange-bright: #f59331;
  --cream: #F8F4EE;
  --cream-dim: #e8e0d4;
  --forest: #2F4F3A;
  --forest-light: #3d6a4d;

  --bg: var(--charcoal);
  --bg-alt: var(--charcoal-soft);
  --surface: rgba(255,255,255,0.04);
  --surface-border: rgba(248,244,238,0.10);
  --text: var(--cream);
  --text-dim: #b8ad9e;
  --text-muted: #8a8076;

  --shadow-soft: 0 10px 40px rgba(0,0,0,0.45);
  --shadow-deep: 0 30px 80px rgba(0,0,0,0.6);
  --radius: 18px;
  --radius-sm: 10px;
  --maxw: 1240px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h: 94px;

  --font-head: "Bebas Neue", "Oswald", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
}

/* Light mode support */
:root[data-theme="light"] {
  --bg: var(--cream);
  --bg-alt: #efe8dc;
  --surface: rgba(26,26,26,0.04);
  --surface-border: rgba(26,26,26,0.12);
  --text: #241c14;
  --text-dim: #564a3c;
  --text-muted: #7a6f60;
  --charcoal-card: #fffdf9;
  --shadow-soft: 0 10px 40px rgba(80,55,25,0.14);
  --shadow-deep: 0 30px 80px rgba(80,55,25,0.20);
}

@media (prefers-color-scheme: light) {
  :root:not([data-theme="dark"]):not([data-theme="light"]) {
    --bg: var(--cream); --bg-alt: #efe8dc;
    --surface: rgba(26,26,26,0.04); --surface-border: rgba(26,26,26,0.12);
    --text: #241c14; --text-dim: #564a3c; --text-muted: #7a6f60;
    --charcoal-card: #fffdf9;
    --shadow-soft: 0 10px 40px rgba(80,55,25,0.14);
    --shadow-deep: 0 30px 80px rgba(80,55,25,0.20);
  }
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  transition: background .4s var(--ease), color .4s var(--ease);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font-family: inherit; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; border-radius: 4px; }

/* ---------- Typography ---------- */
h1, h2, h3, .display {
  font-family: var(--font-head);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.section-kicker {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: .6rem;
}
.section-kicker::before {
  content: ""; width: 32px; height: 2px; background: var(--orange); display: inline-block;
}
.section-title {
  font-size: clamp(2.6rem, 6vw, 5rem);
  margin: .5rem 0 1rem;
  color: var(--text);
}
.section-title .accent { color: var(--orange); }
.lead { font-size: 1.12rem; color: var(--text-dim); max-width: 60ch; }

/* ---------- Layout ---------- */
.container { width: min(100% - 2.4rem, var(--maxw)); margin-inline: auto; }
.section { padding: clamp(4rem, 9vw, 8rem) 0; position: relative; }
.section--alt { background: var(--bg-alt); }
.text-center { text-align: center; }
.section-head { max-width: 760px; margin: 0 auto 3.2rem; }
.section-head.center { text-align: center; }
.section-head.center .section-kicker { justify-content: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: 1rem 2rem; border-radius: 100px;
  font-weight: 700; font-size: .95rem; letter-spacing: .02em;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s, color .3s;
  position: relative; overflow: hidden; white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: linear-gradient(135deg, var(--orange), var(--orange-bright)); color: #1a1206; box-shadow: 0 8px 26px rgba(217,119,6,.4); }
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(217,119,6,.55); }
.btn--ghost { background: rgba(248,244,238,.06); color: var(--text); border: 1.5px solid var(--surface-border); backdrop-filter: blur(8px); }
.btn--ghost:hover { background: rgba(248,244,238,.13); transform: translateY(-3px); border-color: var(--orange); }
/* Ghost buttons sit on dark photo backgrounds — force light, readable text in any theme */
.hero .btn--ghost, .page-hero .btn--ghost, .final-cta .btn--ghost, .adventure .btn--ghost {
  color: var(--cream); background: rgba(248,244,238,.14); border-color: rgba(248,244,238,.45); font-weight: 700;
}
.hero .btn--ghost:hover, .page-hero .btn--ghost:hover, .final-cta .btn--ghost:hover, .adventure .btn--ghost:hover {
  color: var(--cream); background: rgba(248,244,238,.26); border-color: var(--orange-bright);
}
.btn--dark { background: var(--charcoal); color: var(--cream); }
.btn--dark:hover { background: #000; transform: translateY(-3px); }
.btn--lg { padding: 1.15rem 2.6rem; font-size: 1.05rem; }
.btn--block { width: 100%; }

/* ---------- Navigation ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000; height: var(--nav-h);
  display: flex; align-items: center;
  transition: background .4s var(--ease), box-shadow .4s, backdrop-filter .4s, height .4s;
}
.nav.scrolled {
  background: rgba(20,18,16,.82);
  backdrop-filter: blur(16px) saturate(140%);
  box-shadow: 0 6px 30px rgba(0,0,0,.35);
  border-bottom: 1px solid rgba(248,244,238,.07);
}
:root[data-theme="light"] .nav.scrolled { background: rgba(248,244,238,.85); }
.nav__inner { width: min(100% - 2.4rem, var(--maxw)); margin-inline: auto; display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: .7rem; z-index: 1002; }
.brand__mark {
  width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--orange), var(--whiskey));
  box-shadow: 0 6px 18px rgba(217,119,6,.4); flex-shrink: 0;
}
.brand__mark svg { width: 26px; height: 26px; }
.brand__name { font-family: var(--font-head); font-size: 1.65rem; line-height: .85; color: var(--cream); letter-spacing: 1px; }
.nav.scrolled .brand__name, :root[data-theme="light"] .brand__name { color: var(--text); }
.brand__name span { display: block; font-family: var(--font-body); font-size: .56rem; letter-spacing: .34em; color: var(--orange); font-weight: 700; }

/* Image logo (circular emblem) */
.brand { gap: .8rem; }
.brand__logo {
  height: 76px; width: 76px; border-radius: 50%; object-fit: cover;
  background: var(--cream); padding: 2px; display: block;
  box-shadow: 0 3px 12px rgba(0,0,0,.35);
  transition: height .4s var(--ease), width .4s var(--ease);
}
.nav.scrolled .brand__logo { height: 66px; width: 66px; }
.footer__brand .brand__logo { height: 72px; width: 72px; }
.loader__logo {
  height: 112px; width: 112px; border-radius: 50%; object-fit: cover;
  background: var(--cream); padding: 3px; margin: 0 auto 1rem; display: block;
  box-shadow: 0 6px 24px rgba(0,0,0,.4);
  animation: loaderPulse 1.4s var(--ease) infinite;
}
@media (max-width: 760px) { .brand__logo, .nav.scrolled .brand__logo { height: 56px; width: 56px; } }

.nav__links { display: flex; align-items: center; gap: .3rem; }
.nav__link {
  padding: .55rem 1rem; font-weight: 600; font-size: .93rem; color: var(--cream);
  border-radius: 100px; position: relative; transition: color .25s;
}
.nav.scrolled .nav__link, :root[data-theme="light"] .nav__link { color: var(--text); }
.nav__link::after {
  content: ""; position: absolute; left: 1rem; right: 1rem; bottom: .35rem; height: 2px;
  background: var(--orange); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
}
.nav__link:hover::after, .nav__link.active::after { transform: scaleX(1); }
.nav__link.active { color: var(--orange); }
.nav__actions { display: flex; align-items: center; gap: .8rem; }
.theme-toggle {
  width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(248,244,238,.08); border: 1px solid var(--surface-border); transition: .25s;
}
.theme-toggle:hover { background: rgba(217,119,6,.2); transform: rotate(15deg); }
.theme-toggle svg { width: 20px; height: 20px; }
.theme-toggle .sun { display: none; }
:root[data-theme="light"] .theme-toggle .sun { display: block; }
:root[data-theme="light"] .theme-toggle .moon { display: none; }

.nav__cta { padding: .7rem 1.5rem; }
.burger { display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px; align-items: center; justify-content: center; z-index: 1002; }
.burger span { width: 26px; height: 2.5px; background: var(--cream); border-radius: 3px; transition: .35s var(--ease); }
.nav.scrolled .burger span, :root[data-theme="light"] .burger span { background: var(--text); }
.burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 1001;
  background: linear-gradient(160deg, var(--charcoal) 0%, #120f0c 100%);
  display: flex; flex-direction: column; justify-content: center; align-items: center; gap: .4rem;
  transform: translateY(-100%); transition: transform .55s var(--ease); padding: 2rem;
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a { font-family: var(--font-head); font-size: clamp(2.2rem,9vw,3.4rem); color: var(--cream); letter-spacing: 1px; opacity: 0; transform: translateY(20px); }
.mobile-menu.open a { animation: mmIn .5s var(--ease) forwards; }
.mobile-menu.open a:nth-child(1){animation-delay:.1s}.mobile-menu.open a:nth-child(2){animation-delay:.16s}
.mobile-menu.open a:nth-child(3){animation-delay:.22s}.mobile-menu.open a:nth-child(4){animation-delay:.28s}
.mobile-menu.open a:nth-child(5){animation-delay:.34s}.mobile-menu.open a:nth-child(6){animation-delay:.4s}
.mobile-menu a:hover { color: var(--orange); }
.mobile-menu .mm-contact { margin-top: 1.5rem; font-family: var(--font-body); font-size: 1rem; color: var(--text-dim); letter-spacing: normal; }
@keyframes mmIn { to { opacity: 1; transform: translateY(0); } }

/* ---------- Loader ---------- */
.loader {
  position: fixed; inset: 0; z-index: 3000; background: var(--charcoal);
  display: grid; place-items: center; transition: opacity .6s var(--ease), visibility .6s;
}
.loader.done { opacity: 0; visibility: hidden; }
.loader__inner { text-align: center; }
.loader__mark { width: 78px; height: 78px; margin: 0 auto 1.2rem; border-radius: 20px;
  background: linear-gradient(135deg, var(--orange), var(--whiskey)); display: grid; place-items: center;
  animation: loaderPulse 1.4s var(--ease) infinite; }
.loader__mark svg { width: 44px; height: 44px; }
.loader__name { font-family: var(--font-head); font-size: 2rem; color: var(--cream); letter-spacing: 2px; }
.loader__bar { width: 180px; height: 3px; background: rgba(255,255,255,.12); border-radius: 3px; margin: 1rem auto 0; overflow: hidden; }
.loader__bar i { display: block; height: 100%; width: 40%; background: var(--orange); border-radius: 3px; animation: loaderBar 1.1s var(--ease) infinite; }
@keyframes loaderPulse { 0%,100%{ transform: scale(1);} 50%{ transform: scale(1.08);} }
@keyframes loaderBar { 0%{ transform: translateX(-120%);} 100%{ transform: translateX(360%);} }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; animation: heroZoom 22s ease-in-out infinite alternate; }
@keyframes heroZoom { from { transform: scale(1.04);} to { transform: scale(1.18);} }
.hero__overlay { position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(20,16,12,.55) 0%, rgba(20,16,12,.35) 40%, rgba(20,16,12,.92) 100%),
              radial-gradient(120% 80% at 70% 20%, rgba(217,119,6,.18), transparent 60%); }
.hero__content { position: relative; z-index: 2; width: 100%; padding-top: var(--nav-h); padding-bottom: clamp(3.5rem, 10vh, 7rem); }
.hero__badge { display: inline-flex; align-items: center; gap: .55rem; padding: .5rem 1.1rem; border-radius: 100px;
  background: rgba(248,244,238,.1); border: 1px solid rgba(248,244,238,.18); backdrop-filter: blur(10px);
  font-size: .8rem; font-weight: 600; letter-spacing: .04em; margin-bottom: 1.6rem; color: var(--cream); }
.hero__badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 0 rgba(217,119,6,.6); animation: pulseDot 2s infinite; }
@keyframes pulseDot { 0%{ box-shadow: 0 0 0 0 rgba(217,119,6,.6);} 70%{ box-shadow: 0 0 0 12px rgba(217,119,6,0);} 100%{ box-shadow: 0 0 0 0 rgba(217,119,6,0);} }
.hero__title { font-size: clamp(3.2rem, 9.5vw, 8.5rem); color: var(--cream); text-shadow: 0 8px 40px rgba(0,0,0,.5); max-width: 16ch; }
.hero__title .accent { color: var(--orange); }
.hero__sub { margin: 1.5rem 0 2.4rem; font-size: clamp(1.05rem,2vw,1.35rem); color: #e9e1d4; max-width: 56ch; line-height: 1.55; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero__scroll { position: absolute; bottom: 1.7rem; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: .5rem; color: var(--cream); opacity: .8; }
.hero__scroll .mouse { width: 26px; height: 42px; border: 2px solid rgba(248,244,238,.6); border-radius: 16px; position: relative; }
.hero__scroll .mouse::after { content: ""; position: absolute; top: 7px; left: 50%; transform: translateX(-50%); width: 4px; height: 8px; background: var(--orange); border-radius: 3px; animation: scrollWheel 1.6s infinite; }
.hero__scroll span { font-size: .68rem; letter-spacing: .28em; text-transform: uppercase; }
@keyframes scrollWheel { 0%{ opacity:0; transform: translate(-50%,0);} 40%{opacity:1;} 100%{ opacity:0; transform: translate(-50%,14px);} }

/* ---------- Stats ---------- */
.stats { background: linear-gradient(135deg, var(--whiskey) 0%, #4d3019 100%); position: relative; overflow: hidden; }
.stats::before { content:""; position:absolute; inset:0; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cpath d='M0 30h60M30 0v60' stroke='%23ffffff' stroke-opacity='0.03' stroke-width='1'/%3E%3C/svg%3E"); }
.stats__grid { position: relative; display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: rgba(255,255,255,.1); border-radius: var(--radius); overflow: hidden; }
.stat { background: linear-gradient(135deg, var(--whiskey) 0%, #4d3019 100%); padding: 2.6rem 1.4rem; text-align: center; }
.stat__icon { width: 52px; height: 52px; margin: 0 auto 1rem; border-radius: 14px; background: rgba(248,244,238,.12); display: grid; place-items: center; color: var(--orange-bright); }
.stat__icon svg { width: 28px; height: 28px; }
.stat__num { font-family: var(--font-head); font-size: 2.8rem; line-height: 1; color: var(--cream); }
.stat__label { font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; color: #e8d8c4; margin-top: .4rem; font-weight: 600; }

/* ---------- Featured Food ---------- */
.food-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 1.4rem; }
.food-card { position: relative; border-radius: var(--radius); overflow: hidden; min-height: 280px; box-shadow: var(--shadow-soft); isolation: isolate; }
.food-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); z-index: -2; }
.food-card::after { content:""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.05) 30%, rgba(0,0,0,.85) 100%); z-index: -1; transition: opacity .4s; }
.food-card:hover img { transform: scale(1.1); }
.food-card__body { position: absolute; left: 0; right: 0; bottom: 0; padding: 1.6rem; }
.food-card__tag { display: inline-block; font-size: .68rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: #1a1206; background: var(--orange); padding: .3rem .7rem; border-radius: 100px; margin-bottom: .7rem; }
.food-card__title { font-family: var(--font-head); font-size: 2rem; color: #fff; letter-spacing: .5px; }
.food-card__desc { color: #e0d8cc; font-size: .92rem; margin-top: .2rem; opacity: 0; max-height: 0; transition: .4s var(--ease); }
.food-card:hover .food-card__desc { opacity: 1; max-height: 80px; }
.food-card--xl { grid-column: span 6; min-height: 420px; }
.food-card--lg { grid-column: span 6; }
.food-card--md { grid-column: span 4; }
.food-card--sm { grid-column: span 3; }

/* ---------- Live Music ---------- */
.music { position: relative; overflow: hidden; }
.music__grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 3rem; align-items: center; }
.music__media { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-deep); aspect-ratio: 4/3.4; }
.music__media img { width: 100%; height: 100%; object-fit: cover; }
.music__media::after { content:""; position:absolute; inset:0; background: linear-gradient(0deg, rgba(47,79,58,.5), transparent 60%); }
.music__playbtn { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); width: 84px; height: 84px; border-radius: 50%; background: rgba(217,119,6,.92); display: grid; place-items: center; color: #1a1206; box-shadow: 0 0 0 0 rgba(217,119,6,.5); animation: pulseDot 2.4s infinite; z-index: 2; }
.music__playbtn svg { width: 34px; height: 34px; margin-left: 4px; }
.music-feature { display: grid; gap: 1rem; margin-top: 2rem; }
.music-feature__item { display: flex; gap: 1.1rem; padding: 1.3rem; border-radius: var(--radius-sm); background: var(--surface); border: 1px solid var(--surface-border); transition: .3s var(--ease); }
.music-feature__item:hover { transform: translateX(8px); border-color: var(--orange); background: rgba(217,119,6,.06); }
.music-feature__icon { flex-shrink: 0; width: 50px; height: 50px; border-radius: 12px; background: linear-gradient(135deg, var(--forest), var(--forest-light)); display: grid; place-items: center; color: var(--cream); }
.music-feature__icon svg { width: 26px; height: 26px; }
.music-feature__title { font-family: var(--font-head); font-size: 1.5rem; letter-spacing: .5px; color: var(--text); }
.music-feature__text { font-size: .92rem; color: var(--text-dim); }

/* ---------- Reviews ---------- */
.reviews { background: var(--bg-alt); }
.review-carousel { position: relative; max-width: 860px; margin: 0 auto; }
.review-track { overflow: hidden; }
.review-slides { display: flex; transition: transform .6s var(--ease); }
.review-slide { min-width: 100%; padding: .5rem; }
.review-card { background: var(--surface); border: 1px solid var(--surface-border); border-radius: var(--radius); padding: clamp(2rem,5vw,3.4rem); text-align: center; backdrop-filter: blur(10px); }
.review-stars { display: flex; justify-content: center; gap: .25rem; color: var(--orange); margin-bottom: 1.4rem; }
.review-stars svg { width: 22px; height: 22px; }
.review-text { font-size: clamp(1.15rem,2.4vw,1.5rem); line-height: 1.55; color: var(--text); font-weight: 500; }
.review-author { margin-top: 1.6rem; display: flex; align-items: center; justify-content: center; gap: .9rem; }
.review-avatar { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; border: 2px solid var(--orange); }
.review-author__name { font-weight: 700; color: var(--text); }
.review-author__meta { font-size: .82rem; color: var(--text-muted); }
.review-nav { display: flex; justify-content: center; gap: .6rem; margin-top: 2rem; }
.review-dot { width: 11px; height: 11px; border-radius: 50%; background: var(--surface-border); transition: .3s; }
.review-dot.active { background: var(--orange); width: 30px; border-radius: 6px; }
.review-arrows { position: absolute; top: 50%; width: 100%; display: flex; justify-content: space-between; transform: translateY(-50%); pointer-events: none; left: 0; }
.review-arrow { pointer-events: auto; width: 50px; height: 50px; border-radius: 50%; background: var(--charcoal-card); border: 1px solid var(--surface-border); display: grid; place-items: center; color: var(--text); transition: .3s; box-shadow: var(--shadow-soft); margin: 0 -10px; }
.review-arrow:hover { background: var(--orange); color: #1a1206; }
.review-arrow svg { width: 22px; height: 22px; }
@media (max-width: 960px){ .review-arrows{ display:none; } }

/* ---------- Adventure ---------- */
.adventure { position: relative; overflow: hidden; background: var(--charcoal); }
.adventure__bg { position: absolute; inset: 0; z-index: 0; }
.adventure__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .26; }
.adventure__bg::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, var(--charcoal), rgba(26,26,26,.7), var(--charcoal)); }
.adventure .container { position: relative; z-index: 1; }
.adventure .section-title, .adventure .lead { color: var(--cream); }
.adventure .lead { color: #cfc6b8; }
.adv-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 1.2rem; margin-top: 3rem; }
.adv-card { padding: 2rem 1.6rem; border-radius: var(--radius); background: rgba(248,244,238,.05); border: 1px solid rgba(248,244,238,.1); backdrop-filter: blur(10px); transition: .4s var(--ease); }
.adv-card:hover { transform: translateY(-8px); background: rgba(47,79,58,.3); border-color: var(--forest-light); }
.adv-card__icon { width: 56px; height: 56px; border-radius: 14px; background: linear-gradient(135deg, var(--forest), var(--forest-light)); display: grid; place-items: center; color: var(--cream); margin-bottom: 1.2rem; }
.adv-card__icon svg { width: 30px; height: 30px; }
.adv-card__title { font-family: var(--font-head); font-size: 1.7rem; color: var(--cream); letter-spacing: .5px; }
.adv-card__text { color: #c3baac; font-size: .92rem; margin-top: .3rem; }
.adv-card__meta { margin-top: 1rem; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--orange-bright); font-weight: 600; }

/* ---------- Final CTA ---------- */
.final-cta { position: relative; overflow: hidden; text-align: center; }
.final-cta__bg { position: absolute; inset: 0; z-index: 0; }
.final-cta__bg img { width: 100%; height: 100%; object-fit: cover; }
.final-cta__bg::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, rgba(20,16,12,.82), rgba(20,16,12,.92)), radial-gradient(80% 60% at 50% 40%, rgba(217,119,6,.25), transparent); }
.final-cta .container { position: relative; z-index: 1; }
.final-cta__title { font-size: clamp(3rem,10vw,8rem); color: var(--cream); }
.final-cta__title .accent { color: var(--orange); }
.final-cta__sub { color: #ddd4c6; max-width: 50ch; margin: 1.2rem auto 2.4rem; font-size: 1.15rem; }
.final-cta__btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.footer { background: #110e0b; color: var(--cream); padding: 4.5rem 0 2rem; position: relative; }
:root[data-theme="light"] .footer { background: #1a1612; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(248,244,238,.1); }
.footer__brand .brand__name { color: var(--cream); }
.footer__about { color: #b0a698; margin-top: 1.2rem; max-width: 34ch; font-size: .95rem; }
.footer__social { display: flex; gap: .7rem; margin-top: 1.5rem; }
.footer__social a { width: 42px; height: 42px; border-radius: 12px; background: rgba(248,244,238,.07); display: grid; place-items: center; transition: .3s; color: var(--cream); }
.footer__social a:hover { background: var(--orange); color: #1a1206; transform: translateY(-4px); }
.footer__social svg { width: 20px; height: 20px; }
.footer__col h4 { font-family: var(--font-head); font-size: 1.3rem; letter-spacing: 1px; margin-bottom: 1.1rem; color: var(--cream); }
.footer__col a, .footer__col p { display: block; color: #b0a698; padding: .35rem 0; font-size: .94rem; transition: color .25s; }
.footer__col a:hover { color: var(--orange); }
.footer__hours-row { display: flex; justify-content: space-between; gap: 1rem; color: #b0a698; font-size: .9rem; padding: .3rem 0; }
.footer__hours-row span:last-child { color: var(--cream); font-weight: 600; }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; padding-top: 2rem; color: #8a8076; font-size: .85rem; }
.footer__bottom a { color: #8a8076; }
.footer__bottom a:hover { color: var(--orange); }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"]{ transition-delay: .1s; } .reveal[data-delay="2"]{ transition-delay: .2s; }
.reveal[data-delay="3"]{ transition-delay: .3s; } .reveal[data-delay="4"]{ transition-delay: .4s; }
.reveal[data-delay="5"]{ transition-delay: .5s; }
.reveal--left { transform: translateX(-50px); } .reveal--left.in { transform: none; }
.reveal--right { transform: translateX(50px); } .reveal--right.in { transform: none; }
.reveal--scale { transform: scale(.92); } .reveal--scale.in { transform: none; }

/* ---------- Floating decor ---------- */
.float { animation: floaty 6s ease-in-out infinite; }
@keyframes floaty { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-14px);} }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { position: relative; min-height: 56vh; display: flex; align-items: flex-end; overflow: hidden; padding-bottom: 3.5rem; }
.page-hero__bg { position: absolute; inset: 0; z-index: 0; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; animation: heroZoom 26s ease-in-out infinite alternate; }
.page-hero__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,16,12,.5), rgba(20,16,12,.9)); z-index: 1; }
.page-hero .container { position: relative; z-index: 2; padding-top: var(--nav-h); }
.page-hero__title { font-size: clamp(3rem,8vw,6.5rem); color: var(--cream); }
.page-hero__title .accent { color: var(--orange); }
.breadcrumb { display: flex; gap: .5rem; align-items: center; color: #cabfb0; font-size: .85rem; margin-bottom: 1rem; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span { color: var(--orange); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.story-img-stack { position: relative; }
.story-img-stack img { border-radius: var(--radius); box-shadow: var(--shadow-deep); width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.story-img-stack .badge-float { position: absolute; bottom: -24px; right: -10px; background: var(--orange); color: #1a1206; padding: 1.3rem 1.6rem; border-radius: var(--radius-sm); box-shadow: var(--shadow-soft); text-align: center; }
.story-img-stack .badge-float strong { font-family: var(--font-head); font-size: 2.4rem; display: block; line-height: .9; }
.story-img-stack .badge-float span { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 700; }

.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 1.4rem; }
.value-card { padding: 2.2rem 1.8rem; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--surface-border); transition: .4s var(--ease); text-align: center; }
.value-card:hover { transform: translateY(-8px); border-color: var(--orange); box-shadow: var(--shadow-soft); }
.value-card__icon { width: 64px; height: 64px; margin: 0 auto 1.2rem; border-radius: 50%; background: linear-gradient(135deg, var(--orange), var(--whiskey)); display: grid; place-items: center; color: #fff; }
.value-card__icon svg { width: 32px; height: 32px; }
.value-card__title { font-family: var(--font-head); font-size: 1.7rem; letter-spacing: .5px; color: var(--text); }
.value-card__text { color: var(--text-dim); font-size: .92rem; margin-top: .4rem; }

/* Timeline */
.timeline { position: relative; max-width: 820px; margin: 3rem auto 0; }
.timeline::before { content:""; position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; background: linear-gradient(var(--orange), var(--whiskey)); transform: translateX(-50%); }
.tl-item { position: relative; width: 50%; padding: 1rem 2.5rem; margin-bottom: 1.5rem; }
.tl-item:nth-child(odd) { left: 0; text-align: right; }
.tl-item:nth-child(even) { left: 50%; }
.tl-dot { position: absolute; top: 1.6rem; width: 18px; height: 18px; border-radius: 50%; background: var(--orange); border: 4px solid var(--bg); box-shadow: 0 0 0 3px var(--orange); }
.tl-item:nth-child(odd) .tl-dot { right: -9px; }
.tl-item:nth-child(even) .tl-dot { left: -9px; }
.tl-card { background: var(--surface); border: 1px solid var(--surface-border); border-radius: var(--radius-sm); padding: 1.4rem 1.6rem; }
.tl-year { font-family: var(--font-head); font-size: 2rem; color: var(--orange); letter-spacing: 1px; }
.tl-title { font-weight: 700; color: var(--text); margin: .2rem 0; }
.tl-text { color: var(--text-dim); font-size: .9rem; }

/* Team */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px,1fr)); gap: 1.6rem; }
.team-card { border-radius: var(--radius); overflow: hidden; background: var(--surface); border: 1px solid var(--surface-border); transition: .4s var(--ease); }
.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-soft); }
.team-card__img { aspect-ratio: 1/1.05; overflow: hidden; }
.team-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); filter: saturate(.95); }
.team-card:hover .team-card__img img { transform: scale(1.08); }
.team-card__body { padding: 1.3rem 1.4rem; }
.team-card__name { font-family: var(--font-head); font-size: 1.6rem; letter-spacing: .5px; color: var(--text); }
.team-card__role { color: var(--orange); font-weight: 600; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; }
.team-card__bio { color: var(--text-dim); font-size: .9rem; margin-top: .6rem; }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 1rem; }
.gallery-item { border-radius: var(--radius-sm); overflow: hidden; position: relative; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.gallery-item:hover img { transform: scale(1.12); }
.gallery-item::after { content:""; position:absolute; inset:0; background: linear-gradient(0deg, rgba(217,119,6,.4), transparent); opacity: 0; transition: .4s; }
.gallery-item:hover::after { opacity: 1; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

/* ============================================================
   MENU PAGE
   ============================================================ */
.menu-toolbar { position: sticky; top: var(--nav-h); z-index: 90; background: var(--bg); padding: 1.2rem 0; border-bottom: 1px solid var(--surface-border); }
.menu-search { position: relative; max-width: 520px; margin: 0 auto 1.2rem; }
.menu-search input { width: 100%; padding: 1rem 1.2rem 1rem 3rem; border-radius: 100px; background: var(--surface); border: 1px solid var(--surface-border); color: var(--text); font-size: 1rem; transition: .3s; }
.menu-search input:focus { border-color: var(--orange); outline: none; background: rgba(217,119,6,.05); }
.menu-search svg { position: absolute; left: 1.1rem; top: 50%; transform: translateY(-50%); width: 20px; height: 20px; color: var(--text-muted); }
.menu-tabs { display: flex; gap: .6rem; overflow-x: auto; padding-bottom: .4rem; scrollbar-width: thin; justify-content: flex-start; }
.menu-tabs::-webkit-scrollbar { height: 5px; } .menu-tabs::-webkit-scrollbar-thumb { background: var(--whiskey); border-radius: 5px; }
.menu-tab { padding: .65rem 1.3rem; border-radius: 100px; background: var(--surface); border: 1px solid var(--surface-border); font-weight: 600; font-size: .9rem; white-space: nowrap; transition: .3s; color: var(--text-dim); }
.menu-tab:hover { color: var(--text); border-color: var(--orange); }
.menu-tab.active { background: var(--orange); color: #1a1206; border-color: var(--orange); }

.menu-cat { margin-bottom: 4rem; scroll-margin-top: calc(var(--nav-h) + 140px); }
.menu-cat__head { display: flex; align-items: center; gap: 1.2rem; margin-bottom: 2rem; }
.menu-cat__head h2 { font-size: clamp(2.2rem,5vw,3.4rem); color: var(--text); white-space: nowrap; }
.menu-cat__head .line { flex: 1; height: 1px; background: var(--surface-border); }
.menu-cat__head .icon { width: 50px; height: 50px; border-radius: 12px; background: linear-gradient(135deg, var(--orange), var(--whiskey)); display: grid; place-items: center; color: #fff; flex-shrink: 0; }
.menu-cat__head .icon svg { width: 28px; height: 28px; }
.menu-items { display: grid; grid-template-columns: repeat(auto-fill, minmax(330px,1fr)); gap: 1.4rem; }
.menu-item { display: flex; gap: 1.1rem; padding: 1.1rem; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--surface-border); transition: .35s var(--ease); }
.menu-item:hover { border-color: var(--orange); transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.menu-item__img { width: 96px; height: 96px; border-radius: var(--radius-sm); object-fit: cover; flex-shrink: 0; }
.menu-item__body { flex: 1; min-width: 0; }
.menu-item__top { display: flex; justify-content: space-between; align-items: baseline; gap: .6rem; }
.menu-item__name { font-weight: 700; font-size: 1.08rem; color: var(--text); }
.menu-item__price { font-family: var(--font-head); font-size: 1.5rem; color: var(--orange); letter-spacing: .5px; white-space: nowrap; }
.menu-item__desc { color: var(--text-dim); font-size: .88rem; margin-top: .25rem; }
.menu-item__tags { display: flex; gap: .4rem; margin-top: .6rem; flex-wrap: wrap; }
.menu-item__tag { font-size: .66rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: .22rem .55rem; border-radius: 100px; }
.tag-spicy { background: rgba(217,40,40,.15); color: #f0765e; }
.tag-veg { background: rgba(47,79,58,.25); color: #6fb585; }
.tag-pop { background: rgba(217,119,6,.18); color: var(--orange-bright); }
.tag-gf { background: rgba(120,120,200,.15); color: #9aa0e0; }
.menu-empty { text-align: center; padding: 4rem 1rem; color: var(--text-muted); display: none; }
.menu-empty.show { display: block; }
.menu-empty svg { width: 60px; height: 60px; margin-bottom: 1rem; opacity: .5; }

/* ============================================================
   EVENTS PAGE
   ============================================================ */
.event-filters { display: flex; gap: .6rem; flex-wrap: wrap; justify-content: center; margin-bottom: 3rem; }
.event-filter { padding: .65rem 1.4rem; border-radius: 100px; background: var(--surface); border: 1px solid var(--surface-border); font-weight: 600; font-size: .9rem; transition: .3s; color: var(--text-dim); }
.event-filter:hover { color: var(--text); border-color: var(--orange); }
.event-filter.active { background: var(--orange); color: #1a1206; border-color: var(--orange); }

.featured-event { display: grid; grid-template-columns: 1.1fr 1fr; gap: 0; border-radius: var(--radius); overflow: hidden; background: var(--surface); border: 1px solid var(--surface-border); margin-bottom: 3.5rem; box-shadow: var(--shadow-deep); }
.featured-event__media { position: relative; min-height: 360px; }
.featured-event__media img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.featured-event__media::after { content:""; position:absolute; inset:0; background: linear-gradient(110deg, transparent 40%, var(--charcoal-card)); }
.featured-event__badge { position: absolute; top: 1.2rem; left: 1.2rem; z-index: 2; background: var(--orange); color: #1a1206; padding: .45rem 1rem; border-radius: 100px; font-weight: 700; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; }
.featured-event__body { padding: clamp(1.8rem,4vw,3rem); display: flex; flex-direction: column; justify-content: center; }
.featured-event__date { color: var(--orange); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; font-size: .85rem; }
.featured-event__title { font-family: var(--font-head); font-size: clamp(2.2rem,5vw,3.6rem); letter-spacing: .5px; color: var(--text); margin: .4rem 0 .6rem; }
.featured-event__desc { color: var(--text-dim); margin-bottom: 1.6rem; }
.countdown { display: flex; gap: .8rem; margin-bottom: 1.8rem; }
.countdown__unit { background: var(--charcoal); border: 1px solid var(--surface-border); border-radius: var(--radius-sm); padding: .9rem 1rem; text-align: center; min-width: 70px; }
:root[data-theme="light"] .countdown__unit { background: rgba(26,26,26,.05); }
.countdown__num { font-family: var(--font-head); font-size: 2.2rem; line-height: 1; color: var(--orange); }
.countdown__label { font-size: .66rem; letter-spacing: .12em; text-transform: uppercase; color: var(--text-muted); margin-top: .3rem; }

.events-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px,1fr)); gap: 1.6rem; }
.event-card { border-radius: var(--radius); overflow: hidden; background: var(--surface); border: 1px solid var(--surface-border); transition: .4s var(--ease); display: flex; flex-direction: column; }
.event-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-soft); border-color: var(--orange); }
.event-card__media { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.event-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.event-card:hover .event-card__media img { transform: scale(1.08); }
.event-card__cat { position: absolute; top: .9rem; left: .9rem; padding: .35rem .8rem; border-radius: 100px; font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; backdrop-filter: blur(6px); }
.cat-music { background: rgba(217,119,6,.9); color: #1a1206; }
.cat-karaoke { background: rgba(47,79,58,.9); color: #fff; }
.cat-community { background: rgba(107,68,35,.9); color: #fff; }
.cat-seasonal { background: rgba(180,60,60,.9); color: #fff; }
.event-card__datechip { position: absolute; top: .9rem; right: .9rem; background: var(--charcoal); border-radius: var(--radius-sm); padding: .5rem .7rem; text-align: center; color: var(--cream); min-width: 54px; }
.event-card__datechip .d { font-family: var(--font-head); font-size: 1.6rem; line-height: .9; color: var(--orange); }
.event-card__datechip .m { font-size: .66rem; letter-spacing: .12em; text-transform: uppercase; }
.event-card__body { padding: 1.4rem; flex: 1; display: flex; flex-direction: column; }
.event-card__time { color: var(--text-muted); font-size: .82rem; display: flex; align-items: center; gap: .4rem; }
.event-card__time svg { width: 15px; height: 15px; }
.event-card__title { font-family: var(--font-head); font-size: 1.7rem; letter-spacing: .5px; color: var(--text); margin: .4rem 0; }
.event-card__desc { color: var(--text-dim); font-size: .9rem; flex: 1; }
.event-card__foot { display: flex; align-items: center; justify-content: space-between; margin-top: 1.2rem; gap: .8rem; }
.event-card__price { font-weight: 700; color: var(--text); }
.event-card__price.free { color: var(--forest-light); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 3rem; align-items: start; }
.form-card { background: var(--surface); border: 1px solid var(--surface-border); border-radius: var(--radius); padding: clamp(1.6rem,4vw,2.6rem); backdrop-filter: blur(10px); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-weight: 600; font-size: .85rem; margin-bottom: .45rem; color: var(--text); }
.field label .req { color: var(--orange); }
.field input, .field select, .field textarea {
  width: 100%; padding: .85rem 1rem; border-radius: var(--radius-sm);
  background: var(--bg); border: 1px solid var(--surface-border); color: var(--text); font-size: .98rem; transition: .25s;
}
:root[data-theme="light"] .field input, :root[data-theme="light"] .field select, :root[data-theme="light"] .field textarea { background: #fff; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--orange); outline: none; box-shadow: 0 0 0 3px rgba(217,119,6,.15); }
.field textarea { resize: vertical; min-height: 110px; }
.field.error input, .field.error select { border-color: #e0564a; box-shadow: 0 0 0 3px rgba(224,86,74,.15); }
.field__err { color: #f0765e; font-size: .78rem; margin-top: .35rem; display: none; }
.field.error .field__err { display: block; }
.form-success { display: none; text-align: center; padding: 2.5rem 1rem; }
.form-success.show { display: block; animation: mmIn .5s var(--ease) forwards; }
.form-success__icon { width: 72px; height: 72px; margin: 0 auto 1.2rem; border-radius: 50%; background: var(--forest); display: grid; place-items: center; color: #fff; }
.form-success__icon svg { width: 40px; height: 40px; }

.info-card { background: var(--surface); border: 1px solid var(--surface-border); border-radius: var(--radius); padding: 1.8rem; margin-bottom: 1.4rem; }
.info-row { display: flex; gap: 1rem; padding: .9rem 0; border-bottom: 1px solid var(--surface-border); }
.info-row:last-child { border-bottom: none; }
.info-row__icon { width: 46px; height: 46px; border-radius: 12px; background: rgba(217,119,6,.12); display: grid; place-items: center; color: var(--orange); flex-shrink: 0; }
.info-row__icon svg { width: 22px; height: 22px; }
.info-row__label { font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); font-weight: 600; }
.info-row__val { color: var(--text); font-weight: 600; }
.info-row__val a:hover { color: var(--orange); }
.hours-table { width: 100%; }
.hours-table .row { display: flex; justify-content: space-between; padding: .55rem 0; border-bottom: 1px dashed var(--surface-border); }
.hours-table .row:last-child { border-bottom: none; }
.hours-table .day { color: var(--text-dim); }
.hours-table .time { color: var(--text); font-weight: 600; }
.hours-table .row.today { background: rgba(217,119,6,.08); margin: 0 -.6rem; padding: .55rem .6rem; border-radius: 8px; border: none; }
.hours-table .row.today .day { color: var(--orange); font-weight: 700; }
.map-wrap { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--surface-border); box-shadow: var(--shadow-soft); }
.map-wrap iframe { width: 100%; height: 320px; border: 0; display: block; filter: grayscale(.2) contrast(1.05); }

/* ---------- Marquee ---------- */
.marquee { background: var(--orange); overflow: hidden; padding: .9rem 0; }
.marquee__track { display: flex; gap: 3rem; white-space: nowrap; animation: marquee 28s linear infinite; width: max-content; }
.marquee__track span { font-family: var(--font-head); font-size: 1.4rem; letter-spacing: 1px; color: #1a1206; display: inline-flex; align-items: center; gap: 3rem; }
.marquee__track span::after { content: "★"; color: #1a1206; }
@keyframes marquee { from { transform: translateX(0);} to { transform: translateX(-50%);} }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .food-card--xl, .food-card--lg { grid-column: span 12; }
  .food-card--md { grid-column: span 6; }
  .food-card--sm { grid-column: span 6; }
  .music__grid { grid-template-columns: 1fr; }
  .story-grid { grid-template-columns: 1fr; }
  .featured-event { grid-template-columns: 1fr; }
  .featured-event__media::after { background: linear-gradient(180deg, transparent 50%, var(--charcoal-card)); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 760px) {
  .nav__links, .nav__cta, .nav__actions .desktop-only { display: none; }
  .burger { display: flex; }
  .stats__grid { grid-template-columns: repeat(2,1fr); }
  .form-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .timeline::before { left: 18px; }
  .tl-item { width: 100%; left: 0 !important; text-align: left !important; padding-left: 3rem; padding-right: 0; }
  .tl-item .tl-dot { left: 9px !important; right: auto !important; }
  .menu-item__img { width: 76px; height: 76px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; }
  .review-text { font-size: 1.15rem; }
}
@media (max-width: 460px) {
  .stats__grid { grid-template-columns: 1fr; }
  .countdown__unit { min-width: 58px; padding: .7rem .6rem; }
  .hero__cta .btn, .final-cta__btns .btn { width: 100%; }
}

/* Utility */
.mt-1{margin-top:1rem}.mt-2{margin-top:2rem}.mb-0{margin-bottom:0}
.grid-2{display:grid;grid-template-columns:1fr 1fr;gap:2rem}
@media(max-width:760px){.grid-2{grid-template-columns:1fr}}
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0;}
