/* ============================================================
   NudeLifestyle — Ultra-minimal Elegant Photography Portfolio
   Mobile-first, dark theme, subtle animations
   ============================================================ */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg:        #080808;
  --bg-soft:   #111111;
  --bg-card:   #161616;
  --text:      #e8e4e0;
  --text-muted:#8a8580;
  --text-dim:  #5a5552;
  --accent:    #c9a87c;  /* warm gold */
  --accent-dim:#7a654c;
  --border:    rgba(255,255,255,0.06);
  --radius:    4px;
  --max-width: 1400px;
  --gap:       clamp(12px, 2vw, 20px);
  --nav-h:     64px;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

img, video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ---------- TYPOGRAPHY ---------- */
.section-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 1.15;
  color: var(--text);
}

.section-sub {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-muted);
  margin-top: 0.75rem;
  letter-spacing: 0.03em;
}

/* ---------- NAVIGATION ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 4vw, 60px);
  mix-blend-mode: difference;
  transition: background 0.35s ease;
}

.nav--scrolled {
  background: rgba(8,8,8,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  mix-blend-mode: normal;
}

.nav__logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--text);
  z-index: 101;
}

.nav__menu {
  display: flex;
  gap: clamp(20px, 3vw, 40px);
  list-style: none;
}

.nav__menu a {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s;
  position: relative;
}

.nav__menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.35s ease;
}

.nav__menu a:hover,
.nav__menu a:focus-visible {
  color: var(--text);
}

.nav__menu a:hover::after,
.nav__menu a:focus-visible::after {
  width: 100%;
}

/* Hamburger toggle (mobile) */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 101;
  padding: 8px;
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: transform 0.35s, opacity 0.35s;
}

.nav__toggle.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav__toggle.active span:nth-child(2) {
  transform: translateY(-6.5px) rotate(-45deg);
}

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

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  animation: heroBreath 8s ease-in-out infinite alternate;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(201,168,124,0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 30%, rgba(180,150,120,0.04) 0%, transparent 50%),
    rgba(8,8,8,0.55);
  z-index: 1;
}

@keyframes heroBreath {
  0%   { opacity: 0.6; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.05); }
}

.hero__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 24px;
}

.hero__title {
  display: flex;
  flex-direction: column;
  gap: 0.15em;
}

.reveal-line {
  overflow: hidden;
  display: block;
}

.reveal-text {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 10vw, 7rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: var(--text);
  transform: translateY(110%);
  animation: revealUp 1s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

.reveal-line:nth-child(1) .reveal-text { animation-delay: 0.15s; }
.reveal-line:nth-child(2) .reveal-text { animation-delay: 0.35s; }
.reveal-line:nth-child(3) .reveal-text { animation-delay: 0.55s; }

@keyframes revealUp {
  to { transform: translateY(0); }
}

.hero__sub {
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  margin-top: 1.5rem;
  opacity: 0;
  animation: fadeIn 1s 1.2s ease forwards;
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-dim);
  opacity: 0;
  animation: fadeIn 1s 1.6s ease forwards;
  transition: color 0.3s;
}

.hero__scroll:hover {
  color: var(--text);
}

.scroll-dot {
  animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollDot {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(12px); opacity: 0.3; }
}

@keyframes fadeIn {
  to { opacity: 1; }
}

/* ---------- GENERIC SECTIONS ---------- */
section {
  padding: clamp(80px, 12vh, 140px) clamp(20px, 4vw, 60px);
}

.gallery__head,
.video-section__head {
  max-width: var(--max-width);
  margin: 0 auto clamp(40px, 6vw, 72px);
  text-align: center;
}

/* ---------- SCROLL REVEAL ---------- */
.reveal-fade {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.22, 0.61, 0.36, 1),
              transform 0.9s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.reveal-fade.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- GALLERY GRID ---------- */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--gap);
  max-width: var(--max-width);
  margin: 0 auto;
}

/* Masonry-like variation via nth-child spans */
.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--bg-card);
  cursor: pointer;
  aspect-ratio: 3 / 4;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.gallery__item.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Vary aspect ratios for masonry feel */
.gallery__item:nth-child(5n + 1) { aspect-ratio: 3 / 4; }
.gallery__item:nth-child(5n + 2) { aspect-ratio: 2 / 3; }
.gallery__item:nth-child(5n + 3) { aspect-ratio: 1 / 1; }
.gallery__item:nth-child(5n + 4) { aspect-ratio: 4 / 5; }
.gallery__item:nth-child(5n + 5) { aspect-ratio: 3 / 4; }

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.gallery__item:hover img {
  transform: scale(1.04);
}

.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.5) 0%, transparent 40%);
  opacity: 0;
  transition: opacity 0.4s;
}

.gallery__item:hover::after {
  opacity: 1;
}

.gallery__item-caption {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 2;
  font-size: 0.8rem;
  color: #fff;
  letter-spacing: 0.05em;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s, transform 0.4s;
}

