@import url("https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,400;1,9..144,500&family=Inter:wght@400;500;600;700;800&display=swap");

:root {
  --navy: #0c2340;
  --navy-deep: #081729;
  --navy-soft: #14304f;
  --gold: #c19a49;
  --gold-deep: #a57f2c;
  --gold-soft: #e8d9b8;
  --gold-pale: #f6efdd;
  --cream: #faf7f1;
  --ink: #12203a;
  --text: #465062;
  --muted-text: #6b7486;
  --line: #e7e1d3;
  --line-soft: #efeadd;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(12, 35, 64, 0.1);
  --shadow-soft: 0 10px 30px rgba(12, 35, 64, 0.06);
  --radius: 14px;
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: var(--sans);
  font-size: 1.02rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
}

.narrow {
  width: min(820px, calc(100% - 48px));
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px max(24px, calc((100vw - 1160px) / 2));
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line-soft);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.22rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  white-space: nowrap;
}

.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 10px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.93rem;
  font-weight: 600;
}

.site-nav a {
  color: #51596b;
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus {
  color: var(--navy);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.nav-cta {
  min-height: 44px;
  padding: 9px 20px;
  color: var(--white) !important;
  background: var(--navy);
}

.nav-cta:hover,
.nav-cta:focus {
  background: var(--navy-soft);
  transform: translateY(-1px);
}

.button-primary {
  color: var(--navy-deep);
  background: linear-gradient(180deg, #d3ad5f, var(--gold));
  box-shadow: 0 10px 24px rgba(193, 154, 73, 0.35);
}

.button-primary:hover,
.button-primary:focus {
  background: linear-gradient(180deg, #dcb96e, #c8a251);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(193, 154, 73, 0.45);
}

.button-light {
  color: var(--navy-deep);
  background: linear-gradient(180deg, #d3ad5f, var(--gold));
  box-shadow: 0 10px 24px rgba(8, 23, 41, 0.35);
}

.button-light:hover,
.button-light:focus {
  background: linear-gradient(180deg, #dcb96e, #c8a251);
  transform: translateY(-2px);
}

.button-outline-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}

.button-outline-light:hover,
.button-outline-light:focus {
  border-color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.button-outline {
  color: var(--navy);
  border-color: #c9cfda;
  background: var(--white);
}

.button-outline:hover,
.button-outline:focus {
  border-color: var(--navy);
  transform: translateY(-2px);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
}

.center-actions {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  color: var(--white);
  background:
    radial-gradient(1100px 520px at 82% -10%, rgba(193, 154, 73, 0.22), transparent 60%),
    radial-gradient(900px 600px at -10% 110%, rgba(20, 48, 79, 0.9), transparent 65%),
    linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 55%, #0f2a4c 100%);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 26px 26px;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  align-items: center;
  gap: 64px;
  padding: 110px 0 96px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--gold);
}

.section-heading .eyebrow {
  justify-content: center;
}

.section-heading .eyebrow::after {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--gold);
}

.hero h1,
.section h2,
.page-hero h1 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 550;
  font-size: clamp(2.2rem, 4.2vw, 3.7rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 4.6vw, 4rem);
}

.hero h1 em,
.section h2 em,
.page-hero h1 em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
}

.section h2 em {
  color: var(--gold-deep);
}

.hero-subtitle {
  max-width: 640px;
  margin: 24px 0 0;
  color: #c4d0e0;
  font-size: 1.2rem;
  line-height: 1.75;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 26px 0 0;
  color: #9fb0c6;
  font-size: 0.92rem;
  font-weight: 500;
}

.hero-note::before {
  content: "★";
  color: var(--gold);
}

/* Hero stats panel */

.hero-panel {
  display: grid;
  gap: 0;
  padding: 12px 34px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-panel div {
  padding: 26px 0;
}

.hero-panel div + div {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-panel strong {
  display: block;
  color: var(--white);
  font-family: var(--serif);
  font-size: 2.7rem;
  font-weight: 550;
  line-height: 1;
}

.hero-panel strong .stat-accent,
.hero-panel strong em {
  color: var(--gold);
  font-style: normal;
}

.hero-panel span {
  display: block;
  margin-top: 8px;
  color: #b9c6d8;
  font-size: 0.95rem;
  font-weight: 500;
}

/* ---------- Page hero (subpages) ---------- */

.page-hero {
  position: relative;
  padding: 96px 0 76px;
  color: var(--white);
  background:
    radial-gradient(900px 420px at 85% -20%, rgba(193, 154, 73, 0.2), transparent 60%),
    linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 60%, #0f2a4c 100%);
  overflow: hidden;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 26px 26px;
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  max-width: 840px;
  color: var(--white);
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
}

.page-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 20px 0 0;
  color: #c4d0e0;
  font-size: 1.14rem;
}

/* ---------- Sections ---------- */

.section {
  padding: 100px 0;
}

.muted {
  background: var(--cream);
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  margin: 18px auto 0;
  color: var(--text);
  font-size: 1.08rem;
}

/* ---------- Cards ---------- */

.card-grid {
  display: grid;
  gap: 26px;
}

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

.card,
.process-grid article,
.mini-grid article,
details,
.contact-form,
.quote-card,
.stat-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.card {
  display: flex;
  flex-direction: column;
  padding: 36px 32px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-soft);
  box-shadow: var(--shadow);
}

.card h3,
.process-grid h3,
.mini-grid h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.42rem;
  font-weight: 550;
  line-height: 1.25;
}

.card p,
.process-grid p,
.mini-grid p {
  margin: 0;
  font-size: 0.99rem;
}

.card .text-link {
  margin-top: auto;
}

.icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 12px;
  color: var(--gold-deep);
  background: var(--gold-pale);
  border: 1px solid var(--gold-soft);
  font-family: var(--serif);
  font-size: 1.02rem;
  font-weight: 600;
}

