/* === TOKENS === */
:root {
  --green-dark: #1a2e1a;
  --green-mid: #2d4a2d;
  --gold: #c9a84c;
  --gold-light: #d4b86a;
  --cream: #f5f0e8;
  --off-white: #faf8f4;
  --charcoal: #2a2a2a;
  --text-muted: #6b6b6b;
  --border: #e0d9cc;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito Sans', system-ui, sans-serif;
  font-size: 16px;
  color: var(--charcoal);
  background: var(--off-white);
  line-height: 1.6;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: 'EB Garamond', Georgia, serif;
  line-height: 1.2;
}
h1 { font-size: clamp(2rem, 6vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h3 { font-size: 1.25rem; }

/* === BUTTONS === */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s cubic-bezier(0.16,1,0.3,1), transform 0.15s cubic-bezier(0.16,1,0.3,1), border-color 0.2s;
  transform: translateY(0);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(0.98); }
.btn-primary {
  background: var(--gold);
  color: var(--green-dark);
}
.btn-primary:hover { background: var(--gold-light); }
.btn-ghost {
  border: 2px solid rgba(245, 240, 232, 0.6);
  color: var(--cream);
}
.btn-ghost:hover { border-color: var(--cream); }
.btn-dark {
  background: var(--green-dark);
  color: var(--gold);
}
.btn-dark:hover { background: var(--green-mid); }

/* === NAV === */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(26, 46, 26, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.nav-logo img {
  height: 60px;
  width: auto;
  display: block;
}
.nav-links {
  display: none;
  list-style: none;
  gap: 1.75rem;
  align-items: center;
}
.nav-links a {
  color: rgba(245, 240, 232, 0.8);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--cream); }
.nav-links .btn { padding: 0.45rem 1rem; font-size: 0.8rem; }
.nav-phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.nav-phone svg { flex-shrink: 0; }
@media (min-width: 900px) { .nav-phone { display: none; } }
.nav-hamburger {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: transform 0.25s, opacity 0.25s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--green-dark);
  padding: 1.5rem 1.25rem;
  gap: 1.25rem;
  position: fixed;
  top: 76px; left: 0; right: 0;
  z-index: 99;
  border-top: 1px solid var(--green-mid);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  color: rgba(245, 240, 232, 0.85);
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.nav-mobile .btn { text-align: center; }

/* === HERO === */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  background: var(--green-dark) url('assets/images/pub-exterior-night.jpg') center 35%/cover no-repeat;
  padding: 100px 1.5rem 4rem;
}
/* Centre on narrow screens where split makes no sense */
@media (max-width: 620px) {
  .hero { justify-content: center; text-align: center; }
  .hero-content { text-align: center; }
  .hero-btns { justify-content: center; }
  .hero-logo { height: 130px; margin-left: auto; margin-right: auto; }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(10,20,10,0.82) 0%, rgba(10,20,10,0.45) 65%, rgba(10,20,10,0.2) 100%),
    linear-gradient(to top, rgba(10,20,10,0.6) 0%, transparent 40%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  text-align: left;
}
.hero-logo {
  height: 180px;
  width: auto;
  margin-bottom: 1.5rem;
  display: block;
  filter: drop-shadow(0 2px 12px rgba(0,0,0,0.7));
}
.hero-eyebrow {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.hero-content h1 {
  color: var(--cream);
  margin-bottom: 1.1rem;
  text-shadow: 0 2px 24px rgba(0,0,0,0.35);
  letter-spacing: -0.01em;
}
.hero-content > p:not(.hero-eyebrow):not(.hero-rating) {
  color: rgba(245, 240, 232, 0.8);
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  margin-bottom: 2rem;
  max-width: 480px;
}
.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.25rem;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(201,168,76,0.5);
  border-radius: 4px;
  padding: 0.6rem 1rem;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
}
.hero-badge:hover {
  background: rgba(0,0,0,0.65);
  border-color: var(--gold);
  transform: translateY(-1px);
}
.hero-badge-stars {
  color: var(--gold);
  font-size: 0.8rem;
}
.hero-badge-text {
  color: var(--cream);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* === HOURS BAND === */
.hours-band {
  background: var(--green-dark);
  padding: 2.5rem 1.25rem;
  text-align: center;
}
.hours-band h2 {
  color: var(--gold);
  font-size: 1.25rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 1.5rem;
  max-width: 480px;
  margin: 0 auto 1rem;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: 0.5rem;
}
.hours-row .day {
  color: rgba(245, 240, 232, 0.7);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.hours-row .time {
  color: var(--cream);
  font-size: 0.85rem;
  font-weight: 700;
  text-align: right;
}
.hours-row.closed .time { color: rgba(245,240,232,0.55); }
.hours-note {
  color: rgba(245, 240, 232, 0.5);
  font-size: 0.75rem;
  margin-top: 1rem;
  font-style: italic;
}

/* === SECTION WRAPPER === */
.section-light { background: var(--off-white); }
.section-cream { background: var(--cream); }
.section-dark { background: var(--green-dark); }
.section-charcoal { background: #222; }

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 1.25rem;
}

.section-eyebrow {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-title { margin-bottom: 1rem; }
.section-title.light { color: var(--cream); }
.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin-bottom: 2.5rem;
}
.section-subtitle.light {
  color: rgba(245, 240, 232, 0.7);
}

/* === ABOUT === */
.about-inner {
  display: grid;
  gap: 3rem;
}
.about-text p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-size: 1.05rem;
}
.about-text p:last-child { margin-bottom: 0; }
.about-img img {
  width: 100%;
  border-radius: 4px;
  object-fit: cover;
}
.icon-cards {
  display: grid;
  gap: 1.25rem;
  margin-top: 3rem;
  grid-template-columns: 1fr;
}
.icon-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.75rem 1.5rem;
}
.icon-card .icon-mark {
  display: block;
  width: 32px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 1rem;
}
.icon-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.icon-card p { color: var(--text-muted); font-size: 0.9rem; }

