:root {
  --navy:        #0b1d3a;
  --navy-deep:   #07142a;
  --navy-soft:   #14305c;
  --slate:       #4a5775;
  --slate-soft:  #6b7794;
  --paper:       #fafaf7;
  --paper-warm:  #f3efe7;
  --paper-line:  #e6e1d4;
  --ink:         #161a23;
  --gold:        #b08a4a;
  --gold-deep:   #8a6a32;
  --rule:        rgba(11, 29, 58, 0.12);

  --serif: "Fraunces", "Iowan Old Style", "Times New Roman", Georgia, serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--gold-deep); }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--navy); color: #fff; padding: 12px 16px;
  z-index: 100;
}
.skip-link:focus { left: 0; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ============ HEADER ============ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 250, 247, 0.85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--rule);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.brand {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--navy);
}
.brand-mark {
  width: 34px; height: 34px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--navy); color: var(--paper);
  font-family: var(--serif); font-weight: 500; font-size: 18px;
  letter-spacing: 0;
  border-radius: 2px;
}
.brand-mark-sm { width: 28px; height: 28px; font-size: 15px; }
.brand-name { font-weight: 500; }

.site-nav {
  display: flex; gap: 32px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.site-nav a {
  color: var(--slate);
  position: relative;
  padding: 6px 0;
  transition: color 0.2s ease;
}
.site-nav a::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px; background: var(--navy);
  transition: width 0.25s ease;
}
.site-nav a:hover { color: var(--navy); }
.site-nav a:hover::after { width: 100%; }

@media (max-width: 700px) {
  .site-nav { gap: 18px; font-size: 13px; }
  .brand-name { display: none; }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 120px 0 100px;
  background:
    radial-gradient(ellipse 1200px 500px at 80% -100px, rgba(176,138,74,0.08), transparent 60%),
    radial-gradient(ellipse 800px 400px at 0% 100%, rgba(11,29,58,0.04), transparent 60%),
    var(--paper);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, var(--rule) 1px, transparent 1px);
  background-size: 25% 100%;
  opacity: 0.4;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  max-width: 920px;
}
.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 28px;
  padding-left: 28px;
  position: relative;
}
.eyebrow::before {
  content: "";
  position: absolute; left: 0; top: 50%;
  width: 18px; height: 1px;
  background: var(--gold-deep);
}
.eyebrow-light { color: rgba(255,255,255,0.7); }
.eyebrow-light::before { background: rgba(255,255,255,0.7); }

.hero-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.4rem, 6.5vw, 5rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--navy);
  margin: 0 0 36px;
}
.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-deep);
}
.hero-lede {
  font-size: 19px;
  line-height: 1.6;
  color: var(--slate);
  max-width: 620px;
  margin: 0 0 44px;
}
.hero-actions {
  display: flex; gap: 18px; flex-wrap: wrap;
}
.hero-rule {
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--rule);
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px;
  font-family: var(--sans);
  font-size: 14px; font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn-primary {
  background: var(--navy); color: var(--paper);
  border-color: var(--navy);
}
.btn-primary:hover {
  background: var(--navy-deep); color: var(--paper);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(11,29,58,0.15);
}
.btn-ghost {
  background: transparent; color: var(--navy);
  border-color: var(--rule);
}
.btn-ghost:hover {
  border-color: var(--navy); color: var(--navy);
}
.btn-large { padding: 18px 36px; font-size: 14px; }

/* ============ SECTIONS ============ */
.section {
  padding: 110px 0;
  border-top: 1px solid var(--rule);
}
.section-philosophy { background: var(--paper); }
.section-criteria { background: var(--paper-warm); }
.section-founder { background: var(--paper); }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 880px) {
  .grid-2 { grid-template-columns: 1fr; gap: 36px; }
  .section { padding: 72px 0; }
}

.col-label {
  position: sticky; top: 96px;
}
.section-number {
  display: block;
  font-family: var(--serif);
  font-weight: 300;
  font-size: 14px;
  color: var(--gold-deep);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.section-eyebrow {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--navy);
  margin: 0;
}