.check-list {
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  margin: 11px 0;
  padding-left: 30px;
  color: var(--ink);
  font-weight: 500;
  font-size: 0.98rem;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--gold-deep);
  background: var(--gold-pale);
  font-size: 0.72rem;
  font-weight: 800;
}

.columns {
  columns: 2;
  column-gap: 30px;
}

.columns li {
  break-inside: avoid;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-deep);
  font-weight: 700;
  font-size: 0.96rem;
  text-decoration: none;
}

.text-link::after {
  content: "→";
  transition: transform 0.2s ease;
}

.text-link:hover::after,
.text-link:focus::after {
  transform: translateX(4px);
}

.inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.inline-links a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--navy);
  background: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.inline-links a:hover,
.inline-links a:focus {
  border-color: var(--gold);
  background: var(--gold-pale);
}

/* ---------- Process ---------- */

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.process-grid article {
  position: relative;
  padding: 58px 26px 30px;
  box-shadow: var(--shadow-soft);
}

.process-grid span {
  position: absolute;
  top: -20px;
  left: 26px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--navy-deep);
  background: linear-gradient(180deg, #d3ad5f, var(--gold));
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  box-shadow: 0 8px 18px rgba(193, 154, 73, 0.35);
}

/* ---------- Split layouts ---------- */

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  align-items: center;
  gap: 64px;
}

.reverse {
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1fr);
}

.reverse > :first-child {
  grid-column: 2;
}

.reverse > :last-child {
  grid-column: 1;
  grid-row: 1;
}

.split h2 {
  margin-bottom: 20px;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
}

.split > div > p:not(.eyebrow) {
  font-size: 1.05rem;
}

.stat-card {
  padding: 52px 44px;
  text-align: center;
  background:
    radial-gradient(400px 200px at 50% -20%, rgba(193, 154, 73, 0.14), transparent 70%),
    var(--white);
  box-shadow: var(--shadow-soft);
}

