@font-face {
  font-family: 'MexicanTequila';
  src: url('MexicanTequila.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

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

html { scroll-behavior: smooth; }

body {
  background: #080503;
  color: #e8ddd0;
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── NAVBAR ───────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 80px;
  background: rgba(8,5,3,0.92);
  border-bottom: 1px solid rgba(170,87,23,0.1);
  backdrop-filter: blur(12px);
  transition: all 0.3s ease;
}
.navbar.scrolled {
  height: 64px;
  background: rgba(8,5,3,0.97);
}
.navbar-logo img { height: 52px; width: auto; }
.navbar-links { display: flex; align-items: center; gap: 2.5rem; list-style: none; }
.navbar-links a {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(232,221,208,0.55);
  font-family: 'Inter', sans-serif;
  transition: color 0.2s;
}
.navbar-links a:hover, .navbar-links a.active { color: #e8ddd0; }
.navbar-cta {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.6rem 1.5rem;
  background: #aa5717;
  color: #fff;
  font-family: 'Inter', sans-serif;
  transition: opacity 0.2s;
}
.navbar-cta:hover { opacity: 0.88; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  width: 22px; height: 1.5px;
  background: #e8ddd0;
  transition: all 0.3s;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 80px; left: 0; right: 0;
  background: rgba(8,5,3,0.98);
  padding: 2rem;
  z-index: 99;
  border-bottom: 1px solid rgba(170,87,23,0.12);
}
.mobile-menu.open { display: flex; flex-direction: column; gap: 1.25rem; }
.mobile-menu a {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(232,221,208,0.6);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(170,87,23,0.08);
}
.mobile-menu a:hover { color: #e8ddd0; }

/* ── PAGE HEADER ──────────────────────── */
.page-header {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 130px 0 80px;
  min-height: 360px;
}
.page-header-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.25) saturate(0.8);
}
.page-header-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,5,3,1) 0%, rgba(8,5,3,0.4) 60%, transparent 100%);
}
.page-header-pattern {
  position: absolute; inset: 0;
  background-image: url('bg-pattern.jpg');
  background-size: 600px;
  opacity: 0.05;
  pointer-events: none;
}
.page-header-content {
  position: relative; z-index: 10;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}
