:root {
  --red: #27989e;
  --ink: #000000;
  --paper: #f9e6ae;
  --soft: #fff4cf;
  --pink: #f3c3cb;
  --cream: #fff4cf;
  --white: #ffffff;
  --blue: #2b6786;
  --yellow: #fff500;
  --shadow: rgba(221, 198, 202, 0.42) -3px 4px 14px 0;
  --hard-shadow: 8px 8px 0 #000;
  --radius: 8px;
  --max: 1180px;
  --display-font: Bayon, Impact, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.5;
}

body.is-loading {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.loader {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: grid;
  place-items: center;
  gap: 24px;
  padding: 28px;
  overflow: hidden;
  background: var(--pink);
  color: var(--ink);
  transition: clip-path 0.8s cubic-bezier(0.76, 0, 0.24, 1), visibility 0.8s ease;
  clip-path: circle(150% at 50% 50%);
}

.loader::before,
.loader::after {
  position: absolute;
  width: 44vw;
  height: 44vw;
  min-width: 280px;
  min-height: 280px;
  border: 3px solid rgba(0, 0, 0, 0.16);
  border-radius: 50%;
  content: "";
  animation: spin 12s linear infinite;
}

.loader::before {
  left: -12vw;
  top: -10vw;
}

.loader::after {
  right: -15vw;
  bottom: -12vw;
  animation-direction: reverse;
}

.loader.is-hidden {
  visibility: hidden;
  clip-path: circle(0 at 50% 50%);
}

.loader__stage {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 12px;
  text-align: center;
}

.loader__ball {
  width: 64px;
  height: 64px;
  border: 2px solid #a7a238;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 28%, #fff982 0 11%, transparent 12%),
    linear-gradient(135deg, #fff500, #d8cf22);
  box-shadow: 0 18px 0 rgba(0, 0, 0, 0.14);
  animation: bounce 0.62s cubic-bezier(0.36, 0, 0.66, -0.56) infinite alternate;
}

.loader p,
.loader strong {
  margin: 0;
  font-family: var(--display-font);
  font-size: clamp(2rem, 7vw, 6.8rem);
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: lowercase;
}

.loader small {
  position: relative;
  z-index: 1;
  max-width: 620px;
  text-align: center;
  font-weight: 800;
}

@keyframes bounce {
  from {
    transform: translateY(-44px) scaleX(0.95) rotate(-12deg);
  }
  to {
    transform: translateY(34px) scaleX(1.1) scaleY(0.88) rotate(18deg);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 48px);
  background: rgba(249, 230, 174, 0.92);
  border-bottom: 3px solid var(--red);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: clamp(150px, 13vw, 230px);
  height: 52px;
  line-height: 0;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 2vw, 30px);
  font-weight: 900;
}

.site-nav a,
.site-footer nav a {
  position: relative;
}

.site-nav a::after,
.site-footer nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.24s ease;
  content: "";
}

.site-nav a:hover::after,
.site-footer nav a:hover::after {
  transform: scaleX(1);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 23px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-family: var(--display-font);
  font-size: 1.22rem;
  line-height: 1;
  text-transform: lowercase;
  cursor: pointer;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

.header-cta,
.btn--primary {
  background: var(--red);
  color: var(--white);
}

.btn--dark {
  background: var(--ink);
  color: var(--white);
}

.btn--ghost {
  border-color: var(--white);
  color: var(--white);
}

.btn:hover,
.header-cta:hover {
  transform: translateY(-3px) rotate(-1deg);
  box-shadow: var(--hard-shadow);
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--ink);
  isolation: isolate;
}

.hero__media {
  position: absolute;
  inset: 0;
  transform: scale(1.06);
  animation: heroDrift 16s ease-in-out infinite alternate;
}

.hero__media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.32) 54%, rgba(39, 152, 158, 0.24)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.72), transparent 46%);
  content: "";
}

.hero__noise {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.14;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, #000, transparent 82%);
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(1020px, 100%);
  padding: clamp(82px, 12vw, 160px) clamp(18px, 6vw, 80px) 92px;
  color: var(--white);
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--red);
  font-family: var(--display-font);
  font-size: clamp(1.25rem, 2.2vw, 2rem);
  line-height: 1;
  letter-spacing: 0;
  text-transform: lowercase;
}

.hero h1,
section h2 {
  margin: 0;
  font-family: var(--display-font);
  font-weight: 400;
  line-height: 0.86;
  letter-spacing: 0;
  text-transform: lowercase;
}

.hero h1 {
  max-width: 1040px;
  font-size: clamp(4.7rem, 13.8vw, 13rem);
}

