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

:root {
  --black:   #0a0a0a;
  --grey-deep: #141414;
  --grey-dark: #1e1e1e;
  --grey-mid:  #2e2e2e;
  --grey-lite: #5a5a5a;
  --grey-soft: #9a9a9a;
  --white:   #f5f0eb;
  --off-white: #d4cfc8;
  --red:     #c0182a;
  --red-deep:#8a0f1d;
  --red-glow:#c0182a33;
  --red-glow-strong: #c0182a99;
  --serif: 'Playfair Display', Georgia, serif;
  --sans:  'Montserrat', sans-serif;
  --content-max: 1200px;
  --nav-height: 76px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  cursor: default;
}

/* ── PHOTO PROTECTION ── */
img {
  -webkit-user-drag: none;
  user-drag: none;
  pointer-events: none;
}
.photo-wrap {
  position: relative;
  overflow: hidden;
}
.photo-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background: transparent;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 3rem;
  background: linear-gradient(to bottom, rgba(10,10,10,0.95), transparent);
  transition: background 0.3s;
}
nav.scrolled {
  background: rgba(10,10,10,0.97);
}
.scroll-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--grey-mid);
}
.scroll-progress-bar {
  position: relative;
  height: 100%;
  width: 0%;
  background: var(--red);
}
.scroll-progress-cat {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(50%, -50%);
  font-size: 13px;
  line-height: 1;
  filter: drop-shadow(0 0 3px var(--red));
  pointer-events: none;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.3rem;
  letter-spacing: 0.02em;
  color: var(--white);
  text-decoration: none;
}
.nav-logo-mark {
  width: 32px;
  height: 32px;
  display: block;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  gap: 1.8rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey-soft);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-right {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}
.nav-toggle {
  display: none;
  position: relative;
  width: 40px;
  height: 40px;
  border: 1px solid var(--grey-mid);
  border-radius: 50%;
  background: none;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nav-toggle-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transform: rotate(0deg) scale(1);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.nav-toggle-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--white);
  stroke-width: 2;
  stroke-linecap: round;
  fill: none;
}
.nav-toggle-icon img { width: 22px; height: 22px; }
.nav-toggle-logo { opacity: 0; transform: rotate(-90deg) scale(0.4); }
.nav-toggle.open .nav-toggle-hamburger { opacity: 0; transform: rotate(90deg) scale(0.4); }
.nav-toggle.open .nav-toggle-logo { opacity: 1; transform: rotate(0deg) scale(1); }
.lang-toggle {
  display: flex;
  align-items: center;
  border: 1px solid var(--grey-mid);
  border-radius: 999px;
  padding: 0.2rem;
  gap: 0.1rem;
}
.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--grey-soft);
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  transition: color 0.2s, background 0.2s;
}
.lang-btn:hover { color: var(--white); }
.lang-btn.active {
  background: var(--red);
  color: var(--white);
}

/* ── HERO ── */
#hero {
  position: relative;
  min-height: 100vh;
  max-height: none;
  overflow-y: visible;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  overflow-x: hidden;
  max-width: none;
  margin: 0;
  padding: 0;
}
.hero-bg-grain {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 60% 80% at 70% 50%, var(--red-deep) 0%, transparent 60%),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: cover;
  z-index: 0;
}
.hero-text {
  position: relative;
  z-index: 1;
  padding: 8rem 3rem 5rem 5rem;
}
.hero-logo {
  width: 56px;
  height: 56px;
  margin-bottom: 1.6rem;
  pointer-events: none;
}
.hero-eyebrow {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.2rem;
}
.hero-name-link {
  display: block;
  text-decoration: none;
  cursor: pointer;
}
.hero-name {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  font-weight: 600;
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 1rem;
  transition: color 0.2s;
}
.hero-name em {
  font-style: italic;
  font-weight: 400;
  color: var(--off-white);
  transition: color 0.2s;
}
.hero-name-link:hover .hero-name,
.hero-name-link:hover .hero-name em {
  color: var(--red);
}
.hero-tagline {
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--grey-soft);
  max-width: 340px;
  margin-bottom: 2.5rem;
}
.hero-socials {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  border: 1px solid var(--grey-mid);
  padding: 0.65rem 1.2rem;
  transition: border-color 0.2s, background 0.2s;
  cursor: pointer;
  background: none;
  font-family: var(--sans);
}
.social-link:hover {
  border-color: var(--red);
  background: var(--red-glow);
}

