/* =========================================================================
   AVIAN VITAL — production styles (mobile-first, editorial agro)
   Designer spec: terracotta + ochre + cream + moss, Fraunces + Manrope,
   hard borders + offset shadows + grain + serif numerals + stamps.
   ========================================================================= */

:root {
  --bg: #f5efe2;
  --bg-alt: #ebe2ce;
  --surface: #fffbf2;
  --surface-dark: #2b2a26;

  --primary: #b8442b;
  --primary-rgb: 184, 68, 43;
  --primary-dark: #8e2f1c;
  --secondary: #d4a24c;
  --secondary-rgb: 212, 162, 76;

  --text-primary: #2b2a26;
  --text-body: #4a4843;
  --text-muted: #8a8377;

  --accent: #4a6b3a;
  --success: #5c7f4a;
  --danger: #a23b2a;
  --border: #2b2a26;

  --radius: 4px;
  --maxw: 1200px;

  --easing: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
  box-sizing: border-box;
}
html {
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text-body);
  font-family:
    "Manrope",
    system-ui,
    -apple-system,
    sans-serif;
  font-size: 16px;
  line-height: 1.6;
  padding-bottom: calc(72px + env(safe-area-inset-bottom));
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: hidden;
}
@media (min-width: 1024px) {
  body {
    padding-bottom: 0;
  }
}

/* Grain overlay (signature) */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: 0.045;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 1;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: var(--primary);
  text-decoration: none;
}
a:hover {
  color: var(--primary-dark);
}

h1,
h2,
h3,
h4 {
  font-family: "Fraunces", Georgia, serif;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
  line-height: 1.15;
  font-weight: 600;
}
h1 {
  font-size: clamp(1.85rem, 7.5vw, 3.75rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}
h2 {
  font-size: clamp(1.5rem, 6vw, 2.5rem);
}
h3 {
  font-size: clamp(1.125rem, 4vw, 1.5rem);
}

p {
  margin: 0 0 1em;
}
ul,
ol {
  padding: 0;
  margin: 0;
  list-style: none;
}

mark {
  background: rgba(var(--secondary-rgb), 0.45);
  color: var(--text-primary);
  padding: 0 4px;
  font-weight: 600;
  border-radius: 2px;
}

/* =========================================================================
   Container
   ========================================================================= */
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}
@media (min-width: 768px) {
  .container {
    padding: 0 40px;
  }
}

/* =========================================================================
   Section base
   ========================================================================= */
.section {
  position: relative;
  padding: 60px 0;
  background: var(--bg);
  overflow: hidden;
  z-index: 2;
}
@media (min-width: 768px) {
  .section {
    padding: 90px 0;
  }
}
@media (min-width: 1024px) {
  .section {
    padding: 120px 0;
  }
}

.section--alt {
  background: var(--bg-alt);
}
.section--dark {
  background: var(--surface-dark);
  color: rgba(245, 239, 226, 0.88);
}
.section--dark h1,
.section--dark h2,
.section--dark h3 {
  color: #f5efe2;
}

.section-head {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}
.section-head--light {
  color: rgba(245, 239, 226, 0.85);
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--primary);
  margin-bottom: 16px;
  padding: 6px 14px;
  border: 1.5px solid currentColor;
  border-radius: 2px;
}
.eyebrow--gold {
  color: var(--secondary);
}

.section-title {
  margin-bottom: 16px;
}
.section-sub {
  font-size: 17px;
  color: var(--text-muted);
  margin: 0;
}
.section--dark .section-sub {
  color: rgba(245, 239, 226, 0.7);
}

.hl {
  background: linear-gradient(
    180deg,
    transparent 65%,
    rgba(var(--secondary-rgb), 0.55) 65%
  );
  padding: 0 4px;
}
.hl-gold {
  color: var(--secondary);
  font-style: italic;
}

/* =========================================================================
   Block numerals (signature serif decoration)
   ========================================================================= */
