/* ============================================================
   WILD KINDNESS THEME — style.css  v1.0.5
   ============================================================ */

: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;
}

/* ============================================================
   REVEAL ANIMATION
   A vertical line starts at top-center and sweeps downward.
   As it descends it pushes the two black panels apart with a
   curved (convex) edge — like fabric being split open.
   Uses clip-path: path() — Chrome 88+, FF 97+, Safari 15.4+
   Polygon fallback auto-applies for older browsers.
   ============================================================ */

.reveal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
}

/*
  Both panels start as solid black covering their half.
  The right edge of .reveal-left and left edge of .reveal-right
  use path() so the split is a smooth cubic-bezier curve that
  bows outward as the line descends.

  At t=0  the curve hasn't opened yet — both panels are flush at center.
  At t=100% the curve has fully opened and the panels slide off screen.

  path() coords are in px against a 1000×1000 viewBox scaled by SVG.
  We use % units via polygon as the universal fallback.
*/

.reveal-left {
  position: absolute;
  inset: 0;
  background: var(--black);
  /* clip: solid left half, right edge is a straight line at 50% */
  clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
}

.reveal-right {
  position: absolute;
  inset: 0;
  background: var(--black);
  clip-path: polygon(50% 0, 100% 0, 100% 100%, 50% 100%);
}

/* The descending line element — a 1px white rule */
.reveal-line {
  position: absolute;
  top: -4px;
  left: 50%;
  width: 1px;
  height: 6px;
  background: rgba(255,255,255,0.5);
  transform: translateX(-50%);
  z-index: 3;
  border-radius: 1px;
}

/* ── GO STATE ── */
/* Line sweeps fast. Panels chase it — seam stays closed above where
   the line is, so it looks like the line is pulling the reveal open. */
