/* ============================================================
   BREW N CUE — Global Stylesheet
   ============================================================ */

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

/* ===== RESET & VARIABLES ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --teal:       #2F6F6D;
  --teal-dark:  #1e4f4d;
  --teal-light: #e8f4f4;
  --peach:      #F4B6A6;
  --peach-light:#fdf0eb;
  --cream:      #FFF8F3;
  --brown:      #3a2a22;
  --brown-mid:  #5A3E36;
  --brown-muted:#9a7a72;
  --white:      #ffffff;
  --overlay:    rgba(10, 18, 18, 0.52);
  --shadow-sm:  0 2px 16px rgba(47,111,109,0.10);
  --shadow-md:  0 8px 32px rgba(47,111,109,0.16);
  --shadow-lg:  0 20px 60px rgba(47,111,109,0.22);
  --radius-sm:  10px;
  --radius-md:  20px;
  --radius-lg:  32px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;
  --font-accent:  'Cormorant Garamond', Georgia, serif;
  --nav-h: 76px;
}

html { 
  height: 100%; 
  scroll-behavior: smooth; 
  font-size: 16px; 
}

body {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  background: var(--cream);
  color: var(--brown);
  font-family: var(--font-body);
  overflow-x: hidden;
  line-height: 1.6;
}

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

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--teal); border-radius: 4px; }

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 6%;
  transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
#navbar.scrolled {
  background: rgba(255, 248, 243, 0.96);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-sm);
  padding: 14px 6%;
}

.nav-logo {
  width: 148px;
  height: 52px;
  border: none;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-body); font-weight: 600; font-size: 11px;
  color: rgba(255,255,255,0.8); letter-spacing: 1px;
  transition: all 0.3s; cursor: pointer;
  overflow: visible;
  flex: 0 0 auto;
}
#navbar.scrolled .nav-logo {
  border-color: rgba(47,111,109,0.3);
  color: var(--teal);
}
.nav-logo img {
  height: 92px;
  width: auto;
  max-width: none;
  object-fit: contain;
}

.nav-links {
  display: flex; gap: 36px; align-items: center;
}
.nav-links a {
  font-family: var(--font-body); font-weight: 500; font-size: 13.5px;
  color: rgba(255,255,255,0.88);
  letter-spacing: 0.3px;
  position: relative; transition: color 0.25s;
}
#navbar.scrolled .nav-links a { color: var(--brown-mid); }
.nav-links a::after {
  content: ''; position: absolute; bottom: -5px; left: 0;
  width: 0; height: 1.5px;
  background: var(--peach); border-radius: 2px;
  transition: width 0.3s;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta {
  background: var(--teal) !important;
  color: #fff !important;
  padding: 9px 24px !important;
  border-radius: 50px !important;
  box-shadow: 0 3px 18px rgba(47,111,109,0.38) !important;
  transition: all 0.25s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--teal-dark) !important; transform: translateY(-1px) !important; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 6px; z-index: 1100;
}
.hamburger span {
  display: block; width: 24px; height: 2px; border-radius: 2px;
  background: rgba(255,255,255,0.9); transition: all 0.35s;
}
#navbar.scrolled .hamburger span { background: var(--brown); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: radial-gradient(circle at top left, rgba(255,255,255,0.12), transparent 22%),
              linear-gradient(180deg, rgba(18,29,24,0.97), rgba(38,28,21,0.98));
  backdrop-filter: blur(18px);
  padding: 44px 30px 26px;
  flex-direction: column; justify-content: flex-start; align-items: flex-start;
  gap: 32px;
  transform: translateX(16%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s ease;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(244,182,166,0.18), transparent 32%);
  pointer-events: none;
}
.mobile-menu__brand {
  display: flex; align-items: center; gap: 16px;
  width: 100%; padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,0.12);
}
.mobile-menu__brand img {
  width: 52px; height: 52px; object-fit: contain; border-radius: 14px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}
.mobile-menu__brand-text {
  display: flex; flex-direction: column; gap: 4px;
}
.mobile-menu__brand-text span {
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: #fff;
  letter-spacing: 0.08em;
}
.mobile-menu__brand-text small {
  font-family: var(--font-body); font-size: 0.8rem; letter-spacing: 0.26em;
  text-transform: uppercase; color: rgba(255,255,255,0.68);
}
.mobile-menu a {
  font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 700; color: #fff; line-height: 1.02;
  padding: 8px 0; display: inline-block;
  position: relative; opacity: 0; transform: translateY(18px);
  animation: mobileMenuFade 0.42s ease forwards;
}
.mobile-menu a:nth-of-type(1) { animation-delay: 0.14s; }
.mobile-menu a:nth-of-type(2) { animation-delay: 0.20s; }
.mobile-menu a:nth-of-type(3) { animation-delay: 0.26s; }
.mobile-menu a:nth-of-type(4) { animation-delay: 0.32s; }
.mobile-menu a:nth-of-type(5) { animation-delay: 0.38s; }
.mobile-menu a:hover {
  color: var(--peach);
}
.mobile-menu a::after {
  content: '';
  position: absolute; left: 0; bottom: -4px;
  width: 0; height: 2px; background: var(--peach);
  transition: width 0.25s ease;
}
.mobile-menu a:hover::after { width: 100%; }
.mobile-menu-footer {
  font-family: var(--font-body); font-size: 0.85rem; color: rgba(255,255,255,0.64);
  letter-spacing: 0.18em; text-transform: uppercase;
  margin-top: auto;
}
@keyframes mobileMenuFade {
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   HERO — FULL VIEWPORT IMMERSIVE
   ============================================================ */
