:root {
  --mint: #f1fff3;
  --soft-green: #b8d8b2;
  --deep-teal: #11525a;
  --green: #4fa55c;
  --ink: #123f43;
  --white: #ffffff;
  --peach: #ffcf9f;
  --yellow: #f4dc6e;
  --lavender: #d9d2ff;
  --line: rgba(17, 82, 90, 0.14);
  --shadow: 0 24px 70px rgba(17, 82, 90, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--mint);
  font-family: "DM Sans", sans-serif;
  line-height: 1.55;
}

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

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

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

h1,
h2,
h3 {
  font-family: "Fredoka", sans-serif;
  line-height: 1.02;
}

h1,
h2 {
  letter-spacing: -0.02em;
}

.site-header {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
  padding: 24px 28px;
}

.brand img {
  width: 134px;
}

.site-nav {
  display: flex;
  gap: 34px;
  font-size: 0.92rem;
  font-weight: 700;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 2px solid var(--deep-teal);
  border-radius: 999px;
  color: var(--deep-teal);
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav a,
.text-link {
  transition: color 180ms ease;
}

.site-nav a:hover,
.text-link:hover {
  color: var(--green);
}

.header-cta {
  justify-self: end;
  padding: 11px 18px;
  border: 2px solid var(--deep-teal);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
}

.hero {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  min-height: 760px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 45px 28px 85px;
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 580px;
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 {
  margin-bottom: 26px;
  font-size: clamp(4rem, 6.5vw, 6.5rem);
}

.hero-intro {
  max-width: 520px;
  margin-bottom: 32px;
  font-size: 1.2rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 13px 21px;
  border-radius: 14px;
  font-family: "DM Sans", sans-serif;
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1.05;
}

.button-dark {
  color: var(--white);
  background: var(--deep-teal);
  box-shadow: 0 10px 24px rgba(17, 82, 90, 0.2);
}

.button small {
  display: block;
  margin-bottom: 2px;
  font-size: 0.6rem;
  font-weight: 500;
}

.apple {
  font-size: 1.5rem;
}

.text-link {
  font-size: 0.9rem;
  font-weight: 800;
}

.text-link span {
  padding-left: 4px;
}

.quick-benefits {
  display: flex;
  gap: 10px;
  margin-top: 38px;
}

.quick-benefits span {
  padding: 7px 12px;
  border: 1px solid var(--soft-green);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  font-size: 0.72rem;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 640px;
}

.blob {
  position: absolute;
  border-radius: 44% 56% 61% 39% / 48% 45% 55% 52%;
}

.blob-one {
  width: 590px;
  height: 590px;
  background: var(--soft-green);
  transform: rotate(-8deg);
}

.blob-two {
  right: -20px;
  bottom: 80px;
  width: 170px;
  height: 170px;
  background: var(--yellow);
  transform: rotate(22deg);
}

.phone {
  position: relative;
  z-index: 2;
  width: 310px;
  padding: 11px;
  border: 5px solid var(--deep-teal);
  border-radius: 48px;
  background: var(--deep-teal);
  box-shadow: var(--shadow);
  transform: rotate(4deg);
}

.phone::before {
  position: absolute;
  z-index: 3;
  top: 13px;
  left: 50%;
  width: 92px;
  height: 24px;
  border-radius: 20px;
  background: var(--deep-teal);
  content: "";
  transform: translateX(-50%);
}

.phone-screen {
  position: relative;
  min-height: 596px;
  overflow: hidden;
  padding: 34px 20px 22px;
  border-radius: 34px;
  background: var(--white);
}

.phone-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
}

.phone-top img {
  width: 38px;
}

.phone-kicker {
  margin-bottom: 7px;
  color: var(--green);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.phone h2 {
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.search {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 20px;
  padding: 10px 12px;
  border-radius: 12px;
  background: var(--mint);
}

.search input {
  width: 100%;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font: inherit;
  font-size: 0.72rem;
}

.box-list {
  display: grid;
  gap: 10px;
}

.box-list article {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.box-list strong,
.box-list small {
  display: block;
}

.box-list strong {
  font-size: 0.72rem;
}

.box-list small {
  color: rgba(18, 63, 67, 0.62);
  font-size: 0.58rem;
}

.box-picture {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--mint);
  font-size: 1.35rem;
}

.phone button {
  position: absolute;
  right: 18px;
  bottom: 17px;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
  font-size: 1.8rem;
}

.storage-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 176px;
  padding: 12px;
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 14px 40px rgba(17, 82, 90, 0.18);
}

.storage-card strong,
.storage-card small {
  display: block;
}

.storage-card strong {
  font-size: 0.78rem;
}

.storage-card small {
  color: rgba(18, 63, 67, 0.62);
  font-size: 0.64rem;
}

.mini-icon,
.mini-photo {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 11px;
  color: var(--white);
  background: var(--green);
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
}

.mini-photo {
  background: var(--peach);
}

.card-garage {
  top: 120px;
  left: 5px;
  transform: rotate(-6deg);
}

.card-found {
  right: -10px;
  bottom: 150px;
  transform: rotate(7deg);
}

.problem-strip {
  display: flex;
  justify-content: center;
  gap: 14px;
  padding: 30px;
  color: var(--white);
  background: var(--deep-teal);
  font-family: "Fredoka", sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.65rem);
}

.problem-strip p {
  margin: 0;
}

.problem-strip strong {
  color: var(--soft-green);
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 120px 28px;
}

.section-heading {
  max-width: 680px;
  margin-bottom: 62px;
}

.section-heading h2,
.feature-banner h2,
.app-cta h2 {
  margin-bottom: 20px;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
}

.section-heading > p:last-child {
  max-width: 550px;
}

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

.step {
  position: relative;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.5);
}

