/* ============================================================
   KICK GRASS — Website Styles
   ============================================================ */

/* ===== VARIABLES ===== */
:root {
  --bg:          #0B0B0B;
  --bg-card:     #131313;
  --bg-elevated: #1A1A1A;
  --bg-muted:    #111111;

  --primary:     #F5A623;
  --primary-alt: #E8941B;
  --accent:      #E8523A;

  --text:        #F2F2F2;
  --text-muted:  #888888;
  --text-dim:    #4A4A4A;

  --border:      rgba(255, 255, 255, 0.07);
  --border-glow: rgba(245, 166, 35, 0.18);

  --shadow-lg:   0 24px 64px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 8px 32px rgba(245, 166, 35, 0.25);

  --radius:    20px;
  --radius-sm: 10px;
  --radius-xs: 6px;

  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', system-ui, sans-serif;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --transition: all 0.3s var(--ease);

  --max-w: 1200px;
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }

/* ===== LAYOUT HELPERS ===== */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}
.section { padding: 110px 0; }
.desktop-only { display: inline; }

/* ===== TYPOGRAPHY ===== */
.section-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto;
}
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
  line-height: 1;
}
.btn-lg { padding: 16px 32px; font-size: 0.95rem; }

.btn-primary {
  background: var(--primary);
  color: #000;
}
.btn-primary:hover {
  background: var(--primary-alt);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn-ghost {
  border-color: rgba(255,255,255,0.18);
  color: var(--text);
  background: transparent;
}
.btn-ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 22px 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(11, 11, 11, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.nav-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo {
  flex-shrink: 0;
  width: 230px;
  height: 96px;
  overflow: hidden;
  position: relative;
  margin-left: -26px;
}
.nav-logo-img {
  position: absolute;
  /* 163% shows the full mark with ~1px clip each side — essentially unclipped */
  height: 163%;
  width: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 4px 18px rgba(0, 0, 0, 0.55));
  transition: transform 0.3s var(--ease), filter 0.3s;
}
.nav-logo:hover .nav-logo-img {
  transform: translate(-50%, -50%) scale(1.06);
  filter: drop-shadow(0 6px 22px rgba(245, 166, 35, 0.35));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  transition: color 0.25s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1.5px;
  background: var(--primary);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }
.nav-mobile-cta { display: none; }

.nav-cta-group {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 8px;
}
.nqc-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  border: 1.5px solid;
  flex-shrink: 0;
  transition: var(--transition);
}
.nqc-call {
  color: var(--primary);
  border-color: rgba(245, 166, 35, 0.35);
  display: none; /* desktop: hidden; mobile: shown */
}
.nqc-call:hover {
  background: rgba(245, 166, 35, 0.12);
  border-color: var(--primary);
}
.nqc-whatsapp {
  color: #25D366;
  border-color: rgba(37, 211, 102, 0.35);
}
.nqc-whatsapp:hover {
  background: rgba(37, 211, 102, 0.12);
  border-color: #25D366;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/kick-grass-indoor-1.jpg');
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero.loaded .hero-bg { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(11,11,11,0.55) 0%,
    rgba(11,11,11,0.78) 55%,
    rgba(11,11,11,0.97) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  padding: 0 24px;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--primary);
  border: 1px solid rgba(245,166,35,0.35);
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 28px;
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(3.2rem, 8.5vw, 7rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
}
.hero-highlight {
  color: var(--primary);
  font-style: italic;
  text-shadow: 0 0 60px rgba(245, 166, 35, 0.35), 0 0 120px rgba(245, 166, 35, 0.15);
}
.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,0.65);
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  margin-bottom: 44px;
}
.stat { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.stat-number {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.stat-label {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.stat-divider {
  width: 1px;
  height: 44px;
  background: var(--border);
  flex-shrink: 0;
}
.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===== HERO ORBS (ambient glow) ===== */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 1;
}
.hero-orb-1 {
  width: 560px; height: 560px;
  background: rgba(245, 166, 35, 0.14);
  top: -140px; right: -100px;
  animation: orbFloat 9s ease-in-out infinite;
}
.hero-orb-2 {
  width: 340px; height: 340px;
  background: rgba(232, 82, 58, 0.09);
  bottom: 60px; left: -80px;
  animation: orbFloat 7s ease-in-out infinite 3.5s;
}
.hero-orb-3 {
  width: 200px; height: 200px;
  background: rgba(245, 166, 35, 0.07);
  bottom: 30%; right: 15%;
  animation: orbFloat 11s ease-in-out infinite 1.5s;
}
@keyframes orbFloat {
  0%, 100% { transform: scale(1) translateY(0); }
  50% { transform: scale(1.12) translateY(-28px); }
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-mouse {
  width: 24px; height: 40px;
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 7px;
}
.scroll-dot {
  display: block;
  width: 3px; height: 8px;
  background: var(--primary);
  border-radius: 3px;
  animation: scrollDot 1.6s infinite;
}
@keyframes scrollDot {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(9px); opacity: 0.25; }
}

/* ===== TICKER ===== */
.ticker {
  background: var(--primary);
  padding: 15px 0;
  overflow: hidden;
}
.ticker-track { overflow: hidden; }
.ticker-inner {
  display: flex;
  gap: 44px;
  width: max-content;
  animation: tickerRoll 30s linear infinite;
}
.ticker-inner span {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #000;
  white-space: nowrap;
}
.ticker-inner .dot { color: rgba(0,0,0,0.3); }
@keyframes tickerRoll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===== FOOD PHOTO SCROLL ===== */
.photo-scroll {
  overflow: hidden;
  background: var(--bg-muted);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
.photo-scroll:hover .photo-scroll-inner {
  animation-play-state: paused;
}
.photo-scroll-inner {
  display: flex;
  gap: 10px;
  width: max-content;
  animation: psScroll 50s linear infinite;
}
@keyframes psScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ps-item {
  width: 190px;
  height: 130px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  cursor: pointer;
}
.ps-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.65) saturate(0.85);
  transition: filter 0.4s var(--ease), transform 0.4s var(--ease);
}
.ps-item:hover img {
  filter: brightness(1) saturate(1.15);
  transform: scale(1.1);
}
.ps-item span {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 10px 8px;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  text-align: center;
}

/* ===== ABOUT ===== */
.about { background: var(--bg); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
}
.about-visual { position: relative; }
.about-img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
}
.about-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.about-img-wrap:hover img { transform: scale(1.04); }

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 8px 40px rgba(245,166,35,0.45); }
  50% { box-shadow: 0 8px 64px rgba(245,166,35,0.75), 0 0 40px rgba(245,166,35,0.22); }
}
.about-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 104px; height: 104px;
  border-radius: 50%;
  background: var(--primary);
  color: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: badgePulse 3s ease-in-out infinite;
}
.badge-year {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
}
.badge-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-float-card {
  position: absolute;
  top: 24px;
  left: -24px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
}