.hero {
  position: relative;
  width: 100%; height: 100vh; min-height: 600px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: flex-start;
  padding: 0 !important;
  margin: 0 !important;
}

.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transform: scale(1.06);
  animation: heroZoom 16s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1.00); }
}

/* Multi-layer overlay for true dark-edge effect like reference */
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to right, rgba(8,16,14,0.78) 0%, rgba(8,16,14,0.35) 55%, rgba(8,16,14,0.10) 100%),
    linear-gradient(to top,   rgba(8,16,14,0.60) 0%, transparent 50%);
}

.hero-content {
  position: relative; z-index: 2;
  padding: 0 6%;
  max-width: 660px;
  margin-top: 60px;
  animation: heroSlideIn 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}
@keyframes heroSlideIn {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  font-family: var(--font-body); font-size: 11px; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--peach); margin-bottom: 12px;
  opacity: 0; animation: fadeIn 0.8s 0.6s ease forwards;
}
@keyframes fadeIn { to { opacity: 1; } }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 700; color: #fff;
  line-height: 1.15; margin-bottom: 14px;
  opacity: 0; animation: fadeIn 0.8s 0.75s ease forwards;
}
.hero-title em { color: var(--peach); font-style: italic; }

.hero-desc {
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  color: rgba(255,255,255,0.70);
  margin-bottom: 24px; max-width: 440px;
  line-height: 1.6;
  opacity: 0; animation: fadeIn 0.8s 0.9s ease forwards;
}

.hero-actions {
  display: flex; gap: 12px; flex-wrap: wrap;
  opacity: 0; animation: fadeIn 0.8s 1.05s ease forwards;
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--teal); color: #fff;
  font-family: var(--font-body); font-weight: 600; font-size: 13px;
  padding: 12px 28px; border-radius: 50px;
  box-shadow: 0 4px 20px rgba(47,111,109,0.40);
  transition: all 0.3s;
}
.btn-primary:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(47,111,109,0.52);
}

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: #fff;
  border: 1.5px solid rgba(255,255,255,0.48);
  font-family: var(--font-body); font-weight: 500; font-size: 13px;
  padding: 11px 26px; border-radius: 50px;
  transition: all 0.3s;
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.75);
}

