/* =================================================================================================
   DON QUIJOTE BOOTS  ·  LANDING
   Editorial · Cinematic · Heritage
   ================================================================================================= */

/* ─── Tokens ─────────────────────────────────────────────────────────────────────────────────── */
:root {
  /* Brand palette (anchored to moodboard) */
  --c-ink:        #0F0A07;   /* near-black background */
  --c-ink-2:      #15100C;   /* card surface */
  --c-ink-3:      #1C1612;
  --c-bourbon:    #3F2A20;   /* deep mahogany */
  --c-leather:    #6E4A2E;   /* mid leather */
  --c-tan:        #9C7553;   /* tan / cuero */
  --c-mustard:    #C9962E;   /* mustard accent (use sparingly) */
  --c-sisal:      #D9D2C7;   /* sisal cream — primary brand light */
  --c-bone:       #EAE3D6;   /* warm cream */
  --c-paper:      #F4EFE5;
  --c-army:       #5C5722;   /* army green from brand */
  --c-blood:      #6E2A2A;   /* deep oxblood */

  /* Semantic */
  --bg:           var(--c-ink);
  --surface:      var(--c-ink-2);
  --text:         var(--c-bone);
  --text-mute:    rgba(234, 227, 214, 0.62);
  --text-faint:   rgba(234, 227, 214, 0.38);
  --line:         rgba(217, 210, 199, 0.14);
  --line-strong:  rgba(217, 210, 199, 0.28);
  --accent:       var(--c-tan);

  /* Type */
  --font-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-ui:      'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Layout */
  --container:    1280px;
  --gutter:       clamp(20px, 4vw, 56px);
  --section-y:    clamp(80px, 12vw, 160px);

  /* Easing — Emil's strong curves */
  --ease-out:     cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out:  cubic-bezier(0.77, 0, 0.175, 1);
  --ease-drawer:  cubic-bezier(0.32, 0.72, 0, 1);
}

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

html {
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-ui);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--bg);
  background-image:
    radial-gradient(ellipse 90% 60% at 50% 0%, rgba(110, 74, 46, 0.18), transparent 60%),
    radial-gradient(ellipse 80% 50% at 50% 100%, rgba(63, 42, 32, 0.20), transparent 60%);
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; height: auto; }
img { user-select: none; -webkit-user-drag: none; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
input, select, button { font-family: inherit; font-size: inherit; }


/* ─── Type primitives ──────────────────────────────────────────────────────────────────────── */
.eyebrow {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-mute);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--line);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(36px, 5.4vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--c-bone);
}
.section-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--c-sisal);
}
.section-title--center { text-align: center; }
.section-title--light { color: var(--c-ink); }
.section-title--light em { color: var(--c-bourbon); }


