:root {
  --bg: #f3f6f5;
  --surface: #ffffff;
  --surface-muted: #eaf0ee;
  --text: #163330;
  --text-soft: #36514e;
  --brand: #0e7a67;
  --brand-strong: #0b5f50;
  --line: #cbd9d5;
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Trebuchet MS", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 0%, #dcebe7 0, transparent 35%),
    radial-gradient(circle at 90% 10%, #d3e7e2 0, transparent 30%),
    var(--bg);
  line-height: 1.55;
}

h1,
h2,
h3 {
  margin: 0 0 0.6rem;
  font-family: "Trebuchet MS", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

p {
  margin: 0 0 1rem;
  color: var(--text-soft);
}

a {
  color: var(--brand-strong);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(1120px, calc(100% - 2.2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(10px);
  background: rgb(243 246 245 / 86%);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  font-family: "Trebuchet MS", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.site-nav a {
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  font-weight: 600;
  color: var(--text-soft);
}

.site-nav a:hover,
.site-nav a.is-active {
  background: #dcebe7;
  color: var(--text);
  text-decoration: none;
}

.hero,
.page-hero {
  padding: 4.4rem 0 2rem;
}

.hero-grid {
  display: grid;
  gap: 1.6rem;
  grid-template-columns: 1.4fr 1fr;
  align-items: start;
}

.kicker {
  display: inline-block;
  margin-bottom: 0.8rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: #dcebe7;
  color: #114d42;
  font-weight: 700;
  font-size: 0.84rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(1.75rem, 3.4vw, 3rem);
  max-width: 22ch;
}

.lead {
  font-size: 1.14rem;
  max-width: 56ch;
}

.max-w {
  max-width: 64ch;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.65rem 1rem;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 700;
  text-decoration: none;
}

.btn:hover {
  text-decoration: none;
}

.btn-primary {
  background: var(--brand);
  color: #fff;
}

.btn-primary:hover {
  background: var(--brand-strong);
}

.btn-ghost {
  border-color: #a9c5bf;
  color: var(--text);
  background: #f8fbfa;
}

.hero-panel,
.card,
.quote-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: 0 10px 24px rgb(10 45 40 / 5%);
}

.hero-panel h2 {
  font-size: 1.15rem;
}

.hero-panel ul {
  margin: 0.8rem 0 0;
  padding-left: 1rem;
  color: var(--text-soft);
}

.hero-panel li {
  margin: 0.5rem 0;
}

.section {
  padding: 1.8rem 0;
}

.section-muted {
  background: var(--surface-muted);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cards {
  display: grid;
  gap: 1rem;
}

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

.showcase-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: 0 10px 24px rgb(10 45 40 / 8%);
}

.three-col {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card h3,
.card h2 {
  font-size: 1.15rem;
}

.split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1rem;
  align-items: center;
}

.mini-list p {
  margin: 0;
  padding: 0.7rem 0;
  border-bottom: 1px solid #bdd0cb;
}

.mini-list p:last-child {
  border-bottom: 0;
}

.quote-card {
  margin: 0;
  font-size: 1.25rem;
  font-family: "Trebuchet MS", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #0f4840;
}

.contact-card p {
  margin-bottom: 0.7rem;
}

.site-footer {
  padding: 1.2rem 0 1.8rem;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.6rem 1rem;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

.footer-grid p {
  margin: 0;
  font-size: 0.95rem;
}

@media (max-width: 920px) {
  .hero-grid,
  .three-col,
  .split,
  .two-col,
  .image-grid {
    grid-template-columns: 1fr;
  }

  .hero,
  .page-hero {
    padding-top: 3rem;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(1120px, calc(100% - 1.2rem));
  }

  .site-nav {
    gap: 0.2rem;
  }

  .site-nav a {
    font-size: 0.92rem;
    padding: 0.45rem 0.62rem;
  }
}
