:root {
  --black: #0A0A0A;
  --white: #FFFFFF;
  --gray: #888;
  --red: #E31C1C;
  --gold: #F5C518;
  --cream: #F5F0E6;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Space Grotesk', sans-serif;
  overflow-x: hidden;
}

/* ========== ZIPPER V-SHAPE REVEAL ========== */
.reveal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  overflow: hidden;
}

/* Left panel - V opens from top center */
.reveal-left {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: var(--black);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  animation: unzipLeft 1.6s cubic-bezier(0.7, 0, 0.3, 1) forwards;
  animation-delay: 0.3s;
}

/* Right panel - mirror of left */
.reveal-right {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: var(--black);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  animation: unzipRight 1.6s cubic-bezier(0.7, 0, 0.3, 1) forwards;
  animation-delay: 0.3s;
}

/* V-shape unzip - left panel peels back with diagonal edge */
@keyframes unzipLeft {
  0% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  30% {
    clip-path: polygon(0 0, 100% 15%, 100% 100%, 0 100%);
  }
  60% {
    clip-path: polygon(0 0, 80% 40%, 100% 100%, 0 100%);
  }
  100% {
    clip-path: polygon(-100% 0, -50% 50%, -100% 100%, -100% 100%);
  }
}

/* V-shape unzip - right panel peels back with diagonal edge (mirrored) */
@keyframes unzipRight {
  0% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  30% {
    clip-path: polygon(0 15%, 100% 0, 100% 100%, 0 100%);
  }
  60% {
    clip-path: polygon(20% 40%, 100% 0, 100% 100%, 0 100%);
  }
  100% {
    clip-path: polygon(150% 50%, 200% 0, 200% 100%, 150% 100%);
  }
}

/* Fallback: hide overlay after animation in case clip-path fails */
.reveal-overlay {
  animation: fadeOutOverlay 0.1s ease forwards;
  animation-delay: 2.2s;
}

@keyframes fadeOutOverlay {
  to { 
    opacity: 0; 
    visibility: hidden;
    display: none;
  }
}

/* ========== NAV ========== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 48px;
  opacity: 0;
  animation: fadeIn 0.6s ease forwards;
  animation-delay: 1.8s;
}

.logo {
  width: 140px;
  height: 140px;
  transition: transform 0.3s ease;
}

.logo:hover { transform: scale(1.1); }

.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(227, 28, 28, 0.3));
}

.nav-links {
  display: flex;
  gap: 48px;
  list-style: none;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: all 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--red);
  transition: width 0.3s ease;
}

.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--red); }

/* ========== BANNER TITLE STYLE ========== */
.banner-title {
  position: relative;
  display: inline-block;
  font-family: 'Anton', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.banner-title-text {
  position: relative;
  z-index: 2;
  background: linear-gradient(180deg, var(--cream) 0%, #d4cfc4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(2px 2px 0 var(--black));
}

/* Banner ribbon behind text */
.banner-ribbon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110%;
  height: 70%;
  z-index: 1;
}

.banner-ribbon svg {
  width: 100%;
  height: 100%;
}

/* ========== HERO ========== */
.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero-carousel { position: absolute; inset: 0; }

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.hero-slide.active { opacity: 1; }

.hero-slide img,
.hero-slide .placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.05);
  transition: transform 6s ease-out, opacity 1.2s ease-in-out;
}

.hero-slide.active img,
.hero-slide.active .placeholder { 
  transform: scale(1.1);
  animation: kenBurnsSubtle 6s ease-out forwards;
}

@keyframes kenBurnsSubtle {
  0% { transform: scale(1.05); }
  100% { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.4) 30%, rgba(10,10,10,0.1) 50%, transparent 70%);
  z-index: 1;
  opacity: 0;
  animation: fadeIn 1s ease forwards 0.8s;
}

.hero-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,10,10,0.6) 0%, transparent 50%);
}

.hero-content {
  position: absolute;
  bottom: 100px;
  left: 60px;
  z-index: 2;
  max-width: 700px;
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 1.6s;
}

/* Hero banner title */
.hero-banner-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}

.hero-banner-img {
  width: clamp(280px, 45vw, 480px);
  height: auto;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.4));
}

.hero-sub {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  margin-top: 24px;
  color: rgba(255,255,255,0.6);
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
  padding: 16px 36px;
  background: var(--red);
  color: var(--white);
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.hero-cta:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(245, 197, 24, 0.3);
}

