:root {
  --ink: #171a18;
  --ink-soft: #5a635e;
  --paper: #f3f5f2;
  --paper-2: #e7ebe6;
  --forest: #1f4f45;
  --forest-deep: #163832;
  --marigold: #d4a017;
  --marigold-hot: #e6b122;
  --line: rgba(23, 26, 24, 0.14);
  --radius: 0.65rem;
  --font-display: "Syne", "Trebuchet MS", sans-serif;
  --font-body: "Figtree", "Segoe UI", sans-serif;
  --pad: 1.25rem;
  --sticky-h: 4.35rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --max: 40rem;
  --max-wide: 58rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    linear-gradient(180deg, #eef2ee 0%, var(--paper) 28%, #e4e9e3 100%);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  padding-bottom: calc(var(--sticky-h) + env(safe-area-inset-bottom));
  overflow-x: clip;
  max-width: 100%;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: 0.5rem 1rem;
  z-index: 100;
}

.skip-link:focus {
  left: 0.5rem;
  top: 0.5rem;
}

.wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  max-width: 100%;
  min-width: 0;
}

.wrap-wide {
  width: min(100% - 2rem, var(--max-wide));
  margin-inline: auto;
  max-width: 100%;
  min-width: 0;
}

/* Top bar */
.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(243, 245, 242, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0;
  width: min(100% - 2rem, var(--max-wide));
  margin-inline: auto;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}

.brand-lockup img {
  width: 2.6rem;
  height: 2.6rem;
  object-fit: cover;
  border-radius: 0.45rem;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.brand-sub {
  display: block;
  font-size: 0.68rem;
  color: var(--ink-soft);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: lowercase;
}

.wa-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius);
  background: #1f9d55;
  color: #fff;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 700;
}

/* Hero — full-bleed image + brand block (no overlay chips) */
.hero {
  padding: 0 0 1.75rem;
  max-width: 100%;
  overflow: hidden;
}

.hero-media {
  width: 100%;
  max-width: 100%;
  max-height: min(58vh, 28rem);
  overflow: hidden;
  background: #d7ddd6;
  animation: media-in 1s var(--ease) both;
}

.hero-media img {
  width: 100%;
  max-width: 100%;
  height: min(58vh, 28rem);
  object-fit: cover;
  object-position: center 35%;
}

.hero-copy {
  padding: 1.35rem 0 0;
  animation: fade-up 0.85s var(--ease) 0.12s both;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 11vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  margin: 0 0 0.45rem;
  line-height: 0.95;
  color: var(--forest-deep);
}

