:root {
  --cream: #faf6f0;
  --cream-deep: #f3ebe0;
  --sage: #6b9080;
  --sage-dark: #4f7367;
  --teal: #00897b;
  --terracotta: #c17c74;
  --terracotta-soft: #e8c4bf;
  --ink: #2c3338;
  --ink-soft: #5c6670;
  --blue: #1565c0;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(44, 51, 56, 0.08);
  --shadow-soft: 0 8px 24px rgba(44, 51, 56, 0.06);
  --radius: 18px;
  --radius-sm: 12px;
  --max: 1160px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(193, 124, 116, 0.12), transparent 28%),
    radial-gradient(circle at top right, rgba(107, 144, 128, 0.14), transparent 32%),
    linear-gradient(180deg, var(--cream) 0%, #fff 42%, var(--cream-deep) 100%);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(calc(100% - 2rem), var(--max));
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage-dark);
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.8rem, 6vw, 4.6rem);
  font-weight: 700;
}

h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  margin: 0 0 0.5rem;
  font-size: 1.45rem;
}

p {
  margin: 0;
}

.lead {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 38rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--teal), var(--sage-dark));
  color: var(--white);
  box-shadow: 0 10px 24px rgba(0, 137, 123, 0.22);
}

.btn-primary:hover {
  box-shadow: 0 14px 28px rgba(0, 137, 123, 0.28);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(107, 144, 128, 0.25);
  color: var(--ink);
}

.btn-ghost {
  padding: 0.65rem 1rem;
  border: 1px solid rgba(44, 51, 56, 0.12);
  background: rgba(255, 255, 255, 0.55);
}

.btn-lg {
  padding: 1rem 1.5rem;
  font-size: 1.05rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(250, 246, 240, 0.82);
  border-bottom: 1px solid rgba(107, 144, 128, 0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.45rem;
  font-weight: 700;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.nav a:not(.btn) {
  color: var(--ink-soft);
  font-weight: 600;
}

.nav a:not(.btn):hover {
  color: var(--ink);
}

.hero {
  padding: 4.5rem 0 3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 1.75rem 0 1.5rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--ink-soft);
  font-weight: 600;
}

.hero-stats li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.stat-icon {
  font-size: 1.1rem;
}

.hero-visual {
  position: relative;
}

.hero-image-stack {
  position: relative;
}

.hero-image {
  border-radius: calc(var(--radius) + 6px);
  box-shadow: var(--shadow);
  object-fit: cover;
}

.hero-image.main {
  width: 100%;
  min-height: 520px;
}

.hero-image.accent {
  position: absolute;
  right: -1rem;
  bottom: -1.25rem;
  width: 42%;
  border: 6px solid var(--cream);
}

.hero-card {
  position: absolute;
  left: -1rem;
  top: 2rem;
  max-width: 240px;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(107, 144, 128, 0.14);
}

.hero-card-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(0, 137, 123, 0.12);
  color: var(--teal);
  margin-bottom: 0.65rem;
}

.hero-card-icon svg {
  width: 22px;
  height: 22px;
}

.hero-card-title {
  margin: 0 0 0.35rem;
  font-weight: 700;
}

.hero-card-text {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.strip {
  padding: 1.5rem 0 3rem;
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.strip-grid article {
  padding: 1.25rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(107, 144, 128, 0.12);
  box-shadow: var(--shadow-soft);
}

.strip-grid p {
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.section {
  padding: 4.5rem 0;
}

.section-soft {
  background: linear-gradient(180deg, rgba(243, 235, 224, 0.55), rgba(250, 246, 240, 0.2));
}

.section-head {
  max-width: 720px;
  margin-bottom: 2.5rem;
}

.section-head p:last-child {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 2rem;
}

.steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
}

.step-num {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--terracotta-soft), rgba(255, 255, 255, 0.9));
  color: var(--terracotta);
  font-weight: 800;
}

.step-body {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.5rem;
  align-items: center;
  padding: 1rem;
  border-radius: calc(var(--radius) + 4px);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(107, 144, 128, 0.12);
  box-shadow: var(--shadow-soft);
}

.step-body.reverse {
  grid-template-columns: 1.05fr 0.95fr;
}

.step-body.reverse img {
  order: 2;
}

.step-body img {
  border-radius: var(--radius);
  min-height: 220px;
  object-fit: cover;
}

.step-body p {
  color: var(--ink-soft);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.feature-card {
  padding: 1.35rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(107, 144, 128, 0.12);
  box-shadow: var(--shadow-soft);
}

.feature-card p {
  color: var(--ink-soft);
}

.gallery {
  padding: 0 0 4.5rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery figure {
  margin: 0;
  overflow: hidden;
  border-radius: calc(var(--radius) + 2px);
  box-shadow: var(--shadow-soft);
}

.gallery img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery figure:hover img {
  transform: scale(1.03);
}

.gallery figcaption {
  padding: 0.85rem 1rem 1rem;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink-soft);
  font-weight: 600;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 2rem;
  align-items: center;
}

.trust-list {
  margin: 1.25rem 0 0;
  padding-left: 1.1rem;
  color: var(--ink-soft);
}

.trust-list li + li {
  margin-top: 0.55rem;
}

.trust-panel {
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(107, 144, 128, 0.12);
  box-shadow: var(--shadow);
}

.trust-panel img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.trust-panel blockquote {
  margin: 0;
  padding: 1.25rem 1.35rem 1.5rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  line-height: 1.35;
  color: var(--sage-dark);
}

.cta {
  padding: 0 0 4.5rem;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem 2.25rem;
  border-radius: calc(var(--radius) + 6px);
  background:
    linear-gradient(135deg, rgba(0, 137, 123, 0.92), rgba(79, 115, 103, 0.95)),
    url("https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?auto=format&fit=crop&w=1200&q=80") center / cover;
  color: var(--white);
  box-shadow: var(--shadow);
}

.cta-inner p {
  opacity: 0.92;
}

.site-footer {
  padding: 2rem 0 2.5rem;
  border-top: 1px solid rgba(107, 144, 128, 0.14);
  background: rgba(255, 255, 255, 0.55);
}

.footer-inner {
  display: grid;
  gap: 1.25rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.footer-brand p {
  color: var(--ink-soft);
  margin-top: 0.15rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.footer-note {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

@media (max-width: 980px) {
  .hero-grid,
  .trust-grid,
  .step-body,
  .step-body.reverse {
    grid-template-columns: 1fr;
  }

  .step-body.reverse img {
    order: 0;
  }

  .strip-grid,
  .feature-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-image.accent {
    position: static;
    width: 55%;
    margin: -2rem auto 0;
  }

  .hero-card {
    position: static;
    max-width: none;
    margin-top: 1rem;
  }
}

@media (max-width: 720px) {
  .nav a:not(.btn) {
    display: none;
  }

  .strip-grid,
  .feature-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding-top: 2.5rem;
  }
}
