/* Typography */
:root {
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --green-deep: #1B4332;
  --green-mid: #2D6A4F;
  --green-light: #40916C;
  --amber: #C9973D;
  --amber-light: #E8B86D;
  --cream: #F5F0E8;
  --cream-dark: #EDE6D9;
  --dark: #0F1E14;
  --text-light: #D4C9B5;
  --text-body: #8A7F6E;
  --white: #FDFAF5;
}

*, *::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(--dark);
  color: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to bottom, rgba(15,30,20,0.95) 0%, transparent 100%);
}

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

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--amber);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.nav-tagline {
  font-size: 0.75rem;
  color: var(--text-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 300;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 3rem 3rem;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15,30,20,0.97) 0%,
    rgba(15,30,20,0.7) 40%,
    rgba(15,30,20,0.3) 70%,
    rgba(15,30,20,0.1) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding-bottom: 4rem;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 500;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(201,151,61,0.4);
  padding: 0.3rem 0.8rem;
  border-radius: 2px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  font-weight: 600;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 560px;
  line-height: 1.7;
  font-weight: 300;
}

.hero-stats {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0;
  border-top: 1px solid rgba(201,151,61,0.2);
  padding-top: 2.5rem;
  margin-top: 1rem;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 0 3rem 0 0;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--amber);
  line-height: 1;
}

.stat-label {
  font-size: 0.7rem;
  color: var(--text-body);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(201,151,61,0.25);
  margin: 0 3rem 0 0;
}

/* How Section */
.how {
  padding: 8rem 3rem;
  background: var(--green-deep);
}

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

.how-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-label {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 500;
  margin-bottom: 1.25rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 300;
}

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

.how-card {
  background: rgba(255,255,255,0.04);
  padding: 3rem 2.5rem;
  border: 1px solid rgba(201,151,61,0.12);
  transition: background 0.3s ease;
}

.how-card:hover {
  background: rgba(201,151,61,0.08);
}

.how-card-icon {
  margin-bottom: 1.75rem;
}

.how-card-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 1rem;
}

.how-card-body {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.75;
  font-weight: 300;
}

/* Culture Section */
.culture {
  padding: 8rem 3rem;
  background: var(--dark);
}

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

.culture-img-wrap {
  position: relative;
}

.culture-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
  border: 1px solid rgba(201,151,61,0.2);
}

.culture-img-wrap::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  border: 1px solid rgba(201,151,61,0.15);
  z-index: -1;
}

.culture-text {
  padding: 2rem 0;
}

.culture-list {
  list-style: none;
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.culture-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 0.9rem;
  color: var(--cream);
  font-weight: 300;
}

.culture-list-marker {
  color: var(--amber);
  font-size: 0.5rem;
  margin-top: 0.45rem;
  flex-shrink: 0;
}

/* Agents Section */
.agents {
  padding: 8rem 3rem;
  background: var(--green-deep);
}

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

.agents-sub {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.8;
  margin: 1.5rem 0 4rem;
  font-weight: 300;
}

.agents-sub em {
  color: var(--amber);
  font-style: normal;
}

.agents-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid rgba(201,151,61,0.15);
}

.agents-pillar {
  padding: 2.5rem 2rem;
  background: rgba(15,30,20,0.4);
  text-align: left;
}

.pillar-label {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--amber);
  margin-bottom: 0.75rem;
}

.pillar-desc {
  font-size: 0.85rem;
  color: var(--text-body);
  line-height: 1.7;
  font-weight: 300;
}

/* Closing */
.closing {
  padding: 10rem 3rem;
  background: var(--dark);
  text-align: center;
}

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

.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 600;
  color: var(--cream);
  line-height: 1.2;
  font-style: italic;
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
}

.closing-sub {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.8;
  font-weight: 300;
}

/* Footer */
.footer {
  padding: 3rem;
  border-top: 1px solid rgba(201,151,61,0.15);
  background: var(--dark);
}

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

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--amber);
}

.footer-tagline {
  font-size: 0.8rem;
  color: var(--text-body);
  display: block;
  margin-top: 0.2rem;
}

.footer-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.75rem;
  color: var(--text-body);
  font-weight: 300;
}

.footer-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--amber);
  display: inline-block;
}

/* Responsive */
@media (max-width: 768px) {
  .nav { padding: 1.25rem 1.5rem; }
  .hero { padding: 0 1.5rem 2rem; }
  .hero-headline { font-size: 3rem; }
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .stat-divider { display: none; }
  .stat { padding: 0; }
  .how { padding: 5rem 1.5rem; }
  .how-cards { grid-template-columns: 1fr; gap: 1px; }
  .culture { padding: 5rem 1.5rem; }
  .culture-inner { grid-template-columns: 1fr; gap: 3rem; }
  .culture-img-wrap::before { display: none; }
  .agents { padding: 5rem 1.5rem; }
  .agents-pillars { grid-template-columns: 1fr; }
  .closing { padding: 6rem 1.5rem; }
  .footer { padding: 2rem 1.5rem; }
  .footer-inner { flex-direction: column; gap: 1rem; align-items: flex-start; }
}