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

:root {
  --cream:       #F0EBE0;
  --cream-dark:  #E5DDD0;
  --charcoal:    #1A1612;
  --charcoal-60: rgba(26,22,18,0.6);
  --charcoal-30: rgba(26,22,18,0.3);
  --charcoal-10: rgba(26,22,18,0.1);
  --amber:       #A07830;
  --amber-light: rgba(160,120,48,0.2);
  --white-60:    rgba(240,235,224,0.6);
  --white-90:    rgba(240,235,224,0.9);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Inter', system-ui, sans-serif;
}

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

body {
  background: var(--cream);
  color: var(--charcoal);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 48px;
  transition: background 0.4s, padding 0.4s;
}
.nav.scrolled {
  background: rgba(240,235,224,0.96);
  backdrop-filter: blur(12px);
  padding: 18px 48px;
  border-bottom: 1px solid var(--charcoal-10);
}
.nav-brand {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--white-90);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.4s;
}
.nav.scrolled .nav-brand { color: var(--charcoal); }
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-60);
  text-decoration: none;
  transition: color 0.3s;
}
.nav.scrolled .nav-links a { color: var(--charcoal-60); }
.nav-links a:hover,
.nav.scrolled .nav-links a:hover { color: var(--charcoal); }
.nav-links .nav-cta {
  color: var(--white-90);
  border-bottom: 1px solid rgba(240,235,224,0.4);
  padding-bottom: 2px;
}
.nav.scrolled .nav-links .nav-cta {
  color: var(--amber);
  border-bottom-color: var(--amber);
}

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.04);
  transition: transform 8s ease;
  filter: saturate(0.55) brightness(0.85);
}
.hero:hover .hero-bg { transform: scale(1.0); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26,22,18,0.1) 0%,
    rgba(26,22,18,0.0) 40%,
    rgba(26,22,18,0.55) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 48px 80px;
  max-width: 800px;
}
.hero-sub {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white-60);
  margin-bottom: 20px;
}
.hero-tagline {
  font-family: var(--serif);
  font-size: clamp(42px, 7vw, 88px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 36px;
  letter-spacing: -0.01em;
}
.hero-tagline em {
  font-style: italic;
  font-weight: 300;
}
.hero-btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  border: 1px solid rgba(240,235,224,0.5);
  padding: 14px 32px;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.hero-btn:hover {
  background: var(--cream);
  color: var(--charcoal);
  border-color: var(--cream);
}
.hero-scroll {
  position: absolute;
  bottom: 36px;
  right: 48px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0.5;
}
.hero-scroll span {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  writing-mode: vertical-rl;
}
.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: var(--cream);
  transform-origin: top;
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); opacity: 1; }
  50%  { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(1); opacity: 0; }
}

/* ── STATEMENT ── */
.statement {
  padding: 100px 48px;
  background: var(--cream);
}
.statement-inner {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  text-align: center;
}
.statement-rule {
  width: 48px;
  height: 1px;
  background: var(--amber);
}
.statement-text {
  font-family: var(--serif);
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 300;
  line-height: 1.7;
  color: var(--charcoal);
  letter-spacing: 0.01em;
}

/* ── SECTION LABEL ── */
.section-label {
  display: block;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}

