:root {
  --bg: #fafaf7;
  --bg-2: #f3f1ea;
  --bg-3: #ebe7dc;
  --surface: #ffffff;
  --navy: #1e2761;
  --navy-light: #2d3580;
  --navy-deep: #141838;
  --gold: #b8902a;
  --gold-bright: #d4a93a;
  --gold-soft: rgba(184, 144, 42, 0.1);
  --ink: #1a1d24;
  --ink-2: #2d3340;
  --ink-dim: rgba(26, 29, 36, 0.62);
  --ink-faint: rgba(26, 29, 36, 0.4);
  --line: rgba(26, 29, 36, 0.1);
  --line-strong: rgba(26, 29, 36, 0.18);
}

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

body {
  font-family: 'Inter Tight', sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0.1 0 0 0 0 0.1 0 0 0 0 0.15 0 0 0 0.5 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.025;
  mix-blend-mode: multiply;
}

main, nav, header, section, footer { position: relative; z-index: 3; }

/* ============ NAV ============ */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  border-bottom: 1px solid var(--line);
  background: rgba(250, 250, 247, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); }
.logo-mark { width: 36px; height: 36px; flex-shrink: 0; }
.logo-mark svg { width: 100%; height: 100%; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-name { font-family: 'Inter Tight', sans-serif; font-weight: 700; font-size: 20px; letter-spacing: 0.02em; color: var(--navy); }
.logo-name .plus { color: var(--gold); font-weight: 800; }
.logo-sub { font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-top: 4px; font-family: 'JetBrains Mono', monospace; }

.nav-links { display: flex; gap: 36px; list-style: none; align-items: center; }
.nav-links a { color: var(--ink-2); text-decoration: none; font-size: 13px; letter-spacing: 0.04em; font-weight: 500; transition: color 0.3s; }
.nav-links a:hover { color: var(--gold); }
.nav-links a.active { color: var(--gold); }

.nav-cta {
  background: var(--navy);
  color: #fff !important;
  padding: 11px 22px;
  border-radius: 2px;
  transition: all 0.3s !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase;
}
.nav-cta:hover { background: var(--gold) !important; color: #fff !important; transform: translateY(-1px); }
.nav-cta.active { background: var(--gold) !important; }

/* ============ BUTTONS ============ */
.btn-primary {
  background: var(--navy);
  color: #fff;
  padding: 16px 28px;
  border-radius: 2px;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--navy);
  box-shadow: 0 4px 14px rgba(30, 39, 97, 0.18);
  cursor: pointer;
  font-family: inherit;
}
.btn-primary:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
  transform: translateX(4px);
  box-shadow: 0 6px 20px rgba(184, 144, 42, 0.3);
}

.btn-secondary {
  color: var(--navy);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 16px 4px;
  border-bottom: 1px solid var(--navy);
  transition: all 0.3s;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
}
.btn-secondary:hover { color: var(--gold); border-color: var(--gold); }

/* ============ SECTION MARKER ============ */
.section-marker {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 48px;
}
.section-marker .line { flex: 1; height: 1px; background: var(--line-strong); }
.section-marker .num { color: var(--gold); }

/* ============ PAGE HEADER (for inner pages) ============ */
.page-header {
  padding: 80px 48px 60px;
  max-width: 1400px;
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
}
.page-header-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.page-header h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--navy);
  margin-bottom: 24px;
}
.page-header h1 em { font-style: italic; color: var(--gold); font-weight: 400; }
.page-header p {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--ink-2);
  max-width: 720px;
  line-height: 1.5;
}

/* ============ FOOTER ============ */
footer {
  background: var(--navy);
  color: #fff;
  padding: 80px 48px 40px;
}
.footer-inner { max-width: 1400px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.footer-brand-mark { width: 32px; height: 32px; }
.footer-brand-text {
  font-family: 'Inter Tight', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
}
.footer-brand-text .plus { color: var(--gold-bright); font-weight: 800; }
.footer-tag {
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  max-width: 320px;
  line-height: 1.5;
  font-weight: 400;
}
.footer-col h4 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 20px;
  font-weight: 500;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--gold-bright); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ============ HOME — HERO ============ */
