/* =============================================
   SISTA SANDO — Bold Restaurant Design
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

/* === VARIABLES === */
:root {
  --cream:    #FDF6EE;
  --cream-d:  #F5EBDD;
  --navy:     #1B2D45;
  --navy-l:   #2E4A6E;
  --gold:     #C8A96E;
  --gold-l:   #E2C992;
  --text:     #1B2D45;
  --text-l:   #5A6A7E;
  --white:    #FFFFFF;
  --green:    #25D366;
  --green-h:  #1ead53;
  --navbar-h: 72px;
  --radius:   14px;
  --trans:    300ms cubic-bezier(0.4, 0, 0.2, 1);
  --max-w:    1200px;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--cream);
  color: var(--text);
  padding-top: var(--navbar-h);
  overflow-x: hidden;
}
img { display: block; width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; }

/* === ACCESSIBILITY === */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 10000;
  padding: 0.8rem 1.5rem;
  background: var(--navy);
  color: var(--white);
  border-radius: 0 0 8px 8px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
}
*:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
  border-radius: 4px;
}

/* === TYPOGRAPHY === */
h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--navy);
  line-height: 1.15;
}
h1 { font-size: clamp(2.8rem, 7vw, 5rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 700; margin-bottom: 1rem; }
h3 { font-size: 1.2rem; font-weight: 600; }
p  { line-height: 1.7; }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2.2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: all var(--trans);
}
.btn-whatsapp {
  background: #20C45E;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(32, 196, 94, 0.35);
}
.btn-whatsapp:hover {
  background: #1aab50;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(32, 196, 94, 0.45);
}
.btn-whatsapp svg { width: 20px; height: 20px; fill: currentColor; flex-shrink: 0; }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.7);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}
.wa-icon { width: 20px; height: 20px; fill: currentColor; flex-shrink: 0; }

/* =============================================
   NAVBAR — solid, warm, prominent
   ============================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--navbar-h);
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3rem;
  z-index: 1000;
}
.navbar__logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  gap: 0;
  text-decoration: none;
}
.navbar__logo img {
  display: none;
}
.navbar__logo-main {
  font-family: 'Dancing Script', cursive;
  font-size: 2.2rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 1px;
  line-height: 1;
  display: block;
}
.navbar__logo-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-top: 2px;
  display: block;
}
.navbar__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}
.navbar__links a {
  color: rgba(255,255,255,0.75);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: all var(--trans);
  position: relative;
}
.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 50%; transform: translateX(-50%);
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--trans);
  border-radius: 2px;
}
.navbar__links a:hover { color: var(--white); }
.navbar__links a:hover::after { width: 100%; }
.navbar__links a.active { color: var(--white); font-weight: 600; }
.navbar__links a.active::after { width: 100%; }
.navbar__links .btn-whatsapp {
  padding: 0.55rem 1.4rem;
  font-size: 0.85rem;
  border-radius: 50px;
}
.navbar__links .btn-whatsapp::after { display: none; }

.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--trans);
  border-radius: 2px;
}
.navbar__mobile {
  display: flex;
  position: fixed;
  top: var(--navbar-h);
  left: 0; right: 0;
  background: var(--navy);
  flex-direction: column;
  padding: 0 2rem;
  z-index: 999;
  max-height: 0;
  overflow: hidden;
  transition: max-height 400ms ease, padding 400ms ease;
}
.navbar__mobile.open {
  max-height: 380px;
  padding: 1rem 2rem 1.5rem;
}
.navbar__mobile a {
  color: rgba(255,255,255,0.8);
  font-weight: 500;
  font-size: 1.1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color var(--trans);
}
.navbar__mobile a:last-child { border-bottom: none; }
.navbar__mobile a:hover { color: var(--gold); }

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
.anim {
  opacity: 0;
  animation: fadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.anim-d1 { animation-delay: 0.1s; }
.anim-d2 { animation-delay: 0.3s; }
.anim-d3 { animation-delay: 0.5s; }
.anim-d4 { animation-delay: 0.7s; }
.anim-d5 { animation-delay: 0.9s; }

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   HOMEPAGE — HERO (full-bleed image background)
   ============================================= */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 18, 30, 0.45) 0%,
    rgba(15, 24, 40, 0.62) 35%,
    rgba(12, 20, 35, 0.78) 70%,
    rgba(10, 16, 28, 0.88) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
