/* ═══════════════════════════════════════
   CHEEKY CHARLIE'S — CLEARPATH BUILD
   SEED_07 Street Food Energy + Caribbean
   ═══════════════════════════════════════ */

:root {
  --cc-black: #0D0D0D;
  --cc-dark: #1A1A1A;
  --cc-card: #222222;
  --cc-gold: #D4A843;
  --cc-gold-bright: #F0C75E;
  --cc-red: #C0392B;
  --cc-red-bright: #E74C3C;
  --cc-green: #1E8C45;
  --cc-green-bright: #27AE60;
  --cc-cream: #F5E6C8;
  --cc-white: #FAFAF5;
  --cc-text: #F5F5F0;
  --cc-text-muted: #A0A0A0;
  --cc-text-dim: #707070;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-accent: 'Playfair Display', serif;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-pill: 100px;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font-body);
  background: var(--cc-black);
  color: var(--cc-text);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 var(--space-md); }

.section-label {
  font-family: var(--font-display);
  font-size: clamp(0.85rem, 2vw, 1rem);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cc-gold);
  margin-bottom: var(--space-xs);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.05;
  color: var(--cc-cream);
}

/* ── HEADER ── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(13,13,13,0.92);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212,168,67,0.15);
  transition: background 0.3s;
}

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.6rem var(--space-md); max-width: 1200px; margin: 0 auto;
}

.header-logo { display: flex; align-items: center; gap: 0.6rem; }
.header-logo img { width: 48px; height: 48px; border-radius: 50%; }

.header-logo-text {
  font-family: var(--font-display); font-size: 1.2rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--cc-gold); line-height: 1.1;
}
.header-logo-text span {
  display: block; font-size: 0.65rem; letter-spacing: 0.18em; color: var(--cc-text-muted);
}

.nav-desktop { display: none; align-items: center; gap: var(--space-md); }
.nav-desktop a {
  font-family: var(--font-display); font-size: 0.95rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--cc-text-muted); transition: color 0.2s;
}
.nav-desktop a:hover { color: var(--cc-gold); }

.btn-order {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-display); font-size: 1rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--cc-red); color: var(--cc-white);
  padding: 0.65rem 1.6rem; border-radius: var(--radius-pill);
  border: none; cursor: pointer;
  transition: background 0.2s, transform 0.15s; white-space: nowrap;
}
.btn-order:hover { background: var(--cc-red-bright); transform: translateY(-1px); }
.btn-order-sm { font-size: 0.85rem; padding: 0.5rem 1.2rem; }

.nav-toggle {
  display: flex; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.nav-toggle span {
  display: block; width: 26px; height: 2px; background: var(--cc-gold);
  border-radius: 2px; transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav-mobile {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(13,13,13,0.97); z-index: 999;
  flex-direction: column; align-items: center; justify-content: center; gap: var(--space-lg);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--font-display); font-size: 2rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--cc-cream); transition: color 0.2s;
}
.nav-mobile a:hover { color: var(--cc-gold); }

@media (min-width: 768px) {
  .nav-desktop { display: flex; }
  .nav-toggle { display: none; }
}

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

.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(13,13,13,0.92) 0%, rgba(13,13,13,0.75) 40%, rgba(13,13,13,0.55) 100%);
}

.hero::before {
  content: ''; position: absolute; top: -10%; right: -5%;
  width: 50%; height: 130%;
  background: repeating-linear-gradient(-45deg, transparent, transparent 40px, rgba(212,168,67,0.03) 40px, rgba(212,168,67,0.03) 42px);
  z-index: 1; pointer-events: none;
}

.hero-content {
  position: relative; z-index: 2; width: 100%; max-width: 1200px;
  margin: 0 auto; padding: 0 var(--space-md);
  display: grid; grid-template-columns: 1fr; gap: var(--space-lg); align-items: center;
}

.hero-text { max-width: 600px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(212,168,67,0.12); border: 1px solid rgba(212,168,67,0.25);
  border-radius: var(--radius-pill); padding: 0.4rem 1rem;
  font-family: var(--font-display); font-size: 0.8rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--cc-gold); margin-bottom: var(--space-md);
}
.hero-badge::before { content: '\1F525'; font-size: 0.9rem; }

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5.5rem);
  line-height: 0.95; letter-spacing: 0.03em;
  text-transform: uppercase; color: var(--cc-cream);
  margin-bottom: var(--space-sm);
}
.hero h1 .accent { color: var(--cc-gold); display: block; }

.hero-sub {
  font-size: 1.1rem; color: var(--cc-text-muted);
  margin-bottom: var(--space-lg); max-width: 420px; line-height: 1.6;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: var(--space-sm); align-items: center; }

.btn-call {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-display); font-size: 0.95rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--cc-text-muted); border: 1px solid rgba(255,255,255,0.15);
  padding: 0.65rem 1.4rem; border-radius: var(--radius-pill);
  transition: border-color 0.2s, color 0.2s;
}
.btn-call:hover { border-color: var(--cc-gold); color: var(--cc-gold); }

.hero-preview { display: none; grid-template-columns: repeat(3, 1fr); gap: var(--space-sm); }

.preview-card {
  position: relative; border-radius: var(--radius-md);
  overflow: hidden; aspect-ratio: 3/4; background: var(--cc-card);
}
.preview-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.preview-card:hover img { transform: scale(1.05); }
.preview-card-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: var(--space-xs) var(--space-sm);
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  font-family: var(--font-display); font-size: 0.85rem;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--cc-cream);
}

@media (min-width: 900px) {
  .hero-content { grid-template-columns: 1fr 1fr; }
  .hero-preview { display: grid; }
}

/* ── OFFERS STRIP ── */
.offers-strip {
  background: var(--cc-dark);
  border-top: 2px solid var(--cc-gold);
  border-bottom: 1px solid rgba(212,168,67,0.1);
  padding: var(--space-md) 0;
}
.offers-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-sm); }
.offer-card {
  display: flex; align-items: center; gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: rgba(212,168,67,0.06); border: 1px solid rgba(212,168,67,0.12);
  border-radius: var(--radius-md);
}
.offer-icon { font-size: 1.8rem; flex-shrink: 0; }
.offer-card h3 {
  font-family: var(--font-display); font-size: 1.1rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--cc-gold); line-height: 1.2;
}
.offer-card p { font-size: 0.85rem; color: var(--cc-text-muted); margin-top: 0.15rem; }

