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

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

:root {
  --ink: #1a1a18;
  --ink-light: #5a5a55;
  --ink-faint: #9a9a94;
  --paper: #fafaf8;
  --paper-warm: #f4f3ef;
  --accent: #1a3a5c;
  --accent-light: #e8eef5;
  --rule: #e2e1dc;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Outfit', sans-serif;
  --max: 1100px;
  --nav-h: 72px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(250,250,248,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
}

.nav-logo {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--ink);
  text-decoration: none;
}

.nav-logo span { font-style: italic; color: var(--accent); }

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-light);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover, .nav-links a.active { color: var(--ink); }

.nav-cta {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--paper);
  background: var(--accent);
  padding: 10px 24px;
  text-decoration: none;
  border-radius: 2px;
  transition: opacity 0.2s;
}

.nav-cta:hover { opacity: 0.85; }

.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

/* PAGE WRAPPER */
.page { padding-top: var(--nav-h); }

/* HERO */
.hero {
  min-height: calc(100vh - var(--nav-h));
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: var(--max);
  margin: 0 auto;
  padding: 80px 48px;
  align-items: center;
  gap: 80px;
}

.hero-text { }

.hero-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--ink-faint);
}

.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(44px, 5.5vw, 72px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 28px;
}

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

.hero-sub {
  font-size: 16px;
  font-weight: 300;
  color: var(--ink-light);
  line-height: 1.75;
  margin-bottom: 44px;
  max-width: 440px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}

.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 32px;
  text-decoration: none;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}

.btn-primary:hover { opacity: 0.85; }

.btn-ghost {
  display: inline-block;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 0;
  text-decoration: none;
  border: none;
  background: none;
  cursor: pointer;
  border-bottom: 1px solid var(--rule);
  transition: border-color 0.2s;
}

.btn-ghost:hover { border-color: var(--ink); }

.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-stat-card {
  background: white;
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 28px 32px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.hero-stat-card:first-child {
  background: var(--accent);
  border-color: var(--accent);
}

.stat-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 8px;
}

.hero-stat-card:first-child .stat-label { color: rgba(255,255,255,0.55); }

.stat-value {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 300;
  color: var(--ink);
  line-height: 1;
}

.hero-stat-card:first-child .stat-value { color: white; }

.stat-sub {
  font-size: 12px;
  color: var(--ink-faint);
  text-align: right;
  max-width: 120px;
  line-height: 1.5;
}

.hero-stat-card:first-child .stat-sub { color: rgba(255,255,255,0.5); }

/* SECTIONS */
.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 100px 48px;
}

.section-rule {
  border: none;
  border-top: 1px solid var(--rule);
  max-width: var(--max);
  margin: 0 auto 0;
}

.section-eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--ink-faint);
}

.section-h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.12;
  color: var(--ink);
  margin-bottom: 20px;
}

.section-h2 em { font-style: italic; color: var(--accent); }

.section-sub {
  font-size: 16px;
  font-weight: 300;
  color: var(--ink-light);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 56px;
}

/* SERVICES GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: 4px;
  overflow: hidden;
}

.service-item {
  background: var(--paper);
  padding: 40px 36px;
  transition: background 0.2s;
}

.service-item:hover { background: white; }

.service-num {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 400;
  color: var(--accent);
  margin-bottom: 20px;
  font-style: italic;
  letter-spacing: 0.05em;
}

.service-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.3;
}

.service-desc {
  font-size: 15px;
  font-weight: 300;
  color: var(--ink-light);
  line-height: 1.75;
}

/* PILLARS */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 64px;
}

.pillar { border-top: 1px solid var(--rule); padding-top: 28px; }

.pillar-num {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 400;
  font-style: italic;
  color: var(--accent);
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

.pillar-title {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.3;
}

.pillar-copy {
  font-size: 15px;
  font-weight: 300;
  color: var(--ink-light);
  line-height: 1.75;
}

/* ABOUT SPLIT */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}

.about-body p {
  font-size: 16px;
  font-weight: 300;
  color: var(--ink-light);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-body p:last-child { margin-bottom: 0; }

.credentials {
  margin-top: 40px;
  border-top: 1px solid var(--rule);
  padding-top: 28px;
}

.credential-item {
  display: flex;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--rule);
  align-items: baseline;
}

.credential-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
  min-width: 80px;
}

.credential-val {
  font-size: 15px;
  font-weight: 300;
  color: var(--ink);
}

/* CONTACT */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 100px;
  align-items: start;
}

.contact-info p {
  font-size: 15px;
  font-weight: 300;
  color: var(--ink-light);
  line-height: 1.8;
  margin-bottom: 16px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--rule);
  align-items: baseline;
}

.contact-info-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
  min-width: 72px;
}

.contact-info-val {
  font-size: 15px;
  color: var(--ink);
  font-weight: 300;
}

/* FORM */
.contact-form { display: flex; flex-direction: column; gap: 20px; }

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

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

.form-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.form-control {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  color: var(--ink);
  background: white;
  border: 1px solid var(--rule);
  border-radius: 2px;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.form-control:focus { border-color: var(--accent); }

textarea.form-control { resize: vertical; min-height: 120px; }

select.form-control { cursor: pointer; }

.form-note {
  font-size: 12px;
  color: var(--ink-faint);
  line-height: 1.6;
}

.form-success {
  display: none;
  background: var(--accent-light);
  border: 1px solid #c5d5e8;
  border-radius: 4px;
  padding: 20px 24px;
  font-size: 15px;
  color: var(--accent);
}

/* FOOTER */
footer {
  background: var(--ink);
  color: rgba(255,255,255,0.5);
  padding: 48px;
  margin-top: 80px;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-logo {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
  display: block;
}

.footer-logo span { font-style: italic; }

.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
}

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

.footer-links a {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}

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

.footer-disc {
  width: 100%;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  margin-top: 8px;
  font-size: 12px;
  line-height: 1.7;
  color: rgba(255,255,255,0.3);
}

/* PAGE HEADER */
.page-header {
  padding: 80px 48px 60px;
  max-width: var(--max);
  margin: 0 auto;
}

.page-header-eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.page-header-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--ink-faint);
}

.page-header h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 66px);
  font-weight: 300;
  line-height: 1.08;
  color: var(--ink);
}

.page-header h1 em { font-style: italic; color: var(--accent); }

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-up { animation: fadeUp 0.7s ease forwards; }
.fade-up-2 { animation: fadeUp 0.7s 0.15s ease forwards; opacity: 0; }
.fade-up-3 { animation: fadeUp 0.7s 0.3s ease forwards; opacity: 0; }
.fade-up-4 { animation: fadeUp 0.7s 0.45s ease forwards; opacity: 0; }

/* RESPONSIVE */
@media (max-width: 768px) {
  nav { padding: 0 24px; }
  .nav-links, .nav-cta { display: none; }
  .nav-mobile-toggle { display: block; }

  .hero { grid-template-columns: 1fr; padding: 48px 24px; gap: 48px; min-height: auto; }
  .hero-visual { display: none; }
  .section { padding: 64px 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; gap: 32px; }
  .about-split, .contact-split { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }
  .page-header { padding: 48px 24px 40px; }
  footer { padding: 40px 24px; }
  .footer-inner { flex-direction: column; gap: 28px; }
}