/* --- Hero brand logo (center) --- */
.hero__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  margin-bottom: 0.6rem;
}
.hero__brand-main {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(3.5rem, 8vw, 5.5rem);
  font-weight: 700;
  color: #FFFFFF;
  text-shadow: 0 2px 30px rgba(0,0,0,0.4);
  letter-spacing: 2px;
  line-height: 1;
}
.hero__brand-sub {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.75rem, 1.8vw, 1rem);
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 10px;
  text-transform: uppercase;
  margin-top: 4px;
}
.hero__divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 1rem auto 1.2rem;
  border-radius: 2px;
  opacity: 0.7;
}
.hero h1 {
  color: #FAF5ED;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5), 0 4px 40px rgba(0,0,0,0.25);
  margin-bottom: 1rem;
}
.hero__subtitle {
  color: rgba(250,245,237,0.82);
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  font-weight: 400;
  max-width: 520px;
  line-height: 1.8;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
}
.hero__buttons {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: bounce 2s infinite;
}
.hero__scroll::after {
  content: '';
  width: 1px;
  height: 30px;
  background: rgba(255,255,255,0.3);
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* =============================================
   FEATURES STRIP
   ============================================= */
.features-strip {
  background: var(--navy);
  padding: 3.5rem 2rem;
}
.features-strip__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.feature-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}
.feature-item__icon {
  font-size: 2rem;
}
.feature-item__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--gold-l);
  font-weight: 600;
}
.feature-item__desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  max-width: 260px;
}

/* =============================================
   FEATURED / POPULAR SECTION
   ============================================= */
.featured {
  padding: 6rem 2rem;
  background: var(--cream);
}
.featured h2 { text-align: center; margin-bottom: 0.5rem; }
.featured__sub {
  text-align: center;
  color: var(--text-l);
  font-size: 1.05rem;
  margin-bottom: 3rem;
}
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: var(--max-w);
  margin: 0 auto;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--trans);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.card:hover {
  box-shadow: 0 20px 50px rgba(27, 45, 69, 0.15);
  transform: translateY(-8px);
}
.card__img {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}
.card:hover .card__img img { transform: scale(1.08); }
.card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.card__name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--navy);
  font-weight: 700;
}
.card__price {
  color: var(--gold);
  font-size: 0.95rem;
  font-weight: 600;
}
.card__link {
  display: inline-block;
  margin-top: 0.5rem;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.88rem;
  transition: color var(--trans);
}
.card__link:hover { color: var(--green); }

/* =============================================
   CTA BANNER (full-width image band)
   ============================================= */
.cta-banner {
  position: relative;
  padding: 5rem 2rem;
  text-align: center;
  overflow: hidden;
}
.cta-banner__bg {
  position: absolute;
  inset: 0;
}
.cta-banner__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.cta-banner__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(27, 45, 69, 0.8);
}
.cta-banner__content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}
.cta-banner h2 { color: var(--white); margin-bottom: 0.8rem; }
.cta-banner p {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

/* =============================================
   ABOUT PREVIEW (homepage)
   ============================================= */
.about-preview {
  padding: 6rem 2rem;
  background: var(--cream-d);
}
.about-preview__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-preview__img img {
  border-radius: var(--radius);
  object-fit: cover;
  height: 420px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(27,45,69,0.15);
}
.about-preview__text h2 { margin-bottom: 1rem; }
.about-preview__text p {
  color: var(--text-l);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials {
  padding: 5rem 2rem;
  background: var(--cream);
}
.testimonials h2 {
  text-align: center;
  margin-bottom: 0.5rem;
}
.testimonials__sub {
  text-align: center;
  color: var(--text-l);
  margin-bottom: 3rem;
  font-size: 1rem;
}
.testimonials-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(27,45,69,0.06);
  position: relative;
}
.testimonial-card__stars {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
  letter-spacing: 2px;
}
.testimonial-card__text {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
  font-style: italic;
}
.testimonial-card__author {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--navy);
}

/* =============================================
   INSTAGRAM / SOCIAL
   ============================================= */
.social-section {
  padding: 4rem 2rem;
  background: var(--cream-d);
  text-align: center;
}
.social-section h2 {
  margin-bottom: 0.5rem;
}
.social-section__sub {
  color: var(--text-l);
  margin-bottom: 2rem;
  font-size: 1rem;
}
.social-links {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: var(--trans);
}
.social-link--instagram {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: var(--white);
}
.social-link--instagram:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(220,39,67,0.35);
}
.social-link--tiktok {
  background: #000;
  color: var(--white);
}
.social-link--tiktok:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}
.social-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* =============================================
   404 ERROR PAGE
   ============================================= */