.step-number {
  position: absolute;
  top: 18px;
  left: 18px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--white);
  background: var(--deep-teal);
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
}

.step-illustration {
  display: grid;
  place-items: center;
  height: 210px;
  margin-bottom: 24px;
  border-radius: 20px;
}

.box-illustration {
  background: var(--soft-green);
}

.box-body {
  width: 125px;
  padding: 38px 10px;
  color: var(--deep-teal);
  background: #dbb178;
  box-shadow: inset 0 0 0 3px rgba(17, 82, 90, 0.14);
  font-family: "Fredoka", sans-serif;
  font-size: 1.2rem;
  text-align: center;
  transform: rotate(-3deg);
}

.box-lid {
  position: absolute;
  width: 143px;
  height: 24px;
  margin-top: -104px;
  background: #efc58d;
  transform: rotate(3deg);
}

.photo-illustration {
  display: flex;
  gap: 14px;
  background: var(--peach);
  font-family: "Fredoka", sans-serif;
  font-size: 1.25rem;
}

.photo-illustration span {
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  border-radius: 15px;
  background: var(--white);
  font-size: 2rem;
}

.photo-illustration small {
  color: rgba(18, 63, 67, 0.6);
  font-family: "DM Sans", sans-serif;
  font-size: 0.7rem;
}

.search-illustration {
  background: var(--lavender);
}

.search-illustration > span {
  margin-bottom: -35px;
  font-size: 5rem;
  line-height: 0.6;
}

.search-illustration div {
  padding: 13px 20px;
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(17, 82, 90, 0.11);
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
}

.search-illustration small {
  color: var(--green);
  font-size: 0.57rem;
  letter-spacing: 0.11em;
}

.step h3,
.audience-card h3,
.article-grid h3 {
  margin-bottom: 10px;
  font-size: 1.55rem;
}

.step p,
.audience-card p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.made-for {
  max-width: none;
  color: var(--white);
  background: var(--deep-teal);
}

.made-for > * {
  max-width: 1124px;
  margin-right: auto;
  margin-left: auto;
}

.row-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  max-width: 1124px;
}

.row-heading > p {
  width: 35%;
  margin-bottom: 8px;
}

.made-for .eyebrow {
  color: var(--soft-green);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.audience-card {
  min-height: 320px;
  padding: 28px;
  border-radius: 24px;
  color: var(--ink);
}

.audience-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 90px;
  border: 2px solid var(--ink);
  border-radius: 18px;
  font-family: "Fredoka", sans-serif;
  font-size: 1.7rem;
}

.card-home {
  background: var(--soft-green);
}

.card-business {
  background: var(--yellow);
}

.card-collectors {
  background: var(--lavender);
}

.card-storage {
  background: var(--peach);
}

.feature-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1124px;
  margin-top: 100px;
  margin-bottom: 100px;
  padding: 72px;
  border-radius: 34px;
  background: var(--soft-green);
}

.feature-banner ul {
  display: grid;
  gap: 13px;
  align-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-banner li {
  padding: 15px 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.62);
  font-weight: 700;
}

.feature-banner li span {
  display: inline-grid;
  place-items: center;
  width: 25px;
  height: 25px;
  margin-right: 9px;
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
}

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

.article-image {
  display: grid;
  place-items: center;
  height: 260px;
  margin-bottom: 22px;
  border-radius: 24px;
  font-family: "Fredoka", sans-serif;
  font-size: 4rem;
}

.article-image span {
  display: grid;
  place-items: center;
  width: 100px;
  height: 100px;
  border: 3px solid currentColor;
  border-radius: 28px;
  transform: rotate(-8deg);
}

