/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:   #0a0908;
  --amber:   #c8922a;
  --amber-light: #e8b84b;
  --cream:   #f0e8d8;
  --graphite:#3a3028;
  --dust:    #7a6e5f;
  --amber-dim: rgba(200,146,42,0.5);
  --amber-faint: rgba(200,146,42,0.18);
  --amber-very-faint: rgba(200,146,42,0.12);
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--cream);
  font-family: 'DM Mono', monospace;
  font-weight: 300;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

/* ===== GRAIN TEXTURE ===== */
.section::before,
.hero::before,
.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  opacity: 0.04;
}

.section { position: relative; }
.hero { position: relative; }

/* ===== TYPOGRAPHY ===== */
.section-headline, h1, h2, h3.step-title, h3.colorway-name {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-style: normal;
  font-size: 22px;
  letter-spacing: 0.02em;
  color: var(--cream);
}
.logo-o { color: var(--amber); }
.logo-b, .logo-k, .logo-i, .logo-e { color: var(--cream); }

.amber { color: var(--amber); }

.section-label {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--amber-dim);
  margin-bottom: 28px;
}
.specs-label {
  margin-top: 48px;
  margin-bottom: 16px;
}

/* ===== LAYOUT ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.container-narrow {
  max-width: 700px;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: var(--amber);
  color: var(--black);
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 16px 32px;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}
.btn-primary:hover { background: var(--amber-light); }
.btn-full { width: 100%; text-align: center; padding: 18px; }

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  background: transparent;
  transition: background 0.3s ease, backdrop-filter 0.3s ease;
}
.nav.scrolled {
  background: rgba(10,9,8,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.nav-links {
  display: flex;
  gap: 40px;
}
.nav-links a {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--cream);
  opacity: 0.7;
  transition: opacity 0.3s ease;
}
.nav-links a:hover { opacity: 1; }
.nav-donate { color: var(--amber) !important; opacity: 1 !important; }
.nav-donate:hover { opacity: 0.8 !important; }
.mobile-nav-donate { color: var(--amber) !important; }

.btn-nav-cta {
  background: var(--amber);
  color: var(--black);
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 10px 20px;
  border-radius: 2px;
  transition: background 0.3s ease;
}
.btn-nav-cta:hover { background: var(--amber-light); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--cream);
  transition: all 0.3s ease;
}

/* ===== MOBILE NAV OVERLAY ===== */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transform: translateX(100%);
  transition: transform 0.4s ease;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav ul { display: flex; flex-direction: column; align-items: center; gap: 32px; }
.mobile-nav-link {
  font-family: 'DM Mono', monospace;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--cream);
}
.mobile-nav-cta { margin-top: 16px; }
.mobile-nav-close {
  position: absolute;
  top: 24px; right: 24px;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 20px;
  cursor: pointer;
  opacity: 0.7;
}

/* ===== HERO ===== */
.hero {
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10,9,8,0.9) 0%,
    rgba(10,9,8,0.72) 50%,
    rgba(10,9,8,0.35) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  padding: 0 48px;
  padding-top: 80px;
  text-align: left;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--amber-dim);
  margin-bottom: 32px;
}
.eyebrow-line {
  display: block;
  width: 32px;
  height: 1px;
  background: var(--amber-dim);
}

.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(44px, 5.2vw, 72px);
  line-height: 0.95;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  text-shadow: 0 2px 12px rgba(0,0,0,0.45);
}
.hero-headline span { display: block; white-space: nowrap; }

.hero-sub {
  font-family: 'DM Mono', monospace;
  font-size: 14px;
  color: rgba(240, 232, 216, 0.88);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 36px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.65);
}

.hero-cta-group {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}

.hero-counter {
  margin-top: 16px;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: rgba(200,146,42,0.6);
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 7px;
}
.hero-counter span {
  font-variant-numeric: tabular-nums;
}

.live-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
  flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.3; transform: scale(0.6); }
}

