/* === 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: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

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

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--espresso);
  margin-bottom: 24px;
}

.section-title em {
  font-style: italic;
  font-weight: 300;
}

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

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

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

.btn-outline {
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  background: transparent;
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
}

.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: 20px 0;
  transition: all 0.4s ease;
}

.nav.scrolled {
  background: rgba(44, 36, 32, 0.95);
  backdrop-filter: blur(20px);
  padding: 12px 0;
}

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

.nav-wordmark {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--bone);
}

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

.nav-links {
  display: flex;
  gap: 36px;
}

.nav-links a {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color 0.3s;
}
.nav-links a:hover { color: #fff; }

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

.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-mobile-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: #fff;
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2C2420 0%, #3d3630 30%, #5C4F44 60%, #4a3f37 100%);
  overflow: hidden;
}

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

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(196, 169, 125, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 60%, rgba(92, 79, 68, 0.3) 0%, transparent 50%);
}

.hero.has-image::before {
  background: none;
}

/* === LIFESTYLE BANNER === */
.lifestyle-banner {
  position: relative;
  height: 70vh;
  min-height: 500px;
  overflow: hidden;
}

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

.lifestyle-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(44,36,32,0.1) 0%, rgba(44,36,32,0.5) 100%);
  display: flex;
  align-items: flex-end;
  padding: 64px;
}

.lifestyle-banner-text {
  color: #fff;
}

.lifestyle-banner-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 300;
  margin-bottom: 8px;
}

.lifestyle-banner-text p {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.1em;
  opacity: 0.7;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(26, 23, 20, 0.25);
}

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

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: var(--sand);
  margin-bottom: 32px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(40px, 7vw, 80px);
  font-weight: 300;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 28px;
}

.hero-title em {
  font-style: italic;
}

.hero-sub {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.7);
  max-width: 480px;
  margin: 0 auto 44px;
}

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

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

/* === INTRO === */
.intro {
  padding: 140px 0;
  background: var(--warm-white);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
}

.intro-wordmark {
  font-family: var(--font-serif);
  font-size: 72px;
  font-weight: 400;
  color: var(--espresso);
  opacity: 0.9;
  display: block;
  text-align: center;
}

.intro-right {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}
.intro-right.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === COLLECTION === */
.collection {
  padding: 120px 0;
  background: var(--cream);
}

.collection-desc {
  margin-bottom: 64px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 64px;
}

.product-card {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}
.product-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.product-card:nth-child(2) { transition-delay: 0.1s; }
.product-card:nth-child(3) { transition-delay: 0.2s; }
.product-card:nth-child(4) { transition-delay: 0.3s; }
.product-card:nth-child(5) { transition-delay: 0.4s; }
.product-card:nth-child(6) { transition-delay: 0.5s; }

.product-image {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  margin-bottom: 20px;
  cursor: pointer;
}

.product-image img.product-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-card:hover .product-photo {
  transform: scale(1.05);
}

.product-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-placeholder-icon {
  width: 48px;
  opacity: 0.15;
}

.product-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(44,36,32,0.3) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.product-card:hover .product-image-overlay {
  opacity: 1;
}

.product-quick-add {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(44,36,32,0.85);
  backdrop-filter: blur(10px);
  padding: 14px;
  text-align: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s ease;
  pointer-events: none;
}

.product-card:hover .product-quick-add {
  opacity: 1;
  transform: translateY(0);
}

.product-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.6);
  background: rgba(0,0,0,0.2);
  padding: 6px 12px;
  backdrop-filter: blur(10px);
}

.product-name {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--espresso);
  margin-bottom: 6px;
}

.product-detail {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 300;
  color: var(--clay);
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}

.product-price {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  color: var(--espresso);
}

.price-note {
  font-weight: 300;
  font-size: 12px;
  color: var(--clay);
}

.collection-cta {
  text-align: center;
  padding-top: 24px;
}

.collection-cta .btn {
  margin-top: 20px;
}

.collection-savings {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 300;
  color: var(--clay);
  margin-top: 12px;
}

/* === LOUNGE === */
.lounge {
  padding: 120px 0;
  background: var(--warm-white);
}

.lounge-feature {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 48px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}
.lounge-feature.visible {
  opacity: 1;
  transform: translateY(0);
}

.lounge-feature-image {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.lounge-feature-info {
  padding: 20px 0;
}

.lounge-feature-details {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lounge-detail-item {
  display: flex;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--linen);
}

.lounge-detail-label {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--clay);
  min-width: 70px;
  padding-top: 2px;
}

.lounge-detail-value {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--text-body);
  line-height: 1.6;
}

/* === ACCESSORIES === */
.accessories {
  padding: 80px 0 120px;
  background: var(--warm-white);
}

.accessories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.accessory-card {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}
.accessory-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.accessory-card:nth-child(2) { transition-delay: 0.1s; }
.accessory-card:nth-child(3) { transition-delay: 0.2s; }

/* === CAPSULE CTA === */
.capsule-cta {
  padding: 100px 0;
  background: var(--cream);
}

