:root {
  --ink: #24251f;
  --muted: #66695f;
  --paper: #fbf8f0;
  --soft: #efe9dc;
  --line: #d8cfbd;
  --green: #586b55;
  --green-dark: #2f4436;
  --gold: #a47e3c;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(38, 48, 43, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Aptos", "Segoe UI", Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

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

a {
  color: var(--green-dark);
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(164, 126, 60, 0.38);
  outline-offset: 3px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(1.85rem, 4vw, 3.35rem);
  line-height: 1.05;
  margin-bottom: 16px;
}

section {
  padding: 58px 0;
}

.section-inner,
.header-inner,
.footer-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  background: rgba(251, 248, 240, 0.94);
  border-bottom: 1px solid rgba(216, 207, 189, 0.82);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
}

.header-inner {
  align-items: center;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  min-height: 68px;
}

.brand {
  display: grid;
  gap: 1px;
  text-decoration: none;
}

.brand strong {
  color: var(--ink);
  font-size: 1rem;
}

.brand span {
  color: var(--muted);
  font-size: 0.88rem;
}

.header-actions {
  display: none;
  gap: 10px;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 3px;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-weight: 700;
  justify-content: center;
  min-height: 48px;
  padding: 12px 17px;
  text-align: center;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

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

.button-primary:hover {
  background: #24362b;
}

.button-secondary {
  background: var(--white);
  border-color: var(--line);
  color: var(--green-dark);
}

.button-secondary:hover,
.button-light:hover {
  background: var(--soft);
}

.button-light {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.72);
  color: var(--green-dark);
}

.editorial-hero {
  color: var(--white);
  min-height: 72vh;
  overflow: hidden;
  padding: 0;
  position: relative;
}

.editorial-hero-image {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.editorial-hero-shade {
  background:
    linear-gradient(90deg, rgba(20, 25, 22, 0.78), rgba(20, 25, 22, 0.44) 46%, rgba(20, 25, 22, 0.12)),
    linear-gradient(0deg, rgba(20, 25, 22, 0.32), rgba(20, 25, 22, 0.05));
  inset: 0;
  position: absolute;
}

.editorial-hero-copy {
  display: grid;
  min-height: 72vh;
  padding-bottom: 56px;
  padding-top: 56px;
  place-content: center start;
  position: relative;
}

.editorial-hero-copy h1 {
  color: var(--white);
  font-size: clamp(2.35rem, 6.2vw, 4.9rem);
  line-height: 1;
  margin-bottom: 20px;
  max-width: 760px;
}

.editorial-hero-copy p {
  color: var(--white);
  font-size: 1.1rem;
  max-width: 660px;
}

.eyebrow,
.section-kicker {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.editorial-hero .eyebrow {
  color: rgba(255, 255, 255, 0.86);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.resource-nav {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.resource-nav-inner {
  display: grid;
  gap: 1px;
  padding: 0;
}

.resource-nav a {
  border-bottom: 1px solid var(--line);
  color: var(--green-dark);
  font-weight: 700;
  padding: 14px 0;
  text-decoration: none;
}

.resource-nav a:hover {
  color: var(--gold);
}

.section-copy {
  color: var(--muted);
  font-size: 1.04rem;
  max-width: 780px;
}

.soft-band {
  background: var(--soft);
  border-block: 1px solid var(--line);
}

.editorial-intro {
  display: grid;
  gap: 24px;
}

.advisor-facts {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding-top: 20px;
}

.advisor-facts dt,
.contact-box dt {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.advisor-facts dd,
.contact-box dd {
  margin: 0;
}

.image-feature {
  overflow: hidden;
}

.image-feature-inner {
  display: grid;
  gap: 30px;
}

.image-feature figure {
  margin: 0;
}

.image-feature figure img {
  aspect-ratio: 4 / 3;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.image-feature .document-figure img {
  aspect-ratio: auto;
  height: auto;
  object-fit: contain;
}

.text-feature {
  border-top: 1px solid var(--line);
}

.text-feature-inner {
  display: grid;
  gap: 24px;
}

.text-columns {
  display: grid;
  gap: 14px;
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
}

.text-columns li {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.check-list {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
}

.check-list li {
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid var(--line);
  padding: 13px 14px;
}

.check-list li::before {
  color: var(--green);
  content: "+";
  font-weight: 800;
  margin-right: 8px;
}

.promotion-layout {
  display: grid;
  gap: 28px;
}

.promo-callout {
  background: rgba(255, 255, 255, 0.66);
  border-left: 4px solid var(--gold);
  color: var(--ink);
  margin-top: 24px;
  max-width: 720px;
  padding: 16px 18px;
}

.promo-callout p {
  margin: 0;
}

.official-asset {
  margin-top: 0;
}

.official-asset img {
  width: 100%;
}

.official-asset-flyer {
  max-width: 860px;
}

.contact-layout {
  display: grid;
  gap: 30px;
}

.contact-box {
  background: var(--green-dark);
  color: var(--white);
  padding: 24px;
}

.contact-box h3,
.contact-box p,
.contact-box a:not(.button) {
  color: var(--white);
}

.contact-box dl {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
}

.contact-box .button-secondary {
  background: var(--white);
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--green-dark);
}

.contact-box .button-secondary:hover {
  background: var(--soft);
}

.disclaimer {
  background: #e7e0d2;
  border-top: 1px solid var(--line);
  color: #4d514a;
  font-size: 0.9rem;
  padding: 28px 0;
}

.disclaimer p {
  margin: 0;
}

.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.82);
  padding: 24px 0;
}

.footer-inner {
  display: grid;
  gap: 8px;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--white);
}

@media (min-width: 680px) {
  .header-actions {
    display: flex;
  }

  .resource-nav-inner {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    min-height: 56px;
  }

  .resource-nav a {
    border-bottom: 0;
    padding: 16px 0;
  }

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

@media (min-width: 900px) {
  section {
    padding: 76px 0;
  }

  .editorial-intro {
    align-items: start;
    grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  }

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

  .image-feature-inner {
    align-items: center;
    grid-template-columns: minmax(380px, 0.98fr) minmax(0, 1.02fr);
  }

  .image-feature-reverse figure {
    grid-column: 2;
    grid-row: 1;
  }

  .image-feature-reverse > div {
    grid-column: 1;
    grid-row: 1;
  }

  .text-feature-inner {
    align-items: start;
    grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  }

  .promotion-layout {
    align-items: start;
    grid-template-columns: minmax(260px, 0.72fr) minmax(360px, 1.28fr);
  }

  .contact-layout {
    align-items: start;
    grid-template-columns: minmax(0, 1fr) 380px;
  }
}

@media (max-width: 430px) {
  .section-inner,
  .header-inner,
  .footer-inner {
    width: min(100% - 24px, 1120px);
  }

  .button {
    width: 100%;
  }

  .editorial-hero {
    min-height: 680px;
  }

  .editorial-hero-copy {
    min-height: 680px;
  }

  .editorial-hero-shade {
    background:
      linear-gradient(0deg, rgba(20, 25, 22, 0.82), rgba(20, 25, 22, 0.34)),
      linear-gradient(90deg, rgba(20, 25, 22, 0.56), rgba(20, 25, 22, 0.18));
  }
}
