/* ============================================================
   FIELD — Design System
   Navy / Cream / Gold — editorial, institutional, restrained
   ============================================================ */

:root {
  --navy:       #0D1B2A;
  --navy-2:     #122330;
  --navy-3:     #1A2F45;
  --navy-line:  #25405A;
  --cream:      #F6F3ED;
  --cream-2:    #EFEBE2;
  --gold:       #C9A84C;
  --gold-light: #E2C97E;
  --ink:        #141414;
  --ink-soft:   #3A3A3A;
  --muted:      #6B7680;
  --muted-on-navy: #9FB0BD;
  --line-on-cream: #DAD4C5;
  --line-on-navy:  #25405A;
  --white:      #FFFFFF;

  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, "Cambria", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --container: 1180px;
  --pad: clamp(24px, 5vw, 72px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--serif); margin: 0; font-weight: 700; letter-spacing: -0.01em; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }

.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* ---------- Focus visibility ---------- */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ---------- Eyebrow / labels ---------- */
.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}
.eyebrow.on-cream { color: #A9863A; }

/* ---------- Rule / divider ---------- */
.rule-gold {
  width: 56px;
  height: 3px;
  background: var(--gold);
  margin: 18px 0 22px;
  border: none;
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 27, 42, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--navy-line);
}
.nav {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.02em;
  color: var(--white);
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo .sub {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--muted-on-navy);
  margin-top: 3px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav-links a {
  font-size: 13.5px;
  color: var(--muted-on-navy);
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.2s ease;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a.active { color: var(--gold-light); }
.nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 10px 20px;
  border-radius: 3px;
  font-weight: 700 !important;
  font-size: 13px !important;
}
.nav-cta:hover { background: var(--gold-light); }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 26px;
  padding: 4px;
}