.hero {
  padding: 0;
  position: relative;
  overflow: hidden;
  min-height: 680px;
  display: flex;
  flex-direction: column;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%); }
.hero-bg-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background-image: url('https://images.unsplash.com/photo-1576086213369-97a306d36557?w=1600&q=80');
  background-size: cover;
  background-position: center;
  opacity: 0.55;
  mask-image: linear-gradient(90deg, transparent 0%, black 35%, black 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 35%, black 100%);
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 25% 50%, var(--bg) 0%, transparent 60%),
    linear-gradient(180deg, transparent 0%, var(--bg) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 48px 60px;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 40px;
  padding: 8px 14px;
  border: 1px solid rgba(184, 144, 42, 0.35);
  border-radius: 2px;
  background: var(--gold-soft);
  align-self: flex-start;
}
.hero-tag .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.hero h1 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(48px, 8vw, 112px);
  line-height: 0.96;
  letter-spacing: -0.035em;
  color: var(--navy);
  max-width: 1100px;
  margin-bottom: 32px;
}
.hero h1 .accent { color: var(--gold); font-style: italic; font-weight: 400; }
.hero h1 .ampersand { font-style: italic; font-weight: 300; color: var(--ink-dim); }
.hero-subhead {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 30px);
  color: var(--ink-2);
  margin-bottom: 48px;
  letter-spacing: -0.01em;
}
.hero-subhead .sm { font-size: 0.5em; vertical-align: super; font-style: normal; letter-spacing: 0.05em; color: var(--gold); margin-left: 2px; }
.hero-ctas { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; margin-bottom: 60px; }

.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-strong);
  position: relative;
  z-index: 2;
  background: var(--surface);
  max-width: 1400px;
  margin: 0 auto;
  width: calc(100% - 96px);
  box-shadow: 0 2px 12px rgba(26, 29, 36, 0.04);
}
.stat { padding: 32px 28px; border-right: 1px solid var(--line); position: relative; }
.stat:last-child { border-right: none; }
.stat-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.stat-tag::before { content: ''; width: 14px; height: 1px; background: var(--gold); }
.stat .num {
  font-family: 'Fraunces', serif;
  font-size: 56px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--navy);
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.stat .num .plus { color: var(--gold); font-weight: 500; }
.stat .label { font-family: 'Inter Tight', sans-serif; font-size: 13px; letter-spacing: 0.04em; color: var(--ink-dim); margin-top: 12px; font-weight: 500; }

/* ============ SERVICES PREVIEW (home) ============ */
.services {
  padding: 140px 48px 100px;
  max-width: 1400px;
  margin: 0 auto;
}
.services-head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  margin-bottom: 72px;
  align-items: end;
}
.services h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(40px, 5.5vw, 68px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--navy);
}
.services h2 em { font-weight: 400; color: var(--gold); font-style: italic; }
.services-intro { font-size: 16px; line-height: 1.65; color: var(--ink-2); max-width: 520px; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  background: var(--surface);
}
.service-card { padding: 40px 28px 48px; border-right: 1px solid var(--line); transition: background 0.4s; }
.service-card:last-child { border-right: none; }
.service-card:hover { background: var(--gold-soft); }
.service-icon { width: 40px; height: 40px; margin-bottom: 28px; color: var(--gold); }
.service-icon svg { width: 100%; height: 100%; }
.service-num { font-family: 'JetBrains Mono', monospace; font-size: 10px; color: var(--gold); letter-spacing: 0.16em; margin-bottom: 14px; text-transform: uppercase; }
.service-card h3 { font-family: 'Fraunces', serif; font-size: 28px; font-weight: 500; line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 16px; color: var(--navy); }
.service-card p { font-size: 14.5px; line-height: 1.6; color: var(--ink-2); }