.about-float-card i {
  font-size: 1.2rem;
  color: var(--primary);
}
.about-float-card strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
}
.about-float-card small {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.about-content .section-title { text-align: left; margin-top: 8px; }
.about-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 18px;
}
.about-pillars {
  display: flex;
  gap: 28px;
  margin-top: 36px;
}
.pillar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.pillar-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  background: rgba(245,166,35,0.1);
  border: 1px solid var(--border-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--primary);
}
.pillar span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* ===== TAGLINE STRIP ===== */
.tagline-strip {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 0;
  text-align: center;
  overflow: hidden;
  position: relative;
}
.tagline-strip::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-head);
  font-size: 18rem;
  line-height: 1;
  color: rgba(245, 166, 35, 0.04);
  pointer-events: none;
  user-select: none;
}
.tagline-quote {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 4.5vw, 3.5rem);
  font-weight: 700;
  font-style: italic;
  color: var(--text);
  letter-spacing: -0.025em;
  line-height: 1.2;
  max-width: 820px;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}
.tagline-quote em {
  color: var(--primary);
  font-style: inherit;
}
.tagline-attr {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  position: relative;
  z-index: 1;
}

/* ===== CUISINE STRIP ===== */
.cuisine-strip {
  background: var(--bg-muted);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.cuisine-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.c-tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 7px 18px;
  transition: var(--transition);
  cursor: default;
}
.c-tag:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* ===== MENU ===== */
.menu { background: var(--bg-card); }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.menu-card {
  background: var(--bg-elevated);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s;
}
.menu-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-glow);
}
.menu-img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.menu-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.menu-card:hover .menu-img img { transform: scale(1.08); }
.menu-badge {
  position: absolute;
  top: 12px; left: 12px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #000;
  background: var(--primary);
  padding: 4px 10px;
  border-radius: 50px;
}
.menu-body {
  padding: 20px 22px 24px;
}
.menu-body h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.menu-body p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.menu-footer {
  border-top: 1px solid var(--border);
  padding-top: 40px;
}
.menu-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 32px;
}
.menu-footer-text {
  display: flex;
  align-items: center;
  gap: 16px;
}
.menu-footer-text i {
  font-size: 2rem;
  color: var(--primary);
  flex-shrink: 0;
}
.menu-footer-text p {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 380px;
}

