@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap');

:root {
  --navy: #172536;
  --navy-2: #24384d;
  --ink: #26313b;
  --muted: #69737c;
  --paper: #f7f6f2;
  --white: #ffffff;
  --warm: #b5a38e;
  --line: #ddd9d0;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", Arial, sans-serif;
  line-height: 1.65;
}
a { color: inherit; }
.container { width: min(calc(100% - 48px), var(--max)); margin: 0 auto; }

.site-header {
  position: absolute;
  z-index: 10;
  width: 100%;
  color: var(--white);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
}
.brand { text-decoration: none; display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-weight: 600; letter-spacing: .18em; font-size: 18px; }
.brand-sub { margin-top: 7px; letter-spacing: .28em; font-size: 9px; opacity: .78; }
.nav { display: flex; gap: 34px; align-items: center; }
.nav a {
  text-decoration: none;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .92;
}
.nav a:hover { opacity: 1; }
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.hero-photo {
  position: absolute;
  inset: 0;
  background:
    url("assets/dan-schweiker.jpg") center 31% / cover no-repeat;
  transform: scale(1.015);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(18,31,44,.94) 0%, rgba(18,31,44,.82) 36%, rgba(18,31,44,.25) 70%, rgba(18,31,44,.05) 100%);
}
.hero-content { position: relative; z-index: 2; color: var(--white); }
.hero-copy { width: min(570px, 100%); padding-top: 55px; }
.eyebrow {
  margin: 0 0 18px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
}
.eyebrow.dark { color: #8b7764; }
h1, h2, h3 { margin: 0; }
h1, h2 { font-family: "Libre Baskerville", Georgia, serif; font-weight: 400; }
h1 { font-size: clamp(42px, 5.5vw, 74px); line-height: 1.12; letter-spacing: -.035em; }
h1 em { color: #dfd1c0; font-style: italic; }
.hero-text { max-width: 510px; margin: 28px 0 34px; color: rgba(255,255,255,.84); font-size: 17px; }
.hero-actions { display: flex; align-items: center; gap: 25px; }
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: 0 25px;
  border: 1px solid transparent;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: .2s ease;
}
.button-light { color: var(--navy); background: var(--white); }
.button-light:hover { background: #e8e3dc; }
.light-link { text-decoration: none; font-size: 14px; font-weight: 600; letter-spacing: .04em; }
.light-link:hover { text-decoration: underline; }

.section { padding: 105px 0; }
.two-col { display: grid; grid-template-columns: .9fr 1.1fr; gap: 100px; }
h2 { font-size: clamp(34px, 4vw, 52px); line-height: 1.2; letter-spacing: -.025em; }
.body-copy { max-width: 650px; font-size: 17px; color: #53606b; }
.body-copy p { margin: 0 0 22px; }
.signature { color: var(--ink); font-family: "Libre Baskerville", Georgia, serif; font-style: italic; }

.services { background: #eeece6; }
.section-heading { max-width: 760px; margin-bottom: 50px; }
.section-heading > p:last-child { margin: 22px 0 0; max-width: 620px; color: var(--muted); font-size: 17px; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card { background: var(--white); padding: 38px 34px 42px; min-height: 275px; border-top: 2px solid var(--warm); }
.card-number { display: block; margin-bottom: 42px; color: var(--warm); font-size: 12px; letter-spacing: .12em; font-weight: 600; }
.card h3 { font-family: "Libre Baskerville", Georgia, serif; font-size: 25px; font-weight: 400; margin-bottom: 15px; }
.card p { margin: 0; color: var(--muted); }

.resources { background: var(--paper); }
.resource-placeholder {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  margin: 28px 0 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.resource-placeholder div { display: flex; flex-direction: column; }
.resource-placeholder strong { font-size: 16px; }
.resource-placeholder span { color: var(--muted); font-size: 14px; }
.arrow-link { text-decoration: none; font-size: 28px; }
.small-note { font-size: 12px; color: #8a8f94; }

.contact { background: var(--navy); color: var(--white); padding: 95px 0; }
.contact-inner { display: grid; grid-template-columns: 1.15fr .85fr; gap: 100px; align-items: center; }
.contact h2 { max-width: 600px; }
.contact-inner > div:first-child > p:last-child { color: rgba(255,255,255,.7); font-size: 17px; margin-top: 22px; }
.contact-details { display: flex; flex-direction: column; align-items: flex-start; }
.contact-details p { margin: 0 0 22px; color: rgba(255,255,255,.7); }
.contact-details p span { color: var(--white); font-weight: 600; }
.contact-details > a:not(.button) { color: var(--white); text-decoration: none; font-family: "Libre Baskerville", Georgia, serif; font-size: 21px; margin: 4px 0; }
.contact-details > a:not(.button):hover { text-decoration: underline; }
.contact-button { margin-top: 28px; }

.footer { background: #101c28; color: rgba(255,255,255,.55); padding: 25px 0; font-size: 12px; }
.footer-inner { display: flex; justify-content: space-between; gap: 20px; }
.footer a { text-decoration: none; }
.footer a:hover { color: var(--white); }

@media (max-width: 850px) {
  .nav { display: none; position: absolute; top: 78px; left: 24px; right: 24px; padding: 20px; background: var(--navy); flex-direction: column; align-items: flex-start; gap: 18px; }
  .nav.open { display: flex; }
  .menu-toggle { display: block; background: none; border: 0; color: var(--white); font-size: 26px; cursor: pointer; }
  .hero { min-height: 780px; align-items: flex-end; }
  .hero-photo { background-position: 59% center; }
  .hero-overlay { background: linear-gradient(0deg, rgba(18,31,44,.96) 0%, rgba(18,31,44,.74) 48%, rgba(18,31,44,.15) 100%); }
  .hero-copy { padding: 0 0 65px; }
  .two-col, .contact-inner { grid-template-columns: 1fr; gap: 35px; }
  .section { padding: 78px 0; }
  .cards { grid-template-columns: 1fr; }
  .card { min-height: auto; }
  .contact { padding: 75px 0; }
}
@media (max-width: 520px) {
  .container { width: min(calc(100% - 34px), var(--max)); }
  .nav-wrap { min-height: 76px; }
  .brand-name { font-size: 16px; }
  .hero { min-height: 720px; }
  .hero-photo { background-position: 58% 18%; }
  h1 { font-size: 39px; }
  .hero-text { font-size: 15px; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 18px; }
  .footer-inner { flex-direction: column; }
}
