/* ============================================================
   The Reset Journal — resetjournals.com
   Main Stylesheet
   © 2026 Mike Bell / Unlock Key Potential
   unlockkeypotential.com
   ============================================================ */

/* ─── CSS VARIABLES ─── */
:root {
  --bg:          #0c0b09;
  --bg2:         #111009;
  --bg3:         #161410;
  --surface:     #1a1813;
  --surface2:    #201e18;
  --border:      rgba(255,255,255,0.07);
  --border2:     rgba(255,255,255,0.12);
  --gold:        #c9a86c;
  --gold2:       #e2c98a;
  --cream:       #f0e8d8;
  --cream2:      #d4c9b3;
  --text:        #e8e0d0;
  --text-muted:  #8a8070;
  --text-dim:    #5a5448;
  --amz-orange:  #FF9900;
  --amz-dark:    #c97a00;
  --nav-h:       64px;
}

/* ─── RESET ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
ul { list-style: none; }

/* ─── NAV ─── */
nav {

  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  background: rgba(12,11,9,0.93);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-img {
  height: 30px;
  width: auto;
  filter: invert(1) brightness(0.82);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a:focus { color: var(--cream); }

.nav-cta {
  background: var(--amz-orange);
  color: #111 !important;
  padding: 10px 20px;
  border-radius: 3px;
  font-weight: 600;
  letter-spacing: 0.1em;
  border-bottom: 2px solid var(--amz-dark);
  transition: background 0.2s;
}

.nav-cta:hover,
.nav-cta:focus { background: #ffb347; color: #111 !important; }

/* ─── HERO ─── */
 /* ─── HERO ─── */
  #hero {
    min-height: 100vh;
    padding-top: var(--nav-h);
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
  }

  .hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 64px 80px 80px;
    position: relative;
    z-index: 2;
  }

  .hero-eyebrow {
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .hero-eyebrow::before {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: var(--gold);
  }

  .hero-h1 {
    font-family: 'Cormorant', serif;
    font-size: clamp(52px, 5vw, 76px);
    font-weight: 300;
    line-height: 1.08;
    color: var(--cream);
    margin-bottom: 28px;
  }

  .hero-h1 em {
    font-style: italic;
    color: var(--gold);
  }

  .hero-sub {
    font-size: 15px;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 420px;
    margin-bottom: 48px;
  }

  .hero-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
  }

  .btn-primary {
    display: inline-block;
    background: var(--gold);
    color: var(--bg);
    padding: 14px 32px;
    font-family: 'Jost', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    transition: background 0.25s, transform 0.2s;
  }

  .btn-primary:hover { background: var(--gold2); transform: translateY(-1px); }

  .btn-ghost {
    display: inline-block;
    color: var(--text-muted);
    padding: 14px 0;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: 1px solid var(--text-dim);
    transition: color 0.2s, border-color 0.2s;
  }

  .btn-ghost:hover { color: var(--cream); border-color: var(--text-muted); }

  .hero-mini-stats {
    display: flex;
    gap: 24px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
  }
  .hero-mini-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  .hms-num {
    font-family: 'Cormorant', serif;
    font-size: 28px;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
  }
  .hms-label {
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(240,232,216,0.5);
  }

  .hero-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
  }

  .stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; }

  .rating-text {
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 0.08em;
  }

  .rating-text strong { color: var(--cream); font-weight: 500; }

  .hero-right {
    position: relative;
    overflow: hidden;
  }

  .hero-bg-pattern { display: none; }

  /* ── Hero photo slider ── */
  .hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
  }
  .hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease;
  }
  .hero-slide.active { opacity: 1; }

  /* gold vignette so left edge bleeds into hero-left */
  .hero-slider::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to right,
      rgba(12,11,9,0.55) 0%,
      transparent 30%
    ), linear-gradient(
      to top,
      rgba(12,11,9,0.4) 0%,
      transparent 50%
    );
    z-index: 1;
    pointer-events: none;
  }

  /* dot indicators */
  .hero-slider-dots {
    position: absolute;
    bottom: 24px;
    right: 24px;
    display: flex;
    gap: 8px;
    z-index: 3;
  }
  .hero-slider-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    border: none;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    padding: 0;
  }
  .hero-slider-dot.active {
    background: var(--gold);
    transform: scale(1.4);
  }

  .hero-stats-grid { display: none; }

  .hero-stat {
    background: var(--bg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    text-align: center;
    transition: background 0.3s;
  }

  .hero-stat:hover { background: var(--surface); }

  .stat-num {
    font-family: 'Cormorant', serif;
    font-size: clamp(56px, 6vw, 88px);
    font-weight: 300;
    color: var(--cream);
    line-height: 1;
    margin-bottom: 8px;
  }

  .stat-unit {
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
  }

  .stat-desc {
    font-size: 12px;
    color: var(--text-dim);
    letter-spacing: 0.1em;
  }

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--bg);
  padding: 13px 28px;
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.25s, transform 0.2s;
}

