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

:root {
  --bg:              #0a0a0f;
  --bg-2:            #0d0d1a;
  --text:            #f0ece0;
  --text-muted:      rgba(240, 236, 224, 0.52);
  --accent:          #c8953a;
  --accent-dim:      rgba(200, 149, 58, 0.13);
  --border:          rgba(240, 236, 224, 0.07);
  --border-acc:      rgba(200, 149, 58, 0.20);
  --transition:      0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  overflow-x: hidden;
}

/* ── Background canvas & orbs ─────────────────────────── */

#starfield {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(110px);
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}

.orb-1 {
  width: 700px;
  height: 700px;
  background: rgba(200, 149, 58, 0.09);
  top: -200px;
  left: -150px;
  animation: drift1 20s ease-in-out infinite alternate;
}

.orb-2 {
  width: 550px;
  height: 550px;
  background: rgba(60, 40, 120, 0.14);
  bottom: -120px;
  right: -100px;
  animation: drift2 25s ease-in-out infinite alternate;
}

.orb-3 {
  width: 400px;
  height: 400px;
  background: rgba(90, 30, 10, 0.10);
  top: 45%;
  left: 55%;
  transform: translateX(-50%);
  animation: drift3 16s ease-in-out infinite alternate;
}

@keyframes drift1 {
  from { transform: translate(0, 0); }
  to   { transform: translate(100px, 70px); }
}
@keyframes drift2 {
  from { transform: translate(0, 0); }
  to   { transform: translate(-70px, -90px); }
}
@keyframes drift3 {
  from { transform: translateX(-50%) scale(1); }
  to   { transform: translateX(-50%) scale(1.35); }
}

/* ── Particles & cursor glow ──────────────────────────── */

.particle {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 999;
}

.cursor-glow {
  position: fixed;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 149, 58, 0.07) 0%, transparent 65%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}

@media (hover: none) {
  .cursor-glow { display: none; }
}

/* ── Scroll reveal ────────────────────────────────────── */

.will-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.will-reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ── Hero ─────────────────────────────────────────────── */

.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

@supports not (height: 100svh) {
  .hero { height: 100vh; }
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.48) 0%,
    rgba(10, 8, 20, 0.60) 55%,
    rgba(10, 10, 15, 0.84) 100%
  );
}

/* ── Site nav ─────────────────────────────────────────── */

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  transition: background var(--transition), border-color var(--transition);
  border-bottom: 1px solid transparent;
}

.site-nav.is-scrolled {
  background: rgba(10, 10, 15, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.hero-logo-wrap {
  display: block;
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
  flex-shrink: 0;
  border: 1px solid rgba(200, 149, 58, 0.32);
  transition: border-color var(--transition);
  text-decoration: none;
}

.hero-logo-wrap:hover {
  border-color: rgba(200, 149, 58, 0.70);
}

.hero-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.nav-logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.10em;
  color: rgba(240, 236, 224, 0.60);
  text-decoration: none;
  transition: color var(--transition);
}

.nav-logo-name:hover {
  color: var(--text);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 25;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(240, 236, 224, 0.80);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition), width var(--transition);
  transform-origin: center;
}

.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; width: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-link {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(240, 236, 224, 0.55);
  text-decoration: none;
  transition: color var(--transition);
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.is-active {
  color: var(--accent);
  outline: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 840px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.34em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 1.75rem;
  opacity: 0;
  animation: heroFade 1.1s 0.2s ease forwards;
}

.hero-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 7vw, 6.5rem);
  font-weight: 500;
  line-height: 1.06;
  color: var(--text);
  margin-bottom: 1.75rem;
  opacity: 0;
  animation: heroFade 1.1s 0.45s ease forwards;
}

.hero-sub {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.93rem, 2vw, 1.08rem);
  font-weight: 300;
  color: rgba(240, 236, 224, 0.60);
  letter-spacing: 0.02em;
  line-height: 1.72;
  max-width: 460px;
  opacity: 0;
  animation: heroFade 1.1s 0.70s ease forwards;
}

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

.scroll-cue {
  position: absolute;
  bottom: 2.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  color: rgba(240, 236, 224, 0.28);
  font-size: 1.6rem;
  line-height: 1;
  user-select: none;
  pointer-events: none;
  animation: scrollBounce 2.4s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0);   opacity: 0.28; }
  50%       { transform: translateX(-50%) translateY(9px); opacity: 0.62; }
}

/* ── Statement ────────────────────────────────────────── */