.hero-bottom {
  position: absolute;
  bottom: 32px;
  left: 0; right: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0 48px;
  gap: 0;
}
.hero-scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--dust);
}
.scroll-arrow {
  animation: bounce 1.6s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(5px); }
}
.hero-ships {
  margin-left: auto;
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--dust);
}
.hero-tag {
  margin-left: 32px;
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(200,146,42,0.4);
}

/* ===== HERO BADGES ===== */
.hero-badges {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.hero-badge {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.15em;
  color: var(--amber);
  border: 1px solid rgba(200,146,42,0.35);
  padding: 5px 10px;
  border-radius: 2px;
  background: rgba(200,146,42,0.06);
}

/* ===== SECTIONS ===== */
.section {
  padding: 120px 0;
  background: var(--black);
}
.dims-section, .ks-section { background: var(--graphite); }

.section-headline {
  font-size: clamp(36px, 5vw, 64px);
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 64px;
}

/* ===== ABOUT CARDS ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card {
  background: var(--graphite);
  border: 1px solid var(--amber-faint);
  border-radius: 4px;
  padding: 48px 36px;
}
.card-number {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: rgba(200,146,42,0.4);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.card-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 28px;
  color: var(--cream);
  line-height: 1.3;
  font-weight: 300;
}
.card-divider {
  height: 1px;
  background: rgba(200,146,42,0.25);
  margin: 24px 0;
}
.card-solution {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--amber);
  line-height: 1.6;
}

/* ===== FEATURES ===== */
.features-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  align-items: center;
}
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.feature {
  display: flex;
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid var(--amber-very-faint);
}
.feature-more {
  grid-column: span 2;
  border-bottom: none;
}
.feature-dot {
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
  margin-top: 4px;
}
.feature-name {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--cream);
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}
.feature-desc {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--dust);
}
.features-image img {
  width: 100%;
  filter: drop-shadow(0 0 40px rgba(200,146,42,0.25));
}

/* ===== HOW IT WORKS ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.step {
  padding: 0 40px 0 0;
  margin-right: 40px;
  border-right: 1px solid rgba(200,146,42,0.2);
  position: relative;
}
.step:last-child {
  border-right: none;
  padding-right: 0;
  margin-right: 0;
}
.step-num {
  font-family: 'DM Mono', monospace;
  font-size: 64px;
  color: rgba(200,146,42,0.1);
  line-height: 1;
  margin-bottom: 8px;
  font-weight: 400;
  position: absolute;
  top: -16px;
  left: 0;
  z-index: 0;
}
.step-title {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--cream);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
  margin-top: 40px;
}
.step-body {
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  color: var(--dust);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* ===== COLORWAYS ===== */
.colorways-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.colorway-img-wrap {
  overflow: hidden;
  border-radius: 2px;
  margin-bottom: 20px;
}
.colorway-img-wrap img {
  width: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}
.colorway:hover .colorway-img-wrap img {
  transform: scale(1.03);
}
.colorway-name {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 24px;
  color: var(--cream);
  margin-bottom: 6px;
}
.colorway-desc {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--dust);
}

/* ===== DIMENSIONS ===== */
.dims-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  margin-bottom: 64px;
}

.dims-img-wrap {
  position: relative;
}

.dims-img-wrap img {
  width: 100%;
  object-fit: contain;
  display: block;
}

/* Dimension arrows */
.dim-arrow { position: absolute; }

/* Shared horizontal line */
.dim-line {
  width: 100%;
  height: 1px;
  background: var(--amber);
  position: relative;
  display: flex;
  align-items: center;
}

/* Caps for horizontal arrows */
.dim-cap {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 0; height: 0;
}
.dim-cap.left {
  left: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-right: 6px solid var(--amber);
}
.dim-cap.right {
  right: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid var(--amber);
}