.btn-primary:hover,
.btn-primary:focus { background: var(--gold2); transform: translateY(-1px); }

.btn-ghost {
  display: inline-block;
  color: var(--text-muted);
  padding: 13px 0;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid var(--text-dim);
  transition: color 0.2s, border-color 0.2s;
}

.btn-ghost:hover,
.btn-ghost:focus { color: var(--cream); border-color: var(--text-muted); }

.btn-amazon {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--amz-orange);
  color: #111111;
  padding: 13px 28px;
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 3px;
  border-bottom: 2px solid var(--amz-dark);
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}

.btn-amazon:hover,
.btn-amazon:focus { background: #ffb347; transform: translateY(-1px); color: #111; }

.btn-amazon-lg {
  font-size: 14px;
  padding: 16px 40px;
}

/* ─── MARQUEE BAR ─── */
.marquee-bar {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 13px 0;
  white-space: nowrap;
}

.marquee-inner {
  display: inline-block;
  animation: marquee 28s linear infinite;
}

.marquee-inner span {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
  padding: 0 28px;
}

.marquee-inner span.gold { color: var(--gold); padding: 0 4px; }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── AMAZON TRUST BAR ─── */
.amazon-trust-bar {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}

.trust-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.trust-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 4px 24px;
  border-right: 1px solid var(--border2);
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.trust-pill:last-child { border-right: none; }
.trust-pill .trust-icon { font-size: 13px; flex-shrink: 0; }
.trust-pill strong { color: var(--cream); font-weight: 500; }

.amz-logo {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 1;
}

.amz-logo .amz-a { color: var(--amz-orange); }
.amz-logo .amz-rest { color: var(--cream); }

/* ─── SHARED SECTION STYLES ─── */
section { padding: 120px 0; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 80px;
}

.section-label {
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-label::after {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
  flex-shrink: 0;
}

.section-title {
  font-family: 'Cormorant', serif;
  font-size: clamp(34px, 3.2vw, 50px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--cream);
}

.section-title em { font-style: italic; color: var(--gold); }

/* ─── TIMELINE ─── */
#timeline { background: var(--bg2); }

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 64px;
}

.timeline-item {
  background: var(--bg2);
  padding: 56px 48px;
  transition: background 0.3s;
}

.timeline-item:hover { background: var(--surface); }

.timeline-day {
  font-family: 'Cormorant', serif;
  font-size: 72px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  opacity: 0.4;
  margin-bottom: 16px;
}

.timeline-label {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
  display: block;
}

.timeline-headline {
  font-family: 'Cormorant', serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 16px;
  line-height: 1.3;
}

.timeline-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ─── FORMULA ─── */
#formula { background: var(--bg3); }

.formula-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 64px;
}

.formula-display {
  display: flex;
  align-items: center;
  gap: 20px;
}

.formula-el { text-align: center; }

.formula-letter {
  font-family: 'Cormorant', serif;
  font-size: clamp(72px, 7.5vw, 116px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1;
  display: block;
}

.formula-letter.gold { color: var(--gold); }

.formula-word {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 8px;
  display: block;
}

.formula-op {
  font-family: 'Cormorant', serif;
  font-size: 48px;
  font-weight: 300;
  color: var(--text-dim);
  padding-bottom: 24px;
  flex-shrink: 0;
}

.formula-text {
  padding: 40px;
  border-left: 1px solid var(--border2);
}

.formula-text p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.formula-text .pullquote {
  font-family: 'Cormorant', serif;
  font-size: 22px;
  font-style: italic;
  color: var(--cream);
  line-height: 1.5;
  border-left: 2px solid var(--gold);
  padding-left: 24px;
  margin: 32px 0;
}

/* ─── PARETO ─── */
#pareto { background: var(--bg); }

.pareto-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 64px;
}

