/* ============================================================
   Fanny's Restaurant – Main Stylesheet
   ============================================================ */

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

/* ── Variables ────────────────────────────────────────────── */
:root {
  /* Brand colors (from logo) */
  --navy:        #1B3A6B;
  --navy-dark:   #122952;
  --gold:        #C9A227;
  --gold-light:  #E8C547;
  --gold-pale:   #F5E9C4;
  --cream:       #F7F3EC;
  --cream-dark:  #EDE8DC;
  --dark:        #2C2416;
  --text:        #3D3020;
  --text-muted:  #7A6A52;
  --white:       #FEFCF8;

  /* Sweet Shop accent palette */
  --ss-burg:     #5C1A1A;
  --ss-blush:    #F5E6E0;
  --ss-cherry:   #B83232;
  --ss-cream:    #FDF5F0;

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

  /* Layout */
  --max-w:   1100px;
  --section-v: 5rem;
}

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--text);
  background-color: var(--cream);
  line-height: 1.7;
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }

/* ── Utilities ────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.section-pad { padding: var(--section-v) 1.5rem; }

/* Left-aligned section title variant */
.section-title--left { text-align: left; }
.section-title--left::after { margin-left: 0; margin-right: auto; }

/* Ornament divider between sections */
.ornament {
  text-align: center;
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 0.5em;
  padding: 0.5rem 0;
  user-select: none;
}

/* Script section headings */
.section-title {
  font-family: var(--script);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--navy);
  text-align: center;
  margin-bottom: 0.25rem;
}
.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 0.4rem auto 1.75rem;
  border-radius: 2px;
}

.section-sub {
  text-align: center;
  color: var(--text-muted);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: 4px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.15s, box-shadow 0.15s;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 5px 16px rgba(0,0,0,0.18); }
.btn-navy  { background: var(--navy); color: var(--white); }
.btn-gold  { background: var(--gold); color: var(--navy-dark); }
.btn-sweet { background: var(--ss-burg); color: var(--white); }

/* ── Site Header (logo + info, not sticky) ────────────────── */
.site-header {
  background: #fdf5de;
  text-align: center;
  padding: 2.25rem 1.5rem 1.25rem;
}
.site-header-inner {
  max-width: var(--max-w);
  margin-inline: auto;
}
.site-logo {
  width: clamp(200px, 42vw, 400px);
  height: auto;
  display: block;
  margin: 0 auto 1rem;
  filter: none;
}
.site-info-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.25rem 2rem;
  color: var(--text-muted);
  font-size: 1.05rem;
  padding-bottom: 0.25rem;
}

/* ── Navigation (sticky, links only) ─────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: linear-gradient(to bottom, #1E4080, #122952);
  border-bottom: 3px solid var(--gold);
  box-shadow: 0 3px 18px rgba(0,0,0,0.4);
}

.nav-inner {
  position: relative;
  max-width: var(--max-w);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
}

.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 100%;
  padding: 0.35rem 1.5rem;
  margin: 0;
}

/* Gold dot separators between items */
.nav-links li + li::before {
  content: '·';
  color: rgba(201,162,39,0.5);
  font-size: 1rem;
  padding: 0 0.1rem;
  pointer-events: none;
  align-self: center;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.38rem 0.7rem;
  border-radius: 3px;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}
.nav-links a:hover {
  color: var(--gold);
  background: rgba(255,255,255,0.07);
}
.nav-links [aria-current="page"] { color: var(--gold); }

/* Hamburger toggle (hidden on desktop) */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

/* Direction buttons side by side, equal width */
.directions-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.25rem;
}
.directions-btns .btn {
  flex: 1;
  text-align: center;
  min-width: 120px;
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  background-color: var(--cream);
  background-image:
    radial-gradient(ellipse at 15% 85%, rgba(201,162,39,0.1) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 15%, rgba(27,58,107,0.06) 0%, transparent 55%);
  text-align: center;
  padding: 4rem 1.5rem 3rem;
}

.hero-inner { max-width: 680px; margin-inline: auto; }

.hero-logo {
  max-width: 420px;
  width: 88%;
  margin-inline: auto;
  margin-bottom: 1.25rem;
  /* subtle drop shadow to lift off cream bg */
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.08));
}

.hero-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.hero-info-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem 1.5rem;
  background: var(--navy);
  color: rgba(255,255,255,0.9);
  padding: 0.8rem 1.5rem;
  border-radius: 4px;
  margin-bottom: 1.75rem;
  font-size: 0.88rem;
}

/* ── Story Section ────────────────────────────────────────── */
.story {
  background: var(--white);
  border-top: 4px solid var(--gold);
  padding: 2.5rem 1.5rem;
}

/* Single-column centered flow */
.story-flow {
  max-width: 720px;
  margin-inline: auto;
}

