/* ============================================================
   MINI BITES — style.css
   ============================================================ */

:root {
  --gold:       #E29C35;
  --gold-dark:  #c5891f;
  --gold-soft:  rgba(226,156,53,0.12);
  --black:      #0E1216;
  --cream:      #FFF6DB;
  --sand:       #FDF8EE;
  --white:      #FFFFFF;
  --muted:      #6b6355;
  --border:     rgba(226,156,53,0.15);
}

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

html { scroll-behavior: smooth; }

html { overflow-x: hidden; }
body {
  font-family: 'Montserrat', sans-serif;
  background: var(--white);
  color: var(--black);
}

/* ── Scroll-reveal base ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* stagger delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* ── Shared ── */
.section-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto 64px;
  line-height: 1.7;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--black);
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 4px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(226,156,53,0.35);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--black);
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 15px 30px;
  border-radius: 4px;
  border: 2px solid var(--black);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.btn-outline:hover { background: var(--black); color: var(--white); }

/* ============================================================
   NAV
   ============================================================ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 4px 24px rgba(14,18,22,0.08); }

.nav-logo svg { height: 44px; width: auto; }

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.25s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--gold); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--black) !important;
  padding: 10px 22px;
  border-radius: 4px;
  font-weight: 800 !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold-dark) !important; color: var(--white) !important; }

/* Backdrop — dims page behind open drawer */
.nav-backdrop {
  display: none;
  position: fixed;
  inset: 72px 0 0 0;
  background: rgba(14,18,22,0.4);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.nav-backdrop.open {
  opacity: 1;
  pointer-events: all;
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 4px;
  z-index: 110;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
  transform-origin: center;
}
/* open state — X */
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile drawer ── */
.nav-drawer {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: #ffffff;
  border-bottom: 2px solid var(--border);
  z-index: 999;
  padding: 8px 24px 28px;
  max-height: calc(100vh - 72px);
  overflow-y: auto;
  transform: translateY(-8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.25s ease, opacity 0.25s ease, visibility 0s linear 0.25s;
}
.nav-drawer.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transition: transform 0.25s ease, opacity 0.25s ease, visibility 0s linear 0s;
}
.nav-drawer a {
  display: block;
  padding: 15px 0;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.nav-drawer a:hover { color: var(--gold); }
.nav-drawer .drawer-cta {
  margin-top: 16px;
  display: block;
  text-align: center;
  background: var(--gold);
  color: var(--black) !important;
  padding: 14px 24px;
  border-radius: 4px;
  font-weight: 800 !important;
  border-bottom: none !important;
  letter-spacing: 0.08em;
  transition: background 0.2s !important;
}
.nav-drawer .drawer-cta:hover { background: var(--gold-dark) !important; }

/* ============================================================
   HERO — full-bleed background image
   ============================================================ */
#hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

/* The actual background image */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/*
  Accessibility overlay:
  Dark gradient from bottom-left where text lives.
  Contrast ratio of white text on this overlay exceeds 7:1 (WCAG AAA).
  The gradient goes from rgba(14,18,22,0.82) at the bottom-left
  to rgba(14,18,22,0.30) at the top-right, keeping the image readable
  on the right while guaranteeing text legibility on the left.
*/
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      105deg,
      rgba(14,18,22,0.82) 0%,
      rgba(14,18,22,0.60) 45%,
      rgba(14,18,22,0.20) 100%
    );
}

/* Content sits above overlay */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 160px 6vw 100px;
}

.hero-logo {
  height: 96px;
  width: auto;
  display: block;
  margin-bottom: 32px;
  /* drop-shadow so it pops against any photo background */
  filter: drop-shadow(0 2px 12px rgba(0,0,0,0.4));
}

.hero-title {
  font-size: clamp(44px, 5.5vw, 80px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  /* White on dark overlay — contrast > 7:1 */
  color: var(--white);
}
.hero-title span { color: var(--gold); }

.hero-sub {
  font-size: 17px;
  line-height: 1.75;
  /* rgba(255,255,255,0.88) on rgba(14,18,22,0.82) = contrast ~6.5:1, AA large ✓ */
  color: rgba(255,255,255,0.88);
  max-width: 480px;
  margin-bottom: 40px;
}

.hero-actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }

