/* ───────────────────────────────────────────
   ME VS. ME — Luxury Lifestyle Brand
   Pure black canvas. Gold used like a scalpel.
   ─────────────────────────────────────────── */

:root {
  --bg: #000000;
  --surface: #0d0d0d;
  --surface-2: #111111;
  --text: #ffffff;
  --text-dim: #a0a0a0;
  --text-faint: #555555;
  --gold: #c9a84c;
  --gold-dim: #8a7331;
  --border: rgba(255, 255, 255, 0.08);

  --font: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

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

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  font-weight: 300;
  line-height: 1.8;
  overflow-x: hidden;
  cursor: none;
}

/* Re-enable native cursor on touch / mobile */
@media (hover: none), (pointer: coarse) {
  body { cursor: auto; }
  .cursor-dot, .cursor-ring { display: none !important; }
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; background: none; border: 0; color: inherit; }

::selection { background: var(--gold); color: #000; }

.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ─────────── CUSTOM CURSOR ─────────── */
.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}
.cursor-dot {
  width: 6px; height: 6px;
  background: #fff;
  transition: transform 0.15s var(--ease), opacity 0.2s;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.6);
  transition: transform 0.25s var(--ease), width 0.3s, height 0.3s, border-color 0.3s;
}
.cursor-ring.hover {
  width: 60px; height: 60px;
  border-color: var(--gold);
}
.cursor-dot.hover { transform: translate(-50%, -50%) scale(0); }

/* ─────────── NAVIGATION ─────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 28px 0;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 18px 0;
  border-bottom-color: var(--border);
}

.nav-inner {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-weight: 900;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: #fff;
}

.nav-links {
  display: flex;
  gap: 44px;
}
.nav-links a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text);
  position: relative;
  padding: 6px 0;
  transition: color 0.3s var(--ease);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--ease);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

/* Language switcher */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: 36px;
  padding-left: 36px;
  border-left: 1px solid var(--border);
}
.lang-switch a {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-faint);
  position: relative;
  padding: 4px 0;
  transition: color 0.3s var(--ease);
}
.lang-switch a:hover { color: var(--gold); }
.lang-switch a.active {
  color: var(--text);
}
.lang-switch a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: 0;
  height: 1px;
  background: var(--gold);
}

/* Language switcher inside mobile menu */
.nav-mobile .lang-switch {
  margin: 56px 0 0;
  padding: 36px 0 0;
  border-left: 0;
  border-top: 1px solid var(--border);
  justify-content: center;
  gap: 24px;
}
.nav-mobile .lang-switch a {
  font-size: 11px;
}

/* Hamburger */
.nav-toggle {
  display: none;
  width: 32px; height: 32px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 1px;
  background: #fff;
  transition: transform 0.35s var(--ease), opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }

/* Mobile menu */
.nav-mobile {
  position: fixed;
  inset: 0;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s var(--ease);
  z-index: 90;
}
.nav-mobile.open {
  opacity: 1;
  pointer-events: auto;
}
.nav-mobile nav {
  display: flex;
  flex-direction: column;
  gap: 36px;
  text-align: center;
}
.nav-mobile a {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
}
.nav-mobile a:hover { color: var(--gold); }

/* ─────────── BUTTONS ─────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 42px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  position: relative;
  overflow: hidden;
  transition: color 0.4s var(--ease), border-color 0.4s var(--ease);
}
.btn span { position: relative; z-index: 2; }
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #fff;
  transform: translateY(101%);
  transition: transform 0.5s var(--ease);
  z-index: 1;
}
.btn:hover { color: #000; }
.btn:hover::before { transform: translateY(0); }

.btn-gold { border-color: var(--gold); color: var(--gold); }
.btn-gold::before { background: var(--gold); }
.btn-gold:hover { color: #000; border-color: var(--gold); }

/* ─────────── SECTION LABELS / HEADINGS ─────────── */
.section-label {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 36px;
}