.hero-lead {
  margin: 0 0 0.55rem;
  font-size: clamp(1.05rem, 3.8vw, 1.25rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.hero-support {
  margin: 0 0 1.2rem;
  font-size: 0.98rem;
  color: var(--ink-soft);
  max-width: 32ch;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.btn {
  appearance: none;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 3.05rem;
  padding: 0.75rem 1.2rem;
  border-radius: var(--radius);
  font-family: inherit;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.2s var(--ease), background 0.2s ease, color 0.2s ease;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--marigold);
  color: var(--ink);
}

.btn-primary:hover {
  background: var(--marigold-hot);
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
}

.btn-whatsapp:hover {
  background: #1ebe57;
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: var(--forest);
  border: 1.5px solid rgba(31, 79, 69, 0.35);
}

.btn-ghost:hover {
  background: rgba(31, 79, 69, 0.06);
}

.btn-block {
  width: 100%;
}

/* Sections */
.section {
  padding: 2.4rem 0;
}

.section + .section {
  border-top: 1px solid var(--line);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 6vw, 2.15rem);
  letter-spacing: -0.035em;
  margin: 0 0 0.4rem;
  line-height: 1.08;
  color: var(--forest-deep);
}

.section-lead {
  margin: 0 0 1.35rem;
  color: var(--ink-soft);
  max-width: 34ch;
  font-size: 0.98rem;
}

.trust-row {
  display: grid;
  gap: 0;
  margin: 0;
  border-top: 1px solid var(--line);
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.35;
}

.trust-dot {
  width: 0.45rem;
  height: 0.45rem;
  margin-top: 0.45rem;
  border-radius: 50%;
  background: var(--marigold);
  flex-shrink: 0;
}

/* Gallery — imagery first, no card chrome */
.gallery {
  display: grid;
  gap: 1.25rem;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.gallery figure {
  margin: 0;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}

.gallery img {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 0.35rem;
}

.gallery figcaption {
  padding: 0.65rem 0 0;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.gallery-wide img {
  aspect-ratio: 16 / 10;
}

/* Examples slider — mobile-first snap carousel */
.examples {
  margin: 0.25rem 0 0.5rem;
  grid-column: 1 / -1;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}

.examples-kicker {
  margin: 0 0 0.25rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--forest-deep);
}

.examples-lead {
  margin: 0 0 0.85rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.examples-slider {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  overscroll-behavior-x: contain;
  touch-action: pan-x pan-y;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  scrollbar-width: none;
  outline: none;
}

.examples-slider::-webkit-scrollbar {
  display: none;
}

.examples-track {
  display: flex;
  gap: 0.75rem;
  padding-bottom: 0.15rem;
}

.examples-slide {
  margin: 0;
  box-sizing: border-box;
  flex: 0 0 82%;
  width: 82%;
  max-width: 20rem;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  min-width: 0;
  position: relative;
}

.examples-slide img {
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 0.45rem;
  background: var(--paper-2);
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

.examples-badge {
  position: absolute;
  left: 0.55rem;
  bottom: 0.55rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  max-width: calc(100% - 1.1rem);
  padding: 0.35rem 0.55rem;
  border-radius: 0.4rem;
  background: rgba(255, 255, 255, 0.94);
  color: var(--forest-deep);
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.01em;
  box-shadow: 0 4px 14px rgba(23, 26, 24, 0.12);
}

.examples-badge::before {
  content: "";
  width: 0.7rem;
  height: 0.7rem;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--forest);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath fill='%23fff' d='M4.7 8.6 2.2 6.1l.9-.9 1.6 1.6L8.9 2.6l.9.9z'/%3E%3C/svg%3E");
  background-size: 0.55rem;
  background-repeat: no-repeat;
  background-position: center;
}

.examples-dots {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.75rem;
}

.examples-dots button {
  width: 0.45rem;
  height: 0.45rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(23, 26, 24, 0.22);
  cursor: pointer;
}

.examples-dots button.is-active {
  background: var(--forest);
  transform: scale(1.15);
}

.examples-hint {
  margin: 0.55rem 0 0;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
}

@media (min-width: 720px) {
  .examples-slider {
    margin-inline: 0;
    padding-inline: 0;
  }

  .examples-slide {
    flex: 0 0 14.5rem;
    width: 14.5rem;
    max-width: 14.5rem;
  }
}

/* Reviews */
.reviews-stat {
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
  margin: -0.35rem 0 1.35rem;
}

.reviews-stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 7vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--forest-deep);
  font-variant-numeric: lining-nums tabular-nums;
}

.reviews-stat-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.reviews {
  display: grid;
  gap: 1.35rem;
}

.review {
  padding: 0 0 1.25rem;
  border-bottom: 1px solid var(--line);
}

.review:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.review-top {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.7rem;
}

.review-photo {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.45rem;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--paper-2);
}

.review-name {
  margin: 0;
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: -0.01em;
}

.review-city {
  margin: 0.1rem 0 0;
  font-size: 0.8rem;
  color: var(--ink-soft);
}

.review-stars {
  margin: 0.2rem 0 0;
  color: var(--marigold);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  line-height: 1;
}

.review-text {
  margin: 0;
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 38ch;
}

/* Packages — interactive only */
.package-grid {
  display: grid;
  gap: 0.75rem;
}

