/* ─── Variables ─────────────────────────────────────────────────── */
:root {
  --bg: #0f0e0d;
  --bg-alt: #1a1916;
  --cream: #f5f0e8;
  --cream-dim: #c8c0b4;
  --gold: #c9a96e;
  --gold-dim: #a08850;
  --charcoal: #2a2826;
  --mid: #8a8580;
  --espresso: #4a3728;
  --light: #e8e0d4;
  --font-display: 'Cormorant Garant', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

/* ─── Reset ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ─── Typography helpers ────────────────────────────────────────── */
.section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--cream);
}

/* ─── Nav ───────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 3rem;
  background: rgba(15,14,13,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,169,110,0.08);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  color: var(--cream);
}

.nav-tagline {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ─── Manifesto ──────────────────────────────────────────────────── */
.manifesto {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 8rem 3rem 4rem;
  gap: 4rem;
  align-items: center;
  border-bottom: 1px solid rgba(201,169,110,0.08);
}

.manifesto-inner { display: flex; flex-direction: column; gap: 2rem; }

.manifesto-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid);
}

.manifesto-headline {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  font-weight: 300;
  line-height: 1.0;
  color: var(--cream);
  font-style: italic;
}

.manifesto-sub {
  font-size: 1rem;
  color: var(--cream-dim);
  max-width: 38ch;
  font-weight: 300;
}

.manifesto-quote {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 1.5rem;
  border-left: 1px solid var(--gold);
  margin-top: 1rem;
}

.quote-mark {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 0;
  font-style: italic;
}

.manifesto-quote span:nth-child(2) {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  font-style: italic;
  color: var(--cream);
}

.manifesto-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
  height: 480px;
}