.stat-card strong {
  display: block;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 4rem;
  font-weight: 550;
  line-height: 1;
}

.stat-card span {
  display: block;
  margin-top: 14px;
  color: var(--text);
  font-weight: 500;
}

.stat-card.accent strong {
  color: var(--gold-deep);
}

/* ---------- Programs / tiers ---------- */

.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  align-items: stretch;
}

.tier {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 40px 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.tier:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.tier.featured {
  border-color: var(--gold);
  background:
    radial-gradient(420px 220px at 50% -10%, rgba(193, 154, 73, 0.12), transparent 70%),
    var(--white);
  box-shadow: var(--shadow);
}

.tier-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 16px;
  border-radius: 999px;
  color: var(--navy-deep);
  background: linear-gradient(180deg, #d3ad5f, var(--gold));
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(193, 154, 73, 0.35);
}

.tier h3 {
  margin: 0 0 6px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 550;
}

.tier .tier-tagline {
  margin: 0 0 4px;
  color: var(--gold-deep);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.tier > p {
  margin: 0;
  font-size: 0.97rem;
}

.tier .check-list {
  margin: 24px 0 28px;
}

.tier .button {
  margin-top: auto;
}

/* ---------- Tables ---------- */

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

.compact table {
  min-width: 560px;
}

th,
td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line-soft);
  text-align: left;
}

tbody tr:last-child td {
  border-bottom: 0;
}

th {
  color: var(--white);
  background: var(--navy);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

th:first-child {
  border-top-left-radius: calc(var(--radius) - 1px);
}

th:last-child {
  border-top-right-radius: calc(var(--radius) - 1px);
}

td:first-child {
  color: var(--ink);
  font-weight: 600;
}

.table-wrap:not(.compact) td:nth-child(2) {
  color: var(--gold-deep);
  font-weight: 700;
}

/* ---------- Resources ---------- */

.resource-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.resource-group {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 26px;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.resource-group h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 550;
}

.resource-group p:not(.eyebrow) {
  margin: 0;
  font-size: 0.98rem;
}

.resource-list {
  display: grid;
  gap: 10px;
  align-content: start;
  margin: 0;
  padding: 0;
  list-style: none;
}

.resource-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 14px 18px;
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  color: var(--navy);
  background: var(--cream);
  font-weight: 600;
  font-size: 0.96rem;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.resource-list a::after {
  content: "→";
  color: var(--gold-deep);
}

.resource-list a:hover,
.resource-list a:focus {
  border-color: var(--gold);
  background: var(--gold-pale);
  transform: translateX(3px);
}

/* ---------- About / mini grid ---------- */

.mini-grid {
  display: grid;
  gap: 16px;
  margin-top: 32px;
}

.mini-grid article {
  padding: 22px 24px;
  box-shadow: none;
  border-left: 3px solid var(--gold);
}

/* ---------- Quotes / testimonials ---------- */

.quote-card {
  position: relative;
  padding: 40px 36px;
  box-shadow: var(--shadow-soft);
}

.quote-card::before {
  content: "“";
  position: absolute;
  top: 10px;
  left: 28px;
  color: var(--gold-soft);
  font-family: var(--serif);
  font-size: 5rem;
  line-height: 1;
  pointer-events: none;
}

.quote-card p {
  position: relative;
  margin: 18px 0 24px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 450;
  font-style: italic;
  line-height: 1.6;
}

.quote-card strong,
.quote-card span {
  display: block;
}

.quote-card strong {
  color: var(--ink);
}

.quote-card span {
  color: var(--muted-text);
  font-size: 0.92rem;
}

.quote-stars {
  color: var(--gold);
  font-size: 0.95rem;
  letter-spacing: 3px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

/* ---------- FAQ ---------- */

.faq-list {
  display: grid;
  gap: 14px;
}

details {
  padding: 0;
  overflow: hidden;
  transition: border-color 0.2s ease;
}

details[open] {
  border-color: var(--gold-soft);
  box-shadow: var(--shadow-soft);
}

summary {
  position: relative;
  padding: 20px 56px 20px 24px;
  color: var(--ink);
  font-weight: 650;
  font-size: 1.02rem;
  cursor: pointer;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--gold-deep);
  background: var(--gold-pale);
  font-size: 1.1rem;
  font-weight: 600;
  transition: transform 0.2s ease;
}

details[open] summary::after {
  content: "–";
  transform: translateY(-50%);
}

details p {
  margin: 0;
  padding: 0 24px 24px;
}

/* ---------- Content pages ---------- */

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.36fr);
  gap: 36px;
  align-items: start;
}

