*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --rose:           #A31A41;
  --rose-light:     #C94E6E;
  --rose-pale:      #F2D4DC;
  --lavender:       #C9B8D8;
  --lavender-light: #F0EBF8;
  --blue-mist:      #8196B9;
  --night:          #12101E;
  --night-mid:      #1E1A30;
  --white:          #FAFAFA;
  --off-white:      #F7F3F5;
  --text-muted:     #6B6B8A;
  --card-border:    rgba(163, 26, 65, 0.1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--night);
  line-height: 1.6;
  overflow-x: hidden;
}

nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(18, 16, 30, 0.93);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0 2.5rem; height: 58px;
  display: flex; align-items: center; justify-content: space-between;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 700;
  color: var(--rose-pale); letter-spacing: 0.03em;
  text-decoration: none;
}

.nav-links { display: flex; gap: 2rem; list-style: none; }

.nav-links a {
  font-size: 0.8rem; font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none; letter-spacing: 0.04em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--rose-pale); }

.nav-cta {
  background: var(--rose) !important;
  color: white !important;
  padding: 0.42rem 1.15rem;
  border-radius: 6px;
  font-size: 0.76rem !important;
  font-weight: 600 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--rose-light) !important; }

.hero {
  min-height: 100vh;
  background-color: var(--night);
  background-image:
    linear-gradient(rgba(242, 212, 220, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 212, 220, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  display: flex; align-items: center; justify-content: center;
  padding: 100px 2.5rem 60px;
  position: relative; overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 80px; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(163,26,65,0.3) 30%, rgba(201,184,216,0.2) 60%, transparent 100%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(163,26,65,0.15) 50%, transparent 100%);
  pointer-events: none;
}

.petal {
  position: absolute;
  background: rgba(242, 212, 220, 0.55);
  border-radius: 50% 0 50% 0;
  animation: fall linear infinite;
  pointer-events: none;
}

@keyframes fall {
  0%   { transform: translateY(-40px) rotate(0deg) translateX(0px); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 0.6; }
  100% { transform: translateY(110vh) rotate(360deg) translateX(40px); opacity: 0; }
}

.hero-socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 2.25rem;
  align-items: center;
}

.social-btn {
  width: 42px; height: 42px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.6);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
  flex-shrink: 0;
}
.social-btn:hover {
  background: var(--rose);
  border-color: var(--rose);
  color: white;
  transform: translateY(-2px);
}

.hero-rule { width: 40px; height: 1px; background: var(--rose); margin-bottom: 1.5rem; }

.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 400px; gap: 4rem;
  align-items: center; max-width: 1100px; width: 100%;
}

.hero-eyebrow {
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.2em; color: rgba(242, 212, 220, 0.6);
  text-transform: uppercase; margin-bottom: 0.9rem;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 700; line-height: 1.12;
  color: #F7F0F3; margin-bottom: 1.25rem;
}
.hero-title em { font-style: italic; color: var(--rose-pale); }

.hero-subtitle {
  font-size: 0.98rem; color: rgba(255, 255, 255, 0.45);
  max-width: 440px; line-height: 1.8; margin-bottom: 2rem;
}

.hero-buttons { display: flex; gap: 0.875rem; flex-wrap: wrap; }

.btn-primary {
  background: var(--rose); color: white;
  padding: 0.72rem 1.6rem; border-radius: 6px;
  font-size: 0.85rem; font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.btn-primary:hover { background: var(--rose-light); transform: translateY(-2px); }

.btn-ghost {
  background: transparent; color: rgba(255, 255, 255, 0.65);
  padding: 0.72rem 1.6rem; border-radius: 6px;
  font-size: 0.85rem; font-weight: 500;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: all 0.2s;
}
.btn-ghost:hover { border-color: var(--rose-pale); color: var(--rose-pale); transform: translateY(-2px); }

.hero-avatar-wrap {
  display: flex; justify-content: center; align-items: flex-end;
}

.hero-avatar-frame {
  width: 340px;
  border: 1px solid rgba(242, 212, 220, 0.15);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative;
  padding: 1.5rem 1rem;
}
.hero-avatar-frame::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--rose) 0%, rgba(201, 184, 216, 0.6) 100%);
}
.hero-avatar-frame img { width: 100%; object-fit: contain; display: block; }