.reveal-overlay.go .reveal-left {
  animation: open-left 1.3s linear forwards;
}
.reveal-overlay.go .reveal-right {
  animation: open-right 1.3s linear forwards;
}
.reveal-overlay.go .reveal-line {
  animation: line-sweep 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* LEFT panel — seam follows the line top-to-bottom.
   Points are evenly spaced in Y (8% apart) so browser interpolates
   tiny steps = silky smooth. X values form a sine arc, widest at center. */
@keyframes open-left {
  /* Fully closed */
  0%  { clip-path: polygon(0 0, 50% 0,  50% 8%,  50% 17%, 50% 25%, 50% 33%, 50% 42%, 50% 50%, 50% 58%, 50% 67%, 50% 75%, 50% 83%, 50% 92%, 50% 100%, 0 100%); transform: translateX(0); }
  /* Line ~8% down — only top sliver open */
  6%  { clip-path: polygon(0 0, 46% 0,  46% 8%,  50% 17%, 50% 25%, 50% 33%, 50% 42%, 50% 50%, 50% 58%, 50% 67%, 50% 75%, 50% 83%, 50% 92%, 50% 100%, 0 100%); transform: translateX(0); }
  12% { clip-path: polygon(0 0, 42% 0,  42% 8%,  44% 17%, 48% 25%, 50% 33%, 50% 42%, 50% 50%, 50% 58%, 50% 67%, 50% 75%, 50% 83%, 50% 92%, 50% 100%, 0 100%); transform: translateX(0); }
  20% { clip-path: polygon(0 0, 38% 0,  38% 8%,  39% 17%, 41% 25%, 44% 33%, 47% 42%, 50% 50%, 50% 58%, 50% 67%, 50% 75%, 50% 83%, 50% 92%, 50% 100%, 0 100%); transform: translateX(0); }
  28% { clip-path: polygon(0 0, 33% 0,  33% 8%,  34% 17%, 36% 25%, 39% 33%, 43% 42%, 46% 50%, 49% 58%, 50% 67%, 50% 75%, 50% 83%, 50% 92%, 50% 100%, 0 100%); transform: translateX(0); }
  37% { clip-path: polygon(0 0, 27% 0,  27% 8%,  28% 17%, 31% 25%, 34% 33%, 38% 42%, 42% 50%, 45% 58%, 48% 67%, 50% 75%, 50% 83%, 50% 92%, 50% 100%, 0 100%); transform: translateX(0); }
  46% { clip-path: polygon(0 0, 21% 0,  21% 8%,  22% 17%, 25% 25%, 29% 33%, 33% 42%, 37% 50%, 41% 58%, 45% 67%, 47% 75%, 50% 83%, 50% 92%, 50% 100%, 0 100%); transform: translateX(0); }
  /* Line ~halfway — seam fully curved top half, closing bottom half */
  55% { clip-path: polygon(0 0, 16% 0,  16% 8%,  18% 17%, 21% 25%, 25% 33%, 29% 42%, 33% 50%, 37% 58%, 41% 67%, 44% 75%, 47% 83%, 49% 92%, 50% 100%, 0 100%); transform: translateX(0); }
  /* Fully open — slide out */
  62% { clip-path: polygon(0 0, 16% 0,  16% 8%,  18% 17%, 21% 25%, 25% 33%, 29% 42%, 33% 50%, 37% 58%, 41% 67%, 44% 75%, 47% 83%, 49% 92%, 50% 100%, 0 100%); transform: translateX(-3%); }
  100%{ clip-path: polygon(0 0, 16% 0,  16% 8%,  18% 17%, 21% 25%, 25% 33%, 29% 42%, 33% 50%, 37% 58%, 41% 67%, 44% 75%, 47% 83%, 49% 92%, 50% 100%, 0 100%); transform: translateX(-108%); }
}

@keyframes open-right {
  0%  { clip-path: polygon(50% 0, 100% 0, 100% 100%, 50% 100%, 50% 92%, 50% 83%, 50% 75%, 50% 67%, 50% 58%, 50% 50%, 50% 42%, 50% 33%, 50% 25%, 50% 17%, 50% 8%); transform: translateX(0); }
  6%  { clip-path: polygon(54% 0, 100% 0, 100% 100%, 50% 100%, 50% 92%, 50% 83%, 50% 75%, 50% 67%, 50% 58%, 50% 50%, 50% 42%, 50% 33%, 50% 25%, 50% 17%, 54% 8%); transform: translateX(0); }
  12% { clip-path: polygon(58% 0, 100% 0, 100% 100%, 50% 100%, 50% 92%, 50% 83%, 50% 75%, 50% 67%, 50% 58%, 50% 50%, 50% 42%, 50% 33%, 52% 25%, 56% 17%, 58% 8%); transform: translateX(0); }
  20% { clip-path: polygon(62% 0, 100% 0, 100% 100%, 50% 100%, 50% 92%, 50% 83%, 50% 75%, 50% 67%, 50% 58%, 50% 50%, 53% 42%, 56% 33%, 59% 25%, 61% 17%, 62% 8%); transform: translateX(0); }
  28% { clip-path: polygon(67% 0, 100% 0, 100% 100%, 50% 100%, 50% 92%, 50% 83%, 50% 75%, 50% 67%, 51% 58%, 54% 50%, 57% 42%, 61% 33%, 64% 25%, 66% 17%, 67% 8%); transform: translateX(0); }
  37% { clip-path: polygon(73% 0, 100% 0, 100% 100%, 50% 100%, 50% 92%, 50% 83%, 50% 75%, 52% 67%, 55% 58%, 58% 50%, 62% 42%, 66% 33%, 69% 25%, 72% 17%, 73% 8%); transform: translateX(0); }
  46% { clip-path: polygon(79% 0, 100% 0, 100% 100%, 50% 100%, 50% 92%, 50% 83%, 53% 75%, 55% 67%, 59% 58%, 63% 50%, 67% 42%, 71% 33%, 75% 25%, 78% 17%, 79% 8%); transform: translateX(0); }
  55% { clip-path: polygon(84% 0, 100% 0, 100% 100%, 50% 100%, 51% 92%, 53% 83%, 56% 75%, 59% 67%, 63% 58%, 67% 50%, 71% 42%, 75% 33%, 79% 25%, 82% 17%, 84% 8%); transform: translateX(0); }
  62% { clip-path: polygon(84% 0, 100% 0, 100% 100%, 50% 100%, 51% 92%, 53% 83%, 56% 75%, 59% 67%, 63% 58%, 67% 50%, 71% 42%, 75% 33%, 79% 25%, 82% 17%, 84% 8%); transform: translateX(3%); }
  100%{ clip-path: polygon(84% 0, 100% 0, 100% 100%, 50% 100%, 51% 92%, 53% 83%, 56% 75%, 59% 67%, 63% 58%, 67% 50%, 71% 42%, 75% 33%, 79% 25%, 82% 17%, 84% 8%); transform: translateX(108%); }
}

/* Line blazes top-to-bottom quickly, reveal chases it */
@keyframes line-sweep {
  0%   { top: -4px;  opacity: 0.8; }
  88%  { top: 100vh; opacity: 0.8; }
  100% { top: 100vh; opacity: 0;   }
}

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

.logo { width: 160px; height: 160px; transition: transform 0.3s; }
.logo:hover { transform: scale(1.08); }
.logo img {
  width: 100%; height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(227,28,28,0.3));
}

