/* -----------------------------
   GLOBAL + BRAND TYPOGRAPHY
------------------------------*/
* { box-sizing: border-box; }

body, p, input, button {
  font-family: "Inter", sans-serif;
}

h1, h2, h3, .brand, .mission-title {
  font-family: "Playfair Display", serif;
  letter-spacing: -0.5px;
  font-weight: 400;
}

.cta, .step-title, .scroll-indicator {
  font-family: "Inter", sans-serif;
  letter-spacing: 0.08em;
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  padding: 0;
  color: #111;
  background-color: #f6f6f7;
  background-image: url("https://www.transparenttextures.com/patterns/concrete-wall.png");
  background-attachment: fixed;
  line-height: 1.6;
}

h1, h2, h3 { margin: 0; }

/* -----------------------------
   ANIMATIONS
------------------------------*/
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.section-animated {
  opacity: 0;
  animation: fadeUp 0.9s ease forwards;
}

.hero.section-animated { animation-delay: 0.05s; }
.how.section-animated { animation-delay: 0.15s; }
.textures.section-animated { animation-delay: 0.25s; }
.editorial-demo.section-animated { animation-delay: 0.35s; }
.vision.section-animated { animation-delay: 0.45s; }
.waitlist.section-animated { animation-delay: 0.55s; }

/* -----------------------------
   HERO VIDEO INTRO (PALOMA FEEL)
------------------------------*/
.intro-video-section {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background: #000;
}

.intro-video {
  position: absolute;
  top: 50%; left: 50%;
  width: 130%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  filter: grayscale(100%) contrast(120%);
}

/* fixed side logo */
.side-logo {
  position: fixed;
  top: 6%;
  left: 4%;
  z-index: 20;
}

.side-logo h1 {
  font-size: 48px;
  color: white;
  letter-spacing: -0.5px;
  mix-blend-mode: difference;
}

/* scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  font-size: 14px;
  color: white;
  opacity: 0.8;
  text-transform: lowercase;
  animation: fadeScroll 2.2s ease-in-out infinite;
}

@keyframes fadeScroll {
  0%,100% { opacity: 0.2; }
  50%     { opacity: 1; }
}

/* -----------------------------
   HERO HEADLINE
------------------------------*/
/* HERO — BIG CENTERED CAMPAIGN STYLE */
.hero {
  padding: 260px 20px 200px;
  text-align: center;
  background: #fff;
}

/* NEW — replaces .hero h1 */
.hero-title {
  font-family: "Playfair Display", serif;
  font-size: 78px;        /* big elegant miyu */
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 28px;
  text-transform: none;
  letter-spacing: -1px;
}

/* NEW — smaller subtitle */
.hero-sub {
  display: block;
  font-size: 34px;        /* balanced, not overpowering */
  font-weight: 300;
  letter-spacing: -0.3px;
  opacity: 0.75;          
  margin-top: 16px;
}