.col-content { max-width: 640px; }
.lead {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 40px;
}
.col-content p { margin: 0 0 1.1em; color: var(--slate); }
.col-content p strong { color: var(--ink); font-weight: 600; }

/* PRINCIPLES */
.principles {
  list-style: none; padding: 0; margin: 48px 0 0;
  display: grid; gap: 32px;
}
.principles li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
}
.principle-num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--gold-deep);
  font-size: 15px;
  padding-top: 4px;
}
.principles h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.2rem;
  color: var(--navy);
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.principles p { margin: 0; color: var(--slate); font-size: 16px; }

/* CRITERIA GRID */
.section-header { margin-bottom: 72px; }
.criteria-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--paper-line);
  border: 1px solid var(--paper-line);
}
.criterion {
  background: var(--paper-warm);
  padding: 44px 36px;
  transition: background 0.25s ease;
}
.criterion:hover { background: var(--paper); }
.criterion-icon {
  width: 44px; height: 44px;
  color: var(--navy);
  margin-bottom: 24px;
}
.criterion-icon svg { width: 100%; height: 100%; }
.criterion h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.25rem;
  color: var(--navy);
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}
.criterion p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--slate);
  margin: 0;
}
.criterion strong { color: var(--ink); font-weight: 600; }

@media (max-width: 880px) {
  .criteria-grid { grid-template-columns: 1fr; }
}
@media (min-width: 881px) and (max-width: 1100px) {
  .criteria-grid { grid-template-columns: repeat(2, 1fr); }
}

/* FOUNDER */
.founder-name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--navy);
  margin: 0 0 4px;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.founder-title {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 32px;
}
.founder-lead { margin-bottom: 24px; }
.founder-signature {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
}
.founder-signature a { color: var(--navy); border-bottom: 1px solid var(--gold); padding-bottom: 1px; }
.founder-signature a:hover { color: var(--gold-deep); }

/* CONTACT */
.section-contact {
  padding: 72px 0 110px;
  background: var(--paper);
}
.contact-card {
  background: var(--navy);
  color: var(--paper);
  padding: 0;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.contact-card::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle 600px at 90% -20%, rgba(176,138,74,0.18), transparent 60%),
    radial-gradient(circle 500px at -10% 110%, rgba(176,138,74,0.10), transparent 60%);
  pointer-events: none;
}
.contact-card-inner {
  position: relative;
  padding: 80px 64px;
  max-width: 760px;
}
.contact-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--paper);
  margin: 0 0 24px;
}
.contact-lede {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(250,250,247,0.75);
  margin: 0 0 48px;
  max-width: 560px;
}
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
  margin: 0 0 48px;
  padding: 32px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.contact-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250,250,247,0.55);
  margin: 0 0 8px;
  font-weight: 500;
}
.contact-value {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--paper);
  margin: 0;
  line-height: 1.5;
}
.contact-value a {
  color: var(--paper);
  border-bottom: 1px solid rgba(176,138,74,0.6);
  padding-bottom: 2px;
}
.contact-value a:hover { border-bottom-color: var(--gold); color: #fff; }

.section-contact .btn-primary {
  background: var(--paper); color: var(--navy);
  border-color: var(--paper);
}
.section-contact .btn-primary:hover {
  background: var(--gold); color: var(--navy);
  border-color: var(--gold);
  box-shadow: 0 8px 24px rgba(176,138,74,0.25);
}

@media (max-width: 700px) {
  .contact-card-inner { padding: 48px 28px; }
  .contact-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* FOOTER */
.site-footer {
  background: var(--navy-deep);
  color: rgba(250,250,247,0.6);
  padding: 36px 0;
}
.footer-inner {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px;
}
.footer-inner > div { display: inline-flex; align-items: center; gap: 12px; }
.footer-brand {
  font-family: var(--serif);
  color: var(--paper);
  font-size: 16px;
}
.footer-copy { margin: 0; letter-spacing: 0.02em; }

@media (max-width: 600px) {
  .footer-inner { flex-direction: column; gap: 16px; align-items: flex-start; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; scroll-behavior: auto !important; }
}
