:root {
  --ink: #17352f;
  --deep: #0d5a4c;
  --mint: #fbe5ea;
  --cream: #fffaf2;
  --coral: #ef735d;
  --yellow: #f7d778;
  --white: #fff;
  --line: rgba(23, 53, 47, .16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

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

a:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

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

.site-header {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(20px, 5vw, 76px);
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 10;
}

.wordmark {
  font-family: "Fraunces", serif;
  font-size: 1.35rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 9px;
}

.header-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 3px 5px rgba(23, 53, 47, .12));
}

.site-header nav {
  display: flex;
  gap: 28px;
  font-size: .93rem;
  font-weight: 600;
}

.site-header nav a:hover,
.text-link:hover {
  text-decoration: underline;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--coral);
  color: white;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(160, 59, 42, .18);
  transition: transform .2s, box-shadow .2s;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(160, 59, 42, .24);
}

.button-small {
  padding: 10px 19px;
}

.hero {
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  align-items: center;
  gap: clamp(30px, 6vw, 90px);
  padding: 60px clamp(20px, 7vw, 110px) 76px;
  background: radial-gradient(circle at 15% 25%, #fff 0 2px, transparent 3px) 0 0 / 32px 32px, var(--mint);
}

.hero-photo-wrap {
  position: relative;
  min-height: 530px;
  display: grid;
  place-items: center;
}

.hero-blob {
  position: absolute;
  inset: 3% 1% 4%;
  background: var(--yellow);
  border-radius: 47% 53% 44% 56% / 53% 40% 60% 47%;
  transform: rotate(-4deg);
}

.hero-photo {
  position: relative;
  z-index: 1;
  width: min(92%, 560px);
  height: 500px;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 25px 25px rgba(23, 53, 47, .2));
}

.hero-note {
  position: absolute;
  z-index: 2;
  right: -20px;
  bottom: 54px;
  background: var(--deep);
  color: white;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  font-weight: 700;
  font-size: .84rem;
  line-height: 1.3;
  transform: rotate(7deg);
  border: 5px solid var(--mint);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .78rem;
  font-weight: 700;
  color: var(--deep);
  margin: 0 0 14px;
}

.hero h1,
.intro h2,
.treat-banner h2,
.why h2,
.contact h2 {
  font-family: "Fraunces", serif;
  line-height: .98;
  letter-spacing: -.035em;
  margin: 0;
}

.hero h1 {
  font-size: clamp(3.3rem, 6vw, 6.6rem);
}

.hero h1 em {
  color: var(--deep);
  font-style: normal;
}

.lede {
  max-width: 560px;
  font-size: 1.18rem;
  margin: 26px 0;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.text-link {
  font-weight: 700;
}

.trust-list {
  list-style: none;
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  padding: 0;
  margin: 30px 0 0;
  font-size: .86rem;
  font-weight: 600;
}

.trust-list li::before {
  content: "✓";
  color: var(--deep);
  margin-right: 7px;
}

.intro {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  padding: 95px 24px 50px;
}

.intro h2,
.treat-banner h2,
.why h2,
.contact h2 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}

.intro > p:last-child {
  max-width: 620px;
  margin: 20px auto 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  padding: 0 clamp(20px, 5vw, 72px);
  max-width: 1500px;
  margin: auto;
}

.service-card {
  background: white;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 16px 35px rgba(23, 53, 47, .07);
  display: flex;
  flex-direction: column;
}

.service-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #f7dce3;
}

.service-card.featured {
  transform: rotate(-1deg);
}

.service-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.tag {
  background: var(--mint);
  border-radius: 99px;
  padding: 5px 10px;
  font-size: .76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.price {
  font-family: "Fraunces", serif;
  font-size: 1.35rem;
  font-weight: 700;
}

.service-card h3 {
  font-family: "Fraunces", serif;
  font-size: 1.65rem;
  margin: 14px 0 8px;
}

.service-card p {
  margin: 0 0 22px;
  color: #49625d;
}

.card-button {
  margin-top: auto;
  width: 100%;
  box-shadow: none;
}

.card-button span {
  margin-left: auto;
}

.service-note {
  text-align: center;
  max-width: 740px;
  margin: 34px auto 90px;
  padding: 0 20px;
  font-size: .86rem;
  color: #667a75;
}

.treat-banner {
  margin: 0 clamp(20px, 5vw, 72px) 100px;
  padding: 0;
  color: var(--ink);
  display: grid;
  grid-template-columns: minmax(380px, 52%) minmax(0, 1fr);
  align-items: center;
  gap: 24px clamp(36px, 6vw, 80px);
}

.treat-banner .eyebrow {
  color: var(--coral);
}

.treat-photo {
  position: relative;
  width: 100%;
  max-width: 620px;
  aspect-ratio: 1;
  margin: 0;
  grid-row: 1 / span 2;
  border-radius: 0;
  overflow: hidden;
  background: transparent;
}

.treat-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.treat-photo figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  background: var(--yellow);
  color: var(--ink);
  border-radius: 999px;
  padding: 5px 10px;
  font-size: .78rem;
  font-weight: 700;
}

