:root {
  --ink: #243044;
  --muted: #617086;
  --paper: #fffaf4;
  --cream: #fff3e2;
  --peach: #f7b58e;
  --rose: #df7b9c;
  --violet: #7866b4;
  --mint: #9ed8c5;
  --sky: #cfe9f6;
  --line: rgba(36, 48, 68, 0.14);
  --shadow: 0 22px 60px rgba(36, 48, 68, 0.16);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  min-height: 76px;
  padding: 10px clamp(16px, 4vw, 48px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 250, 244, 0.84);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.brand img {
  width: 42px;
  height: 58px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 8px 22px rgba(36, 48, 68, 0.18);
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 6px;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.site-nav::-webkit-scrollbar {
  display: none;
}

.site-nav a,
.header-cta,
.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 750;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav a {
  padding: 10px 12px;
  color: rgba(36, 48, 68, 0.78);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: #ffffff;
  color: var(--ink);
}

.header-cta {
  padding: 10px 16px;
  color: #ffffff;
  background: var(--violet);
  box-shadow: 0 10px 24px rgba(120, 102, 180, 0.24);
}

.hero {
  position: relative;
  min-height: min(720px, 78svh);
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -2;
  background-image: url("/assets/storybook-hero.webp");
  background-position: center;
  background-size: cover;
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 250, 244, 0.94) 0%, rgba(255, 250, 244, 0.78) 40%, rgba(255, 250, 244, 0.2) 76%),
    linear-gradient(0deg, rgba(255, 250, 244, 0.28), rgba(255, 250, 244, 0.28));
}

.hero-content {
  width: min(760px, calc(100% - 32px));
  margin-left: clamp(16px, 7vw, 96px);
  padding: 38px 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: #845a9f;
  font-size: 0.77rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  line-height: 1.02;
}

h1 {
  max-width: 12ch;
  margin-bottom: 18px;
  font-size: clamp(3.8rem, 10vw, 7.5rem);
  letter-spacing: 0;
}

h2 {
  max-width: 840px;
  margin-bottom: 18px;
  font-size: clamp(2.15rem, 5vw, 4rem);
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
}

.hero-lede {
  max-width: 620px;
  margin-bottom: 10px;
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 800;
}

.hero-copy,
.page-hero > p,
.section-heading > p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.08rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button {
  min-width: 138px;
  padding: 12px 18px;
  border: 1px solid transparent;
}

.button.primary {
  color: #ffffff;
  background: var(--violet);
  box-shadow: 0 12px 26px rgba(120, 102, 180, 0.24);
}

.button.ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  border-color: var(--line);
}

.button.disabled {
  color: rgba(36, 48, 68, 0.72);
  background: rgba(36, 48, 68, 0.08);
  border-color: var(--line);
  box-shadow: none;
  cursor: default;
}

.button:hover,
.header-cta:hover {
  transform: translateY(-1px);
}

.button.disabled:hover {
  transform: none;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}

.trust-band div {
  min-height: 92px;
  padding: 18px clamp(16px, 3vw, 28px);
  background: #ffffff;
}

.trust-band strong,
.trust-band span {
  display: block;
}

.trust-band span {
  color: var(--muted);
}

.section,
.page-hero {
  padding: clamp(44px, 6vw, 78px) clamp(16px, 5vw, 64px);
}

.section-heading {
  width: min(920px, 100%);
  margin: 0 auto 24px;
  text-align: center;
}

.page-hero {
  background:
    radial-gradient(circle at top left, rgba(158, 216, 197, 0.35), transparent 34%),
    linear-gradient(135deg, #fff8ef, #eef8fb 54%, #f9eef8);
}

.page-hero h1,
.page-hero p,
.page-hero .button-row {
  width: min(880px, 100%);
  margin-inline: auto;
}

.page-hero h1 {
  max-width: 880px;
  text-align: center;
  font-size: clamp(2.65rem, 7vw, 5.7rem);
  overflow-wrap: break-word;
}

.page-hero .eyebrow,
.page-hero > p {
  text-align: center;
}

.page-hero .button-row,
.center-line {
  justify-content: center;
}

.steps,
.package-grid,
.moment-grid,
.values-grid {
  width: min(1160px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

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

.step,
.package-card,
.moment-card,
.values-grid article,
.delivery-card,
.contact-card,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 16px 38px rgba(36, 48, 68, 0.08);
}

.step,
.moment-card,
.values-grid article {
  min-width: 0;
  padding: 18px;
}

.step span {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--rose);
  font-weight: 850;
}

.soft {
  background:
    linear-gradient(180deg, rgba(207, 233, 246, 0.38), rgba(255, 243, 226, 0.5)),
    var(--cream);
}

.compact {
  padding-top: clamp(36px, 5vw, 60px);
  padding-bottom: clamp(36px, 5vw, 60px);
}

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

.package-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 22px;
  overflow-wrap: break-word;
}

