/* =========================================
   HARBOR COFFEE HOUSE — Main Stylesheet
   ========================================= */

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

:root {
  /* === Brand Colors (legacy) === */
  --black:    #141414;
  --dark:     #212121;
  --mid:      #3a3a3a;
  --light:    #efefef;
  --white:    #ffffff;
  --cream:    #f5f0e8;

  /* === UI/UX Pro Max Theme === */
  --card: #fcfcfc;
  --ring: #644a40;
  --input: #d8d8d8;
  --muted: #efefef;
  --accent: #e8e8e8;
  --border: #d8d8d8;
  --radius: 0.5rem;
  --chart-1: #644a40;
  --chart-2: #ffdfb5;
  --chart-3: #e8e8e8;
  --chart-4: #ffe6c4;
  --chart-5: #66493e;
  --popover: #fcfcfc;
  --primary: #644a40;
  --sidebar: #fbfbfb;
  --secondary: #ffdfb5;
  --background: #f9f9f9;
  --foreground: #202020;
  --destructive: #e54d2e;
  --sidebar-ring: #b5b5b5;
  --sidebar-accent: #f7f7f7;
  --sidebar-border: #ebebeb;
  --card-foreground: #202020;
  --sidebar-primary: #343434;
  --muted-foreground: #646464;
  --accent-foreground: #202020;
  --popover-foreground: #202020;
  --primary-foreground: #ffffff;
  --sidebar-foreground: #252525;
  --secondary-foreground: #582d1d;
  --destructive-foreground: #ffffff;
  --sidebar-accent-foreground: #343434;
  --sidebar-primary-foreground: #fbfbfb;

  --font-serif: 'Fraunces', Georgia, serif;
  --font-sans:  'Poppins', sans-serif;

  --nav-h: 72px;
  --section-pad: 100px;
  --container: 1200px;
  --transition: 0.3s ease;
}

.dark {
  --card: #191919;
  --ring: #ffe0c2;
  --input: #484848;
  --muted: #222222;
  --accent: #2a2a2a;
  --border: #201e18;
  --radius: 0.5rem;
  --chart-1: #ffe0c2;
  --chart-2: #393028;
  --chart-3: #2a2a2a;
  --chart-4: #42382e;
  --chart-5: #ffe0c1;
  --popover: #191919;
  --primary: #ffe0c2;
  --sidebar: #18181b;
  --secondary: #393028;
  --background: #111111;
  --foreground: #eeeeee;
  --destructive: #e54d2e;
  --sidebar-ring: #d4d4d8;
  --sidebar-accent: #27272a;
  --sidebar-border: #27272a;
  --card-foreground: #eeeeee;
  --sidebar-primary: #1d4ed8;
  --muted-foreground: #b4b4b4;
  --accent-foreground: #eeeeee;
  --popover-foreground: #eeeeee;
  --primary-foreground: #081a1b;
  --sidebar-foreground: #f4f4f5;
  --secondary-foreground: #ffe0c2;
  --destructive-foreground: #ffffff;
  --sidebar-accent-foreground: #f4f4f5;
  --sidebar-primary-foreground: #ffffff;

  --black: #111111;
  --dark:  #191919;
  --mid:   #b4b4b4;
  --light: #222222;
  --white: #eeeeee;
  --cream: #1a1612;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--foreground);
  background: var(--background);
  -webkit-font-smoothing: antialiased;
}

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

/* --- Utilities --- */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  color: var(--black);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn--primary {
  background: var(--primary);
  color: var(--primary-foreground);
}
.btn--primary:hover { background: var(--secondary); color: var(--secondary-foreground); }

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--white);
}
.btn--outline:hover { background: var(--white); color: var(--black); }

.btn--dark-outline {
  background: transparent;
  color: var(--black);
  border: 1px solid var(--black);
}
.btn--dark-outline:hover { background: var(--black); color: var(--white); }

.link-arrow {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--secondary);
  transition: var(--transition);
}
.link-arrow:hover { letter-spacing: 0.12em; }

