:root {
  --navy: #0c1727;
  --navy-2: #14233a;
  --gold: #c9a35a;
  --paper: #f4efe5;
  --cream: #fffaf0;
  --muted: #6d746f;
  --line: rgba(12, 23, 39, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--navy);
  font-family: "Segoe UI", Arial, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.header {
  width: min(1180px, calc(100% - 36px));
  margin: 22px auto 0;
  padding: 16px 0;
  display: grid;
  grid-template-columns: 180px 1fr auto;
  gap: 24px;
  align-items: center;
  border-bottom: 1px solid var(--navy);
}

.brand {
  font-weight: 900;
  letter-spacing: 0.18em;
}

nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

button {
  border: 1px solid var(--navy);
  background: transparent;
  color: var(--navy);
  border-radius: 999px;
  padding: 10px 16px;
  cursor: pointer;
  font-weight: 900;
}

.hero {
  width: min(1180px, calc(100% - 36px));
  margin: 70px auto 105px;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 46px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 7vw, 7.4rem);
  line-height: 0.9;
  letter-spacing: -0.07em;
  font-weight: 500;
}

.hero-copy > p:not(.eyebrow),
.section-title,
.cards p,
.method-copy p:not(.eyebrow),
.method-steps p,
.support-grid p,
footer p {
  color: var(--muted);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-actions a {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 900;
}

.hero-actions a:first-child {
  background: var(--navy);
  color: white;
}

.hero-actions a:last-child {
  border: 1px solid var(--line);
  background: var(--cream);
}

.ledger-card {
  padding: 30px;
  border-radius: 30px;
  background: var(--navy);
  color: white;
  box-shadow: 0 30px 90px rgba(12, 23, 39, 0.25);
}

.ledger-card > p {
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.ledger-row {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 1.35rem;
}

.ledger-row b {
  color: var(--gold);
}

.expertise,
.method,
.support,
footer {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto 105px;
}

.section-title {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 34px;
  margin-bottom: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.section-title h2,
.method-copy h2,
.support h2,
footer h2 {
  margin: 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.3rem, 5vw, 5.4rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
  font-weight: 500;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.cards article {
  min-height: 310px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--cream);
}

.cards span,
.method-steps b {
  color: var(--gold);
  font-weight: 950;
}

.cards h3,
.method-steps h3 {
  font-size: 1.55rem;
  line-height: 1.1;
}

.method {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 24px;
}

.method-copy {
  padding: 34px;
  border-radius: 30px;
  background: var(--navy-2);
  color: white;
}

.method-copy h2 {
  color: white;
}

.method-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
}

.method-steps {
  display: grid;
  gap: 14px;
}

.method-steps article {
  padding: 26px;
  border-radius: 24px;
  background: var(--cream);
  border-left: 5px solid var(--gold);
}

.support {
  padding: 42px;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(201, 163, 90, 0.18), rgba(255, 250, 240, 0.95));
  border: 1px solid var(--line);
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 30px;
}

.support-grid p {
  margin: 0;
  padding: 24px;
  border-radius: 22px;
  background: white;
}

footer {
  margin-bottom: 28px;
  padding: 36px;
  border-radius: 34px;
  background: var(--navy);
  color: white;
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

footer h2 {
  color: white;
}

footer p {
  color: rgba(255, 255, 255, 0.76);
}

address {
  display: grid;
  gap: 12px;
  align-content: center;
  font-style: normal;
  font-weight: 900;
}

@media (max-width: 900px) {
  .header,
  .hero,
  .section-title,
  .cards,
  .method,
  .support-grid {
    grid-template-columns: 1fr;
  }

  nav {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  footer {
    display: grid;
  }
}
