/* ============================================
   MERRITT CANTEEN — Global Stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Inter:wght@300;400;500;600;700&family=IBM+Plex+Mono:wght@400;500&display=swap');

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:        #3da9ec;
  --parchment:  #F7F3ED;
  --iron:       #121212;
  --mustard:    #c8dc41;
  --iron-60:    rgba(18,18,18,0.6);
  --iron-10:    rgba(18,18,18,0.1);
  --white-70:   rgba(255,255,255,0.7);
  --white-50:   rgba(255,255,255,0.5);
  --white-20:   rgba(255,255,255,0.2);
}

html { scroll-behavior: smooth; }

body {
  background: var(--parchment);
  color: var(--iron);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- Typography ---- */
.font-heading { font-family: 'Playfair Display', serif; }
.font-mono    { font-family: 'IBM Plex Mono', monospace; }

h1,h2,h3,h4 { font-family: 'Playfair Display', serif; }

/* ---- Utilities ---- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--mustard);
  display: block;
  margin-bottom: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 16px 32px;
  min-height: 52px;
  transition: all 0.2s ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--red);
  color: var(--parchment);
  border: 2px solid var(--red);
}
.btn-primary:hover { background: #8a1717; border-color: #8a1717; }

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.3);
}
.btn-outline:hover { border-color: var(--mustard); color: var(--mustard); }

.btn-outline-dark {
  background: transparent;
  color: var(--iron);
  border: 2px solid var(--iron);
}
.btn-outline-dark:hover { background: var(--iron); color: var(--parchment); }

.steel-rule { width: 100%; height: 4px; background: var(--iron); }
.red-rule   { width: 100%; height: 4px; background: var(--red); }

/* ============================================
   Preview Banner 
   ============================================ */

.amd-preview-toolbar { position: fixed; bottom: 0; left: 0; width: 100%; background: rgba(40,31,169,0.92); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-top: 1px solid rgba(255,255,255,0.15); padding: 14px 24px; box-sizing: border-box; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; z-index: 999999; box-shadow: 0 -10px 30px rgba(0,0,0,0.15); }
.amd-toolbar-inner { max-width: 1600px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 14px; }
.amd-toolbar-meta { display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center; }
.amd-pulse-indicator { width: 8px; height: 8px; background: #00ffaa; border-radius: 50%; box-shadow: 0 0 10px #00ffaa; animation: amdPulse 2s infinite; }
.amd-toolbar-text, .amd-toolbar-credit { color: rgba(255,255,255,0.8); font-size: 0.8rem; margin: 0; letter-spacing: 0.02em; }
.amd-toolbar-text strong, .amd-toolbar-credit strong { color: #ffffff; font-weight: 600; }
.amd-toolbar-divider { display: none; color: rgba(255,255,255,0.3); font-size: 0.8rem; }
.amd-toolbar-btn { display: inline-flex; align-items: center; gap: 8px; background: #ffffff; color: rgb(40,31,169); text-decoration: none; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; padding: 8px 20px; border-radius: 2px; transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 2px 8px rgba(0,0,0,0.1); white-space: nowrap; }
.amd-toolbar-btn:hover { background: rgba(255,255,255,0.1); color: #ffffff; border-color: #ffffff; box-shadow: none; transform: translateY(-1px); }
@keyframes amdPulse { 0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0,255,170,0.7); } 70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(0,255,170,0); } 100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0,255,170,0); } }
@media (min-width: 768px) { .amd-toolbar-inner { flex-direction: row; gap: 24px; } .amd-toolbar-meta { flex-direction: row; text-align: left; gap: 12px; } .amd-toolbar-divider { display: inline; } }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  padding: 0 24px;
}

.navbar.scrolled {
  background: rgba(18,18,18,0.96);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

.navbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.navbar-logo {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.05em;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.navbar-links a {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}

.navbar-links a:hover,
.navbar-links a.active { color: var(--mustard); }

.navbar-phone {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  gap: 6px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  background: var(--iron);
  border-top: 4px solid var(--red);
  padding: 24px;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.7);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--mustard); }

@media (max-width: 768px) {
  .navbar-links, .navbar-phone { display: none; }
  .hamburger { display: flex; }
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--iron);
  color: var(--parchment);
  border-top: 4px solid var(--red);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 24px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 48px;
}

.footer-brand h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 4px;
}

.footer-brand .est {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(247,243,237,0.4);
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 13px;
  color: rgba(247,243,237,0.5);
  line-height: 1.7;
}

.footer-col h4 {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--mustard);
  margin-bottom: 20px;
}

