:root {
  --bg-900: #090909;
  --bg-800: #141414;
  --bg-700: #1f1f1f;
  --text-100: #f5f4ef;
  --text-300: #cbc6b7;
  --accent-500: #c8a34a;
  --accent-400: #e0c574;
  --accent-300: #f2dfab;
  --line: rgba(255, 255, 255, 0.12);
  --glow: 0 20px 60px rgba(200, 163, 74, 0.28);
  --radius-lg: 20px;
  --radius-md: 14px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: linear-gradient(135deg, #171717, #090909 70%);
  color: var(--text-100);
  font-family: "Tenor Sans", "Helvetica Neue", Arial, sans-serif;
  min-height: 100%;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  position: relative;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: -20%;
  z-index: -1;
  pointer-events: none;
}

body::before {
  background:
    radial-gradient(circle at 20% 20%, rgba(200, 163, 74, 0.28), transparent 34%),
    radial-gradient(circle at 80% 30%, rgba(120, 120, 120, 0.2), transparent 36%),
    radial-gradient(circle at 45% 80%, rgba(227, 195, 118, 0.14), transparent 38%);
  animation: ambientShift 14s ease-in-out infinite alternate;
}

body::after {
  background:
    repeating-linear-gradient(
      115deg,
      rgba(200, 163, 74, 0.06) 0 2px,
      rgba(0, 0, 0, 0) 2px 36px
    ),
    linear-gradient(120deg, rgba(255, 255, 255, 0.02), transparent 45%),
    radial-gradient(circle at 65% 50%, rgba(200, 163, 74, 0.12), transparent 44%);
  background-size: 280px 280px, auto, auto;
  animation: ambientDrift 18s linear infinite, gridDrift 26s linear infinite;
}

@keyframes ambientShift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(-3%, 2%, 0) scale(1.08);
  }
}

@keyframes ambientDrift {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  100% {
    transform: translate3d(2%, -2%, 0) rotate(7deg);
  }
}

@keyframes gridDrift {
  0% {
    background-position: 0 0, center, center;
  }
  100% {
    background-position: 240px 180px, center, center;
  }
}

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

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

.container {
  width: min(100% - 2rem, var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(12px);
  background: rgba(10, 10, 10, 0.72);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}

.header-right {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.75rem;
  row-gap: 0.5rem;
  padding: 0.35rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 220ms ease, border-color 220ms ease;
}

.brand:hover img {
  transform: scale(1.06);
  border-color: rgba(200, 163, 74, 0.75);
}

.nav-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li {
  flex: 0 0 auto;
}

.social-top {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  font-size: 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-100);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.social-icon:hover {
  transform: translateY(-2px);
  border-color: rgba(200, 163, 74, 0.7);
  background: rgba(200, 163, 74, 0.18);
}

.nav-links a {
  display: inline-block;
  padding: 0.56rem 0.95rem;
  border-radius: 999px;
  color: var(--text-300);
  font-weight: 600;
  font-size: 0.89rem;
  letter-spacing: 0.02em;
  min-height: 44px;
  min-width: 44px;
  line-height: 1.2;
  border: 1px solid transparent;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-100);
  background: rgba(200, 163, 74, 0.16);
  border-color: rgba(200, 163, 74, 0.4);
  transform: translateY(-1px);
}

main {
  padding: 2.3rem 0 4rem;
}

.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2rem;
}

.panel {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  border-radius: var(--radius-lg);
  box-shadow: var(--glow);
}

.hero-copy {
  padding: 2rem;
}

.kicker {
  display: inline-block;
  color: var(--accent-300);
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  margin-bottom: 0.65rem;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  font-size: clamp(1.9rem, 2.8vw, 3rem);
  line-height: 1.05;
}

.hero-copy p {
  margin-top: 1rem;
  color: var(--text-300);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.profile-card {
  overflow: hidden;
}

.profile-card img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  transition: transform 280ms ease, filter 280ms ease;
}

.profile-card:hover img {
  transform: scale(1.045);
  filter: saturate(1.08) brightness(1.05);
}

.section {
  margin-top: 2rem;
}