/* ─── Reveal animation (used by data-reveal) ───────────────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 700ms var(--ease-out),
    transform 700ms var(--ease-out);
  will-change: opacity, transform;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}


/* ============================================================================================
   NAV
   ============================================================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  padding: 16px var(--gutter);
  background: linear-gradient(180deg, rgba(15, 10, 7, 0.72) 0%, rgba(15, 10, 7, 0) 100%);
  backdrop-filter: blur(0px);
  transition:
    background 280ms var(--ease-out),
    backdrop-filter 280ms var(--ease-out),
    padding 280ms var(--ease-out),
    border-color 280ms var(--ease-out);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(15, 10, 7, 0.78);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  padding-top: 12px;
  padding-bottom: 12px;
  border-bottom-color: var(--line);
}

.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: opacity 200ms var(--ease-out);
}
.nav__mark {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
.nav__wordmark {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--c-sisal);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__links a {
  font-size: 13px;
  letter-spacing: 0.05em;
  color: var(--text-mute);
  position: relative;
  padding: 6px 0;
  transition: color 200ms var(--ease-out);
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 2px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 240ms var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .nav__links a:hover { color: var(--c-sisal); }
  .nav__links a:hover::after { transform: scaleX(1); }
}
.nav__cta {
  padding: 8px 16px !important;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--c-sisal) !important;
}
.nav__cta::after { display: none; }
@media (hover: hover) and (pointer: fine) {
  .nav__cta:hover {
    background: var(--c-sisal);
    color: var(--c-ink) !important;
    border-color: var(--c-sisal);
  }
}

@media (max-width: 720px) {
  .nav__links li:nth-child(1),
  .nav__links li:nth-child(2),
  .nav__links li:nth-child(3) { display: none; }
}


/* ============================================================================================
   HERO
   ============================================================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  padding: clamp(120px, 18vh, 180px) var(--gutter) clamp(60px, 10vh, 100px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  isolation: isolate;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: brightness(0.62) contrast(1.05) saturate(0.92);
  transform: scale(1.04);
  animation: heroPan 24s var(--ease-in-out) infinite alternate;
}
@keyframes heroPan {
  from { transform: scale(1.04) translateY(0); }
  to   { transform: scale(1.10) translateY(-2%); }
}

.hero__vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 10, 7, 0.55) 0%, rgba(15, 10, 7, 0.10) 30%, rgba(15, 10, 7, 0.10) 55%, rgba(15, 10, 7, 0.95) 100%),
    radial-gradient(ellipse 70% 60% at 50% 50%, transparent 0%, rgba(15, 10, 7, 0.45) 100%);
}

.hero__overline {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--c-tan);
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 900ms var(--ease-out) 200ms forwards;
}
.ornament-line {
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-tan), transparent);
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(48px, 9vw, 128px);
  line-height: 0.96;
  letter-spacing: -0.025em;
  color: var(--c-paper);
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.4);
  max-width: 14ch;
}
.hero__line {
  display: block;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 900ms var(--ease-out),
    transform 900ms var(--ease-out);
}
.hero__line:nth-child(1) { transition-delay: 280ms; }
.hero__line:nth-child(2) { transition-delay: 380ms; }
.hero__line:nth-child(3) { transition-delay: 480ms; }
.hero__line.is-visible,
.hero__line[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
.hero__line--italic {
  font-style: italic;
  font-weight: 400;
  color: var(--c-sisal);
}

.hero__sub {
  max-width: 56ch;
  margin-top: 28px;
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.65;
  color: rgba(234, 227, 214, 0.78);
  transition-delay: 580ms !important;
}

.hero__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 40px;
  transition-delay: 680ms !important;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-faint);
  opacity: 0;
  animation: fadeUp 900ms var(--ease-out) 1100ms forwards;
}
.hero__scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, transparent, var(--c-tan));
  animation: scrollPulse 2.4s var(--ease-in-out) infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(0.4); transform-origin: top; opacity: 0.5; }
  50%      { transform: scaleY(1);   transform-origin: top; opacity: 1; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeUpHero {
  from { opacity: 0; transform: translateY(12px) translateX(-50%); }
  to   { opacity: 1; transform: translateY(0)    translateX(-50%); }
}
.hero__scroll {
  animation-name: fadeUpHero;
}


/* ============================================================================================
   BUTTONS
   ============================================================================================ */
.btn {
  --btn-bg: var(--c-sisal);
  --btn-fg: var(--c-ink);
  --btn-bd: var(--c-sisal);

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1px solid var(--btn-bd);
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  transition:
    transform 160ms var(--ease-out),
    background-color 220ms var(--ease-out),
    color 220ms var(--ease-out),
    border-color 220ms var(--ease-out),
    box-shadow 220ms var(--ease-out);
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.btn:active { transform: scale(0.97); }

.btn__arrow {
  width: 16px;
  height: 16px;
  transition: transform 220ms var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .btn--primary:hover {
    background: var(--c-bone);
    border-color: var(--c-bone);
    box-shadow: 0 10px 30px -10px rgba(217, 210, 199, 0.4);
  }
  .btn--primary:hover .btn__arrow { transform: translateX(3px); }
}

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--c-sisal);
  --btn-bd: rgba(217, 210, 199, 0.32);
}
@media (hover: hover) and (pointer: fine) {
  .btn--ghost:hover {
    --btn-bd: var(--c-sisal);
    background: rgba(217, 210, 199, 0.06);
  }
}

.btn--full { width: 100%; }


/* ============================================================================================
   RIBBON / MARQUEE
   ============================================================================================ */
