/* ============================================================
   Y TU MAMA — Global Stylesheet
   Mexican Food Inside The Veil Brewing Co.
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Asul:wght@400;700&family=UnifrakturMaguntia&display=swap');

/* --- CSS Custom Properties --- */
:root {
  --charcoal: #000000;
  --charcoal-light: #111111;
  --charcoal-mid: #0A0A0A;
  --cream: #F2E6D5;
  --cream-dark: #E8D5BD;
  --copper: #D63A2F;
  --copper-dark: #A52A20;
  --copper-glow: #F04A3E;
  --white: #FAF6F0;

  --font-display: 'DM Serif Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Asul', 'Trebuchet MS', sans-serif;
  --font-blackletter: 'UnifrakturMaguntia', cursive;

  --nav-height: 140px;
  --section-pad: clamp(60px, 10vw, 120px);
  --container-max: 1200px;
  --container-narrow: 900px;

  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--cream);
  background-color: var(--charcoal);
  overflow-x: hidden;
  position: relative;
}

/* Grain overlay */
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  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)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

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

a {
  color: var(--copper);
  text-decoration: none;
  transition: color var(--transition-base);
}

a:hover {
  color: var(--copper-glow);
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  color: var(--cream);
}

h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

p {
  color: var(--cream-dark);
  max-width: 65ch;
}

::selection {
  background: var(--copper);
  color: var(--charcoal);
}

/* Old English / Blackletter initial letter */
.old-e {
  font-family: var(--font-blackletter);
  font-weight: 400;
  color: var(--copper);
  font-size: 1.15em;
  line-height: 1;
  text-shadow: 0 2px 12px rgba(214, 58, 47, 0.25);
}

/* --- Container --- */
.container {
  width: 90%;
  max-width: var(--container-max);
  margin: 0 auto;
}

.container--narrow {
  max-width: var(--container-narrow);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--copper);
  color: var(--charcoal);
  border-color: var(--copper);
}

.btn--primary:hover {
  background: var(--copper-glow);
  border-color: var(--copper-glow);
  color: var(--charcoal);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(214, 58, 47, 0.3);
}

.btn--outline {
  background: transparent;
  color: var(--cream);
  border-color: var(--cream);
}

.btn--outline:hover {
  background: var(--cream);
  color: var(--charcoal);
  transform: translateY(-2px);
}

.btn--small {
  padding: 10px 24px;
  font-size: 0.85rem;
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0 5%;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all var(--transition-base);
  background: transparent;
}

.nav--scrolled {
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  z-index: 1001;
}

.nav__logo-img {
  height: 128px;
  width: auto;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav__link {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cream-dark);
  text-decoration: none;
  position: relative;
  transition: color var(--transition-base);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--copper);
  transition: width var(--transition-base);
}

.nav__link:hover,
.nav__link--active {
  color: var(--copper);
}

.nav__link:hover::after,
.nav__link--active::after {
  width: 100%;
}

.nav__cta {
  margin-left: 8px;
}

/* --- Language Toggle --- */
html[data-lang="en"] .lang-es,
html:not([data-lang]) .lang-es { display: none !important; }
html[data-lang="es"] .lang-en { display: none !important; }

.nav__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1001;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  background: transparent;
  border: 1px solid rgba(242, 230, 213, 0.2);
  border-radius: 40px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--cream);
  cursor: pointer;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.lang-toggle:hover {
  border-color: var(--copper);
}

.lang-toggle__opt {
  opacity: 0.45;
  transition: opacity 0.3s ease, color 0.3s ease;
}

.lang-toggle__opt.active {
  opacity: 1;
  color: var(--copper);
}

.lang-toggle__sep {
  opacity: 0.3;
  font-weight: 400;
}

@media (max-width: 768px) {
  .lang-toggle {
    padding: 6px 12px;
    font-size: 0.68rem;
  }
  .nav__actions {
    gap: 10px;
  }
}

/* Hamburger */
.nav__hamburger {
  display: none;
  position: relative;
  width: 48px;
  height: 48px;
  cursor: pointer;
  z-index: 1001;
  padding: 0;
  background: none;
  border: 1px solid rgba(242, 230, 213, 0.15);
  border-radius: 50%;
  transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}

.nav__hamburger:hover {
  border-color: var(--copper);
  transform: scale(1.05);
}

