/* Theme Variables */
:root {
  --bg: #0b0b0b;
  --text: #ffffff;
  --text-dim: #cccccc;
  --gold: #d4af37;
  --red: #c0392b;
  --brown: #6f4e37;
  --surface: #151515;
  --border: #222222;
  --maxw: 1200px;
  --radius: 12px;
  --shadow: 0 10px 30px rgba(0,0,0,0.35);
}

/* Base */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img { max-width: 100%; display: block; border-radius: var(--radius); }
a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

/* Header */
.site-header { position: fixed; inset: 0 0 auto 0; z-index: 50; background: transparent; transition: background-color .3s ease, border-color .3s ease; border-bottom: 1px solid transparent; }
.site-header.scrolled { background: rgba(0,0,0,0.7); backdrop-filter: blur(6px); border-bottom-color: var(--border); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--text); font-weight: 700; letter-spacing: 0.5px; }
.brand:hover { text-decoration: none; }
.brand .logo { width: 36px; height: 36px; object-fit: contain; }
.brand-name { font-size: 18px; }

.nav-toggle { display: none; background: none; color: var(--text); border: 1px solid var(--border); padding: 8px 10px; border-radius: 8px; }
.nav-menu { display: flex; list-style: none; gap: 22px; margin: 0; padding: 0; }
.nav-menu a { color: var(--text); font-weight: 600; }
.nav-menu a:hover { color: var(--gold); }

@media (max-width: 768px) {
  .nav-toggle { display: inline-block; }
  .nav-menu { position: absolute; right: 20px; top: 64px; background: rgba(10,10,10,0.95); border: 1px solid var(--border); border-radius: 10px; padding: 14px; flex-direction: column; align-items: flex-start; min-width: 200px; display: none; }
  .nav-menu.open { display: flex; }
}

/* Hero */
.hero { position: relative; min-height: 100svh; display: grid; place-items: center; text-align: center; }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(0.35) saturate(0.9); }
.hero-overlay { position: absolute; inset: 0; background: radial-gradient(1200px 600px at 50% 50%, rgba(212,175,55,0.06), transparent 70%); pointer-events: none; }
.hero-content { position: relative; z-index: 1; padding: 120px 0 80px; }
.headline { font-size: clamp(32px, 6vw, 56px); line-height: 1.1; margin: 0 0 12px; color: #fff; text-shadow: 0 4px 30px rgba(0,0,0,0.8); }
.subhead { margin: 0 0 28px; color: var(--text-dim); font-size: clamp(16px, 2.2vw, 20px); }
.hero-ctas { display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

.btn { display: inline-block; padding: 12px 18px; border-radius: 999px; font-weight: 700; border: 2px solid transparent; transition: transform .15s ease, background .25s ease, color .25s ease; }
.btn:active { transform: translateY(1px); }
.btn-primary { background: linear-gradient(135deg, var(--gold), #f1d97a); color: #000; }
.btn-primary:hover { background: linear-gradient(135deg, #f1d97a, var(--gold)); }
.btn-secondary { background: transparent; color: #fff; border-color: var(--gold); }
.btn-secondary:hover { background: rgba(212,175,55,0.15); }
.btn-outline { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn-outline:hover { background: rgba(212,175,55,0.12); }

/* Sections */
.section { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 28px; }
.section-header h2 { font-size: clamp(24px, 4vw, 36px); margin: 0 0 6px; }
.section-header p { color: var(--text-dim); margin: 0; }

/* Products */
.products { background: var(--bg); }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); display: flex; flex-direction: column; }
.card-body { padding: 14px; display: grid; gap: 6px; }
.price { color: var(--gold); font-weight: 700; }

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

/* Order */
.order-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.order-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); display: grid; grid-auto-flow: column; align-items: center; gap: 12px; padding: 12px; color: #fff; font-weight: 700; box-shadow: var(--shadow); }
.order-card img { width: 56px; height: 56px; object-fit: cover; border-radius: 10px; }
.order-card.uber { border-color: #2ebd59; }
.order-card.pickme { border-color: #ffdd00; }
.order-card:hover { transform: translateY(-2px); box-shadow: 0 18px 40px rgba(0,0,0,0.5); text-decoration: none; }
@media (max-width: 576px) { .order-grid { grid-template-columns: 1fr; } }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.gallery-grid img { aspect-ratio: 1/1; object-fit: cover; transition: transform .3s ease; }
.gallery-grid img:hover { transform: scale(1.03); }
@media (max-width: 768px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .gallery-grid { grid-template-columns: 1fr; } }

/* Reviews */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.review { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px; box-shadow: var(--shadow); }
.review .stars { color: var(--gold); letter-spacing: 2px; }
@media (max-width: 992px) { .reviews-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 576px) { .reviews-grid { grid-template-columns: 1fr; } }

/* Social */
.social-links { display: flex; gap: 10px; justify-content: center; margin-bottom: 14px; flex-wrap: wrap; }
.social-link { border: 1px solid var(--border); padding: 8px 12px; border-radius: 999px; background: var(--surface); color: #fff; }
.social-link.ig { border-color: #e1306c; }
.social-link.fb { border-color: #1877f2; }
.social-link.tt { border-color: #69c9d0; }
.social-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
@media (max-width: 768px) { .social-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .social-grid { grid-template-columns: 1fr; } }

/* Contact */
.contact .form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.form-field { display: grid; gap: 6px; }
.form-field input, .form-field textarea { background: #0f0f0f; color: #fff; border: 1px solid var(--border); padding: 10px 12px; border-radius: 10px; outline: none; }
.form-field input:focus, .form-field textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212,175,55,0.2); }
.form-full { grid-column: 1 / -1; }
.form-actions { margin-top: 10px; display: flex; align-items: center; gap: 10px; }
.form-status { color: var(--gold); }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
@media (max-width: 576px) { .contact .form-grid { grid-template-columns: 1fr; } }

/* Footer */
.site-footer { background: #0a0a0a; border-top: 1px solid var(--border); padding: 40px 0; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 18px; align-items: start; }
.brand-footer { color: var(--gold); margin: 0 0 6px; }
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 6px; }
.footer-links a { color: #fff; }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; } }

/* Reveal Animations */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .6s ease, transform .6s ease; }
.reveal.reveal-in { opacity: 1; transform: translateY(0); }

/* Utility */
.order { background: linear-gradient(180deg, rgba(111,78,55,0.15), transparent 40%); }
.gallery { background: linear-gradient(180deg, rgba(192,57,43,0.10), transparent 40%); }
.reviews { background: linear-gradient(180deg, rgba(212,175,55,0.10), transparent 40%); }