/* ============ FEATURE / ABOUT PREVIEW ============ */
.feature {
  padding: 120px 48px;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.feature::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(30, 39, 97, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(184, 144, 42, 0.06) 0%, transparent 50%);
}
.feature-inner { max-width: 1400px; margin: 0 auto; position: relative; z-index: 2; }
.feature-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 80px; align-items: center; }
.feature-image {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 24px 60px rgba(30, 39, 97, 0.18);
}
.feature-image img { width: 100%; height: 100%; object-fit: cover; }
.feature-image-tag {
  position: absolute;
  bottom: 24px;
  left: 24px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  z-index: 2;
  background: rgba(255, 255, 255, 0.9);
  padding: 8px 12px;
  border: 1px solid rgba(184, 144, 42, 0.3);
  backdrop-filter: blur(8px);
}
.feature-text h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
  color: var(--navy);
}
.feature-text h2 em { font-style: italic; font-weight: 400; color: var(--gold); }
.feature-text p { font-family: 'Fraunces', serif; font-size: 18px; line-height: 1.65; color: var(--ink-2); margin-bottom: 20px; font-weight: 400; }
.feature-text p:last-of-type { margin-bottom: 32px; }
.feature-text .lede { font-size: 22px; color: var(--navy); font-weight: 500; line-height: 1.5; }
.feature-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--navy);
  transition: gap 0.3s, color 0.3s, border-color 0.3s;
  font-family: 'JetBrains Mono', monospace;
}
.feature-cta:hover { gap: 18px; color: var(--gold); border-color: var(--gold); }

/* ============ TESTIMONIALS ============ */
.testimonials { padding: 140px 48px 120px; max-width: 1400px; margin: 0 auto; }
.test-header {
  font-family: 'Fraunces', serif;
  font-size: clamp(40px, 5.5vw, 68px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.03em;
  max-width: 900px;
  margin-bottom: 64px;
  color: var(--navy);
}
.test-header em { font-weight: 400; color: var(--gold); font-style: italic; }
.test-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 24px; }
.test {
  padding: 36px 32px;
  border: 1px solid var(--line-strong);
  background: var(--surface);
  position: relative;
  transition: all 0.4s;
  overflow: hidden;
}
.test::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.test:hover { border-color: rgba(184, 144, 42, 0.5); transform: translateY(-3px); box-shadow: 0 12px 30px rgba(30, 39, 97, 0.1); }
.test:hover::before { opacity: 1; }
.test-1 { grid-column: 1 / 8; }
.test-2 { grid-column: 8 / 13; }
.test-3 { grid-column: 1 / 6; }
.test-4 { grid-column: 6 / 10; }
.test-5 { grid-column: 10 / 13; }
.test-6 {
  grid-column: 1 / 13;
  padding: 64px 56px;
  text-align: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  border-color: var(--navy);
  position: relative;
  color: #fff;
}
.test-6::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 50% 0%, rgba(184, 144, 42, 0.2) 0%, transparent 60%);
  pointer-events: none;
}
.test-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.test-tag::before { content: ''; width: 16px; height: 1px; background: var(--gold); }
.test blockquote {
  font-family: 'Fraunces', serif;
  font-size: 17px;
  line-height: 1.55;
  font-weight: 400;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin-bottom: 24px;
}
.test-6 blockquote {
  font-size: 30px;
  line-height: 1.32;
  color: #fff;
  max-width: 880px;
  margin: 0 auto 28px;
  font-weight: 300;
  position: relative;
  z-index: 2;
}
.test-6 blockquote em { color: var(--gold-bright); font-weight: 400; font-style: italic; }
.test cite { font-style: normal; font-size: 13px; display: block; padding-top: 16px; border-top: 1px solid var(--line); }
.test-6 cite { border-color: rgba(184, 144, 42, 0.35); position: relative; z-index: 2; }
.test cite strong { font-weight: 600; letter-spacing: 0.01em; display: block; margin-bottom: 2px; color: var(--navy); font-family: 'Inter Tight', sans-serif; }
.test-6 cite strong { color: #fff; }
.test cite span { color: var(--ink-faint); font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; }
.test-6 cite span { color: rgba(255, 255, 255, 0.65); }

/* ============ AFFILIATIONS ============ */
.affiliations { padding: 120px 48px; background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.aff-inner { max-width: 1400px; margin: 0 auto; }
.aff-head { text-align: center; margin-bottom: 56px; }
.aff-head h2 { font-family: 'Fraunces', serif; font-size: 40px; font-weight: 400; letter-spacing: -0.025em; margin-bottom: 12px; color: var(--navy); }
.aff-head h2 em { color: var(--gold); font-style: italic; }
.aff-head p { color: var(--ink-faint); font-size: 11px; font-family: 'JetBrains Mono', monospace; letter-spacing: 0.16em; text-transform: uppercase; }
.aff-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--line-strong); border-left: 1px solid var(--line-strong); background: var(--surface); }
.aff-item {
  padding: 32px 24px;
  border-right: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  font-family: 'Fraunces', serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 110px;
  transition: all 0.3s;
  color: var(--ink-2);
}
.aff-item:hover { background: var(--gold-soft); color: var(--navy); }
.aff-item.featured { background: var(--navy); color: var(--gold-bright); font-style: italic; }