.hero p:not(.eyebrow) {
  max-width: 610px;
  margin: 22px 0 0;
  font-size: clamp(1.08rem, 1.6vw, 1.35rem);
  font-weight: 700;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero__floating-card {
  position: absolute;
  right: clamp(18px, 5vw, 70px);
  bottom: 92px;
  z-index: 2;
  width: min(260px, 42vw);
  padding: 18px;
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  background: var(--yellow);
  color: var(--ink);
  box-shadow: var(--hard-shadow);
  transform: rotate(4deg);
}

.hero__floating-card span,
.hero__floating-card small {
  display: block;
  font-weight: 900;
  text-transform: lowercase;
}

.hero__floating-card strong {
  display: block;
  font-family: var(--display-font);
  font-size: clamp(3.5rem, 7vw, 6rem);
  font-weight: 400;
  line-height: 0.82;
  color: var(--red);
}

@keyframes heroDrift {
  from {
    transform: scale(1.06) translate3d(-1%, 0, 0);
  }
  to {
    transform: scale(1.11) translate3d(1.5%, -1%, 0);
  }
}

.marquee {
  overflow: hidden;
  background: var(--red);
  color: var(--white);
  border-block: 3px solid var(--ink);
}

.marquee__track {
  display: flex;
  width: max-content;
  gap: 30px;
  padding: 14px 0;
  animation: marquee 26s linear infinite;
}

.marquee span {
  font-family: var(--display-font);
  font-size: clamp(1.6rem, 4vw, 4.4rem);
  line-height: 1;
  white-space: nowrap;
  text-transform: lowercase;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

main > section {
  padding: clamp(70px, 9vw, 128px) clamp(18px, 4vw, 48px);
}

.section-heading,
.split,
.booking,
.gallery,
.products,
.services,
.deals,
.social-proof {
  max-width: var(--max);
  margin-inline: auto;
}

section h2 {
  max-width: 920px;
  font-size: clamp(3.55rem, 8.5vw, 9rem);
}

.split,
.booking {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(30px, 6vw, 82px);
  align-items: end;
}

.split > p,
.booking p {
  margin: 0 0 24px;
  color: #252525;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  font-weight: 700;
}

.text-link {
  display: inline-flex;
  color: var(--blue);
  font-weight: 900;
  text-transform: lowercase;
}

.products,
.deals,
.garden {
  max-width: none;
  background: var(--soft);
}

.products > *,
.deals > *,
.garden > * {
  max-width: var(--max);
  margin-inline: auto;
}

.notice-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 18px;
  padding: 16px clamp(18px, 4vw, 48px);
  border-block: 3px solid var(--ink);
  background: var(--yellow);
  color: var(--ink);
  font-weight: 900;
  text-align: center;
}

.notice-bar strong {
  color: var(--red);
  text-transform: uppercase;
}

.notice-bar a {
  color: var(--blue);
}

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

.product-card,
.deal-card,
.testimonial-track article,
.booking-form {
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.product-card {
  min-height: 400px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 18px;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

.tilt-card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --tilt-lift: 0px;
  transform: translateY(var(--reveal-y, 0px)) translateY(var(--tilt-lift)) perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  will-change: transform;
}

.tilt-card:hover {
  --tilt-lift: -4px;
}

.product-card:hover,
.deal-card:hover,
.testimonial-track article:hover {
  box-shadow: var(--hard-shadow);
}

.product-card span {
  color: var(--red);
  font-family: var(--display-font);
  font-size: 2.2rem;
  line-height: 1;
}

.product-card__image {
  height: 270px;
  margin: 0 -18px;
  overflow: hidden;
}

.product-card__image--portrait {
  display: grid;
  place-items: center;
  height: 340px;
  background: #7899b2;
}

.product-card__image--portrait img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  object-position: center 62%;
}

.product-card__image--category {
  height: 220px;
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  margin: 0;
  background: var(--cream);
}

.product-card__image--category img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.product-card__image--rabbit img {
  object-position: center 42%;
}

.product-card__image--medical {
  background: #d7ebf4;
}

.product-card__image--medical img {
  object-position: 42% center;
}

.product-card--wide {
  grid-column: span 2;
  background: var(--red);
  color: var(--white);
}

.product-card--wide span,
.product-card--wide p {
  color: var(--white);
}

.product-card h3,
.deal-card h3 {
  margin: 0;
  font-family: var(--display-font);
  font-size: clamp(2.1rem, 3.6vw, 3.5rem);
  font-weight: 400;
  line-height: 0.9;
  text-transform: lowercase;
}

.product-card__title--tight {
  font-size: clamp(1.9rem, 3.1vw, 3.05rem);
}

.product-card p,
.deal-card p,
.testimonial-track p {
  margin: 0;
  color: #303030;
  font-weight: 700;
}

.product-card--wide p {
  color: var(--white);
}

.pack {
  display: grid;
  place-items: center;
  height: 180px;
  border: 3px solid var(--ink);
  border-radius: 32px 32px var(--radius) var(--radius);
  font-family: var(--display-font);
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1;
  text-transform: lowercase;
  box-shadow: inset 0 -18px 0 rgba(0, 0, 0, 0.12);
}

.pack--red {
  background: var(--red);
  color: var(--white);
}

.pack--black {
  background: var(--ink);
  color: var(--white);
}

.pack--blue {
  background: var(--blue);
  color: var(--white);
}

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

.services {
  max-width: none;
}

.services > * {
  max-width: var(--max);
  margin-inline: auto;
}

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

.service-tile {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
}

.service-tile::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.82), transparent 55%);
  content: "";
}

