:root {
  --bg: #f7f1e8;
  --surface: #ffffff;
  --text: #141414;
  --muted: #555555;
  --line: rgba(20, 20, 20, 0.12);

  --primary: #548c44;
  --primary-deep: #2c3a24;
  --accent: #e4c404;
  --sand: #ece4d4;
  --brown: #84543c;

  --radius: 18px;
  --shadow: 0 18px 50px rgba(20, 20, 20, 0.12);
  --shadow-soft: 0 12px 30px rgba(20, 20, 20, 0.08);

  --container: 1120px;
  --gutter: 22px;
  --header: 72px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header) + 14px);
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial,
    "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
  line-height: 1.5;
  color: var(--text);
  background: radial-gradient(
      1200px 700px at 10% 0%,
      rgba(84, 140, 68, 0.12),
      transparent 60%
    ),
    radial-gradient(
      900px 600px at 90% 10%,
      rgba(228, 196, 4, 0.14),
      transparent 60%
    ),
    var(--bg);
}

body.has-intro {
  overflow: hidden;
  height: 100vh;
}

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

a {
  color: inherit;
}

.text-link {
  font-weight: 800;
  color: rgba(20, 20, 20, 0.82);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

p {
  margin: 0 0 1rem;
}

h1,
h2,
h3 {
  margin: 0 0 0.8rem;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.2rem, 4.2vw, 3.6rem);
}

h2 {
  font-size: clamp(1.65rem, 2.6vw, 2.3rem);
}

h3 {
  font-size: 1.1rem;
}

.container {
  width: min(var(--container), calc(100% - (var(--gutter) * 2)));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  transform: translateY(-140%);
  transition: transform 180ms ease;
  z-index: 100;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.intro {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
}

.intro__wipe {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.intro__panel {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50vw;
  background: radial-gradient(
      1000px 520px at 18% 10%,
      rgba(84, 140, 68, 0.22),
      transparent 60%
    ),
    radial-gradient(
      900px 520px at 92% 0%,
      rgba(228, 196, 4, 0.25),
      transparent 55%
    ),
    var(--bg);
}

.intro__panel--left {
  left: 0;
  border-right: 1px solid rgba(20, 20, 20, 0.08);
  transform: translateX(0);
  animation: introSplitLeft 900ms cubic-bezier(0.22, 1, 0.36, 1) 720ms forwards;
}

.intro__panel--right {
  right: 0;
  border-left: 1px solid rgba(20, 20, 20, 0.08);
  transform: translateX(0);
  animation: introSplitRight 900ms cubic-bezier(0.22, 1, 0.36, 1) 720ms forwards;
}

.intro__bottle {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: min(520px, 86vw);
  height: auto;
  transform: translate(-50%, -220%) scale(0.96);
  filter: drop-shadow(0 30px 45px rgba(20, 20, 20, 0.26));
  animation: introDrop 1500ms cubic-bezier(0.22, 1, 0.36, 1) 0ms forwards;
}

.intro.is-done {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 320ms ease;
}

@keyframes introDrop {
  0% {
    transform: translate(-50%, -220%) scale(0.96);
  }
  55% {
    transform: translate(-50%, -50%) scale(1);
  }
  70% {
    transform: translate(-50%, -56%) scale(1);
  }
  100% {
    transform: translate(-50%, 210%) scale(0.98);
  }
}

@keyframes introSplitLeft {
  to {
    transform: translateX(-105%);
  }
}

@keyframes introSplitRight {
  to {
    transform: translateX(105%);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 241, 232, 0.72);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(20, 20, 20, 0.08);
}

.nav {
  height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
}

.brand img {
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(20, 20, 20, 0.12);
}

.brand__text {
  display: grid;
  line-height: 1.1;
  gap: 2px;
}

.brand__text strong {
  font-size: 1.06rem;
}

.brand__text span {
  font-size: 0.92rem;
  color: var(--muted);
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav__menu a:not(.btn) {
  text-decoration: none;
  color: rgba(20, 20, 20, 0.84);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 10px 10px;
  border-radius: 999px;
}

.nav__menu a:not(.btn):hover {
  background: rgba(255, 255, 255, 0.65);
}

.nav__toggle {
  display: none;
  appearance: none;
  border: 1px solid rgba(20, 20, 20, 0.14);
  background: rgba(255, 255, 255, 0.7);
  border-radius: 14px;
  padding: 10px 11px;
  box-shadow: var(--shadow-soft);
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(20, 20, 20, 0.86);
  margin: 5px 0;
  border-radius: 2px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.9rem 1.15rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #5aa24b, var(--primary));
  color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0);
  box-shadow: 0 16px 35px rgba(84, 140, 68, 0.26);
  text-decoration: none;
  font-weight: 700;
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
  filter: saturate(1.05);
  box-shadow: 0 20px 45px rgba(84, 140, 68, 0.33);
}

.btn:active {
  transform: translateY(0);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.76);
  color: rgba(20, 20, 20, 0.9);
  border-color: rgba(20, 20, 20, 0.14);
  box-shadow: var(--shadow-soft);
}

.btn--ghost:hover {
  box-shadow: 0 18px 40px rgba(20, 20, 20, 0.14);
}

.btn--small {
  padding: 0.68rem 0.95rem;
  font-size: 0.96rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(236, 228, 212, 0.8);
  border: 1px solid rgba(20, 20, 20, 0.1);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: rgba(20, 20, 20, 0.82);
  margin: 0 0 16px;
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: clamp(2.8rem, 8vh, 5.5rem) 0;
  display: grid;
  align-content: center;
  scroll-margin-top: calc(var(--header) + 14px);
}

.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: url("../../images/web/ai4p-1600.jpg") center / cover no-repeat;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.06);
}

.hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(44, 58, 36, 0.92),
    rgba(44, 58, 36, 0.72) 35%,
    rgba(44, 58, 36, 0.38) 62%,
    rgba(44, 58, 36, 0.18)
  );
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 46px;
  align-items: center;
}

.hero__copy {
  color: rgba(255, 255, 255, 0.92);
}

.hero__copy .lead {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  max-width: 55ch;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 22px 0 18px;
}

.trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.trust__item {
  padding: 12px 14px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
}

.trust__title {
  display: block;
  font-weight: 800;
}

.trust__desc {
  display: block;
  opacity: 0.82;
  font-size: 0.95rem;
}

.slider {
  position: relative;
}

.slider__track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 2px;
  cursor: grab;
  touch-action: pan-y;
}

.slider__track::-webkit-scrollbar {
  display: none;
}

.slider__track.is-dragging {
  cursor: grabbing;
}

.slider__slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.slider--peek .slider__slide {
  flex-basis: 86%;
}

.slider__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(20, 20, 20, 0.14);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
  display: grid;
  place-items: center;
  color: rgba(20, 20, 20, 0.84);
  font-size: 30px;
  line-height: 1;
  padding: 0;
}

.slider__btn--prev {
  left: 8px;
}

.slider__btn--next {
  right: 8px;
}

.slider__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}

.slider__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  background: rgba(20, 20, 20, 0.18);
  padding: 0;
}

.slider__dot.is-active {
  width: 22px;
  background: rgba(84, 140, 68, 0.72);
}

.hero .slider__btn {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.45);
  color: rgba(255, 255, 255, 0.9);
}

.hero .slider__dot {
  background: rgba(255, 255, 255, 0.28);
}

.hero .slider__dot.is-active {
  background: rgba(228, 196, 4, 0.92);
}

.hero__media {
  display: grid;
  gap: 16px;
}

.slider--hero {
  width: min(420px, 100%);
  margin-left: auto;
}

.slider--hero .product-shot {
  height: min(70vh, 660px);
}

.slider--hero .product-shot img {
  height: 100%;
  object-fit: cover;
}

.product-shot {
  margin: 0;
  border-radius: 26px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 30px 65px rgba(0, 0, 0, 0.35);
  background: rgba(20, 20, 20, 0.15);
}

.product-shot img {
  width: 100%;
  height: auto;
}

.product-shot__badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.5);
  color: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-weight: 800;
  letter-spacing: 0.01em;
}

.hero-mini {
  margin: 0;
  display: grid;
  gap: 10px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 12px;
}

.hero-mini img {
  border-radius: 14px;
}

.hero-mini figcaption {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.section {
  min-height: 100vh;
  padding: clamp(3rem, 7vh, 5rem) 0;
  display: grid;
  align-content: center;
  scroll-margin-top: calc(var(--header) + 14px);
}

.section__head {
  margin-bottom: 24px;
}

.section__lead {
  margin: 0;
  color: rgba(20, 20, 20, 0.68);
  max-width: 70ch;
}

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

.card {
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(20, 20, 20, 0.1);
  padding: 18px 18px 16px;
  box-shadow: var(--shadow-soft);
}

.card p {
  margin: 0;
  color: rgba(20, 20, 20, 0.72);
}

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

.product-card {
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(20, 20, 20, 0.12);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
}

.product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: rgba(236, 228, 212, 0.55);
}

.product-card__body {
  padding: 18px;
  display: grid;
  gap: 10px;
  align-content: start;
}

.product-card__body h3 {
  margin-bottom: 2px;
}

.product-card__desc {
  margin: 0;
  color: rgba(20, 20, 20, 0.72);
}

.product-card__meta {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-card__meta li {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(236, 228, 212, 0.74);
  border: 1px solid rgba(20, 20, 20, 0.1);
  font-weight: 800;
  font-size: 0.92rem;
  color: rgba(20, 20, 20, 0.78);
}

.product-card__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 2px;
}

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 42px;
  align-items: center;
}

