/* === RESET & BASE === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --espresso: #2C2420;
  --dusk: #5C4F44;
  --clay: #8A7B6D;
  --sand: #BBA998;
  --linen: #D4C5B5;
  --bone: #E8E0D8;
  --cream: #F5F0EB;
  --warm-white: #FAF8F5;
  --gold: #C4A97D;
  --text-dark: #1A1714;
  --text-body: #4A4039;

  --font-serif: 'Cormorant Garamond', 'Georgia', serif;
  --font-sans: 'Inter', -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--warm-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

img { max-width: 100%; height: auto; display: block; }

/* === TYPOGRAPHY === */
.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: var(--clay);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(30px, 4.5vw, 48px);
  font-weight: 300;
  line-height: 1.2;
  color: var(--espresso);
  margin-bottom: 24px;
}

.body-text {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-body);
  max-width: 480px;
}

.center { text-align: center; margin-left: auto; margin-right: auto; }

/* === BUTTONS === */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 40px;
  transition: all 0.4s ease;
  cursor: pointer;
  border: none;
}

.btn-outline {
  border: 1px solid rgba(255,255,255,0.35);
  color: #fff;
  background: transparent;
}
.btn-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.6);
}

.btn-solid {
  background: var(--espresso);
  color: var(--cream);
}
.btn-solid:hover {
  background: var(--dusk);
}

/* === NAVIGATION === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 24px 0;
  transition: all 0.4s ease;
}

.nav.scrolled {
  background: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(20px);
  padding: 14px 0;
  box-shadow: 0 1px 0 rgba(44, 36, 32, 0.06);
}

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

.nav-wordmark {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: #fff;
  transition: color 0.3s;
}

.nav.scrolled .nav-wordmark {
  color: var(--espresso);
}

.nav-cta {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.25);
  padding: 10px 24px;
  transition: all 0.3s;
}
.nav-cta:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.5);
}

.nav.scrolled .nav-cta {
  color: var(--espresso);
  border-color: var(--linen);
}
.nav.scrolled .nav-cta:hover {
  background: var(--cream);
  border-color: var(--sand);
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero.has-image {
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 23, 20, 0.35);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
}

.hero-brand {
  font-family: var(--font-serif);
  font-size: clamp(56px, 12vw, 120px);
  font-weight: 300;
  color: #fff;
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 4px;
}

.hero-tagline {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.4em;
  color: var(--sand);
  text-transform: uppercase;
  margin-bottom: 32px;
}

.hero-divider {
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.25);
  margin: 0 auto 32px;
}

.hero-sub {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(255,255,255,0.65);
  max-width: 380px;
  margin: 0 auto 48px;
}

.hero-scroll {
  font-family: var(--font-sans);
  font-size: 9px;
  letter-spacing: 0.4em;
  color: rgba(255,255,255,0.3);
  margin-top: 80px;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
  margin: 12px auto 0;
}

/* === BRAND STATEMENT === */
.statement {
  padding: 100px 0;
  background: var(--warm-white);
}

.statement-text {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 300;
  line-height: 1.5;
  color: var(--espresso);
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
}

.statement-text.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === LOOKBOOK === */
.lookbook {
  background: var(--warm-white);
  padding: 0 24px;
}

.lookbook-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  height: 85vh;
  min-height: 500px;
  max-height: 800px;
}

.lookbook-grid .lookbook-tall {
  grid-row: 1 / 3;
}

.lookbook-row {
  max-width: 1100px;
  margin: 16px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  height: 55vh;
  min-height: 350px;
  max-height: 550px;
}

.lookbook-item {
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.7s ease;
}

.lookbook-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.lookbook-item:nth-child(2) { transition-delay: 0.1s; }
.lookbook-item:nth-child(3) { transition-delay: 0.2s; }

.lookbook-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.25, 0, 0.15, 1);
}

.lookbook-item:hover img {
  transform: scale(1.03);
}

.lookbook-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(26,23,20,0.5) 0%, transparent 100%);
}

.lookbook-caption span {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 400;
  color: #fff;
}

/* === LIFESTYLE FULL === */
.lifestyle-full {
  position: relative;
  height: 50vh;
  min-height: 350px;
  overflow: hidden;
  margin-top: 16px;
}

.lifestyle-full img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lifestyle-full-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 23, 20, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lifestyle-full-text {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 300;
  color: #fff;
  text-align: center;
  line-height: 1.4;
  padding: 0 24px;
}

.lifestyle-full-text em {
  font-style: italic;
  font-size: 0.75em;
  opacity: 0.7;
  display: block;
  margin-top: 8px;
}

/* === COLLECTION PREVIEW === */
.preview-section {
  padding: 80px 0;
  background: var(--cream);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
}

.preview-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.preview-list {
  max-width: 600px;
  margin: 40px auto 0;
}

.preview-item {
  display: flex;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--linen);
}

.preview-item:first-child {
  border-top: 1px solid var(--linen);
}

.preview-cat {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--clay);
  min-width: 80px;
  padding-top: 2px;
}

.preview-pieces {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 300;
  color: var(--text-body);
  line-height: 1.6;
}

/* === WAITLIST === */
.waitlist {
  padding: 100px 0;
  background: var(--warm-white);
}

.waitlist-inner {
  text-align: center;
  max-width: 480px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
}

.waitlist-inner.visible {
  opacity: 1;
  transform: translateY(0);
}

.waitlist-wordmark {
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 400;
  color: var(--espresso);
  display: block;
  margin-bottom: 24px;
}

.waitlist .section-title {
  margin-bottom: 12px;
}

.waitlist-form {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.waitlist-form input[type="email"] {
  width: 100%;
  max-width: 380px;
  padding: 14px 20px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 300;
  color: var(--espresso);
  background: #fff;
  border: 1px solid var(--linen);
  outline: none;
  transition: border-color 0.3s;
}
.waitlist-form input:focus {
  border-color: var(--sand);
}

.waitlist-form .btn {
  width: 100%;
  max-width: 380px;
}

.waitlist-note {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 300;
  color: var(--clay);
  margin-top: 16px;
}

.waitlist-thanks {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 300;
  color: var(--espresso);
  font-style: italic;
}

/* === FOOTER === */
.footer {
  background: var(--espresso);
  padding: 60px 0 40px;
}

.footer-minimal {
  text-align: center;
}

.footer-wordmark {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--bone);
  opacity: 0.7;
  display: block;
  margin-bottom: 8px;
}

.footer-tagline {
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.3);
  font-style: italic;
  margin-bottom: 32px;
}

.footer-links-row {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.footer-links-row a {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.3s;
}
.footer-links-row a:hover { color: rgba(255,255,255,0.7); }

.footer-copy {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 300;
  color: rgba(255,255,255,0.2);
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .lookbook-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 1.5fr 1fr 1fr;
    height: auto;
    max-height: none;
    min-height: auto;
    gap: 12px;
  }

  .lookbook-grid .lookbook-tall {
    grid-row: auto;
  }

  .lookbook-grid .lookbook-item {
    height: 50vh;
    min-height: 280px;
  }

  .lookbook-row {
    grid-template-columns: 1fr;
    height: auto;
    max-height: none;
    min-height: auto;
    gap: 12px;
  }

  .lookbook-row .lookbook-item {
    height: 50vh;
    min-height: 280px;
  }

  .preview-item {
    flex-direction: column;
    gap: 8px;
  }

  .lifestyle-full {
    height: 40vh;
    min-height: 280px;
  }

  .hero-brand {
    font-size: 64px;
  }

  .footer-links-row {
    gap: 20px;
  }
}