/* Scroll indicator */
.hero-scroll {
  position: absolute; bottom: 36px; left: 6%; z-index: 3;
  display: flex; align-items: center; gap: 12px;
  color: rgba(255,255,255,0.45);
  font-size: 10px; font-family: var(--font-body);
  letter-spacing: 2.5px; text-transform: uppercase;
  animation: bounce 2.8s ease-in-out infinite;
}
.hero-scroll::before {
  content: '';
  display: block; width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

/* Swiper hero */
.swiper-hero, .swiper-hero .swiper-wrapper { width: 100%; height: 100vh; min-height: 600px; }
.swiper-hero .swiper-slide { height: 100vh; }
.swiper-pagination-bullet { background: rgba(255,255,255,0.45); opacity: 1; width: 7px; height: 7px; }
.swiper-pagination-bullet-active { background: var(--peach); width: 22px; border-radius: 4px; }

/* ============================================================
   SECTIONS COMMON
   ============================================================ */
section { padding: 96px 6%; }

.section-tag {
  display: inline-block;
  background: var(--teal-light); color: var(--teal);
  font-family: var(--font-body); font-size: 10px; font-weight: 700;
  padding: 5px 15px; border-radius: 50px;
  letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.75rem);
  font-weight: 700; color: var(--brown);
  line-height: 1.22; margin-bottom: 12px;
}

.section-sub {
  color: var(--brown-muted); font-size: 15px;
  max-width: 500px; line-height: 1.8;
}

.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   MENU SECTION
   ============================================================ */
.menu-section {
  background:
    radial-gradient(circle at top right, rgba(47,111,109,0.08), transparent 26%),
    radial-gradient(circle at left center, rgba(244,182,166,0.12), transparent 18%),
    var(--cream);
}

.menu-tabs {
  display: flex;
  flex-wrap: nowrap;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 8px;
  margin-bottom: 38px;
  scroll-behavior: smooth;
}
.menu-tab {
  padding: 10px 24px; border-radius: 50px;
  border: 1.5px solid rgba(47,111,109,0.25);
  background: transparent; color: var(--brown-muted);
  font-family: var(--font-body); font-weight: 500; font-size: 13px;
  transition: all 0.25s;
}
.menu-tab.active { background: var(--teal); color: #fff; border-color: var(--teal); box-shadow: var(--shadow-sm); }
.menu-tab:hover:not(.active) { background: var(--teal-light); color: var(--teal); border-color: var(--teal); }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 30px;
  align-items: stretch;
}

.menu-tabs::-webkit-scrollbar { display: none; }
.menu-tab { flex: 0 0 auto; }

.menu-card {
  --menu-accent: var(--teal);
  position: relative;
  grid-column: span 6;
  display: grid;
  grid-template-columns: minmax(240px, 0.95fr) minmax(0, 1.05fr);
  gap: 0;
  align-items: stretch;
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(58,42,34,0.06);
  border-radius: 30px;
  box-shadow: 0 22px 55px rgba(47,111,109,0.08);
  overflow: hidden;
  min-height: 380px;
  isolation: isolate;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.35s ease;
}

.menu-card::before {
  content: "";
  position: absolute;
  inset: auto -12% -45% auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--menu-accent) 16%, transparent);
  filter: blur(10px);
  opacity: 0.7;
  transition: transform 0.45s ease;
}

.menu-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 70px rgba(47,111,109,0.16);
  border-color: rgba(47,111,109,0.16);
}

.menu-card:hover::before {
  transform: scale(1.08);
}

.menu-card.featured {
  grid-column: span 12;
  grid-template-columns: minmax(320px, 1.1fr) minmax(0, 1fr);
  min-height: 420px;
}

.menu-card--airy .menu-copy {
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,255,254,0.98));
}

.menu-card--stacked .menu-highlight:first-child {
  background: color-mix(in srgb, var(--menu-accent) 12%, #fff);
  border-color: color-mix(in srgb, var(--menu-accent) 24%, #fff);
}

.menu-card--compact .menu-copy {
  gap: 18px;
}

.menu-card--compact .menu-mark {
  padding-inline: 10px;
  font-size: 0.74rem;
}

.menu-visual {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.menu-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7,14,14,0.04) 0%, rgba(7,14,14,0.34) 100%),
    linear-gradient(135deg, color-mix(in srgb, var(--menu-accent) 36%, transparent), transparent 55%);
}

.menu-visual::after {
  content: "";
  position: absolute;
  inset: -30% -10%;
  background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,0.24) 50%, transparent 80%);
  transform: translateX(-120%) rotate(10deg);
  transition: transform 0.9s ease;
}

.menu-card:hover .menu-visual::after {
  transform: translateX(120%) rotate(10deg);
}

.menu-image-meta {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 14px;
  z-index: 2;
}

