/* ============================================================
   Jennie's Kitchen — Main Stylesheet
   A charming homemade café in Ashton Keynes, Wiltshire
   ============================================================ */

/* Custom Properties */
:root {
  --green-dark:    #2E5D29;
  --green-mid:     #3D7237;
  --green-light:   #5A9452;
  --gold:          #C08A28;
  --gold-light:    #E8B84B;
  --cream:         #FAF8F4;
  --cream-mid:     #F2EDE2;
  --cream-dark:    #E8E0D0;
  --white:         #FFFFFF;
  --dark:          #1C2B1A;
  --text:          #323D2F;
  --text-light:    #637060;
  --border:        #DDD8CC;
  --shadow-sm:     rgba(28, 43, 26, 0.07);
  --shadow-md:     rgba(28, 43, 26, 0.13);
  --shadow-lg:     rgba(28, 43, 26, 0.22);
  --radius:        10px;
  --radius-lg:     18px;
  --radius-xl:     28px;
  --transition:    0.3s ease;
  --font-heading:  'Cormorant Garamond', 'Georgia', serif;
  --font-body:     'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-width:     1200px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text);
  background-color: var(--cream);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--dark);
}

h1 { font-size: clamp(2.6rem, 5.5vw, 4.2rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.15rem; font-family: var(--font-body); font-weight: 700; }

p { margin-bottom: 1.1rem; }
p:last-child { margin-bottom: 0; }

.section-eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.section-intro {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 580px;
  margin: 0.75rem auto 0;
  line-height: 1.7;
}

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

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 5.5rem 0;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: var(--green-dark);
  color: var(--white);
  border-color: var(--green-dark);
}
.btn-primary:hover {
  background: var(--green-mid);
  border-color: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(46, 93, 41, 0.35);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.65);
}
.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: #b07820;
  border-color: #b07820;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(192, 138, 40, 0.35);
}

.btn-outline-green {
  background: transparent;
  color: var(--green-dark);
  border-color: var(--green-dark);
}
.btn-outline-green:hover {
  background: var(--green-dark);
  color: var(--white);
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 1.1rem 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

#header.scrolled {
  background: var(--white);
  box-shadow: 0 2px 24px var(--shadow-md);
  padding: 0.7rem 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* Logo */
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-main {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--white);
  transition: color var(--transition);
}

.logo-sub {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.1rem;
  transition: color var(--transition);
}

#header.scrolled .logo-main { color: var(--green-dark); }
#header.scrolled .logo-sub  { color: var(--gold); }

/* Nav links */
#main-nav ul {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

#main-nav a {
  display: block;
  padding: 0.5rem 1.05rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  border-radius: 50px;
  transition: all var(--transition);
}

#main-nav a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.15);
}

#main-nav a.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.18);
}

#header.scrolled #main-nav a {
  color: var(--text);
}

#header.scrolled #main-nav a:hover,
#header.scrolled #main-nav a.active {
  color: var(--green-dark);
  background: var(--cream-mid);
}

#header.scrolled .nav-menu-btn {
  background: var(--green-dark);
  color: var(--white);
  padding: 0.55rem 1.4rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  width: 38px;
  height: 38px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
  transform-origin: center;
}

#header.scrolled .nav-toggle span { background: var(--dark); }

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(18, 32, 16, 0.45) 0%,
    rgba(18, 32, 16, 0.65) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 1.5rem;
  max-width: 820px;
}

.hero-eyebrow {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.1rem;
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 1.3rem;
  text-shadow: 0 3px 24px rgba(0, 0, 0, 0.25);
  line-height: 1.1;
}

.hero-tagline {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 2.8rem;
  line-height: 1.6;
}

.hero-tagline span {
  display: inline-block;
  margin: 0 0.3rem;
  opacity: 0.5;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-indicators {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.6rem;
  z-index: 2;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  cursor: pointer;
  transition: all 0.35s ease;
  padding: 0;
}

.hero-dot.active {
  background: var(--white);
  transform: scale(1.35);
}

/* ============================================================
   FEATURES BAR
   ============================================================ */
.features-bar {
  background: var(--green-dark);
  padding: 1.75rem 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.55rem;
  padding: 0.85rem 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.feature-item:last-child {
  border-right: none;
}

.feature-icon {
  font-size: 1.6rem;
  line-height: 1;
}

.feature-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}

/* ============================================================
   ABOUT
   ============================================================ */
#about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image-wrap::before {
  content: '';
  position: absolute;
  top: -1.2rem;
  left: -1.2rem;
  right: 1.2rem;
  bottom: 1.2rem;
  border: 3px solid var(--gold);
  border-radius: var(--radius-lg);
  z-index: 0;
}