.nav__hamburger span {
  position: absolute;
  left: 50%;
  display: block;
  width: 22px;
  height: 2px;
  background: var(--cream);
  transform-origin: center;
  transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1),
              opacity 0.25s ease,
              width 0.4s cubic-bezier(0.65, 0, 0.35, 1),
              background 0.3s ease;
}

.nav__hamburger span:nth-child(1) {
  top: 18px;
  transform: translateX(-50%);
}

.nav__hamburger span:nth-child(2) {
  top: 23px;
  transform: translateX(-50%);
  width: 14px;
}

.nav__hamburger span:nth-child(3) {
  top: 28px;
  transform: translateX(-50%);
  width: 18px;
}

.nav__hamburger:hover span:nth-child(2),
.nav__hamburger:hover span:nth-child(3) {
  width: 22px;
}

.nav__hamburger.active {
  border-color: var(--copper);
  transform: rotate(90deg);
}

.nav__hamburger.active span {
  background: var(--copper);
  width: 22px;
}

.nav__hamburger.active span:nth-child(1) {
  top: 23px;
  transform: translateX(-50%) rotate(45deg);
}

.nav__hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-50%) scale(0);
}

.nav__hamburger.active span:nth-child(3) {
  top: 23px;
  transform: translateX(-50%) rotate(-45deg);
}

/* Mobile Nav Drawer */
.nav__mobile-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.nav__mobile-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.nav__mobile-overlay {
  position: fixed;
  top: 0;
  right: 0;
  width: min(420px, 85vw);
  height: 100dvh;
  max-height: 100vh;
  background: linear-gradient(165deg, #0a0a0a 0%, #000000 60%, #0a0a0a 100%);
  border-left: 1px solid rgba(214, 58, 47, 0.25);
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: calc(var(--nav-height) + 20px) 48px 48px;
  transform: translateX(100%);
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  box-shadow: -30px 0 80px rgba(0, 0, 0, 0.6);
}

.nav__mobile-overlay::-webkit-scrollbar {
  width: 0;
  background: transparent;
}

.nav__mobile-overlay::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -120px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(214, 58, 47, 0.12) 0%, transparent 70%);
  transform: translateY(-50%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.8s ease 0.3s;
}

.nav__mobile-overlay::after {
  content: '✦';
  position: absolute;
  bottom: 40px;
  left: 48px;
  color: var(--copper);
  font-size: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease 0.8s, transform 0.5s ease 0.8s;
}

.nav__mobile-overlay.active {
  transform: translateX(0);
}

.nav__mobile-overlay.active::before {
  opacity: 1;
}

.nav__mobile-overlay.active::after {
  opacity: 1;
  transform: translateY(0);
}

.nav__mobile-overlay .mobile-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 32px;
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav__mobile-overlay.active .mobile-label {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.35s;
}

.nav__mobile-overlay a {
  position: relative;
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 7vw, 2.8rem);
  line-height: 1.1;
  color: var(--cream);
  text-decoration: none;
  padding: 14px 0;
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.7s ease,
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              color 0.3s ease,
              padding-left 0.3s ease;
}

.nav__mobile-overlay a:not(.btn)::before {
  content: '';
  position: absolute;
  left: -24px;
  top: 50%;
  width: 0;
  height: 1px;
  background: var(--copper);
  transition: width 0.35s cubic-bezier(0.65, 0, 0.35, 1);
}

.nav__mobile-overlay a:not(.btn):hover {
  color: var(--copper);
  padding-left: 24px;
}

.nav__mobile-overlay a:not(.btn):hover::before {
  width: 16px;
  left: 0;
}

.nav__mobile-overlay.active a:nth-child(2) { transition-delay: 0.4s; }
.nav__mobile-overlay.active a:nth-child(3) { transition-delay: 0.48s; }
.nav__mobile-overlay.active a:nth-child(4) { transition-delay: 0.56s; }
.nav__mobile-overlay.active a:nth-child(5) { transition-delay: 0.64s; }
.nav__mobile-overlay.active a:nth-child(6) { transition-delay: 0.72s; }
.nav__mobile-overlay.active a:nth-child(7) { transition-delay: 0.8s; }

.nav__mobile-overlay.active a {
  opacity: 1;
  transform: translateX(0);
}

.nav__mobile-overlay .mobile-divider {
  height: 1px;
  background: linear-gradient(to right, rgba(214, 58, 47, 0.4), transparent);
  margin: 28px 0 28px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1) 0.5s;
}

.nav__mobile-overlay.active .mobile-divider {
  transform: scaleX(1);
}