/* Outline button inverted for dark hero */
.hero-actions .btn-outline {
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.hero-actions .btn-outline:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

/* hero content stagger */
.hero-content > * {
  opacity: 0;
  transform: translateY(24px);
  animation: heroFadeUp 0.7s ease forwards;
}
.hero-content > *:nth-child(1) { animation-delay: 0.15s; }
.hero-content > *:nth-child(2) { animation-delay: 0.28s; }
.hero-content > *:nth-child(3) { animation-delay: 0.4s; }
.hero-content > *:nth-child(4) { animation-delay: 0.52s; }

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



/* ============================================================
   WHY US
   ============================================================ */
#why {
  padding: 100px 80px;
  background: var(--white);
  text-align: center;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.pillar {
  padding: 40px 32px;
  border-radius: 12px;
  background: var(--sand);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
  cursor: default;
}
.pillar:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(226,156,53,0.16);
}

.pillar-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 24px;
  color: var(--gold);
  transition: transform 0.3s;
}
.pillar:hover .pillar-icon { transform: scale(1.15) rotate(-5deg); }

.pillar-title {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 12px;
}
.pillar-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

/* ============================================================
   WHAT WE SERVE
   ============================================================ */
#menu {
  padding: 100px 80px;
  background: var(--black);
  color: var(--white);
  position: relative;
}
#menu::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.04;
  top: -200px; right: -200px;
  pointer-events: none;
}

#menu .section-label { color: var(--gold); }
#menu .section-title { color: var(--white); }
#menu .section-sub { color: rgba(255,255,255,0.5); }

.menu-header { text-align: center; margin-bottom: 48px; }

/* tabs */
.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  position: relative;
  z-index: 10;
}
.menu-tab {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 12px 32px;
  border-radius: 4px;
  border: 1.5px solid rgba(255,255,255,0.15);
  background: transparent;
  color: rgba(255,255,255,0.45);
  cursor: pointer;
  transition: all 0.25s;
}
.menu-tab:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.menu-tab.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

/* panels */
.menu-panel { display: none; }
.menu-panel.active { display: block; }

/* Savory has 3 cards — center them in the 4-col grid */


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

.menu-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
  cursor: default;
}
.menu-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
}

.menu-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.menu-card:hover .menu-card-img { transform: scale(1.06); }

.menu-card-body {
  padding: 20px 20px 24px;
}
.menu-card-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
}
.menu-card-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

/* included strip */
.menu-included {
  margin-top: 48px;
  background: rgba(226,156,53,0.08);
  border: 1px solid rgba(226,156,53,0.2);
  border-radius: 10px;
  padding: 28px 40px;
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.menu-included-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.menu-included-title {
  font-size: 22px;
  font-weight: 900;
  color: var(--white);
}
.menu-included-features {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  list-style: none;
}
.menu-included-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
}
.menu-included-features li svg { color: var(--gold); flex-shrink: 0; }

/* ============================================================
   PACKAGES
   ============================================================ */
#packages {
  padding: 100px 80px;
  background: var(--white);
  text-align: center;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.pack-card {
  background: var(--sand);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px 28px;
  position: relative;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  text-align: left;
}
.pack-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(226,156,53,0.14);
}
.pack-card.featured {
  border-color: var(--gold);
  background: var(--cream);
}

.pack-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--black);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

.pack-number {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.pack-name {
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}
.pack-divider {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin: 0 0 20px;
}
.pack-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pack-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
}
.pack-features li svg { flex-shrink: 0; margin-top: 2px; color: var(--gold); }

.pack-cta {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: gap 0.2s;
  text-decoration: none;
}
.pack-cta:hover { gap: 14px; }

/* ============================================================
   MESA DE POSTRES
   ============================================================ */
#mesa {
  padding: 100px 80px;
  background: var(--sand);
}

.mesa-header {
  text-align: center;
  margin-bottom: 64px;
}

.mesa-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.mesa-img {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}
.mesa-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.mesa-img:hover img { transform: scale(1.04); }

.mesa-img-main {
  grid-row: span 2;
  min-height: 480px;
}
.mesa-img-top  { aspect-ratio: 4/3; }
.mesa-img-bottom { aspect-ratio: 4/3; }

.mesa-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 24px;
  background: linear-gradient(to top, rgba(14,18,22,0.7), transparent);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.3s;
}
.mesa-img:hover .mesa-caption { opacity: 1; }

.mesa-info {
  margin-top: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
}
.mesa-info-item { text-align: center; }
.mesa-info-num {
  font-size: 40px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.mesa-info-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============================================================
   EVENTS CAROUSEL
   ============================================================ */
#events {
  padding: 100px 80px;
  background: var(--white);
  overflow: hidden;
}

.events-header {
  text-align: center;
  margin-bottom: 56px;
}

.carousel-wrap {
  position: relative;
}