.section-title {
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 48px;
  max-width: 18ch;
}
.section-title-center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.body-text {
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-dim);
  font-weight: 300;
  max-width: 52ch;
  margin-bottom: 28px;
}
.body-text-center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ─────────── SECTION 01 | HERO ─────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 120px 40px 80px;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(201,168,76,0.04), transparent 60%),
    #000;
}

.hero-inner {
  text-align: center;
  max-width: 900px;
}

.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 40px;
}

.hero-title {
  font-size: clamp(3.5rem, 13vw, 11rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin-bottom: 28px;
}

.hero-tagline {
  font-size: clamp(1rem, 1.8vw, 1.4rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  color: #fff;
  margin-bottom: 40px;
}

.hero-line {
  width: 120px;
  height: 1px;
  background: rgba(201, 168, 76, 0.15);
  margin: 0 auto 40px;
  overflow: hidden;
  position: relative;
}
.hero-line span {
  display: block;
  height: 100%;
  width: 100%;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  animation: drawLine 1.8s 0.8s var(--ease) forwards;
}
@keyframes drawLine {
  to { transform: scaleX(1); }
}

.hero-sub {
  font-size: 13px;
  color: var(--text-dim);
  letter-spacing: 0.06em;
  margin-bottom: 56px;
  font-weight: 300;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--text-faint);
  text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: -50%; left: 0;
  width: 100%; height: 50%;
  background: #fff;
  animation: scrollPulse 2.4s var(--ease) infinite;
}
@keyframes scrollPulse {
  0% { top: -50%; }
  100% { top: 100%; }
}

/* ─────────── SECTION 02 | PHILOSOPHY ─────────── */
.philosophy {
  background: var(--surface);
  padding: 160px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.philosophy-image {
  position: relative;
}
.image-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: #000;
}
.image-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.6));
  pointer-events: none;
}
.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.05);
  transition: transform 1.4s var(--ease), filter 1.4s var(--ease);
}
.philosophy-image:hover .image-frame img {
  transform: scale(1.04);
  filter: grayscale(100%) contrast(1.15);
}

/* Editorial typographic poster (image slot) */
.editorial-poster {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(201,168,76,0.06), transparent 55%),
    radial-gradient(ellipse at 70% 80%, rgba(255,255,255,0.04), transparent 60%),
    linear-gradient(180deg, #0a0a0a, #000);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px;
  overflow: hidden;
  transition: transform 1.4s var(--ease);
}
.philosophy-image:hover .editorial-poster {
  transform: scale(1.02);
}
.poster-grain {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.015) 0, rgba(255,255,255,0.015) 1px, transparent 1px, transparent 3px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.012) 0, rgba(255,255,255,0.012) 1px, transparent 1px, transparent 4px);
  mix-blend-mode: overlay;
  pointer-events: none;
}
.poster-spotlight {
  position: absolute;
  top: 8%; left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 100%;
  background: radial-gradient(ellipse at top, rgba(255,255,255,0.05), transparent 60%);
  pointer-events: none;
}
.poster-meta-top,
.poster-meta-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--text-faint);
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}
.poster-meta-top span:first-child { color: var(--gold); }
.poster-meta-bottom span:last-child { color: var(--gold); }
.poster-center {
  text-align: center;
  position: relative;
  z-index: 2;
}
.poster-eyebrow {
  font-size: 10px;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.poster-word {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 0.9;
  color: #fff;
  margin: 0;
  text-transform: uppercase;
}
.poster-divider {
  width: 40px; height: 1px;
  background: var(--gold);
  margin: 28px auto;
}
.poster-sub {
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--text-dim);
  text-transform: uppercase;
}
.image-caption {
  position: absolute;
  bottom: 20px; left: 20px;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--gold);
  z-index: 2;
}

/* ─────────── SECTION 03 | THE STANDARD ─────────── */
.standard {
  background: var(--bg);
  padding: 160px 0;
}

.standard-header {
  text-align: center;
  margin-bottom: 100px;
}
.standard-header .section-title {
  margin: 0 auto;
}

.standard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
}