/* CTA */
.cta {
  display: inline-block;
  padding: 14px 32px;
  background: #111;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  text-transform: lowercase;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.cta:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

/* -----------------------------
   HOW IT WORKS
------------------------------*/
.how {
  padding: 120px 20px 90px;
  text-align: center;
  background: white;
}

.how h2 {
  font-size: 32px;
  margin-bottom: 40px;
}

.steps {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.step {
  max-width: 260px;
  text-align: left;
  font-size: 15px;
  color: #666;
}

.step-title {
  font-size: 16px;
  font-weight: 600;
  color: #111;
  margin-bottom: 8px;
}

/* subtle animated pulse */
@keyframes pulseStep {
  0%,20% { opacity:1; }
  25%,100% { opacity:0.45; }
}

.step-1 { animation: pulseStep 9s infinite; animation-delay: 0s; }
.step-2 { animation: pulseStep 9s infinite; animation-delay: 3s; }
.step-3 { animation: pulseStep 9s infinite; animation-delay: 6s; }

/* -----------------------------
   TEXTURES GRID (SSENSE VIBES)
------------------------------*/
.textures {
  padding: 160px 20px;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
  background: white;
}

.textures-title {
  font-size: 44px;
  margin-bottom: 18px;
}

.textures-sub {
  font-size: 20px;
  opacity: 0.7;
  margin-bottom: 60px;
}

.textures-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.tex-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 4px;
  filter: brightness(0.92) contrast(1.05);
  transition: transform 0.4s ease, filter 0.3s ease;
}

.tex-img:hover {
  transform: scale(1.03);
  filter: brightness(0.98) contrast(1.1);
}

/* -----------------------------
   **NEW EDITORIAL DEMO GRID**
   Paloma Wool + Zara Layout
------------------------------*/
.editorial-demo {
  padding: 160px 40px 100px;
  background: white;
}

.demo-grid {
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 300px 1fr 300px;
  gap: 60px;
}

/* side columns */
.side-col {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.side-img {
  width: 100%;
  border-radius: 12px;
}

/* center model */
.model-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.model-img {
  width: auto;
  max-height: 720px;
}

/* curation text */
.curation-copy {
  text-align: center;
  margin-top: 90px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.curation-copy h2 {
  font-size: 44px;
  margin-bottom: 22px;
}

.tagline {
  font-size: 22px;
  margin-bottom: 25px;
}

.desc {
  font-size: 18px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 20px;
}

.notes {
  font-size: 14px;
  color: #666;
  letter-spacing: 0.4px;
}

/* -----------------------------
   MANIFESTO
------------------------------*/
.vision {
  padding: 50px 20px;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  font-size: 19px;
  color: #555;
  line-height: 1.8;
  background: transparent;
}

/* -----------------------------
   WAITLIST
------------------------------*/
.waitlist {
  padding: 110px 20px 120px;
  background: #ffffffdd;
  text-align: center;
  border-top: 1px solid #e3e3e6;
}

.waitlist h2 {
  font-size: 30px;
  margin-bottom: 24px;
}

.waitlist form {
  display: inline-flex;
  gap: 10px;
  flex-wrap: wrap;
}

input {
  padding: 14px 16px;
  width: 280px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
}

button {
  padding: 14px 20px;
  background: #111;
  color: white;
  border-radius: 6px;
  font-size: 15px;
  text-transform: lowercase;
}

button:hover {
  opacity: 0.85;
}

/* -----------------------------
   RESPONSIVE CLEANUP
------------------------------*/
@media (max-width: 900px) {
  .demo-grid {
    grid-template-columns: 1fr;
  }

  .side-col {
    flex-direction: row;
    gap: 20px;
  }

  .side-img {
    width: 48%;
  }

  .model-img {
    max-height: 540px;
  }
}

@media (max-width: 768px) {
  .hero h1 { font-size: 56px; }
  .hero-statement { font-size: 18px; }

  .textures-grid {
    grid-template-columns: 1fr;
  }

  .curation-copy { margin-top: 60px; }

  .waitlist form { flex-direction: column; }
  input, button { width: 100%; }
}
/* ------------------------------------
   NEW: EDITORIAL DIMENSIONALITY
-------------------------------------*/

/* section background greys */
.bg-grey-light { background: #f0f0f0 !important; }
.bg-grey-mid { background: #ededed !important; }
.bg-grey-warm { background: #e9e9e9 !important; }

/* Paloma Wool moodboard cards */
.pw-card {
  background: #e5e5e5;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.06);
  display: block;
}
.section-white-reset {
  background: #ffffff;
  padding-top: 120px;
  padding-bottom: 20px;
}
/* --- Alternating Section Backgrounds --- */
.section-white {
  background: #ffffff;
}

.section-grey {
  background: #f2f2f2; /* soft editorial grey */
}

.section-grey-deep {
  background: #e9e9e9; /* a bit deeper for texture sections */
}


