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

:root {
  --cream: #F5F0E8;
  --dark: #1C1A18;
  --rust: #C4622D;
  --rust-light: #E07A45;
  --earth: #8B6F47;
  --warm-gray: #6B6358;
  --divider: rgba(28, 26, 24, 0.12);
  --section-pad: 100px 24px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--cream);
  color: var(--dark);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Fredoka', sans-serif;
  line-height: 1.2;
  font-weight: 600;
}

/* === HERO === */
.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 24px 100px;
  min-height: 88vh;
  display: flex;
  align-items: center;
}

.hero-bg-shape {
  position: absolute;
  top: -120px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle at center, rgba(196, 98, 45, 0.12) 0%, transparent 65%);
  pointer-events: none;
}

.hero-content {
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-block;
  font-family: 'Nunito', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 20px;
}

.hero-headline {
  font-size: clamp(44px, 5.5vw, 72px);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 28px;
  line-height: 1.05;
}

.hero-lede {
  font-size: 19px;
  color: var(--warm-gray);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-tags {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.tag {
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border: 1.5px solid var(--rust);
  border-radius: 100px;
  color: var(--rust);
  letter-spacing: 0.02em;
}

/* Hero Visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hoodie-mockup {
  position: relative;
  width: 280px;
  height: 340px;
}

.mockup-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle at center, rgba(196, 98, 45, 0.18) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(30px);
}

.mockup-hoodie {
  position: relative;
  z-index: 1;
}

.mockup-hoodie svg {
  width: 100%;
  height: auto;
}

/* === CRAFT === */
.the-craft {
  padding: var(--section-pad);
  background: #EDE9E0;
}

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

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 24px;
}

.craft-headline {
  font-size: clamp(34px, 3.5vw, 52px);
  color: var(--dark);
  margin-bottom: 60px;
  line-height: 1.15;
}

.craft-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.craft-card {
  padding: 36px 32px;
  background: var(--cream);
  border-radius: 20px;
  border: 1px solid var(--divider);
}

.craft-icon {
  margin-bottom: 20px;
}

.craft-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--dark);
}

.craft-card p {
  color: var(--warm-gray);
  font-size: 15.5px;
  line-height: 1.65;
}

/* === MANIFESTO === */
.manifesto {
  padding: var(--section-pad);
  background: var(--dark);
  color: #F5F0E8;
}

.manifesto-inner {
  max-width: 860px;
  margin: 0 auto;
}

.manifesto-quote {
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(28px, 3.8vw, 46px);
  font-weight: 500;
  line-height: 1.25;
  color: #F5F0E8;
  margin-bottom: 48px;
  font-style: normal;
  position: relative;
  padding-left: 32px;
}

.manifesto-quote::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 4px;
  background: var(--rust);
  border-radius: 2px;
}

.manifesto-body p {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(245, 240, 232, 0.72);
  margin-bottom: 24px;
}

.manifesto-body p:last-child { margin-bottom: 0; }

.manifesto-rule {
  height: 1px;
  background: rgba(245, 240, 232, 0.15);
  margin: 56px 0 40px;
}

.manifesto-byline {
  display: flex;
  align-items: center;
  gap: 16px;
}

.byline-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--rust);
  color: #fff;
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.manifesto-byline strong {
  display: block;
  font-family: 'Fredoka', sans-serif;
  font-size: 17px;
  color: #F5F0E8;
  margin-bottom: 2px;
}

.manifesto-byline span {
  font-size: 14px;
  color: rgba(245, 240, 232, 0.55);
}

/* === LAYERS === */
.layers {
  padding: var(--section-pad);
  background: var(--cream);
}

.layers-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.layer-stack {
  position: relative;
  width: 260px;
  height: 320px;
  margin: 0 auto;
}

.layer {
  position: absolute;
  border-radius: 16px;
  width: 220px;
}

.layer-1 {
  width: 220px;
  height: 220px;
  background: linear-gradient(135deg, #C4622D 0%, #8B6F47 100%);
  top: 0;
  left: 40px;
  border-radius: 50% 50% 20px 20px;
}

.layer-2 {
  width: 220px;
  height: 220px;
  background: linear-gradient(135deg, rgba(196,98,45,0.3) 0%, rgba(139,111,71,0.3) 100%);
  top: 50px;
  left: 20px;
  border-radius: 50% 50% 20px 20px;
  border: 1px solid rgba(196, 98, 45, 0.25);
}

.layer-3 {
  width: 220px;
  height: 220px;
  background: linear-gradient(135deg, rgba(196,98,45,0.1) 0%, rgba(139,111,71,0.1) 100%);
  top: 100px;
  left: 0;
  border-radius: 50% 50% 20px 20px;
  border: 1px solid rgba(196, 98, 45, 0.15);
}

.layer-text {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 40px;
}

.layer-text span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--warm-gray);
}

.layers-headline {
  font-size: clamp(32px, 3.2vw, 48px);
  color: var(--dark);
  margin-bottom: 24px;
  margin-top: 16px;
}

.layers-content > p {
  color: var(--warm-gray);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.layers-specs {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.layers-specs li {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--divider);
}

.layers-specs li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.layers-specs strong {
  display: block;
  font-family: 'Fredoka', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 4px;
}

.layers-specs span {
  font-size: 14px;
  color: var(--warm-gray);
}

/* === CLOSING === */
.closing {
  padding: var(--section-pad);
  background: #EDE9E0;
}

.closing-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.closing-rule {
  width: 60px;
  height: 3px;
  background: var(--rust);
  margin: 0 auto 56px;
  border-radius: 2px;
}

.closing-headline {
  font-size: clamp(36px, 4.5vw, 58px);
  color: var(--dark);
  margin-bottom: 28px;
  line-height: 1.1;
}

.closing-body {
  font-size: 18px;
  color: var(--warm-gray);
  line-height: 1.75;
  max-width: 600px;
  margin: 0 auto 56px;
}

.closing-badge {
  display: inline-block;
}

.badge-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 32px;
  background: var(--cream);
  border: 1.5px solid var(--divider);
  border-radius: 100px;
}

.badge-inner strong {
  display: block;
  font-family: 'Fredoka', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 2px;
}

.badge-inner span {
  font-size: 13px;
  color: var(--warm-gray);
}

/* === FOOTER === */
.site-footer {
  padding: 48px 24px;
  background: var(--dark);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-logo {
  font-family: 'Fredoka', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #F5F0E8;
  margin-bottom: 8px;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(245, 240, 232, 0.45);
  max-width: 280px;
}

.footer-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: rgba(245, 240, 232, 0.4);
}

.footer-sep { opacity: 0.4; }

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .hero { padding: 60px 24px 80px; min-height: auto; }
  .hero-content { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .hero-lede { margin: 0 auto 32px; }
  .hero-tags { justify-content: center; }
  .hero-visual { display: none; }

  .craft-grid { grid-template-columns: 1fr; gap: 24px; }
  .craft-card { padding: 28px 24px; }

  .layers-inner { grid-template-columns: 1fr; gap: 48px; }
  .layer-stack { display: none; }

  .footer-inner { flex-direction: column; text-align: center; }
  .footer-brand p { max-width: 100%; }
}

@media (max-width: 480px) {
  body { font-size: 16px; }
  .craft-headline, .layers-headline { font-size: 30px; }
  .closing-headline { font-size: 28px; }
  .manifesto-quote { font-size: 22px; }
}