.gallery__item:hover .gallery__item-caption {
  opacity: 1;
  transform: translateY(0);
}

/* Empty/placeholder state */
.gallery__item--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-align: center;
  padding: 24px;
}

/* ---------- AD SLOTS ---------- */
.ad-slot {
  max-width: var(--max-width);
  margin: 0 auto clamp(60px, 8vw, 100px);
  text-align: center;
}

.ad-slot--wide {
  max-width: 970px;
}

.ad-slot--footer {
  margin-bottom: 0;
  padding-bottom: 40px;
}

.ad-label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 12px;
}

.ad-placeholder {
  min-height: 90px;
  background: var(--bg-card);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--text-dim);
  letter-spacing: 0.05em;
}

.ad-placeholder::after {
  content: 'Ad Space — 728×90 / 300×250';
}

.ad-slot--wide .ad-placeholder {
  min-height: 250px;
}

.ad-slot--wide .ad-placeholder::after {
  content: 'Ad Space — 970×250';
}

/* ---------- VIDEO SECTION ---------- */
.video-section__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--gap);
  max-width: var(--max-width);
  margin: 0 auto;
}

.video-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  aspect-ratio: 16 / 9;
  cursor: pointer;
}

.video-card video,
.video-card iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-card__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.35);
  opacity: 1;
  transition: opacity 0.4s;
}

.video-card:hover .video-card__play {
  opacity: 0;
}

.video-card__play span {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s;
}

.video-card__play span::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-left: 14px solid rgba(255,255,255,0.85);
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  margin-left: 3px;
}

/* Placeholder state */
.video-card--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  aspect-ratio: 16 / 9;
}

/* ---------- ABOUT ---------- */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  max-width: var(--max-width);
  margin: 0 auto;
  align-items: center;
}

.about__image-frame {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
}

.about__image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__image-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  z-index: 1;
}

.about__text p {
  color: var(--text-muted);
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.about__text .section-title {
  margin-bottom: 1.5rem;
}

.about__cta {
  color: var(--accent) !important;
  font-weight: 400;
}

/* ---------- CONTACT ---------- */
.contact {
  text-align: center;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact__inner {
  max-width: 600px;
  margin: 0 auto;
}

.contact__email {
  display: inline-block;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--accent);
  margin: 1.5rem 0 2rem;
  transition: color 0.3s;
  position: relative;
}

.contact__email::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--accent-dim);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}

.contact__email:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.contact__social {
  display: flex;
  justify-content: center;
  gap: clamp(24px, 4vw, 48px);
}

.contact__social a {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s;
}

.contact__social a:hover {
  color: var(--text);
}

/* ---------- FOOTER ---------- */
.footer {
  padding: 0 clamp(20px, 4vw, 60px) clamp(30px, 4vh, 50px);
  text-align: center;
}

.footer__bottom {
  padding-top: 30px;
  border-top: 1px solid var(--border);
}

.footer__bottom p {
  font-size: 0.75rem;
  color: var(--text-dim);
  letter-spacing: 0.05em;
}

.footer__tagline {
  margin-top: 4px;
  color: var(--accent-dim) !important;
}

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

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox__content {
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox__content img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 0 80px rgba(0,0,0,0.5);
}

.lightbox__caption {
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.lightbox__close {
  position: fixed;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: var(--text);
  font-size: 2rem;
  cursor: pointer;
  z-index: 10001;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.lightbox__close:hover { opacity: 1; }

.lightbox__prev,
.lightbox__next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.6;
  transition: opacity 0.3s, background 0.3s;
}

.lightbox__prev:hover,
.lightbox__next:hover {
  opacity: 1;
  background: rgba(255,255,255,0.12);
}

.lightbox__prev { left: clamp(12px, 3vw, 32px); }
.lightbox__next { right: clamp(12px, 3vw, 32px); }

/* ---------- RESPONSIVE ---------- */

/* Tablet (≤1024px) */
@media (max-width: 1024px) {
  .about__grid {
    grid-template-columns: 1fr;
    max-width: 560px;
  }

  .about__visual {
    order: -1;
  }

  .about__text {
    text-align: center;
  }

  .video-section__grid {
    grid-template-columns: 1fr;
  }
}

/* Mobile (≤768px) */
@media (max-width: 768px) {
  .nav__toggle {
    display: flex;
  }

  .nav__menu {
    position: fixed;
    inset: 0;
    background: rgba(8,8,8,0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
  }

  .nav__menu.active {
    opacity: 1;
    pointer-events: all;
  }

  .nav__menu a {
    font-size: 1.1rem;
  }

  .gallery__grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 8px;
  }

  /* Simpler aspect ratios on mobile */
  .gallery__item,
  .gallery__item:nth-child(n) {
    aspect-ratio: 2 / 3;
  }

  .gallery__item-caption {
    opacity: 1;
    transform: none;
  }

  .gallery__item::after {
    opacity: 1;
  }

  .lightbox__prev,
  .lightbox__next {
    width: 36px;
    height: 36px;
  }
}

/* Small mobile (≤480px) */
@media (max-width: 480px) {
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }

  .hero__sub {
    letter-spacing: 0.06em;
  }

  .contact__social {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
}

/* Desktop large (≥1600px) */
@media (min-width: 1600px) {
  .gallery__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .video-section__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ---------- LOADING / PREFER REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html { scroll-behavior: auto; }

  .reveal-fade,
  .gallery__item {
    opacity: 1;
    transform: none;
  }
}

/* ============================================================
   MULTI-PAGE ADDITIONS
   ============================================================ */

/* ---------- ACTIVE NAV LINK ---------- */
.nav__link--active {
  color: var(--text) !important;
}

.nav__link--active::after {
  width: 100% !important;
}

/* ---------- PAGE HEADER (sub-pages) ---------- */
.page-header {
  padding-top: calc(var(--nav-h) + clamp(60px, 10vh, 120px));
  padding-bottom: clamp(32px, 5vh, 60px);
  text-align: center;
}

.page-header .section-title {
  margin-bottom: 0.5rem;
}

/* ---------- HOME: FEATURE CARDS ---------- */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--gap);
  max-width: var(--max-width);
  margin: 0 auto;
}