@media (max-width: 880px) {
  .nav-links {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px var(--pad) 24px;
    border-bottom: 1px solid var(--navy-line);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.22s ease;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links a { padding: 13px 0; width: 100%; border-bottom: 1px solid var(--navy-line); }
  .nav-links a:last-child { border-bottom: none; }
  .nav-cta { margin-top: 14px; text-align: center; }
  .nav-toggle { display: block; }
}

/* ============================================================
   BLUEPRINT PATTERN (signature element)
   ============================================================ */
.blueprint-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.blueprint-bg svg { position: absolute; opacity: 0.16; }

/* ---------- Intro animation: skyline draws itself, windows light up ---------- */
.skyline-intro .building-line {
  stroke-dasharray: 2200;
  stroke-dashoffset: 2200;
  animation: draw-line 2.6s ease-out forwards;
}
.skyline-intro .window {
  opacity: 0;
  animation: window-glow 0.6s ease-out forwards;
}
.skyline-intro .ground-line {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: draw-line 1.8s ease-out forwards;
  animation-delay: 0.15s;
}
.skyline-intro .accent-shape {
  opacity: 0;
  transform: scale(0.92);
  transform-origin: center;
  animation: fade-scale-in 1.1s ease-out forwards;
  animation-delay: 1.6s;
}
@keyframes draw-line {
  to { stroke-dashoffset: 0; }
}
@keyframes window-glow {
  to { opacity: 1; }
}
@keyframes fade-scale-in {
  to { opacity: 1; transform: scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  .skyline-intro .building-line,
  .skyline-intro .ground-line,
  .skyline-intro .accent-shape,
  .skyline-intro .window {
    animation: none !important;
    opacity: 1 !important;
    stroke-dashoffset: 0 !important;
    transform: none !important;
  }
}

.logo-watermark {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  line-height: 1;
  opacity: 0.5;
}
.logo-watermark .fw {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 76px;
  color: #3A4F63;
  letter-spacing: 0.01em;
}
.logo-watermark .sw {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: 0.16em;
  color: #3A4F63;
  margin-top: 4px;
}

/* ============================================================
   HERO (dark, full bleed)
   ============================================================ */
.hero {
  position: relative;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
  padding: 64px 0 88px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, var(--navy) 35%, transparent 75%);
  z-index: 1;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.hero h1 {
  font-size: clamp(40px, 6vw, 68px);
  line-height: 1.05;
  color: var(--white);
  max-width: 820px;
  opacity: 0;
  transform: translateY(14px);
  animation: hero-rise 0.9s ease-out forwards;
  animation-delay: 0.15s;
}
.hero .lede {
  font-size: 18px;
  color: var(--muted-on-navy);
  max-width: 560px;
  margin-top: 22px;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(14px);
  animation: hero-rise 0.9s ease-out forwards;
  animation-delay: 0.38s;
}
.hero .eyebrow {
  opacity: 0;
  transform: translateY(8px);
  animation: hero-rise 0.7s ease-out forwards;
}
.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 38px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(14px);
  animation: hero-rise 0.9s ease-out forwards;
  animation-delay: 0.58s;
}
@keyframes hero-rise {
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero h1, .hero .lede, .hero .eyebrow, .hero-actions {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
.hero-tagline {
  margin-top: 56px;
  padding-top: 22px;
  border-top: 1px solid var(--navy-line);
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--muted-on-navy);
  letter-spacing: 0.02em;
}

/* page-level smaller hero variant */
.hero.compact { padding: 52px 0 64px; }
.hero.compact h1 { font-size: clamp(34px, 4.6vw, 50px); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 3px;
  letter-spacing: 0.01em;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-outline { border-color: var(--navy-line); color: var(--white); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold-light); }
.btn-outline.on-cream { border-color: var(--line-on-cream); color: var(--ink); }
.btn-outline.on-cream:hover { border-color: var(--gold); color: #A9863A; }

/* ============================================================
   SECTIONS
   ============================================================ */
section { padding: 88px 0; }
section.tight { padding: 64px 0; }
.section-cream { background: var(--cream); }
.section-navy  { background: var(--navy); color: var(--white); }
.section-navy h2, .section-navy h3 { color: var(--white); }
.section-2 { background: var(--cream-2); }

.section-head { max-width: 680px; margin-bottom: 52px; }
.section-head h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  color: var(--ink);
  line-height: 1.12;
}
.section-navy .section-head h2 { color: var(--white); }
.section-head .lede {
  font-size: 16.5px;
  color: var(--muted);
  margin-top: 16px;
  line-height: 1.6;
}
.section-navy .section-head .lede { color: var(--muted-on-navy); }

/* ---------- Card grid ---------- */
.grid {
  display: grid;
  gap: 22px;
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 920px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.card {
  background: var(--white);
  border: 1px solid var(--line-on-cream);
  border-radius: 4px;
  padding: 30px 28px;
}
.card.dark {
  background: var(--navy-2);
  border-color: var(--navy-line);
  color: var(--white);
}
.card .tag {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}
.card.dark .tag { color: var(--gold-light); }
.card h4 {
  font-size: 19px;
  margin-top: 12px;
  color: var(--ink);
}
.card.dark h4 { color: var(--white); }
.card p {
  font-size: 14.5px;
  color: var(--ink-soft);
  margin-top: 12px;
  line-height: 1.6;
}
.card.dark p { color: var(--muted-on-navy); }

/* numbered card variant */
.card .num {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--gold);
  font-weight: 700;
}

/* ---------- Stats row ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
@media (max-width: 760px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat {
  border: 1px solid var(--line-on-cream);
  border-radius: 4px;
  padding: 26px 24px;
  background: var(--white);
}
.section-navy .stat { background: var(--navy-2); border-color: var(--navy-line); }
.stat .n {
  font-family: var(--serif);
  font-size: clamp(28px, 3.6vw, 38px);
  font-weight: 700;
  color: var(--navy);
}
.section-navy .stat .n { color: var(--gold-light); }
.stat .l {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 8px;
  line-height: 1.4;
}
.section-navy .stat .l { color: var(--muted-on-navy); }

/* ---------- Two col layout ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 860px) {
  .two-col { grid-template-columns: 1fr; gap: 36px; }
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

.lead-text {
  font-family: var(--serif);
  font-size: clamp(22px, 2.6vw, 28px);
  line-height: 1.4;
  font-weight: 700;
  color: var(--ink);
}
.section-navy .lead-text { color: var(--white); }

.bullet-list li {
  position: relative;
  padding-left: 22px;
  margin-top: 14px;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.55;
}
.section-navy .bullet-list li { color: var(--muted-on-navy); }
.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
}

/* ---------- Visual block (stylized architectural scene, replaces stock photos) ---------- */
.visual-block {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  background: linear-gradient(170deg, #1a2f45 0%, #0d1b2a 45%, #060d15 100%);
  min-height: 360px;
  display: flex;
  align-items: flex-end;
  padding: 0;
  box-shadow: inset 0 0 80px rgba(0,0,0,0.45);
}
.visual-block .vb-sky {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 90% 60% at 75% 0%, rgba(201,168,76,0.16) 0%, transparent 55%),
              linear-gradient(180deg, #16283b 0%, #0d1b2a 50%, #070f17 100%);
}
.visual-block .vb-scene {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
}
.visual-block .vb-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  background: radial-gradient(circle, rgba(226,201,126,0.55) 0%, rgba(226,201,126,0) 70%);
}
.visual-block .vb-content {
  position: relative;
  z-index: 3;
  padding: 28px;
  width: 100%;
  background: linear-gradient(0deg, rgba(5,10,16,0.78) 0%, rgba(5,10,16,0) 100%);
}
.visual-block .vb-label {
  position: relative;
  color: var(--white);
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  opacity: 0.92;
}
.visual-block .vb-sub {
  position: relative;
  color: var(--muted-on-navy);
  font-size: 12px;
  margin-top: 6px;
  letter-spacing: 0.02em;
}
.visual-block .vb-pattern { position: absolute; inset: 0; }

/* ---------- Table ---------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--line-on-cream); border-radius: 4px; }
table { width: 100%; border-collapse: collapse; font-size: 14.5px; min-width: 640px; }
thead { background: var(--navy); color: var(--white); }
th { text-align: left; padding: 16px 20px; font-weight: 700; font-size: 13px; letter-spacing: 0.02em; }
td { padding: 16px 20px; border-bottom: 1px solid var(--line-on-cream); color: var(--ink-soft); }
tbody tr:nth-child(even) { background: #FAF8F3; }
tbody tr:last-child td { border-bottom: none; }

/* ---------- Fee cards (advisory page) ---------- */
.fee-card {
  border: 1px solid var(--navy-line);
  border-radius: 4px;
  padding: 32px 28px;
  background: var(--navy-2);
}
.fee-card.highlight { background: var(--gold); border-color: var(--gold); }
.fee-card .tag { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-light); }
.fee-card.highlight .tag { color: var(--navy-2); }
.fee-card .price { font-family: var(--serif); font-size: 30px; font-weight: 700; color: var(--white); margin-top: 14px; }
.fee-card.highlight .price { color: var(--navy); }
.fee-card .sub { font-size: 13px; color: var(--muted-on-navy); margin-top: 6px; }
.fee-card.highlight .sub { color: var(--navy-3); }
.fee-card hr { border: none; border-top: 1px solid var(--navy-line); margin: 20px 0; }
.fee-card.highlight hr { border-top: 1px solid rgba(13,27,42,0.25); }
.fee-card ul li {
  font-size: 13.5px;
  color: var(--muted-on-navy);
  padding-left: 20px;
  position: relative;
  margin-top: 12px;
  line-height: 1.5;
}
.fee-card.highlight ul li { color: var(--navy-2); }
.fee-card ul li::before { content: "—"; position: absolute; left: 0; color: var(--gold-light); }
.fee-card.highlight ul li::before { color: var(--navy); }

/* ---------- Quote block (pain points sourced) ---------- */
.quote-block {
  border-top: 1px solid var(--line-on-cream);
  padding: 26px 0;
}
.quote-block:first-of-type { border-top: none; padding-top: 0; }
.quote-block .tag { font-size: 10.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #A9863A; }
.quote-block blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  line-height: 1.5;
  margin: 12px 0 10px;
  color: var(--ink);
}
.quote-block cite { font-size: 12.5px; color: var(--muted); font-style: normal; }

/* ---------- People ---------- */
.person {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 28px;
  padding: 30px 0;
  border-top: 1px solid var(--line-on-cream);
  align-items: start;
}
.person:first-child { border-top: none; padding-top: 0; }
@media (max-width: 600px) { .person { grid-template-columns: 96px 1fr; } }
.person .avatar {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 4px;
  background: linear-gradient(160deg, var(--navy-3), var(--navy));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 700;
  overflow: hidden;
}
.person .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.92) contrast(1.02);
}
.person h4 { font-size: 19px; color: var(--ink); }
.person .role { font-size: 13px; color: #A9863A; font-weight: 700; margin-top: 4px; }
.person p.bio { font-size: 14.5px; color: var(--ink-soft); margin-top: 12px; line-height: 1.6; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  text-align: center;
}
.cta-band h2 { color: var(--white); font-size: clamp(28px, 4vw, 42px); max-width: 700px; margin: 0 auto; }
.cta-band p { color: var(--muted-on-navy); font-size: 16px; margin-top: 18px; max-width: 540px; margin-inline: auto; }
.cta-band .hero-actions { justify-content: center; margin-top: 32px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy);
  color: var(--muted-on-navy);
  padding: 56px 0 28px;
  border-top: 1px solid var(--navy-line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h5 {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 700;
  font-family: var(--sans);
  margin-bottom: 16px;
}
.footer-grid a, .footer-grid p { font-size: 13.5px; color: var(--muted-on-navy); display: block; margin-bottom: 10px; line-height: 1.6; }
.footer-grid a:hover { color: var(--gold-light); }
.footer-logo {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 22px;
  color: var(--white);
  letter-spacing: 0.02em;
  margin-bottom: 4px;
  line-height: 1;
}
.footer-logo .sub {
  display: block;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--muted-on-navy);
  margin-top: 4px;
  margin-bottom: 12px;
}
.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--navy-line);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: #5A6A75;
}