.story-headline {
  font-family: var(--script);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

/* Grandma block — illustration floats right, text wraps left */
.story-grandma-block {
  overflow: hidden; /* clearfix */
  margin-bottom: 1.5rem;
}
.story-grandma-illus {
  float: right;
  width: 200px;
  margin: -1.25rem 0 0.75rem 1.5rem;
}
.story-grandma-block p {
  color: var(--text);
  font-size: 1.02rem;
  margin-bottom: 0.85rem;
}

/* Owners block — small photo floats left, text wraps right */
.story-owners-block {
  overflow: hidden; /* clearfix */
  margin-bottom: 1.5rem;
}
.story-owners-photo {
  float: left;
  width: 100px;
  margin: 0.25rem 1.5rem 0.75rem 0;
  border-radius: 8px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.15);
  object-fit: cover;
  object-position: top;
}
.story-owners-block p {
  color: var(--text);
  font-size: 1.02rem;
}

/* Wrapper that groups owners block + family photo so they align */
.story-current-owners {
  max-width: 560px;
  margin: 0 auto 1.5rem;
}

/* Photo figures */
.story-figure {
  margin: 0 0 1.5rem;
}
.story-figure img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  object-fit: cover;
  display: block;
}
/* Family photo fills the wrapper width, no extra margin */
.story-figure--wide {
  margin-bottom: 0;
}
.story-figure--wide img {
  max-height: 340px;
}

.story-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--navy);
  border-left: 4px solid var(--gold);
  padding: 0.75rem 1rem 0.75rem 1.25rem;
  margin-top: 0.5rem;
  background: var(--gold-pale);
  border-radius: 0 6px 6px 0;
}

/* Vintage street scene strip between ornament and menu */
.vintage-strip {
  background: var(--cream-dark);
  border-top: 1px solid rgba(201,162,39,0.35);
  border-bottom: 1px solid rgba(201,162,39,0.35);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vintage-strip img {
  width: 100%;
  max-width: var(--max-w);
  max-height: 110px;
  object-fit: cover;
  object-position: center 30%;
  mix-blend-mode: multiply;
  opacity: 0.65;
}

/* ── Menu Section ─────────────────────────────────────────── */
.menu-section { background: var(--navy); color: var(--white); }
.menu-section .section-title { color: var(--gold); }
.menu-section .section-title::after { background: rgba(255,255,255,0.3); }
.menu-section .section-sub { color: rgba(255,255,255,0.65); }

.menu-icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.75rem;
  max-width: var(--max-w);
  margin-inline: auto;
}

.menu-icon-card {
  background: var(--white);
  color: var(--text);
  border-radius: 10px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 6px 24px rgba(0,0,0,0.18);
  transition: transform 0.22s, box-shadow 0.22s;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.menu-icon-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.26);
}
.card-menu-link {
  display: block;
  margin-top: auto;
  padding-top: 1.25rem;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: var(--gold);
  text-transform: uppercase;
}

.menu-icon-card .icon {
  font-size: 3rem;
  margin-bottom: 0.75rem;
  display: block;
}

/* Illustrated image replacing emoji icon in menu cards */
.menu-icon-card .card-illus {
  display: block;
  margin: 0 auto 0.75rem;
  mix-blend-mode: multiply;
  object-fit: contain;
}
/* Trio of small dessert illustrations */
.dessert-trio {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
}
.dessert-trio img {
  height: 72px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.menu-icon-card h3 {
  font-family: var(--script);
  font-size: 1.7rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.menu-icon-card p { font-size: 0.92rem; color: var(--text-muted); }


/* ── Veterans / Honors Section ────────────────────────────── */
.honors-section {
  background: var(--gold-pale);
  border-top: 4px solid var(--gold);
  border-bottom: 4px solid var(--gold);
}

.honors-inner {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  max-width: 820px;
  margin-inline: auto;
}

.honors-badge {
  font-size: 4.5rem;
  flex-shrink: 0;
  line-height: 1;
}

.honors-title {
  font-family: var(--script);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--navy);
  margin-bottom: 0.6rem;
}

.honors-text p { color: var(--text); margin-bottom: 0.5rem; }
.honors-sub {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ── Explore Section (Sweet Shop + Banquet Room teasers) ──── */
.explore-section { background: var(--cream); }

.explore-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: var(--max-w);
  margin-inline: auto;
}

.explore-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.explore-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.18);
}

/* Sweet Shop card */
.explore-card--sweet {
  background: var(--ss-cream);
  align-items: center;
  padding: 2.5rem 2rem;
  text-align: center;
  border: 2px solid rgba(92,26,26,0.2);
}
.explore-card--sweet .explore-logo {
  max-width: 200px;
  margin-inline: auto;
  margin-bottom: 1rem;
}
.explore-card--sweet p {
  color: var(--ss-burg);
  margin-bottom: 1.25rem;
  font-size: 0.98rem;
}

