/* ============================================
   CORN MAN — Main Stylesheet
   Warm, editorial, late-night corn aesthetic
   ============================================ */

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

:root {
  --color-corn: #F5C518;
  --color-corn-dark: #D4A012;
  --color-corn-light: #FFFBEA;
  --color-corn-pale: #FEF9E4;
  --color-night: #0F0D07;
  --color-night-2: #1A1608;
  --color-dark: #1C1A0F;
  --color-text: #2A2515;
  --color-text-muted: #6B6245;
  --color-warm: #F7F3EA;
  --color-border: #E8E0C8;
  --color-green: #2D6A35;
  --color-green-light: #EDF5EE;
  --color-white: #FFFFFF;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;
  --nav-height: 68px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 4px rgba(26,22,8,0.08);
  --shadow-md: 0 4px 16px rgba(26,22,8,0.12);
  --transition: 0.22s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-warm);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
address { font-style: normal; }
ul { list-style: none; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; top: -100%; left: 1rem;
  background: var(--color-corn); color: var(--color-night);
  padding: 0.5rem 1rem; border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  z-index: 9999; font-size: 14px; font-weight: 500;
}
.skip-link:focus { top: 0; }

.container {
  width: 100%; max-width: 1140px;
  margin: 0 auto; padding: 0 1.25rem;
}

.section { padding: 5rem 0; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-dark);
}
h1 { font-size: clamp(2.4rem, 6vw, 4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
h3 { font-size: 1.15rem; }
p { color: var(--color-text-muted); }

.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p { max-width: 540px; margin: 0 auto; }

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7A5C00;
  background: #FFF0A0;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 0.75rem;
}

.section-cta { text-align: center; margin-top: 2.5rem; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.7rem 1.6rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn:focus-visible { outline: 3px solid var(--color-corn); outline-offset: 3px; }

.btn-primary {
  background: var(--color-dark);
  color: #fff;
  border-color: var(--color-dark);
}
.btn-primary:hover { background: var(--color-night); border-color: var(--color-night); }

.btn-corn {
  background: var(--color-corn);
  color: var(--color-night);
  border-color: var(--color-corn);
  font-weight: 600;
}
.btn-corn:hover { background: var(--color-corn-dark); border-color: var(--color-corn-dark); }

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); }

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

.btn-full-mobile { margin-top: 1rem; }

/* ---- HEADER ---- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(247,243,234,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  height: var(--nav-height);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--color-dark);
  font-weight: 400;
}
.logo strong { font-weight: 900; }
.logo-mark { font-size: 1.5rem; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links a {
  font-size: 15px;
  font-weight: 400;
  color: var(--color-text-muted);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--color-dark);
  background: #EDE8DB;
}
.nav-links a.active { font-weight: 500; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: var(--color-night);
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 70%, rgba(245,197,24,0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 20%, rgba(245,197,24,0.08) 0%, transparent 45%);
}
.hero-grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}

.hero-content {
  position: relative; z-index: 2;
  padding: 5rem 1.25rem;
  max-width: 680px;
}

.hero-badge-top {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.06em;
  margin-bottom: 1.25rem;
}
.live-dot {
  width: 8px; height: 8px;
  background: var(--color-corn);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero h1 {
  color: #fff;
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 1.25rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--color-corn);
}

.hero-sub {
  color: rgba(255,255,255,0.65);
  font-size: 1.1rem;
  max-width: 480px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.stars { color: var(--color-corn); font-size: 14px; letter-spacing: 1px; }

.hero-scroll {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  font-size: 1.25rem;
  color: rgba(255,255,255,0.25);
  animation: bounce 2.4s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ---- FACTS STRIP ---- */
.facts-strip {
  background: var(--color-corn);
}
.facts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0;
}
.fact {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.75rem 1rem;
  text-align: center;
}
.fact--divider { border-left: 1px solid rgba(0,0,0,0.12); }
.fact strong {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--color-night);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.fact span { font-size: 13px; font-weight: 500; color: rgba(0,0,0,0.55); }

/* ---- ITEMS SECTION ---- */
.items { background: var(--color-corn-pale); }
.items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
}

.item-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition);
}
.item-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.item-card--featured {
  border-color: var(--color-corn);
  border-width: 2px;
  background: var(--color-corn-light);
}

.item-emoji { font-size: 2.25rem; margin-bottom: 0.75rem; display: block; }
.item-card h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.item-card p { font-size: 14px; line-height: 1.65; flex: 1; }
.item-price {
  margin-top: 1.25rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--color-dark);
}

/* ---- STORY TEASER ---- */
.story-teaser { background: var(--color-white); }
.story-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.story-card-large {
  background: var(--color-night);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
}
.pull-quote {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
}
.story-text .section-tag { margin-bottom: 0.75rem; }
.story-text h2 { margin-bottom: 1rem; }
.story-text p { font-size: 15px; margin-bottom: 1rem; }
.story-text p:last-of-type { margin-bottom: 1.5rem; }

