/* =============================================
   DESIGN TOKENS
============================================= */
:root {
  --cream:      #F8F6F2;
  --ivory:      #FFFEF9;
  --charcoal:   #1A1918;
  --warm-grey:  #7A7570;
  --silver:     #B2AAA2;
  --gold:       #C4A87A;
  --line-green: #00B900;
  --white:      #FFFFFF;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* =============================================
   RESET & BASE
============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  background: var(--ivory);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-weight: 300;
  overflow-x: hidden;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a   { color: inherit; text-decoration: none; }

/* =============================================
   UTILITY
============================================= */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 640px) {
  .container { padding: 0 20px; }
}

.section-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--silver);
}

/* =============================================
   BUTTONS
============================================= */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--charcoal);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 16px 32px;
  border: 1px solid var(--charcoal);
  cursor: pointer;
  transition: background 0.3s var(--ease-out), color 0.3s var(--ease-out);
}
.btn-primary:hover { background: transparent; color: var(--charcoal); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 15px 32px;
  border: 1px solid rgba(255,255,255,0.5);
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s;
}
.btn-secondary:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

.btn-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--line-green);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 16px 32px;
  border: none;
  cursor: pointer;
  transition: filter 0.3s;
}
.btn-line:hover { filter: brightness(1.1); }

.btn-line-sm {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 12px 20px;
  border: 1px solid var(--charcoal);
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
  width: 100%;
  justify-content: center;
}
.btn-line-sm:hover { background: var(--charcoal); color: var(--white); }

.icon-line { width: 18px; height: 18px; flex-shrink: 0; }

/* =============================================
   NAVBAR
============================================= */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s, padding 0.4s;
}
nav.scrolled {
  background: rgba(255,254,249,0.96);
  backdrop-filter: blur(10px);
  padding: 14px 40px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.nav-logo {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--white);
  transition: color 0.4s;
}
nav.scrolled .nav-logo { color: var(--charcoal); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 10px 18px;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
nav.scrolled .nav-cta { color: var(--charcoal); background: transparent; border-color: var(--charcoal); }
.nav-cta:hover { background: var(--line-green); border-color: var(--line-green); color: var(--white); }

@media (max-width: 640px) {
  nav { padding: 16px 20px; }
  nav.scrolled { padding: 12px 20px; }
  .nav-cta { display: none; }
}

/* =============================================
   HERO
============================================= */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
  background: var(--charcoal);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s var(--ease-out);
}
.hero-slide.active { opacity: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(20,18,16,0.15) 0%,
    rgba(20,18,16,0.05) 30%,
    rgba(20,18,16,0.45) 80%,
    rgba(20,18,16,0.72) 100%
  );
}

.hero-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0 60px 60px;
  z-index: 2;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 18px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s var(--ease-out) 0.4s forwards;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 108px);
  font-weight: 300;
  line-height: 0.92;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  opacity: 0;
  transform: translateY(28px);
  animation: fadeUp 1s var(--ease-out) 0.6s forwards;
}
.hero-title em { font-style: italic; font-weight: 300; color: rgba(255,255,255,0.75); }

.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(12px, 1.3vw, 14px);
  font-weight: 200;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.65);
  max-width: 420px;
  line-height: 1.8;
  margin-bottom: 36px;
  margin-top: 20px;
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 1s var(--ease-out) 0.85s forwards;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s var(--ease-out) 1.05s forwards;
}

.hero-dots {
  position: absolute;
  bottom: 28px; right: 60px;
  display: flex;
  gap: 8px;
  z-index: 2;
}
.hero-dot {
  width: 28px; height: 1px;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: background 0.3s, width 0.3s;
}
.hero-dot.active { background: var(--white); width: 48px; }

@media (max-width: 640px) {
  .hero-content { padding: 0 20px 80px; }
  .hero-dots { right: 20px; bottom: 20px; }
}

/* =============================================
   TICKER STRIP
============================================= */
.strip { background: var(--charcoal); padding: 18px 0; overflow: hidden; }
.strip-inner {
  display: flex;
  gap: 60px;
  animation: ticker 22s linear infinite;
  white-space: nowrap;
}
.strip-item {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  flex-shrink: 0;
}
.strip-dot { color: var(--gold); }

/* =============================================
   WHY SPECIAL
============================================= */
.why { padding: 120px 0; background: var(--cream); }

.why-header { text-align: center; margin-bottom: 80px; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--charcoal);
}
.section-title em { font-style: italic; color: var(--warm-grey); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.why-card {
  background: var(--ivory);
  padding: 48px 36px;
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out);
}
.why-card:hover::before { transform: scaleX(1); }
.why-number {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 300;
  color: rgba(0,0,0,0.05);
  line-height: 1;
  margin-bottom: 24px;
}
.why-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.01em;
  margin-bottom: 14px;
}
.why-desc {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--warm-grey);
}
@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .why-grid { grid-template-columns: 1fr; } .why { padding: 80px 0; } }

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

.collection-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 64px;
  gap: 20px;
}
.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-card { background: var(--cream); position: relative; overflow: hidden; }
.product-image { position: relative; aspect-ratio: 3/4; overflow: hidden; }
.product-image img { transition: transform 0.8s var(--ease-out); }
.product-card:hover .product-image img { transform: scale(1.04); }