.content-main,
.content-side {
  display: grid;
  gap: 24px;
}

.content-card {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.content-card h2,
.content-card h3 {
  margin: 0 0 14px;
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 550;
}

.content-card h2 {
  font-size: 1.6rem;
}

.content-card h3 {
  font-size: 1.25rem;
}

.content-card p {
  margin: 0 0 14px;
}

.content-card p:last-child {
  margin-bottom: 0;
}

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

.related-links a {
  color: var(--navy);
  font-weight: 650;
  text-decoration: none;
}

.related-links a:hover,
.related-links a:focus {
  color: var(--gold-deep);
}

/* ---------- Contact ---------- */

.contact-section {
  position: relative;
  color: var(--white);
  background:
    radial-gradient(900px 480px at 85% -10%, rgba(193, 154, 73, 0.2), transparent 60%),
    linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 60%, #0f2a4c 100%);
  overflow: hidden;
}

.contact-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 26px 26px;
  pointer-events: none;
}

.contact-section .container {
  position: relative;
  z-index: 1;
}

.contact-section h2 {
  color: var(--white);
}

.contact-section .split > div > p:not(.eyebrow) {
  color: #c4d0e0;
}

.contact-info {
  display: grid;
  gap: 10px;
  margin-top: 30px;
  font-weight: 600;
}

.contact-info a {
  color: var(--gold);
  text-decoration: none;
}

.contact-info span {
  color: #9fb0c6;
  font-weight: 500;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 36px 32px;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 600;
  font-size: 0.94rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #d5d0c3;
  border-radius: 10px;
  padding: 13px 15px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
  font-size: 0.98rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(193, 154, 73, 0.18);
}

textarea {
  resize: vertical;
}

.form-note {
  margin: 0;
  color: var(--muted-text);
  font-size: 0.88rem;
  text-align: center;
}

/* ---------- Footer ---------- */