.menu-price-tag {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.90);
  color: var(--brown);
  font-weight: 700;
  font-size: 0.94rem;
  box-shadow: 0 14px 30px rgba(14, 21, 22, 0.14);
}

.menu-vibe-tag {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(10,18,18,0.42);
  color: rgba(255,255,255,0.88);
  backdrop-filter: blur(8px);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.menu-copy {
  position: relative;
  padding: 28px 28px 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
}

.menu-copy-top {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.menu-copy-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
}

.menu-copy-text {
  max-width: 520px;
}

.menu-cat-badge {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 999px;
  display: inline-flex;
  width: fit-content;
  background: rgba(47,111,109,0.08);
}

.cat-pasta   { background: rgba(47,111,109,0.08); color: var(--teal); }
.cat-snacks  { background: rgba(196,112,40,0.08); color: #c47028; }
.cat-desserts { background: rgba(184,56,112,0.08); color: #b83870; }

.menu-mark {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--menu-accent) 10%, #fff);
  color: color-mix(in srgb, var(--menu-accent) 70%, #2f241f);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.menu-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.7rem, 2.4vw, 2.35rem);
  color: var(--brown);
  margin-bottom: 10px;
  line-height: 1.02;
}

.menu-desc {
  font-size: 15px;
  color: var(--brown-muted);
  margin-bottom: 0;
  line-height: 1.85;
}

.menu-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.menu-highlight {
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255,248,243,0.96);
  border: 1px solid rgba(58,42,34,0.08);
  color: var(--brown-mid);
  font-size: 0.85rem;
  line-height: 1.2;
}

.menu-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: auto;
  padding-top: 6px;
}

.menu-pairing {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.menu-pairing-label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brown-muted);
}

.menu-pairing-value {
  font-size: 0.95rem;
  color: var(--brown);
  font-weight: 600;
}

.menu-accent-line {
  width: 84px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--menu-accent), transparent);
}

@media (max-width: 1200px) {
  .menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .menu-card,
  .menu-card.featured {
    grid-column: auto;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .menu-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .menu-card,
  .menu-card.featured {
    min-height: auto;
  }

  .menu-visual {
    min-height: 300px;
  }
}

@media (max-width: 640px) {
  .menu-visual {
    min-height: 260px;
  }

  .menu-copy {
    padding: 22px 18px 20px;
    gap: 18px;
  }

  .menu-copy-head,
  .menu-footer,
  .menu-image-meta {
    flex-direction: column;
    align-items: start;
  }

  .menu-highlight {
    width: 100%;
  }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  position: relative; overflow: hidden;
}
.testi-deco { position: absolute; border-radius: 50%; pointer-events: none; }
.testi-deco-1 { width: 420px; height: 420px; top: -120px; right: -100px; background: rgba(255,255,255,0.04); }
.testi-deco-2 { width: 280px; height: 280px; bottom: -80px; left: -60px; background: rgba(244,182,166,0.08); }
.testimonials-section .section-tag { background: rgba(255,255,255,0.14); color: rgba(255,255,255,0.88); }
.testimonials-section .section-title { color: #fff; }
.testimonials-section .section-sub { color: rgba(255,255,255,0.60); }

.testi-card {
  background: #fff; border-radius: var(--radius-md); padding: 28px 26px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  margin: 8px 8px 30px;
}
.stars { display: flex; gap: 3px; margin-bottom: 14px; }
.star { color: var(--peach); font-size: 14px; }
.testi-text {
  font-size: 13.5px; color: var(--brown-muted); line-height: 1.82;
  margin-bottom: 18px; font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--teal-light); border: 2px solid rgba(47,111,109,0.18);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-body); font-weight: 700; font-size: 12px; color: var(--teal);
  flex-shrink: 0;
}
.author-name { font-family: var(--font-body); font-weight: 600; font-size: 13px; color: var(--brown); }
.author-role { font-size: 11px; color: var(--brown-muted); margin-top: 2px; }

