:root {
  --bg: #f5efe5;
  --surface: rgba(255, 250, 243, 0.74);
  --surface-strong: #fffaf3;
  --text: #172026;
  --muted: #5d6665;
  --line: rgba(23, 32, 38, 0.12);
  --accent: #0f766e;
  --accent-strong: #0a4d49;
  --warm: #d98c5f;
  --shadow: 0 18px 50px rgba(23, 32, 38, 0.08);
  --radius-lg: 28px;
  --radius-md: 18px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(217, 140, 95, 0.28), transparent 28%),
    radial-gradient(circle at top right, rgba(15, 118, 110, 0.2), transparent 24%),
    linear-gradient(180deg, #f8f2e8 0%, #f3ede3 100%);
}

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

.page-shell {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding: 24px 0 36px;
}

.site-header,
.hero,
.trust-strip,
.section,
.site-footer {
  backdrop-filter: blur(10px);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 250, 243, 0.7);
  position: sticky;
  top: 16px;
  z-index: 10;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent), var(--warm));
  color: white;
  font-weight: 800;
  font-size: 1.2rem;
}

.brand-name {
  display: block;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-tag {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-nav {
  display: flex;
  gap: 24px;
  font-weight: 600;
}

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

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.menu-toggle {
  display: none;
  border: 0;
  border-radius: 999px;
  padding: 12px 16px;
  background: var(--text);
  color: white;
  font: inherit;
  font-weight: 700;
}

.hero {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 28px;
  margin-top: 26px;
  padding: 34px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(255, 250, 243, 0.9), rgba(247, 240, 231, 0.72)),
    linear-gradient(180deg, rgba(15, 118, 110, 0.08), transparent);
  border: 1px solid rgba(23, 32, 38, 0.08);
  box-shadow: var(--shadow);
}

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

.hero h1,
.section h2 {
  margin: 0;
  font-family: "Fraunces", serif;
  line-height: 1.03;
  letter-spacing: -0.03em;
}

.hero h1 {
  max-width: 11ch;
  font-size: clamp(3rem, 6vw, 5.5rem);
}

.hero-text,
.split-copy p,
.card p,
.benefit-list li,
.contact-card p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.03rem;
}

.hero-text {
  max-width: 62ch;
  margin: 20px 0 0;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
}

.button-primary {
  color: white;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid var(--line);
}

.hero-card,
.card,
.trust-strip,
.highlight,
.site-footer {
  border: 1px solid rgba(23, 32, 38, 0.08);
  box-shadow: var(--shadow);
}

.hero-card {
  align-self: end;
  padding: 28px;
  border-radius: 26px;
  background: linear-gradient(180deg, #143b41 0%, #0d252b 100%);
  color: white;
}

.stat-label {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.82rem;
  font-weight: 800;
}

.stat-number {
  margin: 10px 0 12px;
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 800;
  line-height: 1;
}

.stat-copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.7;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.hero-grid div {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.hero-grid span {
  display: block;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.hero-grid strong {
  font-size: 1rem;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 20px 0 0;
  padding: 18px 22px;
  border-radius: 22px;
  background: rgba(255, 250, 243, 0.78);
}

.trust-strip p {
  margin: 0;
  font-weight: 700;
  color: var(--accent-strong);
}

.section {
  margin-top: 20px;
  padding: 34px;
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 243, 0.7);
  border: 1px solid rgba(23, 32, 38, 0.08);
}

.section-heading {
  max-width: 760px;
}

.section h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.cards {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

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

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

.card {
  padding: 24px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.58);
}

.card h3 {
  margin: 0 0 12px;
  font-size: 1.22rem;
}

.card p {
  margin: 0;
}

.split-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
}

.split-copy p:first-child {
  margin-top: 0;
}

.split-copy p:last-child {
  margin-bottom: 0;
}

.process-card span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(15, 118, 110, 0.12);
  color: var(--accent-strong);
  font-weight: 800;
  margin-bottom: 16px;
}

.highlight {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  background: linear-gradient(135deg, #fff5ec, #f3f4ec);
}

.benefit-list {
  margin: 0;
  padding-left: 22px;
}

.benefit-list li + li {
  margin-top: 14px;
}

.contact-card a {
  color: var(--accent-strong);
  font-weight: 700;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 20px;
  padding: 20px 24px;
  border-radius: 22px;
  background: rgba(255, 250, 243, 0.74);
}

.site-footer p {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 960px) {
  .hero,
  .split-section,
  .highlight,
  .three-up,
  .process-grid,
  .contact-grid,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .site-header {
    border-radius: 28px;
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    padding-top: 8px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero h1 {
    max-width: 100%;
  }

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

@media (max-width: 640px) {
  .page-shell {
    width: min(calc(100% - 18px), var(--max-width));
    padding-top: 14px;
  }

  .site-header,
  .hero,
  .section,
  .site-footer,
  .trust-strip {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .section {
    padding-top: 24px;
    padding-bottom: 24px;
  }
}