.media-card {
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(20, 20, 20, 0.12);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.detail-list {
  margin: 18px 0 18px;
  padding-left: 1.25rem;
  display: grid;
  gap: 10px;
  color: rgba(20, 20, 20, 0.78);
}

.detail-list li::marker {
  color: rgba(84, 140, 68, 0.85);
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: 0.01em;
  font-size: 0.86rem;
  border: 1px solid rgba(20, 20, 20, 0.12);
  margin-right: 10px;
  white-space: nowrap;
}

.tag--primary {
  background: rgba(84, 140, 68, 0.18);
  border-color: rgba(84, 140, 68, 0.35);
  color: rgba(44, 58, 36, 0.96);
}

.tag--accent {
  background: rgba(228, 196, 4, 0.22);
  border-color: rgba(228, 196, 4, 0.4);
  color: rgba(20, 20, 20, 0.92);
}

.tag--sand {
  background: rgba(236, 228, 212, 0.92);
  border-color: rgba(20, 20, 20, 0.12);
  color: rgba(20, 20, 20, 0.82);
}

.note {
  border-radius: var(--radius);
  border: 1px solid rgba(20, 20, 20, 0.12);
  background: linear-gradient(
    180deg,
    rgba(236, 228, 212, 0.9),
    rgba(236, 228, 212, 0.68)
  );
  padding: 16px 16px;
  box-shadow: var(--shadow-soft);
}

.note__title {
  font-weight: 900;
  margin-bottom: 6px;
}

.note__text {
  color: rgba(20, 20, 20, 0.74);
}

.inline-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.section--how {
  padding: clamp(2.6rem, 6vh, 4.2rem) 0;
}

.section--how .section__head {
  margin-bottom: 18px;
}

.how-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
  margin-top: 10px;
  align-items: start;
}

.how-layout__content {
  display: grid;
  gap: 14px;
  align-content: start;
}

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

.how-steps__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(20, 20, 20, 0.1);
  padding: 12px 14px;
  box-shadow: var(--shadow-soft);
}

.how-steps__num {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: rgba(20, 20, 20, 0.86);
  background: rgba(228, 196, 4, 0.18);
  border: 1px solid rgba(228, 196, 4, 0.4);
}

.how-steps__body h3 {
  margin: 0 0 6px;
}

.how-steps__body p {
  margin: 0;
  color: rgba(20, 20, 20, 0.72);
}

.how__img {
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(20, 20, 20, 0.12);
  box-shadow: var(--shadow-soft);
  background: rgba(255, 255, 255, 0.82);
  height: min(58vh, 560px);
}

.how__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.how__img figcaption {
  padding: 12px 14px 14px;
  color: rgba(20, 20, 20, 0.72);
  font-size: 0.95rem;
}