.article-moving {
  background: var(--peach);
}

.article-seasonal {
  background: var(--soft-green);
}

.article-small {
  background: var(--lavender);
}

.article-tag {
  margin-bottom: 8px;
  color: var(--green);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.article-grid h3 {
  min-height: 52px;
}

.article-read-link {
  font-size: 0.82rem;
  font-weight: 800;
}

.article-grid h3 a {
  font-size: inherit;
  font-weight: inherit;
}

.article-card-image {
  display: block;
}

.article-card-image .article-image,
.library-card h3 a,
.article-grid h3 a,
.related-grid h3 a {
  transition: transform 180ms ease, color 180ms ease;
}

.article-card-image:hover .article-image {
  transform: translateY(-5px);
}

.library-card h3 a:hover,
.article-grid h3 a:hover,
.related-grid h3 a:hover {
  color: var(--green);
}

.app-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 110px 28px;
  color: var(--white);
  background: var(--green);
  text-align: center;
}

.cta-logo {
  width: 95px;
  margin-bottom: 28px;
}

.app-cta .eyebrow {
  color: var(--deep-teal);
}

.app-cta > p:not(.eyebrow) {
  max-width: 560px;
  margin-bottom: 30px;
}

.button-disabled {
  cursor: default;
}

footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 30px 40px;
  color: var(--soft-green);
  background: var(--deep-teal);
  font-size: 0.78rem;
}

footer p {
  margin: 0;
}

footer p:last-child {
  justify-self: end;
}

.footer-brand img {
  width: 110px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 22px;
}

.footer-links a {
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-cookie-button {
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.footer-cookie-button:hover {
  color: var(--white);
}

.cookie-table-wrap {
  overflow-x: auto;
}

.cookie-table {
  width: 100%;
  margin: 24px 0;
  border-collapse: collapse;
  font-size: 0.82rem;
}

.cookie-table th,
.cookie-table td {
  padding: 12px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.cookie-table th {
  background: var(--soft-green);
  font-family: "Fredoka", sans-serif;
}

.cookie-banner {
  position: fixed;
  z-index: 1000;
  right: 22px;
  bottom: 22px;
  left: 22px;
  padding: 0;
  border: 0;
  border-radius: 24px;
  color: var(--white);
  background: var(--deep-teal);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
}

.cookie-banner-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 40px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px 32px;
}

.cookie-banner .eyebrow {
  margin-bottom: 7px;
  color: var(--soft-green);
}

.cookie-banner h2 {
  margin-bottom: 7px;
  font-size: 1.75rem;
}

.cookie-banner p {
  max-width: 780px;
  margin: 0;
  font-size: 0.83rem;
}

.cookie-banner a {
  color: var(--soft-green);
  font-weight: 800;
  text-decoration: underline;
}

.cookie-banner-actions {
  display: flex;
  gap: 10px;
}

.cookie-choice {
  min-width: 145px;
  padding: 13px 17px;
  border: 2px solid var(--soft-green);
  border-radius: 13px;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  cursor: pointer;
}

.cookie-reject {
  color: var(--white);
  background: transparent;
}

.cookie-accept {
  color: var(--deep-teal);
  background: var(--soft-green);
}

.cookie-choice:focus-visible,
.footer-cookie-button:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

.legal-header {
  border-bottom: 1px solid var(--line);
}

.legal-page {
  min-height: 70vh;
}

.legal-hero {
  max-width: 1124px;
  margin: 0 auto;
  padding: 100px 28px 72px;
}

.legal-hero h1 {
  max-width: 850px;
  margin-bottom: 24px;
  font-size: clamp(3.5rem, 7vw, 6.5rem);
}

.legal-hero > p:not(.eyebrow) {
  max-width: 680px;
  font-size: 1.1rem;
}

.legal-date {
  margin-top: 28px;
  font-size: 0.9rem !important;
}

.legal-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 760px);
  gap: 76px;
  max-width: 1124px;
  margin: 0 auto;
  padding: 0 28px 120px;
}

.legal-nav {
  position: sticky;
  top: 28px;
  align-self: start;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.58);
}

.legal-nav > p {
  margin-bottom: 12px;
  font-family: "Fredoka", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
}

.legal-nav ol {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-left: 20px;
  font-size: 0.72rem;
}

.legal-nav a:hover {
  color: var(--green);
}

.legal-content {
  padding: 48px;
  border-radius: 30px;
  background: var(--white);
  box-shadow: 0 22px 70px rgba(17, 82, 90, 0.08);
}

.legal-content section {
  padding-top: 24px;
  scroll-margin-top: 24px;
}

.legal-content section + section {
  margin-top: 28px;
  border-top: 1px solid var(--line);
}