.hero-wishlist-link {
  position: relative;
  margin-top: 2rem;
  overflow: visible;
}

.hero-photo {
  position: relative;
  z-index: 1;
  height: 100vh;
  overflow: hidden;
}
.hero-photo .photo-wrap {
  height: 100%;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  opacity: 0.85;
  filter: grayscale(15%);
}
.hero-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--black) 0%, transparent 30%),
              linear-gradient(to top, var(--black) 0%, transparent 25%);
  z-index: 1;
}

/* ── SECTION BASE ── */
section {
  padding: 7rem 5rem;
  max-width: var(--content-max);
  margin-left: auto;
  margin-right: auto;
  max-height: calc(100vh - var(--nav-height));
  display: flex;
  flex-direction: column;
  justify-content: safe center;
}
.section-label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.section-title em { font-style: italic; font-weight: 400; }
.divider {
  width: 48px;
  height: 1px;
  background: var(--red);
  margin-bottom: 2rem;
}

/* ── ABOUT ── */
#about {
  background: var(--grey-deep);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}
.about-body {
  font-size: 0.95rem;
  color: var(--off-white);
  line-height: 1.9;
}
.about-body p + p { margin-top: 1.2rem; }
.about-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}
.about-photo-grid .photo-wrap:first-child {
  grid-column: span 2;
}
.about-photo-grid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  filter: grayscale(20%);
  transition: filter 0.4s;
}
.about-photo-grid .photo-wrap:hover img { filter: grayscale(0%); }

/* ── MOTTO ── */
#motto {
  background: var(--grey-deep);
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 4rem;
  align-items: center;
}
.motto-quote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  line-height: 1.4;
  color: var(--white);
}
.motto-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.motto-about-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2.2rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  border: 1px solid var(--red);
  padding: 0.75rem 1.6rem;
  transition: background 0.2s, border-color 0.2s;
}
.motto-about-btn:hover { background: var(--red); }
.motto-photo img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: grayscale(20%);
  transition: filter 0.4s;
}
.motto-photo .photo-wrap:hover img { filter: grayscale(0%); }
.motto-block-title {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.8rem;
}
.motto-block-text {
  font-size: 0.85rem;
  color: var(--off-white);
  line-height: 1.8;
}

/* ── STATS & INTERESTS ── */
#stats {
  background: var(--grey-deep);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.2rem;
  margin-top: 2rem;
}
.stat-item {
  border: 1px solid var(--grey-mid);
  padding: 1.1rem 0.6rem;
  text-align: center;
}
.stat-value {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.stat-label {
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grey-soft);
}
.stats-subheading {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--red);
  margin-top: 2rem;
  margin-bottom: 0.9rem;
}
.tags-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}
.tag-item {
  border: 1px solid var(--grey-mid);
  padding: 0.55rem 1.1rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  border-radius: 999px;
  transition: border-color 0.2s, background 0.2s;
}
.tag-item:hover { border-color: var(--red); background: var(--red-glow); }

/* ── EVENTS ── */
#events {
  background: var(--black);
}
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.event-card {
  border: 1px solid var(--grey-mid);
  padding: 2rem;
  position: relative;
  transition: border-color 0.2s;
}
.event-card:hover { border-color: var(--red); }
.event-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 100%;
  background: var(--red);
}
.event-date {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.6rem;
}
.event-name {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.event-location {
  font-size: 0.8rem;
  color: var(--grey-soft);
  margin-bottom: 0.5rem;
}
.event-description {
  font-size: 0.78rem;
  color: var(--grey-lite);
  line-height: 1.5;
}

/* ── CHALLENGE TIMERS ── */
#challenges {
  background: var(--grey-deep);
}
.challenges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}
.challenge-card {
  border: 1px solid var(--grey-mid);
  padding: 2.2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.challenge-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--red), transparent);
}
.challenge-name {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--grey-soft);
  margin-bottom: 1.2rem;
}
.timer-display {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 0.8rem;
}
.timer-unit { text-align: center; }
.timer-num {
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1;
  color: var(--white);
  display: block;
}
.timer-label {
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey-lite);
}
.challenge-goal {
  font-size: 0.78rem;
  color: var(--grey-soft);
  margin-top: 1rem;
}