.nav__mobile-overlay .btn {
  margin-top: 20px;
  margin-bottom: 20px;
  align-self: flex-start;
  flex-shrink: 0;
}

.nav__mobile-overlay .mobile-footer {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream-dark);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease 0.9s, transform 0.6s ease 0.9s;
}

.nav__mobile-overlay.active .mobile-footer {
  opacity: 0.6;
  transform: translateY(0);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  padding: calc(var(--nav-height) + 24px) 5% 120px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-img,
.hero__bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 95%;
  display: block;
}

.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 75% 60% at center, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.45) 60%, rgba(0, 0, 0, 0.75) 100%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.15) 45%, rgba(0, 0, 0, 0.7) 100%);
  z-index: 1;
}

.hero__bg::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 250px;
  background: linear-gradient(to top, var(--charcoal), transparent);
  z-index: 2;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  width: 100%;
}

.hero__badge {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border: 1px solid rgba(214, 58, 47, 0.4);
  border-radius: 40px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--copper);
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  max-width: calc(100% - 40px);
}

.hero__badge svg {
  width: 14px;
  height: 14px;
  fill: var(--copper);
}

/* Big serif headline at the top of the hero (replaces the pill badge) */
.hero__headline {
  position: relative;
  z-index: 3;
  max-width: 1100px;
  width: 92%;
  text-align: center;
  padding: 12px 0;
}

.hero__headline-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7.5vw, 6rem);
  line-height: 1.08;
  color: var(--cream);
  margin: 0 auto 20px;
  letter-spacing: -0.01em;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
}

.hero__headline-title em {
  font-style: italic;
  color: var(--cream);
}

.hero__headline-sub {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.6vw, 1.2rem);
  letter-spacing: 0.15em;
  color: var(--cream-dark);
  margin: 0 auto;
  max-width: none;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.6);
}

.hero__tagline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.15;
  color: var(--cream);
  margin-top: 20px;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
  max-width: 14ch;
  margin-left: auto;
  margin-right: auto;
}

.hero__subtitle {
  font-size: 0.85rem;
  color: var(--copper);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 40px;
  opacity: 0.8;
}

.hero__ctas {
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 8px;
}

.hero__ctas .btn {
  min-width: 180px;
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--cream-dark);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  opacity: 0.5;
  animation: scrollBounce 2s ease-in-out infinite;
}

.hero__scroll-indicator svg {
  width: 20px;
  height: 20px;
  stroke: var(--cream-dark);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* --- Page Hero (for subpages) --- */
.page-hero {
  position: relative;
  padding: calc(var(--nav-height) + 60px) 5% 60px;
  text-align: center;
  overflow: hidden;
}

.page-hero--has-bg {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-hero--tall {
  min-height: 75vh;
}

.page-hero--tall .page-hero__bg img {
  object-position: center 25%;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.page-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.2) 35%, rgba(0, 0, 0, 0.75) 80%, #000000 100%),
    radial-gradient(ellipse at center, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.4) 100%);
  z-index: 1;
}

.page-hero--has-bg {
  margin-bottom: -1px;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 70% at 50% 30%,
    rgba(214, 58, 47, 0.08) 0%,
    transparent 70%
  );
}

.page-hero__title {
  position: relative;
  z-index: 2;
  font-size: clamp(2.5rem, 6vw, 5rem);
  margin-bottom: 16px;
}

.page-hero__subtitle {
  position: relative;
  z-index: 2;
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  color: var(--cream-dark);
  max-width: 600px;
  margin: 0 auto;
}

.page-hero__label {
  position: relative;
  z-index: 2;
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 18px;
  padding: 6px 18px;
  border: 1px solid rgba(214, 58, 47, 0.4);
  border-radius: 40px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* --- Pickup Page --- */
.logo-pair {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.logo-pair__item {
  height: 90px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  opacity: 0.95;
}

.logo-pair__item--wide {
  max-width: 240px;
}

.logo-pair__plus {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--copper);
  line-height: 1;
}

.pickup-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.pickup-intro__title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 24px;
}

.pickup-intro p {
  max-width: none;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.7;
}

.pickup-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}

.pickup-feature {
  padding: 40px 28px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(214, 58, 47, 0.15);
  border-radius: 12px;
  text-align: center;
  transition: transform 0.5s ease, border-color 0.5s ease;
}

.pickup-feature:hover {
  transform: translateY(-6px);
  border-color: rgba(214, 58, 47, 0.4);
}