/* ===== MENU CARD HOVER ACCENT ===== */
.menu-card {
  position: relative;
}
.menu-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0;
  transition: opacity 0.35s;
  z-index: 2;
}
.menu-card:hover::after { opacity: 1; }

/* ===== DESSERTS ===== */
.desserts { background: var(--bg-muted); }
.desserts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.dessert-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  cursor: pointer;
}
.dessert-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.5) saturate(0.85);
  transition: transform 0.6s var(--ease), filter 0.4s;
}
.dessert-card:hover img {
  transform: scale(1.07);
  filter: brightness(0.7) saturate(1.1);
}
.dessert-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px 36px;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.15) 65%, transparent 100%);
}
.dessert-tag {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(245,166,35,0.12);
  border: 1px solid rgba(245,166,35,0.35);
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
  width: fit-content;
}
.dessert-overlay h3 {
  font-family: var(--font-head);
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.15;
}
.dessert-overlay p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.68);
  max-width: 300px;
}

/* ===== GALLERY ===== */
.gallery { background: var(--bg); }
.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 280px 280px 240px;
  gap: 6px;
  overflow: hidden;
}
.g-item {
  position: relative;
  overflow: hidden;
}
.g-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease), filter 0.35s;
  filter: brightness(0.8) saturate(0.9);
}
.g-overlay {
  position: absolute;
  inset: 0;
  background: rgba(245,166,35,0);
  transition: background 0.35s;
}
.g-item:hover img {
  transform: scale(1.07);
  filter: brightness(1) saturate(1.1);
}
.g-item:hover .g-overlay {
  background: rgba(245,166,35,0.08);
}
.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }

/* ===== REVIEWS ===== */
.reviews { background: var(--bg-card); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.review-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 30px;
  transition: transform 0.3s var(--ease), border-color 0.3s;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.review-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-glow);
}
.review-featured {
  background: linear-gradient(145deg, var(--bg-elevated) 0%, rgba(245,166,35,0.07) 100%);
  border-color: rgba(245,166,35,0.2);
  position: relative;
}
.review-featured::before {
  content: '"';
  position: absolute;
  top: 16px; right: 22px;
  font-family: var(--font-head);
  font-size: 5rem;
  line-height: 1;
  color: rgba(245,166,35,0.12);
  pointer-events: none;
}
.review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.stars {
  color: var(--primary);
  letter-spacing: 2px;
  font-size: 1rem;
}
.review-platform {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 5px;
}
.review-text {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.8;
  font-style: italic;
  flex: 1;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.review-author strong {
  display: block;
  font-size: 0.875rem;
}
.review-author small {
  font-size: 0.72rem;
  color: var(--text-dim);
}

.reviews-footer {
  text-align: center;
}
.reviews-footer p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.platform-links {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.platform-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 8px 18px;
  color: var(--text-muted);
  transition: var(--transition);
}
.platform-link:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* ===== CONTACT ===== */
.contact { background: var(--bg); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 88px;
  align-items: start;
}
.contact-info .section-title {
  text-align: left;
  margin-top: 8px;
  margin-bottom: 40px;
}
.info-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.info-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.info-icon {
  width: 46px; height: 46px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  background: rgba(245,166,35,0.09);
  border: 1px solid var(--border-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1rem;
}
.info-body h4 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 6px;
}
.info-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.info-link {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  transition: color 0.25s;
  display: block;
  margin-bottom: 10px;
}
.info-link:hover { color: var(--primary); }

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #25D366;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 50px;
  transition: background 0.25s, transform 0.25s;
}
.whatsapp-btn:hover {
  background: #1DAE53;
  transform: translateY(-2px);
}

