:root {
  color-scheme: light;
  --bg: #f5fbfd;
  --ink: #0b0f12;
  --muted: #5b6b73;
  --card: #ffffff;
  --accent-1: #31d39f;
  --accent-2: #37cbd1;
  --accent-3: #36b7e4;
  --accent-4: #5b78e5;
  --shadow: 0 18px 40px rgba(12, 45, 75, 0.12);
  --radius: 20px;
}

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

body {
  margin: 0;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 15% 10%, #e1fbf6, transparent 60%),
    radial-gradient(circle at 85% 0%, #e0f4ff, transparent 55%),
    var(--bg);
}

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

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

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(245, 251, 253, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(12, 45, 75, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.site-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
  margin-right: auto;
}

.site-nav a {
  padding: 6px 10px;
  border-radius: 999px;
  transition: background 0.2s ease;
}

.site-nav a:hover,
.site-nav a.active {
  background: rgba(55, 203, 209, 0.2);
}

.cta {
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--accent-1), var(--accent-3));
  color: #041016;
  font-weight: 600;
}

.hero {
  padding: 90px 0 70px;
  position: relative;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  filter: blur(0px);
  opacity: 0.25;
  z-index: 0;
}

.hero::before {
  background: var(--accent-4);
  right: -120px;
  top: -80px;
}

.hero::after {
  background: var(--accent-1);
  left: -100px;
  bottom: -160px;
}

.hero-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-copy h1 {
  font-family: "Fraunces", "Times New Roman", serif;
  font-weight: 700;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  margin: 0 0 16px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--muted);
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 42ch;
}

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

.button {
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button.primary {
  background: linear-gradient(120deg, var(--accent-2), var(--accent-3));
  color: #041016;
}

.button.ghost {
  border-color: rgba(12, 45, 75, 0.2);
  color: var(--ink);
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-badges span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(55, 203, 209, 0.15);
  font-size: 0.85rem;
}

.hero-card {
  background: transparent;
  border-radius: var(--radius);
  padding: 0;
  box-shadow: none;
  display: grid;
  gap: 16px;
}

.hero-card img {
  border-radius: 16px;
  width: 350px;
  max-width: 350px;
}

.section {
  padding: 70px 0;
}

.section.alt {
  background: rgba(55, 203, 209, 0.08);
}

.section-head h2 {
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.section-head p {
  color: var(--muted);
  max-width: 52ch;
}

.grid {
  display: grid;
  gap: 20px;
  margin-top: 36px;
}

.grid.two {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

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

.services-grid {
  grid-template-columns: repeat(auto-fit, minmax(520px, 1fr));
}

.services-grid .card.wide {
  grid-column: 1 / -1;
}

.card,
.profile,
.contact-card,
.download-item {
  background: var(--card);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}

.card h3 {
  margin: 0 0 12px;
}

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

.card ul {
  margin: 12px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.card li {
  margin-bottom: 8px;
}

.profile {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 16px;
  align-items: center;
}

.profile-photo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(12, 45, 75, 0.08);
}

.contact-cards {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.contact-card {
  display: block;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.contact-card p {
  margin: 8px 0 0;
  color: var(--muted);
}

.contact-line {
  margin: 6px 0 0;
}

.contact-hours {
  margin-top: 12px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 16px;
  color: var(--muted);
}

.downloads {
  display: grid;
  gap: 14px;
  margin-top: 32px;
}

.download-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: transform 0.2s ease;
}

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

.tag {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(55, 203, 209, 0.15);
  font-size: 0.8rem;
}

.site-footer {
  padding: 40px 0 60px;
  border-top: 1px solid rgba(12, 45, 75, 0.08);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  text-align: center;
  color: var(--muted);
}

.footer-line {
  margin: 0;
  display: grid;
  gap: 6px;
  justify-items: center;
}

.footer-line span,
.footer-line a {
  color: inherit;
}

@media (max-width: 860px) {
  .site-nav {
    gap: 8px;
    font-size: 0.9rem;
  }

  .cta {
    display: none;
  }
}

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

  .hero {
    padding-top: 60px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}