.feature-card {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  aspect-ratio: 4 / 5;
  text-decoration: none;
  color: var(--text);
  transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.feature-card:hover {
  transform: translateY(-4px);
}

.feature-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.feature-card:hover img {
  transform: scale(1.05);
}

.feature-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.7) 0%, transparent 45%);
}

.feature-card__label {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  z-index: 2;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: #fff;
}

.feature-card__arrow {
  position: absolute;
  bottom: 24px;
  right: 24px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.35s, transform 0.35s;
}

.feature-card:hover .feature-card__arrow {
  opacity: 1;
  transform: translateX(0);
}

.feature-card__arrow::after {
  content: '→';
  color: #fff;
  font-size: 1rem;
}

/* ---------- VIDEO CARD TITLE ---------- */
.video-card__title {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 2;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: #fff;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s, transform 0.4s;
}

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

.video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- 18+ DISCLAIMER ---------- */
.disclaimer {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.disclaimer--active {
  opacity: 1;
}

.disclaimer--out {
  opacity: 0;
  transition: opacity 0.4s ease;
}

.disclaimer__card {
  text-align: center;
  max-width: 440px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(32px, 5vw, 52px) clamp(28px, 5vw, 44px);
  transform: translateY(20px);
  transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.disclaimer--active .disclaimer__card {
  transform: translateY(0);
}

.disclaimer__icon {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.disclaimer__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--text);
  margin-bottom: 1rem;
}

.disclaimer__text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.disclaimer__age {
  font-size: 0.85rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
  letter-spacing: 0.04em;
}

.disclaimer__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.disclaimer__btn {
  display: block;
  width: 100%;
  padding: 14px 24px;
  border: none;
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, opacity 0.3s;
}

.disclaimer__btn--enter {
  background: var(--accent);
  color: #0a0a0a;
}

.disclaimer__btn--enter:hover {
  background: #d4b68a;
}

.disclaimer__btn--exit {
  background: transparent;
  color: var(--text-dim);
  border: 1px solid rgba(255,255,255,0.12);
}

.disclaimer__btn--exit:hover {
  color: var(--text-muted);
  border-color: rgba(255,255,255,0.2);
}

.disclaimer__legal {
  margin-top: 1.25rem;
  font-size: 0.7rem;
  color: var(--text-dim);
  letter-spacing: 0.04em;
}

.disclaimer__legal a {
  color: var(--accent-dim);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.3s;
}

.disclaimer__legal a:hover {
  color: var(--accent);
}

/* ---------- LEGAL PAGES (Privacy / Terms) ---------- */
.legal {
  max-width: 720px;
  margin: 0 auto;
  padding-top: calc(var(--nav-h) + 24px);
}

.legal h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--text);
  margin: 2rem 0 0.75rem;
}

.legal h2:first-of-type {
  margin-top: 0;
}

.legal p,
.legal li {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.legal ul {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

.legal li {
  margin-bottom: 0.4rem;
}

.legal strong {
  color: var(--text);
  font-weight: 500;
}

/* ---------- FOOTER LEGAL LINKS ---------- */
.footer__legal {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 8px;
}

.footer__legal a {
  font-size: 0.7rem;
  color: var(--text-dim);
  letter-spacing: 0.05em;
  transition: color 0.3s;
}

.footer__legal a:hover {
  color: var(--text-muted);
}

/* ---------- RESPONSIVE ADDITIONS ---------- */
@media (max-width: 768px) {
  .feature-card__arrow {
    opacity: 1;
    transform: none;
  }

  .video-card__title {
    opacity: 1;
    transform: none;
  }

  .legal {
    padding-left: 20px;
    padding-right: 20px;
  }
}