.ribbon {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--c-ink-2);
  overflow: hidden;
  padding: 18px 0;
}
.ribbon__track {
  display: flex;
  align-items: center;
  gap: 36px;
  white-space: nowrap;
  width: max-content;
  animation: ribbonSlide 38s linear infinite;
}
@keyframes ribbonSlide {
  to { transform: translateX(-50%); }
}
.ribbon__item {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  font-weight: 500;
  color: var(--c-sisal);
  letter-spacing: 0.01em;
}
.ribbon__sep {
  color: var(--c-tan);
  font-size: 12px;
}


/* ============================================================================================
   HERITAGE
   ============================================================================================ */
.heritage {
  padding: var(--section-y) var(--gutter);
  position: relative;
}
.heritage::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 0% 50%, rgba(110, 74, 46, 0.10), transparent 70%);
  pointer-events: none;
}

.heritage__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}

.heritage__media { position: relative; }
.heritage__figure {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 4px;
  box-shadow:
    0 30px 60px -20px rgba(0, 0, 0, 0.6),
    0 0 0 1px var(--line);
}
.heritage__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.92) contrast(1.05) saturate(0.95);
  transition: transform 1200ms var(--ease-out), filter 600ms var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .heritage__figure:hover img {
    transform: scale(1.04);
    filter: brightness(1) contrast(1.05) saturate(1);
  }
}
.heritage__figure figcaption {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-bone);
  background: linear-gradient(180deg, transparent, rgba(15, 10, 7, 0.9));
  padding: 40px 12px 8px;
  margin: 0 -16px -16px;
}

.heritage__copy {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.heritage__body p {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.55;
  color: var(--text);
  margin-bottom: 20px;
}
.heritage__body p:last-child { margin-bottom: 0; }
.heritage__body em { color: var(--c-sisal); font-style: italic; }
.heritage__pull {
  border-left: 1px solid var(--c-tan);
  padding-left: 20px;
  color: var(--c-bone) !important;
  font-style: italic;
}

.heritage__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.heritage__stats li {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.heritage__stats li:nth-child(2) { transition-delay: 100ms; }
.heritage__stats li:nth-child(3) { transition-delay: 200ms; }

.stat__num {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  color: var(--c-sisal);
  line-height: 1;
}
.stat__label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-mute);
}

@media (max-width: 880px) {
  .heritage__inner { grid-template-columns: 1fr; }
  .heritage__figure { aspect-ratio: 4 / 5; max-width: 480px; }
}


/* ============================================================================================
   CRAFT
   ============================================================================================ */
.craft {
  padding: var(--section-y) var(--gutter);
  background: var(--c-ink-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.craft__intro {
  max-width: 760px;
  margin: 0 auto clamp(60px, 8vw, 100px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.craft__lede {
  font-size: clamp(15px, 1.3vw, 17px);
  color: var(--text-mute);
  max-width: 56ch;
}
.craft__lede strong {
  color: var(--c-sisal);
  font-weight: 500;
}

.craft__grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.craft__card {
  background: var(--c-ink-3);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    transform 320ms var(--ease-out),
    border-color 320ms var(--ease-out),
    box-shadow 320ms var(--ease-out);
}
.craft__card--wide { grid-column: 1 / -1; }
.craft__card--wide { flex-direction: row; align-items: stretch; }
.craft__card--wide .craft__media { flex: 1.2; }
.craft__card--wide .craft__text  { flex: 1; padding: clamp(28px, 3vw, 48px); display: flex; flex-direction: column; justify-content: center; }

@media (hover: hover) and (pointer: fine) {
  .craft__card:hover {
    transform: translateY(-3px);
    border-color: var(--line-strong);
    box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.7);
  }
}

.craft__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--c-ink);
}
.craft__card--wide .craft__media { aspect-ratio: auto; }
.craft__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1200ms var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .craft__card:hover .craft__media img { transform: scale(1.04); }
}

.craft__text {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.craft__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  color: var(--c-tan);
  letter-spacing: 0.05em;
}
.craft__text h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.2;
  color: var(--c-bone);
  letter-spacing: -0.01em;
}
.craft__text p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-mute);
}