/* Banquet room card */
.explore-card--banquet { background: var(--white); }
.explore-card--banquet .explore-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.explore-card-body { padding: 1.5rem; }
.explore-card-body h3 {
  font-family: var(--script);
  font-size: 1.8rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.explore-card-body p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-size: 0.92rem;
}

.explore-link {
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  color: var(--navy);
}
.explore-card--sweet .explore-link { color: var(--ss-burg); }

/* ── Location Section ─────────────────────────────────────── */
.location-section { background: var(--cream-dark); }

.location-exterior {
  max-width: var(--max-w);
  margin: 0 auto 2.5rem;
  padding-inline: 1.5rem;
}
.location-exterior img {
  width: 100%;
  max-height: 380px;
  object-fit: cover;
  object-position: center 60%;
  border-radius: 10px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.15);
  display: block;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 3rem;
  align-items: start;
  max-width: var(--max-w);
  margin-inline: auto;
}

.location-section .section-title { text-align: left; }
.location-section .section-title::after { margin-left: 0; margin-right: auto; }

.location-detail { margin-bottom: 1.75rem; }
.location-detail h3 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}
.location-detail p, .location-detail a {
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--text);
}
.location-detail a { font-weight: 700; color: var(--navy); }
.location-detail a:hover { text-decoration: underline; }

.location-map iframe {
  width: 100%;
  height: 360px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.14);
  border: 0;
}

/* ── Footer ───────────────────────────────────────────────── */
.site-footer { background: var(--navy-dark); color: rgba(255,255,255,0.8); }

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  padding: 2.5rem 1.5rem;
  max-width: var(--max-w);
  margin-inline: auto;
}

.footer-logo img { height: 80px; width: auto; }

.footer-info { flex: 1; min-width: 200px; }
.footer-info p { margin-bottom: 0.25rem; font-size: 0.88rem; }
.footer-info strong { color: var(--gold); }

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-nav a {
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
  transition: color 0.15s;
}
.footer-nav a:hover { color: var(--gold); }

.footer-bottom {
  background: rgba(0,0,0,0.25);
  text-align: center;
  padding: 0.9rem 1.5rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
}

/* ============================================================
   SWEET SHOP PAGE
   ============================================================ */
.sweet-hero {
  background: var(--ss-cream);
  text-align: center;
  padding: 4rem 1.5rem 3rem;
  border-bottom: 4px solid var(--ss-burg);
  background-image:
    radial-gradient(ellipse at 20% 80%, rgba(184,50,50,0.07) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 20%, rgba(92,26,26,0.05) 0%, transparent 55%);
}

.sweet-hero-inner { max-width: 640px; margin-inline: auto; }

.sweet-hero-logo {
  max-width: 300px;
  width: 80%;
  margin-inline: auto;
  margin-bottom: 1.25rem;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.08));
}

.sweet-hero-tagline {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ss-burg);
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  margin-bottom: 1.5rem;
}

.sweet-hero-location {
  font-family: var(--script);
  font-size: 1.3rem;
  color: var(--ss-burg);
  opacity: 0.85;
}

.sweet-treats { background: var(--white); }
.sweet-treats .section-title { color: var(--ss-burg); }
.sweet-treats .section-title::after { background: var(--ss-cherry); }
.sweet-treats .section-sub { color: var(--text-muted); }

.sweet-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
  max-width: var(--max-w);
  margin-inline: auto;
  margin-bottom: 2.5rem;
}
/* Top row: 2 cards */
.sweet-card--half  { grid-column: span 3; }
/* Bottom row: 3 cards */
.sweet-card--third { grid-column: span 2; }

.sweet-card {
  background: var(--ss-blush);
  border-radius: 12px;
  padding: 1.75rem 1.25rem;
  text-align: center;
  border: 2px solid rgba(184,50,50,0.2);
  transition: transform 0.2s;
}
.sweet-card:hover { transform: translateY(-4px) rotate(0.5deg); }

.sweet-card .icon { font-size: 2.75rem; display: block; margin-bottom: 0.75rem; }
.sweet-card h3 {
  font-family: var(--script);
  font-size: 1.55rem;
  color: var(--ss-burg);
  margin-bottom: 0.4rem;
}
.sweet-card p { font-size: 0.88rem; color: var(--text-muted); }

.sweet-items {
  list-style: none;
  margin-top: 0.4rem;
  font-size: 0.85rem;
  color: var(--ss-burg);
}
.sweet-items li::before { content: '· '; }

.sweet-download { text-align: center; }