.legal-content h2 {
  margin-bottom: 20px;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
}

.legal-content h3 {
  margin: 28px 0 10px;
  font-size: 1.25rem;
}

.legal-content p,
.legal-content li {
  font-size: 0.95rem;
}

.legal-content li + li {
  margin-top: 7px;
}

.legal-notice {
  padding: 20px 22px;
  border: 2px solid var(--green);
  border-radius: 16px;
  background: var(--mint);
}

.legal-notice strong {
  display: block;
  margin-bottom: 5px;
  font-family: "Fredoka", sans-serif;
  font-size: 1.1rem;
}

.legal-notice p {
  margin: 0;
}

.legal-review {
  margin: 50px 0 0;
  padding: 20px 22px;
  border-radius: 16px;
  color: rgba(18, 63, 67, 0.78);
  background: var(--soft-green);
  font-size: 0.82rem !important;
}

.article-header {
  border-bottom: 1px solid var(--line);
}

.article-page {
  background: var(--mint);
}

.article-hero {
  max-width: 980px;
  margin: 0 auto;
  padding: 82px 28px 64px;
  text-align: center;
}

.article-back {
  display: inline-block;
  margin-bottom: 38px;
  font-size: 0.82rem;
  font-weight: 800;
}

.article-meta {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 25px;
}

.article-meta span,
.article-meta time {
  padding: 7px 11px;
  border: 1px solid var(--soft-green);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  font-size: 0.7rem;
  font-weight: 700;
}

.article-meta span:first-child {
  color: var(--white);
  border-color: var(--green);
  background: var(--green);
  text-transform: uppercase;
}

.article-hero h1 {
  margin-bottom: 26px;
  font-size: clamp(4rem, 8vw, 7.2rem);
}

.article-deck {
  max-width: 720px;
  margin: 0 auto 30px;
  font-size: 1.25rem;
}

.article-byline {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-align: left;
}

.article-byline img {
  width: 42px;
}

.article-byline span,
.article-byline strong {
  display: block;
}

.article-byline span {
  color: rgba(18, 63, 67, 0.62);
  font-size: 0.64rem;
}

.article-byline strong {
  font-size: 0.8rem;
}

.article-lead-visual {
  max-width: 1124px;
  margin: 0 auto;
  padding: 0 28px;
}

.moving-scene {
  position: relative;
  min-height: 580px;
  overflow: hidden;
  border-radius: 34px;
  background: var(--peach);
}

.moving-scene::before {
  position: absolute;
  right: -60px;
  bottom: -120px;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: var(--yellow);
  content: "";
}

.moving-scene::after {
  position: absolute;
  top: 45px;
  left: 45px;
  width: 160px;
  height: 160px;
  border-radius: 46% 54% 34% 66% / 55% 38% 62% 45%;
  background: var(--soft-green);
  content: "";
  transform: rotate(18deg);
}

.moving-box {
  position: absolute;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
  border: 4px solid var(--deep-teal);
  color: var(--deep-teal);
  background: #d9a86d;
  box-shadow: 13px 13px 0 rgba(17, 82, 90, 0.12);
  font-family: "Fredoka", sans-serif;
  font-size: 1.3rem;
  text-align: center;
}

.moving-box small {
  margin-top: 6px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
}

.moving-box-tall {
  bottom: 78px;
  left: 21%;
  width: 210px;
  height: 290px;
  transform: rotate(-4deg);
}

.moving-box-wide {
  right: 24%;
  bottom: 66px;
  width: 310px;
  height: 190px;
  background: #edc28b;
  transform: rotate(3deg);
}

.moving-box-small {
  right: 16%;
  bottom: 250px;
  width: 180px;
  height: 150px;
  background: #c7965c;
  transform: rotate(8deg);
}

.moving-tape {
  position: absolute;
  z-index: 3;
  top: 145px;
  left: 35%;
  padding: 12px 25px;
  color: var(--white);
  background: var(--green);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  transform: rotate(-7deg);
}

.moving-plant {
  position: absolute;
  z-index: 1;
  right: 8%;
  bottom: 20px;
  color: var(--deep-teal);
  font-family: "Fredoka", sans-serif;
  font-size: 13rem;
  line-height: 1;
  transform: rotate(10deg);
}

.moving-lamp {
  position: absolute;
  bottom: 0;
  left: 7%;
  width: 12px;
  height: 260px;
  background: var(--deep-teal);
}

.moving-lamp::before {
  position: absolute;
  top: -8px;
  left: -60px;
  width: 130px;
  height: 78px;
  border-radius: 70px 70px 10px 10px;
  background: var(--deep-teal);
  content: "";
}

