/* ===========================================================
   LE GRATINÉ — Main Stylesheet (v2 — premium rebuild)
   Dark, bold, urban street-food, agency-grade finish
   =========================================================== */

:root {
  --bg: #0f0f0f;
  --bg-soft: #141414;
  --accent: #F5C518;
  --accent-dark: #d9ad0c;
  --accent-glow: rgba(245, 197, 24, 0.35);
  --text: #ffffff;
  --card: #1a1a1a;
  --card-hover: #212121;
  --muted: #aaaaaa;
  --border: rgba(245, 197, 24, 0.14);
  --border-soft: rgba(255, 255, 255, 0.07);

  --font-logo: 'Dancing Script', cursive;
  --font-title: 'Bebas Neue', sans-serif;
  --font-body: 'Poppins', sans-serif;

  --max-width: 1240px;
  --radius: 16px;
  --radius-sm: 10px;
  --nav-height: 84px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
}

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
}

.icon {
  width: 1em;
  height: 1em;
  display: inline-block;
  vertical-align: -0.125em;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-fill { fill: currentColor; stroke: none; }

/* ---------- Section title pattern ---------- */
.section-title {
  font-family: var(--font-title);
  font-size: clamp(2.4rem, 5.2vw, 3.6rem);
  letter-spacing: 1.5px;
  text-align: center;
  color: var(--accent);
  margin-bottom: 10px;
}

.section-title .alt { color: var(--text); }

.section-subtitle {
  text-align: center;
  color: var(--muted);
  font-size: 1rem;
  max-width: 580px;
  margin: 0 auto 56px;
  font-weight: 300;
}

.eyebrow {
  display: inline-block;
  font-weight: 600;
  font-size: 0.76rem;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

section { padding: 110px 0; position: relative; }

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  border: none;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.3px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: #14110a;
  box-shadow: 0 10px 28px rgba(245, 197, 24, 0.22);
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 16px 36px rgba(245, 197, 24, 0.38);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}

.btn-outline:hover {
  background: var(--accent);
  color: #14110a;
  transform: scale(1.05);
}

/* ===========================================================
   NAVBAR
   =========================================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  z-index: 1000;
  display: flex;
  align-items: center;
  background: var(--bg);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.navbar.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 12px 30px rgba(0,0,0,0.5);
}

.nav-inner {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-logo);
  font-size: 1.75rem;
  color: var(--accent);
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 42px;
}

.nav-links a:not(.nav-cta) {
  position: relative;
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--text);
  padding: 8px 1px;
  transition: color 0.3s ease;
}

.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  left: 0; bottom: 1px;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width 0.35s var(--ease);
}

.nav-links a:not(.nav-cta):hover { color: var(--accent); }
.nav-links a:not(.nav-cta):hover::after { width: 100%; }
.nav-links a.active:not(.nav-cta) { color: var(--accent); }
.nav-links a.active:not(.nav-cta)::after { width: 100%; }

.nav-cta {
  padding: 11px 26px;
  font-size: 0.85rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 24px;
  z-index: 1100;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.35s ease, opacity 0.35s ease, background 0.35s ease;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: var(--accent); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: var(--accent); }

/* ===========================================================
   HERO
   =========================================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../image/hero.webp');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.52);
  z-index: 1;
}

.hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(15,15,15,0.96) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 28px;
  max-width: 820px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(245, 197, 24, 0.1);
  border: 1.5px solid var(--accent);
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 50px;
  margin-bottom: 30px;
}

.hero-title {
  font-family: var(--font-logo);
  font-size: clamp(3.6rem, 11vw, 6rem);
  color: var(--accent);
  line-height: 1;
  text-shadow: 0 4px 40px rgba(0,0,0,0.6);
}

.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #f1f1f1;
  margin: 24px auto 12px;
  max-width: 600px;
  font-weight: 300;
}

.hero-flags {
  font-size: 1.4rem;
  margin-bottom: 36px;
  letter-spacing: 6px;
}

.hero-cta-group {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.65);
  font-size: 0.72rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.scroll-indicator .icon {
  width: 22px;
  height: 22px;
  color: var(--accent);
  animation: bounceArrow 2s infinite;
}

/* ===========================================================
   VIDEO SECTION
   =========================================================== */
.video-section { background: var(--bg); }

.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 54px;
}

