:root {
  color-scheme: only light;
  --blue-deep: #0a3a63;
  --blue: #1f6aa5;
  --green: #1d8a6b;
  --mint: #e3f5ef;
  --white: #ffffff;
  --slate: #173044;
  --shadow: 0 20px 50px rgba(8, 42, 71, 0.15);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

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

body {
  font-family: "Work Sans", "Trebuchet MS", sans-serif;
  color: var(--slate);
  background: radial-gradient(circle at top left, rgba(29, 138, 107, 0.15), transparent 50%),
    radial-gradient(circle at top right, rgba(31, 106, 165, 0.2), transparent 45%),
    linear-gradient(180deg, #f6fbff 0%, #eef7f3 55%, #ffffff 100%);
  min-height: 100vh;
}

.page {
  max-width: 1140px;
  margin: 0 auto;
  padding: 36px 24px 48px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand-mark {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--blue-deep), var(--green));
  display: grid;
  place-items: center;
  color: var(--white);
  font-weight: 700;
  letter-spacing: 1px;
  font-family: "Fraunces", "Georgia", serif;
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.brand-name {
  font-family: "Fraunces", "Georgia", serif;
  font-size: 1.4rem;
  font-weight: 700;
}

.brand-tagline {
  font-size: 0.95rem;
  color: rgba(23, 48, 68, 0.7);
}

.site-nav {
  display: flex;
  gap: 18px;
  font-weight: 600;
}

.site-nav a {
  text-decoration: none;
  color: var(--blue-deep);
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease;
}

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

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: center;
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
}

.hero-content h1 {
  font-family: "Fraunces", "Georgia", serif;
  font-size: clamp(2rem, 3vw, 3rem);
  margin: 12px 0 16px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green);
}

.hero-lede {
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

button {
  border: none;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
}

.primary {
  background: linear-gradient(135deg, var(--green), var(--blue));
  color: var(--white);
  box-shadow: 0 12px 24px rgba(31, 106, 165, 0.2);
}

.ghost {
  background: var(--mint);
  color: var(--blue-deep);
}

.hero-card {
  background: linear-gradient(160deg, rgba(31, 106, 165, 0.08), rgba(29, 138, 107, 0.12));
  border-radius: var(--radius-md);
  padding: 24px;
  display: grid;
  gap: 16px;
}

.hero-card h2 {
  font-size: 1.2rem;
}

.hero-card ul {
  list-style: none;
  display: grid;
  gap: 10px;
}

.hero-card li {
  padding-left: 18px;
  position: relative;
}

.hero-card li::before {
  content: "•";
  color: var(--green);
  position: absolute;
  left: 0;
  top: 0;
}

.hero-stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.stat {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--blue-deep);
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(23, 48, 68, 0.7);
}

.section {
  margin-top: 56px;
}

.section-header {
  display: grid;
  gap: 8px;
  margin-bottom: 24px;
}

.section h2 {
  font-family: "Fraunces", "Georgia", serif;
  font-size: 1.9rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 22px;
  box-shadow: 0 12px 30px rgba(12, 45, 70, 0.1);
  border: 1px solid rgba(31, 106, 165, 0.08);
}

.card h3 {
  margin-bottom: 12px;
  color: var(--blue-deep);
}

.card p {
  line-height: 1.5;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  align-items: center;
}

.checklist {
  list-style: none;
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.checklist li {
  padding-left: 28px;
  position: relative;
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

.panel {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 26px;
  border: 1px dashed rgba(31, 106, 165, 0.25);
  display: grid;
  gap: 16px;
}

.panel-line {
  height: 2px;
  background: linear-gradient(90deg, var(--green), transparent);
}

.panel-note {
  font-weight: 600;
  color: var(--blue);
}

.contact {
  display: grid;
  gap: 22px;
}

.contact-card {
  background: linear-gradient(140deg, rgba(31, 106, 165, 0.08), rgba(29, 138, 107, 0.15));
  border-radius: var(--radius-lg);
  padding: 24px;
  display: grid;
  gap: 16px;
}

.contact-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(23, 48, 68, 0.6);
}

.site-footer {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid rgba(23, 48, 68, 0.12);
  display: grid;
  gap: 6px;
  color: rgba(23, 48, 68, 0.7);
}

.footer-note {
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    flex-wrap: wrap;
  }

  .hero {
    padding: 24px;
  }
}