.service-tile strong,
.service-tile span {
  position: absolute;
  z-index: 1;
  left: 20px;
  right: 20px;
}

.service-tile strong {
  bottom: 80px;
  font-family: var(--display-font);
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  font-weight: 400;
  line-height: 0.86;
  text-transform: lowercase;
}

.service-tile span {
  bottom: 24px;
  font-weight: 800;
}

.deals {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 30px;
  align-items: center;
}

.deals__cards {
  display: grid;
  gap: 18px;
}

.deal-card {
  min-height: 215px;
  padding: 22px;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.deal-card small {
  color: var(--red);
  font-weight: 900;
  text-transform: lowercase;
}

.deal-card strong {
  display: block;
  margin: 12px 0;
  font-family: var(--display-font);
  font-size: clamp(3rem, 6vw, 5.7rem);
  font-weight: 400;
  line-height: 0.82;
  color: var(--red);
  text-transform: lowercase;
}

.deal-card--dark {
  background: var(--ink);
  color: var(--white);
}

.deal-card--dark p {
  color: var(--white);
}

.garden {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(30px, 6vw, 82px);
  align-items: center;
}

.garden__content p {
  max-width: 620px;
  margin: 22px 0 28px;
  color: #252525;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  font-weight: 700;
}

.garden__showcase {
  position: relative;
  min-height: clamp(420px, 48vw, 620px);
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper);
  box-shadow: var(--hard-shadow);
  transform-style: preserve-3d;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.garden__showcase img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
  object-position: center center;
  filter: saturate(1.08) contrast(1.04);
}

.garden__showcase::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 38%, rgba(0, 0, 0, 0.62) 100%);
  pointer-events: none;
}

.garden__badge {
  position: absolute;
  left: clamp(16px, 3vw, 34px);
  right: clamp(16px, 3vw, 34px);
  bottom: clamp(92px, 10vw, 122px);
  z-index: 1;
  display: grid;
  gap: 6px;
  max-width: 520px;
  color: var(--white);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.52);
}

.garden__badge strong {
  font-family: var(--display-font);
  font-size: clamp(2.2rem, 5vw, 5.4rem);
  line-height: 0.92;
  text-transform: lowercase;
}

.garden__badge span {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 900;
  line-height: 1.25;
}

.garden__tags {
  position: absolute;
  left: clamp(16px, 3vw, 34px);
  right: clamp(16px, 3vw, 34px);
  bottom: clamp(16px, 2.6vw, 28px);
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.garden__tags span {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 10px 16px;
  border: 3px solid var(--ink);
  border-radius: 999px;
  background: var(--soft);
  box-shadow: var(--shadow);
  font-family: var(--display-font);
  font-size: clamp(1.12rem, 2vw, 2rem);
  line-height: 1;
  text-transform: uppercase;
}

.social-proof {
  max-width: none;
  overflow: hidden;
}

.social-proof > * {
  max-width: 1320px;
  margin-inline: auto;
}

.reviews-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  margin-bottom: clamp(24px, 4vw, 44px);
}

.reviews-hero h2 {
  max-width: 900px;
  font-size: clamp(3.4rem, 7vw, 7.8rem);
}

.rating-widget {
  display: grid;
  justify-items: start;
  gap: 8px;
  padding: 22px;
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--hard-shadow);
}

.rating-widget__score {
  font-family: var(--display-font);
  font-size: clamp(4rem, 8vw, 7rem);
  line-height: 0.82;
  color: var(--red);
}

.rating-widget__stars,
.review-stars {
  display: flex;
  gap: 4px;
  color: var(--yellow);
  -webkit-text-stroke: 1px var(--ink);
  text-shadow: 2px 2px 0 var(--ink);
}

.rating-widget__stars span {
  opacity: 0;
  transform: translateY(16px) rotate(-18deg) scale(0.5);
}