.article-lead-visual figcaption {
  padding: 12px 10px 0;
  color: rgba(18, 63, 67, 0.62);
  font-size: 0.72rem;
  text-align: center;
}

.article-layout {
  display: grid;
  grid-template-columns: 180px minmax(0, 720px);
  gap: 70px;
  max-width: 1040px;
  margin: 0 auto;
  padding: 100px 28px 120px;
}

.article-share {
  position: sticky;
  top: 30px;
  align-self: start;
  display: grid;
  gap: 9px;
  padding-top: 10px;
}

.article-share p {
  margin-bottom: 6px;
  font-family: "Fredoka", sans-serif;
  font-weight: 600;
}

.article-share a {
  color: rgba(18, 63, 67, 0.66);
  font-size: 0.75rem;
  font-weight: 700;
}

.article-share a:hover {
  color: var(--green);
}

.article-body {
  font-size: 1.03rem;
  line-height: 1.8;
}

.article-body > p,
.article-body section > p {
  margin-bottom: 25px;
}

.article-intro {
  font-family: "Fredoka", sans-serif;
  font-size: 1.55rem;
  line-height: 1.45;
}

.article-body section {
  padding-top: 58px;
  scroll-margin-top: 25px;
}

.article-body h2 {
  margin-bottom: 22px;
  font-size: clamp(2.5rem, 5vw, 4.2rem);
}

.article-body h3 {
  margin: 35px 0 16px;
  font-size: 1.55rem;
}

.article-section-number {
  margin-bottom: 8px !important;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.article-body blockquote {
  position: relative;
  margin: 50px 0;
  padding: 40px 45px;
  border-radius: 24px;
  background: var(--soft-green);
}

.article-body blockquote::before {
  position: absolute;
  top: -28px;
  left: 24px;
  color: var(--green);
  content: "“";
  font-family: "Fredoka", sans-serif;
  font-size: 6rem;
  line-height: 1;
}

.article-body blockquote p {
  position: relative;
  margin: 0;
  font-family: "Fredoka", sans-serif;
  font-size: 2rem;
  line-height: 1.25;
}

.article-tip {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 22px;
  margin: 45px 0;
  padding: 30px;
  border: 2px solid var(--green);
  border-radius: 22px;
  background: var(--white);
}

.tip-icon {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  border-radius: 18px;
  color: var(--white);
  background: var(--green);
  font-family: "Fredoka", sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
}

.article-tip h3 {
  margin: 5px 0 8px;
}

.article-tip p:last-child {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
}

.article-checklist {
  display: grid;
  gap: 12px;
  margin: 0 0 25px;
  padding: 0;
  list-style: none;
}

.article-checklist li {
  padding: 14px 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.64);
  font-weight: 700;
}

.article-checklist span {
  display: inline-grid;
  place-items: center;
  width: 25px;
  height: 25px;
  margin-right: 10px;
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
}

.article-inline-visual {
  display: grid;
  grid-template-columns: 150px 1fr;
  align-items: center;
  gap: 28px;
  margin: 45px 0;
  padding: 28px;
  border-radius: 24px;
  background: var(--lavender);
}

.inventory-photo {
  display: grid;
  place-items: center;
  min-height: 130px;
  border-radius: 18px;
  background: var(--white);
  font-size: 3.5rem;
}

.article-inline-visual h3 {
  margin: 4px 0 5px;
}

.article-inline-visual p {
  margin: 0;
  font-size: 0.8rem;
}

.article-summary {
  margin-top: 75px;
  padding: 55px;
  border-radius: 28px;
  color: var(--white);
  background: var(--deep-teal);
}

.article-summary .eyebrow {
  color: var(--soft-green);
}

.article-summary h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

.article-summary p:last-child {
  margin: 0;
}

.article-share-footer {
  padding: 78px max(28px, calc((100vw - 1124px) / 2));
  color: var(--white);
  background: var(--deep-teal);
}

.article-share-footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 70px;
}

.article-share-footer .eyebrow {
  color: var(--soft-green);
}

.article-share-footer h2 {
  max-width: 720px;
  margin-bottom: 14px;
  font-size: clamp(2.6rem, 5vw, 4.7rem);
}

.article-share-footer p {
  margin-bottom: 0;
}

.share-actions {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 12px;
}

.share-actions button {
  cursor: pointer;
}

.button-light {
  border: 0;
  color: var(--deep-teal);
  background: var(--soft-green);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.copy-link-button {
  padding: 14px 18px;
  border: 2px solid var(--soft-green);
  border-radius: 14px;
  color: var(--white);
  background: transparent;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
}

.button-light:hover,
.copy-link-button:hover {
  transform: translateY(-2px);
}

.share-status {
  grid-column: 1 / -1;
  min-height: 20px;
  color: var(--soft-green);
  font-size: 0.72rem;
  font-weight: 700;
  text-align: center;
}

.related-articles {
  padding: 105px max(28px, calc((100vw - 1124px) / 2));
  background: var(--white);
}

.related-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 50px;
}

