:root {
  color-scheme: light;
  --bg: #f5f7f4;
  --surface: #ffffff;
  --ink: #0f1f1d;
  --muted: #4e5e5a;
  --accent: #1b8a88;
  --accent-strong: #166e7a;
  --border: rgba(15, 31, 29, 0.12);
  --shadow: 0 24px 60px rgba(10, 20, 18, 0.12);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Sora", "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, rgba(27, 138, 136, 0.12), transparent 52%),
    radial-gradient(circle at 20% 40%, rgba(22, 110, 122, 0.08), transparent 40%),
    var(--bg);
  color: var(--ink);
  line-height: 1.6;
  min-height: 100vh;
  scroll-behavior: smooth;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, 90vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(245, 247, 244, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(15, 31, 29, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.brand-name {
  font-size: 1rem;
}

.site-nav {
  display: none;
  gap: 24px;
  font-size: 0.95rem;
}

.site-nav a {
  color: var(--muted);
  transition: color 0.3s ease;
}

.site-nav a:hover {
  color: var(--accent-strong);
}

.hero {
  padding: 96px 0 72px;
}

.hero-grid {
  display: grid;
  gap: 32px;
}

.hero-copy h1 {
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.05;
  margin-bottom: 12px;
}

.hero-subtitle {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 14px;
  color: var(--accent-strong);
}

.hero-description {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 24px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 12px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.hero-metrics {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  color: var(--muted);
}

.metric-value {
  font-weight: 600;
  display: block;
  color: var(--ink);
}

.metric-label {
  font-size: 0.92rem;
}

.hero-panel {
  display: grid;
}

.hero-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.hero-card h2 {
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.hero-card ul {
  margin-top: 16px;
  display: grid;
  gap: 10px;
  padding-left: 18px;
  color: var(--muted);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.button.primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 18px 30px rgba(27, 138, 136, 0.25);
}

.button.primary:hover {
  transform: translateY(-2px);
  background: var(--accent-strong);
}

.button.secondary {
  background: rgba(27, 138, 136, 0.1);
  color: var(--accent-strong);
}

.button.secondary:hover {
  transform: translateY(-2px);
  background: rgba(27, 138, 136, 0.18);
}

.button.ghost {
  border-color: rgba(27, 138, 136, 0.3);
  color: var(--accent-strong);
}

.offerings {
  padding: 24px 0 80px;
}

.section-heading h2 {
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: clamp(1.8rem, 2.6vw, 2.4rem);
  margin-bottom: 10px;
}

.section-heading p {
  color: var(--muted);
  max-width: 560px;
}

.offerings-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: 32px;
}

.offering-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--border);
  box-shadow: 0 18px 40px rgba(10, 20, 18, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offering-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(10, 20, 18, 0.16);
}

.offering-card h3 {
  margin: 12px 0 10px;
  font-size: 1.2rem;
}

.offering-card p {
  color: var(--muted);
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(27, 138, 136, 0.12);
  color: var(--accent-strong);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.card-actions {
  margin-top: 18px;
}

.text-link {
  color: var(--accent-strong);
  font-weight: 600;
  display: inline-flex;
  gap: 6px;
  align-items: center;
}

.text-link::after {
  content: "→";
  transition: transform 0.2s ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

.audience {
  padding: 30px 0 80px;
}

.audience-grid {
  display: grid;
  gap: 28px;
}

.audience-cards {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.audience-card {
  background: rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-sm);
  padding: 20px;
  border: 1px solid var(--border);
}

.audience-card h3 {
  margin-bottom: 8px;
}

.audience-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.cta {
  padding: 30px 0 90px;
}

.cta-card {
  background: linear-gradient(120deg, rgba(27, 138, 136, 0.15), rgba(22, 110, 122, 0.1));
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  border: 1px solid rgba(27, 138, 136, 0.2);
}

.cta-card h2 {
  font-family: "Fraunces", "Times New Roman", serif;
  margin-bottom: 8px;
}

.cta-card p {
  color: var(--muted);
}

.site-footer {
  padding: 28px 0 40px;
  border-top: 1px solid rgba(15, 31, 29, 0.08);
  color: var(--muted);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 900px) {
  .site-nav {
    display: flex;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    align-items: center;
  }

  .audience-grid {
    grid-template-columns: minmax(0, 0.5fr) minmax(0, 1fr);
    align-items: center;
  }

  .cta-card {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
