:root {
  --bg: #F5EFE0;
  --bg-dark: #1C1A1E;
  --fg: #1C1A1E;
  --fg-light: #F5EFE0;
  --accent: #C8602A;
  --muted: #7A6E5A;
  --sage: #8A7D60;
  --sand: #E8E0D0;
  --charcoal: #2A2829;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Figtree', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg-dark);
}

.hero__atmosphere {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, #3D1F0A 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 100%, #4A2C10 0%, transparent 50%),
    linear-gradient(180deg, #1A0F06 0%, #2A1A0D 30%, #3D2310 50%, #1C1A1E 100%);
  z-index: 0;
}

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

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 4rem 2rem;
  max-width: 900px;
}

.hero__eyebrow {
  font-family: 'Figtree', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
  opacity: 0.8;
}

.hero__title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(5rem, 18vw, 14rem);
  font-weight: 800;
  line-height: 0.85;
  letter-spacing: -0.03em;
  color: var(--fg-light);
  margin-bottom: 1.5rem;
}

.hero__subtitle {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 400;
  line-height: 1.4;
  color: rgba(245, 239, 224, 0.65);
  margin-bottom: 3rem;
}

.hero__rule {
  width: 60px;
  height: 2px;
  background: var(--accent);
  margin: 0 auto 3rem;
}

.hero__tagline {
  font-family: 'Figtree', sans-serif;
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(245, 239, 224, 0.45);
  letter-spacing: 0.08em;
  line-height: 1.8;
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: rgba(245, 239, 224, 0.4);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ── MANIFESTO ── */
.manifesto {
  padding: 8rem 2rem;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.manifesto::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--accent), transparent);
}

.manifesto__inner {
  max-width: 820px;
  margin: 0 auto;
}

.manifesto__label {
  font-family: 'Figtree', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
}

.manifesto__headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--fg);
  margin-bottom: 2rem;
}

.manifesto__headline em {
  font-style: normal;
  color: var(--accent);
}

.manifesto__body {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 4rem;
  max-width: 600px;
}

.manifesto__stats {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}

.manifesto__stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.manifesto__stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.manifesto__stat-label {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}

/* ── GEAR ── */
.gear {
  padding: 6rem 2rem 8rem;
  background: #EDEAE0;
}

.gear__header {
  max-width: 1200px;
  margin: 0 auto 4rem;
}

.gear__label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.gear__title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--fg);
  line-height: 1.1;
}

.gear__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.gear__card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.gear__card--tall {
  grid-row: span 2;
  aspect-ratio: auto;
}

.gear__card--wide {
  grid-column: span 2;
  aspect-ratio: 2/1;
}

.gear__card-img {
  width: 100%;
  height: 100%;
  position: relative;
}

.gear__card-img--hoodie {
  background:
    radial-gradient(ellipse 80% 60% at 30% 40%, #6B3A1A 0%, transparent 70%),
    linear-gradient(135deg, #3D2310 0%, #5C3D28 30%, #2A1A0D 100%);
}

.gear__card-img--hoodie::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 15%;
  width: 45%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(200, 96, 42, 0.3) 0%, transparent 70%);
  border-radius: 50% 50% 0 0;
}

.gear__card-img--shirt {
  background: linear-gradient(135deg, #8B6B4A 0%, #6B4E35 50%, #3D2B1A 100%);
}

.gear__card-img--zip {
  background: linear-gradient(135deg, #4A5A3A 0%, #3A4A2A 50%, #2A3A1A 100%);
}

.gear__card-img--shorts {
  background: linear-gradient(135deg, #5A4A3A 0%, #3D2B1A 100%);
}

.gear__card-img--rope {
  background: linear-gradient(135deg, #8B5A2A 0%, #6B4A1A 50%, #4A3010 100%);
}

.gear__card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 1.25rem;
  background: linear-gradient(to top, rgba(28, 26, 30, 0.85) 0%, transparent 100%);
}

.gear__card-name {
  font-family: 'Syne', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #F5EFE0;
}

.gear__card-price {
  font-family: 'Figtree', sans-serif;
  font-size: 0.8rem;
  color: var(--accent);
  margin-top: 0.2rem;
}

/* ── CREW ── */
.crew {
  padding: 8rem 2rem;
  background: var(--bg-dark);
  color: var(--fg-light);
}

.crew__header {
  max-width: 1200px;
  margin: 0 auto 4rem;
}

.crew__label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.crew__title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--fg-light);
  line-height: 1.15;
}

.crew__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.crew__card {
  padding: 2rem 1.75rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  position: relative;
}

.crew__quote {
  font-family: 'Syne', sans-serif;
  font-size: 3rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
  opacity: 0.7;
}

.crew__text {
  font-size: 0.95rem;
  color: rgba(245, 239, 224, 0.75);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 1.25rem;
}

.crew__author {
  font-family: 'Figtree', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 239, 224, 0.4);
}

/* ── PHILOSOPHY ── */
.philosophy {
  padding: 8rem 2rem;
  background: var(--bg);
}

.philosophy__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.philosophy__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem 3rem;
}

.philosophy__item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.philosophy__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.philosophy__item-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--fg);
}

.philosophy__item-body {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ── CLOSING ── */
.closing {
  padding: 10rem 2rem 8rem;
  background: var(--charcoal);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.closing__inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.closing__stamp {
  width: 80px;
  height: 80px;
  margin: 0 auto 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.closing__stamp-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--accent);
  opacity: 0.6;
}

.closing__stamp-ring::before {
  content: '';
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 1px solid rgba(200, 96, 42, 0.4);
}

.closing__stamp-text {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.1em;
}

.closing__headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--fg-light);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.closing__body {
  font-size: 1rem;
  color: rgba(245, 239, 224, 0.5);
  line-height: 1.8;
}

/* ── FOOTER ── */
.footer {
  padding: 2.5rem 2rem;
  background: #111012;
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.footer__brand-name {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--fg-light);
  letter-spacing: 0.15em;
}

.footer__brand-tag {
  font-size: 0.7rem;
  color: rgba(245, 239, 224, 0.35);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.footer__links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: rgba(245, 239, 224, 0.35);
  flex-wrap: wrap;
  justify-content: center;
}

.footer__links a {
  color: rgba(245, 239, 224, 0.35);
  text-decoration: none;
  transition: color 0.2s;
}

.footer__links a:hover {
  color: var(--accent);
}

.footer__sep {
  opacity: 0.3;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .manifesto__stats { gap: 2rem; }
  
  .gear__grid {
    grid-template-columns: 1fr 1fr;
  }
  .gear__card--tall { grid-row: span 1; }
  .gear__card--wide { grid-column: span 2; }
  
  .crew__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  
  .philosophy__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 480px) {
  .gear__grid { grid-template-columns: 1fr; }
  .gear__card--wide { grid-column: span 1; }
  .crew__grid { grid-template-columns: 1fr; }
  .manifesto__stats { flex-direction: column; gap: 1.5rem; }
}