:root {
  --navy: #0F2A44;
  --red: #8B1E1E;
  --gold: #B08D57;
  --cream: #F5F1E6;
  --cream-dark: #E7DFC9;
  --ink: #1F2933;
  --muted: #64748B;
  --white: #FFFFFF;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
  --soft-shadow: 0 12px 30px rgba(15, 42, 68, 0.12);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 42, 68, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(176, 141, 87, 0.35);
}

.nav {
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--cream);
}

.brand-mark {
  width: 44px;
  height: 44px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: 'Cormorant SC', serif;
  color: var(--gold);
  font-size: 22px;
  letter-spacing: 0.05em;
  position: relative;
}

.brand-mark::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  bottom: 4px;
  right: 5px;
}

.brand-title {
  font-family: 'Cormorant SC', serif;
  font-size: 24px;
  line-height: 1;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.brand-subtitle {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--cream-dark);
  margin-top: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--cream);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links a {
  opacity: 0.88;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.nav-links a:hover {
  opacity: 1;
  color: var(--gold);
}

.nav-cta {
  padding: 10px 16px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: var(--cream);
}

.nav-cta:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white) !important;
}

.hero {
  background:
    linear-gradient(rgba(15, 42, 68, 0.88), rgba(15, 42, 68, 0.92)),
    radial-gradient(circle at top right, rgba(176, 141, 87, 0.28), transparent 32%),
    var(--navy);
  color: var(--cream);
  min-height: 760px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(176, 141, 87, 0.35);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--red), var(--cream), var(--navy), var(--gold));
  opacity: 0.75;
}

.hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 96px 24px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 22px;
}

.eyebrow::before {
  content: '';
  width: 42px;
  height: 2px;
  background: var(--red);
}

h1,
h2,
h3,
h4 {
  font-family: 'Cormorant SC', serif;
  line-height: 1.05;
  font-weight: 700;
}

h1 {
  font-size: clamp(52px, 7vw, 92px);
  letter-spacing: 0.04em;
  margin-bottom: 22px;
}

.hero-lede {
  font-size: clamp(18px, 2vw, 22px);
  color: rgba(245, 241, 230, 0.9);
  max-width: 690px;
  margin-bottom: 34px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(139, 30, 30, 0.26);
}

.btn-primary:hover {
  background: #741717;
}

.btn-secondary {
  color: var(--cream);
  border: 1px solid var(--gold);
}

.btn-secondary:hover {
  background: rgba(176, 141, 87, 0.14);
}

.hero-card {
  background: rgba(245, 241, 230, 0.96);
  color: var(--navy);
  border-radius: 4px;
  padding: 28px;
  box-shadow: var(--shadow);
  border: 8px solid rgba(176, 141, 87, 0.38);
  outline: 1px solid rgba(15, 42, 68, 0.22);
}

.book-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--red);
  margin-bottom: 12px;
}

.book-title {
  font-size: 42px;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.book-rule {
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  width: 120px;
  margin: 18px 0;
}

.book-text {
  color: #334155;
  margin-bottom: 20px;
}

.seal-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.seal-box {
  border: 1px solid rgba(15, 42, 68, 0.15);
  padding: 14px 10px;
  text-align: center;
  background: rgba(255, 255, 255, 0.44);
}

.seal-number {
  display: block;
  font-family: 'Cormorant SC', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--red);
}

.seal-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  font-weight: 700;
}

section {
  padding: 92px 24px;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
}

.section-kicker {
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(38px, 5vw, 60px);
  color: var(--navy);
  letter-spacing: 0.035em;
  margin-bottom: 18px;
}

.section-title.light {
  color: var(--cream);
}

.section-rule {
  width: 96px;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  margin-bottom: 26px;
}

.section-lede {
  max-width: 820px;
  font-size: 18px;
  color: #475569;
}

.mission-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: start;
}

.quote-card {
  background: var(--navy);
  color: var(--cream);
  padding: 36px;
  box-shadow: var(--soft-shadow);
  border-left: 5px solid var(--red);
  position: sticky;
  top: 110px;
}

.quote-card p {
  font-family: 'Cormorant SC', serif;
  font-size: 31px;
  line-height: 1.18;
  letter-spacing: 0.03em;
  margin-bottom: 18px;
}