.block-numeral {
  position: absolute;
  top: 20px;
  left: 16px;
  font-family: "Fraunces", serif;
  font-weight: 900;
  font-style: italic;
  font-size: clamp(64px, 14vw, 160px);
  color: var(--primary);
  opacity: 0.08;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.05em;
  line-height: 1;
  z-index: 1;
}
.block-numeral--light {
  color: var(--secondary);
  opacity: 0.12;
}

/* =========================================================================
   Reveal animations (IntersectionObserver) — translateY only, no horizontal
   ========================================================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s var(--easing),
    transform 0.7s var(--easing);
  transition-delay: var(--d, 0s);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal--zoom {
  opacity: 0;
  transform: scale(0.96);
  transition:
    opacity 0.8s var(--easing),
    transform 0.8s var(--easing);
}
.reveal--zoom.is-visible {
  opacity: 1;
  transform: scale(1);
}
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal--zoom {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* =========================================================================
   Buttons
   ========================================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 24px;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
  border-radius: var(--radius);
  border: 2px solid var(--border);
  cursor: pointer;
  transition:
    transform 0.22s var(--easing),
    box-shadow 0.22s var(--easing),
    background 0.2s ease,
    color 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
}
.btn-sm {
  min-height: 40px;
  padding: 0 16px;
  font-size: 14px;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 4px 4px 0 0 var(--border);
}
.btn-primary:hover {
  background: var(--primary-dark);
  color: #fff;
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 0 var(--border);
}
.btn-primary:active {
  transform: translate(2px, 2px);
  box-shadow: 0 0 0 0 var(--border);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: #fff;
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 0 var(--border);
}

.btn-cta {
  width: 100%;
  min-height: 60px;
  font-size: 16px;
  font-weight: 700;
  margin: 24px 0 18px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
@media (min-width: 768px) {
  .btn-cta {
    font-size: 18px;
  }
}

/* CTA pulsing halo (signature) */
.has-halo {
  position: relative;
}
.has-halo::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: var(--radius);
  border: 2px solid var(--secondary);
  pointer-events: none;
  opacity: 0;
  animation: ctaHalo 2.6s ease-in-out infinite;
}
@keyframes ctaHalo {
  0% {
    opacity: 0.7;
    transform: scale(0.97);
  }
  70% {
    opacity: 0;
    transform: scale(1.08);
  }
  100% {
    opacity: 0;
    transform: scale(1.08);
  }
}
@media (prefers-reduced-motion: reduce) {
  .has-halo::after {
    animation: none;
    opacity: 0;
  }
}

.btn-bundle {
  width: 100%;
  margin-top: 18px;
}
.btn-submit {
  width: 100%;
  min-height: 64px;
  margin-top: 24px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 17px;
}

/* =========================================================================
   HEADER
   ========================================================================= */
.site-header {
  background: var(--bg);
  border-bottom: 2px solid var(--border);
  position: relative;
  z-index: 10;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-primary);
}
.brand-mark {
  width: 40px;
  height: 40px;
  border: 2px solid var(--border);
  background: var(--primary);
  color: #fff;
  font-family: "Fraunces", serif;
  font-weight: 900;
  font-style: italic;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  box-shadow: 3px 3px 0 0 var(--border);
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-name {
  font-family: "Fraunces", serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--text-primary);
  letter-spacing: 0.02em;
}
.brand-tag {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  margin-top: 4px;
}
.brand--light .brand-name {
  color: #f5efe2;
}
.brand--light .brand-tag {
  color: rgba(245, 239, 226, 0.6);
}

.header-meta {
  display: flex;
  align-items: center;
  gap: 14px;
}
.header-tag {
  display: none;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}
@media (min-width: 768px) {
  .header-tag {
    display: inline;
  }
}

/* =========================================================================
   HERO — split layout (mobile: heading→image→details, desktop: 2-col grid)
   ========================================================================= */
