@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Instrument+Sans:wght@300;400;500&display=swap');

:root {
  --cream: #F7F3EE;
  --cream-dark: #EDE8E1;
  --ink: #1A1F17;
  --ink-60: rgba(26,31,23,0.6);
  --ink-30: rgba(26,31,23,0.3);
  --forest: #1D5C3A;
  --forest-light: #2A7A50;
  --forest-pale: #E8F2EC;
  --sage: #7A9E85;
  --rule: rgba(26,31,23,0.12);
  --white: #FFFFFF;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Instrument Sans', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(247,243,238,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
  padding: 0 40px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: box-shadow 0.3s;
}

nav.scrolled { box-shadow: 0 1px 24px rgba(26,31,23,0.06); }

.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logomark { width: 34px; height: 34px; flex-shrink: 0; }
.nav-wordmark { font-family: var(--serif); font-size: 20px; font-weight: 500; color: var(--ink); letter-spacing: -0.01em; line-height: 1; }
.nav-wordmark span { color: var(--forest); }

.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a { font-size: 13px; font-weight: 400; color: var(--ink-60); text-decoration: none; letter-spacing: 0.01em; transition: color 0.2s; position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -3px; left: 0; width: 0; height: 1px; background: var(--forest); transition: width 0.25s ease; }
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--ink); }
.nav-cta { font-size: 12px !important; font-weight: 500 !important; color: var(--white) !important; background: var(--forest); padding: 9px 22px; border-radius: 1px; letter-spacing: 0.04em !important; transition: background 0.2s !important; }
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--forest-light) !important; }

/* RIBBON */
.ribbon { background: var(--forest); color: rgba(255,255,255,0.75); font-size: 12px; font-weight: 300; letter-spacing: 0.03em; padding: 9px 40px; display: flex; align-items: center; gap: 32px; border-bottom: 1px solid rgba(255,255,255,0.1); overflow: hidden; }
.ribbon-label { font-size: 9px; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--sage); flex-shrink: 0; border: 1px solid rgba(122,158,133,0.4); padding: 2px 8px; border-radius: 1px; }
.ribbon-items { display: flex; gap: 36px; overflow: hidden; }
.ribbon-item { display: flex; align-items: center; gap: 12px; white-space: nowrap; opacity: 0.8; }
.ribbon-sep { color: var(--sage); opacity: 0.4; font-size: 10px; }
.ribbon a { color: inherit; text-decoration: none; transition: opacity 0.2s; }
.ribbon a:hover { opacity: 1; color: #fff; }

/* PAGE HERO */
.page-hero { padding: 80px 40px; border-bottom: 1px solid var(--rule); display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; }
.page-hero-full { padding: 80px 40px; border-bottom: 1px solid var(--rule); max-width: 780px; }

/* TYPOGRAPHY */
.eyebrow { font-size: 10px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--forest); margin-bottom: 20px; display: flex; align-items: center; gap: 12px; }
.eyebrow::before { content: ''; display: block; width: 24px; height: 1px; background: var(--forest); opacity: 0.5; }

.page-headline { font-family: var(--serif); font-size: clamp(34px, 3.8vw, 52px); font-weight: 400; line-height: 1.08; color: var(--ink); letter-spacing: -0.02em; }
.page-sub { font-size: 15px; font-weight: 300; color: var(--ink-60); line-height: 1.8; }

.section-label { font-size: 10px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--forest); margin-bottom: 20px; display: flex; align-items: center; gap: 14px; }
.section-label::before { content: ''; display: block; width: 24px; height: 1px; background: var(--forest); opacity: 0.5; }
.section-headline { font-family: var(--serif); font-size: clamp(32px, 3.2vw, 48px); font-weight: 400; line-height: 1.1; color: var(--ink); letter-spacing: -0.02em; max-width: 680px; margin-bottom: 16px; }
.section-body { font-size: 15px; font-weight: 300; color: var(--ink-60); max-width: 600px; line-height: 1.8; margin-bottom: 56px; }

/* BUTTONS */
.btn-primary { display: inline-flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 500; color: var(--white); background: var(--forest); padding: 13px 26px; border-radius: 1px; text-decoration: none; letter-spacing: 0.04em; transition: background 0.2s, transform 0.2s; }
.btn-primary:hover { background: var(--forest-light); transform: translateY(-1px); }
.btn-ghost { font-size: 13px; font-weight: 400; color: var(--ink-60); text-decoration: none; letter-spacing: 0.02em; transition: color 0.2s; display: inline-flex; align-items: center; gap: 6px; }
.btn-ghost:hover { color: var(--forest); }
.btn-white { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: var(--forest); background: var(--white); padding: 12px 24px; border-radius: 1px; text-decoration: none; white-space: nowrap; transition: opacity 0.2s, transform 0.2s; }
.btn-white:hover { opacity: 0.92; transform: translateY(-1px); }

/* SECTIONS */
section { padding: 88px 40px; border-bottom: 1px solid var(--rule); }

/* TEAM CHIPS */
.mini-label { font-size: 10px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-60); margin-bottom: 14px; }
.team-row { display: flex; gap: 10px; flex-wrap: wrap; }
.team-chip { display: flex; align-items: center; gap: 10px; background: var(--white); border: 1px solid var(--rule); border-radius: 1px; padding: 10px 14px; }
.team-init { width: 30px; height: 30px; border-radius: 50%; background: var(--forest-pale); display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 600; color: var(--forest); flex-shrink: 0; font-family: var(--sans); }
.team-name { font-size: 13px; font-weight: 500; color: var(--ink); }
.team-role { font-size: 11px; font-weight: 300; color: var(--ink-60); }

