/* DropX — Editorial Parisian Boutique Aesthetic */

:root {
  --bg: #F5F0EA;
  --fg: #1A1A1A;
  --accent: #C4622D;
  --accent-light: #D4784A;
  --accent-pale: #F0E4D8;
  --stone: #C4A882;
  --bronze: #B8873A;
  --cream: #FDF9F4;
  --muted: #8A7A6A;
  --border: rgba(26,26,26,0.12);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ——— NAV ——— */
.topnav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 48px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(245, 240, 234, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--fg);
}

.nav-tagline {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
}

/* ——— HERO ——— */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 48px 80px;
  position: relative;
  background: var(--bg);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: 100%;
  background: linear-gradient(160deg, var(--accent-pale) 0%, var(--bg) 100%);
  clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
  z-index: 0;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  align-items: center;
}

.hero-text-block { max-width: 480px; }

.hero-overline {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 24px;
}

.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(5rem, 12vw, 9rem);
  font-weight: 300;
  line-height: 0.9;
  color: var(--fg);
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}

.headline-drop { color: var(--fg); }
.headline-x { color: var(--accent); font-style: italic; }

.hero-sub {
  font-size: 1.2rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 40px;
  font-weight: 300;
}

.badge-row { display: flex; gap: 10px; flex-wrap: wrap; }

.badge {
  display: inline-block;
  padding: 6px 16px;
  border: 1px solid var(--border);
  border-radius: 24px;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
}

.badge-accent {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-pale);
}

.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bag-illustration {
  width: 100%;
  max-width: 320px;
  filter: drop-shadow(0 40px 80px rgba(196,98,45,0.2));
}

.bag-illustration svg { width: 100%; height: auto; }

.drop-counter {
  margin-top: 24px;
  text-align: center;
  padding: 20px 36px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--cream);
}

.counter-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}

.counter-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
}

.counter-sub {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 2px;
}

.scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--muted);
  opacity: 0.5;
  animation: scrollHintPulse 2s ease-in-out infinite;
}

@keyframes scrollHintPulse {
  0%, 100% { opacity: 0.3; transform: translateX(-50%) translateY(0); }
  50% { opacity: 0.7; transform: translateX(-50%) translateY(6px); }
}

/* ——— MANIFESTO ——— */
.manifesto {
  background: var(--fg);
  color: var(--cream);
  padding: 100px 48px;
}

.manifesto-inner { max-width: 760px; margin: 0 auto; }

.manifesto-label {
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
}

.manifesto-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.3;
  color: var(--cream);
  margin-bottom: 40px;
}

.manifesto-rule {
  width: 60px;
  height: 1px;
  background: var(--accent);
  margin-bottom: 32px;
}

.manifesto-body {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(253,249,244,0.65);
  font-weight: 300;
}

/* ——— HOW IT WORKS ——— */
.howitworks {
  padding: 100px 48px;
  background: var(--bg);
}

.hiw-inner { max-width: 1100px; margin: 0 auto; }

.hiw-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 400;
  text-align: center;
  margin-bottom: 64px;
  letter-spacing: 0.02em;
}

.hiw-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.hiw-step { text-align: center; }

.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--accent);
  margin-bottom: 20px;
  font-weight: 500;
}

.step-icon { margin-bottom: 20px; display: flex; justify-content: center; }

.hiw-step h3 {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.hiw-step p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
}

/* ——— FEATURED DROP ——— */
.featured-drop {
  padding: 100px 48px;
  background: var(--cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.fd-inner { max-width: 1100px; margin: 0 auto; }

.fd-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 56px;
}

.fd-tag {
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  padding: 6px 16px;
  border: 1px solid var(--accent);
  border-radius: 24px;
}

.fd-count {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}

.fd-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 48px;
  margin-bottom: 40px;
}

.fd-product {
  background: var(--bg);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.fd-product-img {
  padding: 40px 40px 20px;
  background: linear-gradient(160deg, #F8F3EC 0%, var(--bg) 100%);
  display: flex;
  justify-content: center;
}

.fd-product-img svg { width: 100%; max-width: 280px; height: auto; }

.fd-product-info { padding: 24px 32px 32px; }

.fd-cat {
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
  font-weight: 500;
}

.fd-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 8px;
}

.fd-desc {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 20px;
  font-weight: 300;
  line-height: 1.6;
}

.fd-discount {
  display: inline-block;
  padding: 8px 20px;
  background: var(--accent);
  color: white;
  border-radius: 24px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.fd-product-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.fd-product-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
}

.fd-brand {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 12px;
  font-weight: 400;
  letter-spacing: 0.03em;
}

.fd-price-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.fd-orig-price {
  font-size: 0.85rem;
  color: var(--muted);
  text-decoration: line-through;
  font-weight: 300;
}

.fd-promo-price {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--accent);
}

.fd-promo-price::before {
  content: '';
}

.fd-urgency {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}

.urgency-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: urgencyPulse 1.5s ease-in-out infinite;
}

@keyframes urgencyPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

/* ——— PHILOSOPHY ——— */
.philosophy {
  padding: 100px 48px;
  background: var(--bg);
}

.phil-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
}

.phil-col--left {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.phil-stat {}

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
  font-weight: 300;
}

.phil-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 24px;
}

.phil-accent { color: var(--accent); font-style: italic; }

.phil-body {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 16px;
  font-weight: 300;
}

.phil-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 32px 0;
}

.divider-line { flex: 1; height: 1px; background: var(--border); }
.divider-diamond { font-size: 0.6rem; color: var(--accent); }

.phil-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--fg);
  font-weight: 400;
}

/* ——— CLOSING ——— */
.closing {
  padding: 100px 48px;
  background: var(--fg);
  color: var(--cream);
}

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

.closing-visual {
  width: 280px;
  margin: 0 auto 48px;
}

.closing-visual svg { width: 100%; height: auto; }

.closing-overline {
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 20px;
}

.closing-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 24px;
}

.closing-headline em {
  font-style: italic;
  color: var(--accent-light);
}

.closing-body {
  font-size: 1rem;
  color: rgba(253,249,244,0.55);
  font-weight: 300;
  line-height: 1.7;
}

/* ——— FOOTER ——— */
.footer {
  padding: 60px 48px 32px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  margin-bottom: 48px;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

.footer-desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.footer-col-title {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg);
  margin-bottom: 12px;
  font-weight: 500;
}

.footer-col p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
}

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 300;
}

/* ——— RESPONSIVE ——— */
@media (max-width: 900px) {
  .topnav { padding: 20px 24px; }
  .hero { padding: 100px 24px 60px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .hero-text-block { max-width: 100%; }
  .hero-headline { font-size: 5rem; }
  .badge-row { justify-content: center; }
  .hero-visual { display: none; }
  .hero::before { display: none; }
  .hiw-steps { grid-template-columns: 1fr; gap: 40px; }
  .fd-grid { grid-template-columns: 1fr; }
  .phil-inner { grid-template-columns: 1fr; gap: 48px; }
  .phil-col--left { flex-direction: row; flex-wrap: wrap; }
  .phil-stat { min-width: 160px; }
  .manifesto { padding: 72px 24px; }
  .howitworks { padding: 72px 24px; }
  .featured-drop { padding: 72px 24px; }
  .philosophy { padding: 72px 24px; }
  .closing { padding: 72px 24px; }
  .footer { padding: 48px 24px 24px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 500px) {
  .hero-headline { font-size: 3.5rem; }
  .fd-header { flex-direction: column; gap: 12px; align-items: flex-start; }
  .phil-stat { min-width: 100%; }
}
