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

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

:root {
  --navy:     #0C1D38;
  --navy2:    #142748;
  --gold:     #B8965A;
  --gold-lt:  #D4AE7A;
  --gold-dim: rgba(184,150,90,0.15);
  --smoke:    #F4F5F7;
  --white:    #FFFFFF;
  --gray:     #64748B;
  --rule:     #DDE1E8;
  --text:     #1A2535;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── TOPBAR ── */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,0.5);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  padding: 7px 24px;
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--white);
  border-bottom: 1px solid var(--rule);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-emblem {
  width: 36px;
  height: 36px;
  background: var(--navy);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-wordmark { line-height: 1.15; }

.nav-wordmark .co-name {
  font-family: 'EB Garamond', serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--navy);
  display: block;
}

.nav-wordmark .co-tag {
  font-size: 10px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gray);
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--gray);
  padding: 6px 11px;
  border-radius: 4px;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}

.nav-links a:hover { color: var(--navy); background: var(--smoke); }
.nav-links a.active { color: var(--navy); font-weight: 600; }

.nav-links .nav-contact a {
  background: var(--navy);
  color: var(--white);
  padding: 7px 16px;
}

.nav-links .nav-contact a:hover { background: var(--navy2); color: var(--white); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.2s;
}

/* ── PAGE HERO ── */
.page-hero {
  background: var(--navy);
  color: var(--white);
  padding: 80px 40px 76px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.018) 0, rgba(255,255,255,0.018) 1px, transparent 1px, transparent 72px),
    repeating-linear-gradient(0deg,  rgba(255,255,255,0.018) 0, rgba(255,255,255,0.018) 1px, transparent 1px, transparent 72px);
  pointer-events: none;
}

.page-hero-inner {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
}

.page-eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.page-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.page-hero h1 {
  font-family: 'EB Garamond', serif;
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 400;
  line-height: 1.18;
  margin-bottom: 22px;
}

.page-hero h1 em { font-style: italic; color: var(--gold-lt); }

.page-hero p {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255,255,255,0.68);
  max-width: 560px;
  line-height: 1.72;
}

/* ── SECTIONS ── */
.section { padding: 80px 40px; }
.section-sm { padding: 56px 40px; }
.section-inner { max-width: 1080px; margin: 0 auto; }
.section-dark { background: var(--navy); color: var(--white); }
.section-smoke { background: var(--smoke); }

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-dark .eyebrow { color: var(--gold-lt); }

h2.section-title {
  font-family: 'EB Garamond', serif;
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.22;
  margin-bottom: 18px;
}

.section-dark h2.section-title { color: var(--white); }

.section-lead {
  font-size: 16px;
  color: var(--gray);
  max-width: 620px;
  line-height: 1.78;
}

.section-dark .section-lead { color: rgba(255,255,255,0.58); }

hr.divider {
  border: none;
  border-top: 1px solid var(--rule);
  margin: 0 40px;
}

/* ── GRID CARDS ── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  margin-top: 48px;
}

.card-grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--white);
  padding: 32px 28px;
  transition: background 0.18s;
}

.card:hover { background: var(--smoke); }
.section-dark .card { background: rgba(255,255,255,0.04); border: none; }
.section-dark .card:hover { background: rgba(255,255,255,0.08); }

.card-icon {
  width: 40px;
  height: 40px;
  background: var(--navy);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  flex-shrink: 0;
}

.section-dark .card-icon { background: rgba(255,255,255,0.1); }

.card h3 {
  font-family: 'EB Garamond', serif;
  font-size: 19px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 9px;
}

.section-dark .card h3 { color: var(--white); }

.card p {
  font-size: 13.5px;
  color: var(--gray);
  line-height: 1.72;
}

.section-dark .card p { color: rgba(255,255,255,0.5); }

/* ── STAT ROW ── */
.stat-row {
  display: flex;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.1);
  margin-top: 52px;
}