.statement {
  position: relative;
  z-index: 1;
  background: var(--bg-2);
  padding: 9rem 2rem;
  text-align: center;
}

.statement-inner {
  max-width: 720px;
  margin: 0 auto;
}

.statement-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 2.8vw, 1.75rem);
  font-style: italic;
  font-weight: 400;
  color: var(--text);
  line-height: 1.78;
  margin: 0 0 2rem 0;
  quotes: none;
}

.statement-attr {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.07em;
}

/* ── Artworld ─────────────────────────────────────────── */

.artworld {
  position: relative;
  z-index: 1;
  background: var(--bg);
  padding: 7rem 2rem;
}

.artworld-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem 4rem;
}

.art-piece {
  display: flex;
  flex-direction: column;
}

.art-img-wrap {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  position: relative;
  transition: box-shadow var(--transition);
}

.art-img-wrap:hover,
.art-img-wrap:focus-visible {
  box-shadow: 0 0 50px rgba(200, 149, 58, 0.20), 0 20px 60px rgba(0, 0, 0, 0.55);
  outline: none;
}

.art-img-wrap picture {
  display: block;
  width: 100%;
  height: 100%;
}

.art-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

.art-img-wrap:hover img,
.art-img-wrap:focus-visible img {
  transform: scale(1.04);
}

.art-meta {
  padding: 1.5rem 0.25rem 0;
}

.art-biome {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 0.55rem;
}

.art-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  font-weight: 500;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.art-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.87rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 400px;
}

/* ── Lightbox ─────────────────────────────────────────── */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(10, 10, 15, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

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

.lightbox-img {
  max-width: min(92vw, 1100px);
  max-height: 72vh;
  border-radius: 8px;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.90), 0 0 0 1px rgba(255, 255, 255, 0.05);
  object-fit: contain;
  transform: scale(0.93);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.lightbox.is-open .lightbox-img {
  transform: scale(1);
}

.lightbox-title {
  margin-top: 1.25rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  color: rgba(240, 236, 224, 0.78);
  text-align: center;
  pointer-events: none;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.lightbox-close { top: 1.5rem; right: 1.5rem; }
.lightbox-prev  { top: 50%; left:  1.25rem; transform: translateY(-50%); }
.lightbox-next  { top: 50%; right: 1.25rem; transform: translateY(-50%); }

.lightbox-close:hover { background: rgba(255,255,255,0.12); transform: scale(1.1); }

.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--accent-dim);
  border-color: var(--border-acc);
  transform: translateY(-50%) scale(1.08);
}

/* ── About ────────────────────────────────────────────── */

.about {
  position: relative;
  z-index: 1;
  background: var(--bg-2);
  padding: 9rem 2rem;
  text-align: center;
}

.about-inner {
  max-width: 620px;
  margin: 0 auto;
}

.about-text {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.95;
  margin-bottom: 2.5rem;
}

.about-signoff {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}

/* ── Wallpapers CTA ───────────────────────────────────── */

.wallpapers-cta-section {
  position: relative;
  z-index: 1;
  padding: 7rem 2rem;
  text-align: center;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.wallpapers-cta-inner {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.wallpapers-cta-eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.70rem;
  font-weight: 500;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: var(--accent);
}

.wallpapers-cta-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.1;
  color: var(--text);
}

.wallpapers-cta-sub {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
}

.wallpapers-cta-btn {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.75rem 2.25rem;
  border: 1px solid var(--accent);
  border-radius: 3px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
}

.wallpapers-cta-btn:hover {
  background: var(--accent-dim);
  color: var(--text);
}

/* ── Drifters ─────────────────────────────────────────── */

/* ── Virtual Worlds page ─────────────────────────────────────── */

.worlds-intro {
  position: relative;
  z-index: 1;
  padding: 6rem 2rem 4rem;
}

.worlds-inner {
  max-width: 860px;
  margin: 0 auto;
}

.worlds-desc {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 0;
}

.worlds-desc a {
  color: rgba(240, 236, 224, 0.60);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(240, 236, 224, 0.25);
  transition: color var(--transition);
}

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

.worlds-intro .video-wrap {
  margin: 4rem 0 0;
}

.worlds-grid-section {
  position: relative;
  z-index: 1;
  padding: 6rem 2rem 8rem;
}

.worlds-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5rem;
  margin-top: 3rem;
}

.world-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.world-card:nth-child(even) .world-card-img-wrap {
  order: 2;
}

.world-card:nth-child(even) .world-card-meta {
  order: 1;
}

.world-card-img-wrap {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 16/9;
  text-decoration: none;
}