/* ── PRODUCTS ── */
.products {
  background: var(--cream-dark);
  padding: 100px 48px;
}
.products-header {
  max-width: 1200px;
  margin: 0 auto 64px;
}
.products-header h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.product-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--charcoal-10);
  border: 1px solid var(--charcoal-10);
}
.product-card {
  background: var(--cream);
  display: flex;
  flex-direction: column;
  transition: background 0.2s;
}
.product-card:hover { background: var(--cream-dark); }
.product-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.product-landscape {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: saturate(0.5) brightness(0.9);
  transition: filter 0.5s, transform 0.6s;
}
.product-landscape--recover {
  background-image: url('bag_recover.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter: none;
}
.product-landscape--focus {
  background-image: url('bag_focus.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter: none;
}
.product-card:hover .product-landscape {
  filter: saturate(0.65) brightness(0.95);
  transform: scale(1.03);
}
.product-img-label {
  position: absolute;
  bottom: 12px;
  right: 14px;
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(240,235,224,0.7);
}
.product-info {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.product-name {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--charcoal);
  letter-spacing: 0.02em;
}
.product-name span {
  font-weight: 300;
  color: var(--charcoal-60);
}
.product-weight {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--charcoal-60);
}
.product-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--charcoal-60);
}
.product-status {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
}
.product-formula {
  margin-top: 8px;
  border-top: 1px solid var(--charcoal-10);
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.formula-row {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--charcoal);
  font-family: var(--sans);
}
.formula-row.formula-sub {
  color: var(--charcoal-60);
  font-size: 11px;
  margin-top: -3px;
  padding-left: 12px;
  justify-content: flex-start;
}

/* ── FORMULA PRINCIPLES ── */
.formula-section {
  padding: 100px 48px;
  background: var(--cream);
}
.formula-inner {
  max-width: 1000px;
  margin: 0 auto;
}
.formula-inner h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 64px;
  letter-spacing: -0.01em;
}
.formula-principles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--charcoal-10);
  border: 1px solid var(--charcoal-10);
}
.fp {
  padding: 44px;
  background: var(--cream);
  transition: background 0.2s;
}
.fp:hover { background: var(--cream-dark); }
.fp-num {
  display: block;
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 0.15em;
  color: var(--amber);
  margin-bottom: 18px;
}
.fp h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 12px;
  line-height: 1.3;
}
.fp p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--charcoal-60);
}

/* ── PACKAGING ── */
.packaging-section {
  background: var(--cream-dark);
  padding: 100px 48px;
}
.packaging-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.packaging-text h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 300;
  line-height: 1.25;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}
.packaging-text p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--charcoal-60);
  margin-bottom: 16px;
}
.packaging-sizes {
  list-style: none;
  margin-top: 32px;
  border-top: 1px solid var(--charcoal-10);
}
.packaging-sizes li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--charcoal-10);
  font-size: 14px;
}
.packaging-sizes li span:first-child {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
}
.packaging-sizes li span:last-child {
  color: var(--charcoal-60);
  font-size: 12px;
  letter-spacing: 0.05em;
}
.packaging-img {
  position: relative;
}
.packaging-img img {
  width: 100%;
  object-fit: cover;
  filter: saturate(0.6);
}

/* ── WAITLIST ── */
.waitlist-section {
  padding: 120px 48px;
  background: var(--charcoal);
  text-align: center;
}
.waitlist-inner {
  max-width: 560px;
  margin: 0 auto;
}
.waitlist-section .section-label { color: var(--amber); }
.waitlist-inner h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.waitlist-inner > p {
  font-size: 15px;
  color: rgba(240,235,224,0.55);
  line-height: 1.7;
  margin-bottom: 40px;
}
.waitlist-form {
  display: flex;
  border: 1px solid rgba(240,235,224,0.2);
  overflow: hidden;
  transition: border-color 0.2s;
}
.waitlist-form:focus-within { border-color: var(--amber); }
.waitlist-form input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 16px 22px;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--cream);
}
.waitlist-form input::placeholder { color: rgba(240,235,224,0.3); }
.waitlist-form button {
  background: var(--amber);
  color: var(--cream);
  border: none;
  padding: 16px 28px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.2s;
}
.waitlist-form button:hover { opacity: 0.8; }
.waitlist-msg {
  margin-top: 16px;
  font-size: 13px;
  min-height: 20px;
  color: var(--amber);
}
.waitlist-note {
  margin-top: 20px;
  font-size: 12px;
  color: rgba(240,235,224,0.3);
  letter-spacing: 0.03em;
}