.about-image-wrap img {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-lg);
  width: 100%;
  height: 560px;
  object-fit: cover;
  box-shadow: 0 24px 64px var(--shadow-md);
}

.about-content h2 {
  margin-bottom: 1.5rem;
}

.about-content p {
  color: var(--text-light);
  font-size: 1.05rem;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2.2rem 0 2.5rem;
}

.highlight {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 1.1rem 1.3rem;
  border-left: 3px solid var(--gold);
}

.highlight strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--green-dark);
  margin-bottom: 0.2rem;
}

.highlight span {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ============================================================
   MENU PREVIEW
   ============================================================ */
#menu-preview {
  background: var(--cream);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
  margin-bottom: 3rem;
}

.menu-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 2.2rem;
  box-shadow: 0 4px 24px var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}

.menu-card:hover {
  box-shadow: 0 12px 40px var(--shadow-md);
  transform: translateY(-3px);
}

.menu-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.4rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--cream-dark);
}

.menu-card-icon {
  font-size: 1.6rem;
  line-height: 1;
}

.menu-card-header h3 {
  font-size: 1.5rem;
  color: var(--green-dark);
}

.menu-items {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
  padding: 0.6rem 0;
  border-bottom: 1px dotted var(--border);
  font-size: 0.95rem;
}

.menu-item:last-child {
  border-bottom: none;
}

.menu-item-name {
  color: var(--text);
}

.menu-item-note {
  font-size: 0.8rem;
  color: var(--text-light);
  font-style: italic;
  display: block;
  margin-top: 0.1rem;
}

.menu-item-price {
  display: none;
}

.menu-cta {
  text-align: center;
}

/* ============================================================
   GALLERY
   ============================================================ */
#gallery {
  background: var(--dark);
  padding-bottom: 0;
  overflow: hidden;
}

#gallery .section-header {
  padding-bottom: 2.5rem;
}

#gallery h2 {
  color: var(--white);
}

#gallery .section-eyebrow {
  color: var(--gold-light);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-auto-rows: 220px;
  gap: 5px;
}

.gallery-item {
  overflow: hidden;
  display: block;
  background: #1a2b18;
}

.gallery-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item:nth-child(6) {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.gallery-item:hover img {
  transform: scale(1.07);
}

/* ============================================================
   REVIEWS
   ============================================================ */
#reviews {
  background: var(--green-dark);
  position: relative;
  overflow: hidden;
}

#reviews::before {
  content: '\201C';
  position: absolute;
  top: -2rem;
  left: 2rem;
  font-family: var(--font-heading);
  font-size: 22rem;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
  pointer-events: none;
  select: none;
}

#reviews h2 { color: var(--white); }
#reviews .section-eyebrow { color: var(--gold-light); }
#reviews .section-intro { color: rgba(255, 255, 255, 0.65); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.review-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius-lg);
  padding: 1.9rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: background var(--transition);
}

.review-card:hover {
  background: rgba(255, 255, 255, 0.11);
}

.review-stars {
  display: flex;
  gap: 3px;
  color: var(--gold-light);
  font-size: 0.95rem;
}

.review-text {
  font-size: 0.93rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82);
  font-style: italic;
  flex: 1;
}

.review-text::before { content: '\201C'; }
.review-text::after  { content: '\201D'; }

.review-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
}

.review-author {
  font-weight: 700;
  color: var(--white);
  font-size: 0.9rem;
}

.review-platform {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 0.15rem;
}

/* ============================================================
   LOCATION
   ============================================================ */
#location {
  background: var(--white);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4.5rem;
  align-items: start;
}

.location-info h2 {
  margin-bottom: 2rem;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  margin-bottom: 2.5rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-icon {
  width: 46px;
  height: 46px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
  border: 1px solid var(--cream-dark);
}

.contact-details {
  padding-top: 0.2rem;
}

.contact-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.2rem;
}

.contact-value {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.5;
}

.contact-value a:hover {
  color: var(--green-dark);
  text-decoration: underline;
}

/* Hours */
.hours-section {
  margin-bottom: 2rem;
}

.hours-section h4 {
  color: var(--green-dark);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.hours-note {
  font-size: 0.85rem;
  color: var(--text-light);
  font-style: italic;
  line-height: 1.6;
  background: var(--cream);
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
}

/* Info badges */
.info-section h4 {
  color: var(--green-dark);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.badge {
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  border-radius: 50px;
  padding: 0.35rem 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
}

/* Map */
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px var(--shadow-md);
  position: sticky;
  top: 6rem;
}

.map-wrap iframe {
  width: 100%;
  height: 520px;
  border: none;
  display: block;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.6);
  padding: 4rem 0 1.75rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo .logo-main {
  color: var(--white);
  font-size: 1.9rem;
}

.footer-logo .logo-sub {
  color: var(--gold);
  font-size: 0.62rem;
}

.footer-desc {
  margin-top: 1.1rem;
  font-size: 0.88rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.5);
  max-width: 300px;
}