.pareto-visual {
  position: relative;
  height: 300px;
  display: flex;
  align-items: flex-end;
  gap: 4px;
}

.pareto-bar-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  height: 100%;
  justify-content: flex-end;
  gap: 8px;
}

.pareto-bar {
  width: 100%;
  border-radius: 2px 2px 0 0;
}

.bar-results {
  background: linear-gradient(180deg, var(--gold2) 0%, var(--gold) 100%);
  height: 80%;
}

.bar-actions {
  background: linear-gradient(180deg, #4a6b4a 0%, #2d4a2d 100%);
  height: 20%;
}

.bar-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.bar-pct {
  font-family: 'Cormorant', serif;
  font-size: 30px;
  font-weight: 300;
  color: var(--cream);
}

.pareto-text h3 {
  font-family: 'Cormorant', serif;
  font-size: 34px;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 24px;
  line-height: 1.25;
}

.pareto-text p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.pareto-highlight {
  font-size: 13px;
  font-weight: 400;
  color: var(--cream);
  border: 1px solid var(--border2);
  border-left: 3px solid var(--gold);
  padding: 16px 24px;
  line-height: 1.65;
}

.pareto-quote {
  font-family: 'Cormorant', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--cream2);
  line-height: 1.7;
}

/* ─── FRAMEWORK ─── */
#framework { background: var(--bg2); }

.framework-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 64px;
}

.framework-item {
  background: var(--bg2);
  padding: 48px 32px;
  transition: background 0.3s;
}

.framework-item:hover { background: var(--surface); }

.framework-letter {
  font-family: 'Cormorant', serif;
  font-size: 60px;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 24px;
  display: block;
}

.framework-name {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.framework-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ─── FOUNDER ─── */
#founder { background: var(--surface); }

.founder-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 80px;
  align-items: start;
}

.founder-card {
  background: var(--bg);
  border: 1px solid var(--border2);
  padding: 48px 40px;
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}

.founder-initials {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant', serif;
  font-size: 26px;
  font-weight: 500;
  color: var(--bg);
  margin-bottom: 24px;
  flex-shrink: 0;
}

.founder-name {
  font-family: 'Cormorant', serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--cream);
  display: block;
  margin-bottom: 4px;
}

.founder-title {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 28px;
}

.founder-divider {
  height: 1px;
  background: var(--border);
  margin: 24px 0;
}

.founder-note {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.75;
  font-style: italic;
}

.founder-link {
  display: inline-block;
  margin-top: 24px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(201,168,108,0.3);
  padding-bottom: 2px;
  transition: border-color 0.2s;
}

.founder-link:hover,
.founder-link:focus { border-color: var(--gold); }

.founder-content h2 {
  font-family: 'Cormorant', serif;
  font-size: clamp(36px, 3.5vw, 48px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 32px;
}

.founder-content p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 24px;
  max-width: 620px;
}

.philosophy-pullquote {
  font-family: 'Cormorant', serif;
  font-size: 22px;
  font-style: italic;
  color: var(--cream);
  line-height: 1.55;
  border-left: 2px solid var(--gold);
  padding: 16px 32px;
  margin: 40px 0;
  background: rgba(201,168,108,0.04);
}

.principles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 48px;
}

.principle {
  background: var(--surface);
  padding: 36px 32px;
  transition: background 0.3s;
}

.principle:hover { background: var(--surface2); }

.principle-num {
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--gold);
  opacity: 0.6;
  display: block;
  margin-bottom: 12px;
}

.principle-title {
  font-family: 'Cormorant', serif;
  font-size: 21px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 10px;
  display: block;
}

.principle-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ─── REVIEWS ─── */
#reviews { background: var(--bg3); }

.reviews-header {
  margin-bottom: 56px;
}

.reviews-body {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  align-items: start;
}

.rating-breakdown {
  background: var(--surface);
  border: 1px solid var(--border2);
  padding: 32px 28px;
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}

.breakdown-score {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 6px;
}

.breakdown-num {
  font-family: 'Cormorant', serif;
  font-size: 56px;
  font-weight: 300;
  color: var(--cream);
  line-height: 1;
}

.breakdown-max {
  font-size: 18px;
  color: var(--text-dim);
  font-family: 'Cormorant', serif;
}

.breakdown-stars {
  color: var(--amz-orange);
  font-size: 18px;
  letter-spacing: 3px;
  margin-bottom: 4px;
  display: block;
}