/* =========================================
   NAVIGATION
   ========================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(20, 20, 20, 0.96);
  backdrop-filter: blur(10px);
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.3); }

.nav__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 1.3rem;
  color: var(--white);
  letter-spacing: 0.02em;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}
.nav__links a:hover,
.nav__links a.active { color: var(--white); }

.nav__cta {
  padding: 10px 22px;
  border: 1px solid var(--accent) !important;
  color: var(--accent) !important;
}
.nav__cta:hover { background: var(--accent) !important; color: var(--black) !important; }

.nav__dark-toggle {
  background: none;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  cursor: pointer;
  font-size: 1rem;
  padding: 6px 10px;
  border-radius: 6px;
  transition: var(--transition);
  line-height: 1;
}
.nav__dark-toggle:hover {
  background: rgba(255,255,255,0.1);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: var(--transition);
}

/* =========================================
   HERO SLIDESHOW + VINTAGE
   ========================================= */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: #111;
}

/* ---- Slides ---- */
.hero__slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.6s ease;
}
.hero__slide.active {
  opacity: 1;
  animation: heroZoom 9s ease-out both;
}
@keyframes heroZoom {
  from { transform: scale(1.06); }
  to   { transform: scale(1.00); }
}

/* ---- Vintage warm overlay ---- */
.hero__vintage {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.55) 100%),
    rgba(80, 45, 10, 0.22);
}

/* ---- Bottom gradient ---- */
.hero__gradient {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 3;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 50% at 50% 50%, rgba(0,0,0,0.45) 0%, transparent 100%),
    linear-gradient(
      to bottom,
      rgba(0,0,0,0.1)  0%,
      rgba(0,0,0,0.3) 45%,
      rgba(0,0,0,0.75) 100%
    );
}

/* ---- Centered content ---- */
.hero__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  width: 100%;
  max-width: 900px;
  padding: 56px 48px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* dark backdrop so text is always readable */
  background: radial-gradient(ellipse at center,
    rgba(0,0,0,0.65) 0%,
    rgba(0,0,0,0.3) 60%,
    transparent 100%
  );
}

/* ---- Arrows ---- */
.hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: white;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  backdrop-filter: blur(6px);
}
.hero__arrow:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-50%) scale(1.08);
}
.hero__arrow--prev { left: 28px; }
.hero__arrow--next { right: 28px; }

/* ---- Dots ---- */
.hero__dots {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.hero__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, transform 0.3s;
}
.hero__dot.active {
  background: #ffdfb5;
  transform: scale(1.35);
}

/* ---- Bottom bar ---- */
.hero__bottom-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hero__hours,
.hero__insta {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  transition: color 0.3s;
  text-decoration: none;
}
.hero__insta:hover { color: rgba(255,255,255,0.7); }

.hero__scroll-line {
  width: 1px;
  height: 26px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* old hero__content removed — see combined rule above */

.hero__eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #ffdfb5;
  margin-bottom: 24px;
  opacity: 0;
  animation: heroFadeUp 0.8s ease 0.3s forwards;
  text-shadow: 0 1px 12px rgba(0,0,0,0.8);
}

.hero__title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(3.5rem, 9vw, 7.5rem);
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 28px;
  opacity: 0;
  animation: heroFadeUp 1s ease 0.55s forwards;
  text-shadow: 0 2px 8px rgba(0,0,0,0.9), 0 4px 32px rgba(0,0,0,0.6);
}
.hero__title em {
  font-style: italic;
  color: #ffffff;
  -webkit-text-stroke: 1px rgba(0,0,0,0.6);
  text-shadow:
    0 0 0 #000,
    2px 2px 0 #000,
    -1px -1px 0 #000,
    1px -1px 0 #000,
    -1px 1px 0 #000,
    0 3px 16px rgba(0,0,0,0.9);
}
.hero__title--large {
  font-size: clamp(4rem, 10vw, 9rem);
}

.hero__sub {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin: 0 auto 44px;
  opacity: 0;
  animation: heroFadeUp 0.8s ease 0.85s forwards;
  text-shadow: 0 1px 8px rgba(0,0,0,0.9);
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroFadeUp 0.8s ease 1.05s forwards;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero__scroll-line {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.35), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* =========================================
   EXPERIENCE STRIP (auto-scroll)
   ========================================= */
.experience-strip {
  overflow: hidden;
  background: var(--black);
  padding: 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.experience-strip__track {
  display: flex;
  gap: 4px;
  animation: stripScroll 32s linear infinite;
  width: max-content;
}
.experience-strip__track:hover {
  animation-play-state: paused;
}

@keyframes stripScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.experience-strip__item {
  position: relative;
  width: 320px;
  height: 220px;
  flex-shrink: 0;
  overflow: hidden;
  cursor: pointer;
}
.experience-strip__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}
.experience-strip__item:hover img {
  transform: scale(1.07);
}
.experience-strip__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 16px 14px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  opacity: 0;
  transition: opacity var(--transition);
}
.experience-strip__item:hover .experience-strip__caption {
  opacity: 1;
}