@media (min-width: 768px) { .offers-grid { grid-template-columns: repeat(3, 1fr); } }

/* ── TRUST STRIP ── */
.trust-strip {
  background: var(--cc-black); padding: var(--space-md) 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.trust-items { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--space-md) var(--space-lg); }
.trust-item { display: flex; align-items: center; gap: 0.6rem; font-size: 0.9rem; color: var(--cc-text-muted); }
.trust-icon {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; background: rgba(30,140,69,0.15);
  border-radius: 50%; font-size: 1rem;
}
.trust-icon.gold { background: rgba(212,168,67,0.15); }
.trust-item strong { color: var(--cc-cream); font-weight: 600; }

/* ── ABOUT ── */
.about-section { padding: var(--space-2xl) 0; background: var(--cc-black); }
.about-inner { display: grid; grid-template-columns: 1fr; gap: var(--space-lg); align-items: center; }
.about-img { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; background: var(--cc-card); }
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-text p { font-size: 1.05rem; color: var(--cc-text-muted); line-height: 1.7; margin-bottom: var(--space-sm); }
.about-text p:first-of-type { font-size: 1.15rem; color: var(--cc-cream); }

@media (min-width: 768px) { .about-inner { grid-template-columns: 1fr 1.2fr; } }

/* ── MENU ── */
.menu-section { padding: var(--space-2xl) 0; background: var(--cc-dark); }
.menu-header { text-align: center; margin-bottom: var(--space-xl); }
.menu-header .section-title { margin-bottom: var(--space-xs); }
.menu-header p { color: var(--cc-text-muted); font-size: 0.95rem; }

.menu-category { margin-bottom: var(--space-xl); }
.menu-category:last-of-type { margin-bottom: 0; }

.menu-cat-heading {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--cc-gold); padding-bottom: var(--space-xs);
  border-bottom: 2px solid rgba(212,168,67,0.2);
  margin-bottom: var(--space-md);
  display: flex; align-items: center; gap: 0.6rem;
}

.menu-cat-intro {
  font-size: 0.9rem; color: var(--cc-text-dim);
  font-style: italic; margin-bottom: var(--space-md);
  margin-top: calc(-1 * var(--space-xs));
}

.menu-item {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: var(--space-sm) 0; border-bottom: 1px solid rgba(255,255,255,0.04);
}
.menu-item:last-child { border-bottom: none; }
.menu-item-info { flex: 1; padding-right: var(--space-md); }
.menu-item-name { font-weight: 600; font-size: 1rem; color: var(--cc-cream); margin-bottom: 0.2rem; }
.menu-item-desc { font-size: 0.85rem; color: var(--cc-text-dim); line-height: 1.5; }
.menu-item-price {
  font-family: var(--font-display); font-size: 1.15rem;
  letter-spacing: 0.03em; color: var(--cc-gold); flex-shrink: 0; padding-top: 0.15rem;
}

.menu-item-tag {
  display: inline-block; font-size: 0.65rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  padding: 0.15rem 0.5rem; border-radius: var(--radius-sm);
  margin-left: 0.5rem; vertical-align: middle;
}
.tag-popular { background: rgba(192,57,43,0.2); color: var(--cc-red-bright); }
.tag-new { background: rgba(30,140,69,0.2); color: var(--cc-green-bright); }