.breakdown-verified {
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  display: block;
}

.breakdown-divider { height: 1px; background: var(--border); margin: 18px 0; }

.star-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 9px;
}

.star-row-label {
  font-size: 11px;
  color: var(--text-muted);
  width: 28px;
  text-align: right;
  flex-shrink: 0;
}

.star-row-bar-track {
  flex: 1;
  height: 7px;
  background: var(--surface2);
  border-radius: 4px;
  overflow: hidden;
}

.star-row-bar-fill {
  height: 100%;
  background: var(--amz-orange);
  border-radius: 4px;
}

.star-row-pct {
  font-size: 11px;
  color: var(--text-dim);
  width: 32px;
  text-align: right;
  flex-shrink: 0;
}

.breakdown-note {
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.65;
  margin-bottom: 16px;
}

.breakdown-note strong { color: var(--text-muted); }

.breakdown-amz-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  padding: 12px;
  background: var(--amz-orange);
  color: #111;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  border-radius: 3px;
  border-bottom: 2px solid var(--amz-dark);
  transition: background 0.2s;
}

.breakdown-amz-link:hover,
.breakdown-amz-link:focus { background: #ffb347; color: #111; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.review-card {
  background: var(--bg3);
  padding: 36px 32px;
  transition: background 0.3s;
}

.review-card:hover { background: var(--surface); }

.review-stars {
  color: var(--amz-orange);
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.review-edition {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 18px;
  display: block;
}

.review-text {
  font-family: 'Cormorant', serif;
  font-size: 19px;
  font-style: italic;
  color: var(--cream);
  line-height: 1.55;
  margin-bottom: 20px;
}

.review-author {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: #4a9a4a;
  margin-top: 10px;
}

/* ─── VIDEO REEL ─── */
#reel { background: var(--bg); }

.reel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 64px;
}

.reel-card {
  background: var(--bg);
  display: flex;
  flex-direction: column;
}

.reel-placeholder {
  aspect-ratio: 9 / 16;
  max-height: 420px;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
  cursor: pointer;
}

.reel-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,108,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.reel-placeholder:hover { background: var(--surface2); }

.reel-play-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(201,168,108,0.15);
  border: 1.5px solid rgba(201,168,108,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: background 0.25s, transform 0.2s;
}

.reel-placeholder:hover .reel-play-btn {
  background: rgba(201,168,108,0.28);
  transform: scale(1.06);
}

.reel-coming {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
}

.reel-hint {
  font-size: 12px;
  color: var(--text-dim);
  text-align: center;
  max-width: 160px;
  line-height: 1.6;
}

.reel-meta {
  padding: 20px 24px;
  background: var(--bg);
  border-top: 1px solid var(--border);
  flex: 1;
}

.reel-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 6px;
}

.reel-title {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.4;
}

.reel-yt-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--text-dim);
  text-transform: uppercase;
  flex-shrink: 0;
}

.reel-author {
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.08em;
  display: block;
}

.reel-add {
  cursor: pointer;
  background: var(--bg);
  transition: background 0.3s;
  text-decoration: none;
}

.reel-add:hover { background: var(--surface); }

.reel-add-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 300px;
  padding: 40px;
  text-align: center;
  gap: 12px;
  border: 1.5px dashed var(--border2);
  margin: 24px;
  border-radius: 2px;
  transition: border-color 0.3s;
}

.reel-add:hover .reel-add-inner { border-color: var(--gold); }

.reel-add-icon {
  font-family: 'Cormorant', serif;
  font-size: 40px;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.5;
  line-height: 1;
  transition: opacity 0.3s;
}

.reel-add:hover .reel-add-icon { opacity: 0.9; }

.reel-add-title {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

.reel-add-desc {
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.65;
  max-width: 180px;
}

/* ─── EDITIONS ─── */
#editions { background: var(--bg); }

.editions-intro {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 16px;
  line-height: 1.65;
}

.editions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 56px;
}

.edition-card {
  background: var(--bg);
  padding: 36px 28px;
  text-decoration: none;
  display: block;
  transition: background 0.3s;
  position: relative;
  overflow: hidden;
}

.edition-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  opacity: 0;
  transition: opacity 0.3s;
}

.edition-card:hover { background: var(--surface); }
.edition-card:hover::before { opacity: 1; }