.carousel-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 8px;
  cursor: grab;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-track.dragging { cursor: grabbing; scroll-snap-type: none; }

.carousel-slide {
  flex: 0 0 340px;
  scroll-snap-align: start;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 32px rgba(14,18,22,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}
.carousel-slide:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 56px rgba(14,18,22,0.16);
}

.carousel-slide img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.carousel-slide:hover img { transform: scale(1.04); }

.carousel-slide-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px 24px 20px;
  background: linear-gradient(to top, rgba(14,18,22,0.85), transparent);
  color: var(--white);
}
.slide-label-tag {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.slide-label-title {
  font-size: 15px;
  font-weight: 700;
}

/* carousel controls */
.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}
.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
}
.carousel-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
  transform: scale(1.08);
}
.carousel-dots {
  display: flex;
  gap: 8px;
}
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  transition: background 0.25s, transform 0.25s;
  cursor: pointer;
}
.carousel-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
#process {
  padding: 100px 80px;
  background: var(--sand);
}

.process-header { text-align: center; margin-bottom: 64px; }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--gold) 0, var(--gold) 8px, transparent 8px, transparent 16px);
}

.step { text-align: center; }
.step-num {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--cream);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 900;
  color: var(--gold);
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
  transition: background 0.3s, color 0.3s, transform 0.3s;
}
.step:hover .step-num {
  background: var(--gold);
  color: var(--black);
  transform: scale(1.1);
}
.step-title {
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 10px;
}
.step-text {
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
#testimonials {
  padding: 100px 80px;
  background: var(--white);
  text-align: center;
}

.testi-notice {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(226,156,53,0.7);
  border: 1px dashed rgba(226,156,53,0.4);
  padding: 6px 16px;
  border-radius: 2px;
  margin-bottom: 40px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 0;
}

.testi-card {
  background: var(--sand);
  border-radius: 12px;
  padding: 36px 32px;
  text-align: left;
  transition: transform 0.3s, box-shadow 0.3s;
}
.testi-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(226,156,53,0.1);
}

.testi-stars { display: flex; gap: 4px; margin-bottom: 20px; }
.star { width: 16px; height: 16px; fill: var(--gold); }

.testi-quote {
  font-size: 15px;
  line-height: 1.75;
  color: var(--black);
  margin-bottom: 28px;
  font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--cream);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  color: var(--gold);
}
.testi-name { font-size: 14px; font-weight: 800; }
.testi-loc  { font-size: 12px; color: var(--muted); margin-top: 2px; }

/* ============================================================
   CONTACT
   ============================================================ */
#contact {
  padding: 100px 80px;
  background: var(--black);
  color: var(--white);
  text-align: center;
}


#contact .section-label { color: var(--gold); }
#contact .section-title { color: var(--white); }

.contact-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  max-width: 480px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.contact-phone {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  color: var(--gold);
  letter-spacing: -0.02em;
  margin-bottom: 48px;
  display: block;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
}
.contact-phone:hover { opacity: 0.8; transform: scale(1.02); }

.contact-cards {
  justify-content: center;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 520px;
  margin: 0 auto 56px;
}
.contact-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 28px 24px;
  text-align: center;
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
}
.contact-card:hover {
  border-color: var(--gold);
  background: rgba(226,156,53,0.06);
  transform: translateY(-4px);
}
.contact-card-icon { width: 36px; height: 36px; color: var(--gold); margin: 0 auto 12px; }
.contact-card-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 6px;
}
.contact-card-value { font-size: 15px; font-weight: 700; color: var(--white); }
.contact-card-value a { color: var(--white); text-decoration: none; }
a.contact-card--link { text-decoration: none; cursor: pointer; display: flex; flex-direction: column; align-items: center; }
a.contact-card--link:hover { border-color: var(--gold); }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: #07090b;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1fr);
  max-width: 1400px;
  margin: 0 auto;
}

.footer-left {
  padding: 72px 72px 72px 80px;
  border-right: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
}
.footer-logo svg { height: 56px; width: auto; }

.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  max-width: 320px;
}

.footer-contact-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
}
.footer-contact-list li svg { flex-shrink: 0; color: var(--gold); }
.footer-contact-list a { color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.2s; }
.footer-contact-list a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 20px; margin: 24px 0 4px; }
.footer-social-link { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.55); text-decoration: none; font-size: 13px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; transition: color 0.2s; }
.footer-social-link svg { flex-shrink: 0; }
.footer-social-link:hover { color: var(--gold); }

.footer-links { display: flex; flex-wrap: wrap; gap: 10px 28px; list-style: none; }
.footer-links a {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }

