:root {
  --cream: #fffaf2;
  --white: #ffffff;
  --ink: #27352f;
  --muted: #617067;
  --peach: #ffd9c7;
  --peach-strong: #f59e7c;
  --sage: #dcebd7;
  --sage-strong: #7aa879;
  --blue: #dbeeff;
  --blue-strong: #75a8cd;
  --yellow: #fff1b9;
  --lilac: #ece1f8;
  --mint: #d8f2e8;
  --line: #e8e3d9;
  --footer: #26342e;
  --shadow: 0 14px 38px rgba(66, 79, 70, 0.12);
  --soft-shadow: 0 8px 24px rgba(66, 79, 70, 0.08);
  --radius-xl: 42px;
  --radius-lg: 30px;
  --radius-md: 20px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Nunito", "Arial Rounded MT Bold", "Trebuchet MS", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--blue-strong);
  outline-offset: 3px;
}

svg {
  display: block;
  width: 100%;
  height: 100%;
}

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

h1,
h2,
h3 {
  line-height: 1.12;
  letter-spacing: -0.035em;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(2.65rem, 6vw, 5.5rem);
  font-weight: 900;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.55rem);
  font-weight: 900;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
  font-weight: 900;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.section-shell {
  width: min(calc(100% - 40px), var(--max-width));
  margin-inline: auto;
}

.section {
  padding-block: 88px;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 18px;
  width: min(calc(100% - 32px), 1120px);
  margin: 18px auto 30px;
}

