/* ============================================================
   MISS WALLSTREET — HOMEPAGE CSS
   css/homepage.css
   ============================================================ */

/* ── UTILITIES ──────────────────────────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ── PAGE WRAPPER ───────────────────────────────────────────── */
.mw-page {
  position: relative;
  overflow-x: hidden;
  background: var(--mw-cream);
}

/* ── GRAIN OVERLAY ──────────────────────────────────────────── */
.mw-grain {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* ── EYEBROW LABEL ──────────────────────────────────────────── */
.mw-eyebrow {
  font-family: var(--mw-font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--mw-gold);
  margin-bottom: 16px;
  opacity: 0;
  animation: mw-fade-up 0.7s ease forwards;
}

.mw-eyebrow--light {
  color: var(--mw-gold);
}

/* ── NAVIGATION ─────────────────────────────────────────────── */
.mw-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 48px;
  height: 72px;
  display: flex;
  align-items: center;
  background: var(--mw-cream);
  border-bottom: 1px solid var(--mw-gold-light);
  transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.mw-nav.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-color: transparent;
  box-shadow: 0 1px 0 rgba(201, 168, 76, 0.2);
}

.mw-nav__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mw-nav__logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.mw-nav__mark {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--mw-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mw-font-display);
  font-size: 12px;
  font-weight: 900;
  color: var(--mw-black);
  flex-shrink: 0;
}

.mw-nav__logo .mw-nav__wordmark {
  font-family: var(--mw-font-display);
  font-size: 20px;
  font-weight: 900;
  color: var(--mw-black);
  line-height: 1;
  transition: color 0.4s ease;
  display: block;
}

.mw-nav.scrolled .mw-nav__logo .mw-nav__wordmark {
  color: var(--mw-cream);
}

.mw-nav__logo .mw-nav__wordmark em {
  color: var(--mw-gold);
  font-style: italic;
}

/* Nav menu */
.mw-nav__menu {
  list-style: none;
  display: flex;
  gap: 36px;
  margin: 0; padding: 0;
}

.mw-nav__menu a {
  font-family: var(--mw-font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mw-black);
  text-decoration: none;
  transition: color 0.4s ease;
}

.mw-nav.scrolled .mw-nav__menu a {
  color: var(--mw-muted);
}

.mw-nav__menu a:hover {
  color: var(--mw-gold);
}

/* ── HERO ───────────────────────────────────────────────────── */
.mw-hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 72px; /* nav height */
}

/* Left panel — dark */
.mw-hero__left {
  background: var(--mw-black);
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.mw-hero__left::before {
  content: '';
  position: absolute;
  top: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,168,76,0.14) 0%, transparent 70%);
  pointer-events: none;
}

.mw-hero__left::after {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.mw-hero__ticker {
  font-family: var(--mw-font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--mw-gold);
  margin-bottom: 36px;
  opacity: 0;
  animation: mw-fade-up 0.8s ease 0.1s forwards;
}

.mw-hero__name {
  font-family: var(--mw-font-display);
  font-size: clamp(52px, 6.5vw, 96px);
  font-weight: 900;
  line-height: 0.92;
  color: var(--mw-cream);
  margin: 0 0 8px;
  opacity: 0;
  animation: mw-fade-up 0.8s ease 0.3s forwards;
}

.mw-hero__name em {
  color: var(--mw-gold);
  font-style: italic;
}

.mw-hero__tagline {
  font-family: var(--mw-font-body);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--mw-muted);
  margin: 24px 0 48px;
  opacity: 0;
  animation: mw-fade-up 0.8s ease 0.5s forwards;
}

.mw-hero__rule {
  width: 56px; height: 2px;
  background: var(--mw-gold);
  margin-bottom: 36px;
  opacity: 0;
  animation: mw-fade-up 0.8s ease 0.6s forwards;
}