.stats-strip {
  background: var(--night-mid);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.4rem 2rem;
  display: flex; justify-content: center; gap: 4rem; flex-wrap: wrap;
}

.stat { text-align: center; }

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem; font-weight: 700;
  color: var(--rose-pale); display: block;
}

.stat-label {
  font-size: 0.68rem; color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.1em; text-transform: uppercase;
}

section { padding: 5rem 2.5rem; }
.section-inner { max-width: 1100px; margin: 0 auto; }

.section-eyebrow {
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.22em; color: var(--rose);
  text-transform: uppercase; margin-bottom: 0.6rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 700; color: var(--night);
  margin-bottom: 0.9rem; line-height: 1.18;
}

.section-desc {
  color: var(--text-muted); font-size: 0.93rem;
  max-width: 540px; line-height: 1.78; margin-bottom: 3rem;
}

#services-types { background: var(--off-white); }

.service-types-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }

.service-type-card {
  background: white; border-radius: 10px; padding: 2rem 1.5rem;
  border: 1px solid var(--card-border);
  border-top: 3px solid var(--rose);
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-type-card:nth-child(2) { border-top-color: var(--lavender); }
.service-type-card:nth-child(3) { border-top-color: var(--blue-mist); }
.service-type-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(163, 26, 65, 0.08); }

.st-icon { font-size: 1.6rem; margin-bottom: 0.9rem; display: block; }
.st-name { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--night); margin-bottom: 0.5rem; }
.st-desc { font-size: 0.84rem; color: var(--text-muted); line-height: 1.7; }
.st-tag {
  display: inline-block; margin-top: 0.75rem;
  background: var(--rose-pale); color: var(--rose);
  font-size: 0.68rem; font-weight: 700;
  padding: 0.22rem 0.65rem; border-radius: 4px; letter-spacing: 0.04em;
}

#pricing { background: white; }

.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.25rem; }

.tier-card {
  border-radius: 10px; padding: 2rem 1.6rem;
  border: 1px solid rgba(163, 26, 65, 0.12);
  position: relative; background: white;
  transition: transform 0.22s, box-shadow 0.22s;
}
.tier-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(163, 26, 65, 0.1); }

.tier-card.featured { border-color: var(--rose); border-width: 1.5px; }
.tier-card.featured::after {
  content: '✦ Most Popular';
  position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  background: var(--rose); color: white;
  font-size: 0.58rem; font-weight: 700; letter-spacing: 0.08em;
  padding: 0.22rem 0.8rem; border-radius: 0 0 6px 6px;
  text-transform: uppercase; white-space: nowrap;
}

.tier-accent { width: 32px; height: 3px; border-radius: 2px; margin-bottom: 1rem; }
.tier-name { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700; color: var(--night); margin-bottom: 0.2rem; }
.tier-price { font-size: 2rem; font-weight: 700; color: var(--rose); font-family: 'Playfair Display', serif; line-height: 1.1; }
.tier-min { font-size: 0.7rem; color: var(--text-muted); margin-bottom: 1.1rem; margin-top: 0.1rem; }

.tier-features { list-style: none; margin-bottom: 1.4rem; }
.tier-features li {
  font-size: 0.81rem; color: #4A4A6A;
  padding: 0.3rem 0; border-bottom: 1px solid rgba(163, 26, 65, 0.05);
  display: flex; align-items: flex-start; gap: 0.45rem; line-height: 1.4;
}
.tier-features li::before { content: '–'; color: var(--rose); font-size: 0.75rem; flex-shrink: 0; margin-top: 0.05rem; }

.tier-btn {
  display: block; text-align: center;
  padding: 0.6rem 1rem; border-radius: 6px;
  font-size: 0.8rem; font-weight: 600;
  text-decoration: none; transition: all 0.2s;
  cursor: pointer; border: none;
  font-family: 'DM Sans', sans-serif;
}
.tier-btn-outline { border: 1.5px solid var(--rose); color: var(--rose); background: transparent; }
.tier-btn-outline:hover { background: var(--rose); color: white; }
.tier-btn-fill { background: var(--rose); color: white; border: 1.5px solid var(--rose); }
.tier-btn-fill:hover { background: var(--rose-light); }