/* ============ CTA ============ */
.cta { padding: 160px 48px; text-align: center; position: relative; overflow: hidden; background: var(--bg); }
.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 50% 50%, rgba(30, 39, 97, 0.05) 0%, transparent 50%);
}
.cta-inner { max-width: 1000px; margin: 0 auto; position: relative; z-index: 2; }
.cta h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(48px, 6.5vw, 96px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 32px;
  color: var(--navy);
}
.cta h2 em { font-style: italic; font-weight: 400; color: var(--gold); display: block; }
.cta p { font-family: 'Fraunces', serif; font-size: 20px; color: var(--ink-2); margin-bottom: 48px; max-width: 600px; margin-left: auto; margin-right: auto; line-height: 1.5; font-weight: 400; }
.cta-ctas { display: flex; gap: 16px; justify-content: center; align-items: center; flex-wrap: wrap; }

/* ============ ABOUT PAGE ============ */
.about-bio {
  padding: 100px 48px;
  max-width: 1400px;
  margin: 0 auto;
}
.about-bio-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: start;
}
.bio-image {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--bg-3);
  border-radius: 2px;
  box-shadow: 0 24px 60px rgba(30, 39, 97, 0.18);
}
.bio-image img { width: 100%; height: 100%; object-fit: cover; }
.bio-image-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--bg-3), var(--bg-2));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  color: var(--ink-faint);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.bio-image-placeholder svg { width: 80px; height: 80px; opacity: 0.5; }

.bio-content h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--navy);
  margin-bottom: 8px;
}
.bio-content h2 em { font-style: italic; color: var(--gold); }
.bio-credentials {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
}
.bio-content p {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-2);
  margin-bottom: 20px;
  font-weight: 400;
}
.bio-content .lede { font-size: 22px; color: var(--navy); font-weight: 500; }

.cred-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 32px;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}
.cred-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.5;
}
.cred-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
}

.about-values {
  padding: 120px 48px;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.values-inner { max-width: 1400px; margin: 0 auto; }
.values-head { max-width: 900px; margin-bottom: 64px; }
.values-head h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(40px, 5.5vw, 68px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--navy);
}
.values-head h2 em { font-style: italic; color: var(--gold); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.value-card {
  background: var(--surface);
  padding: 40px 32px;
  border-radius: 2px;
  border: 1px solid var(--line);
  transition: all 0.3s;
}
.value-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: 0 12px 30px rgba(30, 39, 97, 0.1); }
.value-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.16em;
  margin-bottom: 20px;
}
.value-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.15;
}
.value-card p { font-size: 15px; line-height: 1.6; color: var(--ink-2); }

