:root {
  --color-canopy-green: #68077b;
  --color-coral-pulse: #ff643b;
  --color-indigo-bloom: #460095;
  --color-leaf-bright: #1dbf73;
  --color-ink-black: #000000;
  --color-paper-white: #ffffff;
  --color-ash: #a6a6a6;
  --color-slate: #7a7a7a;
  --color-graphite: #3d3d3d;
  --color-frost-gray: #e0e0e0;
  --color-cloud-gray: #f2f2f2;
  --color-lavender-mist: #eee2ff;
  --color-mint-wash: #d2f2e3;
  --color-sky-wash: #ccf0f8;
  --color-sage-wash: #e4f7ee;
  --color-lilac-wash: #fdf0ff;
  --color-peach-wash: #ffede8;
  --color-cream: #faf7e8;
  --font: "DM Sans", ui-sans-serif, system-ui, sans-serif;
  --page-max-width: 1280px;
  --radius-cards: 24px;
  --radius-cards-sm: 16px;
  --radius-buttons: 40px;
  --radius-tags: 9999px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-lavender-mist);
  color: var(--color-ink-black);
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.38;
  font-feature-settings: "ss03" 1;
  padding-bottom: 88px;
}

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

a {
  color: inherit;
}

h1,
h2,
h3 {
  margin: 0;
  font-weight: 500;
}

h1 {
  font-size: clamp(40px, 8vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.028em;
  font-weight: 500;
  max-width: 12ch;
  color: var(--color-paper-white);
}

h2 {
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.14;
  letter-spacing: -0.019em;
  max-width: 18ch;
  color: var(--color-canopy-green);
}

h3 {
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: -0.019em;
  font-weight: 700;
  color: var(--color-canopy-green);
}

p {
  margin: 16px 0 0;
}

:focus-visible {
  outline: 2px solid var(--color-leaf-bright);
  outline-offset: 3px;
}

.nav-shell {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 16px 32px;
  background: var(--color-paper-white);
}

.brand img {
  width: 132px;
  height: auto;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 32px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-canopy-green);
}

.main-nav a {
  text-decoration: none;
}

.nav-actions {
  display: flex;
  gap: 8px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 24px;
  border-radius: var(--radius-buttons);
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  background: none;
}

.btn.coral {
  background: var(--color-coral-pulse);
  color: var(--color-paper-white);
  border-color: var(--color-coral-pulse);
  font-weight: 600;
}

.btn.ghost-on-dark {
  color: var(--color-paper-white);
  border-color: var(--color-paper-white);
  font-weight: 500;
}

.btn.ghost-light {
  color: var(--color-ink-black);
  border-color: var(--color-ink-black);
  font-weight: 500;
}

.btn.nav-outline {
  min-height: 40px;
  padding: 8px 20px;
  background: var(--color-paper-white);
  color: var(--color-ink-black);
  border-color: var(--color-ink-black);
  font-size: 14px;
  font-weight: 500;
}

.menu-toggle {
  display: none;
  min-height: 40px;
  padding: 8px 16px;
  border-radius: var(--radius-buttons);
  border: 1px solid var(--color-ink-black);
  background: var(--color-paper-white);
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
}

.mobile-nav {
  display: none;
}

.hero {
  background: var(--color-canopy-green);
  padding: 80px 32px 96px;
}

