:root {
  --bg: #F8F5F0;
  --bg-dark: #1C1C1C;
  --fg: #1C1C1C;
  --fg-muted: #6B6560;
  --accent: #C8704A;
  --accent-warm: #E8A87C;
  --cream: #EDE8E0;
  --border: #D4CEC4;
}

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

html {
  scroll-behavior: smooth;
}

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

/* — NAV — */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 48px;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 245, 240, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 0.06em;
  color: var(--fg);
}

.nav-links {
  display: flex;
  gap: 40px;
}

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

.nav-links a:hover { color: var(--fg); }

/* — HERO — */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 80px 48px 0;
  gap: 48px;
  align-items: center;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-overline {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(72px, 10vw, 120px);
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: var(--fg);
}

.hero-sub {
  font-family: 'DM Serif Text', serif;
  font-size: 20px;
  color: var(--fg-muted);
  line-height: 1.5;
  font-style: italic;
}

.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.hero-image-block {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--bg-dark);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Orb glows */
.hero-gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
}
.orb-1 {
  width: 300px; height: 300px;
  background: #C8704A;
  top: 20%; left: 30%;
}
.orb-2 {
  width: 200px; height: 200px;
  background: #E8A87C;
  bottom: 30%; right: 20%;
}

/* Stripe motif */
.hero-stripe-group {
  display: flex;
  gap: 14px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.stripe {
  height: 140px;
  border-radius: 2px;
  background: rgba(255,255,255,0.08);
}
.stripe-1 { width: 18px; }
.stripe-2 { width: 28px; background: rgba(200, 112, 74, 0.7); }
.stripe-3 { width: 36px; }
.stripe-4 { width: 28px; background: rgba(200, 112, 74, 0.7); }
.stripe-5 { width: 18px; }

.hero-circle-label {
  position: absolute;
  bottom: 24px;
  right: 24px;
  width: 80px; height: 80px;
  border-radius: 50%;
  border: 1.5px solid rgba(200, 112, 74, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  color: var(--accent-warm);
  letter-spacing: 0.04em;
}

.hero-spec-grid {
  display: flex;
  gap: 0;
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.spec-item {
  flex: 1;
  padding: 16px 20px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.spec-item:last-child { border-right: none; }

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

.spec-value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 0.04em;
  color: var(--fg);
}

/* — SECTION LABEL — */
.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 16px;
}

/* — PHILOSOPHY — */
.philosophy {
  background: var(--bg-dark);
  padding: 120px 48px;
}

.philosophy-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.philosophy-quote {
  font-family: 'DM Serif Text', serif;
  font-size: clamp(22px, 2.5vw, 30px);
  font-style: italic;
  color: var(--cream);
  line-height: 1.4;
  border-left: 2px solid var(--accent);
  padding-left: 32px;
  margin-top: 8px;
}

.philosophy-right {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.philosophy-pillar {
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 40px;
}
.philosophy-pillar:last-child { border-bottom: none; padding-bottom: 0; }

.pillar-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 8px;
}

.pillar-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: 0.04em;
  color: var(--cream);
  margin-bottom: 12px;
}

.pillar-body {
  font-size: 15px;
  color: rgba(237, 232, 224, 0.6);
  line-height: 1.7;
}

/* — FOUNDATIONS — */
.foundations {
  padding: 120px 48px;
}

.foundations-header {
  max-width: 1200px;
  margin: 0 auto 72px;
}

.foundations-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 6vw, 72px);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--fg);
  margin: 12px 0 16px;
}

.foundations-sub {
  font-size: 16px;
  color: var(--fg-muted);
}

.foundations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  max-width: 1200px;
  margin: 0 auto;
}

.foundation-card {
  padding: 48px 40px;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
}