.footer-right {
  padding: 64px 80px 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  max-width: 550px;
}
.footer-form-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.footer-form-title {
  font-size: 28px;
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 8px;
}
.footer-form-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  line-height: 1.65;
  margin-bottom: 32px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-row.single { grid-template-columns: 1fr; }

.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.form-field input,
.form-field select,
.form-field textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 12px 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(255,255,255,0.2); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--gold);
  background: rgba(226,156,53,0.06);
}
.form-field select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23E29C35' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.form-field select option { background: #0E1216; color: var(--white); }
.form-field textarea { resize: none; }
.form-submit { margin-top: 20px; width: 100%; justify-content: center; }

.footer-bottom {
  padding: 20px 80px;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
}
.footer-copy { font-size: 11px; color: rgba(255,255,255,0.18); letter-spacing: 0.04em; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  nav { padding: 0 32px; }
  .nav-links { gap: 20px; }
  .hero-content { padding: 140px 5vw 80px; }
  #why, #menu, #packages, #mesa, #events, #process, #testimonials, #contact { padding: 80px 40px; }
  .packages-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-left  { padding: 56px 48px 56px 40px; }
  .footer-right { padding: 56px 40px 56px 48px; }
  .mesa-grid { grid-template-columns: 1fr; }
  .mesa-img-main { grid-row: span 1; min-height: 320px; }
}

@media (max-width: 768px) {
  nav {
    padding: 0 20px;
    justify-content: space-between;
  }
  /* Center logo, push hamburger to right */
  nav {
    display: grid;
    grid-template-columns: 40px 1fr 40px;
    align-items: center;
  }
  .nav-logo {
    grid-column: 2;
    justify-self: center;
  }
  .nav-logo svg { height: 56px; }
  .nav-links { display: none; }
  .nav-hamburger {
    display: flex;
    grid-column: 3;
    justify-self: end;
  }
  /* drawer visibility handled by .open class */
  .nav-backdrop { display: block; pointer-events: none; }
  .nav-backdrop.open { pointer-events: all; }
  .hero-content { padding: 120px 24px 80px; max-width: 100%; }
  .hero-logo { height: 72px; }
  .hero-overlay {
    background: linear-gradient(
      160deg,
      rgba(14,18,22,0.80) 0%,
      rgba(14,18,22,0.65) 60%,
      rgba(14,18,22,0.50) 100%
    );
  }
  #why, #menu, #packages, #mesa, #events, #process, #testimonials, #contact { padding: 64px 24px; }
  .pillars-grid { grid-template-columns: 1fr; }
  .packages-grid { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-steps::before { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-cards {
  justify-content: center; grid-template-columns: 1fr; max-width: 400px; }
  .menu-included { flex-direction: column; gap: 24px; padding: 24px; }
  .menu-included-features { gap: 16px; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-left { padding: 48px 24px 40px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .footer-right { padding: 40px 24px 48px; max-width: 100%; }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom { padding: 20px 24px; flex-direction: column; gap: 8px; text-align: center; }
  .carousel-slide { flex: 0 0 280px; }
  .mesa-info { gap: 32px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 38px; }
  .section-title { font-size: 28px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .contact-phone { font-size: 36px; }
  .process-steps { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr; }
  .carousel-slide { flex: 0 0 240px; }
}

/* ============================================================
   HERO LOGO LARGE + TITLE SUB
   ============================================================ */
.hero-logo--large {
  height: 460px;
  margin-bottom: 16px;
}

.hero-title--sub {
  font-size: clamp(14px, 1.8vw, 28px);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #ffffff !important;
  white-space: nowrap;
}

/* ============================================================
   BRAND PATTERN BANNER
   ============================================================ */
.brand-banner {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  max-height: 560px;
}

.brand-banner-img {
  width: 100%;
  height: 100%;
}

.brand-banner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ============================================================
   WIDE MENU CARD (removed — Individual Cakes now uses standard card size)
   ============================================================ */

@media (max-width: 768px) {
  .hero-logo--large {
    height: 340px;
  }
  .hero-title--sub {
    font-size: clamp(12px, 4vw, 18px);
    white-space: normal;
    color: #ffffff !important;
    text-align: center;
  }
  .hero-content {
    text-align: center;
    align-items: center;
    display: flex;
    flex-direction: column;
  }
  .hero-logo--large {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-sub {
    text-align: center;
  }
  .hero-actions {
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
  }
  .hero-actions a {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .brand-banner {
    max-height: 320px;
  }
}