.footer-col ul { list-style: none; }
.footer-col ul li + li { margin-top: 10px; }
.footer-col ul li a,
.footer-col .footer-link {
  font-size: 13px;
  color: rgba(247,243,237,0.5);
  transition: color 0.2s;
  display: block;
}
.footer-col ul li a:hover,
.footer-col .footer-link:hover { color: var(--mustard); }

.footer-col .hours-line {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: rgba(247,243,237,0.5);
  margin-bottom: 8px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}
.footer-contact-item svg { flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a,
.footer-contact-item span {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: rgba(247,243,237,0.5);
  transition: color 0.2s;
}
.footer-contact-item a:hover { color: var(--mustard); }

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px;
  border-top: 1px solid rgba(247,243,237,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: rgba(247,243,237,0.3);
}

.footer-socials {
  display: flex;
  gap: 24px;
}
.footer-socials a {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: rgba(247,243,237,0.3);
  transition: color 0.2s;
}
.footer-socials a:hover { color: var(--mustard); }

@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
}

/* ============================================
   QUICK INFO BAR
   ============================================ */
.info-bar {
  background: var(--iron);
  border-bottom: 4px solid var(--red);
}

.info-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 24px;
  border-right: 1px solid rgba(247,243,237,0.08);
  transition: background 0.2s;
}
.info-item:last-child { border-right: none; }
.info-item:hover { background: rgba(247,243,237,0.04); }

.info-item svg { color: var(--mustard); flex-shrink: 0; }

.info-item-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(247,243,237,0.35);
  margin-bottom: 3px;
}

.info-item-value {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: rgba(247,243,237,0.75);
  transition: color 0.2s;
}
.info-item:hover .info-item-value { color: var(--mustard); }

@media (max-width: 768px) {
  .info-bar-inner { grid-template-columns: 1fr 1fr; }
  .info-item { border-bottom: 1px solid rgba(247,243,237,0.08); }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  max-height: 900px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18,18,18,1) 0%, rgba(18,18,18,0.55) 50%, rgba(18,18,18,0.2) 100%);
}

.hero-content {
  position: relative;
  height: 100%;
  display: flex;
  align-items: flex-end;
}

.hero-text {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px 96px;
  width: 100%;
}

.hero-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--mustard);
  margin-bottom: 16px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 900;
  color: #fff;
  line-height: 0.9;
  margin-bottom: 24px;
}

.hero h1 span { color: var(--red); }

.hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero-btns { display: flex; flex-wrap: wrap; gap: 16px; }

@media (max-width: 600px) {
  .hero-text { padding-bottom: 60px; }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section { padding: 96px 0; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text .section-label { margin-bottom: 16px; }

.about-text h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  color: var(--red);
  line-height: 1.1;
  margin-bottom: 32px;
}

.about-body {
  border-left: 4px solid var(--red);
  padding-left: 24px;
}

.about-body p {
  font-size: 15px;
  color: var(--iron-60);
  line-height: 1.8;
  margin-bottom: 20px;
}
.about-body p:last-child { margin-bottom: 0; }

.about-img-wrap {
  position: relative;
  border: 4px solid var(--iron);
}

.about-img-wrap img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  filter: grayscale(100%);
  display: block;
}

.about-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--red);
  padding: 16px 24px;
}

.about-badge-num {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 900;
  color: var(--parchment);
  display: block;
  line-height: 1;
}

.about-badge-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(247,243,237,0.6);
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-badge { right: 0; bottom: -20px; }
}

/* ============================================
   FEATURED ITEMS
   ============================================ */
.featured-section {
  background: var(--iron);
  padding: 96px 0;
}

.featured-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}

.featured-header h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  color: var(--parchment);
  line-height: 1.1;
}

.featured-link {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--mustard);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  transition: color 0.2s;
}
.featured-link:hover { color: #fff; }

.featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.featured-card {
  position: relative;
  overflow: hidden;
  display: block;
}

.featured-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}
.featured-card:hover img { transform: scale(1.05); }

.featured-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18,18,18,0.95) 0%, rgba(18,18,18,0.3) 60%, transparent 100%);
}

.featured-card-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
}

.featured-card-text h3 {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  color: var(--parchment);
  margin-bottom: 8px;
}

.featured-card-text p {
  font-size: 13px;
  color: rgba(247,243,237,0.55);
  line-height: 1.6;
  max-width: 340px;
}

@media (max-width: 700px) {
  .featured-grid { grid-template-columns: 1fr; }
  .featured-header { flex-direction: column; align-items: flex-start; gap: 16px; }
}

/* ============================================
   MENU PREVIEW
   ============================================ */
