﻿:root {
  --navy: #123a63;
  --navy-deep: #0d2c4d;
  --blue: #2f80d0;
  --blue-dark: #2368ac;
  --blue-bright: #67b7ff;
  --blue-soft: #eaf5ff;
  --sky: #f7fbff;
  --paper: #ffffff;
  --text: #20364a;
  --muted: #61758a;
  --line: #d7e7f5;
  --line-strong: #bfd7eb;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(31, 90, 138, .14);
  --radius: 18px;
  --max: 1160px;
  --measure: 64ch;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: "Work Sans", Arial, Helvetica, sans-serif;
  font-size: 1.04rem;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--navy-deep);
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  line-height: 1.12;
}

p {
  margin: 0;
}

.container {
  width: min(92%, var(--max));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  background: var(--navy);
  color: white;
  padding: .75rem 1rem;
  border-radius: 8px;
  z-index: 100;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  color: var(--navy-deep);
  text-decoration: none;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: .96rem;
}

.nav-links a:not(.button):hover {
  color: var(--blue);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line-strong);
  background: var(--white);
  color: var(--navy);
  border-radius: 10px;
  padding: .55rem .75rem;
  font: inherit;
  font-weight: 600;
}

.button,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  padding: .9rem 1.4rem;
  border-radius: 10px;
  background: var(--blue);
  color: var(--white) !important;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid var(--blue);
  box-shadow: 0 8px 20px rgba(47,128,208,.16);
  transition: .15s ease;
}

.button:hover,
.btn:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  transform: translateY(-1px);
}

.button.secondary,
.btn-outline {
  background: var(--white);
  color: var(--blue) !important;
  border-color: var(--line-strong);
  box-shadow: none;
}

.button.secondary:hover,
.btn-outline:hover {
  border-color: var(--blue);
  background: var(--blue-soft);
}

.eyebrow {
  display: inline-block;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .79rem;
  font-weight: 800;
  margin-bottom: .9rem;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 76px;
  background:
    radial-gradient(circle at 82% 18%, rgba(103,183,255,.22), transparent 28%),
    linear-gradient(145deg, #ffffff 0%, #f7fbff 45%, #eaf5ff 100%);
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto auto -140px -100px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(47,128,208,.06);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 64px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(3rem, 6vw, 5.2rem);
  letter-spacing: -.035em;
  max-width: 12ch;
}

.hero-copy {
  margin-top: 1.4rem;
  max-width: 610px;
  font-size: 1.18rem;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 1.9rem;
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem 1.1rem;
  margin-top: 1.6rem;
  color: var(--muted);
  font-size: .92rem;
}

.hero-notes span::before {
  content: "â€¢";
  color: var(--blue);
  margin-right: .5rem;
}

.photo-wrap {
  position: relative;
}

.photo-card {
  position: relative;
  max-width: 410px;
  margin-left: auto;
  padding: 14px;
  border-radius: 26px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(191,215,235,.85);
  box-shadow: var(--shadow);
}

.photo-card::before {
  content: "";
  position: absolute;
  inset: 22px -18px -18px 26px;
  background: linear-gradient(145deg, #dff1ff, #c8e8ff);
  border-radius: 24px;
  z-index: -1;
}

.photo-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 22%;
  border-radius: 18px;
}

.photo-caption {
  padding: 14px 6px 4px;
  color: var(--muted);
  font-size: .9rem;
}

.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 34px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.trust-grid > div {
  padding: 0 2rem;
  border-left: 1px solid var(--line);
}

.trust-grid > div:first-child {
  border-left: 0;
  padding-left: 0;
}

.trust-grid strong {
  display: block;
  color: var(--navy-deep);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.08rem;
  margin-bottom: .35rem;
}

.trust-grid p,
.trust-grid div {
  color: var(--muted);
  font-size: .96rem;
}

.section {
  padding: 82px 0;
}

.section-soft {
  background: var(--sky);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-intro {
  max-width: var(--measure);
  margin-bottom: 42px;
}

.section-intro h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  max-width: 16ch;
}

.section-intro p {
  margin-top: 1rem;
  color: var(--muted);
  max-width: 58ch;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 8px 26px rgba(31,90,138,.05);
}

.card h3 {
  font-size: 1.35rem;
  margin-bottom: .7rem;
}

.card p {
  color: var(--muted);
}

.about-premium {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 48px;
  align-items: start;
}

.about-premium p {
  color: var(--muted);
  max-width: 62ch;
}

.about-premium p + p {
  margin-top: 1rem;
}

.about-quote {
  padding: 30px;
  border-radius: var(--radius);
  background: linear-gradient(145deg, var(--blue-soft), #fafdff);
  border: 1px solid var(--line);
}

.about-quote strong {
  display: block;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.45rem;
  color: var(--navy-deep);
  line-height: 1.25;
}

.about-quote p {
  margin-top: 1rem;
}

.content-page {
  padding: 72px 0 90px;
  background: var(--white);
}

.content-page .prose {
  max-width: 790px;
}

.prose h1 {
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  margin-bottom: 1.2rem;
}

.prose h2 {
  margin-top: 2.6rem;
  font-size: 1.75rem;
}

.prose p {
  margin-top: .85rem;
  color: var(--muted);
}

.prose ul {
  color: var(--muted);
}

.faq-item {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.cta {
  margin-top: 52px;
  padding: 42px;
  text-align: center;
  background: linear-gradient(145deg, #eef8ff, #dff1ff);
  border: 1px solid var(--line);
  border-radius: 22px;
}

.cta h2 {
  margin-top: 0;
}

.cta p {
  max-width: 560px;
  margin: 1rem auto 1.4rem;
}

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

.footer-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-grid strong {
  color: white;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.15rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a {
  color: #dcecff;
  text-decoration: none;
}

.small {
  font-size: .88rem;
  color: var(--muted);
}

.site-footer .small {
  color: #a9c6df;
  margin-top: 24px;
}

@media (max-width: 860px) {
  .nav {
    min-height: 70px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: .65rem;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    padding: 1rem 4%;
    box-shadow: 0 16px 30px rgba(31,90,138,.08);
  }

  .nav-links.is-open {
    display: flex;
  }

  .hero {
    padding-top: 58px;
  }

  .hero-grid,
  .grid-3,
  .trust-grid,
  .about-premium {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: none;
  }

  .photo-card {
    margin: 12px 0 0;
    max-width: 340px;
  }

  .trust-grid > div {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 18px 0;
  }

  .trust-grid > div:first-child {
    border-top: 0;
  }

  .section {
    padding: 62px 0;
  }

  .cta {
    padding: 30px 22px;
  }
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: 0 8px 26px rgba(31,90,138,.06);
}

.testimonial-card p {
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.testimonial-card strong {
  display: block;
  color: var(--navy-deep);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.05rem;
}

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


.hero-notes span {
  position: relative;
  padding-left: 1rem;
}

.hero-notes span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: currentColor;
  transform: translateY(-50%);
}