.section-title {
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.video-wrap,
.gallery,
.links-grid,
.jcit-card {
  padding: 1rem;
}

.video-wrap video,
.video-wrap iframe {
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  width: 100%;
  min-height: 280px;
  background: #000;
  transition: transform 260ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.video-wrap:hover video,
.video-wrap:hover iframe {
  transform: translateY(-2px);
  border-color: rgba(200, 163, 74, 0.48);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.35);
}

.video-carousel {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0.2rem;
}

.video-track {
  display: flex;
  gap: 0.9rem;
  width: max-content;
}

.video-slide {
  width: min(76vw, 430px);
  scroll-snap-align: start;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  padding: 0.45rem;
}

.video-slide video {
  width: 100%;
  height: min(62vw, 650px);
  border-radius: 11px;
  border: 1px solid var(--line);
  object-fit: cover;
  background: #000;
}

.links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 0.8rem;
}

.linktree-grid {
  grid-template-columns: 1fr;
  max-width: 700px;
  margin: 0 auto;
}

.links-headline {
  text-align: center;
  margin-bottom: 1rem;
}

.links-headline p {
  color: var(--text-300);
  margin-top: 0.35rem;
}

.link-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  padding: 1rem 1.15rem;
  color: var(--text-100);
  min-height: 50px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.link-chip:hover {
  transform: translateY(-2px);
  border-color: rgba(200, 163, 74, 0.55);
  background: rgba(255, 255, 255, 0.08);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}

.gallery-grid img {
  width: 100%;
  height: 240px;
  border-radius: 12px;
  border: 1px solid var(--line);
  object-fit: cover;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.gallery-grid img:hover {
  transform: translateY(-4px) scale(1.01);
  border-color: rgba(200, 163, 74, 0.58);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
}

.gallery-note {
  color: var(--text-300);
  margin-bottom: 0.8rem;
}

.marquee-shell {
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: max-content;
  padding: 0.75rem;
  animation: marqueeScroll 26s linear infinite;
}

.marquee-shell:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-item {
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  flex: 0 0 auto;
}

.marquee-item img {
  width: 250px;
  height: 320px;
  border-radius: 12px;
  border: 1px solid var(--line);
  object-fit: cover;
  transition: transform 200ms ease, border-color 200ms ease;
}

.marquee-item:hover img {
  transform: translateY(-3px);
  border-color: rgba(200, 163, 74, 0.6);
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 95;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(3px);
  padding: 1rem;
}

.image-lightbox[hidden] {
  display: none;
}

.image-lightbox img {
  max-width: min(96vw, 1200px);
  max-height: 88vh;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(0, 0, 0, 0.55);
  color: var(--text-100);
  font-size: 1.1rem;
  cursor: pointer;
}

.cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.2rem;
  padding: 0.7rem 1.15rem;
  min-height: 46px;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--accent-500), #8e6c2f);
  font-weight: 600;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.cta.secondary {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(200, 163, 74, 0.45);
}

.cta:hover {
  transform: translateY(-2px) scale(1.015);
  filter: brightness(1.08);
  box-shadow: 0 12px 26px rgba(200, 163, 74, 0.42);
}

.jcit-card {
  display: grid;
  gap: 1rem;
}

.jcit-card p {
  color: var(--text-300);
  line-height: 1.6;
}

.site-footer {
  padding: 1.5rem 0 calc(2rem + env(safe-area-inset-bottom));
  color: var(--text-300);
}

.site-footer p {
  margin: 0.35rem 0;
  line-height: 1.5;
}

.site-footer a {
  color: var(--accent-400);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(6px);
}

.age-gate.active {
  display: flex;
}

.age-card {
  width: min(100%, 540px);
  border: 1px solid rgba(200, 163, 74, 0.42);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(20, 20, 20, 0.95), rgba(10, 10, 10, 0.95));
  padding: 1.4rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.age-card h2 {
  color: var(--accent-400);
  margin-bottom: 0.7rem;
}

.age-card p {
  color: var(--text-300);
  line-height: 1.55;
}

.age-btn {
  margin-top: 1rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 480ms ease, transform 480ms ease;
}

.reveal.show {
  opacity: 1;
  transform: none;
}