/* ---- TESTIMONIALS ---- */
.testimonials { background: var(--color-night); }
.testimonials .section-tag { background: rgba(245,197,24,0.2); color: #E8B800; }
.testimonials h2 { color: #fff; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}
.review-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 1.75rem;
}
.review-card--accent {
  border-color: rgba(245,197,24,0.4);
  background: rgba(245,197,24,0.06);
}
.review-card p {
  color: rgba(255,255,255,0.78);
  font-size: 15px;
  font-style: italic;
  line-height: 1.75;
  margin-bottom: 1rem;
}
.review-card footer cite {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  font-style: normal;
  font-weight: 500;
}

/* ---- NIGHT CTA ---- */
.night-cta {
  background: var(--color-corn);
  text-align: center;
}
.night-inner { max-width: 560px; margin: 0 auto; }
.night-icon { font-size: 2.5rem; margin-bottom: 1rem; display: block; }
.night-cta h2 { color: var(--color-night); margin-bottom: 0.75rem; }
.night-cta p { color: rgba(0,0,0,0.6); margin-bottom: 2rem; font-size: 15px; }
.night-cta strong { color: var(--color-night); }

/* ---- PAGE HERO ---- */
.page-hero {
  background: var(--color-night);
  padding: 5rem 0 4rem;
  text-align: center;
}
.page-hero h1 { color: #fff; margin-bottom: 0.75rem; }
.page-hero p { color: rgba(255,255,255,0.6); font-size: 1.1rem; }

/* ---- MENU PAGE ---- */
.toppings { background: var(--color-white); }
.toppings-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.topping-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: var(--color-corn-pale);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  min-width: 110px;
  text-align: center;
}
.topping-emoji { font-size: 1.75rem; margin-bottom: 4px; }
.topping-item strong { font-family: var(--font-body); font-size: 14px; font-weight: 500; color: var(--color-dark); }
.topping-item span { font-size: 12px; color: var(--color-text-muted); }
.toppings-note { text-align: center; font-size: 14px; color: var(--color-text-muted); }

.menu-main { background: var(--color-corn-pale); }
.menu-category-header { margin-bottom: 2rem; }
.menu-category-header h2 { font-size: 1.8rem; margin-bottom: 0.4rem; }
.menu-category-header p { font-size: 15px; }

.menu-cards { display: flex; flex-direction: column; gap: 1.25rem; }

.menu-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.5rem;
  align-items: start;
  transition: box-shadow var(--transition);
}
.menu-card:hover { box-shadow: var(--shadow-sm); }
.menu-card--hero { border-color: var(--color-corn); border-width: 2px; }

.menu-emoji { font-size: 2.75rem; margin-top: 4px; }
.menu-card-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.6rem;
}
.menu-card-top h3 { font-size: 1.2rem; }
.menu-price {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--color-dark);
  flex-shrink: 0;
}
.menu-card p { font-size: 14px; line-height: 1.7; margin-bottom: 0.75rem; }

.menu-highlights {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
}
.menu-highlights li {
  font-size: 12px;
  color: var(--color-text-muted);
  background: var(--color-warm);
  border: 1px solid var(--color-border);
  border-radius: 100px;
  padding: 3px 10px;
}

.menu-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 3px 10px;
  border-radius: 100px;
  background: #FFF0A0;
  color: #7A5C00;
}
.menu-badge--alt { background: #E8F5E9; color: var(--color-green); }
.menu-badge--warm { background: #FFF0E0; color: #9A4E00; }

.menu-divider { height: 1px; background: var(--color-border); margin: 1rem 0; }

/* ---- NOTICES ---- */
.notices { background: var(--color-white); padding: 4rem 0; }
.notices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}
.notice-card {
  background: var(--color-warm);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.notice-card--yellow { background: #FFFDE7; border-color: #F5E07A; }
.notice-card--green { background: var(--color-green-light); border-color: #A8D8B0; }
.notice-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.notice-card h3 { font-size: 1rem; font-family: var(--font-body); font-weight: 600; color: var(--color-dark); margin-bottom: 0.35rem; }
.notice-card p { font-size: 14px; line-height: 1.65; }

/* ---- ABOUT PAGE ---- */
.about-story { background: var(--color-white); }
.about-split {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 4rem;
  align-items: start;
}
.about-text .section-tag { margin-bottom: 0.75rem; }
.about-text h2 { margin-bottom: 1.25rem; }
.about-text p { font-size: 15px; margin-bottom: 1rem; }
.about-aside {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: sticky;
  top: 6rem;
}
.stat-block {
  background: var(--color-corn-pale);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  text-align: center;
}
.stat-block strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--color-dark);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.stat-block span { font-size: 13px; color: var(--color-text-muted); font-weight: 500; }
.aside-quote {
  background: var(--color-night);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}
.aside-quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
}

.special { background: var(--color-corn-pale); }
.special-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
}
.special-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  transition: box-shadow var(--transition);
}
.special-card:hover { box-shadow: var(--shadow-sm); }
.special-card--featured { border-color: var(--color-corn); border-width: 2px; background: var(--color-corn-light); }
.special-icon { font-size: 1.75rem; margin-bottom: 0.75rem; display: block; }
.special-card h3 { font-size: 1.05rem; font-family: var(--font-body); font-weight: 500; margin-bottom: 0.5rem; color: var(--color-dark); }
.special-card p { font-size: 14px; }