.mw-hero__quote {
  font-family: var(--mw-font-display);
  font-size: clamp(16px, 1.6vw, 20px);
  font-style: italic;
  color: var(--mw-cream);
  line-height: 1.75;
  border: none;
  padding: 0; margin: 0;
  opacity: 0;
  animation: mw-fade-up 0.8s ease 0.75s forwards;
}

.mw-hero__quote p { margin: 0; }

/* Right panel — cream */
.mw-hero__right {
  background: var(--mw-cream);
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.mw-hero__avatar {
  position: absolute;
  top: 40px; right: 40px;
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--mw-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mw-font-display);
  font-size: 16px;
  font-weight: 900;
  color: var(--mw-black);
  opacity: 0;
  animation: mw-fade-up 0.8s ease 0.9s forwards;
}

.mw-hero__origin-title {
  font-family: var(--mw-font-display);
  font-size: clamp(24px, 2.8vw, 38px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--mw-black);
  margin: 0 0 28px;
  opacity: 0;
  animation: mw-fade-up 0.8s ease 0.55s forwards;
}

.mw-hero__origin-body {
  font-size: 15px;
  line-height: 1.9;
  color: var(--mw-body-dark);
  opacity: 0;
  animation: mw-fade-up 0.8s ease 0.7s forwards;
}

.mw-hero__origin-body p {
  margin-bottom: 18px;
}

.mw-hero__origin-body p:last-child {
  margin-bottom: 0;
}

.mw-hero__origin-body em {
  font-style: italic;
}

/* Arrow link */
.mw-link-arrow {
  display: inline-block;
  margin-top: 28px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mw-gold);
  text-decoration: none;
  transition: letter-spacing 0.25s ease;
  opacity: 0;
  animation: mw-fade-up 0.8s ease 0.85s forwards;
}

.mw-link-arrow:hover {
  letter-spacing: 3px;
}

/* ── WISHLIST METHOD ────────────────────────────────────────── */
.mw-method {
  background: var(--mw-cream);
  padding: 120px 48px;
  border-top: 1px solid var(--mw-gold-light);
}

.mw-method__inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.mw-method__title {
  font-family: var(--mw-font-display);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 900;
  color: var(--mw-black);
  margin: 0 0 20px;
}

.mw-method__sub {
  font-size: 16px;
  line-height: 1.75;
  color: var(--mw-body-dark);
  max-width: 540px;
  margin: 0 auto 64px;
}

.mw-method__sub em {
  font-family: var(--mw-font-display);
  font-style: italic;
  color: var(--mw-gold);
}

/* Three pillars */
.mw-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--mw-gold-light);
  margin-bottom: 56px;
}

.mw-pillar {
  background: var(--mw-cream);
  padding: 48px 36px;
  text-align: left;
  position: relative;
}

.mw-pillar__num {
  font-family: var(--mw-font-display);
  font-size: 72px;
  font-weight: 900;
  color: var(--mw-gold-light);
  line-height: 1;
  margin-bottom: -8px;
}

.mw-pillar__name {
  font-family: var(--mw-font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--mw-black);
  margin-bottom: 14px;
  margin-top: 8px;
}

.mw-pillar__desc {
  font-size: 14px;
  line-height: 1.85;
  color: var(--mw-body-dark);
  margin: 0;
}