.hero {
  position: relative;
  background: var(--bg);
  padding: 28px 0 56px;
  overflow: hidden;
  z-index: 2;
}
@media (min-width: 768px) {
  .hero {
    padding: 56px 0 80px;
  }
}
@media (min-width: 1024px) {
  .hero {
    padding: 80px 0 110px;
  }
}

.hero-inner {
  display: block;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.hero-heading {
  display: flex;
  flex-direction: column;
}
.hero-details {
  display: flex;
  flex-direction: column;
}

.hero-title {
  font-size: clamp(1.85rem, 7.5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 12px 0 16px;
}
.hero-sub {
  font-size: 16px;
  color: var(--text-body);
  margin-bottom: 4px;
  max-width: 560px;
  line-height: 1.55;
}
@media (min-width: 768px) {
  .hero-sub {
    font-size: 18px;
    line-height: 1.5;
  }
}

.hero-image {
  position: relative;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 6px 6px 0 0 rgba(var(--primary-rgb), 0.22);
  overflow: hidden;
  background: var(--surface);
}
.hero-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

@media (min-width: 1024px) {
  .hero-content {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    grid-template-rows: auto 1fr;
    gap: 28px 56px;
    align-items: start;
  }
  .hero-heading {
    grid-column: 1;
    grid-row: 1;
  }
  .hero-image {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
    box-shadow: 10px 10px 0 0 rgba(var(--primary-rgb), 0.28);
  }
  .hero-details {
    grid-column: 1;
    grid-row: 2;
  }
  .hero-image img {
    aspect-ratio: 1/1;
  }
}

/* Bullets */
.bullets {
  margin: 14px 0 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  color: var(--text-primary);
  line-height: 1.45;
  font-weight: 500;
}
@media (min-width: 768px) {
  .bullets li {
    font-size: 17px;
  }
}

.check {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  background: var(--accent);
  border-radius: 50%;
  border: 2px solid var(--border);
  position: relative;
  margin-top: 2px;
}
.check::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 9px;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* Timer */
.timer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: var(--secondary);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 4px 4px 0 0 var(--border);
  padding: 14px 18px;
  margin: 4px 0 18px;
  align-self: stretch;
}
.timer-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-primary);
}
.timer-clock {
  display: flex;
  align-items: flex-end;
  gap: 8px;
}
.timer-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--text-primary);
  color: #f5efe2;
  border-radius: 2px;
  padding: 6px 10px;
  min-width: 56px;
}
.timer-cell b {
  font-family: "Fraunces", serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1;
}
.timer-cell span {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(245, 239, 226, 0.65);
  margin-top: 2px;
}
.timer-colon {
  font-family: "Fraunces", serif;
  font-weight: 700;
  font-size: 28px;
  color: var(--text-primary);
  line-height: 1;
  padding-bottom: 18px;
  animation: timerColon 1s ease-in-out infinite;
}
@keyframes timerColon {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
@media (prefers-reduced-motion: reduce) {
  .timer-colon {
    animation: none;
  }
}

/* Trust + counter */
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 8px 0 14px;
  font-size: 13px;
  color: var(--text-body);
}
.trust-row li {
  position: relative;
  padding-left: 22px;
  font-weight: 600;
}
.trust-row li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 14px;
  height: 14px;
  background: var(--accent);
  border-radius: 50%;
}
.trust-row li::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 7px;
  width: 4px;
  height: 7px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.trust-row--center {
  justify-content: center;
  margin-top: 24px;
}
.trust-row--form {
  justify-content: center;
  margin-top: 18px;
}

.counter-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 10px;
  flex-wrap: wrap;
}
.counter-line b {
  color: var(--primary);
  font-family: "Fraunces", serif;
  font-size: 16px;
  font-weight: 700;
  margin: 0 4px;
  font-style: italic;
  display: inline-block;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}
