/* ============================================
   GOODY GOODY OMELET HOUSE — styles.css
   Modern redesign keeping original warm palette
   ============================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Dancing+Script:wght@600;700&family=Lato:wght@300;400;700&display=swap');

/* ── CSS Variables ── */
:root {
  /* Brand Colors — warm, diner-authentic */
  --orange:      #D96B38;
  --orange-dk:   #B8501E;
  --orange-lt:   #F08650;
  --brown:       #3D1F0A;
  --brown-md:    #6B3A1F;
  --brown-lt:    #9B6240;
  --cream:       #FBF5ED;
  --cream-dk:    #F0E5D4;
  --tan:         #E8D5B7;
  --gold:        #C49A28;
  --gold-lt:     #D4B050;
  --white:       #FFFFFF;
  --dark:        #1A0D05;
  --gray:        #777;
  --gray-lt:     #bbb;

  /* Typography */
  --serif:   'Playfair Display', 'Georgia', serif;
  --script:  'Dancing Script', cursive;
  --sans:    'Lato', system-ui, sans-serif;

  /* Layout */
  --nav-h: 72px;
  --max-w: 1200px;
  --radius: 12px;
  --shadow: 0 8px 30px rgba(61,31,10,.12);
  --shadow-lg: 0 20px 60px rgba(61,31,10,.2);
}

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

/* ── Shared Helpers ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }

.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: .6rem;
}
.section-eyebrow.light { color: var(--orange-lt); }

.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--brown);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.section-title.light { color: var(--white); }
.section-title em { font-style: italic; color: var(--orange); }
.section-title.light em { color: var(--orange-lt); }

.section-sub {
  max-width: 600px;
  margin: 0 auto;
  color: var(--brown-lt);
  font-size: 1.05rem;
}

.title-rule {
  width: 48px; height: 3px;
  background: var(--orange);
  border-radius: 2px;
  margin-bottom: 1.6rem;
}
.title-rule.center { margin-left: auto; margin-right: auto; }
.title-rule.gold { background: var(--gold); }

.section-head {
  text-align: center;
  margin-bottom: 3rem;
}
.section-head .section-title { margin-bottom: .8rem; }
.section-head .title-rule { margin-bottom: 1rem; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: 6px;
  font-family: var(--sans);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all .3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--orange-dk);
  border-color: var(--orange-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(217,107,56,.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: #a07f1a;
  border-color: #a07f1a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196,154,40,.35);
}
.btn-outline-light {
  background: transparent;
  color: var(--cream);
  border: 2px solid rgba(251,245,237,.4);
  padding: .85rem 2rem;
  border-radius: 6px;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  transition: all .3s ease;
}
.btn-outline-light:hover {
  background: rgba(251,245,237,.1);
  border-color: var(--cream);
  transform: translateY(-2px);
}

/* ── Scroll-reveal ── */
.sr {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.sr.in {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════
   ANNOUNCE BAR
════════════════════════════════════════════ */
.announce-bar {
  background: var(--brown);
  color: var(--tan);
  text-align: center;
  padding: .55rem 1rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  transition: max-height .4s, opacity .3s, padding .4s;
}
.announce-bar i { color: var(--orange-lt); }
.ab-sep { opacity: .4; }
.ab-close {
  position: absolute; right: 1rem;
  background: none; border: none;
  color: var(--tan); cursor: pointer;
  font-size: 14px; opacity: .7;
  transition: opacity .2s;
}
.ab-close:hover { opacity: 1; }

/* ═══════════════════════════════════════════
   NAVBAR
════════════════════════════════════════════ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(251,245,237,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(61,31,10,.08);
  transition: box-shadow .3s;
}
.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(61,31,10,.12);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-script {
  font-family: var(--script);
  font-size: 1.9rem;
  color: var(--orange);
  line-height: 1;
}
.logo-sub {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--brown-md);
  margin-top: 2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
  margin-left: auto;
  list-style: none;
}
.nav-links a {
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .5px;
  color: var(--brown-md);
  padding: .5rem .8rem;
  border-radius: 6px;
  transition: all .2s;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--orange);
  background: rgba(217,107,56,.08);
}
.nav-cta {
  margin-left: 1rem;
  background: var(--orange);
  color: var(--white) !important;
  padding: .55rem 1.2rem;
  border-radius: 6px;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .5px;
  white-space: nowrap;
  transition: all .2s;
  flex-shrink: 0;
}
.nav-cta:hover {
  background: var(--orange-dk);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(217,107,56,.3);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--brown);
  border-radius: 2px;
  transition: all .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════════════
   HERO
════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform-origin: center center;
  animation: kenBurns 24s ease-in-out infinite alternate;
}
@keyframes kenBurns {
  0%   { transform: scale(1)    translateX(0)     translateY(0); }
  25%  { transform: scale(1.06) translateX(-1.5%) translateY(-1%); }
  50%  { transform: scale(1.04) translateX(1%)    translateY(-1.5%); }
  75%  { transform: scale(1.07) translateX(-1%)   translateY(1%); }
  100% { transform: scale(1.05) translateX(1.5%)  translateY(0.5%); }
}

/* Hero text entrance animations */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow {
  animation: heroFadeUp .8s cubic-bezier(.22,.61,.36,1) .25s both;
}
.hero-title {
  animation: heroFadeUp .9s cubic-bezier(.22,.61,.36,1) .5s both;
}
.hero-sub {
  animation: heroFadeUp .8s cubic-bezier(.22,.61,.36,1) .75s both;
}
.hero-btns {
  animation: heroFadeUp .8s cubic-bezier(.22,.61,.36,1) 1s both;
}
.hero-badges {
  animation: heroFadeUp .8s cubic-bezier(.22,.61,.36,1) 1.2s both;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(26,13,5,.82) 0%,
    rgba(26,13,5,.6) 55%,
    rgba(26,13,5,.2) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
}
.hero-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--orange-lt);
  margin-bottom: .8rem;
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.2rem;
}
.hero-title em {
  font-style: italic;
  color: var(--orange-lt);
}
.hero-sub {
  max-width: 520px;
  color: rgba(251,245,237,.85);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hero-badges {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.hb {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: rgba(251,245,237,.8);
  font-size: .85rem;
  font-weight: 600;
}
.hb i { color: var(--orange-lt); }
.hb-sep {
  width: 1px; height: 18px;
  background: rgba(255,255,255,.25);
}
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,.6);
  font-size: 1.2rem;
  animation: bounce 2s infinite;
  transition: color .2s;
}
.hero-scroll:hover { color: var(--orange-lt); }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ═══════════════════════════════════════════
   HOURS STRIP