.carousel-indicators {
  position: absolute;
  bottom: 100px;
  right: 60px;
  z-index: 2;
  display: flex;
  gap: 12px;
  opacity: 0;
  animation: fadeIn 0.8s ease forwards 1s;
}

.indicator {
  width: 40px;
  height: 3px;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.indicator::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: var(--white);
}

.indicator.active::after { animation: indicatorFill 5s linear forwards; }
.indicator:hover { background: rgba(255,255,255,0.5); }

.slide-counter {
  position: absolute;
  bottom: 100px;
  right: 180px;
  z-index: 2;
  font-family: 'Anton', sans-serif;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  opacity: 0;
  animation: fadeIn 0.8s ease forwards 1s;
}

.slide-counter .current {
  color: var(--white);
  font-size: 24px;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeIn 0.8s ease forwards 1.2s;
}

.scroll-indicator span {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--white), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
  animation-delay: 2.5s;
}

/* ========== ABOUT SECTION ========== */
.about-section {
  padding: 120px 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-block {
  display: flex;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.about-block.reverse {
  flex-direction: row-reverse;
}

.about-thumb {
  flex: 0 0 200px;
  width: 200px;
  height: 200px;
  overflow: hidden;
  border-radius: 8px;
}

.about-thumb img,
.about-thumb .placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-text {
  flex: 1;
}

.about-text h3 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(24px, 3vw, 32px);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
  color: var(--white);
}

.about-text p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
  max-width: 500px;
}

@media (max-width: 768px) {
  .about-section { padding: 80px 24px; }
  .about-block, .about-block.reverse {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }
  .about-thumb { flex: 0 0 150px; width: 150px; height: 150px; }
  .about-text p { max-width: 100%; }
}

/* ========== PRIVATE GALLERY (Z++ KEY REVEAL) ========== */
.private-gallery {
  padding: 120px 60px;
  text-align: center;
}

.private-gallery-header {
  margin-bottom: 60px;
}

.private-gallery-header h2 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(32px, 5vw, 48px);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.private-gallery-header p {
  color: var(--gray);
  font-size: 14px;
}

.private-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.private-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 8px;
  background: #111;
}

.private-item img,
.private-item .placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(30px) brightness(0.3);
  transform: scale(1.1);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.private-item.revealed img,
.private-item.revealed .placeholder {
  filter: blur(0) brightness(1);
  transform: scale(1);
}

.private-item-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.6);
  transition: opacity 0.3s ease;
}

.private-item.revealed .private-item-overlay {
  opacity: 0;
  pointer-events: none;
}

.key-hint {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 8px;
}

.key-combo {
  display: flex;
  gap: 8px;
  align-items: center;
}

.key {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 6px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  background: rgba(255,255,255,0.05);
}

.key-combo span:not(.key) {
  color: var(--gray);
  font-size: 16px;
}

/* ========== VIDEO CAROUSEL ========== */
.video-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 0;
}

.video-section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0 60px;
  margin-bottom: 50px;
}

/* Section titles with banner style - using blank banner PNG */
.section-banner-title {
  position: relative;
  display: inline-block;
}

.section-banner-title h2 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(22px, 3.5vw, 32px);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1;
  padding: 0;
  color: #1a1a1a;
  -webkit-text-fill-color: #1a1a1a;
  background: none;
  position: absolute;
  top: 54%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-4deg);
  z-index: 1;
  white-space: nowrap;
}

.section-banner-title .banner-bg-img {
  display: block;
  width: clamp(200px, 35vw, 340px);
  height: auto;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}

.section-subtitle {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 16px;
  padding-left: 0;
  text-align: center;
}

.video-nav { display: flex; gap: 12px; }

.video-nav-btn {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255,255,255,0.3);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all 0.3s ease;
}

.video-nav-btn:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.video-carousel {
  display: flex;
  gap: 24px;
  padding: 0 60px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  cursor: grab;
}

.video-carousel::-webkit-scrollbar { display: none; }

.video-card {
  flex: 0 0 auto;
  width: 380px;
  position: relative;
  cursor: pointer;
}

.video-thumbnail {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #111;
}

.video-thumbnail img,
.video-thumbnail .placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-card:hover .video-thumbnail img,
.video-card:hover .video-thumbnail .placeholder { transform: scale(1.08); }

.video-thumbnail-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.3) 30%, transparent 60%);
  opacity: 0.7;
  transition: opacity 0.4s;
}