.package {
  position: relative;
  text-align: left;
  width: 100%;
  padding: 1.15rem 1.1rem;
  border-radius: var(--radius);
  border: 1.5px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
  font: inherit;
  color: inherit;
}

.package.is-selected {
  border-color: var(--forest);
  background: #fff;
}

.package-badge {
  display: inline-block;
  margin-bottom: 0.5rem;
  padding: 0.2rem 0.5rem;
  border-radius: 0.3rem;
  background: var(--forest);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.package-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
}

.package-label {
  font-weight: 700;
  font-size: 1.05rem;
}

.package-price {
  font-family: var(--font-body);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  font-variant-numeric: lining-nums tabular-nums;
  font-feature-settings: "lnum" 1, "tnum" 1;
}

.package-compare {
  display: block;
  font-size: 0.78rem;
  color: var(--ink-soft);
  text-decoration: line-through;
  font-weight: 500;
  text-align: right;
  font-variant-numeric: lining-nums tabular-nums;
  font-feature-settings: "lnum" 1, "tnum" 1;
}

.package-perks {
  margin: 0.8rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.3rem;
}

.package-perks li {
  font-size: 0.88rem;
  color: var(--ink-soft);
  padding-left: 0.95rem;
  position: relative;
}

.package-perks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--forest);
}

/* Contents */
.contents {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.contents li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
  font-weight: 600;
  font-size: 0.95rem;
}

.contents li span {
  color: var(--forest);
  font-family: var(--font-display);
  font-weight: 700;
  min-width: 1.4rem;
}

/* Steps */
.steps {
  display: grid;
  gap: 1.15rem;
  counter-reset: step;
}

.step {
  counter-increment: step;
  padding: 0 0 0 3rem;
  position: relative;
}

.step::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 0.35rem;
  background: var(--forest);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  display: grid;
  place-items: center;
}

.step h3 {
  margin: 0.15rem 0 0.3rem;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.step p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

/* FAQ */
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 0.95rem 0;
}

.faq details:first-of-type {
  border-top: 1px solid var(--line);
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
  font-size: 1rem;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq details[open] summary {
  color: var(--forest-deep);
  margin-bottom: 0.4rem;
}

.faq p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.93rem;
}