/* ── GALLERY ── */
#gallery {
  background: var(--black);
  padding-top: 4rem;
  padding-bottom: 3rem;
  max-height: none;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.4rem;
  margin-top: 1.5rem;
}
.port-item {
  position: relative;
  overflow: hidden;
  cursor: default;
}
.port-item .photo-wrap {
  display: block;
  line-height: 0;
}
.port-item img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease, filter 0.4s;
  filter: grayscale(20%);
}
.port-item:hover img {
  transform: scale(1.04);
  filter: grayscale(0%);
}
.port-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.92) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.35s;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.2rem;
}
.port-item:hover .port-overlay { opacity: 1; }
.port-title {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
  color: var(--white);
}
.port-credit {
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  color: var(--grey-soft);
  text-transform: uppercase;
}
.port-credit a {
  color: var(--red);
  text-decoration: none;
  pointer-events: all;
}
.port-credit a:hover { text-decoration: underline; }
.port-backstory {
  font-size: 0.72rem;
  color: var(--off-white);
  margin-top: 0.5rem;
  line-height: 1.5;
}

/* ── PARTNERS ── */
#partners {
  background: var(--grey-deep);
}
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
  align-items: center;
}
.partner-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--grey-mid);
  padding: 1.5rem;
  transition: border-color 0.2s;
}
.partner-item:hover { border-color: var(--red); }
.partner-item img {
  max-width: 100%;
  height: auto;
  filter: grayscale(100%) brightness(1.4) contrast(0.9);
  opacity: 0.75;
  transition: filter 0.3s, opacity 0.3s;
}
.partner-item:hover img { filter: none; opacity: 1; }

/* ── LINKS ── */
#links {
  background: var(--black);
}
.links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-top: 2.5rem;
}
.link-card {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid var(--grey-mid);
  padding: 1.8rem 1rem;
  text-decoration: none;
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.link-card:hover {
  border-color: var(--red);
  background: var(--red-glow);
  transform: translateY(-3px);
}
.glow-cta {
  border-color: var(--red);
  animation: linkGlow 2.4s ease-in-out infinite;
}
@keyframes linkGlow {
  0%, 100% { box-shadow: 0 0 6px 0 var(--red-glow); }
  50% { box-shadow: 0 0 28px 6px var(--red-glow-strong); }
}
.link-card--soon {
  color: var(--grey-lite);
  filter: grayscale(100%);
  opacity: 0.55;
  pointer-events: none;
}
.link-card--soon:hover {
  border-color: var(--grey-mid);
  background: none;
  transform: none;
}
.coming-soon-badge {
  position: absolute;
  right: -0.9rem;
  bottom: 0.5rem;
  transform: rotate(-20deg);
  background: var(--red);
  color: var(--white);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
  white-space: nowrap;
  padding: 0.25rem 0.8rem;
}

/* ── WISHLIST ── */
.wishlist-card {
  margin-top: 1.5rem;
  border: 1px solid var(--grey-mid);
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2.5rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.wishlist-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, var(--red-glow), transparent 60%);
  opacity: 0.6;
  z-index: 0;
  pointer-events: none;
}
.wishlist-info, .wishlist-slideshow { position: relative; z-index: 1; }
.sparkle {
  position: absolute;
  width: 16px;
  height: 16px;
  color: var(--white);
  opacity: 0;
  z-index: 2;
  pointer-events: none;
  animation: sparkleTwinkle 2.6s ease-in-out infinite;
}
.sparkle svg { width: 100%; height: 100%; display: block; fill: currentColor; }
.sparkle-1 { top: -14px; left: 46%; animation-delay: 0s; }
.sparkle-2 { top: 26%; right: -10px; width: 12px; height: 12px; color: var(--red); animation-delay: 0.9s; }
.sparkle-3 { bottom: 18%; left: -8px; width: 10px; height: 10px; animation-delay: 1.7s; }
@keyframes sparkleTwinkle {
  0%, 100% { opacity: 0; transform: scale(0.3) rotate(0deg); }
  50% { opacity: 1; transform: scale(1) rotate(20deg); }
}
.wishlist-heading {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.8rem;
}
.wishlist-text {
  font-size: 0.85rem;
  color: var(--off-white);
  line-height: 1.75;
  margin-bottom: 1.6rem;
  max-width: 420px;
}
.wishlist-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  border: 1px solid var(--red);
  background: var(--red);
  padding: 0.8rem 1.6rem;
  transition: background 0.2s, border-color 0.2s;
}
.wishlist-btn:hover { background: var(--red-deep); border-color: var(--red-deep); }
.wishlist-slideshow {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border: 1px solid var(--grey-mid);
}
.wishlist-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease;
}
.wishlist-slide.active { opacity: 1; }