.related-heading h2 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.related-visual {
  display: grid;
  place-items: center;
  height: 300px;
  margin-bottom: 22px;
  border-radius: 24px;
  font-family: "Fredoka", sans-serif;
  font-size: 4rem;
}

.related-visual span {
  display: grid;
  place-items: center;
  width: 100px;
  height: 100px;
  border: 3px solid currentColor;
  border-radius: 28px;
  transform: rotate(-8deg);
}

.related-seasonal {
  background: var(--soft-green);
}

.related-spaces {
  background: var(--lavender);
}

.related-grid h3 {
  margin-bottom: 14px;
  font-size: 1.7rem;
}

.related-coming {
  color: rgba(18, 63, 67, 0.55);
  font-size: 0.76rem;
  font-weight: 800;
}

.related-read {
  font-size: 0.8rem;
  font-weight: 800;
}

.journal-page {
  min-height: 70vh;
}

.journal-hero {
  max-width: 1124px;
  margin: 0 auto;
  padding: 105px 28px 80px;
}

.journal-hero h1 {
  max-width: 850px;
  margin-bottom: 25px;
  font-size: clamp(4rem, 8vw, 7rem);
}

.journal-hero > p:last-child {
  max-width: 640px;
  font-size: 1.15rem;
}

.article-library {
  padding: 85px max(28px, calc((100vw - 1124px) / 2)) 125px;
  background: var(--white);
}

.filter-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 35px;
  margin-bottom: 52px;
}

.filter-heading h2 {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 4rem);
}

.article-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 9px;
}

.filter-button {
  padding: 9px 14px;
  border: 1px solid var(--soft-green);
  border-radius: 999px;
  color: var(--ink);
  background: var(--mint);
  font: inherit;
  font-size: 0.72rem;
  font-weight: 800;
  cursor: pointer;
}

.filter-button:hover,
.filter-button.is-active {
  color: var(--white);
  border-color: var(--deep-teal);
  background: var(--deep-teal);
}

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

.library-card[hidden] {
  display: none;
}

.library-card .article-image {
  height: 300px;
}

.library-card h3 {
  min-height: 60px;
  margin-bottom: 12px;
  font-size: 1.75rem;
}

.library-card > p:not(.article-tag) {
  min-height: 66px;
  font-size: 0.88rem;
}

.library-read {
  font-size: 0.82rem;
  font-weight: 800;
}

.filter-empty {
  padding: 45px;
  border-radius: 20px;
  background: var(--mint);
  text-align: center;
}

.seasonal-scene {
  background: var(--soft-green);
}

.seasonal-scene::before {
  background: var(--peach);
}

.season-card {
  position: absolute;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px;
  border: 4px solid var(--deep-teal);
  border-radius: 24px;
  color: var(--deep-teal);
  background: var(--white);
  box-shadow: 12px 12px 0 rgba(17, 82, 90, 0.12);
  text-align: center;
}

.season-card strong {
  font-family: "Fredoka", sans-serif;
  font-size: 1.25rem;
}

.season-card small {
  margin-top: 5px;
  font-size: 0.7rem;
  font-weight: 700;
}

.season-winter {
  bottom: 85px;
  left: 16%;
  width: 245px;
  height: 250px;
  background: var(--lavender);
  transform: rotate(-5deg);
}

.season-summer {
  right: 18%;
  bottom: 70px;
  width: 280px;
  height: 180px;
  background: var(--yellow);
  transform: rotate(4deg);
}

.season-celebration {
  top: 85px;
  right: 25%;
  width: 230px;
  height: 145px;
  background: var(--peach);
  transform: rotate(-2deg);
}

.season-sun,
.season-snow {
  position: absolute;
  z-index: 1;
  color: var(--green);
  font-family: "Fredoka", sans-serif;
  font-size: 8rem;
}

.season-sun {
  top: 38px;
  left: 10%;
}

.season-snow {
  right: 8%;
  bottom: 20px;
  color: var(--deep-teal);
}

.cupboard-scene {
  display: grid;
  place-items: center;
  background: var(--lavender);
}

.cupboard-scene::before {
  background: var(--soft-green);
}

.cupboard-frame {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  width: 520px;
  height: 450px;
  padding: 20px;
  border: 7px solid var(--deep-teal);
  border-radius: 28px;
  background: var(--mint);
  box-shadow: 18px 18px 0 rgba(17, 82, 90, 0.13);
  transform: rotate(-2deg);
}

