:root {
  --pub-burgundy: #78141F;
  --pub-dark-burgundy: #4D0C13;
  --pub-gold: #D4AF37;
  --pub-light-gold: #FFF0B8;
  --pub-amber: #F3DC87;
  --pub-oak: #120D0A;
  --pub-oak-light: #1C140F;
  --pub-card: #1E1612;
  --pub-border: rgba(212, 175, 55, 0.25);
  --pub-border-gold: rgba(212, 175, 55, 0.6);
  --pub-text: #FAF6ED;
  --pub-text-muted: #D8C5A8;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--pub-oak);
  color: var(--pub-text);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, .font-serif {
  font-family: 'Cinzel', 'Playfair Display', Georgia, serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Top Badge Bar */
.top-notice-bar {
  background: var(--pub-dark-burgundy);
  border-bottom: 1px solid var(--pub-border);
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  color: var(--pub-text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.badge-tag {
  background: var(--pub-gold);
  color: #000;
  font-weight: 800;
  font-size: 0.65rem;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

/* Navigation Header */
.pub-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(28, 20, 15, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--pub-border);
  padding: 0.85rem 0;
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}

.brand-crest {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid var(--pub-gold);
  background: var(--pub-dark-burgundy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.brand-text h2 {
  font-size: 1.35rem;
  color: var(--pub-light-gold);
  line-height: 1.1;
}

.brand-text span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--pub-gold);
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.nav-links a {
  color: var(--pub-text);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--pub-amber);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-gold {
  background: var(--pub-gold);
  color: #120D0A;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}

.btn-gold:hover {
  background: var(--pub-amber);
  transform: translateY(-1px);
}

.btn-burgundy {
  background: var(--pub-burgundy);
  color: var(--pub-light-gold);
  border: 1px solid var(--pub-border-gold);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-burgundy:hover {
  background: #9B1A28;
  transform: translateY(-1px);
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  padding: 4rem 0;
  background: linear-gradient(to bottom, rgba(18,13,10,0.7), var(--pub-oak)), url('/scrapes/roseandcrownkingston.com/front.jpg') center/cover no-repeat;
  border-bottom: 1px solid var(--pub-border);
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(77, 12, 19, 0.85);
  border: 1px solid var(--pub-border-gold);
  color: var(--pub-amber);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--pub-light-gold);
  margin-bottom: 1.25rem;
  line-height: 1.15;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--pub-text-muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-badges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  text-align: left;
}

.hero-badge-card {
  background: rgba(28, 20, 15, 0.85);
  border: 1px solid var(--pub-border);
  padding: 0.85rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-badge-card .icon {
  font-size: 1.5rem;
}

.hero-badge-card strong {
  display: block;
  font-size: 0.8rem;
  color: var(--pub-light-gold);
}

.hero-badge-card span {
  font-size: 0.7rem;
  color: var(--pub-text-muted);
}

/* Sections */
.section {
  padding: 5rem 0;
  border-bottom: 1px solid var(--pub-border);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--pub-gold);
  font-weight: 700;
  display: block;
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--pub-light-gold);
  margin-bottom: 0.75rem;
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--pub-text-muted);
  max-width: 650px;
  margin: 0 auto;
}

/* Signature Dish Spotlight */
.signature-card {
  background: var(--pub-oak-light);
  border: 2px solid var(--pub-border-gold);
  border-radius: 24px;
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.signature-img-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--pub-border);
  aspect-ratio: 4/3;
}

.signature-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.signature-badge-overlay {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--pub-dark-burgundy);
  border: 1px solid var(--pub-gold);
  padding: 0.35rem 0.8rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: bold;
  color: var(--pub-light-gold);
}

.portion-selector {
  background: var(--pub-oak);
  border: 1px solid var(--pub-border);
  padding: 1rem;
  border-radius: 14px;
  margin: 1.5rem 0;
}

.portion-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.portion-btn {
  background: var(--pub-oak-light);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 0.75rem;
  border-radius: 10px;
  color: var(--pub-text-muted);
  cursor: pointer;
  text-align: left;
  transition: all 0.2s;
}

.portion-btn.active {
  background: var(--pub-dark-burgundy);
  border-color: var(--pub-gold);
  color: var(--pub-light-gold);
}

.portion-btn strong {
  display: block;
  font-size: 0.85rem;
  color: #fff;
}

.portion-btn span.price {
  color: var(--pub-gold);
  font-weight: 700;
  font-size: 0.85rem;
}

/* Atmosphere Tabbed Interface */
.tab-controls {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.tab-btn {
  background: var(--pub-oak-light);
  border: 1px solid var(--pub-border);
  color: var(--pub-text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.65rem 1.25rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.2s;
}

.tab-btn.active {
  background: var(--pub-dark-burgundy);
  color: var(--pub-light-gold);
  border-color: var(--pub-gold);
}

.tab-content-panel {
  background: var(--pub-oak-light);
  border: 1px solid var(--pub-border);
  border-radius: 20px;
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: center;
}

.tab-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.tab-img-grid img, .tab-single-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--pub-border);
  aspect-ratio: 4/3;
}

/* Menu Grid */
.menu-category-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
}

.menu-cat-btn {
  background: var(--pub-oak-light);
  border: 1px solid var(--pub-border);
  color: var(--pub-text-muted);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 10px;
  cursor: pointer;
  white-space: nowrap;
}

.menu-cat-btn.active {
  background: var(--pub-gold);
  color: #000;
  font-weight: 700;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.menu-card {
  background: var(--pub-oak-light);
  border: 1px solid var(--pub-border);
  border-radius: 16px;
  padding: 1.25rem;
  display: flex;
  gap: 1rem;
  transition: border-color 0.2s;
}

.menu-card:hover {
  border-color: var(--pub-gold);
}

.menu-card-img {
  width: 90px;
  height: 90px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid var(--pub-border);
}

.menu-card-body {
  flex: 1;
}

.menu-card-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.menu-card-header h4 {
  font-size: 1rem;
  color: var(--pub-light-gold);
}

.menu-card-price {
  font-weight: 700;
  color: var(--pub-gold);
  font-size: 0.95rem;
  white-space: nowrap;
}

.menu-card-desc {
  font-size: 0.75rem;
  color: var(--pub-text-muted);
  line-height: 1.4;
}

/* Events Grid */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.event-card {
  background: var(--pub-oak-light);
  border: 1px solid var(--pub-border);
  border-radius: 18px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.event-card.featured {
  border: 2px solid var(--pub-gold);
}

.event-badge {
  background: var(--pub-dark-burgundy);
  border: 1px solid var(--pub-border-gold);
  color: var(--pub-amber);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 50px;
}

/* Corner Shop Grid */
.shop-banner {
  background: var(--pub-oak-light);
  border: 1px solid var(--pub-border-gold);
  border-radius: 24px;
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: center;
}

.shop-categories {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.shop-cat-box {
  background: var(--pub-oak);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 0.75rem;
  border-radius: 10px;
}

.shop-cat-box strong {
  display: block;
  font-size: 0.8rem;
  color: var(--pub-light-gold);
}

.shop-cat-box span {
  font-size: 0.7rem;
  color: var(--pub-text-muted);
}

/* Contact & Map */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 2rem;
}

.info-card {
  background: var(--pub-oak-light);
  border: 1px solid var(--pub-border);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 1.25rem;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  color: var(--pub-text-muted);
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-row strong {
  color: #fff;
}

.map-wrapper {
  background: var(--pub-oak-light);
  border: 1px solid var(--pub-border);
  border-radius: 18px;
  overflow: hidden;
  min-height: 380px;
}

/* NetZero Banner */
.netzero-sticky-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: #0F172A;
  border-top: 2px solid #38BDF8;
  color: #fff;
  padding: 0.75rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.85rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.5);
}

/* Modals */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(5px);
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal-overlay.active {
  display: flex;
}

.modal-box {
  background: var(--pub-oak-light);
  border: 2px solid var(--pub-gold);
  border-radius: 20px;
  max-width: 600px;
  width: 100%;
  padding: 2rem;
  position: relative;
  color: var(--pub-text);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--pub-dark-burgundy);
  border: 1px solid var(--pub-border);
  color: #fff;
  font-size: 1rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
  .signature-card, .tab-content-panel, .shop-banner, .contact-grid {
    grid-template-columns: 1fr;
  }
  .nav-links {
    display: none;
  }
}
