:root {
  --navy: #0d1b2a;
  --navy-2: #13283d;
  --slate: #2b333b;
  --steel: #6b7178;
  --cream: #f7f4ed;
  --white: #ffffff;
  --mist: #e8edf0;
  --bluegray: #9aabba;
  --line: rgba(13, 27, 42, 0.14);
  --shadow: 0 20px 60px rgba(13, 27, 42, 0.12);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--slate);
  background: var(--cream);
  line-height: 1.65;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247, 244, 237, 0.94);
  border-bottom: 1px solid rgba(13, 27, 42, 0.08);
  backdrop-filter: blur(14px);
}
.nav-wrap { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { text-decoration: none; display: flex; align-items: center; gap: 12px; }
.brand img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
.brand span { display: flex; flex-direction: column; line-height: 1.15; }
.brand strong { font-family: "Libre Baskerville", Georgia, serif; color: var(--navy); font-size: 1.05rem; }
.brand small { margin-top: 5px; font-size: .66rem; color: var(--steel); text-transform: uppercase; letter-spacing: .13em; }
nav { display: flex; align-items: center; gap: 26px; font-size: .86rem; font-weight: 600; }
nav a { text-decoration: none; }
nav a:hover { color: var(--navy); }
.nav-cta { padding: 10px 16px; border-radius: 999px; background: var(--navy); color: var(--white); }
.nav-cta:hover { color: var(--white); background: var(--navy-2); }
.hero { position: relative; overflow: hidden; background: var(--navy); color: var(--white); padding: 94px 0 88px; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 85% 20%, rgba(154,171,186,.18), transparent 28%), linear-gradient(135deg, rgba(255,255,255,.03), transparent 45%);
}
.hero-ridges { position: absolute; inset: auto 0 0; height: 190px; opacity: .24; pointer-events: none; }
.hero-ridges::before, .hero-ridges::after { content: ""; position: absolute; left: -6%; width: 112%; height: 100%; bottom: -78px; background: #466074; transform: skewY(-6deg); border-radius: 50% 55% 0 0; }
.hero-ridges::after { bottom: -115px; background: #243a4e; transform: skewY(4deg); }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.08fr .92fr; gap: 70px; align-items: center; }
.eyebrow { margin: 0 0 16px; color: #c9d4dc; text-transform: uppercase; letter-spacing: .16em; font-size: .72rem; font-weight: 700; }
.eyebrow.dark { color: var(--steel); }
h1,h2,h3 { color: inherit; margin-top: 0; }
h1 { font-family: "Libre Baskerville", Georgia, serif; font-size: clamp(2.75rem, 5vw, 5.3rem); line-height: 1.03; letter-spacing: -.045em; margin-bottom: 28px; }
h1 em { font-style: normal; color: #dbe4ea; }
.lead { max-width: 760px; font-size: 1.1rem; color: #d8e0e5; margin: 0 0 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.button { display: inline-flex; justify-content: center; align-items: center; min-height: 50px; padding: 0 22px; border-radius: 7px; text-decoration: none; font-weight: 700; font-size: .86rem; transition: .2s ease; }
.button.primary { background: var(--cream); color: var(--navy); }
.button.primary:hover { transform: translateY(-2px); background: var(--white); }
.button.secondary { border: 1px solid rgba(255,255,255,.28); color: var(--white); }
.button.secondary:hover { background: rgba(255,255,255,.08); }
.button.light { background: var(--cream); color: var(--navy); }
.button.light:hover { background: var(--white); transform: translateY(-2px); }
.location-note { margin: 28px 0 0; color: #aebdc8; font-size: .75rem; text-transform: uppercase; letter-spacing: .09em; }
.location-note span { padding: 0 8px; }
.hero-card { border-radius: 16px; overflow: hidden; border: 1px solid rgba(255,255,255,.14); box-shadow: 0 30px 80px rgba(0,0,0,.28); transform: rotate(1deg); }
.hero-card img { width: 100%; aspect-ratio: 3 / 1; object-fit: cover; }
.trust-strip { background: var(--white); border-bottom: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.trust-grid > div { padding: 26px 24px; border-right: 1px solid var(--line); }
.trust-grid > div:first-child { padding-left: 0; }
.trust-grid > div:last-child { border-right: 0; }
.trust-grid strong { display: block; color: var(--navy); font-family: "Libre Baskerville", Georgia, serif; font-size: 1.05rem; }
.trust-grid span { display: block; color: var(--steel); font-size: .78rem; line-height: 1.45; margin-top: 6px; }
.section { padding: 96px 0; }
.section-heading { max-width: 780px; margin-bottom: 46px; }
.section-heading.centered { margin-left: auto; margin-right: auto; text-align: center; }
.section-heading h2, .check-grid h2, .principles-grid h2, .cta-inner h2 { font-family: "Libre Baskerville", Georgia, serif; color: var(--navy); font-size: clamp(2rem, 3.8vw, 3.25rem); line-height: 1.16; letter-spacing: -.025em; margin-bottom: 18px; }
.section-heading p:not(.eyebrow) { color: var(--steel); font-size: 1rem; }
.service-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.service-card { position: relative; background: var(--white); padding: 34px 30px 32px; border: 1px solid var(--line); border-radius: 12px; box-shadow: 0 8px 30px rgba(13,27,42,.04); }
.service-card .number { font-size: .7rem; color: var(--bluegray); font-weight: 700; letter-spacing: .15em; }
.service-card h3 { margin: 14px 0 10px; color: var(--navy); font-family: "Libre Baskerville", Georgia, serif; font-size: 1.45rem; }
.service-card p { color: var(--steel); font-size: .9rem; min-height: 68px; }
ul { padding-left: 18px; }
.service-card li, .price-card li { margin: 9px 0; font-size: .82rem; color: #48525b; }
.check-section { background: var(--navy); color: var(--white); }
.check-grid { display: grid; grid-template-columns: 1fr .95fr; gap: 74px; align-items: center; }
.check-grid h2 { color: var(--white); }
.lead-sm { color: #d2dce3; max-width: 650px; font-size: 1rem; }
.check-points { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.check-points span { border: 1px solid rgba(255,255,255,.18); border-radius: 999px; padding: 8px 12px; font-size: .72rem; color: #dbe4ea; }
.check-card { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.16); border-radius: 14px; padding: 34px; }
.mini-label { color: #b9c8d3; text-transform: uppercase; letter-spacing: .14em; font-size: .7rem; font-weight: 700; }
.check-card ol { padding-left: 22px; margin: 18px 0 26px; }
.check-card li { padding: 9px 0; color: #dbe4ea; font-size: .88rem; }
.check-card strong { color: var(--white); }
.pricing-section { background: #eef1f2; }
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; align-items: stretch; }
.price-card { position: relative; background: var(--white); border: 1px solid var(--line); border-radius: 12px; padding: 34px 28px; display: flex; flex-direction: column; min-height: 100%; }
.price-card.featured { border: 2px solid var(--navy); box-shadow: var(--shadow); transform: translateY(-10px); }
.fit-label { position: absolute; top: 0; right: 22px; transform: translateY(-50%); background: var(--navy); color: var(--white); border-radius: 999px; padding: 7px 12px; font-size: .64rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; }
.plan-name { color: var(--navy); font-weight: 700; font-size: .95rem; margin: 0 0 12px; }
.price { display: flex; align-items: flex-end; gap: 10px; }
.price span { font-family: "Libre Baskerville", Georgia, serif; font-size: 2.7rem; line-height: 1; color: var(--navy); }
.price small { color: var(--steel); padding-bottom: 4px; }
.after { margin: 9px 0 24px; color: var(--steel); font-size: .76rem; }
.price-card ul { margin: 0 0 26px; flex-grow: 1; }
.text-link { text-decoration: none; color: var(--navy); font-weight: 700; font-size: .8rem; }
.text-link:hover { text-decoration: underline; }
.principles-section { background: var(--cream); }
.principles-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: start; }
.principles-grid > div:first-child p:not(.eyebrow) { color: var(--steel); }
.principles-list { border-top: 1px solid var(--line); }
.principles-list > div { display: grid; grid-template-columns: 150px 1fr; gap: 24px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.principles-list strong { color: var(--navy); }
.principles-list span { color: var(--steel); font-size: .86rem; }
.cta-section { background: var(--navy-2); color: var(--white); padding: 60px 0; }
.cta-inner { display: flex; justify-content: space-between; gap: 40px; align-items: center; }
.cta-inner h2 { color: var(--white); margin-bottom: 0; font-size: clamp(1.8rem, 3vw, 2.8rem); }
.cta-inner .eyebrow { margin-bottom: 10px; }
footer { background: #091521; color: #bac6cf; padding: 42px 0; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: center; }
.footer-brand { display: flex; gap: 14px; align-items: center; }
.footer-brand img { width: 52px; height: 52px; border-radius: 50%; }
.footer-brand div { display: flex; flex-direction: column; }
.footer-brand strong { color: var(--white); font-family: "Libre Baskerville", Georgia, serif; }
.footer-brand span { font-size: .72rem; margin-top: 4px; }
.footer-contact { justify-self: end; display: flex; flex-direction: column; text-align: right; font-size: .78rem; gap: 4px; }
.footer-contact a { color: #dbe4ea; text-decoration: none; }
.footer-line { grid-column: 1 / -1; padding-top: 24px; margin-top: 6px; border-top: 1px solid rgba(255,255,255,.1); text-transform: uppercase; letter-spacing: .15em; font-size: .66rem; }
@media (max-width: 920px) {
  nav a:not(.nav-cta) { display: none; }
  .hero { padding-top: 70px; }
  .hero-grid, .check-grid, .principles-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-card { max-width: 720px; }
  .service-grid, .pricing-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .trust-grid { grid-template-columns: repeat(2,1fr); }
  .trust-grid > div:nth-child(2) { border-right: 0; }
  .trust-grid > div:first-child, .trust-grid > div:nth-child(3) { padding-left: 0; }
}
@media (max-width: 620px) {
  .container { width: min(100% - 28px, 1160px); }
  .nav-wrap { min-height: 70px; }
  .brand img { width: 44px; height: 44px; }
  .brand small { display: none; }
  .nav-cta { padding: 9px 13px; }
  .hero { padding: 58px 0 66px; }
  h1 { font-size: 2.65rem; }
  .hero-card { transform: none; }
  .location-note { line-height: 1.6; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid > div { border-right: 0; border-bottom: 1px solid var(--line); padding-left: 0; }
  .section { padding: 72px 0; }
  .service-card, .price-card, .check-card { padding: 28px 22px; }
  .principles-list > div { grid-template-columns: 1fr; gap: 6px; }
  .cta-inner { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-contact { justify-self: start; text-align: left; }
}