.funfact { background: var(--color-white); padding: 3.5rem 0; }
.funfact-inner {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  background: var(--color-night);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  max-width: 720px;
}
.funfact-icon { font-size: 2.5rem; flex-shrink: 0; }
.funfact-inner h2 { color: #fff; font-size: 1.4rem; margin-bottom: 0.6rem; }
.funfact-inner p { color: rgba(255,255,255,0.65); font-size: 15px; line-height: 1.7; }

/* ---- CONTACT PAGE ---- */
.contact-section { background: var(--color-white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3.5rem;
  align-items: start;
}
.info-block { margin-bottom: 2rem; }
.info-block h3 {
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--color-dark);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 6px;
}
.info-block address { font-size: 15px; line-height: 1.75; }
.info-block address a { color: var(--color-dark); }
.info-block address a:hover { color: var(--color-corn-dark); }
.neighborhood { font-size: 13px; color: var(--color-text-muted); margin-top: 4px; display: block; }

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td {
  padding: 8px 0;
  font-size: 15px;
  border-bottom: 1px solid var(--color-border);
}
.hours-table td:first-child { font-weight: 500; color: var(--color-dark); width: 120px; }
.hours-table td:last-child { color: var(--color-text-muted); }
.weekend-row td { color: #C49A2A !important; font-weight: 500 !important; }
.hours-note { font-size: 13px; margin-top: 0.75rem; line-height: 1.65; }

.tips-list { display: flex; flex-direction: column; gap: 0.6rem; }
.tips-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text-muted);
}
.tips-list li strong { color: var(--color-dark); }

.map-wrapper {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
}
.map-wrapper iframe { display: block; }

.tip-section { background: var(--color-corn-pale); padding: 3rem 0; }
.tip-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  max-width: 680px;
}
.tip-icon { font-size: 1.75rem; flex-shrink: 0; margin-top: 2px; }
.tip-card h3 { font-size: 1rem; font-family: var(--font-body); font-weight: 500; margin-bottom: 0.35rem; color: var(--color-dark); }
.tip-card p { font-size: 14px; line-height: 1.7; }

/* ---- FOOTER ---- */
.site-footer {
  background: var(--color-night);
  padding: 3.5rem 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo { margin-bottom: 0.75rem; color: #fff; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.4); line-height: 1.65; }

.footer-nav ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-nav a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-nav a:hover { color: #fff; }

.footer-info p { font-size: 14px; color: rgba(255,255,255,0.45); margin-bottom: 0.4rem; }
.cash-note { color: var(--color-corn) !important; font-weight: 500; }

.footer-bottom { text-align: center; padding: 1.25rem; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.25); }

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .section { padding: 3.5rem 0; }

  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: var(--nav-height); left: 0; right: 0;
    background: var(--color-warm);
    border-bottom: 1px solid var(--color-border);
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.25rem 1.5rem;
    gap: 0.25rem;
    display: none;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  }
  .nav-links.is-open { display: flex; }
  .nav-links a { width: 100%; padding: 0.6rem 0.85rem; font-size: 16px; }

  .hero { min-height: 75vh; }
  .hero-content { padding: 3rem 1.25rem; }
  .hero-cta { flex-direction: column; align-items: flex-start; }

  .facts-grid { grid-template-columns: 1fr 1fr; }
  .fact--divider:nth-child(3) { border-left: none; border-top: 1px solid rgba(0,0,0,0.12); }
  .fact--divider:nth-child(4) { border-top: 1px solid rgba(0,0,0,0.12); }

  .story-split { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-split { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-aside { position: static; }

  .menu-card { grid-template-columns: 60px 1fr; gap: 1rem; }
  .menu-emoji { font-size: 2rem; }

  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; padding-bottom: 2rem; }
  .reviews-grid { grid-template-columns: 1fr; }
  .special-grid { grid-template-columns: 1fr; }
  .funfact-inner { flex-direction: column; }
  .btn-full-mobile { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .facts-grid { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 2.6rem; }
  .items-grid { grid-template-columns: 1fr; }
  .toppings-grid { gap: 0.5rem; }
  .topping-item { min-width: 90px; padding: 1rem; }
}

/* ---- ANIMATIONS ---- */
@media (prefers-reduced-motion: no-preference) {
  .item-card, .special-card, .review-card, .menu-card {
    opacity: 0;
    transform: translateY(14px);
    animation: fadeUp 0.5s ease forwards;
  }
  .item-card:nth-child(1) { animation-delay: 0.05s; }
  .item-card:nth-child(2) { animation-delay: 0.1s; }
  .item-card:nth-child(3) { animation-delay: 0.15s; }
  .item-card:nth-child(4) { animation-delay: 0.2s; }
}
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