.craft__numbers {
  max-width: var(--container);
  margin: clamp(60px, 8vw, 90px) auto 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  padding: 36px clamp(24px, 4vw, 56px);
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--c-ink);
}
.craft__num-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  text-align: center;
}
.craft__num-value {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.6vw, 56px);
  font-weight: 500;
  line-height: 1;
  color: var(--c-sisal);
}
.craft__num-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.craft__divider {
  width: 1px;
  height: 36px;
  background: var(--line);
}

@media (max-width: 880px) {
  .craft__grid { grid-template-columns: 1fr; }
  .craft__card--wide { flex-direction: column; }
  .craft__card--wide .craft__media { aspect-ratio: 4 / 3; }
  .craft__numbers {
    grid-template-columns: 1fr 1fr;
    gap: 32px 16px;
  }
  .craft__divider { display: none; }
}


/* ============================================================================================
   COLLECTION
   ============================================================================================ */
.collection {
  padding: var(--section-y) var(--gutter);
}

.collection__head {
  max-width: var(--container);
  margin: 0 auto clamp(48px, 6vw, 72px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.collection__lede {
  max-width: 56ch;
  font-size: clamp(15px, 1.3vw, 17px);
  color: var(--text-mute);
}

.collection__grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product {
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 320ms var(--ease-out);
}

.product__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 4px;
  background: var(--c-ink-2);
  border: 1px solid var(--line);
}
.product__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 1400ms var(--ease-out),
    filter 400ms var(--ease-out);
  filter: brightness(0.94) saturate(0.95);
}
@media (hover: hover) and (pointer: fine) {
  .product:hover .product__media img {
    transform: scale(1.05);
    filter: brightness(1) saturate(1.05);
  }
}

.product__tag {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 12px;
  background: rgba(15, 10, 7, 0.78);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-sisal);
}

.product__info {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  padding-top: 4px;
}
.product__name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(20px, 1.8vw, 24px);
  color: var(--c-bone);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.product__meta {
  font-size: 12.5px;
  color: var(--text-mute);
  letter-spacing: 0.02em;
}
.product__price {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  color: var(--c-tan);
  white-space: nowrap;
}

.collection__foot {
  max-width: var(--container);
  margin: clamp(40px, 5vw, 64px) auto 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(15px, 1.3vw, 17px);
  color: var(--text-mute);
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

@media (max-width: 880px) {
  .collection__grid { grid-template-columns: 1fr; gap: 32px; max-width: 480px; }
}


/* ============================================================================================
   ANATOMY
   ============================================================================================ */
.anatomy {
  padding: var(--section-y) var(--gutter);
  background: var(--c-ink-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.anatomy__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.anatomy__copy { position: sticky; top: 100px; }
.anatomy__title {
  margin-top: 24px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.15;
  color: var(--c-bone);
  letter-spacing: -0.015em;
  max-width: 16ch;
}

.anatomy__list {
  display: flex;
  flex-direction: column;
}
.anatomy__list li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.anatomy__list li:last-child { border-bottom: none; }
.anatomy__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--c-tan);
  padding-top: 4px;
}
.anatomy__list h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(20px, 1.8vw, 24px);
  color: var(--c-bone);
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.anatomy__list p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-mute);
  max-width: 60ch;
}

@media (max-width: 880px) {
  .anatomy__inner { grid-template-columns: 1fr; }
  .anatomy__copy { position: static; }
  .anatomy__list li { grid-template-columns: 48px 1fr; gap: 16px; }
}


/* ============================================================================================
   WAITLIST
   ============================================================================================ */
.waitlist {
  padding: var(--section-y) var(--gutter);
  background: var(--c-bone);
  color: var(--c-ink);
  position: relative;
}
.waitlist::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 100% 100%, rgba(110, 74, 46, 0.10), transparent 60%);
  pointer-events: none;
}

.waitlist__inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
  position: relative;
}

.waitlist__copy { display: flex; flex-direction: column; gap: 24px; }
.waitlist__copy .eyebrow {
  color: var(--c-bourbon);
  border-color: rgba(63, 42, 32, 0.25);
}
.waitlist__sub {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.5vw, 21px);
  line-height: 1.55;
  color: var(--c-bourbon);
  max-width: 50ch;
}

