:root {
  --ink: #132521;
  --muted: #5b6b65;
  --line: #d4e5e0;
  --paper: #fffdf8;
  --soft: #effaf8;
  --green: #007c70;
  --green-dark: #063c3a;
  --coral: #ff8a3d;
  --accent: #ffd6bf;
  --sky: #e1f8ff;
  --pink: #ffe3ee;
  --mint: #dcf8eb;
  --white: #ffffff;
  --blue-shadow: #3999ad;
  --shadow: 8px 10px 0 rgba(6, 60, 58, 0.13);
  --soft-shadow: 0 18px 44px rgba(19, 37, 33, 0.11);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    repeating-linear-gradient(
      0deg,
      rgba(57, 153, 173, 0.05) 0,
      rgba(57, 153, 173, 0.05) 1px,
      transparent 1px,
      transparent 32px
    ),
    var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans TC",
    "Microsoft JhengHei", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

body,
button,
input,
textarea {
  letter-spacing: 0;
}

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

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

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 253, 248, 0.96);
  border-bottom: 2px solid rgba(6, 60, 58, 0.12);
  backdrop-filter: blur(16px);
  animation: headerDrop 520ms ease both;
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green-dark);
  font-weight: 900;
}

.brand-mark {
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 0;
  border-radius: 8px;
  background: transparent;
  box-shadow: 4px 4px 0 rgba(255, 138, 61, 0.38);
  transform: rotate(-4deg);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.brand-mark img {
  width: 100%;
  height: 100%;
}

.brand:hover .brand-mark {
  box-shadow: 2px 2px 0 rgba(255, 138, 61, 0.42);
  transform: translate(2px, 2px) rotate(2deg);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #40534b;
  font-size: 0.94rem;
  font-weight: 650;
}

.nav-links a,
.header-cta {
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.header-cta {
  padding: 10px 16px;
  border: 2px solid var(--green-dark);
  border-radius: 8px;
  color: var(--green-dark);
  background: var(--white);
  font-size: 0.94rem;
  font-weight: 800;
  box-shadow: 4px 4px 0 rgba(57, 153, 173, 0.28);
}

.header-cta:hover {
  background: var(--coral);
  color: var(--green-dark);
}

.hero {
  position: relative;
  min-height: 82svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--green-dark);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.98) 0%,
      rgba(255, 255, 255, 0.94) 44%,
      rgba(255, 255, 255, 0.82) 72%,
      rgba(255, 255, 255, 0.66) 100%
    );
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 18px;
  z-index: 1;
  background:
    repeating-linear-gradient(
      90deg,
      var(--accent) 0 28px,
      var(--pink) 28px 56px,
      var(--sky) 56px 84px,
      var(--mint) 84px 112px,
      var(--coral) 112px 140px
    );
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: heroImageIn 1200ms ease both;
}

.hero-content {
  position: relative;
  padding: 72px 0 58px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  margin: 0 0 14px;
  padding: 6px 10px;
  border: 2px solid currentColor;
  border-radius: 8px;
  color: var(--green-dark);
  background: var(--accent);
  font-size: 0.86rem;
  font-weight: 900;
}