.nav-links { display: flex; gap: 24px; list-style: none; align-items: center; }
.nav-links li { position: relative; }


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

/* ── HERO CAROUSEL — swipe + ken burns ── */
.hero-carousel {
  position: absolute; inset: 0;
  display: flex;
}

.hero-slide {
  position: relative;
  flex: 0 0 100vw;
  width: 100vw;
  height: 100%;
  overflow: hidden;
}

.hero-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1);
  transition: transform 2.5s ease-out;
}

/* Ken burns: JS adds .active AFTER swipe, triggering the scale transition */
.hero-slide.active img {
  transform: scale(1.06);
}


.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.96) 0%, rgba(10,10,10,0.55) 28%, rgba(10,10,10,0.15) 60%, transparent 78%);
  z-index: 1;
  opacity: 0;
  animation: fadeIn 1.3s ease forwards 0s;
}
.hero-overlay::before {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(to left, rgba(10,10,10,0.6) 0%, transparent 55%),
    linear-gradient(to right, rgba(10,10,10,0.4) 0%, transparent 40%);
}

.hero-content {
  position: absolute;
  bottom: 80px; right: 60px;
  z-index: 2;
  max-width: 560px;
  text-align: right;
  opacity: 0; transform: translateY(60px);
  animation: slideUp 1.3s cubic-bezier(0.16,1,0.3,1) forwards 0s;
}
.hero-banner-wrapper { margin-bottom: 20px; }
.hero-banner-img {
  width: clamp(260px, 42vw, 460px);
  height: auto;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.5));
}
.hero-sub {
  font-family: 'Inter', sans-serif; font-weight: 900; letter-spacing: -0.03em;
  font-size: clamp(28px, 3.2vw, 44px);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.05;
  margin: 0;
  color: #fff;
  text-shadow: 0 2px 24px rgba(0,0,0,0.8);
}
.hero-sub .accent { color: var(--red, #E31C1C); }
.hero-sub .loc {
  display: block;
  margin-top: 14px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  letter-spacing: 0.35em;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}
.hero-cta {
  display: inline-flex; align-items: center; gap: 12px;
  margin-top: 36px; padding: 15px 34px;
  background: var(--red); color: var(--white);
  text-decoration: none;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  transition: all 0.3s;
}
.hero-cta:hover {
  background: var(--gold); color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(245,197,24,0.3);
}
.scroll-indicator {
  position: absolute; bottom: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0; animation: fadeIn 1.3s ease forwards 0.2s;
}
.scroll-indicator span {
  font-size: 9px; letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.scroll-line {
  width: 1px; height: 46px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite 3.5s;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50%       { opacity: 0.3; transform: scaleY(0.6); }
}

/* ============================================================
   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 { width: 100%; height: 100%; object-fit: cover; }
.about-text { flex: 1; }
.about-text h3 {
  font-family: 'Inter', sans-serif; font-weight: 900; letter-spacing: -0.03em;
  font-size: clamp(22px, 2.8vw, 30px);
  text-transform: uppercase; letter-spacing: 0.04em;
  margin-bottom: 14px; color: var(--white);
}
.about-text p {
  font-size: 15px; line-height: 1.75;
  color: rgba(255,255,255,0.75); max-width: 500px;
}

/* ============================================================
   VIDEO SECTION
   ============================================================ */
.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 0; margin-bottom: 20px;
}
/* Section banner titles — same as nav but larger.
   Image is 2208×1952, ribbon body = middle 48% of height.
   At width 280px: height = 280 * (1952/2208) = ~248px.
   Ribbon body = ~119px tall. */
.section-banner-title {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 280px;
  height: 248px;
  background-image: url('https://wildkindness-cdn.b-cdn.net/blankbanner.png');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  transform: rotate(-2deg);
}
.section-banner-title h2 {
  font-family: 'Inter', sans-serif; font-weight: 900; letter-spacing: -0.03em;
  font-size: clamp(22px, 2.5vw, 28px);
  text-transform: uppercase;
  color: #111;
  letter-spacing: 0.08em;
  padding: 0 66px;
  line-height: 1;
  white-space: nowrap;
  position: static;
  transform: none;
  z-index: 1;
}
/* Hide the old img tag inside section-banner-title */
.section-banner-title .banner-bg-img { display: none; }
.video-nav { display: flex; gap: 12px; }
.video-nav-btn {
  width: 48px; height: 48px;
  border: 1px solid rgba(255,255,255,0.25);
  background: transparent; color: var(--white);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  font-size: 18px; transition: all 0.3s;
}
.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:active { cursor: grabbing; }
.video-carousel::-webkit-scrollbar { display: none; }
.video-card { flex: 0 0 auto; width: 360px; }
.video-thumbnail {
  position: relative; aspect-ratio: 16/9;
  overflow: hidden; background: #111;
  display: block; text-decoration: none;
}
.video-thumbnail img {
  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 { 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.2) 40%, transparent 65%);
  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.85);
  width: 70px; height: 70px;
  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: 10px 0 10px 18px;
  border-color: transparent transparent transparent var(--white);
  margin-left: 4px;
}
.video-number {
  position: absolute; top: 16px; left: 16px;
  font-family: 'Inter', sans-serif; font-weight: 900; letter-spacing: -0.03em; font-size: 56px; line-height: 1;
  -webkit-text-stroke: 1px rgba(255,255,255,0.2); color: transparent;
}
.video-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 20px; transform: translateY(8px); opacity: 0; transition: all 0.4s;
}
.video-card:hover .video-info { transform: translateY(0); opacity: 1; }
.video-title {
  font-family: 'Inter', sans-serif; font-weight: 900; letter-spacing: -0.03em; font-size: 20px;
  text-transform: uppercase; letter-spacing: 0.03em; margin-bottom: 6px;
}
.video-meta {
  display: flex; gap: 14px;
  font-size: 10px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gray);
}