/* ── FAQ ── */
#faq {
  background: var(--black);
}
.faq-item {
  border-bottom: 1px solid var(--grey-mid);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-align: left;
  padding: 1.5rem 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--red); }
.faq-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border: 1px solid var(--grey-lite);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  line-height: 1;
  transition: background 0.2s, border-color 0.2s;
}
.faq-q.open .faq-icon {
  background: var(--red);
  border-color: var(--red);
}
.faq-a {
  display: none;
  font-size: 0.85rem;
  color: var(--grey-soft);
  padding-bottom: 1.5rem;
  line-height: 1.8;
}
.faq-a.open { display: block; }

/* ── COLLABORATIONS ── */
#collaborations {
  background: var(--black);
  text-align: center;
  padding: 3rem 5rem;
  position: relative;
  overflow-x: hidden;
  overflow-y: visible;
}
#collaborations::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: var(--red-glow);
  left: 50%; top: 50%;
  transform: translate(-50%,-50%);
  filter: blur(80px);
  z-index: 0;
}
#collaborations > * { position: relative; z-index: 1; }
.collab-blurb {
  font-size: 0.82rem;
  color: var(--grey-soft);
  max-width: 560px;
  margin: 0 auto;
}
.collab-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 1.8rem 0 0;
  text-align: left;
}
.collab-card {
  border: 1px solid var(--grey-mid);
  padding: 1.5rem;
  position: relative;
  background: rgba(20,20,20,0.4);
}
.collab-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 100%;
  background: var(--red);
}
.collab-card-title {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.collab-card-vibe {
  font-size: 0.78rem;
  color: var(--off-white);
  font-style: italic;
  margin-bottom: 0.9rem;
  line-height: 1.5;
}
.collab-list-block { margin-bottom: 0.8rem; }
.collab-list-block:last-child { margin-bottom: 0; }
.collab-list-heading {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.4rem;
}
.collab-list { list-style: none; }
.collab-list li {
  font-size: 0.76rem;
  color: var(--grey-soft);
  padding-left: 1rem;
  position: relative;
  margin-bottom: 0.3rem;
  line-height: 1.45;
}
.collab-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--red);
}
.collab-contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.7rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  border: 1px solid var(--red);
  padding: 0.6rem 1.3rem;
  transition: background 0.2s, border-color 0.2s;
}
.collab-contact-btn:hover {
  background: var(--red);
}
.collab-email-row { margin-top: 1.4rem; }
.contact-email {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.1rem, 2.2vw, 1.6rem);
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px solid var(--red);
  padding-bottom: 0.15rem;
  transition: color 0.2s;
}
.contact-email:hover { color: var(--red); }

/* ── LEGAL PAGES (Imprint / Privacy) ── */
.legal-page {
  max-width: 820px;
  margin: 0 auto;
  padding: 11rem 3rem 6rem;
}
.legal-page h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  margin-bottom: 2rem;
  color: var(--white);
}
.legal-page h2 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  margin: 2.5rem 0 1rem;
  color: var(--white);
}
.legal-page p, .legal-page li {
  font-size: 0.9rem;
  color: var(--off-white);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.legal-page ul { padding-left: 1.4rem; margin-bottom: 1rem; }
.legal-page a { color: var(--red); }

/* ── FOOTER ── */
footer {
  background: var(--grey-deep);
  padding: 2rem 5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--grey-mid);
  flex-wrap: wrap;
  gap: 1rem;
  max-width: var(--content-max);
  margin-left: auto;
  margin-right: auto;
}
footer p {
  font-size: 0.7rem;
  color: var(--grey-lite);
  letter-spacing: 0.08em;
}
.footer-legal {
  display: flex;
  gap: 1.2rem;
  list-style: none;
}
.footer-legal a {
  font-size: 0.7rem;
  color: var(--grey-lite);
  letter-spacing: 0.08em;
  text-decoration: none;
}
.footer-legal a:hover { color: var(--white); }