.world-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.world-card-img-wrap:hover img {
  transform: scale(1.04);
}

.world-card-visit {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 10, 15, 0.55);
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity var(--transition);
}

.world-card-img-wrap:hover .world-card-visit {
  opacity: 1;
}

.world-card-meta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.world-platform {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  color: var(--accent);
  text-transform: uppercase;
}

.world-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 500;
  line-height: 1.1;
  color: var(--text);
}

.world-desc {
  font-size: 0.93rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-muted);
}

.world-link {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.10em;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(200, 149, 58, 0.35);
  padding-bottom: 2px;
  transition: color var(--transition), border-color var(--transition);
}

.world-link:hover {
  color: var(--text);
  border-color: rgba(240, 236, 224, 0.35);
}

.worlds-store {
  position: relative;
  z-index: 1;
  padding: 0 2rem 8rem;
  text-align: center;
}

.worlds-store-inner {
  max-width: 560px;
  margin: 0 auto;
  padding: 3rem 2.5rem;
  border: 1px solid var(--border-acc);
  border-radius: 10px;
  background: var(--accent-dim);
}

.worlds-store-eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.worlds-store-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.worlds-store-desc {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}

.worlds-store-cta {
  display: inline-block;
  padding: 0.7rem 2rem;
  border: 1px solid var(--accent);
  border-radius: 4px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
}

.worlds-store-cta:hover {
  background: rgba(200, 149, 58, 0.12);
  color: var(--text);
}

@media (max-width: 700px) {
  .world-card {
    grid-template-columns: 1fr;
  }
  .world-card:nth-child(even) .world-card-img-wrap,
  .world-card:nth-child(even) .world-card-meta {
    order: unset;
  }
  .worlds-grid {
    gap: 4rem;
  }
}

/* ── End Virtual Worlds ──────────────────────────────────────── */

.drifters {
  position: relative;
  z-index: 1;
  background: var(--bg);
  padding: 3rem 2rem;
  text-align: center;
  border-top: 1px solid var(--border-acc);
}

.drifters-inner {
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
}

.drifters-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 500;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.drifters-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 2.75rem;
}

.drifters-cta {
  display: inline-block;
  padding: 0.85rem 2.75rem;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-family: 'Inter', sans-serif;
  font-size: 0.80rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background var(--transition), box-shadow var(--transition);
}

.drifters-cta:hover,
.drifters-cta:focus-visible {
  background: var(--accent-dim);
  box-shadow: 0 0 30px rgba(200, 149, 58, 0.18);
  outline: none;
}

.drifters-embed {
  width: 100%;
  max-width: 480px;
  height: 320px;
  margin: 0 auto;
}
.drifters-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
}

/* ── Footer ───────────────────────────────────────────── */

.site-footer {
  position: relative;
  z-index: 1;
  background: var(--bg-2);
  padding: 5rem 2rem 3.5rem;
  border-top: 1px solid var(--border);
}

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

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 2.25rem;
  justify-content: center;
  list-style: none;
  margin-bottom: 3rem;
}

.footer-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.84rem;
  font-weight: 400;
  transition: color var(--transition);
}

.footer-link:hover,
.footer-link:focus-visible {
  color: var(--accent);
  outline: none;
}

.footer-link svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.footer-signoff {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.88rem;
  color: rgba(240, 236, 224, 0.24);
  letter-spacing: 0.04em;
}

.footer-legal {
  margin-top: 0.75rem;
  font-size: 0.72rem;
  color: rgba(240, 236, 224, 0.20);
}

.footer-legal a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

.footer-legal a:hover {
  color: rgba(240, 236, 224, 0.50);
}

/* ── Privacy ──────────────────────────────────────────── */

.privacy-section {
  position: relative;
  z-index: 1;
  background: var(--bg-2);
  padding: 2rem 2rem 8rem;
}

.privacy-inner {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.privacy-block h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.75rem;
  letter-spacing: 0.04em;
}

.privacy-block p,
.privacy-block li {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.85;
}

.privacy-block ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.privacy-block ul li::before {
  content: '— ';
  color: var(--accent);
}

.privacy-block a {
  color: var(--accent);
  text-decoration: none;
}

.privacy-block a:hover {
  text-decoration: underline;
}

/* ── Wallpapers ───────────────────────────────────────── */

.wallpapers-section {
  position: relative;
  z-index: 1;
  background: var(--bg);
  padding: 2rem 2rem 8rem;
}

