:root {
  color-scheme: light;
  --background: #f7f1e7;
  --background-warm: #fff9ef;
  --surface: #fffdf8;
  --surface-soft: #efe3d0;
  --text: #153c3f;
  --text-strong: #0b2f33;
  --muted: #5f6f6f;
  --accent: #2f8f87;
  --accent-strong: #1f6f6a;
  --accent-warm: #d96f45;
  --accent-soft: #dbeee9;
  --line: rgba(21, 60, 63, 0.16);
  --shadow: 0 24px 70px rgba(35, 54, 54, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(47, 143, 135, 0.22), transparent 30rem),
    radial-gradient(circle at bottom right, rgba(217, 111, 69, 0.18), transparent 28rem),
    linear-gradient(180deg, var(--background-warm), var(--background));
  color: var(--text);
}

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

.page-shell {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

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

.logo,
.nav-links,
.hero-actions {
  display: flex;
  align-items: center;
}

.logo {
  gap: 10px;
  color: var(--text-strong);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.logo-mark {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 999px;
  background: var(--accent);
  color: var(--surface);
  box-shadow: 0 12px 28px rgba(47, 143, 135, 0.28);
}

.nav-links {
  gap: 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: var(--accent-strong);
}

.hero {
  display: grid;
  min-height: 68vh;
  align-content: center;
  padding: 70px 0 92px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-warm);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 850px;
  margin-bottom: 22px;
  color: var(--text-strong);
  font-size: clamp(3rem, 9vw, 7.4rem);
  line-height: 0.9;
  letter-spacing: -0.08em;
}

h2 {
  margin-bottom: 16px;
  color: var(--text-strong);
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

h3 {
  margin-bottom: 12px;
  color: var(--text-strong);
  font-size: 1.25rem;
}

.hero-copy {
  max-width: 680px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.7;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 0 20px;
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.primary {
  background: var(--accent);
  color: var(--surface);
  box-shadow: 0 14px 32px rgba(47, 143, 135, 0.22);
}

.secondary {
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.72);
  color: var(--text-strong);
}

.secondary:hover {
  border-color: rgba(47, 143, 135, 0.35);
  background: var(--accent-soft);
}

.section-grid,
.split-section,
.contact-panel {
  margin-bottom: 28px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 253, 248, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.section-grid {
  padding: 32px;
}

.section-intro {
  max-width: 720px;
  margin-bottom: 28px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.card {
  min-height: 190px;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 24px;
  background: linear-gradient(180deg, rgba(219, 238, 233, 0.72), rgba(255, 253, 248, 0.92));
}

.card::before {
  display: block;
  width: 38px;
  height: 5px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: var(--accent-warm);
  content: "";
}

.card p,
.split-section p,
.contact-panel p {
  color: var(--muted);
  line-height: 1.7;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 34px;
  padding: 34px;
}

.contact-panel {
  padding: 34px;
  margin-bottom: 64px;
  background:
    linear-gradient(135deg, rgba(47, 143, 135, 0.12), rgba(217, 111, 69, 0.08)),
    rgba(255, 253, 248, 0.9);
}

@media (max-width: 820px) {
  .site-header,
  .split-section {
    align-items: flex-start;
    grid-template-columns: 1fr;
  }

  .site-header {
    flex-direction: column;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    letter-spacing: -0.06em;
  }
}