/* ============================================================
   PRIVATE GALLERY
   ============================================================ */
.private-gallery { padding: 120px 60px; text-align: center; }
.private-gallery-header { margin-bottom: 56px; }
.private-gallery-header h2 {
  font-family: 'Inter', sans-serif; font-weight: 900; letter-spacing: -0.03em;
  font-size: clamp(28px, 4.5vw, 44px);
  text-transform: uppercase; margin-bottom: 12px;
}
.private-gallery-header p { color: var(--gray); font-size: 13px; letter-spacing: 0.1em; }
.private-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px; max-width: 960px; margin: 0 auto;
}
.private-item {
  position: relative; aspect-ratio: 1; overflow: hidden;
  border-radius: 6px; background: #111;
}
.private-item img {
  width: 100%; height: 100%; object-fit: cover;
  filter: blur(28px) brightness(0.3);
  transform: scale(1.1);
  transition: filter 0.4s, transform 0.4s;
}
.private-item.revealed img { 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.55); transition: opacity 0.4s;
}
.private-item.revealed .private-item-overlay { opacity: 0; pointer-events: none; }
.key-hint {
  font-size: 10px; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gray); margin-bottom: 10px;
}
.key-combo { display: flex; gap: 8px; align-items: center; }
.key {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,0.25); border-radius: 5px;
  font-size: 13px; font-weight: 500; color: var(--white);
  background: rgba(255,255,255,0.05);
}
.key-combo span:not(.key) { color: var(--gray); font-size: 15px; }

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter-section {
  padding: 100px 60px;
  background: linear-gradient(180deg, var(--black) 0%, #0f0f0f 100%);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.newsletter-container { max-width: 680px; margin: 0 auto; text-align: center; }
.newsletter-banner-title {
  display: inline-flex; align-items: center; justify-content: center;
  width: 340px; height: 301px;
  background-image: url('https://wildkindness-cdn.b-cdn.net/blankbanner.png');
  background-size: 100% 100%; background-repeat: no-repeat;
  transform: rotate(-2deg); margin-bottom: 0;
}
.newsletter-banner-title .banner-bg-img { display: none; }
.newsletter-banner-title h2 {
  font-family: 'Inter', sans-serif; font-weight: 900; letter-spacing: -0.03em; font-size: clamp(24px, 3vw, 32px);
  text-transform: uppercase; letter-spacing: 0.08em; color: #111;
  position: static; transform: none;
  white-space: nowrap; padding: 0 80px; line-height: 1;
}
.newsletter-desc { font-size: 14px; font-weight: 300; line-height: 1.75; color: var(--gray); margin-bottom: 36px; }
.newsletter-form { display: flex; gap: 10px; max-width: 480px; margin: 0 auto; }
.newsletter-input {
  flex: 1; background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white); font-family: 'Space Grotesk', sans-serif;
  font-size: 14px; padding: 16px 20px; transition: all 0.3s;
}
.newsletter-input:focus { outline: none; border-color: var(--red); background: rgba(255,255,255,0.07); }
.newsletter-input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-btn {
  background: var(--red); border: none; color: var(--white);
  font-family: 'Space Grotesk', sans-serif; font-size: 11px; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 16px 28px; 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.35); margin-top: 14px; }