.counter-line b.flip {
  opacity: 0;
  transform: translateY(-6px);
}
.counter-line .dash {
  flex: 1;
  height: 1px;
  border-top: 1px dashed var(--text-muted);
  max-width: 80px;
  min-width: 30px;
}
.counter-line--form {
  margin-top: 32px;
}

/* Stamps */
.stamp {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border: 2px solid currentColor;
  border-radius: 2px;
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: rgba(255, 251, 242, 0.92);
  color: var(--text-primary);
  transform: rotate(-3deg);
}
.stamp--corner {
  position: absolute;
  top: 14px;
  left: 14px;
  color: var(--primary);
  z-index: 2;
}
.stamp--cert {
  position: absolute;
  bottom: 14px;
  right: 14px;
  color: var(--accent);
  transform: rotate(3deg);
  font-size: 10px;
  z-index: 2;
}
.stamp--small {
  font-size: 10px;
  padding: 4px 10px;
  transform: rotate(-2deg);
}

/* =========================================================================
   PAIN BLOCK
   ========================================================================= */
.pain-grid {
  display: grid;
  grid-template-columns: minmax(min(280px, 100%), 1fr);
  gap: 20px;
}
@media (min-width: 640px) {
  .pain-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }
}
@media (min-width: 1024px) {
  .pain-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.pain-card {
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 0 0 22px;
  box-shadow: 6px 6px 0 0 rgba(var(--primary-rgb), 0.18);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.25s var(--easing),
    box-shadow 0.25s var(--easing);
}
.pain-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 0 rgba(var(--primary-rgb), 0.32);
}
.pain-photo {
  position: relative;
  margin: 0;
  border-bottom: 2px solid var(--border);
  overflow: hidden;
}
.pain-photo img {
  width: 100%;
  aspect-ratio: 5/3;
  object-fit: cover;
  filter: sepia(0.18) saturate(0.88);
  transition:
    transform 0.5s ease,
    filter 0.5s ease;
}
.pain-card:hover .pain-photo img {
  transform: scale(1.04);
  filter: sepia(0.1) saturate(0.95);
}
.x-mark {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  background: var(--danger);
  border: 2px solid var(--border);
  border-radius: 50%;
  transform: rotate(-8deg);
  z-index: 2;
}
.x-mark::before,
.x-mark::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 2px;
  background: #fff;
  transform: translate(-50%, -50%) rotate(45deg);
}
.x-mark::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.pain-card h3 {
  margin: 18px 22px 8px;
  font-size: 20px;
  font-weight: 700;
}
.pain-card p {
  margin: 0 22px;
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.55;
}

/* =========================================================================
   SOLUTION (dark block)
   ========================================================================= */
.solution-grid {
  display: grid;
  grid-template-columns: minmax(min(280px, 100%), 1fr);
  gap: 36px;
}
@media (min-width: 1024px) {
  .solution-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px;
  }
}
.solution-col {
  text-align: center;
  color: rgba(245, 239, 226, 0.85);
}
.solution-photo {
  border: 2px solid var(--secondary);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 0 auto 18px;
  max-width: 320px;
  background: var(--surface-dark);
  box-shadow: 6px 6px 0 0 rgba(var(--secondary-rgb), 0.25);
  transition:
    transform 0.3s var(--easing),
    box-shadow 0.3s var(--easing);
}
.solution-col:hover .solution-photo {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 0 rgba(var(--secondary-rgb), 0.4);
}
.solution-photo img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}
.stamp-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--secondary);
  margin-bottom: 10px;
}
.solution-col h3 {
  color: #f5efe2;
  font-size: 24px;
  margin-bottom: 10px;
}
.solution-col p {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(245, 239, 226, 0.78);
  max-width: 320px;
  margin: 0 auto;
}

/* =========================================================================
   BENEFITS
   ========================================================================= */
.benefits-grid {
  display: grid;
  grid-template-columns: minmax(min(280px, 100%), 1fr);
  gap: 24px;
}
@media (min-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
  }
}