.swiper-testi .swiper-pagination-bullet { background: rgba(255,255,255,0.4); opacity: 1; }
.swiper-testi .swiper-pagination-bullet-active { background: #fff; width: 18px; border-radius: 3px; }

/* ============================================================
   ABOUT
   ============================================================ */
.about-section { background: #fff; }
.about-inner { display: grid; grid-template-columns: minmax(320px, 1.05fr) minmax(420px, 1.45fr); gap: 64px; align-items: center; }
.about-img-wrap { position: relative; max-width: 520px; margin: 0 auto; }
.about-img-placeholder {
  width: 100%; aspect-ratio: 4/5; border-radius: 28px;
  background: linear-gradient(135deg, var(--teal-light), #c8e8e6);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 16px; border-radius: 32px; box-shadow: var(--shadow-sm);
  min-height: 360px; padding: 24px;
}
.about-img-placeholder span:first-child { font-size: 56px; opacity: 0.28; }
.about-img-placeholder span:last-child { font-family: var(--font-body); font-size: 13px; color: var(--teal); opacity: 0.75; }
.about-img-placeholder img { width: 100%; height: 100%; object-fit: cover; border-radius: 28px; }
.about-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--teal); color: #fff; border-radius: 50%;
  width: 84px; height: 84px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-family: var(--font-body); font-weight: 700;
  box-shadow: var(--shadow-md);
}
.badge-num { font-size: 24px; line-height: 1; }
.badge-lbl { font-size: 10px; text-align: center; opacity: 0.85; line-height: 1.3; }
.about-text { display: flex; flex-direction: column; gap: 24px; }
.about-text p { font-size: 15px; color: var(--brown-muted); line-height: 1.85; margin-bottom: 0; }
.about-stats { display: grid; grid-template-columns: repeat(2, minmax(140px, 1fr)); gap: 24px; margin-top: 24px; }
.stat-num {
  font-family: var(--font-display); font-weight: 700; font-size: 30px;
  color: var(--teal); line-height: 1; margin-bottom: 4px;
}
.stat-lbl { font-family: var(--font-body); font-size: 11px; color: var(--brown-muted); text-transform: uppercase; letter-spacing: 1px; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-section { background: var(--cream); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius-md); overflow: hidden;
  cursor: pointer; position: relative;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94);
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item:nth-child(1) { grid-column: span 2; aspect-ratio: 2/1; }
.gallery-item:nth-child(4) { grid-column: span 2; aspect-ratio: 2/1; }
.gallery-item:nth-child(2),.gallery-item:nth-child(3),
.gallery-item:nth-child(5),.gallery-item:nth-child(6) { aspect-ratio: 1; }
.g-placeholder {
  width: 100%; height: 100%; min-height: 180px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94);
}
.gallery-item:hover .g-placeholder { transform: scale(1.07); }
.g1 { background: linear-gradient(135deg,#2F6F6D,#1e4f4d); }
.g2 { background: linear-gradient(135deg,#7a3e2a,#4a2518); }
.g3 { background: linear-gradient(135deg,#3a4a30,#1a2a18); }
.g4 { background: linear-gradient(135deg,#6f5a2F,#3a3018); }
.g5 { background: linear-gradient(135deg,#2F3a6f,#1a2050); }
.g6 { background: linear-gradient(135deg,#6f2F5a,#3a1830); }
.g-icon  { font-size: 32px; opacity: 0.4; color: #fff; }
.g-label { font-family: var(--font-body); font-size: 11px; font-weight: 500; color: rgba(255,255,255,0.55); }
.gallery-hover-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(47,111,109,0), rgba(47,111,109,0.42));
  opacity: 0; transition: opacity 0.35s;
  display: flex; align-items: center; justify-content: center;
}
.gallery-item:hover .gallery-hover-overlay { opacity: 1; }
.gallery-zoom { color: #fff; font-size: 30px; transform: scale(0.6); opacity: 0; transition: all 0.3s; }
.gallery-item:hover .gallery-zoom { transform: scale(1); opacity: 1; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section { background: #fff; }
.contact-inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: start; }
.map-wrap iframe, .map-wrap {
  width: 100%; height: 340px; border-radius: var(--radius-md); border: none;
}
.map-placeholder {
  background: var(--teal-light);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; border: 2px dashed rgba(47,111,109,0.3);
  font-family: var(--font-body);
}
.map-placeholder .map-icon  { font-size: 38px; opacity: 0.4; }
.map-placeholder .map-title { font-size: 14px; font-weight: 600; color: var(--teal); }
.map-placeholder .map-hint  { font-size: 11px; color: var(--teal); opacity: 0.65; text-align: center; max-width: 200px; }
.contact-info { display: flex; flex-direction: column; gap: 14px; }
.info-item {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--cream); border-radius: var(--radius-md); padding: 18px 20px;
  transition: all 0.25s;
}
.info-item:hover { box-shadow: var(--shadow-sm); transform: translateX(4px); }
.info-icon {
  width: 46px; height: 46px; border-radius: 14px; background: var(--teal); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0;
}
.info-label { font-family: var(--font-body); font-weight: 600; font-size: 11px; color: var(--brown); margin-bottom: 5px; text-transform: uppercase; letter-spacing: 0.5px; }
.info-val { font-size: 14px; color: var(--brown-muted); line-height: 1.7; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: linear-gradient(160deg, #0e2020 0%, #080f10 100%);
  color: rgba(255,255,255,0.55);
  padding: 64px 6% 32px;
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 52px;
}
.footer-logo { width: 120px; height: 42px; display: flex; align-items: center; justify-content: center; font-size: 11px; color: rgba(255,255,255,0.3); margin-bottom: 18px; }
.footer-desc { font-size: 13px; line-height: 1.82; max-width: 230px; margin-bottom: 24px; color: rgba(255,255,255,0.42); }
.social-row { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px; border-radius: 11px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.09);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55); font-size: 14px; font-weight: 500;
  transition: all 0.25s;
}
.social-btn:hover { background: var(--teal); border-color: var(--teal); color: #fff; transform: translateY(-2px); }
.footer-col-title { font-family: var(--font-body); font-weight: 600; font-size: 13px; color: rgba(255,255,255,0.8); margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 11px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.40); transition: color 0.2s; display: flex; align-items: center; gap: 6px; }
.footer-links a:hover { color: var(--peach); }
.footer-links a::before { content: '›'; color: var(--teal); opacity: 0.7; font-size: 15px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-copy, .footer-love { font-size: 12px; color: rgba(255,255,255,0.28); }
.footer-love span { color: var(--peach); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  padding-top: var(--nav-h);
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 100%);
  padding-bottom: 64px; text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero .section-tag { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.9); position: relative; z-index: 1; }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(2.2rem,5vw,3.5rem); font-weight: 700; color: #fff; margin-top: 12px; position: relative; z-index: 1; }
.page-hero p { font-size: 15px; color: rgba(255,255,255,0.65); margin-top: 12px; position: relative; z-index: 1; }

/* ============================================================
   REELS SECTION
   ============================================================ */
.reels-section { background: #fff; overflow: hidden; }
.reels-track {
  display: flex; gap: 18px; overflow-x: auto; padding: 16px 0 22px;
  scrollbar-width: thin; scrollbar-color: var(--peach) var(--cream);
  cursor: grab; user-select: none;
}
.reels-track:active { cursor: grabbing; }
.reel-card {
  flex: 0 0 210px; border-radius: 22px; overflow: hidden;
  box-shadow: 0 6px 28px rgba(90,62,54,0.12);
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
.reel-card:hover { transform: scale(1.05) translateY(-4px); }
.reel-placeholder {
  width: 210px; height: 374px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; color: rgba(255,255,255,0.85); font-family: var(--font-body);
}
.reel-play { width: 52px; height: 52px; border-radius: 50%; background: rgba(255,255,255,0.2); border: 2px solid rgba(255,255,255,0.5); display: flex; align-items: center; justify-content: center; font-size: 18px; }
.reel-label { font-size: 13px; font-weight: 500; }
.reel-hint { font-size: 10px; opacity: 0.5; text-align: center; padding: 0 16px; }
.reel-bg-1 { background: linear-gradient(160deg,#2F6F6D,#1e4f4d,#0d2e2d); }
.reel-bg-2 { background: linear-gradient(160deg,#7a3e2a,#4a2518,#2a1208); }
.reel-bg-3 { background: linear-gradient(160deg,#1e3a50,#0f2030,#072040); }
.reel-bg-4 { background: linear-gradient(160deg,#4a3060,#2a1840,#150c20); }
.reel-bg-5 { background: linear-gradient(160deg,#3a5030,#1a3018,#0a1808); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
  .menu-grid { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
}
@media (max-width: 900px) {
  .about-inner, .contact-inner { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .gallery-item:nth-child(1),.gallery-item:nth-child(4) { grid-column: span 1; aspect-ratio: 1; }
  .about-badge { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .menu-card { grid-template-columns: 1fr; }
  .menu-visual { min-height: 280px; }
  .menu-tab { white-space: nowrap; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .menu-grid { gap: 24px; }
  .menu-tabs { gap: 12px; }
  .menu-tab { font-size: 14px; padding: 10px 18px; }
  section { padding: 56px 5%; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .about-stats { gap: 20px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .menu-img { margin: 0 auto; }
}
.reels-home {
  background: var(--white);
  overflow: hidden;
}

.reels-strip {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 16px 0 20px;
  scrollbar-width: thin;
  scrollbar-color: var(--peach) transparent;
  cursor: grab;
  scroll-behavior: auto;
  overscroll-behavior-x: contain;
}

.reels-strip:active {
  cursor: grabbing;
}

.reels-strip::-webkit-scrollbar {
  height: 6px;
}

.reel-frame {
  flex: 0 0 240px;
  border-radius: 24px;
  overflow: hidden;
  background: #1b1512;
  border: 1px solid rgba(90, 62, 54, 0.08);
  box-shadow: 0 10px 30px rgba(90, 62, 54, 0.12);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  will-change: transform;
}

.reel-frame:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 18px 38px rgba(47, 111, 109, 0.16);
}

.reel-video {
  display: block;
  width: 100%;
  height: 426px;
  object-fit: cover;
  background: #000;
}

.reel-caption {
  padding: 14px 16px 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 248, 243, 0.98));
}

.reel-caption strong {
  display: block;
  margin-bottom: 4px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: var(--brown);
}

.reel-caption span {
  display: block;
  color: var(--brown-muted);
  font-size: 12px;
  line-height: 1.6;
}

.reel-frame.is-active {
  transform: translateY(-8px);
  box-shadow: 0 22px 42px rgba(47, 111, 109, 0.18);
}

.reel-note {
  margin-top: 12px;
  padding: 10px 16px;
  border-left: 3px solid var(--peach);
  border-radius: 10px;
  background: var(--peach-light);
  color: var(--brown-muted);
  font-size: 12px;
  line-height: 1.7;
}
.about-section {
  background: #fff;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

/* IMAGE SIDE */
.about-visual {
  position: relative;
}

.about-visual img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

/* floating badge */
.floating-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--teal);
  color: #fff;
  padding: 20px;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.floating-badge h3 {
  font-size: 28px;
}

.floating-badge span {
  font-size: 11px;
  opacity: 0.8;
}

/* CONTENT */
.about-title {
  font-family: var(--font-display);
  font-size: 2.6rem;
  margin-bottom: 16px;
}

.about-desc {
  color: var(--brown-muted);
  line-height: 1.8;
  margin-bottom: 28px;
}

/* STATS */
.about-highlights {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.highlight {
  background: var(--cream);
  padding: 18px 22px;
  border-radius: 16px;
  text-align: center;
  flex: 1;
  transition: 0.3s;
}

.highlight:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}

.highlight h4 {
  font-size: 22px;
  color: var(--teal);
}

.highlight span {
  font-size: 11px;
  color: var(--brown-muted);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-container {
    grid-template-columns: 1fr;
  }

  .about-visual img {
    height: 420px;
  }

  .floating-badge {
    left: 10px;
    bottom: 10px;
  }
}
.signature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 50px;
}

.signature-card {
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: 0.4s;
}

.signature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.signature-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.signature-content {
  padding: 20px;
}

.signature-content h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.signature-content p {
  font-size: 13px;
  color: var(--brown-muted);
}

@media (max-width: 1024px) {
  .signature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-container {
    gap: 48px;
  }
}

@media (max-width: 640px) {
  .reels-section {
    padding-inline: 5%;
  }

  .reel-frame {
    flex-basis: min(78vw, 250px);
  }

  .reel-video {
    height: 360px;
  }

  .signature-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .signature-card img {
    height: 220px;
  }

  .about-highlights {
    flex-direction: column;
  }

  .highlight {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