.menu-preview-section { padding: 96px 0; }

.menu-preview-section .section-header {
  text-align: center;
  margin-bottom: 64px;
}

.menu-preview-section h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  color: var(--red);
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 64px;
}

.preview-card {
  border: 4px solid var(--iron);
  padding: 24px;
}

.preview-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--iron);
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--red);
}

.preview-card ul { list-style: none; }
.preview-card ul li {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: var(--iron-60);
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.preview-card ul li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mustard);
  flex-shrink: 0;
}

.preview-cta { text-align: center; }

@media (max-width: 900px) {
  .preview-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .preview-grid { grid-template-columns: 1fr; }
}

/* ============================================
   WHY PEOPLE LOVE IT
   ============================================ */
.why-section {
  padding: 96px 0;
  border-top: 4px solid var(--iron);
  border-bottom: 4px solid var(--iron);
}

.why-section .section-header {
  text-align: center;
  margin-bottom: 64px;
}

.why-section h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  color: var(--red);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.why-card { text-align: center; }

.why-icon {
  width: 64px;
  height: 64px;
  border: 4px solid var(--iron);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.why-icon svg { color: var(--red); }

.why-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--iron);
  margin-bottom: 12px;
}

.why-card p {
  font-size: 14px;
  color: var(--iron-60);
  line-height: 1.7;
  max-width: 280px;
  margin: 0 auto;
}

@media (max-width: 700px) {
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ============================================
   PHOTO GALLERY
   ============================================ */
.gallery-section {
  background: var(--iron);
  padding: 96px 0;
}

.gallery-section .section-header {
  text-align: center;
  margin-bottom: 48px;
}

.gallery-section h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  color: var(--parchment);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 240px);
  gap: 8px;
}

.gallery-item { overflow: hidden; }
.gallery-item.span-2-2 { grid-column: span 2; grid-row: span 2; }
.gallery-item.span-2-1 { grid-column: span 2; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
  display: block;
}
.gallery-item:hover img { transform: scale(1.06); }

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item.span-2-2,
  .gallery-item.span-2-1 { grid-column: span 1; grid-row: span 1; }
  .gallery-item { height: 200px; }
}

/* ============================================
   REVIEWS
   ============================================ */
.reviews-section { padding: 96px 0; }

.reviews-section .section-header {
  text-align: center;
  margin-bottom: 64px;
}

.reviews-section h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  color: var(--red);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.review-card {
  border: 4px solid var(--iron);
  padding: 32px;
  position: relative;
}

.review-stars {
  position: absolute;
  top: -14px;
  left: 24px;
  background: var(--parchment);
  padding: 0 12px;
  display: flex;
  gap: 2px;
}

.review-stars svg { color: var(--mustard); fill: var(--mustard); }

.review-quote {
  font-family: 'Playfair Display', serif;
  font-size: 72px;
  color: rgba(162,28,28,0.15);
  line-height: 1;
  margin-bottom: -12px;
}

.review-card p {
  font-size: 15px;
  color: var(--iron-60);
  line-height: 1.7;
  margin-bottom: 24px;
}

.review-author {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(18,18,18,0.35);
}

@media (max-width: 768px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

/* ============================================
   VISIT SECTION
   ============================================ */
.visit-section {
  padding: 96px 0;
  border-top: 4px solid var(--iron);
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.visit-text h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  color: var(--red);
  line-height: 1.1;
  margin-bottom: 16px;
}

.visit-text > p {
  font-size: 15px;
  color: var(--iron-60);
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 40px;
}

.visit-details { display: flex; flex-direction: column; gap: 28px; }

.visit-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.visit-detail-icon {
  width: 48px;
  height: 48px;
  border: 4px solid var(--iron);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.visit-detail-icon svg { color: var(--red); }

.visit-detail-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(18,18,18,0.35);
  margin-bottom: 4px;
}

.visit-detail-value {
  font-size: 15px;
  color: var(--iron);
  line-height: 1.5;
}
.visit-detail-value a { transition: color 0.2s; }
.visit-detail-value a:hover { color: var(--red); }

.visit-map {
  border: 4px solid var(--iron);
  overflow: hidden;
  height: 100%;
  min-height: 440px;
}
.visit-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  min-height: 440px;
}

@media (max-width: 900px) {
  .visit-grid { grid-template-columns: 1fr; }
  .visit-map { min-height: 300px; }
}

/* ============================================
   MENU PAGE
   ============================================ */
.page-hero {
  background: var(--iron);
  padding: 140px 0 64px;
  text-align: center;
}

.page-hero .section-label { display: block; text-align: center; }

