/* === TOKENS === */
:root {
  --ivory: #FAF7F2;
  --blush: #F2EBE3;
  --gold: #C8A97A;
  --gold-dark: #9E7E52;
  --charcoal: #1C1C1C;
  --charcoal-mid: #3A3530;
  --warm-grey: #7A7268;
  --cream: #EDE8DF;

  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'Jost', 'Helvetica Neue', sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 8rem;
  --space-2xl: 12rem;

  --max-w: 1200px;
}

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

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

body {
  font-family: var(--font-body);
  background: var(--ivory);
  color: var(--charcoal);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--ivory); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* === 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;
  mix-blend-mode: difference;
}
.nav-wordmark {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  color: #fff;
}
.nav-tagline {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  background: linear-gradient(135deg, #0D0A08 0%, #1E1510 35%, #2C1F14 55%, #1A1410 100%);
  overflow: hidden;
  padding: 0 4rem;
}

.hero-atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
}
.hero-glow-1 {
  width: 60vw;
  height: 80vh;
  top: -10%;
  right: -5%;
  background: radial-gradient(ellipse, rgba(200, 169, 122, 0.18) 0%, transparent 70%);
}
.hero-glow-2 {
  width: 40vw;
  height: 60vh;
  bottom: 5%;
  left: 10%;
  background: radial-gradient(ellipse, rgba(180, 140, 90, 0.1) 0%, transparent 70%);
}
.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='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.6;
}

.hero-content {
  grid-column: 1;
  position: relative;
  z-index: 1;
  padding: 8rem 0 4rem;
  max-width: 560px;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(4rem, 9vw, 7.5rem);
  font-weight: 300;
  line-height: 0.95;
  color: #fff;
  letter-spacing: -0.01em;
  margin-bottom: 2.5rem;
}

.hero-sub {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  letter-spacing: 0.03em;
}

.hero-vertical-rule {
  grid-column: 2;
  width: 1px;
  height: 35vh;
  background: linear-gradient(to bottom, transparent, rgba(200,169,122,0.4), transparent);
  margin: auto 3rem;
  position: relative;
  z-index: 1;
}

.hero-side-text {
  grid-column: 3;
  position: relative;
  z-index: 1;
  align-self: end;
  padding-bottom: 3rem;
}
.hero-side-text span {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}

/* === ÉTOFFE === */
.ethoffe {
  padding: var(--space-2xl) var(--space-md);
  background: var(--ivory);
}
.ethoffe-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.ethoffe-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2.5rem;
}
.ethoffe-heading {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 2rem;
}
.ethoffe-text {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--charcoal-mid);
  max-width: 580px;
  margin-bottom: 4rem;
  line-height: 1.75;
}
.ethoffe-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 3rem;
}
.pillar {}
.pillar-icon {
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.pillar-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}
.pillar-desc {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--warm-grey);
  line-height: 1.7;
}

/* === COUTURE === */
.couture {
  padding: var(--space-xl) var(--space-md);
  background: var(--charcoal);
  color: #fff;
}
.couture-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.couture-top {
  margin-bottom: 3rem;
}
.couture-tag {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}
.couture-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.couture-rule {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 2rem;
}
.couture-quote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.4;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1.5rem;
}
.couture-attribution {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
}
.couture-details {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  padding-top: 0.5rem;
}
.couture-detail {
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 1.75rem;
}
.couture-detail:last-child { border-bottom: none; }
.detail-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.detail-value {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
}

/* === ATTITUDE === */
.attitude {
  padding: var(--space-2xl) var(--space-md);
  background: var(--blush);
}
.attitude-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.attitude-eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.attitude-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 2rem;
}
.attitude-sub {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--charcoal-mid);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.manifesto {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-top: 1rem;
}
.manifesto-item {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  align-items: start;
}
.manifesto-num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 0.1em;
  padding-top: 0.15rem;
}
.manifesto-item p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--charcoal-mid);
  line-height: 1.7;
}

/* === CLOSING === */
.closing {
  padding: var(--space-2xl) var(--space-md);
  background: var(--charcoal);
  color: #fff;
}
.closing-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
}
.closing-rule {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 4rem;
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 2.5rem;
}
.closing-sub-block {
  margin-bottom: 5rem;
}
.closing-sub {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.05em;
}
.closing-footer {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 3rem;
}
.closing-brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.5em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.75rem;
}
.closing-tagline {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}

/* === FOOTER === */
.footer {
  padding: 2rem var(--space-md);
  background: var(--charcoal);
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  color: rgba(255,255,255,0.3);
}
.footer-meta p {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 300;
  color: rgba(255,255,255,0.18);
  line-height: 1.8;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 0 2rem;
  }
  .hero-vertical-rule, .hero-side-text { display: none; }
  .hero-content { max-width: 100%; padding: 10rem 0 4rem; }

  .couture-main { grid-template-columns: 1fr; gap: 3rem; }
  .attitude-inner { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 600px) {
  .nav { padding: 1.25rem 1.5rem; }
  .hero { padding: 0 1.5rem; }
  .hero-headline { font-size: 3.5rem; }
  .ethoffe-pillars { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 1rem; }
}