.benefit-card {
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 4px 4px 0 0 rgba(var(--primary-rgb), 0.18);
  padding: 0 0 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.25s var(--easing),
    box-shadow 0.25s var(--easing);
}
.benefit-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0 0 rgba(var(--primary-rgb), 0.32);
}
.benefit-photo {
  position: relative;
  border-bottom: 2px solid var(--border);
  overflow: hidden;
}
.benefit-photo img {
  width: 100%;
  aspect-ratio: 5/3;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.benefit-card:hover .benefit-photo img {
  transform: scale(1.05);
}
.benefit-stamp {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 44px;
  height: 44px;
  background: var(--secondary);
  color: var(--text-primary);
  border: 2px solid var(--border);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Fraunces", serif;
  font-weight: 900;
  font-style: italic;
  font-size: 20px;
  box-shadow: 2px 2px 0 0 var(--border);
  z-index: 2;
}
.benefit-card h3 {
  margin: 18px 22px 8px;
  font-size: 20px;
}
.benefit-card p {
  margin: 0 22px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-body);
}

/* =========================================================================
   BEFORE/AFTER
   ========================================================================= */
.ba-grid {
  display: grid;
  grid-template-columns: minmax(min(280px, 100%), 1fr);
  gap: 20px;
  max-width: 800px;
  margin: 0 auto 36px;
}
@media (min-width: 640px) {
  .ba-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}
.ba-side {
  position: relative;
  margin: 0;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 6px 6px 0 0 rgba(var(--primary-rgb), 0.2);
  overflow: hidden;
  background: var(--surface);
}
.ba-side img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}
.ba-before img {
  filter: sepia(0.4) saturate(0.85);
}
.ba-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding: 6px 12px;
  border: 2px solid var(--border);
  border-radius: 2px;
  z-index: 2;
}
.ba-tag--before {
  background: var(--danger);
  color: #fff;
}
.ba-tag--after {
  background: var(--accent);
  color: #fff;
}

.ba-table {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  border-collapse: collapse;
  font-family: "Manrope", sans-serif;
}
.ba-table th,
.ba-table td {
  padding: 16px 12px;
  text-align: left;
  border-bottom: 1px dashed var(--border);
}
.ba-table th {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  font-weight: 700;
}
.ba-table td {
  font-family: "Fraunces", serif;
  font-weight: 700;
  font-size: 22px;
}
.ba-table td:first-child {
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-body);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.ba-table td.bad {
  color: var(--text-muted);
  text-decoration: line-through;
}
.ba-table td.good {
  color: var(--primary);
}

/* =========================================================================
   COMPARE TABLE
   ========================================================================= */
.compare-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0 -20px;
  padding: 0 20px 4px;
}
.compare-table {
  min-width: 720px;
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 6px 6px 0 0 rgba(var(--primary-rgb), 0.2);
  font-size: 14px;
}
.compare-table thead th {
  background: var(--text-primary);
  color: #f5efe2;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 18px 14px;
  text-align: left;
  border-right: 1px solid rgba(245, 239, 226, 0.15);
  vertical-align: bottom;
}
.compare-table thead th:last-child {
  border-right: 0;
}
.compare-table tbody td {
  padding: 14px;
  border-top: 1px solid var(--border);
  border-right: 1px solid rgba(43, 42, 38, 0.12);
  vertical-align: middle;
}
.compare-table tbody td:first-child {
  font-weight: 600;
  color: var(--text-primary);
}
.compare-table tbody td:last-child {
  border-right: 0;
}
.compare-table .col-best {
  background: var(--bg);
  border-left: 4px solid var(--primary);
  border-right: 4px solid var(--primary);
  font-weight: 700;
  color: var(--text-primary);
  position: relative;
}
.compare-table thead th.col-best {
  background: var(--primary);
  color: #fff;
}
.col-best-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  padding: 3px 8px;
  background: var(--secondary);
  color: var(--text-primary);
  border: 1.5px solid var(--border);
  border-radius: 2px;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.compare-table .price-cell {
  font-family: "Fraunces", serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--primary);
}

.ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  margin-right: 8px;
  border: 2px solid var(--border);
  vertical-align: middle;
  position: relative;
  flex-shrink: 0;
}
.ic-yes {
  background: var(--accent);
}
.ic-yes::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 6px;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.ic-no {
  background: var(--danger);
}
.ic-no::before,
.ic-no::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 9px;
  width: 10px;
  height: 2px;
  background: #fff;
  transform: rotate(45deg);
}
.ic-no::after {
  transform: rotate(-45deg);
}
.ic-warn {
  background: var(--secondary);
}
.ic-warn::before {
  content: "!";
  color: var(--text-primary);
  font-family: "Fraunces", serif;
  font-weight: 900;
  font-size: 14px;
  line-height: 1;
}

.scroll-hint {
  text-align: center;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  margin-top: 12px;
  font-weight: 600;
}
@media (min-width: 1024px) {
  .scroll-hint {
    display: none;
  }
}

/* =========================================================================
   STEPS (how to use)
   ========================================================================= */
.steps {
  display: grid;
  grid-template-columns: minmax(min(280px, 100%), 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }
}

.step {
  text-align: center;
  position: relative;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-family: "Fraunces", serif;
  font-weight: 900;
  font-style: italic;
  font-size: 32px;
  border: 2px solid var(--border);
  box-shadow: 4px 4px 0 0 var(--border);
  margin-bottom: 18px;
}
.step-photo {
  border: 2px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 0 0 16px;
  box-shadow: 4px 4px 0 0 rgba(var(--primary-rgb), 0.18);
  transition:
    transform 0.25s var(--easing),
    box-shadow 0.25s var(--easing);
}
.step:hover .step-photo {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 0 rgba(var(--primary-rgb), 0.3);
}
.step-photo img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.step h3 {
  font-size: 20px;
  margin-bottom: 8px;
}
.step p {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.6;
}

/* =========================================================================
   REVIEWS
   ========================================================================= */
.reviews-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  padding: 16px 20px 28px;
  margin: 0 -20px;
  scrollbar-width: thin;
}
.review-card {
  flex: 0 0 86%;
  max-width: 380px;
  scroll-snap-align: start;
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 6px 6px 0 0 rgba(var(--secondary-rgb), 0.5);
  padding: 24px;
  position: relative;
}
@media (min-width: 768px) {
  .review-card {
    flex: 0 0 360px;
  }
}
@media (min-width: 1024px) {
  .reviews-slider {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: visible;
    margin: 0;
    padding: 16px 0;
  }
  .review-card {
    flex: none;
    max-width: none;
  }
  .reviews-slider .review-card:nth-child(n + 4) {
    display: none;
  }
}
.quote-mark {
  position: absolute;
  top: -8px;
  right: 20px;
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 900;
  font-size: 80px;
  line-height: 1;
  color: var(--primary);
  opacity: 0.18;
  pointer-events: none;
}
.review-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.review-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 2px 2px 0 0 var(--border);
}
.review-head strong {
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: 17px;
  color: var(--text-primary);
  display: block;
  line-height: 1.2;
}
.review-meta {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 2px;
}
.review-stars {
  display: block;
  color: var(--secondary);
  font-size: 15px;
  letter-spacing: 0.05em;
  margin-top: 4px;
}
.review-card p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-body);
  font-style: italic;
  margin: 0;
}

/* =========================================================================
   BUNDLES
   ========================================================================= */
.bundles {
  display: grid;
  grid-template-columns: minmax(min(280px, 100%), 1fr);
  gap: 28px;
  max-width: 1080px;
  margin: 24px auto 0;
}
@media (min-width: 768px) {
  .bundles {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
  }
}