.wallpapers-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.wallpapers-intro {
  max-width: 560px;
  margin: 0 auto 5rem;
  text-align: center;
}

.wallpapers-intro p {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.8;
}

.wallpapers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 2rem;
}

.wallpaper-card {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.wallpaper-thumb {
  display: block;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: border-color var(--transition), box-shadow var(--transition);
  aspect-ratio: 9 / 16;
}

.wallpaper-thumb:hover {
  border-color: var(--border-acc);
  box-shadow: 0 0 40px rgba(200, 149, 58, 0.18), 0 16px 48px rgba(0, 0, 0, 0.55);
}

.wallpaper-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

.wallpaper-thumb:hover img {
  transform: scale(1.04);
}

.wallpaper-meta {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.wallpaper-biome {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  color: var(--accent);
  text-transform: uppercase;
}

.wallpaper-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.2;
}

.wallpaper-dl {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.4rem;
  padding: 0.55rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
  align-self: flex-start;
}

.wallpaper-dl:hover,
.wallpaper-dl:focus-visible {
  border-color: var(--border-acc);
  color: var(--accent);
  background: var(--accent-dim);
  outline: none;
}

.wallpaper-dl svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .wallpapers-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem 1.5rem; }
}

@media (max-width: 500px) {
  .wallpapers-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem 1rem; }
  .wallpapers-section { padding: 1.5rem 1.25rem 5rem; }
}

/* ── Contact form ─────────────────────────────────────── */

.contact-section {
  position: relative;
  z-index: 1;
  background: var(--bg-2);
  padding: 2rem 2rem 8rem;
}

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

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.form-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
}

.form-input,
.form-textarea {
  background: rgba(240, 236, 224, 0.04);
  border: 1px solid var(--border);
  border-radius: 3px;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  padding: 0.875rem 1rem;
  transition: border-color var(--transition), background var(--transition);
  outline: none;
  width: 100%;
  -webkit-appearance: none;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--border-acc);
  background: rgba(200, 149, 58, 0.05);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(240, 236, 224, 0.22);
}

.form-textarea {
  resize: vertical;
  min-height: 180px;
  line-height: 1.75;
}

.form-submit {
  align-self: flex-start;
  padding: 0.85rem 2.75rem;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-family: 'Inter', sans-serif;
  font-size: 0.80rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: background var(--transition), box-shadow var(--transition), opacity var(--transition);
}

.form-submit:hover,
.form-submit:focus-visible {
  background: var(--accent-dim);
  box-shadow: 0 0 30px rgba(200, 149, 58, 0.18);
  outline: none;
}

.form-submit:disabled {
  opacity: 0.55;
  cursor: wait;
}

.form-status {
  padding: 1rem 1.25rem;
  border-radius: 3px;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.6;
  display: none;
}

.form-status.is-success {
  display: block;
  background: rgba(200, 149, 58, 0.10);
  border: 1px solid var(--border-acc);
  color: var(--accent);
}

.form-status.is-error {
  display: block;
  background: rgba(200, 60, 60, 0.08);
  border: 1px solid rgba(200, 60, 60, 0.28);
  color: rgba(240, 120, 120, 0.90);
}

/* ── About page ───────────────────────────────────────── */

.about-header {
  position: relative;
  z-index: 1;
  padding: 8rem 2rem 0;
  text-align: center;
}

.about-eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.34em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.about-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 500;
  line-height: 1.06;
  color: var(--text);
  margin-bottom: 1rem;
}

.about-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  margin-bottom: 2.5rem;
}

.bio-section {
  position: relative;
  z-index: 1;
  background: var(--bg-2);
  padding: 2rem 2rem 8rem;
}

.bio-inner {
  max-width: 700px;
  margin: 0 auto;
}

.portrait {
  margin: 0 auto 4rem;
  max-width: 420px;
  text-align: center;
}

.portrait--wide {
  max-width: 780px;
}

.portrait picture {
  display: block;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border-acc);
  box-shadow: 0 0 60px rgba(200, 149, 58, 0.12), 0 24px 64px rgba(0, 0, 0, 0.60);
}

.portrait img {
  width: 100%;
  height: auto;
  display: block;
}

.portrait figcaption {
  margin-top: 0.875rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.press-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 2.5rem;
  margin-bottom: 0;
}

.press-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 0.9rem;
  border: 1px solid var(--border-acc);
  border-radius: 4px;
  text-decoration: none;
  transition: border-color var(--transition), background var(--transition);
}

.press-badge:hover {
  border-color: var(--accent);
  background: var(--accent-dim);
}