.cupboard-shelf {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 14px;
  padding: 15px;
  border-bottom: 5px solid var(--deep-teal);
}

.cupboard-shelf:last-child {
  border-bottom: 0;
}

.cupboard-shelf span {
  display: grid;
  place-items: center;
  min-width: 90px;
  height: 76px;
  padding: 10px;
  border: 3px solid var(--deep-teal);
  border-radius: 14px 14px 8px 8px;
  background: var(--yellow);
  font-family: "Fredoka", sans-serif;
  font-size: 0.75rem;
}

.shelf-two span {
  min-width: 140px;
  background: var(--peach);
}

.shelf-three span {
  background: var(--soft-green);
}

.cupboard-dot {
  position: absolute;
  border-radius: 50%;
  background: var(--green);
}

.dot-one {
  top: 55px;
  left: 7%;
  width: 95px;
  height: 95px;
}

.dot-two {
  right: 6%;
  bottom: 45px;
  width: 145px;
  height: 145px;
  background: var(--peach);
}

.library-lead-scene {
  display: grid;
  place-items: center;
  background: var(--soft-green);
}

.library-lead-scene::before {
  background: var(--peach);
}

.library-scene-number {
  position: relative;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 190px;
  height: 190px;
  border: 6px solid var(--deep-teal);
  border-radius: 48px;
  color: var(--deep-teal);
  background: var(--mint);
  box-shadow: 18px 18px 0 rgba(17, 82, 90, 0.14);
  font-family: "Fredoka", sans-serif;
  font-size: 6rem;
  font-weight: 700;
  transform: rotate(-7deg);
}

.library-scene-label {
  position: absolute;
  z-index: 5;
  right: 14%;
  bottom: 90px;
  padding: 13px 22px;
  border-radius: 999px;
  color: var(--white);
  background: var(--deep-teal);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transform: rotate(4deg);
}

.library-scene-box {
  position: absolute;
  z-index: 2;
  border: 5px solid var(--deep-teal);
  background: var(--yellow);
}

.library-scene-box.box-a {
  bottom: 58px;
  left: 14%;
  width: 210px;
  height: 145px;
  transform: rotate(5deg);
}

.library-scene-box.box-b {
  top: 62px;
  right: 17%;
  width: 165px;
  height: 115px;
  background: var(--lavender);
  transform: rotate(-6deg);
}

.library-scene-dot {
  position: absolute;
  top: 72px;
  left: 10%;
  width: 105px;
  height: 105px;
  border-radius: 50%;
  background: var(--green);
}

.library-scene-2 {
  background: var(--peach);
}

.library-scene-3 {
  background: var(--lavender);
}

.library-scene-4 {
  background: var(--yellow);
}

.library-scene-5 {
  background: var(--mint);
}