════════════════════════════════════════════ */
.hours-strip {
  background: var(--brown);
  padding: 1rem 2rem;
}
.hs-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  flex-wrap: wrap;
}
.hs-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--tan);
  font-size: .78rem;
  line-height: 1.3;
  text-align: center;
  padding: .3rem .8rem;
}
.hs-item strong { color: var(--white); font-size: .8rem; font-weight: 700; }
.hs-item span { color: rgba(232,213,183,.75); }
.hs-item.closed strong { color: rgba(232,213,183,.5); }
.hs-item.closed span { color: rgba(232,213,183,.4); text-decoration: line-through; }
.hs-item.hs-addr { flex-direction: row; gap: .5rem; }
.hs-item.hs-addr i { color: var(--orange-lt); }
.hs-item.hs-addr span { color: var(--tan); font-size: .82rem; }
.hs-div { width: 1px; height: 30px; background: rgba(232,213,183,.2); }

/* ═══════════════════════════════════════════
   ABOUT
════════════════════════════════════════════ */
.about {
  padding: 6rem 0;
  background: var(--cream);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: visible;
}
.about-img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}
.about-quote-badge {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  background: var(--orange);
  color: var(--white);
  padding: 1.5rem 1.8rem;
  border-radius: var(--radius);
  max-width: 280px;
  box-shadow: var(--shadow-lg);
}
.about-quote-badge i { font-size: 1.5rem; opacity: .6; margin-bottom: .5rem; display: block; }
.about-quote-badge p { font-family: var(--serif); font-style: italic; font-size: .95rem; line-height: 1.5; margin-bottom: .5rem; }
.about-quote-badge cite { font-size: .72rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; opacity: .8; }
.about-text-col { padding-right: 1rem; }
.about-text-col p {
  color: var(--brown-md);
  margin-bottom: 1.2rem;
  font-size: 1.02rem;
}
.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .6rem;
  margin: 1.8rem 0;
}
.ah-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .9rem;
  font-weight: 600;
  color: var(--brown-md);
}
.ah-item i { color: var(--orange); font-size: .9rem; flex-shrink: 0; }