.how__img a {
  color: var(--primary-deep);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.how__tips {
  border-radius: 24px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(20, 20, 20, 0.1);
  box-shadow: var(--shadow-soft);
}

.bullets {
  margin: 10px 0 0;
  padding-left: 18px;
  color: rgba(20, 20, 20, 0.72);
  display: grid;
  gap: 8px;
}

.section--soft {
  background: linear-gradient(
    180deg,
    rgba(236, 228, 212, 0.45),
    rgba(236, 228, 212, 0)
  );
}

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

.poster {
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(20, 20, 20, 0.12);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
}

.slider .poster {
  height: min(72vh, 680px);
  display: grid;
  place-items: center;
  padding: 12px;
}

.poster a {
  display: block;
  text-decoration: none;
}

.poster img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.poster figcaption {
  padding: 12px 14px 14px;
  font-weight: 800;
  color: rgba(20, 20, 20, 0.78);
}

.section--story {
  background: linear-gradient(
      120deg,
      rgba(44, 58, 36, 0.92),
      rgba(44, 58, 36, 0.65) 55%,
      rgba(44, 58, 36, 0.22)
    ),
    url("../../images/web/cover-900.jpg");
  background-size: cover;
  background-position: center;
  color: rgba(255, 255, 255, 0.92);
}

.story {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 34px;
  align-items: center;
}

.story__copy p {
  color: rgba(255, 255, 255, 0.84);
}

.muted {
  color: rgba(20, 20, 20, 0.68);
}

.section--story .muted {
  color: rgba(255, 255, 255, 0.76);
}

.story__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.story__media {
  margin: 0;
  border-radius: 26px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 30px 65px rgba(0, 0, 0, 0.35);
}

.story__media img {
  width: 100%;
  height: auto;
}

.story__media figcaption {
  padding: 12px 14px 14px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

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

.gallery__item {
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(20, 20, 20, 0.12);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
}

.slider .gallery__item {
  height: min(62vh, 560px);
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery__item figcaption {
  padding: 10px 12px 12px;
  color: rgba(20, 20, 20, 0.72);
  font-weight: 700;
  font-size: 0.95rem;
}

.faq {
  display: grid;
  gap: 12px;
}

details {
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(20, 20, 20, 0.1);
  box-shadow: var(--shadow-soft);
  padding: 14px 16px;
}

summary {
  cursor: pointer;
  font-weight: 900;
  color: rgba(20, 20, 20, 0.9);
}

details p {
  margin: 10px 0 0;
  color: rgba(20, 20, 20, 0.72);
}

.section--cta {
  background: radial-gradient(
      800px 420px at 20% 10%,
      rgba(84, 140, 68, 0.18),
      transparent 60%
    ),
    radial-gradient(
      700px 420px at 90% 0%,
      rgba(228, 196, 4, 0.22),
      transparent 55%
    ),
    rgba(236, 228, 212, 0.35);
  border-top: 1px solid rgba(20, 20, 20, 0.06);
  border-bottom: 1px solid rgba(20, 20, 20, 0.06);
}

.order {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 26px;
  align-items: start;
}

.order__note {
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(20, 20, 20, 0.1);
  padding: 14px 14px;
  color: rgba(20, 20, 20, 0.72);
  box-shadow: var(--shadow-soft);
}

.order__help {
  margin-top: 10px;
}

.form {
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(20, 20, 20, 0.12);
  box-shadow: var(--shadow);
  padding: 18px;
  display: grid;
  gap: 12px;
}

.form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.form__actions .btn {
  flex: 1 1 220px;
}

.hp {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

label {
  display: grid;
  gap: 6px;
}

label span {
  font-weight: 800;
  color: rgba(20, 20, 20, 0.82);
}

input,
select,
textarea {
  font: inherit;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(20, 20, 20, 0.16);
  background: rgba(255, 255, 255, 0.92);
  outline: none;
}

textarea {
  resize: vertical;
  min-height: 110px;
}

input:focus,
select:focus,
textarea:focus,
summary:focus {
  box-shadow: 0 0 0 4px rgba(84, 140, 68, 0.22);
  border-color: rgba(84, 140, 68, 0.65);
}

.footer {
  padding: 42px 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.6fr 0.9fr;
  gap: 18px;
  align-items: start;
}

.brand--footer img {
  box-shadow: var(--shadow-soft);
}

.footer__links {
  display: grid;
  gap: 10px;
  padding-top: 10px;
}

.footer__links a {
  text-decoration: none;
  color: rgba(20, 20, 20, 0.78);
  font-weight: 700;
}

.footer__links a:hover {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.footer__title {
  font-weight: 900;
  margin: 0 0 10px;
}

.footer__contact a {
  display: inline-block;
  color: rgba(20, 20, 20, 0.78);
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 8px;
}

.small {
  font-size: 0.95rem;
}

.error-page {
  min-height: calc(100vh - var(--header));
  display: grid;
  align-content: center;
  padding: clamp(2.8rem, 7vh, 5rem) 0;
}

.error-card {
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(20, 20, 20, 0.12);
  box-shadow: var(--shadow);
  padding: clamp(1.6rem, 3.2vw, 2.2rem);
  position: relative;
  overflow: hidden;
}

.error-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: radial-gradient(
      820px 460px at 18% 20%,
      rgba(84, 140, 68, 0.16),
      transparent 60%
    ),
    radial-gradient(
      720px 420px at 92% 0%,
      rgba(228, 196, 4, 0.18),
      transparent 55%
    );
  pointer-events: none;
}

.error-card > * {
  position: relative;
}

.error-help a {
  white-space: nowrap;
}

@media (max-width: 980px) {
  .nav__toggle {
    display: inline-block;
  }

  .nav__menu {
    position: fixed;
    left: var(--gutter);
    right: var(--gutter);
    top: calc(var(--header) + 10px);
    display: grid;
    gap: 6px;
    padding: 12px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(20, 20, 20, 0.12);
    box-shadow: var(--shadow);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: transform 160ms ease, opacity 160ms ease;
  }

  .nav__menu.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav__menu a:not(.btn) {
    padding: 12px 12px;
  }

  .hero__grid,
  .split,
  .how-layout,
  .story,
  .order {
    grid-template-columns: 1fr;
  }

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

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

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

  .product-card {
    grid-template-columns: 1fr;
  }

  .product-card__img {
    height: auto;
  }

  .how__img {
    height: min(34vh, 260px);
  }

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

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

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

@media (max-width: 560px) {
  :root {
    --gutter: 18px;
  }

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

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

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

  .intro {
    display: none;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0ms !important;
    animation-duration: 0ms !important;
  }
}