.page-header-label {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #aa5717;
  font-family: 'Inter', sans-serif;
  display: block;
  margin-bottom: 1rem;
}
.page-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 8vw, 5rem);
  color: #e8ddd0;
  font-weight: 300;
  line-height: 1;
}
.page-header-sub {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.25rem;
}
.page-header-sub .line { width: 64px; height: 1px; background: #aa5717; flex-shrink: 0; }
.page-header-sub p {
  font-size: 0.875rem;
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  color: rgba(232,221,208,0.5);
}

/* ── UTILITY ──────────────────────────── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 6rem 0; }
.section-sm { padding: 3rem 0; }
.divider-line { height: 1px; background: rgba(170,87,23,0.12); }
.orange-line { width: 64px; height: 1px; background: #aa5717; }
.label {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #aa5717;
  font-family: 'Inter', sans-serif;
  display: block;
  margin-bottom: 1rem;
}
.heading-xl {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: #e8ddd0;
  font-weight: 300;
  line-height: 1.1;
}
.heading-lg {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #e8ddd0;
  font-weight: 300;
  line-height: 1.1;
}
.body-sm {
  font-size: 0.875rem;
  font-family: 'Inter', sans-serif;
  color: rgba(232,221,208,0.5);
  line-height: 2;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: #aa5717;
  color: #fff;
  font-family: 'Inter', sans-serif;
  transition: opacity 0.2s, gap 0.3s;
}
.btn-primary:hover { opacity: 0.9; gap: 1.2rem; }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.8);
  font-family: 'Inter', sans-serif;
  transition: background 0.2s;
}
.btn-outline:hover { background: rgba(255,255,255,0.07); }
.btn-border {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid #aa5717;
  color: #aa5717;
  font-family: 'Inter', sans-serif;
  transition: background 0.2s, gap 0.3s;
}
.btn-border:hover { background: rgba(170,87,23,0.08); gap: 1.2rem; }

/* ── REVEAL ANIMATIONS ────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.from-left { transform: translateX(-30px); }
.reveal.from-right { transform: translateX(30px); }
.reveal.visible { opacity: 1; transform: none; }

/* ── FOOTER ───────────────────────────── */
footer {
  background: #060402;
  border-top: 1px solid rgba(170,87,23,0.1);
  padding: 3rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand img { height: 48px; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.8rem; color: rgba(232,221,208,0.3); line-height: 1.9; max-width: 260px; }
.footer-col h4 {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(232,221,208,0.35);
  font-family: 'Inter', sans-serif;
  margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col a {
  font-size: 0.8rem;
  color: rgba(232,221,208,0.45);
  font-family: 'Inter', sans-serif;
  transition: color 0.2s;
}
.footer-col a:hover { color: #e8ddd0; }
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(170,87,23,0.08);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.7rem; color: rgba(232,221,208,0.22); font-family: 'Inter', sans-serif; }

/* ────── HOME PAGE ────────────────────── */
/* HERO */

.hero {

  position: relative;

  min-height: 100vh;

  display: flex;

  align-items: flex-end;

  overflow: hidden;

}

.hero-bg {
  position: absolute; 
  inset: 0;
  z-index: 3;
  background-image: url('feast-spread.png'); /* Added the missing opening quote */
  background-size: cover;
  background-position: center;
  
  /* These make the text more readable */
  filter: brightness(1.0) saturate(1.0); /* Lowered brightness to 0.6 */
  opacity: 0.9; 
  
  /* Animation settings */
  transform: scale(1.06);
  transition: transform 8s ease;


}

.hero-bg.loaded { transform: scale(1); }

.hero-overlay-vertical {
  position: absolute; inset: 0;
  /* Darkened the top and middle to protect the text area */
  background: linear-gradient(to top, 
    rgba(8,5,3,1) 0%, 
    rgba(8,5,3,0.85) 40%, 
    rgba(8,5,3,0.5) 100%);
  z-index: 3; /* Must be higher than the image (z-index 3) */
}

.hero-overlay-horizontal {
  position: absolute; inset: 0;
  /* This creates a dark "wall" behind the text on the left */
  background: linear-gradient(to right, 
    rgba(8,5,3,0.9) 0%, 
    rgba(8,5,3,0.4) 50%, 
    rgba(8,5,3,0) 100%);
  z-index: 3; /* Must be higher than the image */
}

.hero-pattern {

  position: absolute; inset: 0;z-index: 1;

  background-image: url('bg-pattern.jpg');

  background-size: 800px;

  opacity: 0.4;

  pointer-events: none;

}

.hero-content {

  position: relative; z-index: 15;

  width: 100%;

  max-width: 1280px;

  margin: 0 auto;

  padding: 0 2rem 7rem;

  opacity: 0;

  transform: translateY(24px);

  transition: all 1.2s ease 0.3s;

}

.hero-content.loaded { opacity: 1; transform: none; }

.hero-eyebrow {

  display: flex;

  align-items: center;

  gap: 1rem;

  margin-bottom: 1.25rem;

}

.hero-eyebrow span {
    color: #ff8c00; 
    /* Max weight for the secondary info */
    font-weight: 900; 
    letter-spacing: 0.5em;
    font-size: 0.95rem;
}

.hero-logo {

  height: clamp(60px, 12vw, 130px);

  width: auto;

  margin-bottom: 1.75rem;

  filter: drop-shadow(0 2px 20px rgba(0,0,0,0.9)) drop-shadow(0 4px 32px rgba(170,87,23,0.4));

}

hero-tagline {
    /* This must match the name in your @font-face exactly */
    font-family: 'MexicanTequila'; 
    
    font-size: clamp(3rem, 8vw, 5.5rem); 
    color: #ffffff;
    
    /* Custom decorative fonts usually work best at 400 weight */
    font-weight: 400; 
    line-height: 1.05;
    margin: 1.5rem 0;
    text-transform: uppercase;
    
    /* Keeping your strong shadow for readability */
    text-shadow: 0 10px 30px rgba(0,0,0,0.8), 0 0 10px rgba(0,0,0,0.5);
}

.hero-desc {
    font-size: clamp(1.1rem, 1.5vw, 1.3rem);
    color: #ffffff;
    max-width: 600px;
    line-height: 1.8;
    /* Bumping to 600 makes it readable even on mobile */
    font-weight: 600; 
    text-shadow: 0 2px 10px rgba(0,0,0,1);
}

.hero-btns { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero-scroll {

  position: absolute;

  bottom: 2rem; right: 3rem;

  display: flex;

  flex-direction: column;

  align-items: center;

  gap: 0.5rem;

  opacity: 0.35;

}

.hero-scroll-line { width: 1px; height: 64px; background: white; animation: pulse 2s infinite; }

.hero-scroll span {

  font-size: 0.6rem;

  letter-spacing: 0.2em;

  text-transform: uppercase;

  color: white;

  writing-mode: vertical-rl;

  font-family: 'Inter', sans-serif;

}

@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }
/* INTRO STRIP */
.intro-strip {
  background: #0e0b08;
  border-top: 1px solid rgba(170,87,23,0.12);
  border-bottom: 1px solid rgba(170,87,23,0.12);
}
.intro-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  divide-x: 1px solid rgba(255,255,255,0.05);
}
.intro-strip-item {
  text-align: center;
  padding: 1.5rem 2rem;
  border-right: 1px solid rgba(255,255,255,0.05);
}
.intro-strip-item:last-child { border-right: none; }
.intro-strip-item .title {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #aa5717;
  font-family: 'Inter', sans-serif;
  margin-bottom: 0.25rem;
}
.intro-strip-item .sub { font-size: 0.75rem; color: rgba(232,221,208,0.35); font-family: 'Inter', sans-serif; }

/* FEATURED DISHES */
.featured-dishes { background: #080503; position: relative; overflow: hidden; }
.featured-dishes-pattern {
  position: absolute; inset: 0;
  background-image: url('bg-pattern.jpg');
  background-size: 700px;
  opacity: 0.04;
  pointer-events: none;
}
.dishes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.dish-card {
  background: #0e0b08;
  border: 1px solid rgba(170,87,23,0.12);
  overflow: hidden;
  transition: transform 0.4s ease;
}
.dish-card:hover { transform: translateY(-8px); }
.dish-card-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.dish-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.dish-card:hover .dish-card-img img { transform: scale(1.05); }
.dish-card-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,5,3,0.75) 0%, transparent 60%);
}
.dish-tag {
  position: absolute;
  top: 1rem; left: 1rem;
  padding: 0.3rem 0.75rem;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: #aa5717;
  color: #fff;
  font-family: 'Inter', sans-serif;
}
.dish-tag.green { background: #2f692f; }
.dish-card-body { padding: 1.5rem 1.75rem; }
.dish-card-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  color: #e8ddd0;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.dish-card-body p { font-size: 0.75rem; color: rgba(232,221,208,0.45); font-family: 'Inter', sans-serif; line-height: 1.9; margin-bottom: 1.25rem; }
.dish-card-footer { display: flex; align-items: center; gap: 1rem; }
.dish-card-footer .price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  color: #aa5717;
  font-weight: 500;
}
.dish-card-footer .divider { flex: 1; height: 1px; background: rgba(170,87,23,0.18); }