/* ═══════════════════════════════════════════
   SIGNATURE SECTION
════════════════════════════════════════════ */
.signature {
  background: var(--brown);
  overflow: hidden;
}
.sig-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
}
.sig-text {
  padding: 5rem 4rem 5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sig-text p {
  color: rgba(232,213,183,.8);
  font-size: 1.02rem;
  margin-bottom: 1.2rem;
  max-width: 480px;
}
.sig-img-col { position: relative; overflow: hidden; }
.sig-img-wrap { position: absolute; inset: 0; }
.sig-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}
.sig-img-wrap:hover img { transform: scale(1.04); }

/* ═══════════════════════════════════════════
   STATS
════════════════════════════════════════════ */
.stats-section {
  background: var(--orange);
  padding: 3.5rem 2rem;
}
.stats-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-box {
  text-align: center;
  padding: 2rem 1rem;
  border-right: 1px solid rgba(255,255,255,.25);
  position: relative;
}
.stat-box:last-child { border-right: none; }
.stat-box .counter {
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  display: inline;
}
.stat-suffix {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 600;
  color: rgba(255,255,255,.8);
}
.stat-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  margin-top: .5rem;
}

/* ═══════════════════════════════════════════
   MENU SECTION
════════════════════════════════════════════ */
.menu-section {
  padding: 6rem 0;
  background: var(--cream-dk);
}

/* Menu Tabs */
.menu-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 2.5rem;
}
.mtab {
  background: var(--cream);
  color: var(--brown-md);
  border: 2px solid var(--tan);
  padding: .6rem 1.3rem;
  border-radius: 50px;
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .5px;
  cursor: pointer;
  transition: all .25s;
}
.mtab:hover { border-color: var(--orange); color: var(--orange); }
.mtab.active {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

/* Menu Panels */
.menu-panel { display: none; }
.menu-panel.active { display: block; }

.menu-note {
  background: rgba(217,107,56,.1);
  border-left: 3px solid var(--orange);
  padding: .8rem 1rem;
  border-radius: 0 6px 6px 0;
  font-size: .85rem;
  color: var(--brown-md);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.menu-note i { color: var(--orange); }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5px;
  background: var(--tan);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.menu-item {
  background: var(--white);
  padding: 1.5rem;
  transition: background .2s;
}
.menu-item:hover { background: rgba(217,107,56,.04); }
.menu-item-sides { background: var(--cream) !important; }
.mi-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: .4rem;
}
.mi-name {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--brown);
}
.mi-price {
  font-weight: 700;
  color: var(--orange);
  font-size: .95rem;
  white-space: nowrap;
  flex-shrink: 0;
}
.mi-desc {
  font-size: .88rem;
  color: var(--gray);
  line-height: 1.6;
}
.menu-item.mi-featured {
  background: rgba(196,154,40,.06);
  border-left: 3px solid var(--gold);
}
.menu-item.mi-featured:hover {
  background: rgba(196,154,40,.1);
}
.menu-item.mi-featured .mi-name {
  color: var(--brown-md);
}
.menu-item.mi-featured .mi-price {
  color: var(--gold);
}
.mi-sub {
  font-family: var(--sans);
  font-size: .75rem;
  font-weight: 400;
  color: var(--gray);
  font-style: normal;
}
.menu-disclaimer {
  text-align: center;
  margin-top: 2rem;
  font-size: .8rem;
  color: var(--gray);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
}

/* ═══════════════════════════════════════════
   REVIEWS
════════════════════════════════════════════ */
.reviews-section {
  background: var(--brown);
  padding: 6rem 0;
}
.reviews-section .section-head { text-align: center; }