.video-card:hover .video-thumbnail-overlay { opacity: 1; }

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: 80px;
  height: 80px;
  border: 2px solid var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-card:hover .play-btn {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.play-btn::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 0 12px 20px;
  border-color: transparent transparent transparent var(--white);
  margin-left: 4px;
}

.play-btn:hover {
  background: var(--red);
  border-color: var(--red);
}

.video-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  transform: translateY(10px);
  opacity: 0;
  transition: all 0.4s ease;
}

.video-card:hover .video-info {
  transform: translateY(0);
  opacity: 1;
}

.video-title {
  font-family: 'Anton', sans-serif;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 8px;
}

.video-meta {
  display: flex;
  gap: 16px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
}

.video-duration { color: var(--red); }

.video-number {
  position: absolute;
  top: 20px;
  left: 20px;
  font-family: 'Anton', sans-serif;
  font-size: 64px;
  line-height: 1;
  -webkit-text-stroke: 1px rgba(255,255,255,0.3);
  color: transparent;
  opacity: 0.5;
}

.video-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--red);
  color: var(--white);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 12px;
}

.video-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255,255,255,0.2);
}

.video-progress-fill {
  height: 100%;
  background: var(--red);
  width: 0;
}

.video-card:hover .video-progress-fill {
  animation: progressFill 3s ease-in-out infinite;
}

/* ========== NEWSLETTER SECTION ========== */
.newsletter-section {
  padding: 100px 60px;
  background: linear-gradient(180deg, var(--black) 0%, #0f0f0f 100%);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.newsletter-container {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-banner-title {
  position: relative;
  display: inline-block;
  margin-bottom: 24px;
}

.newsletter-banner-title h2 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(28px, 5vw, 42px);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 12px 40px;
  color: #1a1a1a;
  -webkit-text-fill-color: #1a1a1a;
  background: none;
  position: relative;
  z-index: 1;
  transform: skewX(-3deg);
}

.newsletter-banner-title .banner-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 115%;
  height: 160%;
  z-index: 0;
}

.newsletter-desc {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--gray);
  margin-bottom: 40px;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-input {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  padding: 18px 24px;
  transition: all 0.3s;
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--red);
  background: rgba(255,255,255,0.08);
}

.newsletter-input::placeholder {
  color: rgba(255,255,255,0.4);
}

.newsletter-btn {
  background: var(--red);
  border: none;
  color: var(--white);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 18px 32px;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}

.newsletter-btn:hover {
  background: var(--gold);
  color: var(--black);
}

.newsletter-privacy {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  margin-top: 16px;
}

.newsletter-privacy a {
  color: var(--gray);
  text-decoration: underline;
}

/* ========== PORTFOLIO GRID ========== */
.section-header {
  padding: 120px 60px 50px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.section-link {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
  text-decoration: none;
  border-bottom: 1px solid var(--gray);
  padding-bottom: 4px;
  transition: all 0.3s;
}

.section-link:hover {
  color: var(--red);
  border-color: var(--red);
}

.model-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  padding: 0 60px 120px;
}

.model-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: pointer;
  background: #111;
}

.model-card img,
.model-card .placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.model-card:hover img,
.model-card:hover .placeholder { transform: scale(1.1); }

.model-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.9) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}

.model-card:hover .model-card-overlay { opacity: 1; }

.model-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.model-card:hover .model-card-info {
  transform: translateY(0);
  opacity: 1;
}

.model-name {
  font-family: 'Anton', sans-serif;
  font-size: 26px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.model-tag {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 8px;
}

/* ========== FEATURED ========== */
.featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}

.featured-image {
  position: relative;
  overflow: hidden;
}

.featured-image img,
.featured-image .placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.featured:hover .featured-image img,
.featured:hover .featured-image .placeholder { transform: scale(1.05); }

.featured-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px;
  background: var(--black);
}

.featured-label {
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 24px;
}

.featured-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(40px, 5vw, 72px);
  text-transform: uppercase;
  line-height: 0.95;
  margin-bottom: 30px;
}

.featured-desc {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--gray);
  max-width: 380px;
  margin-bottom: 40px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  padding: 18px 0;
  border-bottom: 1px solid var(--white);
  transition: all 0.3s;
  width: fit-content;
}

.btn:hover {
  color: var(--red);
  border-color: var(--red);
  gap: 22px;
}

.btn-arrow { font-size: 18px; transition: transform 0.3s; }
.btn:hover .btn-arrow { transform: translateX(6px); }