.treat-banner h2 {
  font-size: clamp(2rem, 4vw, 3.7rem);
}

.treat-banner p {
  max-width: 680px;
  margin-bottom: 8px;
}

.treat-note {
  color: var(--deep);
  font-size: .9rem;
}

.treat-buy {
  grid-column: 2;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
}

.treat-buy strong {
  font-family: "Fraunces", serif;
  font-size: 3rem;
}

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

.why {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  padding: 0 clamp(24px, 8vw, 120px) 110px;
}

.why-list p {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding: 22px 0;
  margin: 0;
}

.why-list b {
  color: var(--coral);
}

.why-list strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.contact {
  text-align: center;
  background: var(--yellow);
  padding: 90px 24px;
}

.contact p {
  font-size: 1.08rem;
}

.contact-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.contact-actions > a:not(.button) {
  font-weight: 700;
  text-decoration: underline;
}

footer {
  background: var(--ink);
  color: white;
  padding: 28px clamp(20px, 5vw, 72px);
  display: flex;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
  font-size: .9rem;
}

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

  .button {
    transition: none;
  }
}

@media (max-width: 1100px) {
  .treat-banner {
    grid-template-columns: minmax(340px, 48%) 1fr;
  }

  .treat-photo {
    max-width: 520px;
  }
}

@media (max-width: 900px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .hero-copy {
    order: -1;
  }

  .hero-photo-wrap {
    min-height: 430px;
  }

  .hero-photo {
    height: 420px;
  }

  .treat-banner {
    grid-template-columns: minmax(300px, 45%) 1fr;
  }

  .treat-photo {
    width: 100%;
    max-width: 440px;
  }

  .treat-buy {
    grid-column: 2;
    align-items: flex-start;
    flex-direction: row;
  }

  .why {
    grid-template-columns: 1fr;
    gap: 35px;
  }
}

@media (max-width: 640px) {
  .site-header {
    position: sticky;
    top: 0;
    background: rgba(255, 250, 242, .95);
    backdrop-filter: blur(10px);
    padding: 10px 16px;
  }

  .site-header nav {
    display: none;
  }

  .wordmark {
    font-size: 1rem;
  }

  .header-logo {
    width: 34px;
    height: 34px;
  }

  .button-small {
    padding: 9px 14px;
  }

  .hero {
    padding: 48px 20px 38px;
    min-height: auto;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 14vw, 4.2rem);
  }

  .lede {
    font-size: 1.05rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
  }

  .hero-photo-wrap {
    min-height: 350px;
  }

  .hero-photo {
    height: 340px;
    width: 95%;
  }

  .hero-note {
    width: 100px;
    height: 100px;
    right: -4px;
    bottom: 30px;
    font-size: .72rem;
  }

  .trust-list {
    gap: 10px 18px;
  }

  .intro {
    padding: 70px 22px 38px;
  }

  .service-grid {
    grid-template-columns: 1fr;
    padding: 0 16px;
  }

  .service-card.featured {
    transform: none;
  }

  .service-body {
    padding: 20px;
  }

  .service-note {
    margin-bottom: 65px;
  }

  .treat-banner {
    margin: 0 16px 70px;
    padding: 0;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .treat-photo {
    width: 100%;
    max-width: none;
    grid-row: auto;
    border-radius: 0;
  }

  .treat-photo figcaption {
    left: 7px;
    bottom: 7px;
    padding: 3px 7px;
    font-size: .68rem;
  }

  .treat-buy {
    grid-column: 1 / -1;
    align-items: flex-start;
  }

  .why {
    padding: 0 20px 75px;
  }

  .contact {
    padding: 70px 20px;
  }

  .contact-actions {
    flex-direction: column;
    gap: 17px;
  }

  footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 40px;
  }
}