.deal-card {
  background: rgba(212,168,67,0.06); border: 1px solid rgba(212,168,67,0.15);
  border-radius: var(--radius-md); padding: var(--space-md); margin-bottom: var(--space-sm);
}
.deal-card:last-child { margin-bottom: 0; }
.deal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.5rem; }
.deal-name {
  font-family: var(--font-display); font-size: 1.15rem;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--cc-cream);
}
.deal-price { font-family: var(--font-display); font-size: 1.3rem; color: var(--cc-gold); }
.deal-desc { font-size: 0.88rem; color: var(--cc-text-muted); line-height: 1.5; }

.menu-cta { text-align: center; margin-top: var(--space-xl); }

.allergy-notice {
  text-align: center; padding: var(--space-md);
  font-size: 0.85rem; color: var(--cc-text-dim); line-height: 1.6;
}
.allergy-notice strong { color: var(--cc-text-muted); }

/* ── GALLERY ── */
.gallery-section { padding: var(--space-2xl) 0; background: var(--cc-black); }
.gallery-header { text-align: center; margin-bottom: var(--space-lg); }
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-xs); }
.gallery-item {
  border-radius: var(--radius-md); overflow: hidden;
  aspect-ratio: 1; background: var(--cc-card);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item:first-child { grid-row: span 2; aspect-ratio: auto; }

@media (min-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: var(--space-sm); }
}

/* ── CONTACT ── */
.contact-section { padding: var(--space-2xl) 0; background: var(--cc-dark); }
.contact-inner { display: grid; grid-template-columns: 1fr; gap: var(--space-lg); }

.contact-info-card {
  background: rgba(212,168,67,0.04); border: 1px solid rgba(212,168,67,0.1);
  border-radius: var(--radius-lg); padding: var(--space-lg);
}

.contact-row { display: flex; align-items: flex-start; gap: var(--space-sm); margin-bottom: var(--space-md); }
.contact-row:last-child { margin-bottom: 0; }
.contact-row-icon {
  display: flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; background: rgba(212,168,67,0.1);
  border-radius: 50%; font-size: 1.1rem; flex-shrink: 0;
}
.contact-row-content h3 {
  font-family: var(--font-display); font-size: 0.95rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--cc-gold); margin-bottom: 0.2rem;
}
.contact-row-content p,
.contact-row-content a { font-size: 0.95rem; color: var(--cc-text-muted); line-height: 1.5; }
.contact-row-content a:hover { color: var(--cc-gold); }

.contact-map { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 16/10; background: var(--cc-card); }
.contact-map img { width: 100%; height: 100%; object-fit: cover; }

@media (min-width: 768px) { .contact-inner { grid-template-columns: 1fr 1.3fr; } }

/* ── FOOTER ── */
.site-footer {
  background: var(--cc-black);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: var(--space-lg) 0 var(--space-md);
}

.footer-inner { display: grid; grid-template-columns: 1fr; gap: var(--space-lg); }

.footer-brand { display: flex; align-items: center; gap: 0.8rem; }
.footer-brand img { width: 52px; height: 52px; border-radius: 50%; }
.footer-brand-text {
  font-family: var(--font-display); font-size: 1.1rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--cc-gold); line-height: 1.2;
}
.footer-brand-text span {
  display: block; font-size: 0.6rem; letter-spacing: 0.15em; color: var(--cc-text-dim);
}

.footer-links h4 {
  font-family: var(--font-display); font-size: 0.85rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--cc-gold); margin-bottom: 0.6rem;
}
.footer-links a {
  display: block; font-size: 0.88rem; color: var(--cc-text-dim);
  padding: 0.25rem 0; transition: color 0.2s;
}
.footer-links a:hover { color: var(--cc-cream); }

.footer-bottom {
  text-align: center; padding-top: var(--space-md);
  border-top: 1px solid rgba(255,255,255,0.04);
  margin-top: var(--space-md); font-size: 0.8rem; color: var(--cc-text-dim);
}
.footer-bottom a { color: var(--cc-gold); }

@media (min-width: 768px) { .footer-inner { grid-template-columns: 1.5fr 1fr 1fr; } }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── MOBILE STICKY ORDER ── */
.mobile-order-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 998;
  background: rgba(13,13,13,0.95);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(212,168,67,0.2);
  padding: 0.7rem var(--space-md); text-align: center;
}
.mobile-order-bar .btn-order { width: 100%; justify-content: center; font-size: 1.1rem; padding: 0.8rem; }

@media (max-width: 767px) {
  .mobile-order-bar { display: block; }
  body { padding-bottom: 70px; }
}

/* ── DIVIDER ── */
.page-section-divider { height: 1px; background: rgba(212,168,67,0.08); }