.hero-inner {
  max-width: var(--page-max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-copy p {
  max-width: 480px;
  font-size: 18px;
  line-height: 1.4;
  color: var(--color-mint-wash);
}

.hero .accent {
  color: var(--color-leaf-bright);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
}

.meta {
  font-size: 14px;
  color: var(--color-ash);
}

.hero-visual {
  position: relative;
  min-height: 420px;
}

.hero-photo {
  width: 86%;
  margin-left: auto;
  border-radius: var(--radius-cards);
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

.phone {
  position: absolute;
  left: 0;
  bottom: 8%;
  width: min(280px, 70%);
  background: var(--color-paper-white);
  border-radius: 28px;
  overflow: hidden;
}

.phone header {
  background: var(--color-canopy-green);
  color: var(--color-paper-white);
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 600;
}

.chat {
  padding: 16px;
  display: grid;
  gap: 8px;
}

.chat p {
  margin: 0;
  padding: 10px 12px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.38;
}

.chat .in {
  background: var(--color-paper-white);
  border: 1px solid var(--color-frost-gray);
  justify-self: start;
  max-width: 90%;
}

.chat .out {
  background: #dcf8c6;
  justify-self: end;
  max-width: 90%;
}

.band {
  padding: 80px 32px;
}

.band.white {
  background: var(--color-paper-white);
}

.band.lavender,
.band.toolkit {
  background: var(--color-lavender-mist);
}

.band.cream-band {
  background: var(--color-cream);
}

.band h2,
.pastel-grid,
.team-grid,
.split,
.quotes,
.lede {
  max-width: var(--page-max-width);
  margin-left: auto;
  margin-right: auto;
}

.lede {
  color: var(--color-graphite);
  margin-bottom: 32px;
}

.pastel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

.pastel {
  padding: 32px;
  border-radius: var(--radius-cards);
}

.pastel.mint { background: var(--color-mint-wash); }
.pastel.sage { background: var(--color-sage-wash); }
.pastel.sky { background: var(--color-sky-wash); }
.pastel.cream { background: var(--color-cream); }
.pastel.lilac { background: var(--color-lilac-wash); }
.pastel.peach { background: var(--color-peach-wash); }

.pastel p {
  color: var(--color-graphite);
}

.pastel img {
  margin-top: 24px;
  width: 100%;
  border-radius: var(--radius-cards-sm);
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: var(--color-paper-white);
}

.chip {
  display: inline-flex;
  padding: 4px 12px;
  border-radius: var(--radius-tags);
  background: var(--color-paper-white);
  font-size: 12px;
  font-weight: 600;
  color: var(--color-canopy-green);
}

.pastel h3,
.person h3 {
  margin-top: 16px;
}

.toolkit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: none;
}

.toolkit-copy,
.toolkit-photo {
  max-width: none;
}

.toolkit-copy {
  padding-left: max(32px, calc((100vw - var(--page-max-width)) / 2));
}

.toolkit-photo {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 0;
}

.checks {
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
}

.checks li {
  padding: 12px 16px;
  font-size: 20px;
  font-weight: 500;
  color: var(--color-canopy-green);
}

.checks .active {
  background: var(--color-paper-white);
  border-radius: 16px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.person {
  background: var(--color-paper-white);
  padding: 16px;
  border-radius: var(--radius-cards-sm);
}

.person img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top;
  border-radius: 16px;
  background: var(--color-cloud-gray);
}

.person p {
  font-size: 14px;
  color: var(--color-graphite);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.hours {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-peach-wash);
  border-radius: var(--radius-cards);
  overflow: hidden;
}

.hours caption {
  text-align: left;
  padding: 24px 24px 0;
  font-weight: 600;
  color: var(--color-canopy-green);
}

.hours th,
.hours td {
  padding: 12px 24px;
  text-align: left;
  font-weight: 400;
  border-top: 1px solid var(--color-frost-gray);
}

.quotes {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

blockquote {
  margin: 0;
  padding: 32px;
  background: var(--color-lilac-wash);
  border-radius: var(--radius-cards);
}

blockquote p {
  margin: 0;
  font-size: 20px;
  line-height: 1.33;
  font-weight: 500;
}

blockquote footer {
  margin-top: 24px;
  font-size: 14px;
  color: var(--color-slate);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  padding: 64px 32px 120px;
  background: var(--color-cloud-gray);
}

.site-footer img {
  width: 140px;
  height: auto;
}

.site-footer p,
.site-footer a {
  font-size: 14px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
}

.site-footer a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.maker p {
  color: var(--color-canopy-green);
  font-weight: 500;
}

.mobile-dock {
  display: none;
}

@media (max-width: 1100px) {
  .pastel-grid,
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 860px) {
  .nav-shell {
    grid-template-columns: 1fr auto;
    padding: 12px 16px;
  }

  .main-nav,
  .nav-actions {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .mobile-nav {
    display: none;
    flex-direction: column;
    gap: 16px;
    padding: 16px;
    background: var(--color-paper-white);
  }

  body.nav-open .mobile-nav {
    display: flex;
  }

  .hero,
  .band {
    padding: 48px 16px;
  }

  .hero-inner,
  .toolkit,
  .split,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    gap: 32px;
  }

  .hero-visual {
    order: -1;
    min-height: 0;
  }

  .hero-photo {
    width: 100%;
    aspect-ratio: 4 / 5;
  }

  .phone {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    margin-top: -48px;
  }

  .toolkit-copy {
    padding-left: 16px;
    padding-right: 16px;
  }

  .toolkit-photo {
    min-height: 280px;
    order: -1;
  }

  h1 {
    max-width: none;
  }

  .btn {
    width: 100%;
  }

  .mobile-dock {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 50;
  }

  .pastel-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }
}

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