/* ── Sweet Shop – Family Friendly strip ───────────────────── */
.sweet-tagstrip {
  background: var(--ss-burg);
  color: white;
  text-align: center;
  padding: 2.5rem 1.5rem;
}
.sweet-tagstrip h2 {
  font-family: var(--script);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}
.sweet-tagstrip p { color: rgba(255,255,255,0.85); font-size: 1rem; }

/* ============================================================
   BANQUET ROOM PAGE
   ============================================================ */
.banquet-hero {
  position: relative;
  height: 52vh;
  min-height: 320px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banquet-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.banquet-hero-overlay {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
  padding: 2rem 2.5rem;
  background: rgba(18,41,82,0.72);
  border-radius: 10px;
  backdrop-filter: blur(2px);
}
.banquet-hero-overlay h1 {
  font-family: var(--script);
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--gold-light);
  line-height: 1.1;
  margin-bottom: 0.4rem;
}
.banquet-hero-overlay p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: rgba(255,255,255,0.9);
}

.banquet-details { background: var(--white); }

.banquet-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  max-width: var(--max-w);
  margin-inline: auto;
}

.banquet-details .section-title { text-align: left; }
.banquet-details .section-title::after { margin-left: 0; }

.banquet-intro { font-size: 1.05rem; color: var(--text); margin-bottom: 1.5rem; }

.banquet-features {
  list-style: none;
  margin: 1.5rem 0;
}
.banquet-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.98rem;
}
.banquet-features li::before {
  content: '✦';
  color: var(--gold);
  flex-shrink: 0;
  font-size: 0.8rem;
  margin-top: 0.28rem;
}

.banquet-price-card {
  background: var(--navy);
  color: white;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  margin-bottom: 1.5rem;
}
.banquet-price-card .price {
  font-family: var(--script);
  font-size: 4rem;
  color: var(--gold);
  line-height: 1;
}
.banquet-price-card .price-label {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  margin-top: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.banquet-price-card .price-note {
  margin-top: 1rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  font-style: italic;
}

.perfect-for-title {
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.perfect-for {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  text-align: center;
}
.pf-item { padding: 0.5rem; }
.pf-item .icon { font-size: 1.75rem; display: block; margin-bottom: 0.25rem; }
.pf-item span { font-size: 0.78rem; font-weight: 700; color: var(--navy); }

/* Banquet gallery */
.banquet-gallery { background: var(--cream-dark); }
.banquet-gallery .section-title { color: var(--navy); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: var(--max-w);
  margin-inline: auto;
}
.gallery-grid img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.12);
  transition: transform 0.2s, box-shadow 0.2s;
}
.gallery-grid img:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

/* Banquet CTA */
.banquet-cta {
  background: var(--navy);
  color: white;
  text-align: center;
  padding: 3.5rem 1.5rem;
}
.banquet-cta h2 {
  font-family: var(--script);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--gold-light);
  margin-bottom: 0.75rem;
}
.banquet-cta p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  :root { --section-v: 3rem; }

  /* Mobile nav */
  .site-info-strip { font-size: 0.82rem; gap: 0.2rem 1.25rem; }
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy-dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 0.75rem 1rem 1rem;
    gap: 0;
    box-shadow: 0 6px 16px rgba(0,0,0,0.3);
    border-top: 1px solid rgba(201,162,39,0.2);
  }
  .nav-links.is-open { display: flex; }
  /* Remove dot separators on mobile */
  .nav-links li + li::before { display: none; }
  .nav-links li { width: 100%; }
  .nav-links a { padding: 0.7rem 1rem; display: block; border-bottom: 1px solid rgba(255,255,255,0.06); }

  .story-grandma-illus { width: 140px; }
  .story-owners-photo { width: 80px; }

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

  .honors-inner { flex-direction: column; text-align: center; }
  .honors-badge { font-size: 3.5rem; }

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

  .location-grid { grid-template-columns: 1fr; }
  .location-section .section-title { text-align: center; }
  .location-section .section-title::after { margin-inline: auto; }

  .footer-inner { justify-content: center; text-align: center; }
  .footer-nav { align-items: center; }

  .banquet-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .perfect-for { grid-template-columns: repeat(3, 1fr); }
  .banquet-details .section-title { text-align: center; }
  .banquet-details .section-title::after { margin-inline: auto; }
}

@media (max-width: 480px) {
  .site-info-strip { flex-direction: column; align-items: center; gap: 0.35rem; }
  .menu-icons { grid-template-columns: 1fr; }
  .sweet-grid { grid-template-columns: 1fr; }
  .sweet-card--half, .sweet-card--third { grid-column: span 1; }
  .gallery-grid { grid-template-columns: 1fr; }
  .perfect-for { grid-template-columns: repeat(2, 1fr); }
}