@media (max-width: 880px) {
  .container {
    width: min(100% - 1.4rem, var(--container));
  }

  main {
    padding: 1.45rem 0 2.4rem;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.2rem;
  }

  .hero-copy {
    padding: 1.3rem;
    order: 2;
  }

  .hero-actions .cta {
    width: 100%;
    justify-content: center;
  }

  .profile-card {
    order: 1;
  }

  .nav {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    padding: 0.75rem 0;
  }

  .header-right {
    flex-direction: column;
    align-items: stretch;
    gap: 0.55rem;
    border-radius: 16px;
  }

  .nav-links {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    overflow-x: visible;
    padding-bottom: 0.25rem;
    scrollbar-width: thin;
    row-gap: 0.35rem;
  }

  .social-top {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.2rem;
  }

  .nav-links li {
    flex: 0 0 auto;
  }

  .profile-card img {
    min-height: 250px;
  }

  .video-wrap,
  .gallery,
  .links-grid,
  .jcit-card {
    padding: 0.85rem;
  }

  .video-wrap video,
  .video-wrap iframe {
    min-height: 220px;
  }

  .video-slide {
    width: min(84vw, 340px);
  }

  .video-slide video {
    height: min(100vw, 500px);
  }

  .links-grid {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .link-chip {
    justify-content: flex-start;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .gallery-grid img {
    height: auto;
    aspect-ratio: 4 / 5;
  }

  .marquee-item img {
    width: 190px;
    height: 250px;
  }

  .section {
    margin-top: 1.2rem;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: 1.8rem;
    line-height: 1.1;
  }

  .brand span {
    font-size: 0.95rem;
  }

  .hero-copy p,
  .jcit-card p {
    font-size: 0.96rem;
    line-height: 1.5;
  }

  .kicker {
    font-size: 0.74rem;
    letter-spacing: 0.11em;
  }

  .section-title {
    font-size: 1.1rem;
  }

  .site-footer {
    font-size: 0.9rem;
  }

  .header-right {
    padding: 0.28rem;
  }

  .nav-links a {
    font-size: 0.82rem;
    padding: 0.5rem 0.8rem;
  }

  .social-icon {
    width: 34px;
    height: 34px;
    font-size: 0.9rem;
  }

  .video-wrap video,
  .video-wrap iframe {
    min-height: 180px;
  }

  .video-slide {
    width: min(87vw, 300px);
  }

  .video-slide video {
    height: min(110vw, 430px);
  }

  .age-card {
    padding: 1rem;
  }

  .marquee-track {
    gap: 0.5rem;
    padding: 0.6rem;
  }

  .marquee-item img {
    width: 160px;
    height: 210px;
  }
}

.top-promo {
  display: block;
  border-top: 1px solid rgba(200, 163, 74, 0.2);
  border-bottom: 1px solid rgba(200, 163, 74, 0.14);
  background: linear-gradient(90deg, #0b0b0b, #0d0d0d 55%, #111111);
  position: relative;
}

.top-promo::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 8px;
  height: 100%;
  background: linear-gradient(180deg, #ffd12b, #c79f1a);
}

.top-promo-inner {
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding-left: 1rem;
}


.top-promo-text {
  color: var(--text-100);
  font-size: clamp(0.86rem, 1.2vw, 1rem);
  opacity: 0.92;
}

.top-promo-cta {
  margin-left: auto;
  color: var(--accent-400);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 880px) {
  .top-promo::before {
    width: 6px;
  }

  .top-promo-inner {
    min-height: 42px;
    gap: 0.45rem;
    padding-left: 0.8rem;
    padding-right: 0.2rem;
  }


  .top-promo-text {
    font-size: 0.82rem;
    line-height: 1.15;
  }

  .top-promo-cta {
    font-size: 0.72rem;
    margin-left: 0.2rem;
    white-space: nowrap;
  }
}

@media (max-width: 640px) {
  .top-promo-inner {
    padding-right: 0.5rem;
  }

  .top-promo-text {
    max-width: 66vw;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .top-promo-cta {
    font-size: 0.68rem;
    letter-spacing: 0.06em;
  }
}

@media (max-width: 420px) {
  .top-promo-cta {
    display: none;
  }

  .top-promo-text {
    max-width: 100%;
  }
}