.quote-card span {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 800;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.pillar-card {
  background: var(--white);
  padding: 28px;
  border-top: 4px solid var(--gold);
  box-shadow: var(--soft-shadow);
  min-height: 230px;
}

.pillar-card:nth-child(2),
.pillar-card:nth-child(3) {
  border-top-color: var(--red);
}

.pillar-card h3 {
  color: var(--navy);
  font-size: 30px;
  margin-bottom: 12px;
  letter-spacing: 0.03em;
}

.pillar-card p {
  color: #475569;
  font-size: 15px;
}

.dark-band {
  background: var(--navy);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.dark-band::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--red), var(--cream), var(--gold));
}

.dark-band .section-lede {
  color: rgba(245, 241, 230, 0.82);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 44px;
}

.process-card {
  border: 1px solid rgba(176, 141, 87, 0.38);
  padding: 28px 22px;
  background: rgba(255, 255, 255, 0.04);
  min-height: 245px;
}

.process-step {
  font-family: 'Cormorant SC', serif;
  color: var(--red);
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 14px;
}

.process-card h3 {
  color: var(--cream);
  font-size: 27px;
  margin-bottom: 12px;
}

.process-card p {
  color: rgba(245, 241, 230, 0.76);
  font-size: 14px;
}

.legacy-section {
  background:
    linear-gradient(rgba(245, 241, 230, 0.92), rgba(245, 241, 230, 0.92)),
    radial-gradient(circle at top left, rgba(176, 141, 87, 0.18), transparent 35%);
}

.legacy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.legacy-panel {
  background: var(--white);
  border: 1px solid rgba(15, 42, 68, 0.12);
  padding: 36px;
  box-shadow: var(--soft-shadow);
  position: relative;
}

.legacy-panel::before {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(176, 141, 87, 0.35);
  pointer-events: none;
}

.legacy-panel h3 {
  color: var(--navy);
  font-size: 42px;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.legacy-panel p,
.legacy-panel ul {
  position: relative;
  z-index: 1;
}

.legacy-panel ul {
  margin-top: 20px;
  padding-left: 18px;
  color: #475569;
}

.legacy-panel li {
  margin-bottom: 10px;
}

.feature-list {
  display: grid;
  gap: 18px;
}

.feature-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  align-items: start;
}

.feature-icon {
  width: 42px;
  height: 42px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: 'Cormorant SC', serif;
  font-weight: 700;
  border: 2px solid var(--red);
}

.feature-item h4 {
  color: var(--navy);
  font-size: 24px;
  margin-bottom: 4px;
}

.feature-item p {
  color: #475569;
  font-size: 15px;
}

.cta-band {
  background: var(--red);
  color: var(--cream);
  padding: 72px 24px;
}

.cta-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.cta-band h2 {
  font-size: clamp(34px, 4vw, 54px);
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.cta-band p {
  color: rgba(245, 241, 230, 0.85);
  max-width: 680px;
}

.cta-band .btn {
  background: var(--cream);
  color: var(--red);
  flex: 0 0 auto;
}

.cta-band .btn:hover {
  background: var(--gold);
  color: var(--navy);
}

.site-footer {
  background: #081827;
  color: var(--cream);
  padding: 54px 24px 28px;
}

.footer-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 32px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(245, 241, 230, 0.16);
}

.footer-logo {
  font-family: 'Cormorant SC', serif;
  font-size: 30px;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.footer-text {
  color: rgba(245, 241, 230, 0.72);
  max-width: 390px;
  font-size: 14px;
}

.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.footer-col a,
.footer-col p {
  display: block;
  color: rgba(245, 241, 230, 0.72);
  font-size: 14px;
  margin-bottom: 8px;
}

.footer-col a:hover {
  color: var(--cream);
}

.footer-bottom {
  max-width: 1180px;
  margin: 0 auto;
  padding-top: 22px;
  color: rgba(245, 241, 230, 0.56);
  font-size: 12px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

@media (max-width: 920px) {
  .nav {
    align-items: flex-start;
  }

  .nav-links {
    display: none;
  }

  .hero-inner,
  .mission-grid,
  .legacy-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .process-grid,
  .pillar-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cta-inner {
    display: grid;
  }
}

@media (max-width: 620px) {
  section {
    padding: 72px 20px;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding: 76px 20px;
  }

  .hero::before {
    inset: 14px;
  }

  .process-grid,
  .pillar-grid,
  .seal-row {
    grid-template-columns: 1fr;
  }

  .brand-title {
    font-size: 20px;
  }

  .book-title {
    font-size: 34px;
  }
}