.pickup-feature__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  display: block;
  color: var(--copper);
  stroke: currentColor;
  filter: drop-shadow(0 4px 14px rgba(214, 58, 47, 0.3));
}

.pickup-feature h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: var(--cream);
}

.pickup-feature p {
  font-size: 0.95rem;
  color: var(--cream-dark);
  margin: 0 auto;
  max-width: 280px;
}

.pickup-showcase {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  aspect-ratio: 4 / 3;
  max-height: 640px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
}

.pickup-showcase::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  box-shadow: inset 0 0 0 1px rgba(214, 58, 47, 0.25);
  pointer-events: none;
  z-index: 2;
}

.pickup-showcase img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 8s ease;
}

.pickup-showcase:hover img {
  transform: scale(1.04);
}

.pickup-showcase__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 60px 32px 24px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  color: var(--cream);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  text-align: center;
  z-index: 1;
}

/* --- Location Page --- */
.location-hero .location-hero__img {
  animation: locationHeroZoom 24s ease-out forwards;
  transform-origin: center center;
}

@keyframes locationHeroZoom {
  from { transform: scale(1.02); }
  to { transform: scale(1.18); }
}

.location-hero .page-hero__bg::after {
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.15) 35%, rgba(0, 0, 0, 0.7) 80%, #000000 100%),
    radial-gradient(ellipse at center, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.35) 100%);
}

.about-hero .page-hero__bg::after {
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.2) 35%, rgba(0, 0, 0, 0.7) 80%, #000000 100%),
    radial-gradient(ellipse at center, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.4) 100%);
}

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

.location-card {
  padding: 40px 32px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(214, 58, 47, 0.18);
  border-radius: 12px;
  transition: border-color 0.4s ease, transform 0.4s ease;
}

.location-card:hover {
  border-color: rgba(214, 58, 47, 0.45);
  transform: translateY(-4px);
}

.location-card--hours {
  background: linear-gradient(160deg, rgba(214, 58, 47, 0.08), rgba(255, 255, 255, 0.02));
}

.location-card__label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 16px;
}

.location-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 1.9rem);
  margin-bottom: 20px;
  color: var(--cream);
}

.location-card__text {
  color: var(--cream-dark);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.location-card__btn {
  margin-top: 8px;
}

.hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid rgba(242, 230, 213, 0.08);
  font-size: 1rem;
}

.hours-list li:last-child {
  border-bottom: none;
}

.hours-list__day {
  font-family: var(--font-body);
  color: var(--cream-dark);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hours-list__time {
  font-family: var(--font-display);
  color: var(--cream);
  font-size: 1.05rem;
}

.hours-list__time--closed {
  color: var(--copper);
  font-style: italic;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-list li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(242, 230, 213, 0.08);
}

.contact-list li:last-child {
  border-bottom: none;
}

.contact-list a {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--cream);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-list a:hover {
  color: var(--copper);
}

.veil-badge-row {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(214, 58, 47, 0.2);
  flex-wrap: wrap;
}

.veil-badge-row__logo {
  height: 56px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  opacity: 0.95;
}

.veil-badge-row__plus {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--copper);
}

.map-embed {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(214, 58, 47, 0.25);
}

.map-embed iframe {
  display: block;
  filter: grayscale(40%) contrast(1.05);
}

.directions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}

.direction-card {
  padding: 36px 28px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(214, 58, 47, 0.15);
  border-radius: 12px;
  text-align: center;
  transition: transform 0.4s ease, border-color 0.4s ease;
}

.direction-card:hover {
  transform: translateY(-4px);
  border-color: rgba(214, 58, 47, 0.4);
}

.direction-card__icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 18px;
  display: block;
  color: var(--copper);
  filter: drop-shadow(0 4px 12px rgba(214, 58, 47, 0.3));
}

.direction-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--cream);
}

.direction-card p {
  font-size: 0.95rem;
  color: var(--cream-dark);
  margin: 0 auto;
  max-width: 280px;
}

@media (max-width: 968px) {
  .location-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .directions-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .map-embed iframe {
    height: 360px;
  }
}

@media (max-width: 768px) {
  .pickup-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .logo-pair {
    gap: 24px;
  }

  .logo-pair__item {
    height: 70px;
  }

  .pickup-showcase {
    aspect-ratio: 3 / 4;
  }
}

/* --- Scrolling Marquee --- */
.marquee {
  overflow: hidden;
  background: var(--charcoal-light);
  border-top: 1px solid rgba(242, 230, 213, 0.06);
  border-bottom: 1px solid rgba(242, 230, 213, 0.06);
  padding: 16px 0;
  position: relative;
}