/* ============ SERVICES PAGE ============ */
.services-detail {
  padding: 80px 48px 100px;
  max-width: 1400px;
  margin: 0 auto;
}
.service-row {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  padding: 80px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.service-row:first-child { padding-top: 60px; }
.service-row:last-child { border-bottom: none; }

.service-row-num {
  font-family: 'Fraunces', serif;
  font-size: clamp(80px, 10vw, 140px);
  font-weight: 300;
  line-height: 0.9;
  color: var(--bg-3);
  letter-spacing: -0.05em;
}
.service-row-num .accent { color: var(--gold); }

.service-row-content h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  letter-spacing: -0.025em;
  color: var(--navy);
  margin-bottom: 24px;
  line-height: 1.1;
}
.service-row-content h2 em { font-style: italic; color: var(--gold); }
.service-row-content p {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-2);
  margin-bottom: 16px;
}
.service-row-content .lede { font-size: 20px; color: var(--navy); font-weight: 500; margin-bottom: 24px; }
.service-row-features {
  list-style: none;
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 32px;
}
.service-row-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.5;
}
.service-row-features li svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ============ GALLERY PAGE ============ */
.gallery-section { padding: 80px 48px 100px; max-width: 1400px; margin: 0 auto; }
.gallery-intro { max-width: 720px; margin-bottom: 64px; }
.gallery-intro p {
  font-family: 'Fraunces', serif;
  font-size: 19px;
  line-height: 1.65;
  color: var(--ink-2);
  font-weight: 400;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 180px;
  gap: 16px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  background: var(--bg-3);
  cursor: pointer;
  transition: transform 0.4s;
}
.gallery-item:hover { transform: translateY(-3px); }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.gallery-item-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px 20px;
  background: linear-gradient(180deg, transparent, rgba(30, 39, 97, 0.85));
  color: #fff;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; transform: translateY(0); }

.g-1 { grid-column: span 6; grid-row: span 2; }
.g-2 { grid-column: span 6; grid-row: span 1; }
.g-3 { grid-column: span 3; grid-row: span 1; }
.g-4 { grid-column: span 3; grid-row: span 1; }
.g-5 { grid-column: span 4; grid-row: span 2; }
.g-6 { grid-column: span 4; grid-row: span 1; }
.g-7 { grid-column: span 4; grid-row: span 1; }
.g-8 { grid-column: span 6; grid-row: span 1; }
.g-9 { grid-column: span 6; grid-row: span 1; }

/* ============ CONTACT PAGE ============ */
.contact-section { padding: 80px 48px 120px; max-width: 1400px; margin: 0 auto; }
.contact-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: start; }

.contact-info h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  letter-spacing: -0.025em;
  color: var(--navy);
  margin-bottom: 24px;
  line-height: 1.1;
}
.contact-info h2 em { font-style: italic; color: var(--gold); }
.contact-info > p {
  font-family: 'Fraunces', serif;
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink-2);
  margin-bottom: 48px;
}