.price {
  width: fit-content;
  margin-bottom: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--ink);
  font-weight: 850;
}

.package-card ul {
  padding-left: 20px;
  color: var(--muted);
}

.package-card .button {
  margin-top: auto;
}

.delivery-card {
  width: min(900px, 100%);
  margin: 18px auto 0;
  padding: 22px;
  text-align: center;
}

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

.story {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
  background: #ffffff;
}

.story-copy {
  justify-self: end;
  width: min(620px, 100%);
}

.story-image {
  margin: 0;
}

.story-image img {
  aspect-ratio: 4 / 3;
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.mission {
  background:
    radial-gradient(circle at top right, rgba(223, 123, 156, 0.18), transparent 30%),
    #fffaf4;
}

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

.faq {
  background: #ffffff;
}

.faq-list {
  width: min(920px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 0;
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 850;
}

.faq-list p {
  padding: 0 22px 20px;
  color: var(--muted);
}

.subscribe {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: 28px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(120, 102, 180, 0.12), rgba(158, 216, 197, 0.32)),
    #fff8ef;
}

.subscribe > div:first-child {
  justify-self: end;
  width: min(700px, 100%);
}

.contact-card {
  padding: 20px;
}

.contact-card .button {
  width: 100%;
  margin-top: 12px;
}

.contact-link {
  display: block;
  margin-bottom: 14px;
  color: var(--violet);
  font-size: 1.15rem;
  font-weight: 850;
  text-decoration: none;
}

.site-footer {
  padding: 36px clamp(16px, 5vw, 72px);
  color: #ffffff;
  background: var(--ink);
}

.footer-inner {
  width: min(1160px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
}

.footer-inner p {
  max-width: 560px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.74);
}

.footer-links {
  display: grid;
  gap: 8px;
  text-align: right;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    grid-column: 1 / -1;
    justify-content: start;
    order: 3;
  }

  .trust-band,
  .steps,
  .package-grid,
  .moment-grid,
  .values-grid,
  .story,
  .subscribe,
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

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

  .story-copy,
  .subscribe > div:first-child {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .site-header {
    gap: 10px;
    padding-inline: 12px;
  }

  .brand span {
    font-size: 0.95rem;
  }

  .header-cta {
    padding-inline: 12px;
  }

  .hero {
    min-height: 76svh;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(255, 250, 244, 0.95) 0%, rgba(255, 250, 244, 0.78) 54%, rgba(255, 250, 244, 0.35) 100%),
      linear-gradient(0deg, rgba(255, 250, 244, 0.24), rgba(255, 250, 244, 0.24));
  }

  .hero-content {
    width: calc(100% - 28px);
    margin: 0 auto;
    align-self: end;
  }

  h1 {
    font-size: clamp(3.1rem, 17vw, 4.4rem);
  }

  .page-hero h1 {
    font-size: clamp(2.35rem, 11vw, 3.1rem);
    overflow-wrap: anywhere;
  }

  h2 {
    font-size: clamp(2rem, 10vw, 2.9rem);
  }

  .trust-band,
  .steps,
  .package-grid,
  .moment-grid,
  .values-grid,
  .story,
  .subscribe,
  .footer-inner {
    grid-template-columns: 1fr;
  }

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

  .button {
    white-space: normal;
    text-align: center;
  }

  .button-row .button {
    flex: 1 1 100%;
  }

  .section,
  .page-hero {
    padding-inline: 14px;
  }

  .footer-links {
    text-align: left;
  }
}