/* Clickable marquee variant (e.g. events CTA) */
a.marquee--link {
  display: block;
  text-decoration: none;
  background: linear-gradient(90deg, #0a0a0a 0%, #1a0805 50%, #0a0a0a 100%);
  border-top: 1px solid rgba(214, 58, 47, 0.35);
  border-bottom: 1px solid rgba(214, 58, 47, 0.35);
  padding: 22px 0;
  cursor: pointer;
  transition: background 0.4s ease, border-color 0.4s ease;
}

a.marquee--link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(214, 58, 47, 0.1) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

a.marquee--link:hover {
  background: linear-gradient(90deg, #0a0a0a 0%, #2a0d08 50%, #0a0a0a 100%);
  border-color: rgba(214, 58, 47, 0.6);
}

a.marquee--link:hover::before {
  opacity: 1;
}

a.marquee--link:hover .marquee__track {
  animation-duration: 18s;
}

a.marquee--link .marquee__item {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.05rem, 1.8vw, 1.4rem);
  transition: color 0.3s ease;
}

a.marquee--link:hover .marquee__item {
  color: var(--copper-glow);
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}

.marquee__track:hover {
  animation-play-state: paused;
}

.marquee__content {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
  padding-right: 0;
}

.marquee__item {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--cream);
  white-space: nowrap;
  padding: 0 16px;
}

.marquee__separator {
  color: var(--copper);
  font-size: 0.8rem;
  padding: 0 8px;
  flex-shrink: 0;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- Section Spacing --- */
.section {
  padding: var(--section-pad) 5%;
  position: relative;
}

.section--dark {
  background: var(--charcoal-light);
}

.section--copper {
  background: var(--copper);
  color: var(--charcoal);
}

.section--copper h2,
.section--copper h3,
.section--copper h4 {
  color: var(--charcoal);
}

.section--copper p {
  color: rgba(45, 42, 38, 0.8);
}

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

.section__header h2 {
  margin-bottom: 16px;
}

.section__header p {
  margin: 0 auto;
  font-size: 1.05rem;
}

.section__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--copper);
  margin-bottom: 16px;
}

/* --- Featured Dishes Grid --- */
.dishes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.dish-card {
  background: var(--charcoal-light);
  border-radius: 8px;
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.dish-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.dish-card__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--charcoal-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.dish-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dish-card__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(242, 230, 213, 0.15);
}

.dish-card__placeholder svg {
  width: 48px;
  height: 48px;
  opacity: 0.3;
}

.dish-card__placeholder span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.dish-card__body {
  padding: 24px;
}

.dish-card__name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: 8px;
}

.dish-card__description {
  font-size: 0.9rem;
  color: var(--cream-dark);
  line-height: 1.5;
}

/* --- Two-Column Layout --- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.two-col--reverse {
  direction: rtl;
}

.two-col--reverse > * {
  direction: ltr;
}

.two-col__text {
  max-width: 520px;
}

.two-col__text h2 {
  margin-bottom: 20px;
}

.two-col__text p {
  margin-bottom: 16px;
}

.two-col__text .btn {
  margin-top: 12px;
}

.two-col__image {
  width: 100%;
  aspect-ratio: 4 / 5;
  max-height: 620px;
  background: var(--charcoal-light);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.two-col__image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  box-shadow: inset 0 0 0 1px rgba(214, 58, 47, 0.2);
  pointer-events: none;
}

.two-col__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 6s ease;
}

.two-col__image:hover img {
  transform: scale(1.05);
}

@media (min-width: 768px) {
  .two-col__image {
    aspect-ratio: 4 / 3;
    max-height: 540px;
  }
}

/* --- Info Columns (Location/Hours) --- */
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.info-card {
  padding: 40px 24px;
  border: 1px solid rgba(242, 230, 213, 0.08);
  border-radius: 8px;
  background: rgba(58, 54, 51, 0.4);
}

.info-card__icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 20px;
  color: var(--copper);
}

.info-card__icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--copper);
  fill: none;
  stroke-width: 1.5;
}

.info-card h3 {
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.info-card p {
  font-size: 0.9rem;
  color: var(--cream-dark);
  margin: 0 auto;
  line-height: 1.8;
}

.info-card a {
  color: var(--copper);
}

/* --- Full-Width Banner CTA --- */
.banner-cta {
  padding: var(--section-pad) 5%;
  text-align: center;
  background: var(--charcoal-light);
  position: relative;
  overflow: hidden;
}

.banner-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 80% at 50% 50%,
    rgba(214, 58, 47, 0.06) 0%,
    transparent 70%
  );
}