/* =========================================
   STORY SECTION
   ========================================= */
.story-section {
  padding: var(--section-pad) 0;
  background: var(--background);
}

.story-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-section__image {
  aspect-ratio: 4/5;
  overflow: hidden;
}
.story-section__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}
.story-section__image:hover img { transform: scale(1.04); }

.story-section__text p {
  color: var(--muted-foreground);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 32px;
}
.story-section__text .section-title {
  color: var(--foreground);
  margin-bottom: 20px;
}

/* Scroll reveal animations */
.reveal-left,
.reveal-right,
.reveal-up {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition-delay: var(--delay, 0s);
}
.reveal-left  { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-up    { transform: translateY(40px); }

.reveal-left.in-view,
.reveal-right.in-view,
.reveal-up.in-view {
  opacity: 1;
  transform: none;
}

/* =========================================
   SHOWCASE GRID
   ========================================= */
.showcase {
  background: var(--black);
}

.showcase__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}

.showcase__card {
  position: relative;
  height: 520px;
  overflow: hidden;
  display: block;
  text-decoration: none;
}

.showcase__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s ease;
}
.showcase__card:hover .showcase__img {
  transform: scale(1.07);
}

.showcase__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px 32px;
  transition: background 0.4s ease;
}
.showcase__card:hover .showcase__overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 60%);
}

.showcase__label {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 1.6rem;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 8px;
}

.showcase__arrow {
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--secondary);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.showcase__card:hover .showcase__arrow {
  opacity: 1;
  transform: none;
}

.showcase__cta {
  display: flex;
  justify-content: center;
  padding: 48px 0;
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* =========================================
   ABOUT TEASER
   ========================================= */
.about-teaser {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.about-teaser__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-teaser__image {
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
}
.about-teaser__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}
.about-teaser__image:hover img { transform: scale(1.04); }

.about-teaser__text .section-title { margin-bottom: 24px; }
.about-teaser__text p {
  color: var(--mid);
  margin-bottom: 18px;
  font-size: 15px;
}
.about-teaser__text .btn { margin-top: 12px; }

/* =========================================
   MENU PREVIEW
   ========================================= */
.menu-preview {
  padding: var(--section-pad) 0;
  background: var(--black);
}

.menu-preview .section-eyebrow { color: var(--accent); }
.menu-preview .section-title { color: var(--white); }

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

.menu-card {
  background: var(--dark);
  overflow: hidden;
  transition: box-shadow 0.4s ease;
}
.menu-card:hover { box-shadow: 0 20px 60px rgba(0,0,0,0.5); }

.menu-card__img-wrap {
  height: 280px;
  overflow: hidden;
}

.menu-card__img {
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s ease;
}
.menu-card:hover .menu-card__img { transform: scale(1.06); }

/* Fallback colors if image fails */
.menu-card__img--coffee    { background-color: #2a1a08; }
.menu-card__img--breakfast { background-color: #1e2a10; }
.menu-card__img--bakery    { background-color: #2a1e08; }

.menu-card__body {
  padding: 32px 28px;
}
.menu-card__body h3 {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 10px;
}
.menu-card__body p {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
  line-height: 1.6;
}

/* =========================================
   HOURS STRIP
   ========================================= */
.hours-strip {
  padding: 60px 0;
  background: var(--primary);
}

.hours-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.hours-strip__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.hours-strip__label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
.hours-strip__value {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 1.3rem;
  color: var(--white);
}

.hours-strip__divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.25);
}

.hours-strip .btn--outline {
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.hours-strip .btn--outline:hover {
  background: var(--white);
  color: var(--primary);
}

/* =========================================
   INSTAGRAM
   ========================================= */
.instagram {
  padding: var(--section-pad) 0;
  background: var(--light);
}

.instagram .section-title a {
  color: var(--black);
  transition: var(--transition);
}
.instagram .section-title a:hover { color: var(--accent); }

.instagram__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
}

.instagram__item {
  aspect-ratio: 1;
  background: #c8b89a;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.instagram__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.instagram__item:hover img { transform: scale(1.07); }
.instagram__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background var(--transition);
}
.instagram__item:hover::after { background: rgba(0,0,0,0.25); }

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background: var(--black);
  color: var(--white);
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-top: 72px;
  padding-bottom: 60px;
}

.footer__logo {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 1.4rem;
  display: block;
  margin-bottom: 16px;
}

.footer__brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  max-width: 300px;
  margin-bottom: 20px;
  line-height: 1.7;
}