.review-rating-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  margin-top: .8rem;
}
.rrb-stars { color: #F4B942; font-size: 1.1rem; display: flex; gap: 3px; }
.rrb-score {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.rrb-count { color: rgba(232,213,183,.6); font-size: .9rem; }

.featured-review {
  background: rgba(251,245,237,.06);
  border: 1px solid rgba(232,213,183,.15);
  border-radius: var(--radius);
  padding: 3rem;
  text-align: center;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.fr-icon {
  font-size: 3rem;
  color: var(--orange);
  opacity: .5;
  margin-bottom: 1rem;
  display: block;
}
.featured-review blockquote {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--cream);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.featured-review cite {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange-lt);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.rv-card {
  background: rgba(251,245,237,.05);
  border: 1px solid rgba(232,213,183,.12);
  border-radius: var(--radius);
  padding: 1.6rem;
  transition: background .3s, border-color .3s, transform .3s;
}
.rv-card:hover {
  background: rgba(217,107,56,.12);
  border-color: rgba(217,107,56,.3);
  transform: translateY(-4px);
}
.rv-top {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-bottom: 1rem;
}
.rv-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.rv-meta { flex: 1; }
.rv-meta strong { display: block; color: var(--cream); font-size: .9rem; }
.rv-meta span { font-size: .75rem; color: rgba(232,213,183,.5); }
.rv-stars { color: #F4B942; font-size: .75rem; display: flex; gap: 2px; margin-left: auto; }
.rv-card p {
  font-size: .88rem;
  color: rgba(232,213,183,.8);
  line-height: 1.6;
  font-style: italic;
}
.reviews-cta { text-align: center; }

/* ═══════════════════════════════════════════
   GALLERY
════════════════════════════════════════════ */
.gallery-section {
  padding: 5rem 0;
  background: var(--cream);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 6px;
  margin-top: 2rem;
  padding: 0 2rem;
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
}
.gal-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 4/3;
  cursor: zoom-in;
}
.gal-wide {
  grid-column: span 2;
  aspect-ratio: 16/7;
}
.gal-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease, filter .4s ease;
  filter: brightness(.95) saturate(1.05);
}
.gal-item:hover img {
  transform: scale(1.06);
  filter: brightness(1) saturate(1.1);
}
.gal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,13,5,.7) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  opacity: 0;
  transition: opacity .3s;
}
.gal-item:hover .gal-overlay { opacity: 1; }
.gal-overlay span {
  color: var(--white);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════
   VIDEO SECTION
════════════════════════════════════════════ */
.video-section {
  background: var(--cream-dk);
  padding: 5rem 0;
}
.video-wrap {
  position: relative;
  max-width: 840px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16/9;
}
.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: none;
}

/* ═══════════════════════════════════════════
   LOCATION / HOURS
════════════════════════════════════════════ */
.location-section {
  background: var(--cream);
  padding: 6rem 0;
}
.loc-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}
.hours-table {
  margin: 1.5rem 0;
  border: 1px solid var(--tan);
  border-radius: var(--radius);
  overflow: hidden;
}
.ht-row {
  display: flex;
  justify-content: space-between;
  padding: .7rem 1rem;
  border-bottom: 1px solid var(--tan);
  font-size: .9rem;
  color: var(--brown-md);
}
.ht-row:last-child { border-bottom: none; }
.ht-row span:first-child { font-weight: 600; }
.ht-row.closed-row { opacity: .5; }
.closed-tag {
  background: rgba(61,31,10,.1);
  color: var(--brown-md);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: .15rem .5rem;
  border-radius: 4px;
}
.loc-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.8rem;
}
.ld-item {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
  font-size: .9rem;
}
.ld-item i {
  color: var(--orange);
  font-size: 1rem;
  margin-top: .15rem;
  flex-shrink: 0;
  width: 16px;
}
.ld-item strong { display: block; color: var(--brown); font-size: .85rem; }
.ld-item span { color: var(--brown-md); }
.loc-map {
  border-radius: var(--radius);
  overflow: hidden;
  height: 460px;
  box-shadow: var(--shadow);
}

