:root {
  --navy: #071d36;
  --navy-deep: #041426;
  --navy-soft: #102d4a;
  --ink: #12263a;
  --stone: #465767;
  --paper: #fffdf8;
  --ivory: #f8f5ee;
  --parchment: #ebe3d6;
  --brass: #9c7440;
  --brass-light: #d8c39d;
  --line: rgba(18, 38, 58, 0.15);
  --line-dark: rgba(255, 253, 248, 0.15);
  --shadow-soft: 0 18px 45px rgba(25, 33, 42, 0.08);
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-serif: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--navy-deep);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 1.66;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible {
  outline: 3px solid var(--brass-light);
  outline-offset: 4px;
}

::selection {
  color: var(--navy-deep);
  background: var(--brass-light);
}

.shell {
  width: min(calc(100% - 72px), 1120px);
  margin-inline: auto;
}

.site-header {
  position: absolute;
  z-index: 10;
  inset: 0 0 auto;
  color: rgba(255, 253, 248, 0.92);
}

.header-inner {
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.wordmark,
h1,
.content-section h2 {
  font-family: var(--font-serif);
}

.wordmark {
  font-size: 23px;
  line-height: 1;
  letter-spacing: -0.035em;
}

.wordmark span {
  color: var(--brass-light);
}

nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 13px;
  font-weight: 650;
}

nav a {
  color: rgba(255, 253, 248, 0.68);
  transition: color 150ms ease;
}

nav a:hover {
  color: #fffdf8;
}

.nav-cta {
  padding: 9px 15px;
  color: #fffdf8;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 5px;
}

.hero {
  position: relative;
  overflow: hidden;
  color: #fffdf8;
  background:
    radial-gradient(circle at 84% 30%, rgba(54, 108, 158, 0.31), transparent 33%),
    linear-gradient(135deg, var(--navy-deep), var(--navy-soft));
}

.hero::after {
  position: absolute;
  width: 420px;
  height: 420px;
  right: -155px;
  bottom: -250px;
  content: "";
  border: 1px solid rgba(216, 195, 157, 0.19);
  border-radius: 50%;
  box-shadow:
    0 0 0 72px rgba(216, 195, 157, 0.035),
    0 0 0 144px rgba(216, 195, 157, 0.025);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  padding-top: 176px;
  padding-bottom: 116px;
}

h1,
h2,
p {
  text-wrap: pretty;
}

h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(3.35rem, 6.1vw, 5rem);
  font-weight: 400;
  line-height: 1.035;
  letter-spacing: -0.055em;
}

.hero-copy {
  max-width: 680px;
  margin-top: 40px;
  color: rgba(255, 253, 248, 0.78);
  font-size: 20px;
  line-height: 1.66;
}

.hero-copy p {
  margin: 0 0 20px;
}

.hero-copy .service-note {
  margin-top: 30px;
  padding: 3px 0 3px 18px;
  color: #fffdf8;
  border-left: 2px solid var(--brass-light);
  font-weight: 720;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 40px;
}

.hero-actions p {
  max-width: 230px;
  margin: 0;
  color: rgba(255, 253, 248, 0.6);
  font-size: 14px;
  line-height: 1.5;
}