.contact-methods { display: flex; flex-direction: column; gap: 24px; }
.contact-method {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 2px;
  text-decoration: none;
  color: var(--ink);
  transition: all 0.3s;
}
.contact-method:hover { border-color: var(--gold); transform: translateX(4px); box-shadow: 0 8px 24px rgba(30, 39, 97, 0.08); }
.contact-method-icon {
  width: 48px; height: 48px;
  background: var(--gold-soft);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.contact-method-icon svg { width: 24px; height: 24px; }
.contact-method-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.contact-method-value {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  color: var(--navy);
  font-weight: 500;
}

.contact-hours { margin-top: 40px; padding-top: 40px; border-top: 1px solid var(--line); }
.contact-hours h4 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.contact-hours p { font-size: 15px; color: var(--ink-2); line-height: 1.7; }

.contact-form {
  background: var(--surface);
  padding: 48px;
  border: 1px solid var(--line);
  border-radius: 2px;
  box-shadow: 0 24px 60px rgba(30, 39, 97, 0.08);
}
.contact-form h3 {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.contact-form .form-sub {
  font-size: 14px;
  color: var(--ink-dim);
  margin-bottom: 32px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { margin-bottom: 20px; }
.form-field label {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 8px;
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line-strong);
  background: var(--bg);
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px;
  color: var(--ink);
  border-radius: 2px;
  transition: border-color 0.3s, background 0.3s;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus { outline: none; border-color: var(--gold); background: #fff; }
.form-field textarea { resize: vertical; min-height: 120px; font-family: 'Inter Tight', sans-serif; }
.form-submit { margin-top: 12px; width: 100%; justify-content: center; }

/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {
  nav { padding: 16px 20px; }
  .logo-sub { display: none; }
  .nav-links { gap: 16px; }
  .nav-links li:not(:last-child) { display: none; }
  .page-header { padding: 48px 20px 40px; }
  .hero { min-height: 560px; }
  .hero-content { padding: 60px 20px 40px; }
  .hero-bg-image { width: 100%; opacity: 0.28; }
  .hero h1 { font-size: clamp(42px, 11vw, 64px); }
  .stat-strip { grid-template-columns: repeat(2, 1fr); width: calc(100% - 40px); }
  .stat { border-right: none; border-bottom: 1px solid var(--line); }
  .stat:nth-child(odd) { border-right: 1px solid var(--line); }
  .services { padding: 80px 20px 60px; }
  .services-head { grid-template-columns: 1fr; gap: 32px; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .service-card:nth-child(odd) { border-right: 1px solid var(--line); }
  .service-card:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .feature { padding: 80px 20px; }
  .feature-grid { grid-template-columns: 1fr; gap: 48px; }
  .feature-image { aspect-ratio: 3/4; max-width: 400px; margin: 0 auto; }
  .testimonials { padding: 80px 20px; }
  .test-grid > * { grid-column: 1 / 13 !important; }
  .test-6 { padding: 40px 28px; }
  .test-6 blockquote { font-size: 22px; }
  .affiliations { padding: 80px 20px; }
  .aff-list { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .cta { padding: 100px 20px; }
  .about-bio { padding: 60px 20px; }
  .about-bio-grid { grid-template-columns: 1fr; gap: 48px; }
  .bio-image { max-width: 400px; margin: 0 auto; }
  .cred-list { grid-template-columns: 1fr; }
  .about-values { padding: 80px 20px; }
  .values-grid { grid-template-columns: 1fr; gap: 16px; }
  .services-detail { padding: 60px 20px 80px; }
  .service-row { grid-template-columns: 1fr; gap: 32px; padding: 60px 0; }
  .service-row-num { font-size: 80px; }
  .service-row-features { grid-template-columns: 1fr; }
  .gallery-section { padding: 60px 20px 80px; }
  .gallery-grid { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 140px; }
  .g-1, .g-5 { grid-column: span 6; grid-row: span 2; }
  .g-2, .g-8, .g-9 { grid-column: span 6; }
  .g-3, .g-4 { grid-column: span 3; }
  .g-6, .g-7 { grid-column: span 3; }
  .contact-section { padding: 60px 20px 80px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-form { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
}

/* Reveals */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal.in { opacity: 1; transform: translateY(0); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.hero h1, .hero-subhead, .hero-ctas, .hero-tag,
.page-header h1, .page-header p, .page-header-tag {
  animation: fadeUp 1s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}
.hero-tag, .page-header-tag { animation-delay: 0.1s; }
.hero h1, .page-header h1 { animation-delay: 0.25s; }
.hero-subhead, .page-header p { animation-delay: 0.45s; }
.hero-ctas { animation-delay: 0.6s; }
