/* ===== RESET ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: #F2EDE5;
  background: #0F0D0C;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ===== DESIGN TOKENS ===== */
:root {
  --bg: #0F0D0C;
  --bg-alt: #1A1613;
  --ink: #F2EDE5;
  --ink-soft: #B8ADA2;
  --accent: #E8722C;
  --accent-dark: #C25A1D;
  --line: rgba(242, 237, 229, 0.12);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%;
  background: rgba(15, 13, 12, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  z-index: 1000;
}
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 14px 20px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo img { height: 55px; width: auto; }
.nav-links { display: none; }
.nav-links a {
  font-size: 14px; font-weight: 600; color: var(--ink);
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--accent); }
.btn-call {
  display: none;
  background: var(--accent); color: #fff;
  padding: 10px 20px; border-radius: 30px; font-size: 14px;
  font-weight: 600; transition: opacity 0.2s ease;
  align-items: center; gap: 8px;
}
.btn-call:hover { opacity: 0.88; }
.hamburger {
  display: flex; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span { width: 24px; height: 2px; background: var(--ink); transition: all 0.3s ease; }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-links.mobile-active {
  display: flex; flex-direction: column; position: absolute;
  top: 100%; left: 0; width: 100%; background: var(--bg);
  border-bottom: 1px solid var(--line); padding: 20px; gap: 16px;
}
@media (min-width: 900px) {
  .nav-links { display: flex; gap: 26px; }
  .btn-call { display: flex; }
  .hamburger { display: none; }
}

/* ===== HERO ===== */
.hero { padding: 130px 20px 60px; background: var(--bg); position: relative; overflow: hidden; }
.hero-container {
  max-width: 1200px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 40px;
}
.hero-text h1 {
  font-family: 'Anton', sans-serif;
  font-size: 42px;
  line-height: 1.05;
  letter-spacing: 0.5px;
  color: var(--ink);
  margin-bottom: 16px;
  text-transform: uppercase;
}
.hero-text h1 span { color: var(--accent); }
.hero-sub {
  font-size: 16px;
  color: var(--ink-soft);
  margin-bottom: 24px;
}
.trust-row {
  display: flex; flex-wrap: wrap; gap: 20px;
  margin-bottom: 32px;
}
.trust-item {
  font-size: 13px; font-weight: 600; color: var(--ink);
  display: flex; align-items: center; gap: 8px;
}
.trust-item i { color: var(--accent); font-size: 15px; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--accent); color: #fff;
  padding: 16px 32px; border-radius: 30px;
  font-size: 15px; font-weight: 700;
  transition: opacity 0.2s ease;
}
.btn-primary:hover { opacity: 0.88; }
.hero-image { position: relative; }
.hero-image img {
  width: 100%; border-radius: 8px;
  aspect-ratio: 1 / 1; object-fit: cover;
}
.hero-badge {
  position: absolute;
  top: -10px; right: -10px;
  width: 110px; height: 110px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  background: rgba(15,13,12,0.85);
  transform: rotate(8deg);
}
.hero-badge span {
  font-size: 10px; font-weight: 700; color: var(--ink);
  line-height: 1.3;
}
.hero-badge strong { color: var(--accent); }

@media (min-width: 900px) {
  .hero { padding: 170px 20px 100px; }
  .hero-container {
    flex-direction: row; align-items: center; justify-content: space-between; gap: 60px;
  }
  .hero-text { flex: 1; }
  .hero-image { flex: 1; }
  .hero-text h1 { font-size: 58px; }
  .hero-badge { width: 140px; height: 140px; top: -15px; right: -15px; }
  .hero-badge span { font-size: 13px; }
}

/* ===== SHARED SECTION STYLES ===== */
.section-container { max-width: 1200px; margin: 0 auto; padding: 80px 20px; }
.eyebrow {
  display: inline-block; font-size: 13px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase; color: var(--accent);
  margin-bottom: 12px; font-style: italic;
}
.section-container h2 {
  font-family: 'Anton', sans-serif; font-size: 30px; letter-spacing: 0.5px;
  color: var(--ink); text-transform: uppercase; line-height: 1.15;
}
.section-container h2 span { color: var(--accent); }