.video-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 9 / 16;
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: 0 0 0 1px rgba(245,197,24,0.05), 0 24px 60px rgba(0,0,0,0.55), 0 0 60px -10px var(--accent-glow);
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.video-frame:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 0 1px rgba(245,197,24,0.12), 0 30px 70px rgba(0,0,0,0.6), 0 0 90px -8px var(--accent-glow);
}

.video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.video-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,0.5) 100%);
  pointer-events: none;
}

/* ===========================================================
   3D CAROUSEL
   =========================================================== */
.carousel-section { background: var(--bg-soft); overflow: hidden; }

.carousel-3d-wrap {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-3d-stage {
  position: relative;
  width: 100%;
  height: clamp(320px, 46vw, 480px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-3d-card {
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(190px, 26vw, 320px);
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-soft);
  box-shadow: 0 30px 60px rgba(0,0,0,0.6);
  transition: transform 0.45s var(--ease), opacity 0.45s var(--ease), filter 0.45s var(--ease);
  cursor: pointer;
}

.carousel-3d-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-3d-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 18px 20px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.88));
  font-family: var(--font-title);
  font-size: 1.15rem;
  letter-spacing: 1px;
  color: var(--text);
}

.carousel-3d-caption span { color: var(--accent); }

.carousel-arrow {
  position: relative;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
  flex-shrink: 0;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

.carousel-arrow .icon { width: 20px; height: 20px; }
.carousel-arrow:hover { background: var(--accent); color: #14110a; border-color: var(--accent); transform: scale(1.08); }
.carousel-arrow.prev { margin-right: -26px; }
.carousel-arrow.next { margin-left: -26px; }

@media (min-width: 769px) {
  .carousel-arrow.prev { margin-right: -26px; }
  .carousel-arrow.next { margin-left: -26px; }
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

.carousel-dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  transition: background 0.3s ease, transform 0.3s ease;
}

.carousel-dots button.active {
  background: var(--accent);
  transform: scale(1.35);
}

/* ===========================================================
   REVIEWS
   =========================================================== */
.reviews-section { background: var(--bg); }

.reviews-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-title);
  font-size: 1.4rem;
  color: var(--text);
  margin: -16px auto 56px;
  letter-spacing: 1px;
  width: fit-content;
  padding: 14px 30px;
  border: 1px solid var(--border);
  border-radius: 50px;
  background: var(--card);
}

.reviews-badge .icon { width: 22px; height: 22px; color: var(--accent); }

.reviews-badge small {
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0;
}

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

.review-card {
  background: var(--card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 32px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}

.review-card:hover {
  transform: translateY(-8px);
  border-color: var(--border);
  box-shadow: 0 20px 50px rgba(0,0,0,0.45);
}

.review-stars {
  display: flex;
  gap: 3px;
  color: var(--accent);
  margin-bottom: 18px;
}

.review-stars .icon { width: 16px; height: 16px; }
.review-stars .icon.dim { color: rgba(255,255,255,0.18); }

.review-text {
  color: #e3e3e3;
  font-size: 0.95rem;
  margin-bottom: 24px;
  font-weight: 300;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 0.92rem;
}

.review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--accent);
  color: #14110a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-size: 1rem;
}

/* ===========================================================
   CTA STRIP
   =========================================================== */