/* ============================================================
   PORTFOLIO GRID
   ============================================================ */
.section-header {
  padding: 0 60px 0;
  display: flex; justify-content: space-between; align-items: flex-end;
}
.section-link {
  font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gray); text-decoration: none;
  border-bottom: 1px solid var(--gray); padding-bottom: 3px; 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 60px;
}
.model-card {
  position: relative; aspect-ratio: 3/4;
  overflow: hidden; cursor: pointer; background: #111;
  text-decoration: none; display: block;
}
.model-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.model-card:hover img { transform: scale(1.1); }
.model-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.9) 0%, transparent 55%);
  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: 24px; transform: translateY(16px); 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: 'Inter', sans-serif; font-weight: 900; letter-spacing: -0.03em; font-size: 22px; text-transform: none; letter-spacing: 0.04em; }
.model-tag { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gray); margin-top: 6px; }

/* ============================================================
   BLOG SECTION
   ============================================================ */
.blog-section { padding-bottom: 80px; }
.blog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; padding: 0 60px;
}
.blog-card {
  display: flex; flex-direction: column;
  background: rgba(255,255,255,0.02);
  text-decoration: none; color: var(--white);
  transition: transform 0.3s, background 0.3s;
  border: 1px solid rgba(255,255,255,0.06);
}
.blog-card:hover { transform: translateY(-4px); background: rgba(255,255,255,0.05); }
.blog-card-image {
  aspect-ratio: 16/9; overflow: hidden; background: #111;
}
.blog-card-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s;
}
.blog-card:hover .blog-card-image img { transform: scale(1.05); }
.blog-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.blog-card-date { font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--red); }
.blog-card-title { font-family: 'Inter', sans-serif; font-weight: 900; letter-spacing: -0.03em; font-size: 22px; text-transform: none; line-height: 1.1; }
.blog-card-excerpt { font-size: 13px; color: var(--gray); line-height: 1.6; }

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section { padding-bottom: 80px; }
.faq-list { max-width: 800px; margin: 0 auto; padding: 0 60px; }
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.faq-question {
  width: 100%; background: none; border: none; color: var(--white);
  font-family: 'Inter', sans-serif; font-weight: 900; letter-spacing: -0.03em; font-size: 18px;
  text-transform: uppercase; letter-spacing: 0.04em;
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0; cursor: pointer; text-align: left;
  transition: color 0.3s;
}
.faq-question:hover { color: var(--red); }
.faq-icon {
  font-size: 24px; font-weight: 300; color: var(--red);
  transition: transform 0.3s; flex-shrink: 0; margin-left: 20px;
  font-family: 'Space Grotesk', sans-serif;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner {
  padding: 0 0 24px;
  font-size: 15px; line-height: 1.75; color: rgba(255,255,255,0.7);
}
.faq-answer-inner p { margin-bottom: 12px; }

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section { padding-bottom: 100px; }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.5fr;
  gap: 60px; padding: 0 60px;
  max-width: 1100px; margin: 0 auto;
}
.contact-methods { display: flex; flex-direction: column; gap: 16px; }
.contact-method {
  display: flex; flex-direction: column; gap: 4px;
  padding: 20px 24px;
  background: rgba(255,255,255,0.03);
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.3s;
}
.contact-method:hover { background: rgba(227,28,28,0.08); border-color: var(--red); }
.method-label { font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gray); }
.method-value { font-family: 'Inter', sans-serif; font-weight: 900; letter-spacing: -0.03em; font-size: 20px; color: var(--white); }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gray); }
.form-group input, .form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white); font-family: 'Space Grotesk', sans-serif;
  font-size: 15px; padding: 14px 16px; transition: border-color 0.3s;
  resize: none;
}
.form-group input:focus, .form-group textarea:focus {
  outline: none; border-color: var(--red);
  background: rgba(255,255,255,0.06);
}
.form-submit {
  background: var(--red); border: none; color: var(--white);
  font-family: 'Inter', sans-serif; font-weight: 900; letter-spacing: -0.03em; font-size: 16px;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 16px 32px; cursor: pointer; transition: all 0.3s;
  align-self: flex-start;
}
.form-submit:hover { background: var(--gold); color: var(--black); }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  padding: 44px 0; overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.marquee-track {
  display: flex; gap: 44px;
  animation: marquee 28s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-family: 'Inter', sans-serif; font-weight: 900; letter-spacing: -0.03em;
  font-size: clamp(36px, 6vw, 62px);
  text-transform: uppercase; white-space: nowrap; opacity: 0.1;
}
.marquee-track span.bright { opacity: 1; }
.marquee-track span.dot    { color: var(--red); opacity: 1; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ============================================================
   FOOTER
   ============================================================ */
footer { padding: 90px 60px 55px; display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 70px; }
.footer-logo { width: 70px; height: 70px; margin-bottom: 20px; }
.footer-logo img { width: 100%; height: 100%; object-fit: contain; }
.footer-tagline { font-size: 13px; color: var(--gray); line-height: 1.75; max-width: 260px; }
.footer-col h4 { font-size: 9px; letter-spacing: 0.25em; text-transform: uppercase; margin-bottom: 22px; color: var(--gray); }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { color: var(--white); text-decoration: none; font-size: 13px; 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: 44px; margin-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 11px; color: var(--gray);
}
.social-links { display: flex; gap: 28px; }
.social-links a { color: var(--white); text-decoration: none; font-size: 11px; letter-spacing: 0.1em; transition: all 0.3s; }
.social-links a:hover { color: var(--red); }

.footer-contact-line {
  display: inline-flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.3s;
}
.footer-contact-line:hover { color: var(--red); }
.footer-contact-loc { font-weight: 400; }
.footer-contact-sep { opacity: 0.4; font-size: 12px; }
.footer-contact-num { font-family: 'Inter', sans-serif; font-weight: 700; letter-spacing: 0.08em; color: rgba(255,255,255,0.85); }
.footer-contact-line:hover .footer-contact-num { color: var(--red); }

/* ============================================================
   POST / PAGE / ERROR
   ============================================================ */
.post-full, .page-full { max-width: 800px; margin: 0 auto; padding: 160px 24px 80px; }
.post-feature-image, .page-feature-image { width: 100%; aspect-ratio: 16/9; overflow: hidden; margin-bottom: 40px; }
.post-feature-image img, .page-feature-image img { width: 100%; height: 100%; object-fit: cover; }
.post-title, .page-title {
  font-family: 'Inter', sans-serif; font-weight: 900; letter-spacing: -0.03em;
  font-size: clamp(2rem, 6vw, 3.5rem);
  text-transform: none; line-height: 1; margin-bottom: 16px;
}
.post-meta { display: flex; gap: 16px; font-size: 12px; color: var(--gray); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 40px; }
.post-tag { color: var(--red); }
.post-content, .page-content { font-size: 16px; line-height: 1.8; color: rgba(255,255,255,0.8); }
.post-content h2, .post-content h3 { font-family: 'Inter', sans-serif; font-weight: 900; letter-spacing: -0.03em; text-transform: none; margin: 40px 0 16px; }
.post-content a { color: var(--red); }
.post-footer { margin-top: 48px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.08); }
.post-tags { display: flex; gap: 10px; flex-wrap: wrap; }
.post-tags .tag {
  font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gray); text-decoration: none;
  border: 1px solid rgba(255,255,255,0.1); padding: 5px 12px; transition: all 0.3s;
}
.post-tags .tag:hover { border-color: var(--red); color: var(--red); }