.contact-map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}
.contact-map-wrap iframe {
  display: block;
  filter: grayscale(35%) contrast(1.05);
}
.map-directions-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  background: var(--bg-elevated);
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 600;
  border-top: 1px solid var(--border);
  transition: var(--transition);
}
.map-directions-btn:hover {
  background: var(--bg-card);
  color: var(--primary-alt);
}

/* ===== FOOTER ===== */
.footer {
  background: #070707;
  border-top: 1px solid var(--border);
  padding: 72px 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border);
}
.footer-logo {
  width: 112px;
  height: 80px;
  overflow: hidden;
  position: relative;
  margin-bottom: 4px;
}
.footer-logo-img {
  position: absolute;
  height: 163%;
  width: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.5));
}
.footer-brand p {
  font-size: 0.875rem;
  color: var(--text-dim);
  line-height: 1.75;
  margin: 16px 0 24px;
  max-width: 260px;
}
.social-row {
  display: flex;
  gap: 10px;
}
.social-row a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: var(--transition);
}
.social-row a:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-3px);
}
.footer-col h5 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.footer-col ul li {
  margin-bottom: 10px;
  font-size: 0.875rem;
  color: var(--text-dim);
}
.footer-col ul li a {
  transition: color 0.25s, padding-left 0.25s;
}
.footer-col ul li a:hover {
  color: var(--primary);
  padding-left: 4px;
}
.footer-col address {
  font-size: 0.875rem;
  color: var(--text-dim);
  line-height: 1.75;
  margin-bottom: 12px;
}
.footer-phone {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 6px;
  transition: color 0.25s;
}
.footer-phone:hover { color: var(--primary); }
.footer-hours {
  font-size: 0.78rem;
  color: var(--text-dim);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 0.78rem;
  color: var(--text-dim);
  gap: 16px;
  flex-wrap: wrap;
}

/* ===== RESPONSIVE ===== */

/* Tablet */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .about-visual { max-width: 480px; margin: 0 auto; }

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

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer-brand { grid-column: span 2; }

  .gallery-mosaic {
    grid-template-rows: 220px 220px 200px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root { --radius: 16px; }
  .section { padding: 80px 0; }
  .container { padding: 0 20px; }
  .desktop-only { display: none; }

  /* Navbar */
  .navbar { padding: 10px 0; }
  .nav-container { gap: 10px; }
  .nqc-btn { width: 34px; height: 34px; font-size: 0.875rem; }
  .nav-cta-group { margin-left: auto; }
  .hamburger { margin-left: 0; }
  .navbar.scrolled {
    background: rgba(11, 11, 11, 0.60);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }
  .nav-logo {
    width: 150px;
    height: 60px;
    margin-left: -8px;
  }

  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(11,11,11,0.98);
    backdrop-filter: blur(24px);
    z-index: 800;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 36px;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-muted);
  }
  .nav-links a:hover { color: var(--text); }
  .nav-mobile-cta { display: block; margin-top: 8px; }
  .nav-cta { display: none; }
  .nqc-call { display: flex; }
  .hamburger { display: flex; }
  .hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  /* Hero */
  .hero-content { padding-top: 96px; } /* push below mobile navbar (10+60+10=80px) */
  .hero-title { font-size: clamp(2.8rem, 11vw, 4.5rem); }
  .hero-stats { gap: 20px; }
  .hero-cta { flex-direction: column; align-items: center; }

  /* About */
  .about-float-card { display: none; }
  .about-badge { right: -12px; bottom: -12px; width: 80px; height: 80px; }
  .badge-year { font-size: 1.4rem; }
  .about-pillars { gap: 16px; }

  /* Menu */
  .menu-grid { grid-template-columns: 1fr; }
  .menu-footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  /* Gallery */
  .gallery-mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(6, 180px);
  }
  .g-tall { grid-row: span 1; }
  .g-wide { grid-column: span 2; }

  /* Desserts */
  .desserts-grid { grid-template-columns: 1fr; }
  .dessert-card { aspect-ratio: 4 / 3; }
  .dessert-overlay { padding: 20px 22px; }

  /* Reviews */
  .reviews-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { grid-column: 1; }
  .footer-bottom { justify-content: center; text-align: center; }
}

/* Small Mobile */
@media (max-width: 420px) {
  .hero-stats {
    flex-direction: column;
    gap: 12px;
  }
  .stat-divider { width: 48px; height: 1px; }
  .section-title { font-size: 1.8rem; }
}