/* ═══════════════════════════════════════════
   CTA BANNER
════════════════════════════════════════════ */
.cta-banner {
  background: linear-gradient(135deg, var(--orange-dk) 0%, var(--orange) 60%, var(--orange-lt) 100%);
  padding: 5rem 2rem;
  text-align: center;
}
.cta-inner { max-width: 700px; margin: 0 auto; }
.cta-banner h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--white);
  margin-bottom: .8rem;
  font-weight: 700;
}
.cta-banner h2 em { font-style: italic; }
.cta-banner p {
  color: rgba(255,255,255,.85);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ═══════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
.footer {
  background: var(--dark);
  color: rgba(232,213,183,.7);
  padding-top: 4rem;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem 3rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer-brand { }
.footer-logo {
  font-family: var(--script);
  font-size: 2.4rem;
  color: var(--orange-lt);
  display: block;
  margin-bottom: .3rem;
}
.footer-tagline {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(232,213,183,.5);
  display: block;
  margin-bottom: 1rem;
}
.footer-about { font-size: .9rem; line-height: 1.6; max-width: 300px; }
.footer-col h4 {
  color: var(--cream);
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-col p { font-size: .88rem; line-height: 2; }
.footer-col strong { color: rgba(232,213,183,.9); }
.footer-link {
  display: block;
  font-size: .88rem;
  color: rgba(232,213,183,.6);
  line-height: 2.2;
  transition: color .2s;
}
.footer-link:hover { color: var(--orange-lt); }
.footer-bottom {
  border-top: 1px solid rgba(232,213,183,.1);
  padding: 1.5rem 2rem;
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .78rem;
  color: rgba(232,213,183,.35);
  flex-wrap: wrap;
  gap: .5rem;
}

/* ═══════════════════════════════════════════
   FLOATING CALL BUTTON
════════════════════════════════════════════ */
.float-call {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  background: var(--orange);
  color: var(--white);
  padding: .9rem 1.4rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .5px;
  box-shadow: 0 8px 30px rgba(217,107,56,.45);
  opacity: 0;
  transform: translateY(20px);
  transition: all .3s ease;
  pointer-events: none;
}
.float-call.vis {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.float-call:hover {
  background: var(--orange-dk);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(217,107,56,.55);
}
.float-call::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50px;
  border: 2px solid rgba(217,107,56,.4);
  animation: pulse-ring 2s infinite;
}
@keyframes pulse-ring {
  0% { opacity: .8; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.25); }
}

/* ═══════════════════════════════════════════
   LEGACY / IDA MAYHEW SECTION
════════════════════════════════════════════ */
.legacy-section { background: var(--cream-dk); }

.legacy-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3.5rem;
  align-items: start;
}
.legacy-photos {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.legacy-photo-top img,
.legacy-photo-mid img,
.legacy-photo-bot img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
  display: block;
}
.legacy-photo-top img { aspect-ratio: 16/7; }
.legacy-photo-mid img { aspect-ratio: 16/7; }
.legacy-photo-bot img { aspect-ratio: 16/7; }

.legacy-right { display: flex; flex-direction: column; gap: 1.5rem; }

.legacy-quote {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--orange);
}
.legacy-quote i {
  font-size: 1.8rem;
  color: var(--orange);
  opacity: .5;
  display: block;
  margin-bottom: .6rem;
}
.legacy-quote blockquote {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--brown);
  line-height: 1.65;
  margin-bottom: .6rem;
}
.legacy-quote cite {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--orange);
}
.legacy-text {
  color: var(--brown-md);
  font-size: 1rem;
  line-height: 1.7;
}