/* Vertical line */
.dim-line-v {
  flex: 1;
  width: 1px;
  background: var(--amber);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.dim-cap-v {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 0; height: 0;
}
.dim-cap-v.top {
  top: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 6px solid var(--amber);
}
.dim-cap-v.bottom {
  bottom: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 6px solid var(--amber);
}

/* Width — horizontal, below image, full span */
.dim-width {
  bottom: 44px;
  left: 8%;
  right: 8%;
}
.dim-width .dim-label {
  margin-top: 5px;
  text-align: center;
}

/* Screen width — narrower, below width arrow */
.dim-screen-width {
  bottom: 4px;
  left: 18%;
  right: 18%;
}
.dim-screen-width .dim-line { opacity: 0.6; }
.dim-screen-width .dim-label {
  margin-top: 5px;
  text-align: center;
}

/* Height — vertical, sits in right padding zone */
.dim-height {
  top: 18%;
  bottom: 26%;
  right: 8px;
  width: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

/* Depth — horizontal, below right image, centered */
.dim-depth {
  bottom: 44px;
  left: 22%;
  right: 22%;
}
.dim-depth .dim-label {
  margin-top: 5px;
  text-align: center;
}

/* Dimension labels */
.dim-label {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--amber);
  background: rgba(10,9,8,0.85);
  padding: 2px 6px;
  white-space: nowrap;
}

/* Specs table */
.specs-table {
  border-top: 1px solid var(--amber-very-faint);
}
.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--amber-very-faint);
}
.spec-key {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--dust);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.spec-val {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  color: var(--cream);
  text-align: right;
}

/* ===== KICKSTARTER ===== */
.ks-body {
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  color: rgba(240, 232, 216, 0.75);
  line-height: 1.8;
  margin-bottom: 40px;
}
.ks-donate-btn {
  display: block;
  max-width: 360px;
}
.ks-steps {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.ks-step {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--cream);
}
.ks-num {
  color: var(--amber);
  margin-right: 8px;
}
.ks-step-sep {
  color: var(--amber-dim);
  font-size: 14px;
}

/* ===== FORMS ===== */
.ks-form, .waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-input {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200,146,42,0.25);
  color: var(--cream);
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  padding: 16px 20px;
  border-radius: 2px;
  outline: none;
  transition: border-color 0.3s ease;
}
.form-input:focus { border-color: var(--amber); }
.form-input::placeholder { color: var(--dust); }

.file-label {
  display: block;
  cursor: pointer;
}
.file-label input[type="file"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.file-text {
  display: block;
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200,146,42,0.25);
  color: var(--dust);
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  padding: 16px 20px;
  border-radius: 2px;
  text-transform: uppercase;
  transition: border-color 0.3s ease, color 0.3s ease;
}
.file-label:hover .file-text {
  border-color: var(--amber);
  color: var(--amber);
}
.file-text.has-file { color: var(--cream); border-color: var(--amber); }

.form-success {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  color: var(--amber);
  text-align: center;
  padding: 24px;
  letter-spacing: 0.05em;
}
.form-error {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: #e07070;
  padding: 10px 0 2px;
  letter-spacing: 0.04em;
}
.promo-wrap {
  position: relative;
}
.promo-input {
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.promo-input::placeholder {
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.promo-hint {
  display: block;
  height: 0;
  overflow: hidden;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.06em;
  padding: 0 4px;
  transition: height 0.2s ease, padding 0.2s ease, color 0.2s ease;
}
.promo-hint.valid {
  height: 20px;
  padding: 4px 4px 0;
  color: var(--amber);
}
.promo-hint.invalid {
  height: 20px;
  padding: 4px 4px 0;
  color: #e07070;
}
.hidden { display: none !important; }

/* ===== FAQ ===== */
.faq-list { border-top: 1px solid var(--amber-faint); }
.faq-item { border-bottom: 1px solid var(--amber-faint); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 24px 0;
  text-align: left;
  color: var(--cream);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 20px;
  font-weight: 300;
  transition: color 0.3s ease;
}
.faq-q:hover { color: var(--amber); }
.faq-icon {
  color: var(--amber);
  font-size: 20px;
  font-style: normal;
  font-family: 'DM Mono', monospace;
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform 0.3s ease;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item.open .faq-a { max-height: 300px; }
.faq-a p {
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  color: var(--dust);
  line-height: 1.8;
  padding-bottom: 24px;
}

/* ===== WAITLIST ===== */
.waitlist-sub {
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  color: var(--dust);
  line-height: 1.8;
  margin-bottom: 32px;
}
.waitlist-counter {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: rgba(200,146,42,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-bottom: 32px;
  letter-spacing: 0.08em;
}
.waitlist-counter span { font-variant-numeric: tabular-nums; }

/* ===== FOOTER ===== */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(200,146,42,0.15);
  padding: 40px 0;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
}
.footer-instagram {
  display: inline-block;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--amber-dim);
  letter-spacing: 0.08em;
  margin-top: 8px;
  transition: color 0.3s ease;
}
.footer-instagram:hover { color: var(--amber); }

.footer-tagline {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--dust);
  margin-top: 8px;
}
.footer-center {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--dust);
  text-align: center;
}
.footer-right {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--amber-dim);
  text-align: right;
}