.footer-contact {
  margin-top: 1.5rem;
  font-size: 0.88rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-contact a:hover {
  color: var(--white);
}

.footer-col-title {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.3);
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--green-dark);
  padding: 7rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://cdn.res-menu.net/jennies-kitchen/albums-4.jpg') center/cover no-repeat;
  opacity: 0.18;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.1rem;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 1.5rem;
}

.breadcrumb a {
  color: var(--gold-light);
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb span {
  opacity: 0.4;
}

/* ============================================================
   MENU PAGE
   ============================================================ */
.menu-page {
  background: var(--cream);
  padding: 2.5rem 0;
}

.menu-page .menu-section {
  padding: 0;
}

.menu-section {
  margin-bottom: 2rem;
}

.menu-section-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--cream-dark);
}

.menu-section-title h2 {
  font-size: 2rem;
  color: var(--green-dark);
}

.menu-section-icon {
  font-size: 1.8rem;
}

.menu-table {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem 3rem;
}

.menu-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
  padding: 0.65rem 0;
  border-bottom: 1px dotted var(--border);
  font-size: 0.95rem;
}

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

.menu-row-name {
  color: var(--text);
  flex: 1;
}

.menu-row-desc {
  font-size: 0.82rem;
  color: var(--text-light);
  font-style: italic;
  display: block;
  margin-top: 0.1rem;
}

.menu-row-price {
  display: none;
}

.menu-note {
  font-size: 0.85rem;
  color: var(--text-light);
  font-style: italic;
  margin-top: 0.75rem;
  padding: 0.9rem 1.25rem;
  background: var(--white);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
}

.diet-labels {
  display: flex;
  gap: 0.35rem;
  flex-wrap: wrap;
  margin-top: 0.25rem;
}

.diet-label {
  display: inline-block;
  background: var(--cream-mid);
  border: 1px solid var(--cream-dark);
  border-radius: 4px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.15rem 0.45rem;
  color: var(--green-dark);
}

.diet-label.vegan { background: #e8f5e9; border-color: #c8e6c9; color: #2e7d32; }
.diet-label.veggie { background: #f1f8e9; border-color: #dcedc8; color: #558b2f; }
.diet-label.gf { background: #fff8e1; border-color: #ffecb3; color: #f57f17; }

.menu-extras-note {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  margin-top: 1rem;
  box-shadow: 0 4px 20px var(--shadow-sm);
}

.menu-extras-note p {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 0.4rem;
}

.menu-extras-note p:last-child { margin-bottom: 0; }

/* ============================================================
   UTILITY
   ============================================================ */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .about-grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
  }
  .location-grid {
    grid-template-columns: 1fr 1.3fr;
    gap: 3rem;
  }
}

@media (max-width: 900px) {
  section { padding: 4rem 0; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .about-image-wrap img { height: 380px; }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature-item:nth-child(2) { border-right: none; }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 180px;
  }
  .gallery-item:nth-child(1) {
    grid-column: span 1;
    grid-row: span 1;
  }
  .gallery-item:nth-child(6) { grid-column: span 1; }

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

  .location-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .map-wrap { position: static; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .menu-table {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

@media (max-width: 640px) {
  section { padding: 3rem 0; }

  /* Mobile nav */
  .nav-toggle { display: flex; }

  #main-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--dark);
    z-index: 998;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
  }

  #main-nav.open {
    display: flex;
  }

  #main-nav ul {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  #main-nav a {
    color: var(--white) !important;
    font-size: 1.2rem;
    padding: 0.75rem 2rem;
    background: transparent !important;
    letter-spacing: 0.12em;
  }

  #main-nav a:hover {
    color: var(--gold-light) !important;
  }

  #header.scrolled #main-nav a {
    color: var(--white) !important;
  }

  .hero-content h1 { font-size: 2.4rem; }
  .hero-tagline { font-size: 0.95rem; }
  .hero-cta { flex-direction: column; align-items: center; }
  .hero-cta .btn { width: 100%; max-width: 280px; }

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

  .about-highlights { grid-template-columns: 1fr; }

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

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 150px;
  }

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

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

  .page-hero { padding: 6rem 0 3rem; }
  .page-hero h1 { font-size: 2.2rem; }
}

@media (max-width: 420px) {
  .features-grid { grid-template-columns: 1fr; }
  .feature-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
}