.capsule-cta-inner {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.capsule-cta-inner .btn {
  margin-top: 32px;
}

/* === COLOUR STORY === */
.colour-story {
  padding: 120px 0;
  background: var(--warm-white);
}

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

.colour-text {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}
.colour-text.visible {
  opacity: 1;
  transform: translateY(0);
}

.swatch-row {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.swatch {
  flex: 1;
  aspect-ratio: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 14px;
  border-radius: 4px;
}

.swatch span {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
}

.swatch:nth-child(n+4) span,
.swatch-row:nth-child(2) .swatch:nth-child(2) span,
.swatch-row:nth-child(2) .swatch:nth-child(3) span {
  color: rgba(44, 36, 32, 0.5);
}

/* === ESSENTIALS === */
.essentials {
  padding: 120px 0;
  background: var(--cream);
}

.essentials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 64px;
}

.essential-card {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}
.essential-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.essential-card:nth-child(2) { transition-delay: 0.15s; }
.essential-card:nth-child(3) { transition-delay: 0.3s; }

.essential-image {
  aspect-ratio: 1;
  position: relative;
  margin-bottom: 24px;
}

.essential-info { padding: 0 8px; }

/* === PHILOSOPHY === */
.philosophy {
  position: relative;
  padding: 160px 0;
  background: linear-gradient(160deg, #2C2420, #3d3630, #4a3f37);
  overflow: hidden;
}

.philosophy::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(196, 169, 125, 0.06) 0%, transparent 70%);
}

.philosophy-content {
  position: relative;
  z-index: 2;
}

.philosophy .section-eyebrow { color: var(--sand); }

.philosophy .section-title {
  color: #fff;
  max-width: 500px;
}

.philosophy-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 64px;
}

.pillar {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}
.pillar.visible {
  opacity: 1;
  transform: translateY(0);
}
.pillar:nth-child(2) { transition-delay: 0.15s; }
.pillar:nth-child(3) { transition-delay: 0.3s; }

.pillar h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--linen);
  margin-bottom: 16px;
}

.pillar p {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
}

/* === RETREATS === */
.retreats {
  padding: 140px 0;
  background: var(--warm-white);
}

.retreats-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.retreats-text {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}
.retreats-text.visible {
  opacity: 1;
  transform: translateY(0);
}

.retreats-includes {
  margin: 36px 0;
  padding: 28px 32px;
  background: var(--cream);
  border-left: 2px solid var(--sand);
}

.retreats-label {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--clay);
  margin-bottom: 16px;
}

.retreats-includes ul {
  list-style: none;
}

.retreats-includes li {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--text-body);
  padding: 6px 0;
  border-bottom: 1px solid rgba(187, 169, 152, 0.2);
}
.retreats-includes li:last-child { border-bottom: none; }

.retreats-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease 0.2s;
}
.retreats-visual.visible {
  opacity: 1;
  transform: translateY(0);
}

.retreats-card {
  background: linear-gradient(145deg, #2C2420, #3d3630);
  padding: 80px 48px;
  text-align: center;
  width: 100%;
  max-width: 380px;
}

.retreats-card-wordmark {
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 400;
  color: var(--bone);
  opacity: 0.9;
  display: block;
  margin-bottom: 28px;
}

.retreats-card-text {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255,255,255,0.6);
  font-style: italic;
}

/* === WAITLIST === */
.waitlist {
  padding: 140px 0;
  background: var(--cream);
}

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

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

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

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

.waitlist-form input[type="email"] {
  width: 100%;
  max-width: 400px;
  padding: 16px 20px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--espresso);
  background: var(--warm-white);
  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: 400px;
}

.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: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  margin-bottom: 64px;
}

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

.footer-tagline {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  font-style: italic;
}

.footer-links {
  display: flex;
  gap: 64px;
  justify-content: flex-end;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.3);
  margin-bottom: 8px;
}

.footer-col a {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-col a:hover { color: rgba(255,255,255,0.85); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
}

.footer-bottom p {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 300;
  color: rgba(255,255,255,0.25);
}

/* === TRUST BAR === */
.trust-bar {
  background: var(--espresso);
  padding: 16px 0;
  overflow: hidden;
}

.trust-bar-inner {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-item {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  white-space: nowrap;
}

/* === LOUNGE FEATURE IMAGE POLISH === */
.lounge-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.essential-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(44, 36, 32, 0.97);
    padding: 24px;
    gap: 20px;
  }
  .nav-cta { display: none; }
  .nav-mobile-toggle { display: flex; }

  .intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .intro-wordmark { font-size: 48px; }

  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .lounge-feature { grid-template-columns: 1fr; gap: 40px; }
  .accessories-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .essentials-grid { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; }

  .colour-grid { grid-template-columns: 1fr; gap: 48px; }
  .philosophy-pillars { grid-template-columns: 1fr; gap: 36px; }
  .retreats-grid { grid-template-columns: 1fr; gap: 48px; }

  .footer-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-links { justify-content: flex-start; }
  .footer-bottom { flex-direction: column; gap: 4px; }
}

@media (max-width: 560px) {
  .product-grid { grid-template-columns: 1fr; max-width: 360px; margin-left: auto; margin-right: auto; }

  .swatch-row { gap: 8px; }

  .retreats-card { padding: 56px 32px; }
}