.error-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 24px; }
.error-content h1 {
  font-family: 'Inter', sans-serif; font-weight: 900; letter-spacing: -0.03em;
  font-size: clamp(8rem, 20vw, 15rem); line-height: 1;
  background: linear-gradient(180deg, var(--red) 0%, #6b0000 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.error-message { font-family: 'Inter', sans-serif; font-weight: 900; letter-spacing: -0.03em; font-size: clamp(1.4rem, 4vw, 2.2rem); text-transform: none; letter-spacing: 0.1em; margin-bottom: 14px; }
.error-description { color: var(--gray); font-size: 15px; max-width: 380px; margin: 0 auto 36px; }
.error-cta { display: inline-block; padding: 14px 32px; background: var(--red); color: var(--white); text-decoration: none; font-size: 11px; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; transition: 0.3s; }
.error-cta:hover { background: var(--gold); color: var(--black); }

/* Ghost image placeholder */
.placeholder {
  background: linear-gradient(145deg, #151515, #1a1a1a, #0f0f0f);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: #333; letter-spacing: 0.15em;
  text-transform: uppercase; width: 100%; height: 100%;
}

/* ============================================================
   KEYFRAMES
   ============================================================ */
@keyframes fadeIn  { to { opacity: 1; } }
@keyframes slideUp { to { opacity: 1; transform: translateY(0); } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .model-grid { grid-template-columns: repeat(2, 1fr); }
  .video-card { width: 300px; }
}
@media (max-width: 768px) {
  nav { padding: 16px 20px; }
  .logo { width: 72px; height: 72px; }
  .nav-links { display: none; }
  .hero-content { left: 20px; right: 20px; bottom: 100px; }
  .about-section { padding: 60px 20px; }
  .about-block, .about-block.reverse { flex-direction: column; gap: 20px; text-align: center; }
  .about-thumb { flex: 0 0 160px; width: 160px; height: 160px; }
  .about-text p { max-width: 100%; }
  .video-section-header { padding: 0 20px; flex-direction: column; align-items: flex-start; gap: 20px; }
  .video-carousel { padding: 0 20px; }
  .video-card { width: 260px; }
  .private-gallery { padding: 80px 20px; }
  .newsletter-section { padding: 60px 20px; }
  .newsletter-form { flex-direction: column; }
  .section-header { padding: 60px 20px 30px; }
  .model-grid { grid-template-columns: 1fr; padding: 0 20px 60px; gap: 10px; }
  footer { grid-template-columns: 1fr; padding: 60px 20px 40px; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
}

/* ========== NAV BANNER BUTTONS (blankbanner.png overlay) ========== */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  pointer-events: none;
}
.site-nav .logo,
.site-nav .nav-links { pointer-events: auto; }

.site-nav .logo {
  width: 140px;
  height: 140px;
  display: block;
  transition: transform 0.3s;
}
.site-nav .logo:hover { transform: scale(1.06); }
.site-nav .logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(227, 28, 28, 0.3));
}

.site-nav .nav-links {
  display: flex;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-banner-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  transition: color 0.25s, opacity 0.25s;
  white-space: nowrap;
  opacity: 0.85;
  /* Lock width so font-family swaps during hover flicker don't shift siblings */
  width: 110px;
  box-sizing: border-box;
  overflow: hidden;
  text-align: center;
}
.nav-banner-btn:hover {
  color: #fff;
  opacity: 1;
}

/* ========== HERO CTA BANNER (bottom left) ========== */
.hero-cta-banner {
  position: absolute;
  bottom: 60px;
  left: 48px;
  z-index: 5;
  display: block;
  width: clamp(240px, 24vw, 340px);
  transition: transform 0.3s, filter 0.3s;
  cursor: pointer;
  opacity: 0;
  animation: ctaFadeIn 0.8s ease forwards 1.6s;
}
.hero-cta-banner img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 4px 18px rgba(0,0,0,0.5));
}
.hero-cta-banner:hover {
  transform: scale(1.04) rotate(-1deg);
}
.hero-cta-banner:hover img {
  filter: drop-shadow(0 6px 24px rgba(227, 28, 28, 0.4));
}