/* ── BUTTONS ────────────────────────────────────────────────── */
.mw-btn {
  display: inline-block;
  font-family: var(--mw-font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 18px 48px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  position: relative;
  z-index: 1;
}

.mw-btn--gold {
  background: var(--mw-gold);
  color: var(--mw-black);
}

.mw-btn--gold:hover {
  background: var(--mw-black);
  color: var(--mw-gold);
  transform: translateY(-2px);
}

.mw-btn--outline {
  background: transparent;
  color: var(--mw-black);
  border: 2px solid var(--mw-gold);
}

.mw-btn--outline:hover {
  background: var(--mw-gold);
  color: var(--mw-black);
  transform: translateY(-2px);
}

/* ── NEWSLETTER CTA ─────────────────────────────────────────── */
.mw-cta {
  background: var(--mw-black);
  padding: 120px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.mw-cta__bg-text {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--mw-font-display);
  font-size: clamp(200px, 28vw, 340px);
  font-weight: 900;
  color: rgba(201,168,76,0.04);
  pointer-events: none;
  white-space: nowrap;
  user-select: none;
  line-height: 1;
}

.mw-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.mw-cta__title {
  font-family: var(--mw-font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 900;
  color: var(--mw-cream);
  line-height: 1.15;
  margin: 0 0 20px;
}

.mw-cta__title em {
  color: var(--mw-gold);
  font-style: italic;
}

.mw-cta__sub {
  font-size: 15px;
  line-height: 1.8;
  color: var(--mw-muted);
  margin-bottom: 48px;
}

/* ── FORM ───────────────────────────────────────────────────── */
.mw-form {
  width: 100%;
}

.mw-form__row {
  display: flex;
  gap: 0;
  max-width: 480px;
  margin: 0 auto 14px;
}

.mw-form__input {
  flex: 1;
  background: rgba(245, 240, 232, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-right: none;
  color: var(--mw-cream);
  font-family: var(--mw-font-body);
  font-size: 14px;
  padding: 0 20px;
  height: 56px;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.mw-form__input::placeholder {
  color: var(--mw-muted);
}

.mw-form__input:focus {
  border-color: var(--mw-gold);
  background: rgba(245, 240, 232, 0.12);
}

.mw-form__row .mw-btn--gold {
  flex-shrink: 0;
  height: 56px;
  padding: 0 28px;
  font-size: 10px;
  letter-spacing: 2px;
}

.mw-form__note {
  font-size: 11px;
  color: var(--mw-muted);
  letter-spacing: 1px;
  margin: 0;
}

/* ── FOOTER ─────────────────────────────────────────────────── */
.mw-footer {
  background: var(--mw-black);
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  padding: 28px 48px;
}

.mw-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.mw-footer__logo {
  font-family: var(--mw-font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--mw-gold);
  letter-spacing: 2px;
}

.mw-footer__menu {
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0; padding: 0;
}

.mw-footer__menu a {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--mw-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.mw-footer__menu a:hover {
  color: var(--mw-gold);
}

.mw-footer__note {
  font-size: 11px;
  color: var(--mw-muted);
  letter-spacing: 0.5px;
  text-align: right;
  line-height: 1.6;
  margin: 0;
}

.mw-footer__note small {
  opacity: 0.6;
  font-size: 10px;
}

/* ── ANIMATIONS ─────────────────────────────────────────────── */
@keyframes mw-fade-up {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0);    }
}

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .mw-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .mw-hero__left {
    padding: 100px 36px 72px;
    min-height: 70vh;
  }

  .mw-hero__right {
    padding: 64px 36px;
  }

  .mw-hero__avatar {
    top: 24px; right: 24px;
  }

  .mw-nav {
    padding: 0 24px;
  }

  .mw-nav__menu {
    gap: 20px;
  }

  .mw-method {
    padding: 80px 24px;
  }

  .mw-pillars {
    grid-template-columns: 1fr;
  }

  .mw-cta {
    padding: 80px 24px;
  }

  .mw-form__row {
    flex-direction: column;
    gap: 10px;
  }

  .mw-form__input {
    border-right: 1px solid rgba(201, 168, 76, 0.4);
  }

  .mw-form__row .mw-btn--gold {
    width: 100%;
  }

  .mw-footer__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .mw-footer__note {
    text-align: left;
  }
}

@media (max-width: 560px) {
  .mw-nav__wordmark {
    display: none;
  }

  .mw-hero__left {
    padding: 96px 28px 60px;
  }

  .mw-hero__right {
    padding: 48px 28px;
  }

  .mw-pillar {
    padding: 36px 24px;
  }

  .mw-footer {
    padding: 28px 24px;
  }

  .mw-footer__menu {
    flex-wrap: wrap;
    gap: 16px;
  }
}