/* ── FOOTER ── */
.footer {
  background: var(--charcoal);
  padding: 0 48px 48px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 0;
}
.footer-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-brand {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--cream);
  opacity: 0.7;
}
.footer-parent {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(240,235,224,0.3);
}
.footer-right {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
}
.footer-right a {
  color: rgba(240,235,224,0.35);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-right a:hover { color: var(--cream); }
.footer-right span { color: rgba(240,235,224,0.15); }
.footer-rule {
  max-width: 1100px;
  margin: 0 auto;
  height: 1px;
  background: rgba(240,235,224,0.08);
}
.footer-manifesto {
  max-width: 1100px;
  margin: 24px auto 0;
  font-family: var(--serif);
  font-size: 13px;
  font-style: italic;
  color: rgba(240,235,224,0.2);
  letter-spacing: 0.05em;
}

/* ── ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav { padding: 20px 24px; }
  .nav.scrolled { padding: 14px 24px; }
  .nav-links { gap: 20px; }
  .hero-content { padding: 0 24px 60px; }
  .hero-scroll { right: 24px; }
  .statement, .products, .formula-section,
  .packaging-section, .waitlist-section { padding: 72px 24px; }
  .product-grid { grid-template-columns: 1fr; }
  .formula-principles { grid-template-columns: 1fr; }
  .packaging-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer { padding: 0 24px 36px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
}
@media (max-width: 560px) {
  .nav-links li:not(:last-child) { display: none; }
}

/* ── HERO PILLS ── */
.hero-pills {
  display: flex;
  gap: 12px;
  margin-bottom: 28px;
}
.hero-pill {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-60);
  text-decoration: none;
  border: 1px solid rgba(240,235,224,0.25);
  padding: 8px 18px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.hero-pill:hover {
  background: rgba(240,235,224,0.15);
  color: var(--cream);
  border-color: rgba(240,235,224,0.5);
}

/* ── WEAR SECTION ── */
.wear-section {
  background: var(--cream);
  padding: 100px 48px;
}
.wear-header {
  max-width: 1200px;
  margin: 0 auto 64px;
}
.wear-header h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}
.wear-intro {
  font-size: 15px;
  color: var(--charcoal-60);
  line-height: 1.7;
  max-width: 520px;
}
.wear-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--charcoal-10);
  border: 1px solid var(--charcoal-10);
}
.wear-card {
  background: var(--cream);
  display: flex;
  flex-direction: column;
  transition: background 0.2s;
}
.wear-card:hover { background: var(--cream-dark); }
.wear-img {
  aspect-ratio: 3/4;
  background-size: cover;
  background-position: center;
  filter: saturate(0.45) brightness(0.88);
  transition: filter 0.5s, transform 0.6s ease;
}
.wear-card:hover .wear-img {
  filter: saturate(0.6) brightness(0.95);
  transform: scale(1.02);
}
/* Placeholder gradients for wear until real photography */
.wear-img--hoodie {
  background: linear-gradient(160deg, #8a9a8a 0%, #6a7a72 40%, #4a5a52 100%);
}
.wear-img--base {
  background: linear-gradient(160deg, #7a8a9a 0%, #5a6a7a 40%, #3a4a5a 100%);
}
.wear-img--shell {
  background: linear-gradient(160deg, #9a9a8a 0%, #7a7a6a 40%, #5a5a4a 100%);
}
.wear-info {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.wear-name {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--charcoal);
}
.wear-name span {
  font-weight: 300;
  color: var(--charcoal-60);
}
.wear-status {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--charcoal-30);
}
.wear-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--charcoal-60);
}
.wear-spec {
  margin-top: 8px;
  border-top: 1px solid var(--charcoal-10);
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.spec-row {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--charcoal);
}
.spec-row span:first-child { color: var(--charcoal-60); }

@media (max-width: 900px) {
  .wear-section { padding: 72px 24px; }
  .wear-grid { grid-template-columns: 1fr; }
}