.cta-strip {
  background: linear-gradient(120deg, #181818, #0f0f0f);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
  padding: 80px 28px;
}

.cta-strip h2 {
  font-family: var(--font-title);
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  margin-bottom: 26px;
  letter-spacing: 1px;
  color: var(--text);
}

.cta-strip h2 span { color: var(--accent); }

/* ===========================================================
   FOOTER
   =========================================================== */
.footer {
  background: var(--bg);
  border-top: 2px solid var(--accent);
  padding: 56px 0 26px;
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 36px;
  margin-bottom: 44px;
}

.footer-logo {
  font-family: var(--font-logo);
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 10px;
  display: block;
}

.footer-tagline {
  color: var(--muted);
  font-size: 0.9rem;
  max-width: 280px;
}

.footer-nav {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-nav a {
  color: var(--muted);
  font-size: 0.92rem;
  transition: color 0.3s ease;
}

.footer-nav a:hover { color: var(--accent); }

.footer-social {
  display: flex;
  gap: 14px;
}

.footer-social a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.footer-social a .icon { width: 19px; height: 19px; }

.footer-social a:hover {
  background: var(--accent);
  color: #14110a;
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid var(--border-soft);
  padding-top: 26px;
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
}

.footer-bottom .halal { color: var(--accent); font-weight: 600; }

/* ===========================================================
   PAGE HEADER (sub-pages)
   =========================================================== */
.page-header {
  position: relative;
  padding: calc(var(--nav-height) + 100px) 0 80px;
  text-align: center;
  background: radial-gradient(circle at 50% 0%, rgba(245,197,24,0.09), transparent 60%), var(--bg);
  border-bottom: 1px solid var(--border);
}

.page-header h1 {
  font-family: var(--font-title);
  font-size: clamp(2.8rem, 7vw, 4.6rem);
  letter-spacing: 1.5px;
  color: var(--accent);
}

.page-header p {
  color: var(--muted);
  max-width: 560px;
  margin: 18px auto 0;
  font-weight: 300;
}

/* ===========================================================
   MENU PAGE
   =========================================================== */
.menu-page { padding-top: 60px; }

.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 60px;
  position: sticky;
  top: var(--nav-height);
  z-index: 50;
  background: rgba(15,15,15,0.96);
  backdrop-filter: blur(10px);
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.menu-tab {
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  color: var(--muted);
  background: var(--card);
  border: 1px solid var(--border-soft);
  transition: all 0.3s ease;
}

.menu-tab:hover { color: var(--text); border-color: var(--accent); }

.menu-tab.active {
  background: var(--accent);
  color: #14110a;
  border-color: var(--accent);
}

.menu-category { display: none; }
.menu-category.active { display: block; animation: fadeUp 0.5s var(--ease); }

.menu-category-title {
  font-family: var(--font-title);
  font-size: 2.1rem;
  letter-spacing: 1px;
  margin-bottom: 8px;
  text-align: center;
  color: var(--accent);
}

.menu-category-title .alt { color: var(--text); }

.menu-banner {
  display: block;
  max-width: 480px;
  margin: 12px auto 44px;
  background: var(--accent);
  color: #14110a;
  text-align: center;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.3px;
  padding: 13px 24px;
  border-radius: 50px;
}

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

.menu-item {
  background: var(--card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 26px 28px;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.menu-item:hover {
  transform: translateY(-5px);
  border-color: var(--border);
  box-shadow: 0 18px 40px rgba(0,0,0,0.45);
}

.menu-item-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 10px;
}

.menu-item-name {
  font-family: var(--font-title);
  color: var(--accent);
  font-size: 1.3rem;
  letter-spacing: 0.5px;
}

.menu-item-price {
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
  font-size: 1.05rem;
}

.menu-item-desc {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 300;
}

.menu-item-sizes {
  margin-top: 14px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.menu-item-sizes div {
  font-size: 0.8rem;
  color: var(--muted);
  background: rgba(255,255,255,0.04);
  padding: 7px 14px;
  border-radius: 8px;
}

.menu-item-sizes div b { color: var(--text); font-weight: 700; }

/* ===========================================================
   GALLERY PAGE (masonry + lightbox)
   =========================================================== */
.gallery-page { padding-top: 60px; padding-bottom: 110px; }

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

.masonry-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  border: 1px solid var(--border-soft);
}

.masonry-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.masonry-item:hover img { transform: scale(1.05); }

.masonry-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.masonry-overlay .icon {
  width: 30px;
  height: 30px;
  color: var(--accent);
  transform: scale(0.8);
  transition: transform 0.35s ease;
}

.masonry-item:hover .masonry-overlay { opacity: 1; }
.masonry-item:hover .masonry-overlay .icon { transform: scale(1); }

.masonry-item.span-s { grid-row-end: span 22; }
.masonry-item.span-m { grid-row-end: span 28; }
.masonry-item.span-l { grid-row-end: span 34; }
.masonry-item.span-xl { grid-row-end: span 40; }

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease;
}

.lightbox.open { opacity: 1; visibility: visible; }

.lightbox img {
  max-width: 88vw;
  max-height: 82vh;
  border-radius: 10px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.7);
}

.lightbox-close, .lightbox-nav {
  position: absolute;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--text);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, color 0.3s ease;
}