.bundle {
  position: relative;
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px 26px;
  box-shadow: 4px 4px 0 0 var(--border);
  display: flex;
  flex-direction: column;
  transition:
    transform 0.25s var(--easing),
    box-shadow 0.25s var(--easing);
}
.bundle:hover {
  transform: translate(-3px, -3px);
  box-shadow: 7px 7px 0 0 rgba(var(--primary-rgb), 0.3);
}
.bundle--hit {
  background: var(--surface);
  border-width: 3px;
  border-color: var(--primary);
  box-shadow: 8px 8px 0 0 rgba(var(--primary-rgb), 0.32);
}
@media (min-width: 768px) {
  .bundle--hit {
    transform: scale(1.05);
    z-index: 2;
  }
  .bundle--hit:hover {
    transform: scale(1.05) translate(-3px, -3px);
  }
}
.bundle--best {
  border-color: var(--accent);
}

.bundle-stamp {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%) rotate(-8deg);
  padding: 7px 16px;
  background: var(--primary);
  color: #fff;
  border: 2px solid var(--border);
  border-radius: 2px;
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
  z-index: 3;
  box-shadow: 2px 2px 0 0 var(--border);
  animation: stampWobble 3.4s ease-in-out infinite;
}
@keyframes stampWobble {
  0%,
  100% {
    transform: translateX(-50%) rotate(-8deg);
  }
  50% {
    transform: translateX(-50%) rotate(-4deg);
  }
}
.bundle-stamp--best {
  background: var(--secondary);
  color: var(--text-primary);
  transform: translateX(-50%) rotate(5deg);
  animation-name: stampWobbleAlt;
}
@keyframes stampWobbleAlt {
  0%,
  100% {
    transform: translateX(-50%) rotate(5deg);
  }
  50% {
    transform: translateX(-50%) rotate(2deg);
  }
}
@media (prefers-reduced-motion: reduce) {
  .bundle-stamp,
  .bundle-stamp--best {
    animation: none;
  }
}