.standard-block {
  padding: 0 50px;
  position: relative;
}
.standard-block + .standard-block::before {
  content: '';
  position: absolute;
  top: 10%;
  left: 0;
  width: 1px;
  height: 80%;
  background: linear-gradient(180deg, transparent, var(--gold-dim), transparent);
  opacity: 0.5;
}

.block-number {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 32px;
}

.block-title {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 24px;
  line-height: 1.2;
}

.block-text {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-dim);
  font-weight: 300;
}

/* ─────────── SECTION 04 | COMMUNITY ─────────── */
.community {
  background: var(--surface-2);
  padding: 160px 0;
  border-top: 1px solid var(--border);
}

.community-inner {
  text-align: center;
}

.community-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 100px;
  text-align: left;
}

.community-card {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border);
  padding: 60px 48px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color 0.5s var(--ease), background 0.5s var(--ease), transform 0.5s var(--ease);
}
.community-card:hover {
  border-color: var(--gold);
  background: rgba(0, 0, 0, 0.7);
  transform: translateY(-4px);
}

.card-label {
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
}
.card-title {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.card-text {
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 16px;
}
.community-card .btn {
  align-self: flex-start;
}

/* ─────────── SECTION 05 | FOOTER ─────────── */
.footer {
  background: #000;
  padding: 140px 0 40px;
  position: relative;
  border-top: 1px solid var(--border);
}
.footer-inner {
  text-align: center;
  position: relative;
}

.footer-wordmark {
  font-size: clamp(3rem, 9vw, 7rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 14px;
  color: var(--text-dim);
  letter-spacing: 0.04em;
  margin-bottom: 60px;
}

.footer-line {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 60px;
}

.socials {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-bottom: 80px;
}
.socials a {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--text-dim);
  transition: color 0.3s var(--ease);
}
.socials a span {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.socials svg {
  width: 22px; height: 22px;
}
.socials a:hover { color: var(--gold); }

.footer-copy {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.footer-whisper {
  position: absolute;
  bottom: 24px;
  left: 40px;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--text-faint);
  text-transform: uppercase;
}

/* ─────────── REVEAL ANIMATIONS ─────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* Initial hero reveals stagger */
.hero .reveal { transition-delay: 0.1s; }
.hero .reveal:nth-child(2) { transition-delay: 0.25s; }
.hero .reveal:nth-child(3) { transition-delay: 0.4s; }
.hero .reveal:nth-child(5) { transition-delay: 0.55s; }
.hero .reveal:nth-child(6) { transition-delay: 0.7s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-line span { animation: none; transform: scaleX(1); }
  .scroll-line::after { animation: none; }
}

/* ─────────── RESPONSIVE ─────────── */
@media (max-width: 960px) {
  .container, .nav-inner { padding: 0 24px; }

  .nav-links { display: none; }
  .nav-inner > .lang-switch { display: none; }
  .nav-toggle { display: flex; }

  .philosophy { padding: 110px 0; }
  .philosophy-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .philosophy-image { order: -1; max-width: 480px; margin: 0 auto; }

  .standard { padding: 110px 0; }
  .standard-header { margin-bottom: 70px; }
  .standard-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .standard-block { padding: 0; }
  .standard-block + .standard-block::before {
    top: -30px; left: 0;
    width: 60px; height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
  }

  .community { padding: 110px 0; }
  .community-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 70px;
  }
  .community-card { padding: 44px 32px; }

  .footer { padding: 100px 0 80px; }
  .footer-whisper {
    position: static;
    margin-top: 40px;
    text-align: center;
  }
  .socials { gap: 36px; }
}

@media (max-width: 540px) {
  .hero { padding: 100px 24px 80px; }
  .hero-eyebrow { margin-bottom: 28px; }
  .hero-tagline { margin-bottom: 28px; }
  .hero-sub { margin-bottom: 40px; }
  .btn { padding: 16px 32px; font-size: 10px; }

  .section-title { margin-bottom: 36px; }
  .section-label { margin-bottom: 24px; }
}