.banner-cta__content {
  position: relative;
  z-index: 1;
}

.banner-cta h2 {
  margin-bottom: 16px;
}

.banner-cta p {
  margin: 0 auto 32px;
  font-size: 1.05rem;
}

/* --- Gallery Preview Grid --- */
.gallery-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-preview__item {
  aspect-ratio: 1;
  background: var(--charcoal-light);
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-base);
}

.gallery-preview__item:hover {
  transform: scale(1.02);
}

.gallery-preview__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- Menu Page Styles --- */
.menu-section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(242, 230, 213, 0.06);
}

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

.menu-section__header {
  margin-bottom: 40px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--copper);
  display: inline-block;
}

.menu-section__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--cream);
}

.menu-section__note {
  font-size: 0.85rem;
  color: var(--cream-dark);
  font-style: italic;
  margin-top: 8px;
}

.menu-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}

.menu-item {
  padding: 28px;
  background: var(--charcoal-light);
  border-radius: 8px;
  border: 1px solid rgba(242, 230, 213, 0.04);
  transition: border-color var(--transition-base), transform var(--transition-base);
}

.menu-item:hover {
  border-color: rgba(214, 58, 47, 0.2);
  transform: translateY(-2px);
}

.menu-item__name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--cream);
  margin-bottom: 8px;
}

.menu-item__variant {
  font-size: 0.8rem;
  color: var(--copper);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.menu-item__description {
  font-size: 0.9rem;
  color: var(--cream-dark);
  line-height: 1.5;
}

.menu-photo-break {
  width: 100%;
  aspect-ratio: 16 / 10;
  max-height: 560px;
  background: var(--charcoal-light);
  border-radius: 12px;
  margin: 56px auto;
  overflow: hidden;
  position: relative;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

.menu-photo-break::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  box-shadow: inset 0 0 0 1px rgba(214, 58, 47, 0.2);
  z-index: 2;
  pointer-events: none;
}

.menu-photo-break::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    transparent 55%,
    rgba(0, 0, 0, 0.55) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.menu-photo-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 8s ease;
}

.menu-photo-break:hover img {
  transform: scale(1.04);
}

@media (max-width: 768px) {
  .menu-photo-break {
    aspect-ratio: 4 / 5;
    max-height: 520px;
    margin: 40px auto;
  }
}

/* Sticky Order CTA */
.menu-sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition-base);
  pointer-events: none;
}

.menu-sticky-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.menu-sticky-cta .btn {
  box-shadow: 0 8px 32px rgba(214, 58, 47, 0.4);
}

/* --- About Page --- */
.about-story {
  max-width: 800px;
  margin: 0 auto;
}

.about-story p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

.pullquote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-style: italic;
  color: var(--copper);
  text-align: center;
  padding: 60px 40px;
  border-top: 1px solid rgba(214, 58, 47, 0.2);
  border-bottom: 1px solid rgba(214, 58, 47, 0.2);
  margin: 60px 0;
  line-height: 1.4;
}

.brand-symbols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
  margin-top: 60px;
}

.brand-symbol {
  padding: 48px 24px;
  text-align: center;
  transition: transform 0.5s ease;
}

.brand-symbol:hover {
  transform: translateY(-6px);
}

.brand-symbol__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  display: block;
  color: var(--copper);
  stroke: currentColor;
  filter: drop-shadow(0 4px 18px rgba(214, 58, 47, 0.25));
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), filter 0.4s ease;
}

.brand-symbol:hover .brand-symbol__icon {
  transform: scale(1.08) rotate(-2deg);
  filter: drop-shadow(0 6px 26px rgba(214, 58, 47, 0.45));
}

.brand-symbol h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--copper);
}

.brand-symbol p {
  font-size: 0.9rem;
  color: var(--cream-dark);
  margin: 0 auto;
}