.bundle-photo {
  border: 2px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 8px 0 18px;
  background: var(--surface);
}
.bundle-photo img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.bundle:hover .bundle-photo img {
  transform: scale(1.04);
}
.bundle h3 {
  text-align: center;
  font-size: 22px;
  margin-bottom: 4px;
}
.bundle-desc {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.bundle-price {
  text-align: center;
  margin-bottom: 8px;
  flex-grow: 1;
}
.price-old {
  display: block;
  font-size: 16px;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-bottom: 4px;
}
.price-new {
  display: block;
  font-family: "Fraunces", serif;
  font-size: 44px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}
.price-new small {
  font-size: 18px;
  font-weight: 600;
}
.price-per {
  display: block;
  font-size: 13px;
  color: var(--accent);
  font-weight: 700;
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.bundle.is-active {
  border-color: var(--primary);
  border-width: 3px;
  box-shadow: 8px 8px 0 0 rgba(var(--primary-rgb), 0.4);
}

/* =========================================================================
   FORM
   ========================================================================= */
.section--form {
  background: var(--bg-alt);
}
.order-form {
  max-width: 560px;
  margin: 0 auto;
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 8px 8px 0 0 rgba(var(--primary-rgb), 0.4);
  padding: 28px 22px;
}
@media (min-width: 768px) {
  .order-form {
    padding: 40px;
  }
}

.field {
  display: block;
  margin-bottom: 22px;
  position: relative;
}
.field-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.field input {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 2px solid var(--border);
  padding: 12px 0;
  font-family: "Manrope", sans-serif;
  font-size: 17px;
  color: var(--text-primary);
  outline: none;
  border-radius: 0;
  min-height: 44px;
  transition: border-color 0.25s ease;
}
.field input:focus {
  border-bottom-color: var(--primary);
}
.field input::placeholder {
  color: var(--text-muted);
}

.qty-select {
  width: 100%;
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 14px;
  font-family: "Manrope", sans-serif;
  font-size: 17px;
  color: var(--text-primary);
  outline: none;
  min-height: 52px;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%232B2A26' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 4l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  transition: all 0.25s ease;
}
.qty-select:focus {
  border-color: var(--primary);
  box-shadow: 4px 4px 0 0 rgba(var(--primary-rgb), 0.2);
}

.form-policy {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin: 18px 0 0;
  line-height: 1.5;
}
.form-policy a {
  color: var(--text-body);
  text-decoration: underline;
}

/* =========================================================================
   FAQ
   ========================================================================= */
.faq {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 2px solid var(--border);
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  list-style: none;
  cursor: pointer;
  padding: 22px 0;
  font-family: "Fraunces", serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  min-height: 56px;
  line-height: 1.35;
}
@media (min-width: 768px) {
  .faq-item summary {
    font-size: 19px;
  }
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::marker {
  display: none;
}
.faq-num {
  color: var(--primary);
  font-weight: 700;
  font-style: italic;
  flex-shrink: 0;
}
.faq-icon {
  margin-left: auto;
  width: 24px;
  height: 24px;
  position: relative;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 2px;
  background: var(--primary);
  transform: translate(-50%, -50%);
}
.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 0.3s ease;
}
.faq-item[open] .faq-icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}
.faq-body {
  padding: 0 0 22px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-body);
  animation: faqOpen 0.4s ease;
}
@keyframes faqOpen {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================================================================
   FOOTER
   ========================================================================= */
.site-footer {
  background: var(--surface-dark);
  color: rgba(245, 239, 226, 0.78);
  padding: 50px 0 32px;
  position: relative;
  z-index: 2;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(min(260px, 100%), 1fr);
  gap: 28px;
  padding-bottom: 28px;
  border-bottom: 1px dashed rgba(212, 162, 76, 0.4);
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
}

.footer-col h4 {
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--secondary);
  margin: 0 0 14px;
}
.footer-col p {
  margin: 0 0 8px;
  font-size: 14px;
}
.footer-about {
  font-size: 13px;
  line-height: 1.6;
  max-width: 320px;
  margin-top: 12px !important;
}
.footer-links li {
  margin-bottom: 8px;
  font-size: 14px;
}
.footer-links a {
  color: rgba(245, 239, 226, 0.78);
  text-decoration: none;
}
.footer-links a:hover {
  color: var(--secondary);
}
.footer-col a {
  color: rgba(245, 239, 226, 0.78);
}
.footer-col a:hover {
  color: var(--secondary);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 22px;
  font-size: 12px;
  color: rgba(245, 239, 226, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.footer-bottom .stamp {
  background: transparent;
  color: var(--secondary);
  border-color: var(--secondary);
}

/* =========================================================================
   STICKY CTA (mobile only)
   ========================================================================= */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: auto;
  min-height: 64px;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  background: var(--primary);
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-decoration: none;
  border-top: 2px solid var(--border);
  box-shadow: 0 -4px 0 0 rgba(var(--primary-rgb), 0.35);
  z-index: 50;
  transform: translateY(100%);
  transition:
    transform 0.35s var(--easing),
    background 0.2s ease;
}
.sticky-cta.is-visible {
  display: flex;
  transform: translateY(0);
}
.sticky-cta-text {
  flex-shrink: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sticky-cta-timer {
  flex-shrink: 0;
  background: var(--secondary);
  color: var(--text-primary);
  padding: 4px 10px;
  border-radius: 2px;
  font-family: "Fraunces", serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.05em;
  border: 1.5px solid var(--border);
  min-width: 76px;
  text-align: center;
}
.sticky-cta-arrow {
  flex-shrink: 0;
  font-size: 18px;
}
.sticky-cta:hover {
  background: var(--primary-dark);
  color: #fff;
}
.sticky-cta:active {
  transform: translateY(2px);
}
@media (min-width: 1024px) {
  .sticky-cta {
    display: none !important;
  }
}

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