.product-tag {
  position: absolute;
  top: 16px; left: 16px;
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--charcoal);
  color: var(--white);
  padding: 5px 12px;
  z-index: 2;
}
.product-info { padding: 24px 24px 28px; }
.product-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--charcoal);
  margin-bottom: 4px;
}
.product-price {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  color: var(--warm-grey);
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.product-points { list-style: none; margin-bottom: 14px; }
.product-points li {
  font-size: 11px;
  font-weight: 300;
  color: var(--warm-grey);
  letter-spacing: 0.04em;
  line-height: 1.9;
  padding-left: 14px;
  position: relative;
}
.product-points li::before { content: '—'; position: absolute; left: 0; color: var(--silver); }
.product-fit {
  font-size: 10px;
  font-weight: 300;
  color: var(--silver);
  letter-spacing: 0.08em;
  font-style: italic;
  margin-bottom: 20px;
  border-top: 1px solid rgba(0,0,0,0.06);
  padding-top: 14px;
}
@media (max-width: 900px) { .collection-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) {
  .collection-grid { grid-template-columns: 1fr; gap: 16px; }
  .collection-header { flex-direction: column; align-items: flex-start; }
  .collection { padding: 80px 0; }
}

/* =============================================
   SIZE & FIT
============================================= */
.size-section { padding: 120px 0; background: var(--charcoal); color: var(--white); }
.size-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }

.size-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 300;
  line-height: 1.0;
  margin-bottom: 28px;
}
.size-title em { font-style: italic; color: var(--gold); }

.size-table { width: 100%; border-collapse: collapse; margin-bottom: 32px; }
.size-table th {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--silver);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  text-align: left;
}
.size-table td {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.size-notes { display: flex; flex-direction: column; gap: 20px; }
.size-note { padding: 20px 24px; border: 1px solid rgba(255,255,255,0.1); position: relative; }
.size-note::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--gold);
}
.size-note-title {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.size-note-text {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
}
@media (max-width: 768px) {
  .size-grid { grid-template-columns: 1fr; gap: 48px; }
  .size-section { padding: 80px 0; }
}

/* =============================================
   STORY
============================================= */
.story { overflow: hidden; }
.story-split { display: grid; grid-template-columns: 1fr 1fr; min-height: 700px; }
.story-image { position: relative; overflow: hidden; }
.story-image img {
  position: absolute; inset: 0;
  object-position: center top;
  transition: transform 1.2s var(--ease-out);
}
.story-split:hover .story-image img { transform: scale(1.03); }

.story-content {
  padding: 80px 72px;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.story-body { font-size: 14px; font-weight: 300; line-height: 2; color: var(--warm-grey); }
.story-body p + p { margin-top: 24px; }

.story-pullquote {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.25;
  color: var(--charcoal);
  border-left: 2px solid var(--gold);
  padding-left: 28px;
  margin: 40px 0;
}
.story-split.reverse { direction: rtl; }
.story-split.reverse > * { direction: ltr; }

@media (max-width: 768px) {
  .story-split { grid-template-columns: 1fr; }
  .story-split.reverse { direction: ltr; }
  .story-image { aspect-ratio: 3/2; position: relative; }
  .story-image img { position: relative; height: 100%; }
  .story-content { padding: 56px 28px; }
  .story-pullquote { font-size: 26px; }
}

/* =============================================
   SOCIAL PROOF
============================================= */
.social-proof { padding: 120px 0; background: var(--ivory); }
.trust-badges {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 60px;
  margin-bottom: 80px;
}
.trust-badge { display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center; }
.badge-icon {
  width: 48px; height: 48px;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.badge-label {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--warm-grey);
}
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.testimonial { background: var(--cream); padding: 40px 36px; }
.testimonial-stars { color: var(--gold); font-size: 12px; letter-spacing: 3px; margin-bottom: 20px; }
.testimonial-text {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.65;
  color: var(--charcoal);
  margin-bottom: 20px;
}
.testimonial-author {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--silver);
}
@media (max-width: 768px) {
  .testimonials { grid-template-columns: 1fr; }
  .social-proof { padding: 80px 0; }
}

/* =============================================
   FINAL CTA
============================================= */
.final-cta {
  position: relative;
  padding: 160px 0;
  overflow: hidden;
  background: var(--charcoal);
  text-align: center;
}
.final-cta-bg { position: absolute; inset: 0; opacity: 0.35; }
.final-cta-bg img { object-position: center 25%; filter: grayscale(30%); }
.final-cta-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,25,24,0.85) 0%, rgba(26,25,24,0.65) 100%);
}
.final-cta-content { position: relative; z-index: 2; }
.final-cta-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 88px);
  font-weight: 300;
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 20px;
}
.final-cta-title em { font-style: italic; color: rgba(255,255,255,0.65); }
.final-cta-sub {
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.55);
  max-width: 400px;
  margin: 0 auto 48px;
  line-height: 1.9;
}
.final-cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* =============================================
   FOOTER
============================================= */
footer {
  background: var(--charcoal);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 48px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-logo {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.footer-note { font-size: 11px; font-weight: 300; color: rgba(255,255,255,0.25); letter-spacing: 0.05em; }

/* =============================================
   STICKY CTA (MOBILE)
============================================= */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--charcoal);
  padding: 14px 20px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-top: 1px solid rgba(255,255,255,0.08);
  transform: translateY(100%);
  transition: transform 0.5s var(--ease-out);
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-text {
  font-size: 11px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.05em;
  line-height: 1.5;
}
.sticky-text strong {
  display: block;
  color: var(--white);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.1em;
}
.sticky-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--line-green);
  color: var(--white);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 12px 20px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
}
@media (max-width: 768px) { .sticky-cta { display: flex; } }

/* =============================================
   ANIMATIONS
============================================= */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