/* --- Gallery Page --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.gallery-grid--masonry {
  columns: 3;
  column-gap: 16px;
}

/* Drawer-in gallery animation — items slide in from all sides on page load */
.gallery-grid--drawer-in .gallery-item {
  opacity: 0;
  will-change: transform, opacity;
  animation: galleryDrawerIn 0.95s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.gallery-grid--drawer-in .gallery-item:nth-child(4n+1) { --gi-tx: -60vw; --gi-ty: 0; }
.gallery-grid--drawer-in .gallery-item:nth-child(4n+2) { --gi-tx: 60vw;  --gi-ty: 0; }
.gallery-grid--drawer-in .gallery-item:nth-child(4n+3) { --gi-tx: 0;     --gi-ty: -50vh; }
.gallery-grid--drawer-in .gallery-item:nth-child(4n+4) { --gi-tx: 0;     --gi-ty: 50vh; }

.gallery-grid--drawer-in .gallery-item:nth-child(1)  { animation-delay: 0.05s; }
.gallery-grid--drawer-in .gallery-item:nth-child(2)  { animation-delay: 0.13s; }
.gallery-grid--drawer-in .gallery-item:nth-child(3)  { animation-delay: 0.21s; }
.gallery-grid--drawer-in .gallery-item:nth-child(4)  { animation-delay: 0.29s; }
.gallery-grid--drawer-in .gallery-item:nth-child(5)  { animation-delay: 0.37s; }
.gallery-grid--drawer-in .gallery-item:nth-child(6)  { animation-delay: 0.45s; }
.gallery-grid--drawer-in .gallery-item:nth-child(7)  { animation-delay: 0.53s; }
.gallery-grid--drawer-in .gallery-item:nth-child(8)  { animation-delay: 0.61s; }
.gallery-grid--drawer-in .gallery-item:nth-child(9)  { animation-delay: 0.69s; }
.gallery-grid--drawer-in .gallery-item:nth-child(10) { animation-delay: 0.77s; }
.gallery-grid--drawer-in .gallery-item:nth-child(11) { animation-delay: 0.85s; }
.gallery-grid--drawer-in .gallery-item:nth-child(12) { animation-delay: 0.93s; }

@keyframes galleryDrawerIn {
  0% {
    opacity: 0;
    transform: translate(var(--gi-tx, -60vw), var(--gi-ty, 0)) scale(0.96);
  }
  55% { opacity: 1; }
  100% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .gallery-grid--drawer-in .gallery-item {
    animation: none;
    opacity: 1;
  }
}

.gallery-item {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  background: var(--charcoal-light);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  break-inside: avoid;
  margin-bottom: 16px;
  transition: transform var(--transition-base);
}

.gallery-item:nth-child(3n+1) { aspect-ratio: 4/3; }
.gallery-item:nth-child(3n+2) { aspect-ratio: 1; }
.gallery-item:nth-child(3n+3) { aspect-ratio: 3/4; }

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(45, 42, 38, 0.8), transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.gallery-item:hover .gallery-item__overlay {
  opacity: 1;
}

.gallery-item__overlay span {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--cream);
}

/* --- Events Page --- */
.event-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.event-feature {
  padding: 32px;
  background: var(--charcoal-light);
  border-radius: 8px;
  border: 1px solid rgba(242, 230, 213, 0.06);
  text-align: center;
}

.event-feature__icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
}

.event-feature h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.event-feature p {
  font-size: 0.9rem;
  color: var(--cream-dark);
  margin: 0 auto;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cream);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--cream);
  background: var(--charcoal-light);
  border: 1px solid rgba(242, 230, 213, 0.12);
  border-radius: 6px;
  outline: none;
  transition: border-color var(--transition-base);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--copper);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* --- Footer --- */
.footer {
  background: var(--charcoal-light);
  border-top: 1px solid rgba(242, 230, 213, 0.06);
  padding: 60px 5% 32px;
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer__brand {
  max-width: 300px;
}

.footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 16px;
  text-decoration: none;
}

.footer__logo a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.footer__logo img {
  height: 52px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  opacity: 0.95;
  transition: opacity 0.3s ease;
}

.footer__logo > a:first-child img {
  height: 76px;
  max-width: 150px;
}

.footer__logo a:hover img {
  opacity: 1;
}

.footer__logo-x {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--copper);
  line-height: 1;
  font-style: italic;
}

.footer__veil-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--copper);
  margin-bottom: 16px;
  padding: 6px 12px;
  border: 1px solid rgba(214, 58, 47, 0.3);
  border-radius: 4px;
}

.footer__description {
  font-size: 0.85rem;
  color: var(--cream-dark);
  line-height: 1.6;
}

.footer__col h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cream);
  margin-bottom: 20px;
}

.footer__col ul {
  list-style: none;
}

.footer__col li {
  margin-bottom: 10px;
}