.error-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
}
.error-page__code {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1rem;
}
.error-page h1 {
  margin-bottom: 0.8rem;
}
.error-page p {
  color: var(--text-l);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}
.error-page__links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* =============================================
   HOURS BAND & FOOTER
   ============================================= */
.hours-band {
  background: var(--gold);
  color: var(--navy);
  text-align: center;
  padding: 1.2rem 2rem;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.4);
  text-align: center;
  padding: 2.5rem;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
}

/* =============================================
   MENU PAGE
   ============================================= */

/* Menu hero banner */
.menu-hero {
  position: relative;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  margin-bottom: 0;
}
.menu-hero__bg {
  position: absolute;
  inset: 0;
}
.menu-hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.menu-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(27, 45, 69, 0.75);
}
.menu-hero__content {
  position: relative;
  z-index: 1;
}
.menu-hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin-bottom: 0.5rem;
}
.menu-hero p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
}

/* Size info note */
.size-note {
  background: var(--cream-d);
  border-left: 3px solid var(--gold);
  padding: 0.8rem 1.2rem;
  margin-bottom: 2rem;
  font-size: 0.88rem;
  color: var(--text-l);
  border-radius: 0 8px 8px 0;
}

/* Category description */
.menu-section__desc {
  color: var(--text-l);
  font-size: 0.95rem;
  margin-top: -0.5rem;
  margin-bottom: 1.5rem;
}

/* Popular badge */
.menu-card { position: relative; }
.badge-popular {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.3rem 0.7rem;
  border-radius: 50px;
  z-index: 2;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

/* Card order button */
.menu-card__order {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.6rem;
  padding: 0.45rem 1rem;
  background: var(--green);
  color: var(--white);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  transition: all var(--trans);
}
.menu-card__order:hover {
  background: var(--green-h);
  transform: translateY(-1px);
}
.menu-card__order svg {
  width: 14px; height: 14px;
  fill: currentColor;
}

.menu-page {
  padding: 0 2rem 4rem;
  max-width: var(--max-w);
  margin: 0 auto;
}
.menu-page > h1 { display: none; }

.category-tabs {
  position: sticky;
  top: var(--navbar-h);
  z-index: 100;
  background: rgba(253, 246, 238, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  gap: 0.5rem;
  padding: 1rem 0;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  justify-content: center;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.tab-btn {
  padding: 0.55rem 1.3rem;
  border-radius: 50px;
  border: 2px solid var(--navy);
  background: transparent;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all var(--trans);
}
.tab-btn:hover {
  background: var(--navy);
  color: var(--white);
}
.tab-btn.active {
  background: var(--navy);
  color: var(--white);
}

.menu-section {
  margin-bottom: 4rem;
  scroll-margin-top: 130px;
}
.menu-section h2 {
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.menu-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--trans);
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.menu-card:hover {
  box-shadow: 0 16px 48px rgba(27, 45, 69, 0.12);
  transform: translateY(-5px);
}
.menu-card__img {
  aspect-ratio: 1/1;
  overflow: hidden;
}
.menu-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}
.menu-card:hover .menu-card__img img { transform: scale(1.06); }
.menu-card__body { padding: 1.2rem 1.4rem 1.4rem; }
.menu-card__name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 0.3rem;
  font-weight: 700;
}
.menu-card__ingredients {
  font-size: 0.82rem;
  color: var(--text-l);
  line-height: 1.5;
  margin-bottom: 0.6rem;
}
.menu-card__prices {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  align-items: baseline;
}
.price-tag {
  font-weight: 700;
  color: var(--gold);
  font-size: 1rem;
}
.price-tag span {
  font-size: 0.7rem;
  color: var(--text-l);
  font-weight: 600;
  margin-right: 2px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-page {
  padding: 5rem 2rem;
  max-width: var(--max-w);
  margin: 0 auto;
}
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}
.about-split img {
  border-radius: var(--radius);
  object-fit: cover;
  height: 450px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(27,45,69,0.12);
}
.about-text h1 { margin-bottom: 1.5rem; }
.about-text p { color: var(--text-l); margin-bottom: 1rem; font-size: 1.05rem; line-height: 1.8; }

.values-title { text-align: center; margin-bottom: 0.5rem; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}
.value-card {
  text-align: center;
  background: var(--white);
  padding: 2.5rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
  transition: all var(--trans);
}
.value-card:hover {
  box-shadow: 0 16px 48px rgba(27,45,69,0.1);
  transform: translateY(-5px);
}
.value-card__icon { font-size: 2.5rem; margin-bottom: 1rem; }
.value-card__title {
  font-family: 'Playfair Display', serif;
  color: var(--navy);
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
  font-weight: 700;
}
.value-card p { font-size: 0.9rem; color: var(--text-l); line-height: 1.6; }

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-page {
  padding: 5rem 2rem;
  max-width: var(--max-w);
  margin: 0 auto;
}
.contact-page > h1 { text-align: center; margin-bottom: 3rem; }
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 2rem; }
.contact-item { display: flex; flex-direction: column; gap: 0.3rem; }
.contact-item__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-transform: uppercase;
}
.contact-item__value {
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.6;
}
.contact-map iframe {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: var(--radius);
  box-shadow: 0 16px 48px rgba(27,45,69,0.1);
}
.btn-directions {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.85rem 2rem;
  background: var(--navy);
  color: var(--white);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--trans);
  box-shadow: 0 4px 16px rgba(27,45,69,0.25);
}
.btn-directions:hover {
  background: var(--navy-l);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(27,45,69,0.35);
}