.hero h1 {
  max-width: 700px;
  margin: 0;
  font-size: 3.8rem;
  line-height: 1.08;
  font-weight: 900;
  text-wrap: balance;
  text-shadow: 0 3px 0 rgba(255, 214, 191, 0.84);
  animation: riseIn 620ms 100ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero h1 span {
  display: inline-block;
  margin-top: 8px;
  padding: 0.02em 0.18em 0.08em;
  border: 3px solid var(--green-dark);
  border-radius: 8px;
  color: var(--green-dark);
  background: var(--accent);
  box-shadow: 8px 8px 0 rgba(255, 138, 61, 0.9);
  text-shadow: none;
  transform: rotate(-1deg);
}

.hero-copy {
  max-width: 640px;
  margin: 22px 0 0;
  color: #314940;
  font-size: 1.18rem;
  text-wrap: pretty;
  animation: riseIn 620ms 210ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.snack-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  max-width: 620px;
  margin-top: 24px;
  animation: riseIn 620ms 300ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.snack-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 8px;
  color: var(--green-dark);
  background: rgba(255, 214, 191, 0.92);
  font-size: 0.92rem;
  font-weight: 850;
  box-shadow: 3px 3px 0 rgba(57, 153, 173, 0.28);
  animation: snackBob 4.2s ease-in-out infinite;
}

.snack-strip span:nth-child(2) {
  background: rgba(255, 227, 238, 0.92);
  animation-delay: 260ms;
}

.snack-strip span:nth-child(3) {
  background: rgba(220, 248, 235, 0.94);
  animation-delay: 520ms;
}

.snack-strip span:nth-child(4) {
  background: rgba(255, 255, 255, 0.88);
  animation-delay: 780ms;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-actions {
  animation: riseIn 620ms 390ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.button {
  display: inline-flex;
  position: relative;
  overflow: hidden;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 2px solid transparent;
  border-radius: 8px;
  font-weight: 850;
  line-height: 1.25;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease,
    border-color 180ms ease;
}

.button::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -30%;
  width: 32px;
  background: rgba(255, 255, 255, 0.54);
  transform: rotate(16deg) translateX(-80px);
  transition: transform 520ms ease;
}

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

.button:hover::after {
  transform: rotate(16deg) translateX(260px);
}

.button-primary {
  color: var(--green-dark);
  border-color: var(--green-dark);
  background: var(--coral);
  box-shadow: 6px 6px 0 var(--blue-shadow);
}

.button-primary:hover {
  background: #ff9a55;
  box-shadow: 8px 8px 0 var(--blue-shadow);
}

.button-secondary {
  color: var(--green-dark);
  border-color: rgba(6, 60, 58, 0.68);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 6px 6px 0 rgba(57, 153, 173, 0.18);
}

.button-secondary:hover {
  border-color: var(--green-dark);
  background: var(--white);
}

.button-outline {
  color: var(--green-dark);
  border-color: var(--green-dark);
  background: var(--white);
  box-shadow: 6px 6px 0 rgba(57, 153, 173, 0.28);
}

.button-outline:hover {
  background: var(--soft);
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  max-width: 660px;
  margin: 34px 0 0;
  padding: 0;
  animation: riseIn 620ms 480ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero-facts div {
  min-width: 150px;
  padding: 12px 18px;
  margin-right: 12px;
  border: 1px solid rgba(6, 60, 58, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(4px);
}

.hero-facts div:last-child {
  border-right: 1px solid rgba(6, 60, 58, 0.24);
}

.hero-facts dt {
  font-size: 1.45rem;
  line-height: 1.2;
  font-weight: 900;
}

.hero-facts dd {
  margin: 4px 0 0;
  color: #536960;
}

.hero-sticker {
  position: absolute;
  top: -2px;
  right: 24px;
  width: 210px;
  padding: 16px;
  border: 2px solid var(--green-dark);
  border-radius: 8px;
  color: var(--green-dark);
  background: var(--white);
  box-shadow: 7px 7px 0 rgba(255, 138, 61, 0.72);
  transform: rotate(4deg);
  animation: stickerFloat 4.8s ease-in-out infinite;
}

.hero-sticker::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 50%;
  width: 70px;
  height: 22px;
  border: 1px solid rgba(6, 60, 58, 0.18);
  background: rgba(255, 214, 191, 0.88);
  transform: translateX(-50%) rotate(-3deg);
}

.hero-sticker strong,
.hero-sticker span {
  display: block;
}

.hero-sticker strong {
  font-size: 1.08rem;
}

.hero-sticker span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

section {
  scroll-margin-top: 88px;
}

.intro-section,
.guarantee-section,
.box-section,
.fit-section,
.workflow-section,
.contact-section {
  padding: 86px 0;
}

.intro-section {
  background: var(--paper);
}

.intro-grid,
.box-layout,
.fit-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 58px;
  align-items: start;
}

.section-kicker {
  color: var(--green-dark);
  background: var(--mint);
}

h2,
h3,
p {
  overflow-wrap: anywhere;
}

h2 {
  margin: 0;
  font-size: 2.25rem;
  line-height: 1.18;
  text-wrap: balance;
}

h3 {
  margin: 0;
  font-size: 1.16rem;
  line-height: 1.35;
}

.intro-grid p,
.box-copy p,
.contact-layout p {
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.section-heading {
  max-width: 700px;
  margin-bottom: 34px;
}

.mood-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.mood-note {
  position: relative;
  min-height: 122px;
  padding: 24px;
  border: 2px solid var(--green-dark);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.mood-note::before {
  content: "";
  position: absolute;
  top: 10px;
  right: 12px;
  width: 38px;
  height: 8px;
  border-radius: 8px;
  background: rgba(255, 138, 61, 0.42);
}

.mood-note span,
.mood-note strong {
  display: block;
}

.mood-note span {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 750;
}

.mood-note strong {
  margin-top: 10px;
  font-size: 1.35rem;
  line-height: 1.15;
}

.note-aqua {
  background: var(--accent);
  --tilt: -1deg;
  transform: rotate(var(--tilt));
}

.note-mint {
  background: var(--mint);
  --tilt: 1deg;
  transform: rotate(var(--tilt));
}

.note-blue {
  background: var(--sky);
  --tilt: -0.7deg;
  transform: rotate(var(--tilt));
}

.guarantee-section,
.workflow-section {
  background:
    repeating-linear-gradient(
      135deg,
      rgba(57, 153, 173, 0.055) 0,
      rgba(57, 153, 173, 0.055) 8px,
      transparent 8px,
      transparent 20px
    ),
    var(--soft);
}

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

.feature-card,
.product-list article,
.step,
.contact-notes {
  border: 2px solid var(--green-dark);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.feature-card:hover,
.product-list article:hover,
.step:hover {
  box-shadow: 5px 6px 0 rgba(6, 60, 58, 0.13);
  transform: translate(3px, 4px);
}

.feature-card {
  position: relative;
  padding: 26px;
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 8px;
  border-radius: 6px 6px 0 0;
  background: var(--accent);
}

.feature-card:nth-child(2)::after {
  background: var(--coral);
}

.feature-card:nth-child(3)::after {
  background: var(--mint);
}

.feature-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  border: 2px solid var(--green-dark);
  border-radius: 50%;
  color: var(--green-dark);
  background: var(--accent);
  font-weight: 900;
}

.feature-card p,
.product-list p,
.step p {
  margin: 12px 0 0;
  color: var(--muted);
}

.box-section {
  background: var(--white);
}

.product-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.product-list article {
  min-height: 188px;
  padding: 24px;
  box-shadow: 6px 7px 0 rgba(57, 153, 173, 0.18);
}

.product-dot {
  display: inline-block;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border: 2px solid var(--green-dark);
  border-radius: 8px;
  box-shadow: 4px 4px 0 rgba(57, 153, 173, 0.22);
  transition: transform 180ms ease;
}

.product-list article:hover .product-dot {
  transform: rotate(-6deg) scale(1.06);
}

.coffee {
  background: #8b5a39;
}

.chocolate {
  background: #5d3029;
}

.bar {
  background: var(--coral);
}

.lozenge {
  background: var(--accent);
}

.fit-section {
  background:
    linear-gradient(90deg, rgba(191, 242, 255, 0.76), rgba(255, 227, 238, 0.44)),
    var(--sky);
}

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

.fit-list li {
  padding: 18px 20px;
  border: 2px solid var(--green-dark);
  border-left-width: 8px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  font-weight: 780;
  box-shadow: 5px 5px 0 rgba(57, 153, 173, 0.18);
}

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

.step {
  position: relative;
  min-height: 254px;
  padding: 24px;
  box-shadow: 6px 8px 0 rgba(57, 153, 173, 0.18);
}

.step span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-bottom: 28px;
  border: 2px solid var(--green-dark);
  border-radius: 8px;
  color: var(--green-dark);
  background: var(--accent);
  font-weight: 900;
  box-shadow: 3px 3px 0 rgba(255, 138, 61, 0.38);
  transition: transform 180ms ease;
}

.step:hover span {
  transform: rotate(-5deg);
}

.contact-section {
  color: var(--ink);
  background:
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.7) 0 16px,
      transparent 16px 40px
    ),
    linear-gradient(135deg, rgba(191, 242, 255, 0.88), rgba(255, 227, 238, 0.5));
}

.contact-section .section-kicker {
  color: var(--green-dark);
}

.contact-layout {
  align-items: center;
}

.contact-layout p {
  max-width: 620px;
  color: var(--muted);
}

.contact-notes {
  margin: 0;
  padding: 28px;
  color: var(--ink);
  box-shadow: 8px 8px 0 var(--blue-shadow);
}

.contact-notes div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.contact-notes div:first-child {
  padding-top: 0;
}

.contact-notes div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.contact-notes dt {
  color: var(--green-dark);
  font-weight: 900;
}

.contact-notes dd {
  margin: 0;
  color: #354a42;
}

.site-footer {
  padding: 30px 0;
  color: var(--muted);
  background: var(--paper);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.footer-inner p {
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.94rem;
  font-weight: 800;
}

.footer-links a {
  padding: 7px 10px;
  border: 1px solid rgba(6, 60, 58, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
}

.footer-links a:hover,
.footer-links a[aria-current="page"] {
  color: var(--green-dark);
  background: var(--accent);
}

.legal-main {
  background:
    repeating-linear-gradient(
      0deg,
      rgba(57, 153, 173, 0.05) 0,
      rgba(57, 153, 173, 0.05) 1px,
      transparent 1px,
      transparent 32px
    ),
    var(--paper);
}

.legal-hero {
  padding: 86px 0 34px;
}

.legal-hero-inner {
  max-width: 840px;
}

.legal-hero h1 {
  margin: 0;
  font-size: 3rem;
  line-height: 1.08;
}

.legal-hero p {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.legal-meta {
  display: inline-flex;
  padding: 7px 11px;
  border: 2px solid var(--green-dark);
  border-radius: 8px;
  color: var(--green-dark) !important;
  background: var(--white);
  font-weight: 850;
  box-shadow: 4px 4px 0 rgba(57, 153, 173, 0.2);
}

.legal-content {
  padding: 32px 0 88px;
}

.legal-card {
  padding: 36px;
  border: 2px solid var(--green-dark);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.legal-section {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.legal-section:first-child {
  padding-top: 0;
}

.legal-section:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.legal-section h2 {
  font-size: 1.45rem;
}

.legal-section p {
  margin: 12px 0 0;
  color: var(--muted);
}

.legal-section a {
  color: var(--green);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.legal-list {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding-left: 22px;
  color: var(--muted);
}

.js-enabled .reveal-item {
  opacity: 0;
  transform: translateY(18px) rotate(var(--tilt, 0deg));
  transition: opacity 560ms ease, transform 560ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.js-enabled .reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0) rotate(var(--tilt, 0deg));
}

.js-enabled .feature-card.reveal-item.is-visible:hover,
.js-enabled .product-list article.reveal-item.is-visible:hover,
.js-enabled .step.reveal-item.is-visible:hover {
  transform: translate(3px, 4px) rotate(var(--tilt, 0deg));
}

@keyframes headerDrop {
  from {
    opacity: 0;
    transform: translateY(-14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroImageIn {
  from {
    filter: saturate(0.78);
    transform: scale(1.045);
  }

  to {
    filter: saturate(1);
    transform: scale(1);
  }
}

@keyframes snackBob {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

@keyframes stickerFloat {
  0%,
  100% {
    transform: translateY(0) rotate(4deg);
  }

  50% {
    transform: translateY(-7px) rotate(2deg);
  }
}

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

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

  .js-enabled .reveal-item {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .hero {
    min-height: 78svh;
  }

  .hero::before {
    background:
      linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.97) 0%,
        rgba(255, 255, 255, 0.92) 58%,
        rgba(255, 255, 255, 0.78) 100%
      );
  }

  .hero-content {
    padding: 58px 0 48px;
  }

  .hero h1 {
    max-width: 560px;
    font-size: 2.65rem;
  }

  .hero-copy {
    font-size: 1.04rem;
  }

  .hero-sticker {
    position: static;
    width: min(100%, 320px);
    margin-top: 28px;
    transform: rotate(-1deg);
  }

  .intro-section,
  .guarantee-section,
  .box-section,
  .fit-section,
  .workflow-section,
  .contact-section,
  .legal-hero {
    padding: 64px 0;
  }

  .legal-hero {
    padding-bottom: 24px;
  }

  .legal-hero h1 {
    font-size: 2.35rem;
  }

  .legal-content {
    padding: 24px 0 64px;
  }

  .intro-grid,
  .box-layout,
  .fit-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  h2 {
    font-size: 1.9rem;
  }

  .guarantee-grid,
  .mood-board,
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .header-inner {
    min-height: 64px;
    gap: 12px;
  }

  .brand {
    font-size: 0.95rem;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .header-cta {
    padding: 9px 11px;
    font-size: 0.86rem;
  }

  .hero {
    min-height: 76svh;
  }

  .hero-image {
    object-position: 58% center;
  }

  .hero-content {
    padding: 42px 0 40px;
  }

  .eyebrow,
  .section-kicker {
    font-size: 0.78rem;
  }

  .hero h1 {
    font-size: 2.15rem;
  }

  .hero-copy {
    margin-top: 18px;
  }

  .snack-strip {
    gap: 8px;
    margin-top: 20px;
  }

  .snack-strip span {
    min-height: 32px;
    padding: 5px 9px;
    font-size: 0.84rem;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .hero-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 28px;
  }

  .hero-facts div {
    min-width: 0;
    margin: 0;
    padding: 0 10px 0 0;
  }

  .hero-facts dt {
    font-size: 1.15rem;
  }

  .hero-facts dd {
    font-size: 0.86rem;
  }

  h2 {
    font-size: 1.62rem;
  }

  .guarantee-grid,
  .mood-board,
  .product-list,
  .steps {
    grid-template-columns: 1fr;
  }

  .mood-note {
    min-height: auto;
    padding: 20px;
    transform: none;
  }

  .hero-sticker {
    display: none;
  }

  .product-list article,
  .step {
    min-height: auto;
  }

  .contact-notes {
    padding: 22px;
  }

  .contact-notes div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

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

  .footer-links {
    width: 100%;
  }

  .footer-links a {
    flex: 1 1 auto;
    text-align: center;
  }

  .legal-card {
    padding: 22px;
  }

  .legal-section {
    padding: 22px 0;
  }

  .legal-section h2 {
    font-size: 1.24rem;
  }
}

@media (max-width: 620px) and (max-height: 700px) {
  .hero {
    min-height: 68svh;
  }

  .hero-content {
    padding: 30px 0 30px;
  }

  .hero h1 {
    font-size: 1.9rem;
  }

  .hero-copy {
    font-size: 0.98rem;
  }

  .snack-strip {
    display: none;
  }

  .hero-facts {
    display: none;
  }
}