/* ===== MOBILE STICKY CTA ===== */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  background: var(--amber);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.mobile-cta a {
  display: block;
  text-align: center;
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--black);
  padding: 16px;
}
.mobile-cta.visible { transform: translateY(0); }
.mobile-cta.hide { transform: translateY(100%); }

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 300;
  background: #1e1b18;
  border-top: 1px solid rgba(200,146,42,0.2);
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.cookie-banner p {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--dust);
}
.cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.btn-cookie-accept {
  background: var(--amber);
  color: var(--black);
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 8px 16px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.btn-cookie-accept:hover { background: var(--amber-light); }
.btn-cookie-decline {
  background: transparent;
  color: var(--amber);
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 8px 16px;
  border: 1px solid var(--amber);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-cookie-decline:hover { background: rgba(200,146,42,0.08); }

/* ===== SCROLL ANIMATIONS ===== */
.section > .container,
.hero-content {
  position: relative;
  z-index: 2;
}

.animate-in {
  opacity: 0;
  transform: translateY(30px);
}
.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.animate-child {
  opacity: 0;
  transform: translateY(30px);
}
.animate-child.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .nav-links, .btn-nav-cta { display: none; }
  .hamburger { display: flex; }

  .container { padding: 0 24px; }
  .hero-content { padding: 0 24px; padding-top: 80px; }
  .hero-bottom { padding: 0 24px; }
  .nav { padding: 16px 24px; }

  .hero-overlay {
    background: linear-gradient(
      to bottom,
      rgba(10,9,8,0.55) 0%,
      rgba(10,9,8,0.82) 60%,
      rgba(10,9,8,0.92) 100%
    );
  }

  .cards-grid { grid-template-columns: 1fr; gap: 16px; }
  .features-layout { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .features-image { order: -1; max-width: 300px; margin: 0 auto; }

  .steps-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .step { border-right: none; padding-right: 0; margin-right: 0; border-bottom: 1px solid rgba(200,146,42,0.2); padding-bottom: 24px; }
  .step:last-child { border-bottom: none; }

  .colorways-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }

  .dims-images { grid-template-columns: 1fr; gap: 0; }

  .footer-inner { grid-template-columns: 1fr; gap: 16px; text-align: center; }
  .footer-right { text-align: center; }
  .footer-left { display: flex; flex-direction: column; align-items: center; }

  .mobile-cta { display: block; }

  .cookie-banner { flex-direction: column; text-align: center; }

  .ks-steps { flex-direction: column; align-items: flex-start; }
  .ks-step-sep { display: none; }
}

@media (max-width: 600px) {
  .section { padding: 80px 0; }
  .section-headline { font-size: clamp(28px, 8vw, 48px); }
  .hero-headline { font-size: clamp(36px, 9vw, 56px); white-space: normal; }
  .hero-headline span { white-space: normal; }
  .hero-sub { font-size: 13px; }
  .hero-img { object-position: 80% center; }
  .spec-row { flex-direction: column; align-items: flex-start; gap: 4px; }
  .spec-val { text-align: left; }
  .feature-more { grid-column: span 1; }
}