.ed-blackout::before  { background: #2a2a2a; }
.ed-gastor::before    { background: #2d5a2d; }
.ed-fennel::before    { background: #4a7a4a; }
.ed-bitter::before    { background: #6b4a28; }
.ed-desert::before    { background: #c4a882; }
.ed-crimson::before   { background: #7a1a1a; }
.ed-opal::before      { background: #1a4a7a; }
.ed-carbon::before    { background: #4a4a4a; }

.edition-swatch {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  margin-bottom: 18px;
  border: 2px solid rgba(255,255,255,0.1);
}

.ed-swatch-blackout { background: #1c1c1c; }
.ed-swatch-gastor   { background: #2d5a2d; }
.ed-swatch-fennel   { background: #4a7a4a; }
.ed-swatch-bitter   { background: #8b5a30; }
.ed-swatch-desert   { background: #d4b896; }
.ed-swatch-crimson  { background: #8b1a1a; }
.ed-swatch-opal     { background: #1a5490; }
.ed-swatch-carbon   { background: #5a5a5a; }

.edition-tag {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 4px;
}

.edition-name {
  font-family: 'Cormorant', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--cream);
  display: block;
  margin-bottom: 6px;
}

.edition-mood {
  font-size: 12px;
  color: var(--text-muted);
  font-style: italic;
  display: block;
  margin-bottom: 14px;
}

.edition-meta {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--text-dim);
}

.edition-popular {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--gold);
  color: var(--bg);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 600;
}

/* ─── FAQ ─── */
#faq { background: var(--bg2); }

.faq-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 80px;
  margin-top: 64px;
}

.faq-intro {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}

.faq-intro h2 {
  font-family: 'Cormorant', serif;
  font-size: 38px;
  font-weight: 300;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 16px;
}

.faq-intro p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.faq-list { display: flex; flex-direction: column; }

.faq-item { border-bottom: 1px solid var(--border); }

.faq-q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  padding: 26px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--cream);
  font-family: 'Cormorant', serif;
  font-size: 21px;
  font-weight: 400;
  line-height: 1.3;
  transition: color 0.2s;
}

.faq-q:hover,
.faq-q:focus { color: var(--gold); outline: none; }

.faq-icon {
  width: 22px;
  height: 22px;
  border: 1px solid var(--border2);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--gold);
  transition: transform 0.3s, background 0.3s;
  line-height: 1;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: rgba(201,168,108,0.1);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
}

.faq-item.open .faq-a {
  max-height: 400px;
  padding-bottom: 28px;
}

/* ─── WHY AMAZON ─── */
#why-amazon {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 0;
}

.why-amazon-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 80px;
}

.why-amazon-label {
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--amz-orange);
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.why-amazon-label::after {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--amz-orange);
  opacity: 0.4;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.why-item {
  background: var(--surface);
  padding: 36px 32px;
  transition: background 0.3s;
}

.why-item:hover { background: var(--surface2); }

.why-icon {
  font-size: 26px;
  margin-bottom: 16px;
  display: block;
  line-height: 1;
}

.why-title {
  font-family: 'Cormorant', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--cream);
  display: block;
  margin-bottom: 8px;
  line-height: 1.3;
}

.why-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

.why-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 14px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amz-orange);
  font-weight: 500;
}

/* ─── PUBLICATION DETAILS ─── */
.pub-details {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  border: 1px solid var(--border);
  margin-top: 48px;
}

.pub-item {
  flex: 1;
  min-width: 100px;
  padding: 20px 24px;
  border-right: 1px solid var(--border);
  text-align: center;
}

.pub-item:last-child { border-right: none; }

.pub-label {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-dim);
  display: block;
  margin-bottom: 5px;
}

.pub-value {
  font-size: 13px;
  color: var(--cream);
  font-weight: 400;
  letter-spacing: 0.05em;
}

/* ─── IMPACT IMAGE ─── */
#impact {
  position: relative;
  overflow: hidden;
  max-height: 90vh;
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 0;
}

.impact-img {
  width: 100%;
  max-height: 90vh;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: brightness(0.90);
}

.impact-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(12,11,9,0.55) 0%,
    transparent 35%,
    transparent 65%,
    rgba(12,11,9,0.65) 100%
  );
  pointer-events: none;
}

.impact-overlay-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 160px;
  background: linear-gradient(to top, var(--bg) 0%, transparent 100%);
  pointer-events: none;
}

.impact-cta {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 10;
}