/* =============================================
   PRODUCT MODAL
   ============================================= */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(27, 45, 69, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms ease;
}
.modal-overlay.open { opacity: 1; pointer-events: auto; }

.modal {
  background: var(--white);
  border-radius: 20px;
  max-width: 480px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.25);
  transform: translateY(30px) scale(0.96);
  transition: transform 300ms ease;
  position: relative;
}
.modal-overlay.open .modal { transform: translateY(0) scale(1); }

.modal__close {
  position: absolute;
  top: 14px; right: 14px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--white);
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  z-index: 10;
  transition: all var(--trans);
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
.modal__close:hover { transform: scale(1.1); }
.modal__img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 20px 20px 0 0;
}
.modal__body {
  padding: 1.5rem 1.8rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.modal__name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--navy);
  font-weight: 700;
}
.modal__ingredients {
  font-size: 0.9rem;
  color: var(--text-l);
  line-height: 1.6;
}
.modal__prices {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.modal__prices .price-tag { font-size: 1.15rem; }
.modal__prices .price-tag span { font-size: 0.78rem; }
.modal__order { margin-top: 0.6rem; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1023px) {
  .cards-grid        { grid-template-columns: repeat(2, 1fr); }
  .menu-grid         { grid-template-columns: repeat(2, 1fr); }
  .about-split       { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-split img   { height: 320px; }
  .about-preview__inner { grid-template-columns: 1fr; gap: 2rem; }
  .about-preview__img img { height: 300px; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid       { grid-template-columns: repeat(2, 1fr); }
  .contact-split     { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
  .navbar__links     { display: none; }
  .navbar__hamburger { display: flex; }
  .navbar            { padding: 0 1.2rem; }

  .hero              { min-height: 80vh; }
  .hero h1           { font-size: 1.8rem; }
  .hero__brand-main  { font-size: 3rem; }
  .hero__brand-sub   { font-size: 0.65rem; letter-spacing: 7px; }
  .hero__divider     { width: 40px; margin: 0.8rem auto 1rem; }
  .hero__subtitle    { font-size: 0.95rem; font-weight: 400; }

  .features-strip__inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .features-strip    { padding: 2.5rem 1.5rem; }

  .cards-grid        { grid-template-columns: 1fr; }
  .featured          { padding: 4rem 1.5rem; }

  .about-preview__inner { grid-template-columns: 1fr; }
  .about-preview__img img { height: 240px; }
  .about-preview     { padding: 3rem 1.5rem; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonials      { padding: 3rem 1.5rem; }
  .social-section    { padding: 3rem 1.5rem; }

  .menu-grid         { grid-template-columns: 1fr; }
  .menu-page         { padding: 0 1.5rem 4rem; }
  .menu-hero         { height: 200px; }
  .values-grid       { grid-template-columns: 1fr; }
  .about-page        { padding: 3rem 1.5rem; }
  .contact-page      { padding: 3rem 1.5rem; }
  .contact-map iframe { height: 260px; }

  .cta-banner        { padding: 3.5rem 1.5rem; }

  .modal { border-radius: 20px 20px 0 0; max-width: 100%; }
  .modal-overlay { align-items: flex-end; padding: 0; }
  .modal__img { border-radius: 20px 20px 0 0; }
}
