:root {
  --ink: #102033;
  --navy: #06264a;
  --blue: #1f5a7a;
  --gold: #bd8b2d;
  --gold-soft: #ead7a5;
  --mist: #eef4f6;
  --paper: #fbfaf7;
  --line: #d8e0e5;
  --white: #ffffff;
  --muted: #5b6d7d;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

.siteHeader {
  align-items: center;
  background: rgba(251, 250, 247, 0.96);
  border-bottom: 1px solid rgba(216, 224, 229, 0.8);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  left: 0;
  padding: 14px clamp(18px, 5vw, 72px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand {
  align-items: center;
  display: flex;
  gap: 12px;
  text-decoration: none;
}

.brand img {
  height: 58px;
  width: auto;
}

.navLinks {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.navLinks a {
  border-radius: 8px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
  padding: 10px 12px;
  text-decoration: none;
}

.navLinks a:hover,
.navLinks a.active {
  background: var(--navy);
  color: var(--white);
}

.navLinks .navCta {
  background: var(--gold);
  color: #15100a;
}

.hero {
  background:
    linear-gradient(90deg, rgba(6, 38, 74, 0.88) 0%, rgba(6, 38, 74, 0.7) 45%, rgba(6, 38, 74, 0.12) 100%),
    url("./assets/hero-financial-planning.png") center right / cover;
  color: var(--white);
  display: grid;
  min-height: calc(100vh - 88px);
  padding: clamp(48px, 8vw, 96px) clamp(18px, 5vw, 72px);
}

.heroInner {
  align-self: center;
  max-width: 720px;
}

.eyebrow {
  color: var(--gold-soft);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  margin: 0 0 16px;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: 0;
  margin: 0;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(44px, 7vw, 86px);
  line-height: 0.95;
  max-width: 760px;
}

.hero p {
  color: #ecf4f7;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.6;
  margin: 22px 0 0;
  max-width: 640px;
}

.buttonRow {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 8px;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  text-decoration: none;
}

.button.primary {
  background: var(--gold);
  color: #14100a;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--white);
}

.button.dark {
  background: var(--navy);
  color: var(--white);
}

.section {
  padding: clamp(54px, 7vw, 92px) clamp(18px, 5vw, 72px);
}

.section.alt {
  background: var(--mist);
}

.sectionHeader {
  max-width: 820px;
}

.sectionHeader h1,
.sectionHeader h2 {
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
}

.sectionHeader p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
  margin: 18px 0 0;
}

.grid3,
.grid2 {
  display: grid;
  gap: 18px;
  margin-top: 32px;
}

.grid3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
}

.card h3 {
  font-size: 25px;
}

.card p,
.card li,
.split p,
.formNote {
  color: var(--muted);
  line-height: 1.65;
}

.card ul {
  margin: 18px 0 0;
  padding-left: 20px;
}

.split {
  align-items: start;
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.portrait {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.portrait img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.portraitCaption {
  padding: 18px;
}

.portraitCaption strong {
  color: var(--navy);
  display: block;
  font-size: 20px;
}

.pageHero {
  background: var(--navy);
  color: var(--white);
  padding: clamp(54px, 8vw, 96px) clamp(18px, 5vw, 72px);
}

.pageHero .eyebrow,
.pageHero h1,
.pageHero p {
  color: var(--white);
}

.pageHero h1 {
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.98;
  max-width: 880px;
}

.pageHero p {
  color: #dce9ef;
  font-size: 19px;
  line-height: 1.65;
  max-width: 780px;
}

.contactShell {
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
}

.form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 16px;
  padding: 24px;
}

.form label {
  color: var(--navy);
  display: grid;
  font-size: 14px;
  font-weight: 900;
  gap: 7px;
}

.form input,
.form select,
.form textarea {
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  min-height: 46px;
  padding: 10px 12px;
  width: 100%;
}

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

.form input:focus,
.form select:focus,
.form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(189, 139, 45, 0.18);
  outline: 0;
}

.hidden {
  display: none;
}

.calendlyFrame {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 720px;
  overflow: hidden;
}

.calendlyFrame iframe {
  border: 0;
  height: 720px;
  width: 100%;
}

.calendlyPlaceholder {
  align-items: center;
  display: grid;
  justify-items: center;
  padding: 36px;
  text-align: center;
}

.calendlyPlaceholder div {
  max-width: 620px;
}

.calendlyPlaceholder h2 {
  font-size: clamp(32px, 5vw, 52px);
}

.calendlyPlaceholder p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.65;
}

.siteFooter {
  background: #071d36;
  color: #dbe7ee;
  display: grid;
  gap: 18px;
  padding: 30px clamp(18px, 5vw, 72px);
}

.siteFooter img {
  background: var(--white);
  border-radius: 8px;
  max-width: 170px;
  padding: 8px;
}

.siteFooter p {
  color: #b8c9d4;
  line-height: 1.6;
  margin: 0;
  max-width: 920px;
}

.finePrint {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 13px;
  padding-top: 16px;
}

@media (max-width: 880px) {
  .siteHeader {
    align-items: flex-start;
    flex-direction: column;
  }

  .navLinks {
    justify-content: flex-start;
  }

  .hero {
    min-height: 720px;
  }

  .grid3,
  .grid2,
  .split,
  .contactShell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .brand img {
    height: 48px;
  }

  .navLinks a {
    font-size: 13px;
    padding: 8px 9px;
  }

  .hero {
    background:
      linear-gradient(180deg, rgba(6, 38, 74, 0.92) 0%, rgba(6, 38, 74, 0.72) 58%, rgba(6, 38, 74, 0.35) 100%),
      url("./assets/hero-financial-planning.png") center right / cover;
    min-height: 690px;
  }

  .button {
    width: 100%;
  }
}