.rating-widget.is-counting .rating-widget__stars span {
  animation: starPop 0.52s cubic-bezier(0.2, 1.4, 0.4, 1) forwards;
  animation-delay: calc(var(--i) * 110ms);
}

.rating-widget small {
  font-weight: 900;
  text-transform: lowercase;
}

.review-stars {
  margin-bottom: 16px;
  font-size: 1.2rem;
}

@keyframes starPop {
  to {
    opacity: 1;
    transform: translateY(0) rotate(0) scale(1);
  }
}

.testimonial-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  overflow: visible;
  padding-bottom: 0;
}

.testimonial-track article {
  min-height: 260px;
  padding: 22px;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.testimonial-track span {
  display: block;
  margin-bottom: 18px;
  color: var(--red);
  font-family: var(--display-font);
  font-size: 2rem;
}

.testimonial-track strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--display-font);
  font-size: 2.25rem;
  font-weight: 400;
  line-height: 1;
}

.review-card p {
  font-size: 0.95rem;
}

.gallery {
  display: grid;
  grid-template-columns: minmax(240px, 0.55fr) minmax(0, 1.45fr);
  gap: 24px;
  align-items: center;
}

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

.gallery__grid img {
  aspect-ratio: 3 / 4;
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.gallery__grid img:nth-child(even) {
  margin-top: 48px;
}

.booking {
  align-items: start;
}

.booking-form {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.booking-form label {
  display: grid;
  gap: 6px;
  color: #222;
  font-weight: 900;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  border: 2px solid #101010;
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
  background: var(--paper);
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: 3px solid rgba(39, 152, 158, 0.24);
}

.booking-form textarea {
  resize: vertical;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 26px;
  padding: 54px clamp(18px, 4vw, 48px);
  background: var(--ink);
  color: var(--white);
}

.brand--footer {
  width: clamp(170px, 18vw, 270px);
  height: auto;
  padding: 10px;
  border-radius: var(--radius);
  background: var(--paper);
}

.brand--footer img {
  height: auto;
}

.site-footer p {
  margin: 18px 0 8px;
  color: #d9d9d9;
}

.site-footer > small {
  color: #b8b8b8;
}

.site-footer nav {
  display: grid;
  align-content: start;
  gap: 10px;
}

.reveal {
  --reveal-y: 44px;
  opacity: 0;
  transform: translateY(44px);
  transition: opacity 0.78s ease, transform 0.78s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  --reveal-y: 0px;
  opacity: 1;
  transform: translateY(0);
}

.reveal.tilt-card {
  transform: translateY(var(--reveal-y)) translateY(var(--tilt-lift, 0px)) perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
}

@media (max-width: 1020px) {
  .hero__floating-card {
    display: none;
  }

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

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    justify-self: end;
    display: grid;
    gap: 5px;
    width: 44px;
    height: 44px;
    place-content: center;
    border: 0;
    border-radius: 50%;
    background: var(--ink);
  }

  .nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--white);
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .site-header.is-open .site-nav,
  .site-header.is-open .header-cta {
    grid-column: 1 / -1;
    display: grid;
    justify-content: stretch;
  }

  .site-header.is-open .site-nav {
    gap: 14px;
    padding-top: 14px;
  }

  .site-header.is-open .header-cta {
    justify-self: stretch;
  }

  .split,
  .booking,
  .reviews-hero,
  .garden,
  .gallery,
  .deals,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .service-wall {
    grid-template-columns: 1fr;
  }

  .service-tile {
    min-height: 420px;
  }

  .rating-widget {
    max-width: 360px;
  }

  .garden__showcase {
    min-height: clamp(360px, 78vw, 560px);
  }
}

@media (max-width: 620px) {
  .hero {
    min-height: 760px;
  }

  .hero__media {
    transform: none;
    animation: none;
  }

  .hero__media img {
    object-position: 72% center;
  }

  .hero__content {
    padding-bottom: 76px;
  }

  .hero__actions,
  .btn {
    width: 100%;
  }

  .product-grid,
  .testimonial-track,
  .gallery__grid {
    grid-template-columns: 1fr;
  }

  .reviews-hero h2 {
    font-size: clamp(3.1rem, 16vw, 5.2rem);
  }

  .rating-widget {
    width: 100%;
    max-width: none;
    box-shadow: 5px 5px 0 var(--ink);
  }

  .garden__showcase {
    min-height: 520px;
  }

  .garden__badge {
    bottom: 150px;
  }

  .garden__tags span {
    min-height: 38px;
    padding: 8px 12px;
    font-size: 1.08rem;
  }

  .product-card--wide {
    grid-column: auto;
  }

  .gallery__grid img:nth-child(even) {
    margin-top: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