/* === GRILL HIGHLIGHT === */
.grill-inner {
  display: grid;
  gap: 3rem;
}
.grill-text .section-eyebrow { color: var(--gold); }
.dish-list { margin: 1.5rem 0; }
.dish-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  gap: 1rem;
}
.dish-row:last-child { border-bottom: none; }
.dish-name { color: var(--cream); font-size: 0.95rem; }
.dish-price {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.95rem;
  white-space: nowrap;
}
.dish-note {
  color: rgba(245,240,232,0.7);
  font-size: 0.8rem;
  font-style: italic;
  margin-top: 0.5rem;
  line-height: 1.5;
}
.grill-img img {
  width: 100%;
  border-radius: 4px;
  object-fit: cover;
  max-height: 400px;
}

/* === DRINKS === */
.drinks-inner {
  display: grid;
  gap: 3rem;
}
.drinks-img img {
  width: 100%;
  border-radius: 4px;
  object-fit: cover;
  max-height: 380px;
}
.drinks-text h2 { margin-bottom: 1rem; }
.drinks-text p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-size: 1.05rem;
}
.ales-list {
  list-style: none;
  margin-top: 1.25rem;
}
.ales-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--charcoal);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.ales-list li::before { content: '–'; color: var(--gold); font-weight: 700; }

/* === EVENTS === */
.events-inner {
  display: grid;
  gap: 3rem;
}
.events-img img {
  width: 100%;
  border-radius: 4px;
  object-fit: cover;
  max-height: 380px;
}
.events-features {
  list-style: none;
  margin-top: 1.25rem;
  display: grid;
  gap: 0.75rem;
}
.events-features li {
  color: rgba(245,240,232,0.75);
  font-size: 0.95rem;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
.events-features li::before { content: '—'; color: var(--gold); flex-shrink: 0; font-weight: 700; }

/* === FIND US === */
#book { scroll-margin-top: 76px; }
.find-us-map iframe {
  width: 100%;
  height: 300px;
  display: block;
  border: none;
  filter: grayscale(20%);
}
.find-us-inner {
  display: grid;
  gap: 2.5rem;
  padding: 3.5rem 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
}
.find-us-block h2 { margin-bottom: 1.25rem; }
.contact-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--gold);
  color: var(--green-dark);
  font-weight: 700;
  font-size: 1.25rem;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  margin-bottom: 1rem;
  transition: background 0.2s;
}
.contact-phone:hover { background: var(--gold-light); }
.contact-email {
  display: block;
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.75rem;
  text-decoration: underline;
  text-decoration-color: var(--border);
}
.contact-address {
  color: var(--charcoal);
  font-style: normal;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.contact-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.contact-tag {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 0.3rem 0.75rem;
  font-size: 0.8rem;
  color: var(--charcoal);
}
.find-us-hours h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--charcoal);
}
.find-us-hours .hours-row { border-color: var(--border); }
.find-us-hours .hours-row .day { color: var(--text-muted); }
.find-us-hours .hours-row .time { color: var(--charcoal); }
.find-us-hours .hours-row.closed .time { color: var(--border); }
.find-us-hours .hours-note { color: var(--text-muted); }

/* === GOOGLE REVIEW BUTTON === */
.google-review-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.5rem;
  border: 1.5px solid #dadce0;
  border-radius: 8px;
  background: #fff;
  color: var(--charcoal);
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.google-review-btn:hover {
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  border-color: #bbb;
}