/* ===== ABOUT TEASER ===== */
.about-teaser { background: var(--bg); border-top: 1px solid var(--line); }
.about-teaser-grid { display: flex; flex-direction: column; gap: 32px; }
.about-teaser-text p {
  font-size: 15px; color: var(--ink-soft); margin: 20px 0 24px; max-width: 460px;
}
.feature-badges { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 24px; }
.feature-badge {
  border: 1px solid var(--line); border-radius: 6px;
  padding: 10px 14px; font-size: 12px; font-weight: 600;
  color: var(--ink); display: flex; align-items: center; gap: 8px;
}
.feature-badge i { color: var(--accent); }
.link-more {
  display: inline-block; font-size: 14px; font-weight: 700;
  color: var(--accent); border-bottom: 2px solid var(--accent); padding-bottom: 3px;
}
.about-teaser-image img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 8px;
}
@media (min-width: 900px) {
  .about-teaser-grid { flex-direction: row; align-items: center; gap: 60px; }
  .about-teaser-text, .about-teaser-image { flex: 1; }
}


/* ===== MENU HIGHLIGHTS ===== */
.menu-highlights { background: var(--bg-alt); }
.menu-highlights h2 { margin-bottom: 40px; }
.menu-highlight-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-bottom: 36px;
}
.menu-highlight-card {
  background: var(--bg); border: 1px solid var(--line); border-radius: 8px;
  overflow: hidden; text-align: center;
}
.menu-highlight-card img {
  width: 100%; aspect-ratio: 1/1; object-fit: cover;
}
.mh-name { font-size: 13px; font-weight: 600; color: var(--ink); padding: 12px 8px 2px; }
.mh-price { font-size: 15px; font-weight: 700; color: var(--accent); padding-bottom: 12px; }
@media (min-width: 700px) {
  .menu-highlight-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1100px) {
  .menu-highlight-grid { grid-template-columns: repeat(5, 1fr); }
}


/* ===== COMBOS ===== */
.combos { background: var(--bg); border-top: 1px solid var(--line); }
.combos-sub { font-size: 15px; color: var(--ink-soft); margin: 12px 0 32px; max-width: 460px; }
.combo-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.combo-card {
  background: var(--bg-alt); border: 1px solid var(--line); border-radius: 8px;
  padding: 28px 24px;
}
.combo-card h3 {
  font-family: 'Anton', sans-serif; font-size: 22px; letter-spacing: 0.5px;
  text-transform: uppercase; color: var(--ink); margin-bottom: 16px;
}
.combo-list { list-style: none; margin-bottom: 20px; }
.combo-list li {
  font-size: 13px; color: var(--ink-soft); padding: 6px 0;
}
.combo-list li::before { content: '• '; color: var(--accent); font-weight: 700; }
.combo-price {
  font-family: 'Anton', sans-serif; font-size: 32px; color: var(--accent); margin-bottom: 20px;
}
.btn-outline {
  display: inline-block; border: 2px solid var(--accent); color: var(--accent);
  padding: 12px 26px; border-radius: 30px; font-size: 14px; font-weight: 700;
  transition: all 0.2s ease;
}
.btn-outline:hover { background: var(--accent); color: #fff; }
@media (min-width: 700px) {
  .combo-grid { grid-template-columns: repeat(2, 1fr); }
}


/* ===== CONTACT STRIP ===== */
.contact-strip { background: var(--bg-alt); border-top: 1px solid var(--line); }
.contact-strip-grid { display: grid; grid-template-columns: 1fr; gap: 32px; padding-top: 50px; padding-bottom: 50px; }
.cs-label { font-size: 12px; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px; }
.cs-main {
  font-family: 'Anton', sans-serif; font-size: 24px; color: var(--accent);
  letter-spacing: 0.5px; margin-bottom: 6px;
}
.cs-sub { font-size: 13px; color: var(--ink-soft); }
.cs-phone {
  display: inline-flex; align-items: center; gap: 10px;
  border: 2px solid var(--accent); color: var(--accent);
  padding: 12px 24px; border-radius: 30px; font-size: 16px; font-weight: 700;
}
.cs-social { display: flex; gap: 14px; }
.cs-social a {
  width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 16px;
  color: var(--ink); transition: all 0.2s ease;
}
.cs-social a:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
@media (min-width: 900px) {
  .contact-strip-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg); text-align: center; padding: 20px;
  border-top: 1px solid var(--line);
}
.footer p { font-size: 12px; color: var(--accent); font-weight: 600; letter-spacing: 0.5px; }
/* ===== PAGE HERO ===== */
.page-hero { padding: 130px 20px 40px; background: var(--bg-alt); text-align: center; }
.page-hero h1 { font-size: 30px; }