.footer__social {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  transition: var(--transition);
}
.footer__social:hover { letter-spacing: 0.16em; }

.footer__links h4,
.footer__hours h4 {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}

.footer__links ul { display: flex; flex-direction: column; gap: 10px; }
.footer__links a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
}
.footer__links a:hover { color: var(--white); }

.footer__hours p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 6px;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  padding: 24px;
}
.footer__bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.05em;
}

/* =========================================
   PAGE HERO (inner pages)
   ========================================= */
.page-hero {
  height: 380px;
  background: var(--black);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding-bottom: 64px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.82) 0%,
    rgba(0,0,0,0.4) 60%,
    rgba(0,0,0,0.3) 100%
  );
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero__eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.page-hero__title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  line-height: 1.1;
}

/* =========================================
   MENU PAGE
   ========================================= */
.menu-section { padding: var(--section-pad) 0; }
.menu-section:nth-child(even) { background: var(--cream); }

.menu-subsection { margin-bottom: 52px; }
.menu-subsection:last-child { margin-bottom: 0; }
.menu-subsection__title {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e8e2d8;
}

.menu-addons {
  margin-top: 40px;
  padding: 24px 28px;
  background: var(--black);
  color: var(--white);
}
.menu-addons h4 {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.menu-addons__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
}
.menu-addons__list span {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}

.menu-note {
  margin-top: 16px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
}

.menu-tag {
  display: inline-block;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--cream);
  color: var(--muted);
  padding: 2px 6px;
  margin-left: 6px;
  vertical-align: middle;
  position: relative;
  top: -1px;
}

.menu-section__header {
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e0d8cc;
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.menu-section__header h2 {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 2rem;
  color: var(--black);
}
.menu-section__header span {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.08em;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 20px 0;
  border-bottom: 1px solid #ece7df;
  gap: 24px;
}
.menu-item:nth-child(odd)  { padding-right: 40px; }
.menu-item:nth-child(even) { padding-left: 40px; border-left: 1px solid #ece7df; }

.menu-item__info h3 {
  font-size: 15px;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 4px;
}
.menu-item__info p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}
.menu-item__price {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--primary);
  white-space: nowrap;
  flex-shrink: 0;
}

/* =========================================
   MENU BOARDS
   ========================================= */
.menu-boards-section {
  padding: 80px 0 100px;
  background: var(--background);
}

.menu-boards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  align-items: start;
}

/* Each board animates in on scroll */
.menu-board {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.menu-board.visible { opacity: 1; transform: translateY(0); }
.menu-board:nth-child(2) { transition-delay: 0.15s; }
.menu-board:nth-child(3) { transition-delay: 0.3s; }
.menu-board.hidden { display: none; }

/* The aesthetic frame */
.menu-board__frame {
  position: relative;
  width: 100%;
  background: var(--card);
  padding: 14px;
  box-shadow:
    0 2px 4px rgba(100,74,64,0.06),
    0 8px 24px rgba(100,74,64,0.1),
    0 32px 64px rgba(100,74,64,0.12);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.menu-board__frame:hover {
  transform: translateY(-6px);
  box-shadow:
    0 4px 8px rgba(100,74,64,0.08),
    0 16px 40px rgba(100,74,64,0.14),
    0 48px 80px rgba(100,74,64,0.16);
}

/* Decorative corner accents */
.menu-board__corner {
  position: absolute;
  width: 18px;
  height: 18px;
  z-index: 2;
}
.menu-board__corner--tl { top: 5px;  left: 5px;  border-top: 1.5px solid var(--primary); border-left: 1.5px solid var(--primary); }
.menu-board__corner--tr { top: 5px;  right: 5px; border-top: 1.5px solid var(--primary); border-right: 1.5px solid var(--primary); }
.menu-board__corner--bl { bottom: 5px; left: 5px;  border-bottom: 1.5px solid var(--primary); border-left: 1.5px solid var(--primary); }
.menu-board__corner--br { bottom: 5px; right: 5px; border-bottom: 1.5px solid var(--primary); border-right: 1.5px solid var(--primary); }

.menu-board__img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Label below frame */
.menu-board__label {
  text-align: center;
}
.menu-board__eyebrow {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  margin-bottom: 6px;
}
.menu-board__title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 1.4rem;
  color: var(--foreground);
}

/* Clickable frame */
.menu-board__frame--clickable {
  cursor: pointer;
}

/* Zoom hint — hidden */
.menu-board__zoom-hint { display: none; }

/* Expand button */
.menu-board__expand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: 1px solid var(--border);
  color: var(--muted-foreground);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 18px;
  cursor: pointer;
  transition: var(--transition);
  border-radius: var(--radius);
}
.menu-board__expand:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--secondary);
}

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10,6,4,0.88);
  backdrop-filter: blur(6px);
}