/* ========== MARQUEE ========== */
.marquee {
  padding: 50px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.marquee-track {
  display: flex;
  gap: 50px;
  animation: marquee 25s linear infinite;
  width: max-content;
}

.marquee-item {
  font-family: 'Anton', sans-serif;
  font-size: clamp(40px, 7vw, 70px);
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0.15;
}

.marquee-item.filled { opacity: 1; }
.marquee-dot { color: var(--red); opacity: 1; }

/* ========== FOOTER ========== */
footer {
  padding: 100px 60px 60px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 80px;
}

.footer-brand .logo {
  width: 70px;
  height: 70px;
  margin-bottom: 24px;
  opacity: 1;
  animation: none;
}

.footer-tagline {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 24px;
  color: var(--gray);
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 14px; }

.footer-col a {
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s;
}

.footer-col a:hover { color: var(--red); }

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 50px;
  margin-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 12px;
  color: var(--gray);
}

.social-links { display: flex; gap: 32px; }

.social-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.1em;
  transition: all 0.3s;
}

.social-links a:hover { color: var(--red); }

/* ========== ANIMATIONS ========== */
@keyframes fadeIn { to { opacity: 1; } }
@keyframes slideUp { to { opacity: 1; transform: translateY(0); } }
@keyframes kenBurns { 0% { transform: scale(1); } 100% { transform: scale(1.08); } }
@keyframes indicatorFill { 0% { width: 0; } 100% { width: 100%; } }
@keyframes scrollPulse { 0%, 100% { opacity: 1; transform: scaleY(1); } 50% { opacity: 0.4; transform: scaleY(0.6); } }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes progressFill { 0% { width: 0; } 50% { width: 100%; } 100% { width: 0; } }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-block { flex-direction: row; gap: 32px; }
  .about-thumb { width: 200px; flex-shrink: 0; }
  .video-card { width: 320px; }
  .model-grid { grid-template-columns: repeat(2, 1fr); }
  .featured { grid-template-columns: 1fr; }
  .featured-image { height: 60vh; }
  .newsletter-form { flex-direction: column; }
}

@media (max-width: 768px) {
  nav { padding: 20px 24px; }
  .logo { width: 48px; height: 48px; }
  .nav-links { display: none; }
  .hero-content { left: 24px; right: 24px; bottom: 140px; }
  .carousel-indicators { bottom: 80px; right: 24px; left: 24px; justify-content: flex-start; }
  .indicator { width: 32px; }
  .slide-counter { display: none; }
  
  .video-section-header { padding: 0 24px; flex-direction: column; align-items: flex-start; gap: 24px; }
  .video-carousel { padding: 0 24px; gap: 16px; }
  .video-card { width: 280px; }
  
  .newsletter-section { padding: 60px 24px; }
  
  .about-section { padding: 80px 24px; }
  .about-grid { gap: 50px; }
  .about-block { flex-direction: column; }
  .about-thumb { width: 100%; }
  
  .section-header { padding: 80px 24px 40px; flex-direction: column; align-items: flex-start; gap: 24px; }
  .model-grid { grid-template-columns: 1fr; padding: 0 24px 80px; gap: 12px; }
  .featured-content { padding: 50px 24px; }
  footer { grid-template-columns: 1fr; padding: 80px 24px 50px; gap: 50px; }
  .footer-bottom { flex-direction: column; gap: 24px; text-align: center; }
}

/* ========== PLACEHOLDER ========== */
.placeholder {
  background: linear-gradient(145deg, #151515 0%, #1a1a1a 50%, #0f0f0f 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #444;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ========== GHOST-SPECIFIC: NAV ========== */
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 48px;
  opacity: 0;
  animation: fadeIn 0.8s ease forwards 0.8s;
}

.main-nav .logo {
  width: 140px;
  height: 140px;
  transition: transform 0.3s ease;
  text-decoration: none;
}

.main-nav .logo:hover { transform: scale(1.1); }

.main-nav .logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(227, 28, 28, 0.3));
}