/* ===== MENU PAGE ===== */
.menu-page { padding: 60px 0; }
.menu-tabs {
  display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px;
  border-bottom: 1px solid var(--line); padding-bottom: 20px;
}
.menu-tab {
  background: none; border: 1px solid var(--line); color: var(--ink-soft);
  padding: 10px 18px; border-radius: 30px; font-size: 13px; font-weight: 600;
  cursor: pointer; transition: all 0.2s ease;
}
.menu-tab.active, .menu-tab:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.menu-items { display: flex; flex-direction: column; gap: 0; }
.menu-items.hidden { display: none; }
.menu-item {
  display: flex; align-items: center; gap: 16px; padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.menu-item img { width: 64px; height: 64px; border-radius: 6px; object-fit: cover; flex-shrink: 0; }
.menu-item-info { flex: 1; }
.menu-item-info h3 { font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 2px; }
.menu-item-info p { font-size: 12px; color: var(--ink-soft); }
.menu-item-price { font-size: 16px; font-weight: 700; color: var(--accent); white-space: nowrap; }

/* ===== GALLERY GRID ===== */
.gallery-full { padding: 20px 0 60px; }
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.gallery-grid img {
  width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: 6px;
  cursor: zoom-in; transition: opacity 0.2s ease;
}
.gallery-grid img:hover { opacity: 0.85; }
@media (min-width: 700px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1100px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }
/* ===== ABOUT STORY ===== */
.about-story { padding: 20px 0 60px; }
.about-story-grid { display: flex; flex-direction: column; gap: 32px; }
.about-story-image img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 8px; }
.about-story-text p { font-size: 15px; color: var(--ink-soft); margin-bottom: 20px; max-width: 460px; }
.tagline-quote {
  font-family: 'Anton', sans-serif; font-size: 20px; color: var(--accent);
  letter-spacing: 0.5px; margin-bottom: 28px !important;
}
.value-icons { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.value-icon { font-size: 14px; font-weight: 600; color: var(--ink); display: flex; align-items: center; gap: 10px; }
.value-icon i { color: var(--accent); font-size: 16px; }
@media (min-width: 900px) {
  .about-story-grid { flex-direction: row; align-items: center; gap: 60px; }
  .about-story-image, .about-story-text { flex: 1; }
}
/* ===== CONTACT PAGE ===== */
.contact-page { padding: 20px 0 60px; }
.contact-grid { display: flex; flex-direction: column; gap: 40px; }
.contact-detail-item { display: flex; gap: 16px; margin-bottom: 24px; }
.contact-detail-item i { color: var(--accent); font-size: 20px; margin-top: 3px; }
.cd-label { font-size: 12px; color: var(--ink-soft); text-transform: uppercase; margin-bottom: 4px; }
.cd-value { font-size: 14px; color: var(--ink); font-weight: 600; }
.form-input {
  width: 100%; background: var(--bg-alt); border: 1px solid var(--line);
  border-radius: 6px; padding: 14px; color: var(--ink); font-size: 14px;
  font-family: 'Inter', sans-serif; margin-bottom: 14px;
}
.form-input::placeholder { color: var(--ink-soft); }
textarea.form-input { resize: vertical; }
@media (min-width: 900px) {
  .contact-grid { flex-direction: row; gap: 60px; }
  .contact-details, .contact-form { flex: 1; }
}
/* ===== FADE-IN ANIMATION ===== */
.fade-init { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-visible { opacity: 1; transform: translateY(0); }

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0); display: flex; align-items: center; justify-content: center;
  z-index: 3000; opacity: 0; visibility: hidden;
  transition: opacity 0.35s ease, background 0.35s ease; padding: 20px;
}
.lightbox.active { opacity: 1; visibility: visible; background: rgba(0,0,0,0.9); }
.lightbox img {
  max-width: 90%; max-height: 85vh; border-radius: 6px;
  transform: scale(0.9); transition: transform 0.35s ease; object-fit: contain;
}
.lightbox.active img { transform: scale(1); }
.lightbox-close {
  position: absolute; top: 24px; right: 30px; color: #fff;
  font-size: 36px; font-weight: 300; cursor: pointer; line-height: 1; z-index: 3001;
}