.visual-block { border-radius: 2px; overflow: hidden; }
.block-1 { grid-column: 1; grid-row: 1 / 3; background: linear-gradient(160deg, #1a1916 0%, #2a2826 50%, #4a3728 100%); }
.block-2 { grid-column: 2; grid-row: 1; background: linear-gradient(135deg, #c9a96e22 0%, #c9a96e08 100%); border: 1px solid rgba(201,169,110,0.15); }
.block-3 { grid-column: 2; grid-row: 2; background: linear-gradient(200deg, #0f0e0d 0%, #1a1916 100%); }

/* ─── Aesthetic ─────────────────────────────────────────────────── */
.aesthetic {
  padding: 7rem 3rem;
  border-bottom: 1px solid rgba(201,169,110,0.08);
}

.aesthetic-header { margin-bottom: 4rem; }

.aesthetic-pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem 4rem;
  margin-bottom: 3rem;
}

.pillar { display: flex; flex-direction: column; gap: 0.75rem; }

.pillar-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--cream);
  font-style: italic;
}

.pillar-desc {
  font-size: 0.875rem;
  color: var(--cream-dim);
  font-weight: 300;
  line-height: 1.6;
}

.aesthetic-colors {
  display: flex;
  gap: 0.75rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(201,169,110,0.08);
}

.color-swatch {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.06);
}

/* ─── Products ──────────────────────────────────────────────────── */
.products {
  padding: 7rem 3rem;
  border-bottom: 1px solid rgba(201,169,110,0.08);
}

.products-header { margin-bottom: 4rem; }

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

.product-item {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.product-silhouette {
  aspect-ratio: 3/4;
  background: var(--bg-alt);
  border-radius: 2px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 2rem;
  border: 1px solid rgba(201,169,110,0.08);
  overflow: hidden;
}

/* Silhouettes via CSS — no images */
.silhouette-hoodie {
  width: 70%;
  height: 65%;
  background: linear-gradient(180deg, #2a2826 0%, #1a1916 100%);
  border-radius: 4px 4px 2px 2px;
  position: relative;
}
.silhouette-hoodie::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 30%; height: 15%;
  background: #2a2826;
  border-radius: 0 0 50% 50%;
}
.silhouette-tee {
  width: 60%;
  height: 55%;
  background: linear-gradient(180deg, #3a3530 0%, #2a2826 100%);
  border-radius: 2px;
}
.silhouette-tank {
  width: 45%;
  height: 50%;
  background: linear-gradient(180deg, #4a4035 0%, #2a2826 100%);
  border-radius: 2px;
}
.silhouette-poster {
  width: 45%;
  height: 70%;
  background: linear-gradient(180deg, #1a1916 0%, #2a2826 60%, #c9a96e15 100%);
  border-radius: 1px;
  border: 1px solid rgba(201,169,110,0.2);
}

.product-info { display: flex; flex-direction: column; gap: 0.4rem; }

.product-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--cream);
}

.product-philosophy {
  font-size: 0.75rem;
  font-style: italic;
  color: var(--gold);
  font-family: var(--font-display);
}

/* ─── Gia Section ──────────────────────────────────────────────── */
.gia-section {
  padding: 7rem 3rem;
  border-bottom: 1px solid rgba(201,169,110,0.08);
}

.gia-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.gia-text { display: flex; flex-direction: column; gap: 1.5rem; }

.gia-name {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 300;
  color: var(--cream);
  font-style: italic;
  line-height: 1.1;
}

.gia-desc {
  font-size: 1.1rem;
  color: var(--cream-dim);
  font-weight: 300;
  line-height: 1.7;
}

.gia-desc-sub {
  font-size: 0.9rem;
  color: var(--mid);
  font-weight: 300;
  line-height: 1.7;
}

.gia-traits {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.trait {
  padding: 0.4rem 1rem;
  border: 1px solid rgba(201,169,110,0.25);
  border-radius: 1px;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.gia-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.gia-portrait { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }

.portrait-frame {
  width: 260px;
  height: 340px;
  background: linear-gradient(145deg, #1a1916 0%, #2a2826 40%, #3a3530 70%, #4a3728 100%);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201,169,110,0.12);
  position: relative;
  overflow: hidden;
}

.portrait-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.portrait-silhouette {
  width: 100px;
  height: 200px;
  background: linear-gradient(180deg, #2a2826 0%, #1a1916 100%);
  border-radius: 50% 50% 45% 45% / 40% 40% 30% 30%;
  position: relative;
}
.portrait-silhouette::before {
  content: '';
  position: absolute;
  top: -40px; left: 50%; transform: translateX(-50%);
  width: 70px; height: 70px;
  background: #2a2826;
  border-radius: 50%;
}

.portrait-caption {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.08em;
}

/* ─── Philosophy ────────────────────────────────────────────────── */
.philosophy {
  padding: 7rem 3rem;
  border-bottom: 1px solid rgba(201,169,110,0.08);
}

.philosophy-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 3rem;
  text-align: center;
}

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

.phrase {
  padding: 3rem 2.5rem;
  background: var(--bg-alt);
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--cream-dim);
  line-height: 1.4;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.03);
  transition: background 0.3s ease, color 0.3s ease;
}

.phrase:hover {
  background: rgba(201,169,110,0.05);
  color: var(--cream);
}

.phrase span:first-child, .phrase span:last-child {
  color: var(--gold);
  font-size: 1.5em;
}

/* ─── Closing ───────────────────────────────────────────────────── */
.closing {
  padding: 10rem 3rem;
  text-align: center;
}

.closing-inner { display: flex; flex-direction: column; gap: 2rem; align-items: center; }

.closing-statement {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  line-height: 1.2;
  max-width: 16ch;
}

.closing-sub {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ─── Footer (appended via layout, not a partial) ───────────────── */
footer {
  padding: 2rem 3rem;
  border-top: 1px solid rgba(201,169,110,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

footer span {
  font-size: 0.7rem;
  color: var(--mid);
  letter-spacing: 0.1em;
}

/* ─── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .manifesto { grid-template-columns: 1fr; gap: 3rem; }
  .manifesto-visual { height: 240px; }
  .aesthetic-pillars { grid-template-columns: 1fr; gap: 2rem; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .gia-inner { grid-template-columns: 1fr; }
  .gia-visual { display: none; }
  .philosophy-grid { grid-template-columns: 1fr; }
  .nav { padding: 1rem 1.5rem; }
  .manifesto, .aesthetic, .products, .gia-section, .philosophy, .closing { padding: 5rem 1.5rem; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .closing { padding: 6rem 1.5rem; }
}