/* ─── CTA SECTION ─── */
#cta {
  background: var(--bg3);
  border-top: 1px solid var(--border);
  text-align: center;
  padding: 140px 0;
}

#cta .section-label { justify-content: center; }
#cta .section-label::after { display: none; }
#cta .section-label::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.cta-title {
  font-family: 'Cormorant', serif;
  font-size: clamp(44px, 4.8vw, 76px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 20px;
}

.cta-title em { font-style: italic; color: var(--gold); }

.cta-sub {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 48px;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
}

.cta-detail {
  margin-top: 24px;
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--text-dim);
}

/* ─── FOOTER ─── */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 0;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border-bottom: 1px solid var(--border);
}

.footer-col {
  background: var(--bg);
  padding: 48px 40px;
}

.footer-col-label {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 20px;
}

.footer-col h3 {
  font-family: 'Cormorant', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 12px;
}

.footer-col p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer-col-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col-links a {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

.footer-col-links a:hover,
.footer-col-links a:focus { color: var(--cream); }

.footer-col-links a.external::after {
  content: ' ↗';
  font-size: 10px;
  opacity: 0.5;
}

.footer-logo-large {
  font-family: 'Cormorant', serif;
  font-size: 28px;
  font-weight: 300;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 12px;
  display: block;
}

.footer-logo-large span { color: var(--gold); }

.footer-ukp-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(201,168,108,0.3);
  padding-bottom: 2px;
  transition: border-color 0.2s;
}

.footer-ukp-link:hover,
.footer-ukp-link:focus { border-color: var(--gold); }

.footer-bottom {
  padding: 20px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.06em;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 11px;
  color: var(--text-dim);
  text-decoration: none;
  letter-spacing: 0.08em;
  transition: color 0.2s;
}

.footer-legal a:hover,
.footer-legal a:focus { color: var(--text-muted); }

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  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; }

/* ─── RESPONSIVE: 1200px ─── */
@media (max-width: 1200px) {
  .container { padding: 0 48px; }
  .trust-bar-inner { padding: 0 48px; }
  .why-amazon-inner { padding: 0 48px; }
  nav { padding: 0 32px; }
  .footer-bottom { padding: 20px 48px; }
}

/* ─── RESPONSIVE: 960px ─── */
@media (max-width: 960px) {
  section { padding: 80px 0; }
  .container { padding: 0 32px; }
  .trust-bar-inner { padding: 0 32px; }
  .why-amazon-inner { padding: 0 32px; }
  nav { padding: 0 24px; }
  .footer-bottom { padding: 20px 32px; }

  .nav-links { gap: 20px; }
  .nav-links li:nth-child(n+4):not(:last-child) { display: none; }

  #hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 80px 32px 56px; }
  .hero-right { min-height: 56vw; }
  .hero-stats-grid { grid-template-columns: repeat(4, 1fr); }
  .hero-stat { padding: 36px 16px; }

  .formula-layout { grid-template-columns: 1fr; gap: 40px; }
  .formula-text { border-left: none; border-top: 1px solid var(--border2); padding: 36px 0 0; }

  .pareto-layout { grid-template-columns: 1fr; gap: 48px; }

  .timeline-grid { grid-template-columns: 1fr; }

  .framework-grid { grid-template-columns: repeat(3, 1fr); }

  .founder-layout { grid-template-columns: 1fr; gap: 48px; }
  .founder-card { position: relative; top: 0; }

  .faq-layout { grid-template-columns: 1fr; gap: 40px; }
  .faq-intro { position: relative; top: 0; }

  .editions-grid { grid-template-columns: repeat(2, 1fr); }

  .reviews-body { grid-template-columns: 1fr; gap: 40px; }
  .rating-breakdown { position: relative; top: 0; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }

  .why-grid { grid-template-columns: 1fr 1fr; }

  .principles-grid { grid-template-columns: 1fr; }

  .footer-main { grid-template-columns: 1fr 1fr; }
  .reel-grid { grid-template-columns: 1fr; }

  .pub-details { flex-wrap: wrap; }
  .pub-item { min-width: 25%; }

  .trust-pill { padding: 4px 14px; font-size: 11px; }
  .trust-pill:nth-child(n+5) { display: none; }
}

