/* ═══════════════════════════════════════════════════════
   Kat Licious – Main Stylesheet
   Theme: Dark Premium Smoking Aesthetic (Black + Red)
   ═══════════════════════════════════════════════════════ */

/* ── Google Fonts ──────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Raleway:wght@300;400;500;600;700&display=swap');

/* ── CSS Variables ─────────────────────────────────────── */
:root {
  --black:       #0a0a0a;
  --black-soft:  #111111;
  --black-card:  #161616;
  --black-hover: #1e1e1e;
  --red:         #c0392b;
  --red-light:   #e74c3c;
  --red-dark:    #922b21;
  --red-glow:    rgba(192, 57, 43, 0.35);
  --gold:        #c9a84c;
  --white:       #f5f5f5;
  --white-dim:   #aaaaaa;
  --white-muted: #666666;
  --border:      rgba(192, 57, 43, 0.2);
  --border-soft: rgba(255,255,255,0.06);
  --font-serif:  'Playfair Display', Georgia, serif;
  --font-sans:   'Raleway', sans-serif;
  --radius:      6px;
  --radius-lg:   12px;
  --shadow:      0 4px 24px rgba(0,0,0,0.6);
  --shadow-red:  0 4px 24px rgba(192,57,43,0.3);
  --transition:  0.3s ease;
}


/* ── Reset & Base ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  background-color: var(--black);
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: var(--red-light); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--white); }

h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.25;
  color: var(--white);
}

p { color: var(--white-dim); margin-bottom: 1rem; }

ul, ol { list-style: none; }

/* ── Scrollbar ─────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--red-dark); border-radius: 3px; }

/* ── Selection ─────────────────────────────────────────── */
::selection { background: var(--red); color: var(--white); }

/* ─────────────────────────────────────────────────────────
   NAVIGATION
   ───────────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 1.5rem;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition);
}

.navbar.scrolled {
  background: rgba(10,10,10,0.98);
  box-shadow: 0 2px 20px rgba(0,0,0,0.8);
}

.nav-brand {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--white);
  letter-spacing: 1px;
  text-decoration: none;
}
.nav-brand span { color: var(--red-light); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a {
  color: var(--white-dim);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(192,57,43,0.15);
}
.nav-links a.active { color: var(--red-light); }



.nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 0.45rem 1.1rem !important;
  border-radius: 20px !important;
}
.nav-cta:hover { background: var(--red-light) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile nav ─────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: rgba(10,10,10,0.98);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 1.5rem;
    gap: 0.5rem;
    transform: translateY(-110%);
    transition: transform var(--transition);
    z-index: 999;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { width: 100%; padding: 0.75rem 1rem; }
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero:hover .hero-bg { transform: scale(1.0); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.45) 40%,
    rgba(0,0,0,0.75) 80%,
    rgba(10,10,10,1) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem 1.5rem;
  max-width: 800px;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red-light);
  border: 1px solid var(--red);
  padding: 0.35rem 1rem;
  border-radius: 20px;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(2.8rem, 8vw, 6rem);
  font-weight: 700;
  color: var(--white);
  text-shadow: 0 2px 30px rgba(0,0,0,0.8);
  margin-bottom: 1rem;
  letter-spacing: 2px;
}
.hero-title span { color: var(--red-light); }

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(255,255,255,0.75);
  font-weight: 300;
  letter-spacing: 1px;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--white-muted);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero-scroll i { font-size: 1.2rem; color: var(--red); }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ─────────────────────────────────────────────────────────
   BUTTONS
   ───────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(192,57,43,0.4);
}
.btn-primary:hover {
  background: var(--red-light);
  color: var(--white);
  box-shadow: 0 6px 28px rgba(192,57,43,0.6);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-red-outline {
  background: transparent;
  color: var(--red-light);
  border: 1px solid var(--red);
}
.btn-red-outline:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.75rem;
}

.btn-full { width: 100%; justify-content: center; }

/* ─────────────────────────────────────────────────────────
   SECTION LAYOUT
   ───────────────────────────────────────────────────────── */
.section {
  padding: 5rem 1.5rem;
}
.section-sm { padding: 3rem 1.5rem; }

.container {
  max-width: 1200px;
  margin: 0 auto;
}
.container-sm { max-width: 800px; margin: 0 auto; }
.container-xs { max-width: 600px; margin: 0 auto; }

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red-light);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white);
  margin-bottom: 1rem;
}

.section-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(to right, var(--red), transparent);
  margin: 0 auto 1.5rem;
}

.section-desc {
  font-size: 1rem;
  color: var(--white-dim);
  max-width: 600px;
  margin: 0 auto;
}

/* ─────────────────────────────────────────────────────────
   CARDS
   ───────────────────────────────────────────────────────── */
.card {
  background: var(--black-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-red);
}

/* ─────────────────────────────────────────────────────────
   VIDEO GRID
   ───────────────────────────────────────────────────────── */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.video-card { cursor: pointer; }

.video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--black-soft);
}
.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.video-card:hover .video-thumb img { transform: scale(1.08); }