.foundation-card:hover { background: #EAE4DB; }

/* Card art backgrounds */
.card-art {
  width: 80px;
  height: 80px;
  position: relative;
}

/* Card art 1 — Tops: bars */
.card-art-1 { display: flex; align-items: flex-end; gap: 8px; }
.ca-bar { background: var(--fg); border-radius: 1px; }
.ca-bar-1 { width: 12px; height: 40px; }
.ca-bar-2 { width: 16px; height: 60px; }
.ca-circle { width: 28px; height: 28px; border-radius: 50%; border: 2px solid var(--fg); position: absolute; bottom: 0; right: 0; }

/* Card art 2 — Knitwear: rings */
.card-art-2 { display: flex; align-items: center; justify-content: center; }
.ca-ring { border-radius: 50%; border: 2px solid var(--fg); position: absolute; }
.ca-ring-outer { width: 60px; height: 60px; }
.ca-ring-inner { width: 36px; height: 36px; }

/* Card art 3 — Trousers: cross */
.card-art-3 { display: flex; align-items: center; justify-content: center; }
.ca-diamond {
  width: 30px; height: 30px;
  border: 2px solid var(--fg);
  transform: rotate(45deg);
}
.ca-line { position: absolute; background: var(--fg); }
.ca-line-h { width: 70px; height: 1px; }
.ca-line-v { width: 1px; height: 70px; }

/* Card art 4 — Outerwear: waves */
.card-art-4 { display: flex; flex-direction: column; gap: 8px; justify-content: center; }
.ca-wave {
  width: 60px; height: 20px;
  border: 2px solid var(--fg);
  border-radius: 0 20px 20px 0;
  border-left: none;
}
.ca-wave-2 { width: 40px; }

.card-category {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: 0.04em;
  color: var(--fg);
}

.card-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* — MANIFESTO — */
.manifesto {
  background: var(--accent);
  padding: 100px 48px;
}

.manifesto-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.manifesto-badge {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
}

.manifesto-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.manifesto-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  font-size: 18px;
  font-weight: 400;
  color: #fff;
}
.manifesto-item:last-child { border-bottom: none; }

.manifesto-ico { flex-shrink: 0; }

.manifesto-tagline {
  font-family: 'DM Serif Text', serif;
  font-size: clamp(24px, 3vw, 36px);
  font-style: italic;
  color: #fff;
  line-height: 1.3;
}

/* — CLOSING — */
.closing {
  padding: 120px 48px;
  background: var(--bg);
}

.closing-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.closing-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--fg);
}

.closing-body {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.7;
}

.closing-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 48px;
  border: 1.5px solid var(--fg);
  border-radius: 2px;
}

.badge-inner {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 0.12em;
  color: var(--fg);
}

/* — EMAIL SIGNUP FORM — */
.signup-form {
  width: 100%;
  max-width: 480px;
}

.signup-row {
  display: flex;
  gap: 0;
  border: 1.5px solid var(--fg);
  border-radius: 2px;
  overflow: hidden;
}

.signup-row input[type="email"] {
  flex: 1;
  border: none;
  outline: none;
  padding: 16px 20px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  background: transparent;
  color: var(--fg);
  min-width: 0;
}

.signup-row input[type="email"]::placeholder {
  color: var(--fg-muted);
}

.signup-row button {
  padding: 16px 28px;
  background: var(--fg);
  color: var(--bg);
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}

.signup-row button:hover:not(:disabled) {
  background: var(--accent);
}

.signup-row button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.signup-msg {
  margin-top: 12px;
  font-size: 14px;
  min-height: 20px;
  color: var(--fg-muted);
}

.signup-msg.success { color: var(--accent); }
.signup-msg.error   { color: #c0392b; }

/* — FOOTER — */
.footer {
  background: var(--bg-dark);
  padding: 48px;
}

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

.footer-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: 0.06em;
  color: var(--cream);
  display: block;
}

.footer-tagline {
  font-size: 13px;
  color: rgba(237, 232, 224, 0.5);
  margin-top: 4px;
}

.footer-copy {
  font-size: 13px;
  color: rgba(237, 232, 224, 0.4);
}

.footer-built {
  font-size: 12px;
  color: rgba(237, 232, 224, 0.3);
  margin-top: 4px;
  font-style: italic;
}

/* — RESPONSIVE — */
@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .nav-links { display: none; }
  .hero { grid-template-columns: 1fr; padding: 48px 24px 0; }
  .hero-visual { margin-top: 24px; }
  .philosophy-inner { grid-template-columns: 1fr; gap: 48px; }
  .foundations { padding: 80px 24px; }
  .foundations-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 24px; text-align: center; }
  .closing { padding: 80px 24px; }
  .manifesto { padding: 80px 24px; }
}