.waitlist__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--c-paper);
  padding: clamp(28px, 3vw, 40px);
  border: 1px solid rgba(63, 42, 32, 0.16);
  border-radius: 6px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.6) inset,
    0 30px 60px -20px rgba(63, 42, 32, 0.24);
  position: relative;
  overflow: hidden;
}
.waitlist__form::before {
  /* hairline accent at top of card */
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--c-tan), var(--c-bourbon), var(--c-army));
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-bourbon);
  font-weight: 500;
}
.field input,
.field select {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  border: 1px solid rgba(63, 42, 32, 0.20);
  border-radius: 4px;
  background: #fff;
  color: var(--c-ink);
  font-size: 15px;
  transition:
    border-color 200ms var(--ease-out),
    box-shadow 200ms var(--ease-out),
    background-color 200ms var(--ease-out);
  appearance: none;
  -webkit-appearance: none;
}
.field input::placeholder { color: rgba(63, 42, 32, 0.42); }
.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--c-bourbon);
  box-shadow: 0 0 0 4px rgba(110, 74, 46, 0.10);
}

.select-wrap { position: relative; }
.select-wrap__chev {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--c-bourbon);
  pointer-events: none;
  transition: transform 200ms var(--ease-out);
}
.select-wrap select:focus + .select-wrap__chev {
  transform: translateY(-50%) rotate(180deg);
}

.waitlist__form .btn--primary {
  background: var(--c-bourbon);
  color: var(--c-bone);
  border-color: var(--c-bourbon);
  height: 52px;
  margin-top: 8px;
}
@media (hover: hover) and (pointer: fine) {
  .waitlist__form .btn--primary:hover {
    background: var(--c-ink);
    border-color: var(--c-ink);
    box-shadow: 0 12px 30px -10px rgba(15, 10, 7, 0.4);
  }
}

.waitlist__fineprint {
  font-size: 12px;
  color: rgba(63, 42, 32, 0.62);
  text-align: center;
  margin-top: 4px;
}

.waitlist__success {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  padding: 12px 14px;
  background: rgba(92, 87, 34, 0.12);
  border: 1px solid var(--c-army);
  border-radius: 4px;
  color: var(--c-army);
  font-size: 13px;
  font-weight: 500;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 240ms var(--ease-out), transform 240ms var(--ease-out);
}
.waitlist__success[data-show="true"] {
  opacity: 1;
  transform: translateY(0);
}
.waitlist__success svg { width: 18px; height: 18px; flex: 0 0 auto; }

@media (max-width: 880px) {
  .waitlist__inner { grid-template-columns: 1fr; }
}


/* ============================================================================================
   FOOTER
   ============================================================================================ */
.footer {
  padding: clamp(60px, 8vw, 96px) var(--gutter) 32px;
  background: var(--c-ink);
  border-top: 1px solid var(--line);
}
.footer__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: clamp(40px, 6vw, 96px);
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}

.footer__logo {
  width: 220px;
  max-width: 100%;
  margin-bottom: 16px;
}
.footer__tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  color: var(--text-mute);
  max-width: 32ch;
}

.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer__cols h5 {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-tan);
  margin-bottom: 20px;
}
.footer__cols li { margin-bottom: 10px; }
.footer__cols a {
  font-size: 14px;
  color: var(--text-mute);
  transition: color 200ms var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .footer__cols a:hover { color: var(--c-sisal); }
}

.footer__bottom {
  max-width: var(--container);
  margin: 24px auto 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: var(--text-faint);
  letter-spacing: 0.04em;
}

@media (max-width: 720px) {
  .footer__inner { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}


/* ============================================================================================
   SELECTION
   ============================================================================================ */
::selection { background: var(--c-tan); color: var(--c-ink); }

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--c-ink); }
::-webkit-scrollbar-thumb {
  background: var(--c-bourbon);
  border: 2px solid var(--c-ink);
  border-radius: 999px;
}
::-webkit-scrollbar-thumb:hover { background: var(--c-leather); }


/* ============================================================================================
   REDUCED MOTION
   ============================================================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.15s !important;
  }
  .hero__image { animation: none; transform: none; }
  .ribbon__track { animation: none; }
  .hero__scroll-line { animation: none; }
  [data-reveal] { opacity: 1; transform: none; }
  .hero__line { opacity: 1; transform: none; }
}
