/* ── HERO ── */
.hero {
  height: 100vh;
  min-height: 600px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.95;
}


/* Decorative botanical pattern */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(ellipse at 70% 50%, rgba(107,140,94,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(196,146,42,0.1) 0%, transparent 50%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(13,31,13,0.85) 40%, rgba(13,31,13,0.3) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 4rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding-top: 5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.hero-badge .dot { color: var(--sage); }

.hero-content h1 {
  font-size: clamp(3.5rem, 8vw, 7rem);
  color: var(--cream);
  line-height: 1.02;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.hero-content h1 em {
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
}

.hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: rgba(245,240,232,0.65);
  margin-bottom: 2.5rem;
  letter-spacing: 0.03em;
  font-style: italic;
  max-width: 460px;
}

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

.reveal { transition-delay: 0.1s; }
.reveal:nth-child(2) { transition-delay: 0.2s; }
.reveal:nth-child(3) { transition-delay: 0.3s; }
.reveal:nth-child(4) { transition-delay: 0.4s; }

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
}
.hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.4);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(245,240,232,0.4), transparent);
  animation: scrollPulse 1.8s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.6); }
}

/* ── INTRO STRIP ── */
.intro-strip {
  background: var(--forest);
  padding: 3rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.strip-item {
  flex: 1;
  min-width: 200px;
  text-align: center;
  padding: 1.5rem 2rem;
}
.strip-icon {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 0.75rem;
}
.strip-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.strip-item p {
  font-size: 0.85rem;
  color: rgba(245,240,232,0.6);
  line-height: 1.5;
}
.strip-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
  flex-shrink: 0;
}

/* ── ABOUT TEASER ── */
.about-teaser {
  max-width: 1200px;
  margin: 0 auto;
  padding: 7rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-img { position: relative; }
.about-img-inner {
  position: relative;
  z-index: 1;
}
.img-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}
.forest-bg {
  background: linear-gradient(135deg, #1a3a1a, #2d5a2d);
}
.forest-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 30% 40%, rgba(107,140,94,0.3) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 70%, rgba(196,146,42,0.15) 0%, transparent 50%);
}
.img-overlay-text {
  position: relative;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  width: 100%;
  padding-top: 4rem;
}
.big-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
}
.small-text {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  font-family: 'Jost', sans-serif;
}
.about-img-accent {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 60%;
  height: 60%;
  border: 1.5px solid var(--sage);
  border-radius: 2px;
  z-index: 0;
  opacity: 0.4;
}

.about-text h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--forest);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.about-text h2 em { color: var(--earth); }
.body-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--ash);
  margin-bottom: 1.2rem;
}

/* ── MENU TEASER ── */
.menu-teaser {
  background: var(--cream);
  padding: 7rem 2rem;
}
.menu-teaser-header {
  max-width: 1200px;
  margin: 0 auto 4rem;
  text-align: center;
}
.menu-teaser-header h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--forest);
  margin-bottom: 1rem;
}
.menu-teaser-header h2 em { color: var(--earth); font-weight: 400; }
.menu-teaser-header p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: var(--ash);
  font-style: italic;
}
.menu-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.menu-card {
  background: white;
  border-radius: 2px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px var(--shadow);
}
.menu-card-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.menu-card-img {
  position: relative;
  overflow: hidden;
}

.menu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.menu-card:hover .menu-card-img img {
  transform: scale(1.05);
}
.game-bg { background: linear-gradient(135deg, #2d1a0a, #5a3a1a); }
.pizza-bg { background: linear-gradient(135deg, #3a1a0a, #8b4a1a); }
.curry-bg { background: linear-gradient(135deg, #1a2d0a, #4a6a1a); }
.dessert-bg { background: linear-gradient(135deg, #3a1a2d, #6a2a4a); }

.game-bg::after, .pizza-bg::after, .curry-bg::after, .dessert-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.05) 0%, transparent 70%);
}

.menu-card-body { padding: 1.5rem; }
.menu-tag {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 500;
  display: block;
  margin-bottom: 0.5rem;
}
.menu-card-body h3 {
  font-size: 1.2rem;
  color: var(--forest);
  margin-bottom: 0.6rem;
}
.menu-card-body p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: var(--ash);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.menu-link {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--earth);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}
.menu-link:hover { color: var(--amber); }

.menu-teaser-cta { text-align: center; margin-top: 3rem; }

/* ── EXPERIENCE ── */
.experience {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 6rem 2rem;
}
.experience-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0a1f0a 0%, #1a3320 50%, #0d2010 100%);
}
.experience-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 80% 50%, rgba(196,146,42,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 10% 80%, rgba(107,140,94,0.1) 0%, transparent 50%);
}
.experience-overlay {
  position: absolute;
  inset: 0;
}
.experience-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  max-width: 560px;
  margin-left: 8vw;
}
.experience-content h2 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 1.2rem;
}
.experience-content h2 em { color: var(--gold); }
.experience-content p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: rgba(245,240,232,0.7);
  line-height: 1.7;
  margin-bottom: 2rem;
  font-style: italic;
}

/* ── INFO STRIP ── */
.info-strip {
  background: var(--forest);
  border-top: 1px solid var(--border);
  padding: 3.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.info-item {
  flex: 1;
  min-width: 200px;
  text-align: center;
  padding: 1rem 2rem;
}
.info-item h4 {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
  font-family: 'Jost', sans-serif;
}
.info-item p {
  font-size: 0.88rem;
  color: rgba(245,240,232,0.55);
  margin-bottom: 0.2rem;
}
.info-highlight {
  color: var(--cream) !important;
  font-weight: 500;
}
.info-divider {
  width: 1px;
  height: 50px;
  background: var(--border);
  flex-shrink: 0;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .about-teaser { gap: 3rem; }
}
@media (max-width: 768px) {
  .hero-content { padding: 0 1.5rem; padding-top: 5rem; }
  .about-teaser { grid-template-columns: 1fr; gap: 2rem; padding: 4rem 1.5rem; }
  .about-img { order: -1; }
  .menu-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .strip-divider, .info-divider { display: none; }
  .experience-content { margin-left: 0; }
}
@media (max-width: 480px) {
  .menu-grid { grid-template-columns: 1fr; }
}