/* ─── RESPONSIVE: 640px ─── */
@media (max-width: 640px) {
  section { padding: 60px 0; }
  .container { padding: 0 20px; }
  .trust-bar-inner { padding: 0 20px; }
  .why-amazon-inner { padding: 0 20px; }
  nav { padding: 0 20px; }
  .footer-bottom { padding: 16px 20px; flex-direction: column; align-items: flex-start; gap: 12px; }

  .nav-links { display: none; }

  .hero-left { padding: 70px 20px 48px; }
  .hero-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stat { padding: 32px 16px; }

  .framework-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .editions-grid { grid-template-columns: 1fr 1fr; }
  .timeline-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; }

  .formula-display { gap: 8px; }
  .formula-letter { font-size: 56px; }
  .formula-op { font-size: 32px; }

  .trust-pill:nth-child(n+3) { display: none; }

  .pub-details { display: grid; grid-template-columns: 1fr 1fr; }
  .pub-item { border-right: none; border-bottom: 1px solid var(--border); }
  .pub-item:last-child { border-bottom: none; }

  .impact-cta { bottom: 24px; }
  #cta { padding: 80px 0; }
}


/* ============================================================
   LIFESTYLE SLIDER
   ============================================================ */

.slider-section {
  padding: 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.slider-outer {
  position: relative;
  width: 100%;
  height: 82vh;
  min-height: 520px;
  max-height: 860px;
  overflow: hidden;
  background: var(--bg2);
  user-select: none;
}

/* ── Track & Slides ── */
.slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.75s cubic-bezier(0.77, 0, 0.175, 1);
  will-change: transform;
}

.slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.slide-img-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.04);
  transition: transform 8s ease-out;
  filter: brightness(0.72) saturate(0.85);
}

/* Ken Burns effect on active slide */
.slide.active .slide-img {
  transform: scale(1.0);
}

/* Fallback gradient when image fails to load */
.slide-img-fallback {
  background: linear-gradient(
    135deg,
    var(--surface2) 0%,
    var(--bg3) 40%,
    #1c1810 100%
  );
}

.slide-img-fallback .slide-img {
  display: none;
}

/* Overlay */
.slide-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top,  rgba(12,11,9,0.85) 0%, rgba(12,11,9,0.1) 50%, transparent 100%),
    linear-gradient(to right, rgba(12,11,9,0.45) 0%, transparent 55%);
  pointer-events: none;
}

/* ── Caption ── */
.slide-caption {
  position: absolute;
  bottom: 100px;
  left: 80px;
  max-width: 560px;
  z-index: 10;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease 0.35s, transform 0.55s ease 0.35s;
}

.slide.active .slide-caption {
  opacity: 1;
  transform: translateY(0);
}

.slide-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,108,0.35);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
  background: rgba(12,11,9,0.5);
  backdrop-filter: blur(4px);
}

.slide-quote {
  font-family: 'Cormorant', serif;
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  line-height: 1.3;
  text-shadow: 0 2px 24px rgba(0,0,0,0.6);
}

/* ── Prev / Next Arrows ── */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(12,11,9,0.55);
  backdrop-filter: blur(8px);
  color: var(--cream);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, border-color 0.25s, transform 0.2s;
}

.slider-btn:hover,
.slider-btn:focus {
  background: rgba(201,168,108,0.2);
  border-color: rgba(201,168,108,0.5);
  outline: none;
  transform: translateY(-50%) scale(1.08);
}

.slider-prev { left: 32px; }
.slider-next { right: 32px; }

/* ── Dot Indicators ── */
.slider-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 20;
}

.slider-dot {
  width: 28px;
  height: 3px;
  border: none;
  border-radius: 2px;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  transition: background 0.3s, width 0.35s;
  padding: 0;
}

.slider-dot.active {
  background: var(--gold);
  width: 48px;
}

.slider-dot:hover { background: rgba(255,255,255,0.5); }

/* ── Progress bar ── */
.slider-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255,255,255,0.08);
  z-index: 20;
}

.slider-progress-fill {
  height: 100%;
  background: var(--gold);
  width: 0%;
  transition: width linear;
}

/* ── Slide counter ── */
.slider-counter {
  position: absolute;
  top: 32px;
  right: 80px;
  z-index: 20;
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em;
}

#sliderCurrent {
  font-family: 'Cormorant', serif;
  font-size: 28px;
  font-weight: 300;
  color: var(--cream);
  line-height: 1;
}

.slider-counter-sep {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
}