.lightbox__inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  width: 100%;
  transform: scale(0.94) translateY(16px);
  transition: transform 0.35s ease;
}
.lightbox.open .lightbox__inner { transform: scale(1) translateY(0); }

.lightbox__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.lightbox__title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 1.2rem;
  color: var(--white);
  letter-spacing: 0.04em;
}
.lightbox__close {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 50%;
  transition: var(--transition);
}
.lightbox__close:hover { background: rgba(255,255,255,0.2); }

.lightbox__img-wrap {
  position: relative;
  background: var(--card);
  padding: 12px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.6);
}
.lightbox__img-wrap::before,
.lightbox__img-wrap::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
}
.lightbox__img-wrap::before {
  top: 5px; left: 5px;
  border-top: 1.5px solid var(--primary);
  border-left: 1.5px solid var(--primary);
}
.lightbox__img-wrap::after {
  bottom: 5px; right: 5px;
  border-bottom: 1.5px solid var(--primary);
  border-right: 1.5px solid var(--primary);
}

.lightbox__img-wrap img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 80vh;
  object-fit: contain;
}

/* MENU PHOTO GALLERY (food photos - kept for future use) */
.menu-filter-bar {
  position: sticky;
  top: var(--nav-h);
  z-index: 100;
  background: var(--background);
  border-bottom: 1px solid var(--border);
  padding: 0;
}

.menu-filter__tabs {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.menu-filter__tabs::-webkit-scrollbar { display: none; }

.menu-filter__tab {
  background: none;
  border: none;
  padding: 18px 28px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  cursor: pointer;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
}
.menu-filter__tab:hover { color: var(--foreground); }
.menu-filter__tab.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.menu-photo-section {
  padding: 60px 0 80px;
}

.menu-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.menu-photo-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  background: var(--muted);
}
.menu-photo-card--wide {
  grid-column: span 2;
  aspect-ratio: 2 / 1;
}

.menu-photo-card__img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}
.menu-photo-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}
.menu-photo-card:hover .menu-photo-card__img img {
  transform: scale(1.06);
}

.menu-photo-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0) 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.menu-photo-card:hover .menu-photo-card__overlay {
  opacity: 1;
}
.menu-photo-card__label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 4px;
}
.menu-photo-card__overlay h3 {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 1.3rem;
  color: var(--white);
  line-height: 1.2;
}

.menu-photo-card.hidden {
  display: none;
}

.menu-photo-note {
  text-align: center;
  margin-top: 48px;
  font-size: 14px;
  color: var(--muted-foreground);
}
.menu-photo-note a {
  color: var(--primary);
  font-weight: 500;
  transition: var(--transition);
}
.menu-photo-note a:hover { opacity: 0.7; }

/* =========================================
   DECORATIVE TITLE LINE
   ========================================= */
.deco-title {
  position: relative;
  padding-bottom: 28px;
  margin-bottom: 28px;
}
.deco-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 120px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 18'%3E%3Cpath d='M2 14 C20 4, 40 18, 60 10 C80 2, 100 16, 118 8' fill='none' stroke='%23c8963e' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M8 10 C26 2, 46 16, 66 8 C86 0, 106 14, 116 12' fill='none' stroke='%23e8b96a' stroke-width='1' stroke-linecap='round' opacity='0.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.deco-title--center::after {
  left: 50%;
  transform: translateX(-50%);
}