.footer__col a {
  font-size: 0.9rem;
  color: var(--cream-dark);
  transition: color var(--transition-base);
}

.footer__col a:hover {
  color: var(--copper);
}

.footer__social {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}

.footer__social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(242, 230, 213, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
}

.footer__social a:hover {
  background: var(--copper);
  border-color: var(--copper);
}

.footer__social svg {
  width: 18px;
  height: 18px;
  fill: var(--cream);
}

.footer__bottom {
  border-top: 1px solid rgba(242, 230, 213, 0.06);
  padding-top: 24px;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(232, 213, 189, 0.5);
}

/* --- Scroll Animations --- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
}

/* Staggered children */
.stagger-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0.1s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.2s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.3s; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.4s; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.5s; }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.6s; }

.stagger-children.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .two-col--reverse {
    direction: ltr;
  }

  .info-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .brand-symbols {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .gallery-grid--masonry {
    columns: 2;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 116px;
  }

  .nav__links {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  .nav__logo-img {
    height: 104px;
  }
  }

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

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

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

  .footer__top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .gallery-grid--masonry {
    columns: 2;
    column-gap: 12px;
  }

  .gallery-item {
    margin-bottom: 12px;
    border-radius: 8px;
  }

  .gallery-item:nth-child(3n+1),
  .gallery-item:nth-child(3n+2),
  .gallery-item:nth-child(3n+3) {
    aspect-ratio: 3/4;
  }

  .menu-sticky-cta {
    bottom: 16px;
    right: 16px;
    left: 16px;
  }

  .menu-sticky-cta .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero__ctas {
    flex-direction: column;
    align-items: center;
  }

  .hero__ctas .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.85rem;
  }
}

/* ============================================================
   SEO Landing Pages — shared components
   ============================================================ */

.seo-content {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--cream-dark);
}

.seo-content p {
  max-width: none;
  margin-bottom: 24px;
}

.seo-content p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 3.4rem;
  float: left;
  line-height: 0.9;
  padding: 6px 12px 0 0;
  color: var(--copper);
}

/* FAQ */
.faq-list {
  max-width: 820px;
  margin: 56px auto 0;
}

.faq-item {
  border-bottom: 1px solid rgba(214, 58, 47, 0.2);
  padding: 24px 0;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  color: var(--cream);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  transition: color 0.3s ease;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--copper);
  transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
  flex-shrink: 0;
  line-height: 1;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item summary:hover {
  color: var(--copper);
}

.faq-item__answer {
  margin-top: 16px;
  color: var(--cream-dark);
  font-size: 1rem;
  line-height: 1.75;
  max-width: none;
}

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}

.review-card {
  padding: 36px 32px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(214, 58, 47, 0.18);
  border-radius: 12px;
  position: relative;
  transition: transform 0.4s ease, border-color 0.4s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(214, 58, 47, 0.4);
}

.review-card__stars {
  color: var(--copper);
  font-size: 1rem;
  letter-spacing: 4px;
  margin-bottom: 16px;
}

.review-card__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.5;
  color: var(--cream);
  margin-bottom: 20px;
}

.review-card__author {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--copper);
}

@media (max-width: 968px) {
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Compact location block (used on SEO pages) */
.location-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding: 48px 36px;
  background: linear-gradient(160deg, rgba(214, 58, 47, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(214, 58, 47, 0.25);
  border-radius: 16px;
  margin-top: 40px;
}

.location-strip__col h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 14px;
}

.location-strip__col p,
.location-strip__col a {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--cream);
  line-height: 1.5;
  text-decoration: none;
}

.location-strip__col a:hover { color: var(--copper); }

.location-strip__col p { color: var(--cream-dark); }

@media (max-width: 768px) {
  .location-strip {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 32px 24px;
  }
}

/* SEO footer link grid */
.footer__seo {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(242, 230, 213, 0.06);
  opacity: 0.55;
  transition: opacity 0.4s ease;
}

.footer__seo:hover {
  opacity: 0.9;
}

.footer__seo h4 {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cream-dark);
  margin-bottom: 14px;
}

.footer__seo-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  font-size: 0.68rem;
  color: var(--cream-dark);
  font-weight: 400;
}

.footer__seo-links a {
  color: var(--cream-dark);
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.3s ease, color 0.3s ease;
}

.footer__seo-links a:hover {
  color: var(--copper);
  opacity: 1;
}

.footer__seo-links span {
  opacity: 0.25;
}