.slider-counter-total {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

/* ── Bottom CTA bar ── */
.slider-cta-bar {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 28px;
  background: rgba(12,11,9,0.75);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.slider-cta-text {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.slider-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--amz-orange);
  color: #111;
  padding: 9px 18px;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 3px;
  border-bottom: 2px solid var(--amz-dark);
  white-space: nowrap;
  transition: background 0.2s;
}

.slider-cta-btn:hover,
.slider-cta-btn:focus { background: #ffb347; color: #111; }

/* ── Touch/swipe hint ── */
.slider-outer::after {
  content: 'swipe';
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  z-index: 5;
  pointer-events: none;
}

@media (min-width: 640px) {
  .slider-outer::after { display: none; }
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .slider-outer { height: 70vh; min-height: 400px; }
  .slide-caption { left: 32px; bottom: 90px; max-width: 80vw; }
  .slider-counter { right: 32px; }
  .slider-prev { left: 16px; }
  .slider-next { right: 16px; }
  .slider-cta-bar { padding: 12px 16px; gap: 10px; }
  .slider-cta-text { display: none; }
}

@media (max-width: 640px) {
  .slider-outer { height: 60vh; min-height: 320px; max-height: 480px; }
  .slide-caption { left: 20px; right: 20px; bottom: 80px; }
  .slide-quote { font-size: 22px; }
  .slider-btn { width: 40px; height: 40px; }
  .slider-prev { left: 10px; }
  .slider-next { right: 10px; }
  .slider-counter { top: 20px; right: 20px; }
  #sliderCurrent { font-size: 22px; }
}


/* ─── LIFESTYLE SLIDER ─── */
#slider {
  background: var(--bg);
  padding: 120px 0;
  overflow: hidden;
}

#slider .section-label { margin-bottom: 20px; }

.slider-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
  padding: 0 80px;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.slider-header-left { flex: 1; }

.slider-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  padding-bottom: 6px;
}

.slider-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border2);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  flex-shrink: 0;
}

.slider-btn:hover,
.slider-btn:focus {
  border-color: var(--gold);
  background: rgba(201,168,108,0.08);
  color: var(--gold);
  outline: none;
}

.slider-btn svg { pointer-events: none; }

.slider-count {
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--text-dim);
  min-width: 48px;
  text-align: center;
}

.slider-count span { color: var(--gold); font-weight: 500; }

/* Track */
.slider-track-wrap {
  position: relative;
  overflow: hidden;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}

.slider-track-wrap:active { cursor: grabbing; }

.slider-track {
  display: flex;
  gap: 20px;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
  padding: 0 80px;
}

/* Slide */
.slide {
  flex-shrink: 0;
  width: calc(50% - 50px);
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

.slide:first-child { margin-left: 0; }

.slide-img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--surface);
  position: relative;
}

.slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.7s ease, filter 0.4s;
  filter: grayscale(20%) brightness(0.88);
}

.slide:hover .slide-img {
  transform: scale(1.035);
  filter: grayscale(0%) brightness(0.95);
}

.slide-caption {
  padding: 22px 0 8px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.slide-caption-left { flex: 1; }

.slide-tag {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 6px;
}

.slide-title {
  font-family: 'Cormorant', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.3;
  display: block;
}

.slide-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-top: 6px;
  display: block;
}

.slide-num {
  font-family: 'Cormorant', serif;
  font-size: 32px;
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1;
  flex-shrink: 0;
  padding-top: 4px;
}

/* Dots */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
}

.slider-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border2);
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  padding: 0;
}

.slider-dot.active {
  background: var(--gold);
  transform: scale(1.4);
}

.slider-dot:hover { background: var(--text-muted); }

/* Progress bar */
.slider-progress {
  position: absolute;
  bottom: 0; left: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.1s linear;
  opacity: 0.6;
  pointer-events: none;
}

/* Responsive */
@media (max-width: 960px) {
  .slider-header { padding: 0 32px; margin-bottom: 40px; }
  .slider-track { padding: 0 32px; gap: 16px; }
  .slide { width: calc(70% - 24px); }
}

@media (max-width: 640px) {
  #slider { padding: 64px 0; }
  .slider-header { padding: 0 20px; margin-bottom: 32px; flex-direction: column; align-items: flex-start; gap: 24px; }
  .slider-track { padding: 0 20px; gap: 12px; }
  .slide { width: calc(88vw - 12px); }
  .slide-title { font-size: 17px; }
}