@keyframes ctaFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ========== RESPONSIVE NAV ========== */
@media (max-width: 960px) {
  .site-nav { padding: 16px 20px; }
  .site-nav .logo { width: 80px; height: 80px; }
  .nav-banner-btn { font-size: 11px; padding: 8px 10px; letter-spacing: 0.18em; width: 92px; }
  .site-nav .nav-links { gap: 2px; }
  .hero-content { bottom: 60px; right: 24px; left: 24px; max-width: none; text-align: right; }
  .hero-sub { font-size: clamp(22px, 5vw, 32px); }
}
@media (max-width: 640px) {
  .site-nav .nav-links { display: none; }
  .hero-cta-banner { top: 110px; left: 16px; bottom: auto; width: 170px; }
  .hero-content { bottom: 80px; }
  .hero-sub { font-size: 24px; }
  .hero-sub .loc { font-size: 10px; letter-spacing: 0.25em; }
}

/* ============================================================
   STICKY NEWSLETTER FOOTER — persistent site-wide email capture
   ============================================================ */
.sticky-newsletter {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 14px 20px;
  transform: translateY(0);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), opacity 0.3s;
  opacity: 1;
}
.sticky-newsletter.dismissed {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.sticky-nl-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.sticky-nl-label {
  font-family: 'Inter', 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.75);
  flex: 1 1 auto;
  min-width: 200px;
}
.sticky-nl-form {
  display: flex;
  gap: 8px;
  align-items: center;
  flex: 0 1 auto;
}
.sticky-nl-input {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  padding: 10px 16px;
  min-width: 220px;
  transition: all 0.2s;
}
.sticky-nl-input:focus {
  outline: none;
  border-color: #E31C1C;
  background: rgba(255,255,255,0.12);
}
.sticky-nl-input::placeholder {
  color: rgba(255,255,255,0.4);
}
.sticky-nl-btn {
  background: #E31C1C;
  color: #fff;
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 11px 20px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
}
.sticky-nl-btn:hover {
  background: #ff2020;
  transform: translateY(-1px);
}
.sticky-nl-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  font-size: 22px;
  line-height: 1;
  width: 28px;
  height: 28px;
  padding: 0;
  cursor: pointer;
  flex: 0 0 auto;
  transition: color 0.2s;
}
.sticky-nl-close:hover { color: #fff; }

@media (max-width: 680px) {
  .sticky-newsletter { padding: 10px 12px; }
  .sticky-nl-inner { gap: 10px; }
  .sticky-nl-label { font-size: 11px; letter-spacing: 0.06em; text-align: center; flex-basis: 100%; }
  .sticky-nl-form { width: 100%; }
  .sticky-nl-input { flex: 1; min-width: 0; font-size: 14px; padding: 10px 12px; }
  .sticky-nl-btn { padding: 10px 14px; font-size: 11px; }
  .sticky-nl-close { position: absolute; top: 6px; right: 8px; }
  .sticky-newsletter { padding-right: 36px; }
}

/* Reserve space at bottom of page so content doesn't hide behind bar */
body:not(.v2-takeover) { padding-bottom: 80px; }
@media (max-width: 680px) {
  body:not(.v2-takeover) { padding-bottom: 120px; }
}