/* ---------- Breadcrumb / page eyebrow nav ---------- */
.crumb { font-size: 12.5px; color: var(--muted-on-navy); margin-bottom: 18px; }
.crumb a { color: var(--muted-on-navy); }
.crumb a:hover { color: var(--gold-light); }

/* ---------- Pillar nav cards (home -> 3 pillars) ---------- */
.pillar-card {
  border: 1px solid var(--line-on-cream);
  border-radius: 4px;
  background: var(--white);
  padding: 34px 30px;
  transition: border-color 0.2s ease, transform 0.2s ease;
  display: block;
}
.pillar-card:hover { border-color: var(--gold); transform: translateY(-2px); }
.pillar-card .pn { font-family: var(--serif); font-size: 13px; color: var(--gold); font-weight: 700; }
.pillar-card h3 { font-size: 22px; margin-top: 14px; color: var(--ink); }
.pillar-card p { font-size: 14.5px; color: var(--ink-soft); margin-top: 12px; line-height: 1.6; }
.pillar-card .go { margin-top: 18px; font-size: 13px; font-weight: 700; color: #A9863A; display: flex; align-items: center; gap: 6px; }

/* utility */
.center { text-align: center; }
.mt-8 { margin-top: 8px; }
.small-note { font-size: 12.5px; color: var(--muted); }
.section-navy .small-note { color: #5A6A75; }
