:root {
  --bg: #fbfaf7;
  --paper: #f3eee5;
  --ink: #11100d;
  --muted: #5f5a52;
  --line: #ded6c7;
  --gold: #b78a36;
  --gold-soft: #d8bd82;
  --shadow: 0 22px 60px rgba(26, 22, 16, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto auto;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  padding: 22px clamp(20px, 5vw, 76px);
  background: rgba(251, 250, 247, 0.88);
  border-bottom: 1px solid rgba(222, 214, 199, 0.58);
  backdrop-filter: blur(18px);
}

.brand {
  --brand-tracking: 0.34em;

  display: inline-flex;
  align-items: baseline;
  gap: 0;
  color: var(--ink);
  font-family: "Poppins", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(20px, 2vw, 32px);
  font-weight: 400;
  letter-spacing: var(--brand-tracking);
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.brand strong {
  font-size: 1em;
  font-weight: 800;
}

.brand span:last-child {
  border-bottom: 0;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(22px, 5vw, 66px);
  color: #24211c;
  font-size: 15px;
}

.nav-links a,
.site-footer a {
  text-decoration: none;
}

.nav-links a:hover,
.site-footer a:hover {
  color: var(--gold);
}

.nav-cta,
.primary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  color: #f4d48b;
  background: #0f0e0c;
  border: 1px solid #25221d;
  box-shadow: inset 0 -10px 18px rgba(183, 138, 54, 0.13);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.nav-cta {
  min-height: 46px;
  width: auto;
  padding: 0 18px;
  font-size: 13px;
}

.nav-cta:hover,
.primary-cta:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
  box-shadow:
    inset 0 -10px 18px rgba(183, 138, 54, 0.16),
    0 14px 30px rgba(17, 16, 13, 0.14);
}

.hero {
  min-height: calc(100vh - 91px);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(460px, 1.08fr);
  gap: clamp(32px, 5vw, 82px);
  align-items: center;
  padding: clamp(38px, 6vw, 84px) clamp(20px, 5vw, 76px) 44px;
}

.hero-copy {
  max-width: 590px;
}

h1,
h2,
p {
  margin: 0;
}

h1 {
  max-width: 610px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(56px, 7vw, 110px);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: 0;
}

h1::after {
  content: "";
  display: block;
  width: min(340px, 66%);
  height: 9px;
  margin: 24px 0 0;
  background:
    linear-gradient(90deg, transparent 0 3%, var(--gold) 3% 84%, transparent 84%),
    linear-gradient(90deg, transparent 0 22%, #8e6728 22% 76%, transparent 76%);
  clip-path: polygon(0 36%, 100% 0, 96% 67%, 5% 100%);
}

.lead {
  max-width: 530px;
  margin-top: 32px;
  color: #302c25;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

.cta-row {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.primary-cta {
  width: min(620px, 100%);
  min-height: 74px;
  justify-self: start;
  padding: 0 30px;
  font-size: clamp(15px, 1.65vw, 22px);
  clip-path: polygon(0 0, 98% 0, 100% 52%, 97% 100%, 0 100%);
}

.launch-note {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #2f2a22;
  font-size: 17px;
}

.launch-note svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--gold);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.launch-note strong {
  color: var(--gold);
}

.counter-panel {
  margin-top: 34px;
}

.counter-top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
}

.counter-top h2 {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.counter-top p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 15px;
}

.counter-number {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  font-family: Georgia, "Times New Roman", serif;
}

.counter-number strong {
  color: var(--gold);
  font-size: clamp(54px, 6vw, 76px);
  font-weight: 500;
  line-height: 0.86;
}

.counter-number span {
  color: var(--ink);
  font-size: clamp(30px, 3vw, 42px);
}

.progress {
  position: relative;
  height: 12px;
  margin: 26px 0 18px;
  overflow: visible;
  border-radius: 999px;
  background: #e8e2d7;
}

.progress-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0%;
  border-radius: inherit;
  background: linear-gradient(90deg, #b68933, #d0b572);
  transition: width 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.milestone-dot {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 27px;
  border: 3px solid var(--gold);
  border-radius: 50%;
  background: var(--bg);
  transform: translate(-50%, -50%);
  transition:
    background 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.milestone-dot[data-state="done"] {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 0 6px rgba(183, 138, 54, 0.15);
}

.milestone-dot-10 {
  left: 10%;
}

.milestone-dot-50 {
  left: 50%;
}

.milestone-dot-100 {
  left: 100%;
}

.milestones {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.milestones li {
  min-width: 0;
}

.milestones strong {
  display: block;
  color: #191714;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 47px);
  font-weight: 500;
  line-height: 1;
}

.milestones span {
  display: block;
  max-width: 140px;
  margin-top: 10px;
  color: #514c45;
  font-size: 15px;
  line-height: 1.35;
}

.milestones li[data-complete="true"] strong,
.milestones li[data-complete="true"] span {
  color: var(--gold);
}

.hero-media {
  position: relative;
  min-height: clamp(520px, 67vw, 820px);
  isolation: isolate;
}

.shirt-slider {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 1px solid #d8cdb9;
  background:
    radial-gradient(circle at 77% 12%, rgba(183, 138, 54, 0.34), transparent 20%),
    linear-gradient(137deg, rgba(183, 138, 54, 0.24) 0 13%, transparent 13% 65%, rgba(183, 138, 54, 0.22) 65% 74%, transparent 74%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.34)),
    var(--paper);
  box-shadow: var(--shadow);
}

.slide {
  position: absolute;
  width: min(78%, 620px);
  max-height: 88%;
  object-fit: contain;
  opacity: 0;
  transform: translateX(18px) scale(0.98);
  filter: drop-shadow(0 26px 36px rgba(21, 17, 11, 0.18));
  transition:
    opacity 260ms ease,
    transform 260ms ease;
}

.slide.is-active {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.slider-btn {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 52px;
  height: 52px;
  border: 1px solid #25221d;
  border-radius: 50%;
  background: #0f0e0c;
  color: #f4d48b;
  cursor: pointer;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 38px;
  line-height: 1;
  transform: translateY(-50%);
}

.slider-prev {
  left: 18px;
}

.slider-next {
  right: 18px;
}

.slider-dots {
  position: absolute;
  right: 28px;
  bottom: 24px;
  z-index: 5;
  display: flex;
  gap: 9px;
}

.slider-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 1px solid #0f0e0c;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.slider-dots button.is-active {
  background: var(--gold);
  border-color: var(--gold);
}

.details {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  padding: 46px clamp(20px, 5vw, 76px) 64px;
  border-top: 1px solid var(--line);
  text-align: center;
}

.details h2 {
  max-width: 620px;
  margin: 0 auto;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 500;
  line-height: 1;
}

.details p {
  max-width: 560px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.all-graphics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 0 clamp(20px, 5vw, 76px) 70px;
}

.all-graphics img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top center;
  border: 1px solid #dbd1c1;
  box-shadow: 0 12px 28px rgba(21, 17, 11, 0.1);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(20px, 5vw, 76px);
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.site-footer p {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  color: var(--ink);
}

.site-footer a {
  color: var(--ink);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 1060px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    justify-self: end;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-media {
    min-height: clamp(510px, 92vw, 760px);
  }

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

}

@media (max-width: 680px) {
  .site-header {
    gap: 14px;
    padding: 16px 18px;
  }

  .brand {
    --brand-tracking: 0.24em;

    font-size: 22px;
  }

  .nav-cta {
    min-height: 40px;
    padding: 0 13px;
    font-size: 11px;
  }

  .hero {
    padding: 24px 18px 36px;
  }

  .hero-media {
    min-height: 420px;
  }

  .slide {
    width: 82%;
    max-height: 84%;
  }

  .slider-btn {
    width: 42px;
    height: 42px;
    font-size: 30px;
  }

  .slider-prev {
    left: 10px;
  }

  .slider-next {
    right: 10px;
  }

  h1 {
    font-size: clamp(48px, 16vw, 68px);
  }

  .lead {
    margin-top: 24px;
    font-size: 17px;
  }

  .primary-cta {
    width: 100%;
    min-height: 64px;
    font-size: 16px;
  }

  .launch-note {
    align-items: flex-start;
    font-size: 15px;
  }

  .counter-top {
    align-items: start;
    flex-direction: column;
  }

  .counter-number strong {
    font-size: 60px;
  }

  .milestones {
    gap: 10px;
  }

  .milestones strong {
    font-size: 34px;
  }

  .milestones span {
    font-size: 13px;
  }

  .details {
    padding: 34px 18px 44px;
  }

  .all-graphics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 0 18px 44px;
  }


  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    padding: 22px 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
