:root {
  --teal: #2f6f6a;
  --teal-dark: #22524e;
  --leaf: #8cc7a5;
  --bark: #a24b2a;
  --cream: #faf7f2;
  --mist: #eef6f3;
  --ink: #1f2d2b;
  --muted: #5a6b68;
  --line: #dde8e4;
  --white: #ffffff;
  --radius: 18px;
  --shadow: 0 10px 30px rgba(31, 45, 43, 0.08);
  --serif: "Fraunces", Georgia, serif;
  --sans: "Source Sans 3", system-ui, -apple-system, "Segoe UI", sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.2;
  color: var(--teal-dark);
  margin: 0 0 0.6em;
}

p { margin: 0 0 1em; }

a { color: var(--teal); }

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-mark { width: 40px; height: 40px; flex: none; }

.brand-name {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--teal-dark);
}

.site-nav { display: flex; align-items: center; gap: 24px; }

.site-nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
}

.site-nav a:hover { color: var(--teal); }

.site-nav .nav-cta {
  color: var(--white);
  background: var(--teal);
  padding: 8px 18px;
  border-radius: 999px;
}

.site-nav .nav-cta:hover { background: var(--teal-dark); color: var(--white); }

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn-primary { background: var(--teal); color: var(--white); }
.btn-primary:hover { background: var(--teal-dark); }

.btn-ghost {
  border: 2px solid var(--teal);
  color: var(--teal);
  padding: 10px 22px;
}
.btn-ghost:hover { background: var(--teal); color: var(--white); }

.btn-lg { font-size: 1.15rem; padding: 14px 30px; }

a:focus-visible, .btn:focus-visible {
  outline: 3px solid var(--leaf);
  outline-offset: 3px;
}

/* Hero */
.hero {
  background: linear-gradient(180deg, var(--mist) 0%, var(--cream) 100%);
  padding: 72px 0 80px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--bark);
  margin-bottom: 12px;
}

.hero h1 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); }

.lead { font-size: 1.2rem; color: var(--muted); max-width: 34em; }

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

.hero-art svg {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

/* Sections */
.section { padding: 88px 0; }

.section-tint { background: var(--mist); }

.section-title { font-size: clamp(1.8rem, 3vw, 2.4rem); }

.section-intro { color: var(--muted); max-width: 40em; margin-bottom: 40px; }

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

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.card h3 { font-size: 1.25rem; margin-bottom: 0.4em; }
.card p { color: var(--muted); margin: 0; }

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--mist);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}

.card-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: var(--teal);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Approach */
.approach {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.approach p { font-size: 1.1rem; color: var(--muted); }

.values {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.values li {
  background: var(--white);
  border-left: 4px solid var(--leaf);
  border-radius: 12px;
  padding: 18px 20px;
}

.values strong {
  display: block;
  font-family: var(--serif);
  color: var(--teal-dark);
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.values span { color: var(--muted); font-size: 0.98rem; }

/* Contact */
.contact-card {
  max-width: 760px;
  text-align: center;
}

.contact-card > p { color: var(--muted); font-size: 1.1rem; }

.contact-card .btn { margin: 12px 0 20px; }

.contact-note { font-size: 0.95rem !important; }

/* Footer */
.site-footer {
  background: var(--teal-dark);
  color: #cfe3dd;
  padding: 28px 0;
  font-size: 0.95rem;
}

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

/* Responsive */
@media (max-width: 900px) {
  .hero-inner, .approach { grid-template-columns: 1fr; gap: 40px; }
  .hero-art { max-width: 480px; }
  .cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .container { padding: 0 16px; }
  .site-nav a:not(.nav-cta) { display: none; }
  .hero { padding: 48px 0 56px; }
  .section { padding: 64px 0; }
  .cards, .values { grid-template-columns: 1fr; }
  .brand-name { font-size: 1.2rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