.press-badge--img {
  padding: 0;
  border: none;
  background: none;
}

.press-badge-bg {
  background: #e8e6e0;
  border-radius: 10px;
  padding: 0.75rem 1.5rem;
  transition: background var(--transition);
}

.press-badge--img:hover .press-badge-bg {
  background: #f0ece4;
}

.press-badge--img img {
  display: block;
  width: min(420px, 100%);
  height: auto;
}

.section-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 3rem;
}

.bio-body {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.95;
}

.bio-body p + p {
  margin-top: 1.75rem;
}

.bio-body a {
  color: rgba(240, 236, 224, 0.60);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(240, 236, 224, 0.25);
  transition: color var(--transition), text-decoration-color var(--transition);
}

.bio-body a:hover {
  color: var(--text);
  text-decoration-color: rgba(240, 236, 224, 0.50);
}

.bio-body em {
  font-style: italic;
  color: var(--text);
}

.video-wrap {
  margin: 4rem 0;
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 8px;
  overflow: hidden;
  background: #000;
}

.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.artist-statement {
  position: relative;
  z-index: 1;
  background: var(--bg);
  padding: 9rem 2rem;
  border-top: 1px solid var(--border-acc);
}

.statement-body {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  font-style: italic;
  font-weight: 400;
  color: var(--text);
  line-height: 1.85;
}

.statement-body p + p {
  margin-top: 2rem;
}

/* ── Responsive ───────────────────────────────────────── */

@media (max-width: 760px) {
  .artworld-grid {
    grid-template-columns: 1fr;
    gap: 4rem 0;
  }

  .artworld { padding: 4rem 1.25rem; }

  .statement,
  .about { padding: 6rem 1.5rem; }
  .drifters { padding: 2.5rem 1.5rem; }

  .site-nav { padding: 1.25rem 1.25rem; }
  .nav-logo-name { display: none; }
  .nav-toggle { display: flex; }
  .nav-links {
    display: flex;
    position: fixed;
    inset: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.75rem;
    background: rgba(10, 10, 15, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
    z-index: 19;
  }
  .nav-links.is-open {
    opacity: 1;
    pointer-events: all;
  }
  .nav-link {
    font-size: 1.25rem;
    letter-spacing: 0.18em;
    color: rgba(240, 236, 224, 0.65);
  }
  .nav-link.is-active,
  .nav-link:hover { color: var(--accent); }
  .about-header { padding: 6rem 1.5rem 0; }
  .bio-section { padding: 1.5rem 1.5rem 5rem; }
  .artist-statement { padding: 5rem 1.5rem; }
  .contact-section { padding: 1.5rem 1.5rem 6rem; }

  .site-footer { padding: 4rem 1.5rem 2.5rem; }
  .footer-links { gap: 0.75rem 1.5rem; }

  .orb, #starfield { display: none; }
}

@media (max-width: 480px) {
  .lightbox-prev { left: 0.5rem; }
  .lightbox-next { right: 0.5rem; }
}

/* ── Gallery ──────────────────────────────────── */

.gallery-section {
  position: relative;
  z-index: 1;
  padding: 5rem 2rem 9rem;
}

.gallery-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 4rem;
}

.gallery-filter {
  padding: 0.45rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: 2rem;
  background: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: all var(--transition);
}

.gallery-filter:hover,
.gallery-filter.is-active {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-dim);
}

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

.gallery-empty-wrap {
  aspect-ratio: 4 / 3;
  border: 1px dashed var(--border);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.gallery-empty-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--text-muted);
}

.gallery-empty-sub {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(240, 236, 224, 0.25);
}

.gallery-card[hidden] { display: none; }

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

@media (max-width: 560px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-section { padding: 4rem 1.25rem 7rem; }
}

/* ── Blog ─────────────────────────────────────── */

.blog-section {
  position: relative;
  z-index: 1;
  padding: 5rem 2rem 9rem;
}

.blog-inner {
  max-width: 760px;
  margin: 0 auto;
}

.blog-post {
  border-top: 1px solid var(--border);
  padding: 3rem 0;
}

.blog-post:last-child {
  border-bottom: 1px solid var(--border);
}

.blog-post-date {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.blog-post-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 1rem;
}

.blog-post-excerpt {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.blog-post-excerpt a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(200, 149, 58, 0.4);
}

.blog-post-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--border-acc);
  border-radius: 2rem;
  padding: 0.25rem 0.75rem;
}

@media (max-width: 760px) {
  .blog-section { padding: 4rem 1.25rem 7rem; }
}