#reel { background: var(--night); }
#reel .section-eyebrow { color: rgba(242, 212, 220, 0.5); }
#reel .section-title   { color: #F7F0F3; }
#reel .section-desc    { color: rgba(255, 255, 255, 0.38); }

.reel-frame {
  border-radius: 10px; overflow: hidden;
  aspect-ratio: 16 / 9; background: #0a0910;
  border: 1px solid rgba(255, 255, 255, 0.06);
  cursor: pointer; position: relative;
}
.reel-frame iframe { width: 100%; height: 100%; border: none; }

.reel-yt-note {
  margin-top: 1rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  text-align: center;
}
.reel-yt-note a {
  color: rgba(242,212,220,0.55);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.reel-yt-note a:hover { color: var(--rose-pale); }

#clients { background: var(--lavender-light); }

.clients-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1.25rem; }

.client-card {
  background: white; border-radius: 10px; padding: 1.5rem;
  border: 1px solid var(--card-border);
  transition: transform 0.2s, box-shadow 0.2s;
}
.client-card:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(163, 26, 65, 0.07); }

.client-header {
  display: flex; align-items: center; gap: 0.75rem;
  margin-bottom: 1.2rem; padding-bottom: 1rem;
  border-bottom: 1px solid rgba(163, 26, 65, 0.07);
}
.client-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  object-fit: cover; border: 2px solid var(--rose-pale); flex-shrink: 0;
}
.client-name { font-family: 'Playfair Display', serif; font-size: 0.98rem; font-weight: 700; color: var(--night); }
.client-type { font-size: 0.7rem; color: var(--text-muted); margin-top: 0.1rem; }
.client-tag {
  display: inline-block; margin-top: 0.2rem;
  background: var(--rose-pale); color: var(--rose);
  font-size: 0.6rem; font-weight: 700;
  padding: 0.15rem 0.5rem; border-radius: 4px; letter-spacing: 0.04em;
}

.longform-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.6rem; }

.video-thumb {
  aspect-ratio: 16 / 9; border-radius: 7px; overflow: hidden;
  cursor: pointer; position: relative;
  background: var(--night); border: 1px solid rgba(163, 26, 65, 0.1);
  transition: transform 0.18s, box-shadow 0.18s;
}
.video-thumb:hover { transform: scale(1.03); box-shadow: 0 6px 20px rgba(0, 0, 0, 0.22); }

.video-thumb img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: opacity 0.2s;
}
.video-thumb:hover img { opacity: 0.75; }

.video-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 0.3rem;
  opacity: 0; transition: opacity 0.2s;
}
.video-thumb:hover .video-overlay { opacity: 1; }

.play-circle {
  width: 38px; height: 38px; background: white; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; color: var(--rose);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}
.play-label {
  font-size: 0.55rem; font-weight: 700; color: white;
  letter-spacing: 0.08em; text-transform: uppercase;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

.video-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(163, 26, 65, 0.88); color: white;
  font-size: 0.52rem; font-weight: 700;
  text-align: center; padding: 0.22rem;
  letter-spacing: 0.07em; text-transform: uppercase;
  transition: opacity 0.2s;
}
.video-thumb:hover .video-label { opacity: 0; }

.shorts-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }

.short-thumb {
  aspect-ratio: 9 / 16; border-radius: 8px; overflow: hidden;
  cursor: pointer; position: relative;
  background: var(--night); border: 1px solid rgba(163, 26, 65, 0.1);
  transition: transform 0.18s, box-shadow 0.18s;
}
.short-thumb:hover { transform: scale(1.03); box-shadow: 0 6px 20px rgba(0, 0, 0, 0.22); }

.short-thumb img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: opacity 0.2s;
}
.short-thumb:hover img { opacity: 0.75; }

.short-thumb .video-overlay  { opacity: 0; transition: opacity 0.2s; }
.short-thumb:hover .video-overlay { opacity: 1; }
.short-thumb .video-label { opacity: 1; transition: opacity 0.2s; }
.short-thumb:hover .video-label { opacity: 0; }