/* =========================================
   ABOUT PAGE
   ========================================= */
.about-content { padding: var(--section-pad) 0; }
.about-content__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-photos {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.about-photo-main {
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.about-photo-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.7s ease;
}
.about-photo-main:hover img { transform: scale(1.03); }

.about-photo-sub {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.about-photo-sub img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.7s ease;
}
.about-photo-sub:hover img { transform: scale(1.03); }

.about-founders-label {
  text-align: center;
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 1rem;
  font-style: italic;
  color: var(--muted-foreground);
  letter-spacing: 0.06em;
  margin-top: 14px;
  position: relative;
  padding-bottom: 28px;
}
/* Smaller decorative line for the founders label */
.about-founders-label.deco-title::after {
  width: 80px;
  height: 14px;
}
.about-content p {
  font-size: 15px;
  color: var(--mid);
  margin-bottom: 20px;
  line-height: 1.85;
}
.about-content h3 {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 1.6rem;
  margin: 40px 0 16px;
  color: var(--black);
}

.about-values {
  padding: var(--section-pad) 0;
  background: var(--black);
}
.about-values .section-title { color: var(--white); text-align: center; margin-bottom: 60px; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.value-card {
  padding: 48px 36px;
  background: var(--dark);
}
.value-card__num {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--accent);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 20px;
}
.value-card h3 {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 12px;
}
.value-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}

/* =========================================
   GALLERY PAGE
   ========================================= */
.gallery-grid {
  padding: var(--section-pad) 0;
}
.gallery-grid__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.gallery-item {
  aspect-ratio: 1;
  background: #c8b89a;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-item--wide  { grid-column: span 2; aspect-ratio: 2/1; }
.gallery-item--tall  { grid-row: span 2; aspect-ratio: unset; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}
.gallery-item:hover img { transform: scale(1.06); }

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  transition: background var(--transition);
}
.gallery-item:hover .gallery-item__overlay { background: rgba(0,0,0,0.38); }
.gallery-item__overlay span {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: transparent;
  font-weight: 500;
  transition: var(--transition);
}
.gallery-item:hover .gallery-item__overlay span { color: var(--white); }

/* =========================================
   LOCATION PAGE
   ========================================= */
.location-section { padding: var(--section-pad) 0; }
.location-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.location-info h3 {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 1.6rem;
  margin-bottom: 24px;
  color: var(--black);
}
.location-detail {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}
.location-detail__item h4 {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.location-detail__item p {
  font-size: 15px;
  color: var(--dark);
  line-height: 1.6;
}
.location-detail__item a {
  color: var(--accent);
  transition: var(--transition);
}
.location-detail__item a:hover { opacity: 0.7; }

.map-placeholder {
  aspect-ratio: 4/3;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e0d8cc;
}
.map-placeholder span {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--muted);
}

.hours-table { width: 100%; }
.hours-table tr {
  border-bottom: 1px solid #ece7df;
}
.hours-table td {
  padding: 14px 0;
  font-size: 14px;
  color: var(--dark);
}
.hours-table td:last-child {
  text-align: right;
  color: var(--muted);
}

/* =========================================
   CATERING PAGE
   ========================================= */
.catering-intro {
  padding: var(--section-pad) 0;
  background: var(--cream);
}
.catering-intro__inner {
  max-width: 700px;
  margin-inline: auto;
  text-align: center;
}
.catering-intro p {
  font-size: 15px;
  color: var(--mid);
  margin-bottom: 16px;
  line-height: 1.85;
}

.catering-form-section { padding: var(--section-pad) 0; }
.catering-form {
  max-width: 680px;
  margin-inline: auto;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-field--full { grid-column: 1 / -1; }
.form-field label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-field input,
.form-field select,
.form-field textarea {
  padding: 14px 16px;
  border: 1px solid #ddd;
  background: var(--white);
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--dark);
  transition: border-color var(--transition);
  outline: none;
  width: 100%;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--accent); }
.form-field textarea { resize: vertical; min-height: 140px; }
.catering-form .btn { width: 100%; text-align: center; margin-top: 8px; }

/* =========================================
   DARK MODE OVERRIDES
   ========================================= */