.header-pill {
  position: relative;
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 12px 10px 20px;
  border: 1px solid rgba(39, 53, 47, 0.07);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark {
  display: inline-grid;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  place-items: center;
  padding: 7px;
  border-radius: 50%;
  background: var(--peach);
  color: var(--ink);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.main-nav a {
  padding: 11px 14px;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 800;
  text-decoration: none;
}

.main-nav a:not(.nav-cta):hover {
  background: var(--sage);
}

.main-nav .nav-cta {
  padding-inline: 20px;
  background: var(--ink);
  color: var(--white);
}

.main-nav .nav-cta:hover {
  background: #3f5149;
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 11px 15px;
  background: var(--ink);
  color: var(--white);
  cursor: pointer;
  font-weight: 800;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

.menu-icon {
  position: relative;
}

.menu-icon::before,
.menu-icon::after {
  position: absolute;
  left: 0;
  content: "";
}

.menu-icon::before { top: -6px; }
.menu-icon::after { top: 6px; }

.hero {
  position: relative;
  display: grid;
  min-height: 670px;
  grid-template-columns: 1.12fr 0.88fr;
  align-items: center;
  gap: 50px;
  overflow: hidden;
  padding: clamp(42px, 7vw, 84px);
  border-radius: var(--radius-xl);
  background: var(--peach);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin-bottom: 14px;
  color: #53655b;
  font-size: 0.83rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero-lead {
  max-width: 670px;
  margin-bottom: 30px;
  color: #46554d;
  font-size: clamp(1.08rem, 2vw, 1.3rem);
}

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

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 2px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

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

.button-primary {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 8px 18px rgba(39, 53, 47, 0.18);
}

.button-primary:hover {
  background: #3e5048;
}

.button-secondary {
  border-color: rgba(39, 53, 47, 0.25);
  background: rgba(255, 255, 255, 0.62);
  color: var(--ink);
}

.button-secondary:hover {
  background: var(--white);
}

.hero-note {
  margin: 20px 0 0;
  font-size: 0.9rem;
  font-weight: 800;
}

.hero-art {
  position: relative;
  min-height: 480px;
}

.shape {
  position: absolute;
  display: block;
  border-radius: 999px;
}

.shape-peach {
  top: 4%;
  right: 3%;
  width: 180px;
  height: 180px;
  background: #ffbea5;
}

.shape-blue {
  right: 0;
  bottom: 3%;
  width: 270px;
  height: 270px;
  background: var(--blue);
}

.shape-sage {
  bottom: 9%;
  left: 2%;
  width: 150px;
  height: 210px;
  border-radius: 80px 80px 38px 38px;
  background: var(--sage);
  transform: rotate(-10deg);
}

.wall-system {
  position: absolute;
  z-index: 2;
  inset: 9% 3% 12% 4%;
}

.shelf {
  position: absolute;
  height: 18px;
  border-radius: 999px;
  background: var(--ink);
  box-shadow: 0 8px 0 rgba(255, 255, 255, 0.5);
}

.shelf-one {
  top: 25%;
  right: 2%;
  width: 52%;
}

.shelf-two {
  top: 51%;
  left: 4%;
  width: 56%;
}

.shelf-three {
  right: 0;
  bottom: 13%;
  width: 70%;
}

.post {
  position: absolute;
  right: 18%;
  bottom: 13%;
  width: 18px;
  height: 63%;
  border-radius: 999px;
  background: repeating-linear-gradient(0deg, #9c765d 0, #9c765d 6px, #b98d6f 6px, #b98d6f 12px);
}

.cat-ears {
  position: absolute;
  top: 5%;
  right: 12%;
  width: 98px;
  height: 80px;
  border-radius: 45% 45% 50% 50%;
  background: var(--ink);
}

.cat-ears::before,
.cat-ears::after {
  position: absolute;
  top: -28px;
  width: 48px;
  height: 50px;
  background: var(--ink);
  content: "";
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.cat-ears::before { left: 2px; transform: rotate(-9deg); }
.cat-ears::after { right: 2px; transform: rotate(9deg); }

.paw {
  position: absolute;
  color: var(--peach-strong);
  font-size: 1.4rem;
}

.paw::before,
.paw::after {
  position: absolute;
  top: -7px;
  color: inherit;
  font-size: 0.65rem;
  content: "●";
}

.paw::before { left: -2px; }
.paw::after { right: -2px; }
.paw-one { top: 45%; left: 18%; }
.paw-two { top: 68%; right: 2%; transform: rotate(20deg); }
.paw-three { bottom: 5%; left: 42%; transform: rotate(-18deg); }

.art-label {
  position: absolute;
  z-index: 4;
  right: 2%;
  bottom: 2%;
  padding: 11px 18px;
  border-radius: 999px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
  font-size: 0.9rem;
  font-weight: 900;
  transform: rotate(-3deg);
}

.section-heading {
  max-width: 790px;
  margin-bottom: 44px;
}

.section-heading > p:last-child {
  color: var(--muted);
  font-size: 1.08rem;
}

.compact-heading {
  max-width: 750px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-card {
  min-height: 285px;
  padding: 30px;
  border: 1px solid rgba(39, 53, 47, 0.05);
  border-radius: var(--radius-lg);
  box-shadow: var(--soft-shadow);
  transition: transform 180ms ease;
}

.feature-card:hover {
  transform: translateY(-5px) rotate(-0.4deg);
}

.feature-card p {
  margin-bottom: 0;
  color: #536159;
}

.feature-icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 36px;
  place-items: center;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.65);
  font-size: 1.55rem;
  font-weight: 900;
}

.peach-card { background: var(--peach); }
.sage-card { background: var(--sage); }
.blue-card { background: var(--blue); }
.cream-card { background: #fff0d9; }
.lilac-card { background: var(--lilac); }
.mint-card { background: var(--mint); }

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding-block: 20px 58px;
}

.stat-chip {
  display: flex;
  min-height: 118px;
  flex-direction: column;
  justify-content: center;
  padding: 18px 22px;
  border-radius: 26px;
  text-align: center;
}

.stat-chip strong {
  display: block;
  font-size: 1.42rem;
  line-height: 1.2;
}

.stat-chip span {
  margin-top: 5px;
  color: #536159;
  font-size: 0.86rem;
  font-weight: 700;
}

.stat-peach { background: var(--peach); }
.stat-sage { background: var(--sage); }
.stat-blue { background: var(--blue); }
.stat-yellow { background: var(--yellow); }

.steps-list {
  display: grid;
  margin: 0;
  padding: 0;
  counter-reset: steps;
  gap: 14px;
  list-style: none;
}

.step-card {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 24px;
  padding: 25px 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
}

.step-card:nth-child(2) { margin-left: 4%; }
.step-card:nth-child(3) { margin-left: 8%; }
.step-card:nth-child(4) { margin-left: 12%; }

.step-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.step-number {
  display: grid;
  width: 62px;
  height: 48px;
  place-items: center;
  border-radius: 999px;
  background: var(--peach);
  font-weight: 900;
}

.step-card:nth-child(2) .step-number { background: var(--sage); }
.step-card:nth-child(3) .step-number { background: var(--blue); }
.step-card:nth-child(4) .step-number { background: var(--yellow); }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.testimonial-card {
  display: flex;
  min-height: 315px;
  flex-direction: column;
  justify-content: space-between;
  margin: 0;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.testimonial-card::before {
  color: var(--peach-strong);
  content: "“";
  font-size: 4rem;
  font-weight: 900;
  line-height: 0.7;
}

.testimonial-card blockquote {
  margin: 18px 0 30px;
  font-size: 1.08rem;
  font-weight: 750;
}

.testimonial-card figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card figcaption span:last-child {
  display: flex;
  flex-direction: column;
}

.testimonial-card small {
  color: var(--muted);
}

.avatar {
  display: grid;
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  place-items: center;
  border-radius: 50%;
  background: var(--peach);
  font-size: 0.8rem;
  font-weight: 900;
}

.avatar-sage { background: var(--sage); }
.avatar-blue { background: var(--blue); }

.cta-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  margin-top: 72px;
  margin-bottom: 88px;
  padding: clamp(36px, 6vw, 70px);
  border-radius: var(--radius-xl);
  background: var(--sage);
}

.cta-copy p:not(.eyebrow) {
  color: #4c5e53;
}

.contact-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  margin-top: 30px;
}

.contact-details a,
.contact-details address {
  font-style: normal;
  font-weight: 800;
  text-decoration: none;
}

.contact-details a:hover {
  text-decoration: underline;
}

.contact-form {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.contact-form label:not(.consent) {
  display: block;
  margin-bottom: 15px;
  font-size: 0.9rem;
  font-weight: 900;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

input,
textarea {
  width: 100%;
  margin-top: 6px;
  border: 2px solid #dfe6e1;
  border-radius: 16px;
  background: #fbfcfb;
  color: var(--ink);
}

input {
  min-height: 50px;
  padding: 10px 13px;
}

textarea {
  display: block;
  min-height: 130px;
  resize: vertical;
  padding: 12px 13px;
}

input:focus,
textarea:focus {
  border-color: var(--sage-strong);
  background: var(--white);
}

textarea::placeholder {
  color: #89958e;
}

.consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 10px;
  margin: 2px 0 18px;
  color: var(--muted);
  font-size: 0.83rem;
}

.consent input {
  width: 18px;
  min-height: 18px;
  margin: 3px 0 0;
  accent-color: var(--ink);
}

.form-submit {
  width: 100%;
  border: 0;
}

.form-note,
.form-status {
  margin: 11px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  text-align: center;
}

.form-status:not(:empty) {
  padding: 9px;
  border-radius: 12px;
  background: var(--blue);
  color: var(--ink);
  font-weight: 800;
}

.site-footer {
  padding: 68px 0 20px;
  background: var(--footer);
  color: #f7f6ef;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
}

.footer-grid > div:first-child p {
  max-width: 360px;
  color: #becbc3;
}

.footer-brand {
  margin-bottom: 18px;
}

.footer-brand .brand-mark {
  color: var(--ink);
}

.site-footer h2 {
  margin-bottom: 14px;
  font-size: 1rem;
  letter-spacing: 0;
}

.site-footer address {
  margin-bottom: 8px;
  color: #becbc3;
  font-style: normal;
}

.site-footer a:hover {
  color: var(--peach);
}

.social-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: #becbc3;
  font-size: 0.88rem;
}

.footer-bottom p {
  margin: 0;
}

.privacy-main {
  padding: 30px 0 100px;
}

.privacy-hero {
  max-width: 850px;
  margin-bottom: 52px;
  padding: clamp(38px, 7vw, 74px);
  border-radius: var(--radius-xl);
  background: var(--blue);
}

.privacy-hero h1 {
  margin-bottom: 18px;
}

.privacy-hero > p:not(.eyebrow):not(.updated) {
  font-size: 1.16rem;
}

.updated {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.privacy-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 750px);
  align-items: start;
  justify-content: space-between;
  gap: 60px;
}

.privacy-summary {
  position: sticky;
  top: 125px;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--peach);
}

.privacy-summary > span {
  display: block;
  margin-bottom: 14px;
  font-size: 2rem;
}

.privacy-summary h2 {
  font-size: 1.6rem;
}

.privacy-summary p {
  margin-bottom: 0;
}

.privacy-content section {
  padding: 0 0 30px;
  margin-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.privacy-content h2 {
  font-size: 1.6rem;
  letter-spacing: -0.02em;
}

.privacy-content p {
  color: #536159;
}

.privacy-content a:not(.button) {
  font-weight: 800;
}

.back-button {
  margin-top: 10px;
}

.compact-footer {
  padding-top: 20px;
}

.footer-inline-links {
  display: flex;
  gap: 20px;
}

@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-art {
    min-height: 390px;
  }

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

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

  .cta-section {
    grid-template-columns: 1fr;
  }

  .privacy-layout {
    grid-template-columns: 1fr;
  }

  .privacy-summary {
    position: static;
  }
}

@media (max-width: 780px) {
  .site-header {
    top: 10px;
    width: min(calc(100% - 20px), 1120px);
    margin-top: 10px;
  }

  .header-pill {
    min-height: 66px;
    padding: 8px 10px 8px 14px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .brand {
    font-size: 1.05rem;
  }

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

  .main-nav:not(.privacy-nav) {
    display: flex;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 25px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .js .main-nav:not(.privacy-nav) {
    visibility: hidden;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 150ms ease, transform 150ms ease, visibility 150ms ease;
  }

  .js .main-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .main-nav a {
    text-align: center;
  }

  .privacy-nav a:not(.nav-cta) {
    display: none;
  }

  .section {
    padding-block: 66px;
  }

  .section-shell {
    width: min(calc(100% - 24px), var(--max-width));
  }

  .hero {
    min-height: auto;
    gap: 20px;
    padding: 42px 24px 30px;
    border-radius: 32px;
  }

  .hero-art {
    min-height: 330px;
  }

  .step-card,
  .step-card:nth-child(n) {
    margin-left: 0;
  }

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

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 590px) {
  body {
    font-size: 16px;
  }

  h1 {
    font-size: clamp(2.45rem, 13vw, 3.65rem);
  }

  h2 {
    font-size: clamp(1.9rem, 10vw, 2.65rem);
  }

  .header-pill {
    border-radius: 28px;
  }

  .menu-toggle span:last-child {
    display: none;
  }

  .feature-grid,
  .testimonial-grid,
  .stats,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 245px;
  }

  .feature-icon {
    margin-bottom: 26px;
  }

  .stats {
    padding-top: 0;
  }

  .stat-chip {
    min-height: 102px;
  }

  .step-card {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px;
  }

  .testimonial-card {
    min-height: 280px;
  }

  .cta-section {
    width: min(calc(100% - 24px), var(--max-width));
    gap: 34px;
    margin-top: 40px;
    margin-bottom: 60px;
    padding: 34px 18px;
    border-radius: 32px;
  }

  .contact-form {
    padding: 20px;
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

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

  .footer-grid > div:first-child {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .privacy-hero {
    padding: 36px 24px;
    border-radius: 32px;
  }

  .privacy-summary {
    padding: 24px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
