:root {
  --bg: #f8f4ed;
  --surface: #efe5d5;
  --surface-strong: #e6d8c1;
  --text: #1f2a24;
  --muted: #5b635d;
  --green: #285943;
  --green-deep: #1f4534;
  --terracotta: #c46d4b;
  --border: #d9ccb8;
  --white: #fffdf9;
  --shadow: 0 18px 50px rgba(40, 89, 67, 0.08);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(196, 109, 75, 0.08), transparent 28%),
    radial-gradient(circle at top right, rgba(40, 89, 67, 0.1), transparent 30%),
    var(--bg);
  color: var(--text);
  font-family: "Source Sans 3", sans-serif;
  padding-bottom: 92px;
}

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

.site-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 56px;
}

.section {
  margin-top: 20px;
  padding: 28px;
  border-radius: 28px;
}

.section-soft {
  background: rgba(239, 229, 213, 0.64);
  border: 1px solid rgba(217, 204, 184, 0.7);
  box-shadow: var(--shadow);
}

.hero {
  display: grid;
  gap: 20px;
  background: linear-gradient(145deg, rgba(255, 253, 249, 0.96), rgba(239, 229, 213, 0.88));
  border: 1px solid rgba(217, 204, 184, 0.8);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-copy,
.portrait-card,
.contact-card {
  animation: rise 700ms ease both;
}

.hero-copy {
  display: grid;
  align-content: start;
  gap: 14px;
}

.eyebrow,
.label {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--terracotta);
}

.eyebrow {
  width: fit-content;
  padding: 9px 14px;
  border: 1px solid rgba(196, 109, 75, 0.24);
  border-radius: 999px;
  background: rgba(196, 109, 75, 0.08);
}

h1,
h2 {
  margin: 0;
  font-family: "Outfit", sans-serif;
  line-height: 1.02;
}

h1 {
  font-size: clamp(2.5rem, 9vw, 4.8rem);
  letter-spacing: -0.04em;
  max-width: 11ch;
}

h2 {
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  letter-spacing: -0.03em;
  max-width: 16ch;
}

.lead,
.trust-line,
.prose p,
.contact-copy,
.contact-location {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.55;
  color: var(--muted);
}

.trust-line {
  color: var(--text);
  font-weight: 600;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 4px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 700;
  transition:
    transform 160ms ease,
    background-color 160ms ease,
    color 160ms ease,
    border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 10px 24px rgba(40, 89, 67, 0.18);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--green-deep);
}

.button-secondary {
  color: var(--green);
  background: rgba(255, 253, 249, 0.7);
  border: 1px solid rgba(40, 89, 67, 0.2);
}

.portrait-card {
  position: relative;
  min-height: 360px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(217, 204, 184, 0.8);
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.35), rgba(255, 253, 249, 0.02)),
    radial-gradient(circle at 30% 20%, rgba(196, 109, 75, 0.25), transparent 25%),
    linear-gradient(145deg, var(--surface-strong), rgba(239, 229, 213, 0.4));
}

.portrait-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 24%;
  background: linear-gradient(180deg, rgba(248, 244, 237, 0), rgba(248, 244, 237, 0.96));
}

.portrait-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: center top;
}

.portrait-badge {
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 18px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.9);
  border: 1px solid rgba(217, 204, 184, 0.9);
  color: var(--green);
  font-size: 0.9rem;
  font-weight: 700;
}

.section-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.prose {
  display: grid;
  gap: 16px;
  max-width: 68ch;
}

.card-grid,
.benefit-list,
.chip-grid {
  display: grid;
  gap: 14px;
}

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

.service-card,
.benefit-card {
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(217, 204, 184, 0.7);
  background: rgba(255, 253, 249, 0.9);
  box-shadow: var(--shadow);
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.35;
}

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

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

.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.88);
  border: 1px solid rgba(217, 204, 184, 0.82);
  color: var(--text);
  font-weight: 700;
  text-align: center;
  box-shadow: var(--shadow);
}

.contact-section {
  padding: 0;
  background: none;
}

.contact-card {
  display: grid;
  gap: 14px;
  padding: 30px 28px;
  border-radius: 28px;
  color: var(--white);
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.1), transparent 22%),
    linear-gradient(135deg, var(--green), var(--green-deep));
  box-shadow: 0 24px 48px rgba(31, 69, 52, 0.22);
}

.label-light {
  color: rgba(255, 253, 249, 0.72);
}

.contact-card h2,
.contact-card .contact-copy,
.contact-card .contact-location,
.contact-card .contact-phone {
  max-width: 28ch;
}

.contact-copy,
.contact-location {
  color: rgba(255, 253, 249, 0.82);
}

.contact-phone {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 700;
}

.button-light {
  background: var(--white);
  color: var(--green);
  box-shadow: none;
}

.button-light:hover,
.button-light:focus-visible {
  background: #f0ece4;
}

.button-outline-light {
  color: var(--white);
  border: 1px solid rgba(255, 253, 249, 0.32);
  background: rgba(255, 253, 249, 0.08);
}

.mobile-cta-bar {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr);
  gap: 10px;
  padding: 10px;
  border-radius: 22px;
  border: 1px solid rgba(217, 204, 184, 0.88);
  background: rgba(255, 253, 249, 0.92);
  box-shadow: 0 20px 40px rgba(31, 69, 52, 0.12);
  backdrop-filter: blur(10px);
}

.mobile-bar-button {
  min-width: 0;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  .hero-copy,
  .portrait-card,
  .contact-card,
  .button {
    animation: none;
    transition: none;
  }
}

@media (min-width: 720px) {
  .site-shell {
    width: min(1120px, calc(100% - 48px));
    padding-top: 28px;
  }

  body {
    padding-bottom: 0;
  }

  .section {
    margin-top: 24px;
    padding: 34px;
  }

  .hero {
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.85fr);
    align-items: stretch;
  }

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

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

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

  .contact-card {
    padding: 36px;
  }

  .mobile-cta-bar {
    display: none;
  }
}

@media (min-width: 980px) {
  .card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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