/* === FOOTER === */
.site-footer {
  background: var(--green-dark);
  padding: 2.5rem 1.25rem;
  text-align: center;
}
.footer-logo { margin: 0 auto 1.5rem; height: 120px; width: auto; display: block; }
.footer-name {
  font-family: 'EB Garamond', Georgia, serif;
  color: var(--cream);
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}
.footer-address {
  color: rgba(245,240,232,0.7);
  font-size: 0.8rem;
  margin-bottom: 1.25rem;
  line-height: 1.6;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}
.footer-links a {
  color: rgba(245,240,232,0.55);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-copy {
  color: rgba(245,240,232,0.25);
  font-size: 0.72rem;
}

/* === MENU PAGE === */
.page-hero {
  background: var(--green-dark);
  padding: 8rem 1.25rem 4rem;
  text-align: center;
}
.page-hero h1 { color: var(--cream); margin-bottom: 0.75rem; }
.page-hero p {
  color: rgba(245,240,232,0.65);
  font-size: 1rem;
  max-width: 480px;
  margin: 0 auto;
}

.menu-section { padding: 3rem 1.25rem 5rem; max-width: 800px; margin: 0 auto; }

.tab-nav {
  display: flex;
  overflow-x: auto;
  gap: 0;
  border-bottom: 2px solid var(--border);
  margin-bottom: 2.5rem;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.tab-nav::-webkit-scrollbar { display: none; }
.tab-btn {
  flex-shrink: 0;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  padding: 0.75rem 1.1rem;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.tab-btn:hover { color: var(--charcoal); }
.tab-btn.active {
  color: var(--green-dark);
  border-bottom-color: var(--gold);
}

.tab-panel { display: none; }
.tab-panel.active { display: block; }

.menu-category { margin-bottom: 2.5rem; }
.menu-category h3 {
  font-size: 1.15rem;
  color: var(--green-dark);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 0.4rem;
  margin-bottom: 1rem;
}
.menu-dish-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  gap: 1rem;
}
.menu-dish-row:last-child { border-bottom: none; }
.menu-dish-name { color: var(--charcoal); font-size: 0.95rem; }
.menu-dish-price {
  color: var(--green-dark);
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
}
.menu-note {
  color: var(--text-muted);
  font-size: 0.8rem;
  font-style: italic;
  margin-top: 0.6rem;
  line-height: 1.5;
}
.menu-specials-intro {
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}
.menu-specials-examples {
  list-style: none;
  margin: 1rem 0 1.5rem;
}
.menu-specials-examples li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--charcoal);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.menu-specials-examples li::before { content: '–'; color: var(--gold); font-weight: 700; }
.menu-desserts-note {
  background: var(--cream);
  border-left: 3px solid var(--gold);
  padding: 1rem 1.25rem;
  color: var(--charcoal);
  font-size: 0.9rem;
  border-radius: 0 4px 4px 0;
  margin-top: 2rem;
}

.menu-book-cta {
  background: var(--green-dark);
  padding: 3.5rem 1.25rem;
  text-align: center;
}
.menu-book-cta h2 { color: var(--cream); margin-bottom: 0.5rem; }
.menu-book-cta p { color: rgba(245,240,232,0.6); margin-bottom: 1.5rem; }

/* === SCROLL ANIMATION === */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-up.visible {
  opacity: 1;
  transform: none;
}

/* === RESPONSIVE === */
@media (min-width: 560px) {
  .hours-grid { grid-template-columns: repeat(2, 1fr); }
  .icon-cards { grid-template-columns: 1fr 1fr; }
  .contact-tags { flex-wrap: nowrap; }
}

@media (min-width: 900px) {
  .nav-links { display: flex; }
  .nav-hamburger { display: none; }
  .hero { padding-left: clamp(2rem, 8vw, 9rem); }

  /* Asymmetric card layout: steakhouse card spans full row, other two share */
  .icon-cards { grid-template-columns: 3fr 2fr; }
  .icon-card:first-child { grid-column: 1 / -1; display: grid; grid-template-columns: auto 1fr; align-items: start; gap: 0 1.75rem; }
  .icon-card:first-child .icon-mark { margin-top: 0.2rem; }

  .about-inner { grid-template-columns: 1fr 1fr; align-items: center; }
  .grill-inner { grid-template-columns: 1fr 1fr; align-items: center; }
  .drinks-inner { grid-template-columns: 1fr 1fr; align-items: center; }
  .events-inner { grid-template-columns: 1fr 1fr; align-items: center; }
  .events-inner .events-img { order: 2; }
  .events-inner .events-text { order: 1; }

  .find-us-map iframe { height: 420px; }
  .find-us-inner { grid-template-columns: 1fr 1fr; }

  .hero-btns { gap: 1.25rem; }
}