/* YouTube thumbnail link */
.yt-thumb-link {
  display: block;
  text-decoration: none;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: transform .3s, box-shadow .3s;
}
.yt-thumb-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(61,31,10,.25);
}
.yt-thumb-img {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.yt-thumb-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.yt-thumb-link:hover .yt-thumb-img img {
  transform: scale(1.04);
}
.yt-play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,13,5,.55);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  transition: background .3s;
}
.yt-thumb-link:hover .yt-play-overlay {
  background: rgba(26,13,5,.4);
}
.yt-play-btn {
  width: 68px; height: 68px;
  background: #FF0000;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(0,0,0,.4);
  transition: transform .2s, background .2s;
}
.yt-thumb-link:hover .yt-play-btn {
  transform: scale(1.1);
  background: #CC0000;
}
.yt-play-overlay span {
  color: var(--white);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════
   GOOD TO KNOW SECTION
════════════════════════════════════════════ */
.gtk-section {
  background: var(--brown);
  padding: 6rem 0;
}
.gtk-section .section-eyebrow { color: var(--orange-lt); }
.gtk-section .section-title { color: var(--white); }
.gtk-section .section-title em { color: var(--orange-lt); }
.gtk-section .title-rule { background: var(--gold); }

.gtk-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.gtk-card {
  background: rgba(251,245,237,.05);
  border: 1px solid rgba(232,213,183,.12);
  border-radius: var(--radius);
  padding: 1.8rem;
  transition: background .3s, border-color .3s, transform .3s;
}
.gtk-card:hover {
  background: rgba(217,107,56,.1);
  border-color: rgba(217,107,56,.25);
  transform: translateY(-4px);
}
.gtk-icon {
  width: 44px; height: 44px;
  background: rgba(217,107,56,.2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.gtk-icon i { color: var(--orange-lt); font-size: 1.1rem; }
.gtk-card h4 {
  color: var(--cream);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: .8rem;
}
.gtk-card ul { list-style: none; padding: 0; }
.gtk-card ul li {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: rgba(232,213,183,.75);
  font-size: .88rem;
  padding: .25rem 0;
}
.gtk-card ul li i { color: var(--orange); font-size: .7rem; flex-shrink: 0; }

.gtk-card-wait {
  background: rgba(217,107,56,.12) !important;
  border-color: rgba(217,107,56,.3) !important;
}
.gtk-wait-note {
  color: rgba(232,213,183,.8);
  font-size: .9rem;
  line-height: 1.6;
  font-style: italic;
  margin-top: .5rem;
  margin-bottom: 1rem;
}
.gtk-badge {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: .3rem .8rem;
  border-radius: 50px;
}

/* Cash-Only highlighted card */
.gtk-card-cash {
  background: rgba(196,154,40,.15) !important;
  border: 2px solid rgba(196,154,40,.5) !important;
  position: relative;
  overflow: visible;
}
.gtk-card-cash:hover {
  background: rgba(196,154,40,.22) !important;
  border-color: var(--gold) !important;
}
.gtk-cash-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--gold);
  color: var(--brown);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: .28rem .8rem;
  border-radius: 50px;
  margin-bottom: 1rem;
  width: fit-content;
  box-shadow: 0 2px 10px rgba(196,154,40,.35);
}
.gtk-cash-badge i { font-size: .65rem; }
.gtk-card-cash ul li strong {
  color: var(--gold-lt);
  font-weight: 700;
}

/* ═══════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .nav-links { gap: 0; }
  .nav-links a { padding: .5rem .6rem; font-size: .78rem; }
  .about-grid { gap: 3rem; }
  .sig-inner { grid-template-columns: 1fr; min-height: auto; }
  .sig-text { padding: 4rem 2rem; }
  .sig-img-col { height: 400px; position: relative; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-box:nth-child(2) { border-right: none; }
  .stat-box:nth-child(3), .stat-box:nth-child(4) { border-top: 1px solid rgba(255,255,255,.25); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .legacy-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .legacy-photos { flex-direction: row; }
  .legacy-photo-top, .legacy-photo-mid, .legacy-photo-bot { flex: 1; }
  .legacy-photo-top img, .legacy-photo-mid img, .legacy-photo-bot img { aspect-ratio: 4/3; }
  .gtk-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  .nav-links {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(85vw, 340px);
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    padding: calc(var(--nav-h) + 2rem) 2rem 2rem;
    transform: translateX(100%);
    transition: transform .35s ease;
    box-shadow: -8px 0 40px rgba(61,31,10,.12);
    overflow-y: auto;
    z-index: 999;
    gap: .2rem;
    margin-left: 0;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1rem; padding: .8rem 1rem; width: 100%; border-radius: 8px; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }

  .hero-title { font-size: clamp(2.4rem, 8vw, 3.5rem); }
  .hero-sub { font-size: 1rem; }

  .hs-inner { gap: .5rem; }
  .hs-div { display: none; }

  .about-grid { grid-template-columns: 1fr; gap: 4rem; }
  .about-img-col { order: -1; }
  .about-quote-badge { position: static; margin-top: -1.5rem; margin-left: 1rem; border-radius: var(--radius); }
  .about-text-col { padding-right: 0; }
  .about-highlights { grid-template-columns: 1fr; }

  .stats-inner { grid-template-columns: repeat(2, 1fr); }

  .menu-tabs { gap: .4rem; }
  .mtab { padding: .5rem 1rem; font-size: .78rem; }
  .menu-grid { grid-template-columns: 1fr; }

  .reviews-grid { grid-template-columns: 1fr; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 4px; }
  .gal-wide { grid-column: span 2; aspect-ratio: 16/9; }

  .legacy-grid { grid-template-columns: 1fr; }
  .legacy-photos { flex-direction: column; }
  .gtk-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }

  .loc-grid { grid-template-columns: 1fr; gap: 3rem; }
  .loc-map { height: 300px; }

  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { text-align: center; justify-content: center; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .stat-box { padding: 1.5rem .5rem; }
  .stat-box .counter { font-size: 2.5rem; }
  .about-quote-badge { right: auto; margin-right: 1rem; }
  .cta-btns { flex-direction: column; align-items: center; }
  .gallery-grid { grid-template-columns: 1fr; gap: 4px; }
  .gal-wide { grid-column: span 1; aspect-ratio: 4/3; }
  .gtk-grid { grid-template-columns: 1fr; }
  .announce-bar { font-size: .72rem; gap: .4rem; }
  .ab-sep { display: none; }
}