.main-nav .logo-text {
  font-family: 'Anton', sans-serif;
  font-size: 24px;
  color: var(--white);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.mobile-menu-btn span {
  width: 25px;
  height: 2px;
  background: var(--white);
  transition: 0.3s;
}

/* ========== GHOST-SPECIFIC: POST/PAGE ========== */
.post-full, .page-full {
  max-width: 800px;
  margin: 0 auto;
  padding: 180px 24px 80px;
}

.post-feature-image, .page-feature-image {
  margin-bottom: 40px;
  border-radius: 4px;
  overflow: hidden;
}

.post-feature-image img, .page-feature-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.post-header, .page-header {
  margin-bottom: 40px;
}

.post-title, .page-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(2rem, 6vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 16px;
}

.post-meta {
  display: flex;
  gap: 16px;
  color: var(--gray);
  font-size: 14px;
}

.post-tag {
  background: var(--red);
  color: var(--white);
  padding: 4px 12px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.post-content, .page-content {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255,255,255,0.85);
}

.post-content p, .page-content p {
  margin-bottom: 1.5em;
}

.post-content h2, .page-content h2 {
  font-family: 'Anton', sans-serif;
  font-size: 2rem;
  margin: 2em 0 0.5em;
}

.post-content h3, .page-content h3 {
  font-family: 'Anton', sans-serif;
  font-size: 1.5rem;
  margin: 1.5em 0 0.5em;
}

.post-content img, .page-content img {
  max-width: 100%;
  height: auto;
  margin: 2em 0;
}

.post-content a, .page-content a {
  color: var(--red);
  text-decoration: underline;
}

.post-content a:hover, .page-content a:hover {
  color: var(--gold);
}

.post-footer {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.post-tags .tag {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  padding: 6px 14px;
  font-size: 12px;
  text-decoration: none;
  transition: 0.3s;
}

.post-tags .tag:hover {
  background: var(--red);
}

/* Related Posts */
.related-posts {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 24px;
}

.related-posts h3 {
  font-family: 'Anton', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 30px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.related-card {
  background: rgba(255,255,255,0.03);
  overflow: hidden;
  text-decoration: none;
  transition: 0.3s;
}

.related-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.06);
}

.related-card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.related-card h4 {
  padding: 16px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
}

/* ========== GHOST-SPECIFIC: FOOTER ========== */
.site-footer {
  background: #050505;
  padding: 80px 48px 40px;
  margin-top: 100px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand {
  margin-bottom: 40px;
}

.footer-logo {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 16px;
}

.footer-tagline {
  color: var(--gray);
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 80px;
  margin-bottom: 60px;
}

.footer-col h4 {
  font-family: 'Anton', sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  color: var(--white);
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 12px;
}

.footer-col a {
  color: var(--gray);
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.footer-col a:hover {
  color: var(--red);
}

.footer-bottom {
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--gray);
}

.footer-legal a {
  color: var(--gray);
  text-decoration: none;
  margin: 0 8px;
}

.footer-legal a:hover {
  color: var(--white);
}

/* ========== MOBILE RESPONSIVE ========== */
@media (max-width: 768px) {
  .main-nav {
    padding: 16px 24px;
  }
  
  .main-nav .logo {
    width: 80px;
    height: 80px;
  }
  
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--black);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .mobile-menu-btn {
    display: flex;
    z-index: 101;
  }
  
  .hero-content {
    left: 24px;
    right: 24px;
    bottom: 60px;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 40px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

/* ========== GHOST EDITOR CONTENT WIDTH CLASSES ========== */
.kg-width-wide {
  position: relative;
  width: 85vw;
  min-width: 100%;
  margin: 2em auto;
  transform: translateX(calc(50% - 50vw + 7.5vw));
}

.kg-width-full {
  position: relative;
  width: 100vw;
  min-width: 100%;
  margin: 2em auto;
  transform: translateX(calc(50% - 50vw));
}

.kg-width-wide img,
.kg-width-full img {
  width: 100%;
}

/* Ghost card styles */
.kg-card {
  margin: 2em 0;
}

.kg-image-card img {
  max-width: 100%;
  height: auto;
}

.kg-gallery-container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.kg-gallery-row {
  display: flex;
  gap: 8px;
  width: 100%;
}

.kg-gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kg-bookmark-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
}

.kg-bookmark-container {
  display: flex;
  text-decoration: none;
  color: inherit;
}

.kg-bookmark-content {
  padding: 20px;
  flex: 1;
}

.kg-bookmark-title {
  font-weight: 600;
  margin-bottom: 8px;
}

.kg-bookmark-description {
  color: var(--gray);
  font-size: 14px;
}

.kg-bookmark-thumbnail {
  width: 200px;
  flex-shrink: 0;
}

.kg-bookmark-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kg-embed-card {
  display: flex;
  justify-content: center;
}

.kg-video-card video {
  max-width: 100%;
}

.kg-audio-card audio {
  width: 100%;
}