.dark .features        { background: var(--dark); }
.dark .feature-card    { border-color: rgba(255,255,255,0.06); }
.dark .feature-card:hover { background: var(--black); }
.dark .feature-card h3 { color: var(--white); }
.dark .feature-card p  { color: var(--muted-foreground); }
.dark .feature-card__icon { background: var(--secondary); color: var(--primary); }

.dark .about-teaser    { background: var(--background); }
.dark .about-teaser__text p { color: var(--muted-foreground); }
.dark .section-title   { color: var(--foreground); }

.dark .hours-strip     { background: var(--primary); }

.dark .instagram       { background: var(--dark); }

.dark .menu-board__frame { background: var(--card); }
.dark .lightbox__img-wrap { background: var(--card); }

.dark .catering-intro  { background: var(--dark); }
.dark .catering-intro p { color: var(--muted-foreground); }

.dark .form-field label { color: var(--muted-foreground); }

.dark .form-field input,
.dark .form-field select,
.dark .form-field textarea {
  background: var(--card);
  border-color: var(--border);
  color: var(--foreground);
}

.dark .form-field input::placeholder,
.dark .form-field textarea::placeholder { color: #666; }

.dark .menu-section:nth-child(even) { background: var(--dark); }
.dark .menu-item__info h3  { color: var(--foreground); }
.dark .menu-item__info p   { color: var(--muted-foreground); }
.dark .menu-section__header { border-color: rgba(255,255,255,0.08); }
.dark .menu-section__header h2 { color: var(--foreground); }
.dark .menu-subsection__title  { border-color: rgba(255,255,255,0.08); }
.dark .menu-item        { border-color: rgba(255,255,255,0.08); }
.dark .menu-item:nth-child(even) { border-color: rgba(255,255,255,0.08); }

.dark .about-content p  { color: var(--muted-foreground); }
.dark .about-content h3 { color: var(--foreground); }

.dark .location-detail__item p    { color: var(--muted-foreground); }
.dark .location-detail__item h4   { color: var(--muted-foreground); }
.dark .location-detail__item a    { color: var(--primary); }
.dark .location-info h3           { color: var(--foreground); }
.dark .map-placeholder            { background: var(--dark); border-color: rgba(255,255,255,0.08); }
.dark .map-placeholder span       { color: var(--muted-foreground); }
.dark .hours-table td             { color: var(--muted-foreground); }
.dark .hours-table td:last-child  { color: var(--muted-foreground); }
.dark .hours-table tr             { border-color: rgba(255,255,255,0.08); }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  :root { --section-pad: 72px; }
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card { border-bottom: 1px solid #e0d8cc; }
  .feature-card:nth-child(2) { border-right: none; }
  .about-teaser__inner { gap: 48px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .instagram__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; --section-pad: 56px; }

  .nav__links {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--black);
    flex-direction: column;
    gap: 0;
    padding: 12px 0 24px;
  }
  .nav__links.open { display: flex; }
  .nav__links li { width: 100%; }
  .nav__links a {
    display: block;
    padding: 14px 24px;
    font-size: 13px;
  }
  .nav__toggle { display: flex; }
  .nav__cta { margin: 8px 24px 0; }

  .hero__title { font-size: clamp(2.5rem, 12vw, 4rem); }

  .features__grid { grid-template-columns: 1fr; }
  .feature-card { border-right: none; }

  .about-teaser__inner,
  .about-content__inner,
  .location-section__inner { grid-template-columns: 1fr; gap: 40px; }

  .menu-preview__grid { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr; }
  .menu-item:nth-child(even) { border-left: none; padding-left: 0; }
  .menu-item:nth-child(odd)  { padding-right: 0; }

  .hours-strip__inner { gap: 28px; }
  .hours-strip__divider { display: none; }

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

  .footer__inner { grid-template-columns: 1fr; gap: 40px; }

  .gallery-grid__inner { grid-template-columns: repeat(2, 1fr); }
  .gallery-item--wide { grid-column: span 1; }

  .values-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }

  .experience-strip__item { width: 220px; height: 160px; }

  .story-section__inner { grid-template-columns: 1fr; gap: 40px; }

  .showcase__grid { grid-template-columns: 1fr; }
  .showcase__card { height: 320px; }

  .menu-photo-grid { grid-template-columns: 1fr 1fr; }
  .menu-photo-card--wide { grid-column: span 2; }

  .menu-filter__tab { padding: 14px 18px; }
}