.coming-soon-card {
  background: var(--off-white); border-radius: 8px; padding: 1.4rem;
  text-align: center; border: 1.5px dashed rgba(163, 26, 65, 0.2);
}
.coming-soon-card strong { color: var(--rose); font-size: 0.82rem; display: block; margin-bottom: 0.45rem; }
.coming-soon-card p { font-size: 0.78rem; color: var(--text-muted); line-height: 1.6; }

.lightbox {
  position: fixed; inset: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s ease;
}
.lightbox.open { opacity: 1; pointer-events: all; }

.lightbox-backdrop {
  position: absolute; inset: 0;
  background: rgba(12, 10, 22, 0.92);
  backdrop-filter: blur(6px);
  cursor: pointer;
}

.lightbox-panel {
  position: relative; z-index: 2;
  width: min(860px, 92vw);
  transform: scale(0.92) translateY(16px);
  transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.lightbox.open .lightbox-panel { transform: scale(1) translateY(0); }

.lightbox-header {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 0.75rem;
}

.lightbox-title {
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem; font-weight: 700;
  color: rgba(242, 212, 220, 0.9);
  white-space: nowrap; overflow: hidden;
  text-overflow: ellipsis; max-width: 80%;
}

.lightbox-close {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.75); font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background 0.18s, color 0.18s;
  flex-shrink: 0;
}
.lightbox-close:hover { background: var(--rose); color: white; border-color: var(--rose); }

.lightbox-video {
  position: relative; aspect-ratio: 16 / 9;
  border-radius: 10px; overflow: hidden; background: #000;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.06);
}
.lightbox-video iframe { width: 100%; height: 100%; border: none; display: block; }

.lightbox-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 0.75rem;
}

.lightbox-hint { font-size: 0.7rem; color: rgba(255, 255, 255, 0.3); letter-spacing: 0.04em; }

.lightbox-yt-link {
  font-size: 0.72rem; font-weight: 600;
  color: rgba(242, 212, 220, 0.5);
  text-decoration: none; letter-spacing: 0.03em;
  transition: color 0.18s;
  display: flex; align-items: center; gap: 0.3rem;
}
.lightbox-yt-link:hover { color: var(--rose-pale); }

#contact { background: white; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }

.contact-info h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: var(--night); margin-bottom: 0.9rem; }
.contact-info p  { color: var(--text-muted); font-size: 0.9rem; line-height: 1.78; margin-bottom: 1.4rem; }