.video-thumb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.video-card:hover .video-thumb-overlay { opacity: 1; }

.play-btn {
  width: 56px; height: 56px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--white);
  box-shadow: 0 0 30px rgba(192,57,43,0.6);
  transition: transform var(--transition);
}
.video-card:hover .play-btn { transform: scale(1.1); }

.video-badge {
  position: absolute;
  top: 0.75rem; right: 0.75rem;
  background: var(--red);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 0.2rem 0.6rem;
  border-radius: 3px;
  text-transform: uppercase;
}

.video-info {
  padding: 1.25rem;
}
.video-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.video-desc {
  font-size: 0.82rem;
  color: var(--white-muted);
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.video-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.video-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--red-light);
}

/* ─────────────────────────────────────────────────────────
   GALLERY GRID
   ───────────────────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
}

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  background: var(--black-soft);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.1); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
  gap: 0.5rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { font-size: 1.8rem; color: var(--white); }
.gallery-overlay span {
  font-size: 0.75rem;
  color: var(--white-dim);
  letter-spacing: 1px;
}

/* ─────────────────────────────────────────────────────────
   LIGHTBOX
   ───────────────────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.active { opacity: 1; pointer-events: all; }

.lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-inner img,
.lightbox-inner video {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius);
  box-shadow: 0 0 60px rgba(0,0,0,0.8);
}

.lightbox-close {
  position: fixed;
  top: 1.5rem; right: 1.5rem;
  width: 44px; height: 44px;
  background: var(--red);
  border: none;
  border-radius: 50%;
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  z-index: 10000;
}
.lightbox-close:hover { background: var(--red-light); }

.lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: var(--white);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  z-index: 10000;
}
.lightbox-nav:hover { background: var(--red); border-color: var(--red); }
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }

.lightbox-caption {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white-dim);
  font-size: 0.85rem;
  letter-spacing: 1px;
  z-index: 10000;
}

/* ─────────────────────────────────────────────────────────
   LINKS PAGE
   ───────────────────────────────────────────────────────── */
.links-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6rem 1.5rem 3rem;
  background: radial-gradient(ellipse at top, rgba(192,57,43,0.12) 0%, transparent 60%);
}

.links-profile {
  text-align: center;
  margin-bottom: 2.5rem;
}
.links-avatar {
  width: 110px; height: 110px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--red);
  box-shadow: 0 0 30px var(--red-glow);
  margin: 0 auto 1rem;
}
.links-name {
  font-size: 1.6rem;
  font-family: var(--font-serif);
  color: var(--white);
  margin-bottom: 0.25rem;
}
.links-tagline {
  font-size: 0.82rem;
  color: var(--white-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.links-list {
  width: 100%;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.link-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--black-card);
  border: 1px solid var(--border-soft);
  border-radius: 50px;
  padding: 0.9rem 1.5rem;
  color: var(--white);
  text-decoration: none;
  transition: all var(--transition);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}
.link-row:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(192,57,43,0.4);
}
.link-row i {
  font-size: 1.1rem;
  width: 24px;
  text-align: center;
  flex-shrink: 0;
}
.link-row span { flex: 1; }

/* ─────────────────────────────────────────────────────────
   FORMS
   ───────────────────────────────────────────────────────── */
.form-group { margin-bottom: 1.25rem; }

.form-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white-dim);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  background: var(--black-soft);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  padding: 0.75rem 1rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-control:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(192,57,43,0.15);
}
.form-control::placeholder { color: var(--white-muted); }

textarea.form-control { resize: vertical; min-height: 120px; }

select.form-control {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23aaa' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-hint {
  font-size: 0.75rem;
  color: var(--white-muted);
  margin-top: 0.35rem;
}

.form-error {
  font-size: 0.78rem;
  color: var(--red-light);
  margin-top: 0.35rem;
}

/* ─────────────────────────────────────────────────────────
   ALERTS
   ───────────────────────────────────────────────────────── */
.alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.88rem;
  margin-bottom: 1.5rem;
  border-left: 3px solid;
}
.alert-success {
  background: rgba(39,174,96,0.12);
  border-color: #27ae60;
  color: #2ecc71;
}
.alert-error {
  background: rgba(192,57,43,0.12);
  border-color: var(--red);
  color: var(--red-light);
}
.alert-info {
  background: rgba(52,152,219,0.12);
  border-color: #3498db;
  color: #5dade2;
}

/* ─────────────────────────────────────────────────────────
   PAGINATION
   ───────────────────────────────────────────────────────── */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}
.pagination a,
.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
  transition: all var(--transition);
  border: 1px solid var(--border-soft);
  color: var(--white-dim);
  text-decoration: none;
}
.pagination a:hover { background: var(--black-hover); color: var(--white); border-color: var(--border); }
.pagination .current { background: var(--red); color: var(--white); border-color: var(--red); }
.pagination .disabled { opacity: 0.3; cursor: not-allowed; }

/* ─────────────────────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────────────────────── */
.footer {
  background: var(--black-soft);
  border-top: 1px solid var(--border-soft);
  padding: 3rem 1.5rem 1.5rem;
  margin-top: auto;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: start;
}