.library-scene-6 {
  background: var(--soft-green);
}

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

  .site-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .site-nav.is-open {
    position: absolute;
    top: calc(100% - 10px);
    right: 28px;
    left: 28px;
    z-index: 50;
    display: grid;
    gap: 6px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open a {
    padding: 12px 14px;
    border-radius: 14px;
  }

  .site-nav.is-open a:hover {
    background: var(--mint);
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 65px;
  }

  .hero-copy {
    max-width: 720px;
    text-align: center;
  }

  .hero-intro {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-actions,
  .quick-benefits {
    justify-content: center;
  }

  .hero-visual {
    margin-top: 30px;
  }

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

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .legal-nav {
    position: static;
  }

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

  .article-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .article-share {
    position: static;
    grid-template-columns: repeat(4, 1fr);
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.58);
  }

  .article-share p {
    grid-column: 1 / -1;
  }

  .filter-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .article-filters {
    justify-content: flex-start;
  }

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

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

  .brand img {
    width: 112px;
  }

  .header-cta {
    display: none;
  }

  .site-nav.is-open {
    right: 20px;
    left: 20px;
  }

  .hero {
    min-height: auto;
    padding: 42px 20px 65px;
  }

  .hero h1 {
    font-size: clamp(3.4rem, 15vw, 5rem);
  }

  .hero-intro {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    gap: 18px;
  }

  .quick-benefits {
    flex-wrap: wrap;
  }

  .hero-visual {
    min-height: 560px;
    transform: scale(0.86);
  }

  .blob-one {
    width: 500px;
    height: 500px;
  }

  .card-garage {
    left: -55px;
  }

  .card-found {
    right: -55px;
  }

  .problem-strip {
    flex-direction: column;
    gap: 0;
    align-items: center;
  }

  .section {
    padding: 86px 20px;
  }

  .section-heading {
    margin-bottom: 42px;
  }

  .steps,
  .audience-grid,
  .article-grid,
  .feature-banner {
    grid-template-columns: 1fr;
  }

  .row-heading {
    display: block;
  }

  .row-heading > p {
    width: auto;
  }

  .audience-icon {
    margin-bottom: 48px;
  }

  .feature-banner {
    gap: 28px;
    margin: 60px 16px;
    padding: 50px 24px;
  }

  .article-grid {
    gap: 44px;
  }

  .article-grid h3 {
    min-height: 0;
  }

  .legal-hero {
    padding: 70px 20px 48px;
  }

  .legal-layout {
    padding: 0 20px 80px;
  }

  .legal-nav ol {
    grid-template-columns: 1fr;
  }

  .legal-content {
    padding: 30px 22px;
  }

  .cookie-banner {
    right: 10px;
    bottom: 10px;
    left: 10px;
  }

  .cookie-banner-inner {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px 20px;
  }

  .cookie-banner-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .cookie-choice {
    min-width: 0;
  }

  .article-hero {
    padding: 60px 20px 45px;
  }

  .article-hero h1 {
    font-size: clamp(3.6rem, 16vw, 5rem);
  }

  .article-meta {
    flex-wrap: wrap;
  }

  .article-lead-visual {
    padding: 0 14px;
  }

  .moving-scene {
    min-height: 440px;
    border-radius: 24px;
  }

  .moving-box-tall {
    bottom: 40px;
    left: 10%;
    width: 145px;
    height: 220px;
  }

  .moving-box-wide {
    right: 7%;
    bottom: 34px;
    width: 200px;
    height: 135px;
  }

  .moving-box-small {
    right: 8%;
    bottom: 165px;
    width: 135px;
    height: 115px;
  }

  .moving-tape {
    top: 78px;
    left: 28%;
  }

  .moving-lamp {
    left: 4%;
    height: 190px;
  }

  .article-layout {
    padding: 65px 20px 85px;
  }

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

  .article-intro {
    font-size: 1.3rem;
  }

  .article-body blockquote {
    padding: 38px 25px 30px;
  }

  .article-body blockquote p {
    font-size: 1.65rem;
  }

  .article-tip,
  .article-inline-visual {
    grid-template-columns: 1fr;
  }

  .article-summary {
    padding: 38px 25px;
  }

  .related-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .article-share-footer {
    padding: 65px 20px;
  }

  .article-share-footer-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .share-actions {
    justify-content: start;
  }

  .share-status {
    text-align: left;
  }

  .related-articles {
    padding: 80px 20px;
  }

  .related-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .journal-hero {
    padding: 70px 20px 55px;
  }

  .article-library {
    padding: 70px 20px 90px;
  }

  .library-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .library-card h3,
  .library-card > p:not(.article-tag) {
    min-height: 0;
  }

  .season-card {
    padding: 13px;
  }

  .season-winter {
    bottom: 45px;
    left: 7%;
    width: 160px;
    height: 195px;
  }

  .season-summer {
    right: 5%;
    bottom: 40px;
    width: 190px;
    height: 125px;
  }

  .season-celebration {
    top: 70px;
    right: 8%;
    width: 175px;
    height: 110px;
  }

  .season-sun,
  .season-snow {
    font-size: 5rem;
  }

  .cupboard-frame {
    width: 305px;
    height: 350px;
    padding: 10px;
  }

  .cupboard-shelf {
    gap: 6px;
    padding: 8px;
  }

  .cupboard-shelf span {
    min-width: 55px;
    height: 60px;
    padding: 5px;
    font-size: 0.55rem;
  }

  .shelf-two span {
    min-width: 90px;
  }

  .library-scene-number {
    width: 135px;
    height: 135px;
    border-radius: 34px;
    font-size: 4rem;
  }

  .library-scene-label {
    right: 8%;
    bottom: 65px;
  }

  .library-scene-box.box-a {
    left: 6%;
    width: 130px;
    height: 95px;
  }

  .library-scene-box.box-b {
    right: 5%;
    width: 110px;
    height: 80px;
  }

  footer {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 14px;
    text-align: center;
  }

  footer p:last-child {
    justify-self: center;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .phone {
    animation: float 5s ease-in-out infinite;
  }

  .storage-card {
    animation: float-card 4.5s ease-in-out infinite;
  }

  .card-found {
    animation-delay: -2s;
  }

  @keyframes float {
    0%,
    100% {
      transform: rotate(4deg) translateY(0);
    }
    50% {
      transform: rotate(2deg) translateY(-12px);
    }
  }

  @keyframes float-card {
    0%,
    100% {
      translate: 0 0;
    }
    50% {
      translate: 0 -8px;
    }
  }
}