.stat-block {
  flex: 1;
  padding: 32px 28px;
  border-right: 1px solid rgba(255,255,255,0.1);
}

.stat-block:last-child { border-right: none; }

.stat-val {
  font-family: 'EB Garamond', serif;
  font-size: 36px;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* ── PULL QUOTE ── */
.pull-quote {
  border-left: 3px solid var(--gold);
  padding: 24px 32px;
  margin: 40px 0;
}

.pull-quote blockquote {
  font-family: 'EB Garamond', serif;
  font-size: 22px;
  font-style: italic;
  color: var(--navy);
  line-height: 1.5;
}

.section-dark .pull-quote blockquote { color: var(--white); }

/* ── PILLAR LIST ── */
.pillar-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--rule);
  margin-top: 48px;
}

.pillar-item {
  display: flex;
  gap: 32px;
  padding: 28px 32px;
  border-bottom: 1px solid var(--rule);
  align-items: flex-start;
  transition: background 0.15s;
}

.pillar-item:last-child { border-bottom: none; }
.pillar-item:hover { background: var(--smoke); }

.pillar-num {
  font-family: 'EB Garamond', serif;
  font-size: 28px;
  color: var(--gold);
  line-height: 1;
  min-width: 36px;
  padding-top: 2px;
}

.pillar-item h3 {
  font-family: 'EB Garamond', serif;
  font-size: 19px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 6px;
}

.pillar-item p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
}

/* ── CONTACT FORM ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  margin-top: 48px;
  align-items: start;
}

.contact-detail { display: flex; flex-direction: column; gap: 16px; margin-top: 28px; }

.crow { display: flex; gap: 14px; align-items: flex-start; }

.crow-label {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  min-width: 72px;
  padding-top: 2px;
}

.crow-val {
  font-size: 14px;
  color: var(--navy);
  line-height: 1.55;
}

.contact-form { display: flex; flex-direction: column; gap: 14px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.form-group { display: flex; flex-direction: column; gap: 5px; }

.form-group label {
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
}

.form-group input,
.form-group textarea,
.form-group select {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 3px;
  padding: 10px 13px;
  outline: none;
  transition: border-color 0.18s;
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--navy); }

.form-group textarea { resize: vertical; min-height: 110px; }

.btn-submit {
  background: var(--navy);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  border-radius: 3px;
  padding: 13px 26px;
  cursor: pointer;
  align-self: flex-start;
  transition: background 0.18s;
}

.btn-submit:hover { background: var(--navy2); }

.form-note { font-size: 12px; color: var(--gray); }

.form-success {
  display: none;
  background: #EEF6F1;
  border: 1px solid #A3D4B5;
  border-radius: 3px;
  padding: 14px 18px;
  font-size: 14px;
  color: #1A4731;
}

/* ── FOOTER ── */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.42);
  padding: 36px 40px;
  margin-top: auto;
}

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

.footer-logo {
  font-family: 'EB Garamond', serif;
  font-size: 15px;
  color: rgba(255,255,255,0.65);
}

.footer-logo .pvx {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-left: 8px;
}

.footer-links {
  display: flex;
  gap: 20px;
  list-style: none;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.38);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-links a:hover { color: rgba(255,255,255,0.7); }

.footer-copy { font-size: 11px; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 66px; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--rule); padding: 12px 0; }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 10px 24px; border-radius: 0; }
  .nav-hamburger { display: flex; }
  nav { position: relative; }
}

@media (max-width: 768px) {
  .nav-inner { padding: 0 20px; }
  .page-hero { padding: 60px 20px 56px; }
  .section { padding: 60px 20px; }
  hr.divider { margin: 0 20px; }
  .card-grid { grid-template-columns: 1fr; }
  .card-grid-2 { grid-template-columns: 1fr; }
  .stat-row { flex-direction: column; }
  .stat-block { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .stat-block:last-child { border-bottom: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .pillar-item { flex-direction: column; gap: 8px; }
}

@media (prefers-reduced-motion: reduce) { * { transition: none !important; } }