.contact-btns { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.discord-btn {
  display: inline-flex; align-items: center; gap: 0.55rem;
  background: #5865F2; color: white;
  padding: 0.7rem 1.3rem; border-radius: 7px;
  font-size: 0.82rem; font-weight: 600;
  text-decoration: none; transition: all 0.2s;
}
.discord-btn:hover { background: #4752C4; transform: translateY(-1px); }

.vgen-btn {
  display: inline-flex; align-items: center; gap: 0.55rem;
  background: transparent; color: var(--rose);
  padding: 0.7rem 1.3rem; border-radius: 7px;
  font-size: 0.82rem; font-weight: 600;
  text-decoration: none; border: 1.5px solid var(--rose);
  transition: all 0.2s;
}
.vgen-btn:hover { background: var(--rose); color: white; }

.contact-form {
  background: var(--off-white); border-radius: 12px;
  padding: 2rem; border: 1px solid var(--card-border);
}

.form-group { margin-bottom: 0.95rem; }
.form-group label { display: block; font-size: 0.75rem; font-weight: 600; color: var(--night); margin-bottom: 0.32rem; letter-spacing: 0.03em; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 0.62rem 0.95rem; border-radius: 7px;
  border: 1px solid rgba(163, 26, 65, 0.15); background: white;
  font-family: 'DM Sans', sans-serif; font-size: 0.86rem; color: var(--night);
  outline: none; transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--rose); }

.form-group textarea { height: 96px; resize: none; }

.form-submit {
  width: 100%; background: var(--rose); color: white; border: none;
  padding: 0.78rem; border-radius: 7px;
  font-size: 0.9rem; font-weight: 600;
  cursor: pointer; font-family: 'DM Sans', sans-serif;
  transition: all 0.2s; margin-top: 0.2rem;
}
.form-submit:hover { background: var(--rose-light); transform: translateY(-1px); }

footer {
  background: var(--night); padding: 2.5rem 2rem;
  text-align: center; color: rgba(255, 255, 255, 0.28);
  font-size: 0.78rem; border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo {
  font-family: 'Playfair Display', serif; font-size: 1.2rem;
  color: rgba(242, 212, 220, 0.7); display: block;
  margin-bottom: 0.4rem; font-weight: 700;
}

.cursor-sparkle {
  position: fixed; pointer-events: none; z-index: 9999;
  font-size: 0.75rem; animation: sfade 0.8s forwards;
}
@keyframes sfade {
  0%   { opacity: 1; transform: translateY(0) scale(1); }
  100% { opacity: 0; transform: translateY(-18px) scale(0.4); }
}

.pricing-tabs {
  display: flex; gap: 0.5rem; flex-wrap: wrap;
  margin-bottom: 2rem;
  border-bottom: 2px solid rgba(163,26,65,0.1);
  padding-bottom: 0;
}

.pricing-tab {
  background: none; border: none;
  padding: 0.65rem 1.3rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem; font-weight: 600;
  color: var(--text-muted);
  cursor: pointer; border-radius: 6px 6px 0 0;
  position: relative; bottom: -2px;
  border: 2px solid transparent;
  border-bottom: none;
  transition: color 0.2s, background 0.2s;
}
.pricing-tab:hover { color: var(--rose); }
.pricing-tab.active {
  color: var(--rose);
  background: white;
  border-color: rgba(163,26,65,0.1);
  border-bottom-color: white;
}

.pricing-panel {
  display: none;
  visibility: hidden;
  height: 0;
  overflow: hidden;
}
.pricing-panel.active {
  display: block;
  visibility: visible;
  height: auto;
  overflow: visible;
}

.pricing-note {
  margin-top: 1.75rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.7;
  padding: 0.9rem 1.1rem;
  border-left: 3px solid var(--rose-pale);
  background: var(--off-white);
  border-radius: 0 6px 6px 0;
  max-width: 680px;
}

.vod-panel {
  display: grid; grid-template-columns: auto 1fr; gap: 3rem;
  align-items: start;
  background: white; border-radius: 10px; padding: 2.5rem;
  border: 1px solid var(--card-border);
  max-width: 780px;
}

.vod-price-display {
  display: flex; flex-direction: column; align-items: center;
  background: var(--rose); color: white;
  border-radius: 10px; padding: 2rem 2.5rem;
  text-align: center; flex-shrink: 0;
}

.vod-dollar {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem; font-weight: 700; line-height: 1;
}

.vod-per {
  font-size: 0.75rem; font-weight: 600;
  opacity: 0.85; letter-spacing: 0.04em;
  margin-top: 0.4rem; text-transform: uppercase;
  max-width: 100px; text-align: center; line-height: 1.4;
}

.vod-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 700;
  color: var(--night); margin-bottom: 0.75rem;
}

.vod-desc {
  font-size: 0.88rem; color: var(--text-muted);
  line-height: 1.75; margin-bottom: 1.25rem;
}

.vod-features {
  list-style: none; margin-bottom: 1.5rem;
}
.vod-features li {
  font-size: 0.83rem; color: #4A4A6A;
  padding: 0.3rem 0;
  border-bottom: 1px solid rgba(163,26,65,0.05);
  display: flex; align-items: flex-start; gap: 0.45rem;
}
.vod-features li::before {
  content: '–'; color: var(--rose);
  font-size: 0.75rem; flex-shrink: 0; margin-top: 0.05rem;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  background: rgba(163,26,65,0.85);
  border: 1px solid rgba(242,212,220,0.25);
  border-radius: 7px;
  cursor: pointer; padding: 7px;
  z-index: 110;
  transition: background 0.2s;
}
.nav-hamburger:hover { background: var(--rose); }
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: rgba(255,255,255,0.75);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.2s, width 0.2s;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-drawer {
  display: none;
  position: fixed !important;
  top: 58px !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  background-color: #12101E !important;
  background: #12101E !important;
  border-top: 1px solid rgba(163,26,65,0.4);
  border-bottom: 2px solid rgba(163,26,65,0.5);
  box-shadow: 0 16px 48px rgba(0,0,0,0.9);
  z-index: 99999 !important;
  flex-direction: column;
  gap: 0;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
  isolation: isolate;
}
.nav-drawer.open {
  display: flex !important;
  opacity: 1 !important;
  transform: translateY(0) !important;
  pointer-events: all !important;
}
.nav-drawer a {
  display: block !important;
  font-size: 1rem; font-weight: 500;
  color: #ffffff !important;
  text-decoration: none;
  padding: 1rem 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  letter-spacing: 0.03em;
  transition: background 0.15s;
  background-color: transparent;
  width: 100%;
}
.nav-drawer a:hover { background-color: rgba(163,26,65,0.25) !important; }
.nav-drawer a:last-child {
  border-bottom: none;
  margin: 0.75rem 1.5rem 1rem;
  padding: 0.85rem 1rem;
  background-color: var(--rose) !important;
  color: white !important;
  text-align: center;
  border-radius: 7px;
  font-weight: 600;
  width: auto;
}
.nav-drawer a:last-child:hover { background-color: var(--rose-light) !important; }

@media (max-width: 900px) {
  .hero-inner           { grid-template-columns: 1fr; gap: 2rem; }
  .hero-avatar-wrap     { display: none; }
  .service-types-grid   { grid-template-columns: 1fr 1fr; }
  .contact-grid         { grid-template-columns: 1fr; gap: 2rem; }
  .clients-grid         { grid-template-columns: 1fr 1fr; }
  section               { padding: 4rem 2rem; }
}

@media (max-width: 680px) {
  /* Nav: hide links, show hamburger */
  .nav-links            { display: none; }
  .nav-hamburger        { display: flex; }
  nav                   { padding: 0 1.25rem; }

  /* Hero */
  .hero                 { padding: 90px 1.5rem 50px; }
  .hero-title           { font-size: 2.2rem; }
  .hero-subtitle        { font-size: 0.92rem; }
  .hero-buttons         { flex-direction: column; gap: 0.75rem; }
  .btn-primary,
  .btn-ghost            { text-align: center; justify-content: center; }


  .stats-strip          { gap: 1.25rem; padding: 1.2rem 1rem; }
  .stat-num             { font-size: 1.4rem; }


  section               { padding: 3.5rem 1.25rem; }
  .section-title        { font-size: 1.6rem; }
  .section-desc         { margin-bottom: 2rem; }


  .service-types-grid   { grid-template-columns: 1fr; }


  .services-grid        { grid-template-columns: 1fr; }
  .tier-card.featured   { margin-top: 0.75rem; }


  .clients-grid         { grid-template-columns: 1fr; }


  .longform-row         { grid-template-columns: 1fr 1fr; gap: 0.5rem; }

  .shorts-row           { gap: 0.4rem; }


  .pricing-tab          { font-size: 0.78rem; padding: 0.55rem 0.9rem; }

  .vod-panel            { grid-template-columns: 1fr; gap: 1.5rem; padding: 1.5rem; }
  .vod-price-display    { flex-direction: row; gap: 1rem; align-items: center; padding: 1.25rem 1.5rem; }
  .vod-dollar           { font-size: 2.5rem; }
  .vod-per              { max-width: none; text-align: left; margin-top: 0; }
  .contact-btns         { flex-direction: column; }
  .discord-btn,
  .vgen-btn             { justify-content: center; text-align: center; }


  .lightbox-panel       { width: 96vw; }
  .lightbox-title       { font-size: 0.78rem; }
  .lightbox-hint        { display: none; }


  footer                { padding: 2rem 1.25rem; }
}


@media (max-width: 380px) {
  .hero-title           { font-size: 1.9rem; }
  .longform-row         { grid-template-columns: 1fr; }
  .shorts-row           { grid-template-columns: repeat(3,1fr); gap: 0.3rem; }
  .stats-strip          { flex-direction: column; gap: 1rem; align-items: center; }
}