.footer-brand {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.footer-brand span { color: var(--red-light); }

.footer-tagline {
  font-size: 0.8rem;
  color: var(--white-muted);
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}
.footer-socials a {
  width: 36px; height: 36px;
  background: var(--black-card);
  border: 1px solid var(--border-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-dim);
  font-size: 0.9rem;
  transition: all var(--transition);
}
.footer-socials a:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: right;
}
.footer-nav a {
  font-size: 0.8rem;
  color: var(--white-muted);
  letter-spacing: 0.5px;
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--red-light); }

.footer-bottom {
  max-width: 1200px;
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-copy {
  font-size: 0.75rem;
  color: var(--white-muted);
}
.footer-legal {
  display: flex;
  gap: 1rem;
}
.footer-legal a {
  font-size: 0.75rem;
  color: var(--white-muted);
}
.footer-legal a:hover { color: var(--red-light); }

@media (max-width: 600px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-nav { text-align: left; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ─────────────────────────────────────────────────────────
   PAGE HERO (inner pages)
   ───────────────────────────────────────────────────────── */
.page-hero {
  padding: 8rem 1.5rem 4rem;
  text-align: center;
  background: linear-gradient(to bottom, rgba(192,57,43,0.08) 0%, transparent 100%);
  border-bottom: 1px solid var(--border-soft);
}
.page-hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 0.75rem;
}
.page-hero-sub {
  font-size: 1rem;
  color: var(--white-muted);
  letter-spacing: 1px;
}

/* ─────────────────────────────────────────────────────────
   ABOUT PAGE
   ───────────────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
}
.about-img-wrap {
  position: relative;
}
.about-img {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-red);
}
.about-img-deco {
  position: absolute;
  bottom: -1rem; right: -1rem;
  width: 60%;
  height: 60%;
  border: 2px solid var(--red);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.3;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.stat-box {
  background: var(--black-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
}
.stat-num {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--red-light);
  display: block;
}
.stat-label {
  font-size: 0.7rem;
  color: var(--white-muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ─────────────────────────────────────────────────────────
   SINGLE VIDEO PAGE
   ───────────────────────────────────────────────────────── */
.video-player-wrap {
  background: #000;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
  position: relative;
}
.video-player-wrap video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.video-player-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  background: var(--black-card);
  color: var(--white-muted);
}
.video-player-placeholder i { font-size: 3rem; color: var(--red); }

.video-detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2.5rem;
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .video-detail-grid { grid-template-columns: 1fr; }
}

.video-buy-card {
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  position: sticky;
  top: 90px;
}
.buy-price {
  font-size: 2.5rem;
  font-family: var(--font-serif);
  color: var(--red-light);
  margin-bottom: 1rem;
}
.buy-note {
  font-size: 0.75rem;
  color: var(--white-muted);
  margin-top: 0.75rem;
}

/* ─────────────────────────────────────────────────────────
   FEATURED STRIP
   ───────────────────────────────────────────────────────── */
.featured-section {
  background: var(--black-soft);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

/* ─────────────────────────────────────────────────────────
   BOOKING / CUSTOM / CONTACT FORMS
   ───────────────────────────────────────────────────────── */
.form-card {
  background: var(--black-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  max-width: 680px;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────────────────────
   SMOKE DECORATIVE ELEMENTS
   ───────────────────────────────────────────────────────── */
.smoke-divider {
  text-align: center;
  padding: 1rem 0;
  color: var(--red);
  font-size: 1.2rem;
  opacity: 0.5;
  letter-spacing: 8px;
}

.red-line {
  width: 40px;
  height: 2px;
  background: var(--red);
  display: inline-block;
  vertical-align: middle;
  margin: 0 0.75rem;
}

/* ─────────────────────────────────────────────────────────
   UTILITY CLASSES
   ───────────────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-red    { color: var(--red-light); }
.text-muted  { color: var(--white-muted); }
.text-gold   { color: var(--gold); }
.mt-1  { margin-top: 0.5rem; }
.mt-2  { margin-top: 1rem; }
.mt-3  { margin-top: 1.5rem; }
.mt-4  { margin-top: 2rem; }
.mb-1  { margin-bottom: 0.5rem; }
.mb-2  { margin-bottom: 1rem; }
.mb-3  { margin-bottom: 1.5rem; }
.mb-4  { margin-bottom: 2rem; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.w-100 { width: 100%; }

/* ─────────────────────────────────────────────────────────
   ANIMATIONS
   ───────────────────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(192,57,43,0.4); }
  50%       { box-shadow: 0 0 0 12px rgba(192,57,43,0); }
}

.animate-fade-up  { animation: fadeInUp 0.7s ease forwards; }
.animate-fade     { animation: fadeIn 0.5s ease forwards; }
.pulse            { animation: pulse 2s infinite; }

/* ─────────────────────────────────────────────────────────
   RESPONSIVE HELPERS
   ───────────────────────────────────────────────────────── */
@media (max-width: 480px) {
  .section { padding: 3.5rem 1rem; }
  .form-card { padding: 1.5rem; }
  .video-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
