:root {
  --rose: #e6d8de;
  --mint: #c1dbd4;
  --peach: #f7d8c6;
  --sand: #f1f1f0;
  --navy: #2d3e52;

  --ink: #2d3e52;
  --ink-soft: #5a6b7d;
  --ink-faint: #8b98a6;
  --surface: #ffffff;
  --surface-alt: #fafaf9;
  --line: #e8e6e4;

  --font-display: "MonteCarlo", "Georgia", cursive;
  --font-body: "Quicksand", "Segoe UI", system-ui, sans-serif;

  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --radius-pill: 999px;

  --shadow-sm: 0 4px 20px rgba(45, 62, 82, .06);
  --shadow-md: 0 14px 40px rgba(45, 62, 82, .09);
  --shadow-lg: 0 26px 70px rgba(45, 62, 82, .12);

  --gutter: clamp(1.25rem, 4vw, 3rem);
  --section-y: clamp(4.5rem, 9vw, 8.5rem);

  --ease: cubic-bezier(.22, .61, .36, 1);
}

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

* {
  margin: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6.5rem;
  overflow-x: hidden;
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--surface);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: clamp(1rem, .95rem + .2vw, 1.075rem);
  font-weight: 400;
  line-height: 1.75;
  overflow-x: hidden;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

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

img {
  height: auto;
}

ul,
ol {
  list-style: none;
  padding: 0;
}

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

blockquote,
figure {
  margin: 0;
}

strong {
  font-weight: 600;
}

::selection {
  background: var(--mint);
  color: var(--navy);
}

.sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 200;
  padding: .75rem 1.25rem;
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius-pill);
  transition: top .25s var(--ease);
}

.skip-link:focus-visible {
  top: 1rem;
}

:focus-visible {
  outline: 2px solid var(--navy);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  width: min(1180px, 100% - var(--gutter) * 2);
  margin-inline: auto;
}

.eyebrow {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.section-index {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .3em;
  color: var(--ink-faint);
  margin-bottom: 1rem;
}

.section-index::after {
  content: "";
  display: block;
  width: 44px;
  height: 2px;
  margin-top: .9rem;
  background: var(--mint);
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-body);
  font-size: clamp(1.75rem, 1.1rem + 2.4vw, 2.85rem);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -.015em;
  text-wrap: balance;
}

.section-title em {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 400;
  font-size: 1.5em;
  line-height: .8;
  color: var(--navy);
}

.section-text {
  color: var(--ink-soft);
  margin-top: 1.1rem;
  max-width: 62ch;
}

.section-quote {
  position: relative;
  margin-top: 2rem;
  padding-left: 1.5rem;
  border-left: 3px solid var(--peach);
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.7;
  color: var(--navy);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: .95rem 1.9rem;
  border-radius: var(--radius-pill);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .01em;
  white-space: nowrap;
  cursor: pointer;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background-color .3s var(--ease), color .3s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: var(--navy);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.btn--primary:hover {
  box-shadow: var(--shadow-md);
}

.btn--ghost {
  border: 1.5px solid var(--line);
  color: var(--ink);
}

.btn--ghost:hover {
  border-color: var(--mint);
  background: var(--mint);
}

.btn--whats {
  background: var(--mint);
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}

.btn--whats:hover {
  background: var(--navy);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.btn__icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  transition: transform .3s var(--ease);
}

.btn:hover .btn__icon {
  transform: translateX(3px);
}

.blob {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .55;
  pointer-events: none;
}

.blob--peach {
  width: 420px;
  height: 420px;
  top: -120px;
  right: -80px;
  background: var(--peach);
}

.blob--mint {
  width: 360px;
  height: 360px;
  bottom: -140px;
  left: -120px;
  background: var(--mint);
}

.blob--rose {
  width: 400px;
  height: 400px;
  top: 10%;
  left: -160px;
  background: var(--rose);
}

.blob--right {
  left: auto;
  right: -150px;
  bottom: 5%;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