.button {
  display: inline-flex;
  min-height: 55px;
  align-items: center;
  justify-content: center;
  padding: 0 23px;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 750;
  line-height: 1.25;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-light {
  color: var(--navy-deep);
  background: var(--ivory);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.button-light:hover {
  background: #fff;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.19);
}

.content-section {
  padding-block: 112px;
}

.section-light {
  background: var(--paper);
}

.content-section + .content-section {
  border-top: 1px solid var(--line);
}

.section-layout {
  display: grid;
  grid-template-columns: minmax(240px, 320px) minmax(0, 680px);
  gap: clamp(64px, 8vw, 112px);
  align-items: start;
}

.section-heading {
  position: relative;
  padding-top: 22px;
}

.section-heading::before {
  position: absolute;
  width: 52px;
  height: 2px;
  top: 0;
  left: 0;
  content: "";
  background: var(--brass);
}

.content-section h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.25rem, 3.7vw, 3.2rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.045em;
}

.section-body {
  max-width: 680px;
}

.section-body p,
.cta-content p {
  margin: 0;
  color: var(--stone);
  font-size: 18px;
  line-height: 1.68;
}

.recognition-flow .opening-line {
  margin-bottom: 34px;
  color: var(--ink);
  font-size: 27px;
  font-weight: 590;
  line-height: 1.43;
  letter-spacing: -0.018em;
}

.recognition-sequence {
  border-top: 1px solid var(--line);
}

.recognition-sequence p {
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}

.recognition-sequence p:last-child {
  color: var(--ink);
  font-weight: 630;
}

.section-principles {
  background:
    radial-gradient(circle at 92% 8%, rgba(156, 116, 64, 0.13), transparent 27%),
    linear-gradient(135deg, #f2ede3 0%, var(--parchment) 100%);
  border-top: 0 !important;
}

.principle-sequence {
  overflow: hidden;
  background: rgba(255, 253, 248, 0.68);
  border: 1px solid rgba(18, 38, 58, 0.13);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.principle-sequence p {
  padding: 31px 32px;
  border-bottom: 1px solid var(--line);
}

.principle-sequence p:last-child {
  border-bottom: 0;
}

.principle-sequence p:nth-child(2) {
  color: var(--ink);
  font-size: 24px;
  font-weight: 620;
  line-height: 1.5;
  letter-spacing: -0.015em;
}

.section-story {
  color: rgba(255, 253, 248, 0.8);
  background:
    radial-gradient(circle at 15% 110%, rgba(54, 108, 158, 0.18), transparent 34%),
    var(--navy);
  border-top: 0 !important;
}

.section-story .section-heading::before {
  background: var(--brass-light);
}

.section-story h2 {
  color: #fffdf8;
}

.story-intro {
  margin: 28px 0 0;
  color: rgba(255, 253, 248, 0.67);
  font-size: 20px;
  line-height: 1.55;
}

.story-body {
  padding-left: 38px;
  border-left: 1px solid var(--line-dark);
}

.story-body > p {
  margin-bottom: 24px;
  color: rgba(255, 253, 248, 0.74);
}

.story-body > p:first-child {
  color: #fffdf8;
  font-size: 22px;
  line-height: 1.55;
}

.story-closing {
  margin-top: 38px;
  padding-top: 30px;
  border-top: 1px solid var(--line-dark);
}

.story-closing > p:first-child {
  color: #fffdf8;
  font-size: 25px;
  font-weight: 650;
  line-height: 1.4;
}

.signature {
  margin-top: 27px !important;
  color: #fffdf8 !important;
}

.signature strong {
  font-weight: 750;
}

.signature span {
  display: block;
  margin-top: 3px;
  color: rgba(255, 253, 248, 0.53);
  font-size: 14px;
}

.section-cta {
  padding-block: 96px;
  background: var(--ivory);
  border-top: 0 !important;
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(50px, 7vw, 90px);
  padding: clamp(48px, 7vw, 78px);
  color: #fffdf8;
  background:
    radial-gradient(circle at 100% 0%, rgba(54, 108, 158, 0.28), transparent 34%),
    var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  box-shadow: 0 30px 65px rgba(4, 20, 38, 0.18);
}

.cta-heading h2 {
  color: #fffdf8;
}

.cta-content p {
  margin-bottom: 19px;
  color: rgba(255, 253, 248, 0.73);
}

.cta-content p:first-child {
  color: #fffdf8;
  font-size: 21px;
  line-height: 1.58;
}

.cta-content .button {
  margin-top: 18px;
}

footer {
  color: rgba(255, 253, 248, 0.68);
  background: var(--navy-deep);
}

.footer-inner {
  display: flex;
  min-height: 112px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.footer-inner p {
  margin: 0;
  font-size: 13px;
}

@media (max-width: 900px) {
  nav > a:not(.nav-cta) {
    display: none;
  }

  .section-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .section-heading {
    max-width: 680px;
  }

  .section-body {
    max-width: 720px;
  }

  .story-body {
    padding-left: 0;
    border-left: 0;
  }

  .cta-panel {
    grid-template-columns: 1fr;
    gap: 38px;
  }
}

@media (max-width: 680px) {
  .shell {
    width: min(calc(100% - 40px), 1120px);
  }

  .header-inner {
    min-height: 72px;
  }

  .wordmark {
    font-size: 20px;
  }

  .nav-cta {
    font-size: 13px;
  }

  .hero-inner {
    padding-top: 138px;
    padding-bottom: 82px;
  }

  h1 {
    font-size: clamp(2.85rem, 12vw, 4rem);
  }

  .hero-copy {
    font-size: 18px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .button {
    width: 100%;
    padding: 15px 18px;
    text-align: center;
  }

  .hero-actions p {
    max-width: none;
  }

  .content-section {
    padding-block: 76px;
  }

  .content-section h2 {
    font-size: 2.35rem;
  }

  .recognition-flow .opening-line {
    font-size: 23px;
  }

  .section-cta {
    padding-block: 0;
    background: var(--navy);
  }

  .section-cta .shell {
    width: 100%;
  }

  .cta-panel {
    padding: 72px 20px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .footer-inner {
    min-height: 120px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    transition: none !important;
  }
}