/* BRAND STORY */
.brand-story { background: #0a0704; position: relative; overflow: hidden; }
.brand-story-pattern {
  position: absolute; inset: 0;
  background-image: url('bg-pattern.jpg');
  background-size: 700px;
  opacity: 0.05;
  pointer-events: none;
}
.brand-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  align-items: center;
}
.brand-story-img { position: relative; }
.brand-story-img img { width: 100%; aspect-ratio: 4/5; object-fit: cover; filter: brightness(0.85) contrast(1.05); }
.brand-story-badge {
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  width: 160px; height: 160px;
  background: #aa5717;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}
.brand-story-badge p:first-child { font-family: 'Cormorant Garamond', serif; color: #fff; font-size: 1.1rem; font-weight: 300; }
.brand-story-badge p:last-child { font-family: 'Cinzel', serif; color: #fff; font-size: 2rem; font-weight: 600; }
.brand-story-text p { font-size: 0.875rem; color: rgba(232,221,208,0.55); font-family: 'Inter', sans-serif; line-height: 2; margin-bottom: 1.25rem; }
.brand-story-quote { display: flex; align-items: center; gap: 1rem; margin-bottom: 2.5rem; }
.brand-story-quote .line { width: 48px; height: 1px; background: rgba(170,87,23,0.5); }
.brand-story-quote span { font-family: 'Cormorant Garamond', serif; font-style: italic; color: #aa5717; }

/* CRAFT / PROCESS */
.craft { background: #080503; position: relative; overflow: hidden; }
.craft-pattern {
  position: absolute; inset: 0;
  background-image: url('bg-pattern.jpg');
  background-size: 700px;
  opacity: 0.04;
  pointer-events: none;
}
.craft-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}
.craft-steps { display: flex; flex-direction: column; gap: 2.5rem; }
.craft-step { display: flex; gap: 1.5rem; }
.craft-step-number { font-family: 'Cormorant Garamond', serif; font-size: 3rem; color: rgba(170,87,23,0.25); font-weight: 300; line-height: 1; flex-shrink: 0; }
.craft-step-content { padding-top: 0.5rem; }
.craft-step-content h3 { font-family: 'Cinzel', serif; font-size: 0.85rem; letter-spacing: 0.12em; color: #e8ddd0; margin-bottom: 0.75rem; }
.craft-step-content p { font-size: 0.875rem; color: rgba(232,221,208,0.5); font-family: 'Inter', sans-serif; line-height: 2; }
.craft-divider { height: 1px; background: rgba(170,87,23,0.1); margin-left: 4.5rem; margin-top: 2.5rem; }
.craft-images { display: flex; flex-direction: column; gap: 1.25rem; }
.craft-images-main img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.craft-images-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.craft-images-pair img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }

/* CUISINE HIGHLIGHTS */
.cuisine { background: #0a0704; position: relative; overflow: hidden; }
.cuisine-pattern {
  position: absolute; inset: 0;
  background-image: url('bg-pattern.jpg');
  background-size: 700px;
  opacity: 0.05;
  pointer-events: none;
}
.cuisine-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border: 1px solid rgba(170,87,23,0.1);
  margin-top: -1px;
}
.cuisine-item:first-child { margin-top: 0; }
.cuisine-item-img {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  aspect-ratio: 16/9;
}
.cuisine-item-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.cuisine-item:hover .cuisine-item-img img { transform: scale(1.05); }
.cuisine-item-body { display: flex; flex-direction: column; justify-content: center; padding: 4rem; background: #0e0b08; }
.cuisine-item-body h3 { font-family: 'Cormorant Garamond', serif; font-size: 2rem; color: #e8ddd0; font-weight: 300; margin-bottom: 1.25rem; }
.cuisine-item-body p { font-size: 0.875rem; color: rgba(232,221,208,0.5); font-family: 'Inter', sans-serif; line-height: 2; }
.cuisine-item.reverse .cuisine-item-img { order: 2; }
.cuisine-item.reverse .cuisine-item-body { order: 1; }

/* BEHIND THE SCENES */
.bts { background: #080503; position: relative; overflow: hidden; }
.bts-pattern {
  position: absolute; inset: 0;
  background-image: url('bg-pattern.jpg');
  background-size: 700px;
  opacity: 0.04;
  pointer-events: none;
}
.bts-header { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 1.5rem; margin-bottom: 1.5rem; }
.bts-header-desc { max-width: 300px; font-size: 0.875rem; color: rgba(232,221,208,0.4); font-family: 'Inter', sans-serif; line-height: 2; }
.bts-divider { height: 1px; background: linear-gradient(90deg, rgba(170,87,23,0.4), transparent); margin-bottom: 1rem; }
.bts-feature {
  position: relative;
  overflow: hidden;
  aspect-ratio: 21/9;
  margin-bottom: 1rem;
  cursor: pointer;
}
.bts-feature img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s ease; }
.bts-feature:hover img { transform: scale(1.04); }
.bts-feature-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,5,3,0.6) 0%, transparent 50%);
}
.bts-feature-caption {
  position: absolute;
  bottom: 1.5rem; left: 1.75rem;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(232,221,208,0.6);
  font-family: 'Inter', sans-serif;
}
.bts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.bts-card {
  border: 1px solid rgba(170,87,23,0.1);
  overflow: hidden;
}
.bts-card-img { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.bts-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.bts-card:hover .bts-card-img img { transform: scale(1.06); }
.bts-card-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,5,3,0.7) 0%, transparent 55%);
}
.bts-card-body { padding: 1.5rem; background: #0e0b08; }
.bts-card-label { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; }
.bts-card-label .line { width: 24px; height: 1px; background: #aa5717; }
.bts-card-label span { font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; color: #aa5717; font-family: 'Inter', sans-serif; }
.bts-card-body p { font-size: 0.8rem; color: rgba(232,221,208,0.5); font-family: 'Inter', sans-serif; line-height: 1.9; }

/* TESTIMONIALS */
.testimonials { background: #0a0704; position: relative; overflow: hidden; border-top: 1px solid rgba(170,87,23,0.08); }
.testimonials-pattern {
  position: absolute; inset: 0;
  background-image: url('bg-pattern.jpg');
  background-size: 700px;
  opacity: 0.05;
  pointer-events: none;
}
.testimonials-inner { max-width: 720px; margin: 0 auto; text-align: center; }
.testimonial-quote-mark { font-family: 'Cormorant Garamond', serif; font-size: 4rem; color: rgba(170,87,23,0.3); line-height: 1; margin-bottom: 1.5rem; }
.testimonial-slide { display: none; }
.testimonial-slide.active { display: block; }
.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  color: #e8ddd0;
  font-style: italic;
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 2rem;
}
.testimonial-divider { width: 48px; height: 1px; background: #aa5717; opacity: 0.5; margin: 0 auto 1.25rem; }
.testimonial-author { font-size: 0.875rem; color: #e8ddd0; font-family: 'Inter', sans-serif; margin-bottom: 0.25rem; }
.testimonial-context { font-size: 0.7rem; letter-spacing: 0.1em; color: rgba(232,221,208,0.35); font-family: 'Inter', sans-serif; }
.testimonial-dots { display: flex; justify-content: center; gap: 0.75rem; margin-top: 2rem; }
.testimonial-dot { height: 2px; background: rgba(170,87,23,0.25); border: none; cursor: pointer; transition: all 0.3s; width: 8px; }
.testimonial-dot.active { background: #aa5717; width: 28px; }

/* FOUR PILLARS */
.pillars { background: #080503; position: relative; overflow: hidden; }
.pillars-pattern {
  position: absolute; inset: 0;
  background-image: url('bg-pattern.jpg');
  background-size: 700px;
  opacity: 0.04;
  pointer-events: none;
}
.pillars-header { display: grid; grid-template-columns: 2fr 1fr; gap: 2.5rem; align-items: flex-end; margin-bottom: 4rem; }
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  outline: 1px solid rgba(170,87,23,0.1);
}
.pillar {
  padding: 3rem;
  border-right: 1px solid rgba(170,87,23,0.1);
  transition: background 0.3s;
  position: relative;
}
.pillar:last-child { border-right: none; }
.pillar:hover { background: #100c08; }
.pillar-num { font-family: 'Cormorant Garamond', serif; font-size: 3.5rem; color: rgba(170,87,23,0.22); font-weight: 300; margin-bottom: 1.5rem; }
.pillar h3 { font-family: 'Cinzel', serif; font-size: 0.85rem; letter-spacing: 0.14em; color: #e8ddd0; margin-bottom: 1rem; }
.pillar p { font-size: 0.75rem; color: rgba(232,221,208,0.38); font-family: 'Inter', sans-serif; line-height: 2; }

/* VISIT CTA */
.visit-cta { position: relative; overflow: hidden; min-height: 420px; display: flex; align-items: center; }
.visit-cta-bg {
  position: absolute; inset: 0;
  background-image: url('restaurant-interior.png');
  background-size: cover;
  background-position: center;
  filter: brightness(0.3) saturate(0.7);
}
.visit-cta-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(170,87,23,0.5) 0%, rgba(8,5,3,0.6) 100%);
}
.visit-cta-pattern {
  position: absolute; inset: 0;
  background-image: url('bg-pattern.jpg');
  background-size: 600px;
  opacity: 0.07;
  pointer-events: none;
}
.visit-cta-content { position: relative; z-index: 10; }
.visit-cta-content .label { color: rgba(255,255,255,0.5); }
.visit-cta-content h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 5vw, 3.5rem); color: #fff; font-weight: 300; line-height: 1.1; margin-bottom: 1rem; max-width: 520px; }
.visit-cta-content p { font-size: 0.875rem; color: rgba(255,255,255,0.55); font-family: 'Inter', sans-serif; line-height: 2; max-width: 400px; margin-bottom: 2.5rem; }
.visit-cta-btns { display: flex; flex-wrap: wrap; gap: 1rem; }
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: #fff;
  color: #aa5717;
  font-family: 'Inter', sans-serif;
  transition: opacity 0.2s, gap 0.3s;
}
.btn-white:hover { opacity: 0.9; gap: 1.2rem; }

/* FINAL CTA STRIP */
.cta-strip {
  background: #aa5717;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.cta-strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2.5rem 2rem;
}
.cta-strip-text p:first-child { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; color: #fff; font-weight: 300; }
.cta-strip-text p:last-child { font-size: 0.7rem; color: rgba(255,255,255,0.6); font-family: 'Inter', sans-serif; margin-top: 0.2rem; }
.cta-strip-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-white-sm {
  padding: 0.75rem 1.75rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: #fff;
  color: #aa5717;
  font-family: 'Inter', sans-serif;
  transition: opacity 0.2s;
}
.btn-white-sm:hover { opacity: 0.9; }
.btn-outline-white-sm {
  padding: 0.75rem 1.75rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.5);
  color: #fff;
  font-family: 'Inter', sans-serif;
  transition: background 0.2s;
}
.btn-outline-white-sm:hover { background: rgba(255,255,255,0.1); }

/* ────── MENU PAGE ────────────────────── */
.menu-section { padding: 4rem 0 6rem; }
.menu-section-alt { background: #0a0704; }
.section-divider {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}
.section-divider .line { flex: 1; height: 1px; background: rgba(170,87,23,0.12); }
.section-divider span {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  padding: 0 1.5rem;
}
.menu-items { display: flex; flex-direction: column; gap: 1.5rem; }
.menu-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  background: #0e0b08;
  border: 1px solid rgba(170,87,23,0.12);
}
.menu-item-img {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  aspect-ratio: 4/3;
}
.menu-item-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.menu-item:hover .menu-item-img img { transform: scale(1.05); }
.menu-item-img-overlay {
  position: absolute; inset: 0;
}
.menu-item-body {
  display: flex; flex-direction: column; justify-content: center;
  padding: 2rem 3rem;
}
.menu-item.reverse .menu-item-img { order: 2; }
.menu-item.reverse .menu-item-body { order: 1; }
.menu-item-body h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.75rem; color: #e8ddd0; font-weight: 400; margin-bottom: 0.75rem; }
.menu-item-body .desc { font-size: 0.875rem; color: rgba(232,221,208,0.55); font-family: 'Inter', sans-serif; line-height: 2; margin-bottom: 1.5rem; }
.menu-item-options { margin-bottom: 1.5rem; }
.menu-item-options .opt-label { font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; color: #aa5717; font-family: 'Inter', sans-serif; display: block; margin-bottom: 0.75rem; }
.opt-pills { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.opt-pill { padding: 0.4rem 1rem; font-size: 0.7rem; letter-spacing: 0.1em; border: 1px solid rgba(170,87,23,0.35); color: rgba(232,221,208,0.7); font-family: 'Inter', sans-serif; }
.menu-item-price { display: flex; align-items: center; gap: 1rem; margin-bottom: 0.5rem; }
.menu-item-price .price { font-family: 'Cormorant Garamond', serif; font-size: 2rem; color: #aa5717; font-weight: 400; }
.menu-item-price .line { flex: 1; height: 1px; background: rgba(170,87,23,0.15); }
.menu-item-notes { font-size: 0.8rem; font-style: italic; color: rgba(232,221,208,0.3); font-family: 'Cormorant Garamond', serif; }
.sides-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; max-width: 900px; margin: 0 auto; }
.side-card { background: #0e0b08; border: 1px solid rgba(170,87,23,0.12); overflow: hidden; }
.side-card-img { aspect-ratio: 16/9; overflow: hidden; position: relative; }
.side-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.side-card:hover .side-card-img img { transform: scale(1.05); }
.side-card-placeholder {
  aspect-ratio: 16/9;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(170,87,23,0.08), rgba(47,105,47,0.05));
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  color: rgba(170,87,23,0.2);
}
.side-card-body { padding: 1.5rem; }
.side-card-body h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; color: #e8ddd0; font-weight: 400; margin-bottom: 0.75rem; }
.side-card-price { display: flex; align-items: center; gap: 0.75rem; }
.side-card-price .price { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: #aa5717; }
.side-card-price .line { flex: 1; height: 1px; background: rgba(170,87,23,0.15); }
.allergen-note { padding: 2.5rem 0; border-top: 1px solid rgba(170,87,23,0.08); }
.allergen-note p { font-size: 0.75rem; color: rgba(232,221,208,0.25); font-family: 'Inter', sans-serif; line-height: 2; max-width: 600px; margin: 0 auto; text-align: center; }

/* ────── LOCATIONS PAGE ───────────────── */
.locations-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.info-section-title { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: #aa5717; font-family: 'Inter', sans-serif; display: block; margin-bottom: 1.25rem; }
.info-block { padding-bottom: 2rem; margin-bottom: 2rem; border-bottom: 1px solid rgba(170,87,23,0.12); }
.info-block:last-child { border-bottom: none; }
.info-block h2 { font-family: 'Cormorant Garamond', serif; font-size: 2rem; color: #e8ddd0; font-weight: 300; margin-bottom: 1rem; }
.address-row { display: flex; align-items: flex-start; gap: 1rem; }
.address-row svg { margin-top: 0.2rem; flex-shrink: 0; }
.address-row p { font-size: 0.875rem; color: rgba(232,221,208,0.65); font-family: 'Inter', sans-serif; line-height: 2; }
.hours-list { display: flex; flex-direction: column; gap: 1rem; }
.hours-row { display: flex; align-items: center; gap: 1rem; }
.hours-row .day { font-size: 0.875rem; color: rgba(232,221,208,0.5); font-family: 'Inter', sans-serif; white-space: nowrap; }
.hours-row .line { flex: 1; height: 1px; background: rgba(170,87,23,0.12); }
.hours-row .time { font-size: 0.875rem; font-weight: 500; color: #e8ddd0; font-family: 'Inter', sans-serif; white-space: nowrap; }
.transport-list { display: flex; flex-direction: column; gap: 1.25rem; }
.transport-item { display: flex; align-items: flex-start; gap: 1rem; }
.transport-icon {
  width: 36px; height: 36px;
  border: 1px solid rgba(170,87,23,0.25);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: #aa5717;
}
.transport-item h4 { font-size: 0.875rem; font-weight: 500; color: #e8ddd0; font-family: 'Inter', sans-serif; margin-bottom: 0.25rem; }
.transport-item p { font-size: 0.75rem; color: rgba(232,221,208,0.45); font-family: 'Inter', sans-serif; line-height: 1.8; }
.map-embed { border: 1px solid rgba(170,87,23,0.15); overflow: hidden; }
.map-embed iframe { display: block; width: 100%; height: 480px; border: 0; filter: invert(90%) hue-rotate(180deg) saturate(0.6) brightness(0.8); }
.locations-quote { margin-top: 1.5rem; padding: 2rem; background: #aa5717; position: relative; overflow: hidden; }
.locations-quote-pattern { position: absolute; inset: 0; background-image: url('bg-pattern.jpg'); background-size: 400px; opacity: 0.07; pointer-events: none; }
.locations-quote p { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; color: #fff; font-style: italic; font-weight: 300; line-height: 1.4; margin-bottom: 0.75rem; position: relative; z-index: 1; }
.locations-quote span { font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.6); font-family: 'Inter', sans-serif; position: relative; z-index: 1; }
.atmosphere-strip { background: #0a0704; border-top: 1px solid rgba(170,87,23,0.08); padding: 5rem 0; text-align: center; }
.atmosphere-strip h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.75rem, 4vw, 3rem); color: #e8ddd0; font-weight: 300; margin-bottom: 1.25rem; }
.atmosphere-strip p { font-size: 0.875rem; color: rgba(232,221,208,0.45); font-family: 'Inter', sans-serif; line-height: 2; max-width: 560px; margin: 0 auto; }

/* ────── CONTACT PAGE ─────────────────── */
.contact-header-bg { background: linear-gradient(135deg, rgba(170,87,23,0.15) 0%, rgba(8,5,3,1) 70%); }
.channels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(170,87,23,0.1);
}
.channel-card {
  background: #0e0b08;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: background 0.3s;
  text-decoration: none;
}
.channel-card:hover { background: #151009; }
.channel-icon {
  width: 48px; height: 48px;
  border: 1px solid rgba(170,87,23,0.25);
  display: flex; align-items: center; justify-content: center;
  color: #aa5717;
  margin-bottom: 1.25rem;
}
.channel-label { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(232,221,208,0.35); font-family: 'Inter', sans-serif; margin-bottom: 0.75rem; }
.channel-value { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: #e8ddd0; margin-bottom: 0.25rem; transition: color 0.3s; }
.channel-card:hover .channel-value { color: #fff; }
.channel-sub { font-size: 0.75rem; color: rgba(232,221,208,0.35); font-family: 'Inter', sans-serif; }
.contact-grid { display: grid; grid-template-columns: 3fr 2fr; gap: 4rem; }
.form-label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(232,221,208,0.4);
  font-family: 'Inter', sans-serif;
  margin-bottom: 0.5rem;
}
.form-input, .form-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(232,221,208,0.1);
  color: #e8ddd0;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  outline: none;
  transition: border-color 0.2s;
}
.form-input:focus, .form-textarea:focus { border-color: #aa5717; }
.form-textarea { resize: none; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.25rem; }
.form-submit { display: flex; justify-content: flex-end; padding-top: 0.5rem; }
.contact-sidebar { display: flex; flex-direction: column; gap: 2rem; }
.sidebar-card { padding: 2rem; background: #0e0b08; border: 1px solid rgba(170,87,23,0.12); }
.sidebar-card .label { margin-bottom: 1rem; }
.sidebar-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: #e8ddd0; font-weight: 300; margin-bottom: 0.75rem; }
.sidebar-card p { font-size: 0.75rem; color: rgba(232,221,208,0.5); font-family: 'Inter', sans-serif; line-height: 2; }
.social-follow { padding: 2rem; border: 1px solid rgba(170,87,23,0.12); }
.social-follow .label { margin-bottom: 1.5rem; }
.social-links { display: flex; gap: 1rem; margin-bottom: 1.25rem; }
.social-link {
  width: 40px; height: 40px;
  border: 1px solid rgba(170,87,23,0.25);
  display: flex; align-items: center; justify-content: center;
  color: rgba(232,221,208,0.5);
  transition: color 0.2s, border-color 0.2s;
}
.social-link:hover { color: #aa5717; border-color: #aa5717; }
.social-note { font-size: 0.75rem; color: rgba(232,221,208,0.3); font-family: 'Inter', sans-serif; line-height: 1.9; }
.success-box { text-align: center; padding: 5rem 2rem; border: 1px solid rgba(170,87,23,0.15); }
.success-icon { width: 64px; height: 64px; background: rgba(170,87,23,0.1); border: 1px solid rgba(170,87,23,0.25); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; }
.success-box h3 { font-family: 'Cormorant Garamond', serif; font-size: 2rem; color: #e8ddd0; font-weight: 300; margin-bottom: 0.75rem; }
.success-box p { font-size: 0.875rem; color: rgba(232,221,208,0.45); font-family: 'Inter', sans-serif; }

/* ────── RESPONSIVE ───────────────────── */
@media (max-width: 1024px) {
  .brand-story-grid, .craft-grid { grid-template-columns: 1fr; gap: 3rem; }
  .brand-story-badge { display: none; }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .pillar { border-bottom: 1px solid rgba(170,87,23,0.1); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .navbar-links, .navbar-cta { display: none; }
  .hamburger { display: flex; }
  .dishes-grid, .bts-grid, .sides-grid, .channels-grid { grid-template-columns: 1fr; }
  .menu-item, .cuisine-item, .locations-grid, .contact-grid { grid-template-columns: 1fr; }
  .menu-item.reverse .menu-item-img, .menu-item.reverse .menu-item-body { order: unset; }
  .cuisine-item.reverse .cuisine-item-img, .cuisine-item.reverse .cuisine-item-body { order: unset; }
  .form-row { grid-template-columns: 1fr; }
  .intro-strip-grid { grid-template-columns: 1fr; }
  .intro-strip-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .pillars-grid { grid-template-columns: 1fr; }
  .pillars-header { grid-template-columns: 1fr; }
  .bts-feature { aspect-ratio: 16/9; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-strip-inner { flex-direction: column; align-items: flex-start; }
  .hero-scroll { display: none; }
}
@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .section { padding: 4rem 0; }
  .hero-content { padding: 0 1.25rem 5rem; }
}
