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

:root {
  --navy:     #0a1628;
  --gold:     #c9a84c;
  --gold-lt:  #e8d5a3;
  --wine:     #7a2233;
  --cream:    #faf6ee;
  --warm-bg:  #f5efe0;
  --text:     #1a1a2e;
  --muted:    #6b6b7b;
  --white:    #ffffff;
}

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

body {
  background: var(--cream);
  color: var(--text);
  font-family: 'DM Sans', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* === NAV === */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 1px solid rgba(201,168,76,0.2);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: -0.01em;
}

.nav-os {
  color: var(--gold);
}

.nav-tagline {
  font-size: 0.75rem;
  color: var(--gold-lt);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
}

/* === HERO === */
.hero {
  background: var(--navy);
  color: var(--cream);
  padding: 0 0 6rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 45%;
  background: linear-gradient(135deg, #1a0a0a 0%, var(--wine) 60%, #3d0f18 100%);
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
}

.hero::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 45%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a84c' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
}

.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 2rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

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

.hero-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.5rem, 7vw, 6rem);
  font-weight: 900;
  line-height: 0.92;
  color: var(--cream);
  letter-spacing: -0.02em;
}

.hero-title {
  font-size: 0.8rem;
  color: var(--gold-lt);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 400;
  margin-top: 0.5rem;
}

.hero-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 1.5rem;
  padding-bottom: 1rem;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  padding: 0.35rem 0.75rem;
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold-lt);
}

.hero-description {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(250,246,238,0.7);
  max-width: 440px;
}

/* === ROLES === */
.roles {
  background: var(--warm-bg);
  padding: 7rem 2rem;
}

.roles-header {
  max-width: 1280px;
  margin: 0 auto 3.5rem;
}

.section-label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--wine);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.roles-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5px;
  background: var(--navy);
  border: 1.5px solid var(--navy);
}

.role-card {
  background: var(--cream);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
  transition: background 0.2s;
}

.role-card:hover {
  background: var(--white);
}

.role-number {
  font-family: 'Playfair Display', serif;
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0.1em;
}

.role-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}

.role-desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
}

.role-status {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: var(--gold);
  border-top: 1px solid var(--gold-lt);
  padding-top: 0.75rem;
  margin-top: 0.25rem;
}

/* === IMPACT === */
.impact {
  background: var(--navy);
  padding: 5rem 2rem;
}

.impact-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.impact-stat {
  text-align: center;
  flex: 1;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-lt);
  font-weight: 500;
}

.impact-divider {
  width: 1px;
  height: 60px;
  background: rgba(201,168,76,0.25);
  flex-shrink: 0;
}

/* === CLOSING === */
.closing {
  background: var(--wine);
  padding: 8rem 2rem;
  text-align: center;
}

.closing-inner {
  max-width: 700px;
  margin: 0 auto;
}

.closing-statement {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 900;
  color: var(--cream);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}

.closing-sub {
  font-size: 1rem;
  color: rgba(250,246,238,0.65);
  line-height: 1.7;
}

/* === FOOTER === */
.site-footer {
  background: var(--navy);
  border-top: 1px solid rgba(201,168,76,0.15);
  padding: 2.5rem 2rem;
}

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

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

.footer-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cream);
}

.footer-sub {
  font-size: 0.65rem;
  color: var(--muted);
}

.footer-meta {
  font-size: 0.7rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-sep {
  color: var(--gold);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3rem 1.5rem 0;
  }

  .hero::before, .hero::after {
    width: 100%;
    clip-path: polygon(0 0, 100% 0, 100% 35%, 0 100%);
    opacity: 0.4;
  }

  .roles-grid {
    grid-template-columns: 1fr;
  }

  .impact-inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
  }

  .impact-divider {
    display: none;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .roles, .hero, .closing, .impact {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (max-width: 480px) {
  .nav-tagline { display: none; }
  .hero-name { font-size: 3rem; }
  .closing-statement { font-size: 2rem; }
}