/* Little Wins single-page starter site */
:root {
  --green: #5f7355;
  --green-dark: #2d4434;
  --green-light: #dfe4d8;
  --peach: #d77b62;
  --peach-soft: #f3d7ca;
  --cream: #f8eee6;
  --cream-light: #fffaf5;
  --ink: #2f3832;
  --muted: #687067;
  --line: rgba(95, 115, 85, 0.22);
  --shadow: 0 24px 70px rgba(45, 68, 52, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Trebuchet MS", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 18%, rgba(95, 115, 85, 0.10), transparent 23%),
    radial-gradient(circle at 93% 7%, rgba(215, 123, 98, 0.13), transparent 26%),
    linear-gradient(180deg, var(--cream-light), var(--cream));
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.container {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
}

.site-page {
  overflow: hidden;
}

.hero-section {
  position: relative;
  padding: 34px 0 48px;
}

.hero-section::before,
.hero-section::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
  border: 1px dashed rgba(215, 123, 98, 0.34);
}

.hero-section::before {
  width: 430px;
  height: 210px;
  top: -80px;
  right: -145px;
  transform: rotate(23deg);
}

.hero-section::after {
  width: 260px;
  height: 260px;
  left: -150px;
  bottom: 8%;
  border-color: rgba(95, 115, 85, 0.22);
}

.site-header {
  display: grid;
  grid-template-columns: 170px minmax(0, 760px);
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 4vw, 44px);
  margin: 0 auto 34px;
}

.logo-icon {
  width: 170px;
  justify-self: end;
}

.logo-text {
  width: min(760px, 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.96fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
}

.hero-image-wrap {
  position: relative;
  min-height: 580px;
  display: grid;
  place-items: end center;
}

.soft-blob {
  position: absolute;
  width: 86%;
  height: 72%;
  bottom: 5%;
  left: 5%;
  border-radius: 44% 56% 52% 48% / 48% 42% 58% 52%;
  background: rgba(95, 115, 85, 0.13);
  box-shadow: var(--shadow);
}

.hero-image {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  filter: drop-shadow(0 18px 24px rgba(45, 68, 52, 0.10));
}

.hero-content {
  position: relative;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(95, 115, 85, 0.18);
  border-radius: 34px;
  background: rgba(255, 250, 245, 0.68);
  box-shadow: var(--shadow);
  backdrop-filter: blur(5px);
}

.eyebrow {
  display: inline-block;
  margin: 0 0 18px;
  padding: 8px 24px 9px;
  border-radius: 999px;
  background: var(--peach);
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  letter-spacing: 0.09em;
}

.hero-content h1 {
  margin: 0;
  max-width: 680px;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(2.2rem, 5vw, 4.45rem);
  line-height: 1.08;
  color: var(--green-dark);
  text-wrap: balance;
}

.intro-copy {
  margin: 20px 0 26px;
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  color: var(--muted);
}

.intro-copy strong {
  color: var(--ink);
}

.service-card {
  padding: 22px clamp(18px, 3vw, 28px);
  border-radius: 26px;
  background: rgba(248, 238, 230, 0.72);
  border: 1px solid rgba(95, 115, 85, 0.16);
}

.service-heading {
  display: inline-block;
  margin: 0 0 10px;
  padding: 7px 18px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.services-list {
  columns: 2;
  column-gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.services-list li {
  break-inside: avoid;
  position: relative;
  padding: 9px 0 9px 30px;
  border-bottom: 1px dashed rgba(215, 123, 98, 0.36);
  font-size: 1rem;
}

.services-list li::before {
  content: "♥";
  position: absolute;
  left: 0;
  top: 8px;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 0.68rem;
  line-height: 1;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(45, 68, 52, 0.16);
}

.button.primary {
  background: var(--peach);
  color: #fff;
}

.button.secondary {
  background: var(--green-dark);
  color: #fff;
}

.about-strip {
  padding: 0 0 52px;
}

.about-inner {
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: center;
  gap: 24px;
  padding: 24px clamp(22px, 5vw, 54px);
  border: 1px solid rgba(95, 115, 85, 0.20);
  border-radius: 26px;
  background: rgba(255, 250, 245, 0.62);
}

.heart-mark {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(215, 123, 98, 0.14);
  color: var(--peach);
  font-size: 2rem;
}

.about-inner p {
  margin: 0;
  font-size: clamp(1rem, 1.8vw, 1.15rem);
}

.site-footer {
  padding: 24px 0 28px;
  background: var(--green-dark);
  color: #fff;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-name {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3vw, 2.25rem);
  letter-spacing: 0.04em;
}

.footer-contact {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-contact a {
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.34);
}

.footer-note {
  width: 100%;
  margin: 4px 0 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 125px minmax(0, 1fr);
  }

  .logo-icon {
    width: 125px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-image-wrap {
    min-height: 480px;
    order: 2;
  }

  .hero-content {
    order: 1;
  }
}

@media (max-width: 650px) {
  .container {
    width: min(100% - 24px, 1160px);
  }

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

  .site-header {
    grid-template-columns: 1fr;
    gap: 8px;
    text-align: center;
    margin-bottom: 24px;
  }

  .logo-icon,
  .logo-text {
    justify-self: center;
  }

  .logo-icon {
    width: 118px;
  }

  .logo-text {
    width: min(100%, 440px);
  }

  .hero-content {
    padding: 22px 18px;
    border-radius: 26px;
  }

  .eyebrow {
    width: 100%;
    text-align: center;
  }

  .services-list {
    columns: 1;
  }

  .cta-row,
  .button {
    width: 100%;
  }

  .hero-image-wrap {
    min-height: 390px;
  }

  .about-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .heart-mark {
    margin: 0 auto;
  }

  .footer-inner,
  .footer-contact {
    justify-content: center;
    text-align: center;
  }
}