/* Order form */
.order-panel {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.form-grid {
  display: grid;
  gap: 0.9rem;
}

label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

input,
textarea,
select {
  width: 100%;
  min-height: 3.05rem;
  padding: 0.7rem 0.85rem;
  border-radius: var(--radius);
  border: 1.5px solid var(--line);
  background: #fff;
  font: inherit;
  color: var(--ink);
}

textarea {
  min-height: 5.5rem;
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  outline: 2px solid rgba(31, 79, 69, 0.28);
  border-color: var(--forest);
}

.form-error {
  margin: 0 0 0.85rem;
  padding: 0.75rem 0.9rem;
  border-radius: var(--radius);
  background: #fde8e4;
  color: #7a2e22;
  font-size: 0.9rem;
  font-weight: 600;
}

.form-note {
  margin: 0.75rem 0 0;
  font-size: 0.8rem;
  color: var(--ink-soft);
}

.pay-methods {
  margin: 0;
  padding: 0.85rem 0 0;
  border: 0;
  display: grid;
  gap: 0.55rem;
}

.pay-methods legend {
  padding: 0;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.pay-option {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.85rem 0.9rem;
  border-radius: var(--radius);
  border: 1.5px solid var(--line);
  background: #fff;
  cursor: pointer;
}

.pay-option input {
  width: auto;
  min-height: auto;
  margin-top: 0.2rem;
  accent-color: var(--forest);
}

.pay-option span {
  display: grid;
  gap: 0.15rem;
}

.pay-option strong {
  font-size: 0.95rem;
}

.pay-option small {
  color: var(--ink-soft);
  font-size: 0.8rem;
}

.pay-badge {
  display: inline-block;
  margin: 0;
  padding: 0.25rem 0.5rem;
  border-radius: 0.3rem;
  font-size: 0.75rem;
  font-weight: 700;
  width: fit-content;
}

.pay-paid {
  background: #e4f7ec;
  color: #067647;
}

.pay-pending {
  background: #fff4d6;
  color: #8a6a00;
}

.pay-cod {
  background: #e7ebe6;
  color: var(--forest);
}

.pay-fail {
  background: #fde8e4;
  color: #b42318;
}

/* Sticky buy bar */
.sticky-buy {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  padding: 0.7rem 1rem calc(0.7rem + env(safe-area-inset-bottom));
  background: var(--forest-deep);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  transform: translateY(110%);
  transition: transform 0.35s var(--ease);
}

.sticky-buy.is-visible {
  transform: translateY(0);
}

.sticky-buy .price {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  font-variant-numeric: lining-nums tabular-nums;
  font-feature-settings: "lnum" 1, "tnum" 1;
}

.sticky-buy .meta {
  font-size: 0.72rem;
  opacity: 0.8;
}

.sticky-buy .btn-primary {
  margin-left: auto;
  flex-shrink: 0;
}

/* Thanks page */
.thanks {
  min-height: 70vh;
  display: grid;
  place-items: center;
  padding: 2rem 0;
  text-align: center;
}

.thanks-card {
  width: min(100% - 2rem, 26rem);
  padding: 2rem 1.35rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  animation: fade-up 0.7s var(--ease) both;
}

.thanks-card h1 {
  font-family: var(--font-display);
  margin: 0 0 0.5rem;
  letter-spacing: -0.03em;
}

.site-footer {
  padding: 2.75rem 0 1.75rem;
  border-top: 1px solid var(--line);
  margin-top: 0.5rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
  margin: 0 0 0.25rem;
  color: var(--forest-deep);
}

.footer-note {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.85rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.1rem;
  margin-top: 0.95rem;
}

.footer-nav a {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--forest);
  text-decoration: none;
}

/* Legal pages */
.legal-page {
  padding: 1.25rem 0 2.5rem;
}

.legal-wrap {
  width: min(100% - 2rem, var(--max));
}

.legal-back {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.legal-back a {
  color: var(--forest);
  text-decoration: none;
}

.legal-meta {
  margin: 0 0 1.25rem;
  font-size: 0.8rem;
  color: var(--ink-soft);
}

.legal-body {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.legal-body h2 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 1.5rem 0 0.45rem;
  letter-spacing: -0.02em;
  color: var(--forest-deep);
}

.legal-body h2:first-child {
  margin-top: 0;
}

.legal-body p,
.legal-body li {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.6;
}

.legal-body ul,
.legal-body ol {
  padding-left: 1.2rem;
  margin: 0.4rem 0 0.75rem;
}

.legal-body a {
  color: var(--forest);
  font-weight: 600;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.legal-links a {
  display: inline-flex;
  padding: 0.55rem 0.85rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--forest);
  text-decoration: none;
}

.legal-check {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.85rem 0;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.legal-check input {
  width: auto;
  min-height: auto;
  margin-top: 0.2rem;
  accent-color: var(--forest);
}

.legal-check a {
  color: var(--forest);
  font-weight: 700;
}

@keyframes media-in {
  from {
    opacity: 0;
    transform: scale(1.04);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (min-width: 720px) {
  .hero {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: stretch;
    min-height: min(86vh, 38rem);
    padding: 0;
  }

  .hero-media {
    width: auto;
    margin: 0;
    max-height: none;
    height: 100%;
    min-height: min(86vh, 38rem);
  }

  .hero-media img {
    height: 100%;
    min-height: min(86vh, 38rem);
  }

  .hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2.5rem 2rem 2.5rem 1.75rem;
    background:
      linear-gradient(160deg, #eef2ee 0%, var(--paper) 55%, #e3e9e2 100%);
  }

  .gallery {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .gallery-wide {
    grid-column: 1 / -1;
  }

  .package-grid {
    grid-template-columns: 1fr 1fr;
  }

  body {
    padding-bottom: 2rem;
  }

  .sticky-buy {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