.site-footer {
  padding: 64px 0 28px;
  color: #b9c6d8;
  background: var(--navy-deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  align-items: start;
}

.site-footer strong {
  display: block;
  margin-bottom: 8px;
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 550;
}

.site-footer p {
  max-width: 480px;
  margin: 0;
  font-size: 0.96rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.94rem;
  font-weight: 500;
}

.site-footer a {
  color: #b9c6d8;
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer a:hover,
.site-footer a:focus {
  color: var(--gold);
}

.copyright {
  width: min(1160px, calc(100% - 48px));
  margin: 44px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #7d8ca0;
  font-size: 0.88rem;
}

/* ---------- Blog ---------- */

.post-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.post-card {
  display: flex;
  flex-direction: column;
  padding: 36px 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.post-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-soft);
  box-shadow: var(--shadow);
}

.post-meta {
  display: flex;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--gold-deep);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.post-card h2 {
  margin: 0 0 12px;
  font-size: 1.55rem;
  line-height: 1.25;
}

.post-card h2 a {
  color: var(--ink);
  text-decoration: none;
  transition: color 0.2s ease;
}

.post-card h2 a:hover,
.post-card h2 a:focus {
  color: var(--gold-deep);
}

.post-excerpt {
  margin: 0 0 16px;
  font-size: 0.99rem;
}

.post-author {
  margin: 0 0 18px;
  color: var(--muted-text);
  font-size: 0.9rem;
  font-weight: 500;
}

.post-card .text-link {
  margin-top: auto;
}

.blog-empty {
  max-width: 560px;
  margin: 0 auto;
  padding: 56px 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.blog-empty h2 {
  font-size: 1.8rem;
  margin-bottom: 14px;
}

.blog-empty .button {
  margin-top: 22px;
}

.article-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: #9fb0c6 !important;
  font-size: 0.95rem !important;
  font-weight: 500;
}

.article-body {
  font-size: 1.08rem;
  line-height: 1.85;
}

.article-body h2,
.article-body h3,
.article-body h4 {
  margin: 1.6em 0 0.55em;
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 550;
  line-height: 1.25;
}

.article-body h2 {
  font-size: 1.75rem;
}

.article-body h3 {
  font-size: 1.35rem;
}

.article-body > *:first-child {
  margin-top: 0;
}

.article-body p {
  margin: 0 0 1.25em;
}

.article-body a {
  color: var(--gold-deep);
  font-weight: 600;
}

.article-body ul,
.article-body ol {
  margin: 0 0 1.4em;
  padding-left: 26px;
}

.article-body li {
  margin: 0.45em 0;
}

.article-body blockquote {
  margin: 1.6em 0;
  padding: 14px 26px;
  border-left: 3px solid var(--gold);
  border-radius: 0 10px 10px 0;
  background: var(--gold-pale);
  color: var(--ink);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.12rem;
}

.article-body blockquote p {
  margin: 0;
}

.article-body pre {
  margin: 1.4em 0;
  padding: 18px;
  border-radius: 10px;
  background: var(--navy-deep);
  color: #dbe6f3;
  font-size: 0.9rem;
  overflow-x: auto;
}

.article-body code {
  padding: 1px 6px;
  border-radius: 6px;
  background: var(--gold-pale);
  color: var(--ink);
  font-size: 0.92em;
}

.article-body pre code {
  padding: 0;
  background: none;
  color: inherit;
}

.article-body img {
  border-radius: var(--radius);
  margin: 1.4em 0;
}

.article-body hr {
  margin: 2.2em auto;
  width: 120px;
  border: 0;
  border-top: 1px solid var(--gold-soft);
}

.article-back {
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid var(--line-soft);
}

@media (max-width: 860px) {
  .post-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Reveal animation ---------- */

@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .reveal.in {
    opacity: 1;
    transform: none;
  }
}

/* ---------- Responsive ---------- */

@media (max-width: 960px) {
  .three,
  .tier-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .tier.featured {
    order: -1;
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 34px;
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 24px 22px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 14px 0;
  }

  .nav-cta {
    margin-top: 10px;
    justify-content: center;
  }

  .hero-grid,
  .split,
  .reverse,
  .resource-groups,
  .content-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    padding: 72px 0 64px;
    gap: 44px;
  }

  .reverse > :first-child,
  .reverse > :last-child {
    grid-column: auto;
    grid-row: auto;
  }

  .columns {
    columns: 1;
  }

  .section {
    padding: 76px 0;
  }
}

@media (max-width: 560px) {
  .container,
  .narrow,
  .copyright {
    width: min(100% - 32px, 1160px);
  }

  .section {
    padding: 64px 0;
  }

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

  .button-row {
    flex-direction: column;
    align-items: stretch;
  }

  .button-row .button {
    width: 100%;
  }

  .hero h1 {
    font-size: 2.35rem;
  }

  .hero-subtitle {
    font-size: 1.08rem;
  }

  .hero-panel {
    padding: 6px 26px;
  }

  .card,
  .tier,
  .stat-card,
  .quote-card,
  .contact-form,
  .resource-group,
  .content-card {
    padding: 26px 22px;
  }
}