/* CTA STRIP */
.cta-strip { background: var(--forest); padding: 48px 40px; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cta-text { font-family: var(--serif); font-size: 26px; font-weight: 400; color: var(--white); letter-spacing: -0.01em; }
.cta-sub { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.55); margin-top: 6px; }

/* SUBSCRIBE */
.subscribe-strip { background: var(--ink); padding: 56px 40px; display: flex; align-items: center; justify-content: space-between; gap: 48px; position: relative; overflow: hidden; }
.subscribe-strip::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(29,92,58,0.15) 0%, transparent 60%); pointer-events: none; }
.sub-label { font-size: 9px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--sage); margin-bottom: 12px; }
.sub-headline { font-family: var(--serif); font-size: 28px; font-weight: 400; color: var(--white); line-height: 1.2; letter-spacing: -0.01em; margin-bottom: 6px; }
.sub-desc { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.4); }
.subscribe-form { display: flex; gap: 0; flex-shrink: 0; }
.sub-input { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-right: none; border-radius: 1px 0 0 1px; padding: 12px 20px; color: var(--white); font-family: var(--sans); font-size: 13px; font-weight: 300; outline: none; width: 260px; transition: border-color 0.2s; }
.sub-input::placeholder { color: rgba(255,255,255,0.25); }
.sub-input:focus { border-color: var(--sage); }
.sub-btn { background: var(--forest); border: 1px solid var(--forest); border-radius: 0 1px 1px 0; color: var(--white); font-family: var(--sans); font-size: 12px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; padding: 12px 24px; cursor: pointer; white-space: nowrap; transition: background 0.2s; }
.sub-btn:hover { background: var(--forest-light); }

/* CONTACT */
.contact-section { background: var(--ink); padding: 88px 40px; position: relative; overflow: hidden; }
.contact-section::before { content: 'Partner'; position: absolute; right: -40px; top: 50%; transform: translateY(-50%); font-family: var(--serif); font-size: 200px; font-weight: 300; color: rgba(255,255,255,0.02); line-height: 1; pointer-events: none; user-select: none; letter-spacing: -0.04em; }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 88px; position: relative; z-index: 1; }
.contact-section .section-label { color: var(--sage); }
.contact-section .section-label::before { background: var(--sage); opacity: 0.4; }
.contact-headline { font-family: var(--serif); font-size: clamp(30px, 3.2vw, 48px); font-weight: 400; color: var(--white); line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 20px; }
.contact-sub { font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.45); line-height: 1.8; margin-bottom: 28px; }
.contact-email { font-family: var(--serif); font-size: 18px; font-weight: 300; color: var(--sage); text-decoration: none; border-bottom: 1px solid rgba(122,158,133,0.3); padding-bottom: 3px; letter-spacing: -0.01em; transition: color 0.2s, border-color 0.2s; }
.contact-email:hover { color: #9EC4A8; border-color: rgba(122,158,133,0.7); }
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-label { font-size: 9px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.3); display: block; margin-bottom: 5px; }
.form-input, .form-select, .form-textarea { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 1px; padding: 11px 15px; color: var(--white); font-family: var(--sans); font-size: 14px; font-weight: 300; outline: none; width: 100%; transition: border-color 0.2s, background 0.2s; }
.form-input::placeholder, .form-textarea::placeholder { color: rgba(255,255,255,0.2); }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--sage); background: rgba(255,255,255,0.06); }
.form-select { appearance: none; cursor: pointer; }
.form-select option { background: var(--ink); }
.form-textarea { resize: vertical; min-height: 92px; }
.form-submit { background: var(--forest); border: none; color: var(--white); font-family: var(--sans); font-size: 12px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; padding: 13px 28px; border-radius: 1px; cursor: pointer; align-self: flex-start; margin-top: 4px; transition: background 0.2s, transform 0.2s; }
.form-submit:hover { background: var(--forest-light); transform: translateY(-1px); }

/* FOOTER */
footer { background: var(--ink); border-top: 1px solid rgba(255,255,255,0.06); padding: 32px 40px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.footer-wordmark { font-family: var(--serif); font-size: 16px; font-weight: 400; color: rgba(255,255,255,0.3); letter-spacing: -0.01em; }
.footer-wordmark span { color: var(--sage); }
.footer-links { display: flex; gap: 28px; list-style: none; }
.footer-links a { font-size: 12px; font-weight: 300; color: rgba(255,255,255,0.25); text-decoration: none; letter-spacing: 0.02em; transition: color 0.2s; }
.footer-links a:hover { color: rgba(255,255,255,0.65); }
.footer-badge { font-size: 11px; font-weight: 300; color: rgba(255,255,255,0.2); display: flex; align-items: center; gap: 8px; }
.footer-badge-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--sage); opacity: 0.5; }

/* NAV SCROLL */
.nav-script { display: none; }

/* RESPONSIVE */
@media (max-width: 900px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .ribbon { display: none; }
  .page-hero { grid-template-columns: 1fr; padding: 56px 20px; gap: 24px; }
  .page-hero-full { padding: 56px 20px; }
  section { padding: 64px 20px; }
  .cta-strip { flex-direction: column; padding: 40px 20px; align-items: flex-start; }
  .subscribe-strip { flex-direction: column; padding: 48px 20px; align-items: flex-start; }
  .sub-input { width: 100%; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .contact-section { padding: 64px 20px; }
  footer { flex-direction: column; gap: 16px; text-align: center; padding: 28px 20px; }
}