.page-hero h1 {
  font-size: clamp(48px, 8vw, 80px);
  font-weight: 900;
  color: var(--parchment);
}

.menu-cat-nav {
  position: sticky;
  top: 72px;
  z-index: 40;
  background: var(--parchment);
  border-bottom: 4px solid var(--iron);
}

.menu-cat-nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.menu-cat-nav-inner::-webkit-scrollbar { display: none; }

.cat-btn {
  white-space: nowrap;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 16px 20px;
  color: rgba(18,18,18,0.45);
  border-bottom: 4px solid transparent;
  margin-bottom: -4px;
  transition: all 0.2s;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  cursor: pointer;
}
.cat-btn:hover { color: var(--iron); }
.cat-btn.active { color: var(--red); border-bottom-color: var(--red); font-weight: 700; }

.menu-content { padding: 64px 0 96px; }

.menu-category { display: none; }
.menu-category.active { display: block; }

.menu-category h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 900;
  color: var(--red);
  margin-bottom: 40px;
  padding-bottom: 16px;
  border-bottom: 4px solid var(--iron);
}

.menu-items { max-width: 800px; }

.menu-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 24px 0;
  border-bottom: 1px solid rgba(18,18,18,0.1);
  gap: 24px;
}

.menu-item-info h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--iron);
  margin-bottom: 4px;
  transition: color 0.2s;
}
.menu-item:hover h3 { color: var(--red); }

.menu-item-info p {
  font-size: 13px;
  color: var(--iron-60);
  line-height: 1.5;
}

.menu-item-price {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 15px;
  font-weight: 700;
  color: var(--mustard);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.page-hero-img {
  position: relative;
  height: 50vh;
  min-height: 350px;
  overflow: hidden;
}

.page-hero-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18,18,18,1) 0%, rgba(18,18,18,0.5) 50%, rgba(18,18,18,0.25) 100%);
}

.page-hero-img-text {
  position: relative;
  height: 100%;
  display: flex;
  align-items: flex-end;
}

.page-hero-img-text .inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px 48px;
  width: 100%;
}
.page-hero-img-text h1 {
  font-size: clamp(48px, 7vw, 80px);
  font-weight: 900;
  color: #fff;
}

.timeline-section {
  background: var(--iron);
  padding: 96px 0;
}

.timeline-section .section-header {
  text-align: center;
  margin-bottom: 64px;
}

.timeline-section h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  color: var(--parchment);
}

.timeline { max-width: 800px; margin: 0 auto; }

.timeline-item {
  display: flex;
  gap: 40px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(247,243,237,0.08);
  align-items: flex-start;
}
.timeline-item:last-child { border-bottom: none; }

.timeline-year {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 900;
  color: var(--mustard);
  flex-shrink: 0;
  width: 100px;
}

.timeline-text {
  font-size: 15px;
  color: rgba(247,243,237,0.65);
  line-height: 1.7;
  padding-top: 4px;
}

@media (max-width: 600px) {
  .timeline-item { flex-direction: column; gap: 8px; }
  .timeline-year { font-size: 22px; }
}

/* ============================================
   GALLERY PAGE
   ============================================ */
.gallery-filters {
  border-bottom: 4px solid var(--iron);
}

.gallery-filters-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: center;
}

.filter-btn {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 16px 32px;
  color: rgba(18,18,18,0.45);
  border-bottom: 4px solid transparent;
  margin-bottom: -4px;
  transition: all 0.2s;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  cursor: pointer;
}
.filter-btn:hover { color: var(--iron); }
.filter-btn.active { color: var(--red); border-bottom-color: var(--red); font-weight: 700; }

.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 64px 0 96px;
}

.gallery-page-item {
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
  border: 4px solid var(--iron);
  display: block;
}

.gallery-page-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}
.gallery-page-item:hover img { transform: scale(1.1); }
.gallery-page-item.hidden { display: none; }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(18,18,18,0.95);
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lightbox.open { display: flex; }

.lightbox img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  color: rgba(247,243,237,0.6);
  transition: color 0.2s;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.lightbox-close:hover { color: var(--parchment); }
.lightbox-close svg { display: block; }

@media (max-width: 768px) {
  .gallery-page-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section { padding: 96px 0; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-in-up {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}
.fade-in-up.delay-1 { animation-delay: 0.1s; }
.fade-in-up.delay-2 { animation-delay: 0.2s; }
.fade-in-up.delay-3 { animation-delay: 0.3s; }
.fade-in-up.delay-4 { animation-delay: 0.4s; }

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   SVG ICONS (inline helpers)
   ============================================ */
svg { display: inline-block; }