.lightbox-close .icon, .lightbox-nav .icon { width: 20px; height: 20px; }
.lightbox-close:hover, .lightbox-nav:hover { background: var(--accent); color: #14110a; }
.lightbox-close { top: 28px; right: 28px; }
.lightbox-nav.prev { left: 28px; top: 50%; transform: translateY(-50%); }
.lightbox-nav.next { right: 28px; top: 50%; transform: translateY(-50%); }

/* ===========================================================
   ABOUT PAGE
   =========================================================== */
.about-story {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.15rem;
  color: #e3e3e3;
  margin-bottom: 70px;
  font-weight: 300;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-bottom: 80px;
}

.value-card {
  background: var(--card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 40px 22px;
  text-align: center;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
}

.value-card:hover { transform: translateY(-8px); border-color: var(--border); }

.value-icon-wrap {
  width: 60px;
  height: 60px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: rgba(245,197,24,0.1);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.value-icon-wrap .icon { width: 26px; height: 26px; }

.value-title {
  font-family: var(--font-title);
  font-size: 1.2rem;
  letter-spacing: 0.5px;
  color: var(--accent);
}

.rating-banner {
  max-width: 460px;
  margin: 0 auto;
  text-align: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
}

.rating-banner .stars { display: flex; justify-content: center; gap: 4px; color: var(--accent); margin-bottom: 14px; }
.rating-banner .stars .icon { width: 24px; height: 24px; }
.rating-banner .score { font-family: var(--font-title); font-size: 2.3rem; margin-bottom: 4px; }
.rating-banner .count { color: var(--muted); font-size: 0.9rem; }

/* ===========================================================
   CONTACT PAGE
   =========================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.contact-info-list { display: flex; flex-direction: column; gap: 20px; margin-bottom: 44px; }

.contact-info-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 22px 24px;
}

.contact-info-item .icon-wrap {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(245,197,24,0.1);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.contact-info-item .icon-wrap .icon { width: 20px; height: 20px; }

.contact-info-item h4 {
  font-family: var(--font-title);
  font-size: 1.05rem;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
  color: var(--text);
}

.contact-info-item p { color: var(--muted); font-size: 0.92rem; font-weight: 300; }

.section-label {
  font-family: var(--font-title);
  font-size: 1.2rem;
  letter-spacing: 1px;
  margin-bottom: 18px;
  color: var(--text);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 44px;
}

.service-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--card);
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 0.87rem;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.service-pill .icon { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; }
.service-pill:hover { border-color: var(--accent); color: var(--accent); }

.contact-social {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.contact-social a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1.5px solid var(--accent);
  color: var(--accent);
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.contact-social a .icon { width: 18px; height: 18px; }

.contact-social a:hover {
  background: var(--accent);
  color: #14110a;
  transform: translateY(-3px);
}

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-soft);
  margin-top: 32px;
}

.map-embed iframe { width: 100%; height: 320px; border: 0; display: block; filter: grayscale(0.3) contrast(1.1); }

.contact-form {
  background: var(--card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 40px;
}

.form-group { margin-bottom: 22px; }

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 9px;
  color: var(--muted);
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: #0f0f0f;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(245,197,24,0.15);
}

.form-group textarea { resize: vertical; min-height: 130px; }

.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  background: rgba(245,197,24,0.12);
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 15px 18px;
  border-radius: var(--radius-sm);
  margin-top: 18px;
  font-size: 0.9rem;
}

.form-success.show { display: flex; animation: fadeUp 0.4s ease; }
.form-success .icon { width: 18px; height: 18px; flex-shrink: 0; }

/* ===========================================================
   RESPONSIVE
   =========================================================== */
@media (max-width: 1024px) {
  .reviews-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .masonry { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--bg);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.45s var(--ease), opacity 0.35s ease;
    padding: 0 28px;
    border-bottom: 1px solid transparent;
  }

  .nav-links.open {
    max-height: 70vh;
    opacity: 1;
    padding: 14px 28px 30px;
    border-bottom-color: var(--border);
  }

  .nav-links a:not(.nav-cta) { width: 100%; padding: 15px 0; border-bottom: 1px solid var(--border-soft); }
  .nav-links a:not(.nav-cta)::after { display: none; }
  .nav-cta { margin-top: 14px; width: 100%; text-align: center; }

  .nav-toggle { display: flex; }

  .video-grid { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; }
  .masonry { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .carousel-arrow.prev { margin-right: -14px; }
  .carousel-arrow.next { margin-left: -14px; }
}

@media (max-width: 560px) {
  section { padding: 72px 0; }
  .hero-cta-group { flex-direction: column; width: 100%; }
  .hero-cta-group .btn { width: 100%; }
  .values-grid { grid-template-columns: 1fr; }
  .masonry { grid-template-columns: 1fr; }
  .menu-item-head { flex-direction: column; align-items: flex-start; gap: 4px; }
  .carousel-3d-card { width: 60vw; }
  .footer-nav { gap: 16px 24px; }
}