/* ── SECTION DIVIDERS ── */
.red-rule {
  height: 1px;
  background: linear-gradient(to right, var(--red), transparent);
  max-width: var(--content-max);
  margin: 0 auto;
}

/* ── ANIMATIONS ── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* ── AGE GATE ── */
#age-gate {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5,5,5,0.97);
  padding: 2rem;
}
#age-gate[hidden] { display: none; }
.age-gate-box {
  max-width: 460px;
  width: 100%;
  text-align: center;
  border: 1px solid var(--grey-mid);
  padding: 3rem 2.5rem;
  background: var(--grey-deep);
}
.age-gate-title {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  color: var(--white);
}
.age-gate-text {
  font-size: 0.82rem;
  color: var(--grey-soft);
  line-height: 1.75;
  margin-bottom: 2rem;
}
.age-gate-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.age-gate-btn {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.8rem 1.6rem;
  border: 1px solid var(--grey-mid);
  background: none;
  color: var(--white);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.age-gate-btn:hover { border-color: var(--red); }
.age-gate-btn.enter {
  background: var(--red);
  border-color: var(--red);
}
.age-gate-btn.enter:hover { background: var(--red-deep); border-color: var(--red-deep); }
body.age-gate-active { overflow: hidden; }

/* ── COOKIE BANNER ── */
#cookie-banner {
  position: fixed;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 900;
  max-width: 680px;
  margin: 0 auto;
  background: var(--grey-deep);
  border: 1px solid var(--grey-mid);
  padding: 1.6rem 1.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  align-items: center;
  justify-content: space-between;
}
#cookie-banner[hidden] { display: none; }
.cookie-text {
  font-size: 0.78rem;
  color: var(--grey-soft);
  line-height: 1.6;
  flex: 1 1 280px;
}
.cookie-text a { color: var(--red); text-decoration: none; }
.cookie-text a:hover { text-decoration: underline; }
.cookie-actions {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}
.cookie-btn {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.65rem 1.1rem;
  border: 1px solid var(--grey-mid);
  background: none;
  color: var(--white);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.cookie-btn:hover { border-color: var(--red); }
.cookie-btn.accept {
  background: var(--red);
  border-color: var(--red);
}
.cookie-btn.accept:hover { background: var(--red-deep); border-color: var(--red-deep); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 1.2rem 1.5rem; }
  .nav-toggle { display: flex; order: 3; }
  .nav-right { gap: 0.8rem; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(10,10,10,0.98);
    border-bottom: 1px solid var(--grey-mid);
    padding: 0.5rem 1.5rem 1.5rem;
  }
  .nav-links.open { display: flex; }
  .nav-links li { border-top: 1px solid var(--grey-mid); }
  .nav-links a { display: block; padding: 1rem 0; }
  #hero { grid-template-columns: 1fr; }
  .hero-text { padding: 8rem 1.5rem 3rem; }
  .hero-photo { height: 60vw; min-height: 300px; }
  #about { grid-template-columns: 1fr; padding: 4rem 1.5rem; gap: 3rem; }
  section { padding: 5rem 1.5rem; max-height: none; }
  .portfolio-grid { grid-template-columns: repeat(3, 1fr); }
  #motto { grid-template-columns: 1fr; gap: 2.5rem; }
  .motto-photo { max-width: 320px; margin: 0 auto; }
  .motto-grid { grid-template-columns: 1fr; gap: 2rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .links-grid { grid-template-columns: repeat(2, 1fr); }
  .wishlist-card { grid-template-columns: 1fr; }
  .collab-grid { grid-template-columns: 1fr; }
  footer { flex-direction: column; gap: 0.5rem; text-align: center; }
  .red-rule { margin: 0 1.5rem; }
  .legal-page { padding: 9rem 1.5rem 4rem; }
}

@media (max-width: 600px) {
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
}
