/* TikTok warm-up — aligned with Enjoy The Wood Maps visual system */

:root {
  --bg: #f6f5f2;
  --bg-soft: #ffffff;
  --ink: #141413;
  --ink-2: #2e2d2a;
  --muted: #6b6862;
  --line: rgba(20, 20, 19, 0.08);
  --line-strong: rgba(20, 20, 19, 0.14);
  --accent: #2f5d45;
  --accent-deep: #234734;
  --accent-soft: rgba(47, 93, 69, 0.08);
  --accent-glow: rgba(47, 93, 69, 0.28);
  --warm: #faf6ef;
  --sage: #eef3ee;
  --max: 1100px;
  --max-wide: 1100px;
  --font: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 14px;
  --radius-lg: 22px;
  --safe-b: env(safe-area-inset-bottom, 0px);
}

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

html {
  scroll-behavior: smooth;
  overscroll-behavior: none;
  background-color: #f6f5f2;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background-color: #f6f5f2;
  background-image:
    radial-gradient(1100px 520px at 8% -8%, rgba(47, 93, 69, 0.07), transparent 55%),
    radial-gradient(900px 480px at 100% 0%, rgba(180, 170, 150, 0.14), transparent 48%);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  overscroll-behavior: none;
  overscroll-behavior-y: none;
  -webkit-tap-highlight-color: transparent;
}

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

a {
  color: var(--accent-deep);
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

.wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.wrap--wide {
  width: min(100% - 2rem, var(--max-wide));
}

/* Top bar */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 245, 242, 0.88);
  backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid var(--line);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.55rem;
  padding: 0.75rem 0;
  width: min(100% - 1.5rem, var(--max-wide));
  margin-inline: auto;
}

.brand {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
  white-space: nowrap;
  flex: 0 0 auto;
}

.brand em {
  font-style: normal;
  font-weight: 600;
  color: var(--accent);
}

.topbar__offer {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 750;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, var(--accent-deep) 0%, var(--accent) 55%, #3d7a54 100%);
  box-shadow: 0 4px 14px var(--accent-glow);
  white-space: nowrap;
  flex: 0 1 auto;
  min-width: 0;
}

.topbar__timer {
  font-variant-numeric: tabular-nums;
  padding: 0.12rem 0.4rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-weight: 750;
  flex-shrink: 0;
}

.topbar__cta {
  display: none;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-deep), var(--accent));
  color: #fff !important;
  font-size: 0.78rem;
  font-weight: 650;
  box-shadow: 0 4px 18px var(--accent-glow);
  transition: transform 0.25s var(--ease), box-shadow 0.25s ease;
}

.topbar__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px var(--accent-glow);
}

@media (min-width: 720px) {
  .brand {
    font-size: 0.98rem;
  }

  .topbar__offer {
    font-size: 0.7rem;
    padding: 0.38rem 0.7rem;
    gap: 0.45rem;
  }

  .topbar__cta {
    display: inline-flex;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 3rem;
  padding: 0.88rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font: inherit;
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.3s var(--ease), background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary,
.btn--cta {
  background: linear-gradient(135deg, var(--accent-deep) 0%, var(--accent) 55%, #3d7a54 100%);
  color: #fff !important;
  border-color: transparent;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.12) inset,
    0 8px 28px var(--accent-glow);
}

.btn--primary:hover,
.btn--cta:hover {
  background: linear-gradient(135deg, #1f3d2c 0%, var(--accent-deep) 100%);
  color: #fff !important;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.15) inset,
    0 12px 36px rgba(47, 93, 69, 0.38);
}

.btn--cta::after {
  content: "→";
  margin-left: 0.15rem;
  transition: transform 0.25s var(--ease);
}

.btn--cta:hover::after {
  transform: translateX(3px);
}

.btn--ghost {
  background: transparent;
  color: var(--ink) !important;
  border-color: var(--line-strong);
}

.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent-deep) !important;
}

.btn--block {
  width: 100%;
  max-width: 22rem;
}

.btn--lg {
  padding: 1rem 1.65rem;
  font-size: 1rem;
}

/* Hero */
.hero {
  position: relative;
  min-height: min(92svh, 860px);
  display: grid;
  align-items: end;
  padding: 0 0 5rem;
  overflow: hidden;
  background: #141413;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #1a241d;
}

.hero__media video,
.hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__media video {
  z-index: 1;
}

.hero__veil {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(20, 20, 19, 0.78) 0%, rgba(20, 20, 19, 0.42) 32%, rgba(20, 20, 19, 0.55) 58%, rgba(20, 20, 19, 0.88) 88%, rgba(20, 20, 19, 0.96) 100%),
    radial-gradient(80% 45% at 50% 100%, rgba(47, 93, 69, 0.18), transparent 70%);
  pointer-events: none;
}

.hero__copy {
  position: relative;
  z-index: 3;
  width: min(100% - 2rem, 560px);
  margin: 0 auto;
  text-align: center;
  animation: rise 0.85s var(--ease) both;
  color: #f6f5f2;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 1rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(246, 245, 242, 0.22);
  background: rgba(20, 20, 19, 0.35);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(246, 245, 242, 0.85);
}

.hero__eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #6fbf8a;
  box-shadow: 0 0 0 4px rgba(111, 191, 138, 0.25);
  animation: pulse 2.2s ease infinite;
}

.hero h1 {
  margin: 0 0 0.85rem;
  font-size: clamp(2rem, 6.5vw, 3.1rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.035em;
  text-wrap: balance;
  color: #fff;
}

.hero__lead {
  margin: 0 auto 1.45rem;
  max-width: 34rem;
  color: rgba(246, 245, 242, 0.78);
  font-size: clamp(0.98rem, 2.6vw, 1.1rem);
  text-wrap: pretty;
}

.hero__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
}

.hero__note {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(246, 245, 242, 0.55);
}

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 1.15rem;
  z-index: 3;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  color: rgba(246, 245, 242, 0.45);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: bob 2.4s ease-in-out infinite;
}

.hero__scroll-line {
  width: 1px;
  height: 24px;
  background: linear-gradient(to bottom, rgba(246, 245, 242, 0.55), transparent);
}

/* Sections */
.section {
  padding: clamp(3.25rem, 8vw, 5.25rem) 0;
}

.section--warm {
  background:
    radial-gradient(ellipse 90% 70% at 15% 0%, rgba(47, 93, 69, 0.07), transparent 55%),
    linear-gradient(180deg, var(--warm) 0%, rgba(250, 246, 239, 0.35) 50%, var(--bg) 100%);
}

.section--sage {
  background:
    radial-gradient(ellipse 80% 60% at 85% 20%, rgba(47, 93, 69, 0.09), transparent 50%),
    linear-gradient(180deg, var(--bg) 0%, var(--sage) 40%, var(--sage) 70%, var(--bg) 100%);
}

.section--moments {
  padding-bottom: clamp(2.5rem, 6vw, 4rem);
  background:
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(47, 93, 69, 0.08), transparent 60%),
    var(--bg);
}

.section__label {
  margin: 0 0 0.55rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.section__title {
  margin: 0 0 0.7rem;
  font-size: clamp(1.55rem, 4.5vw, 2.2rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  text-wrap: balance;
  color: var(--ink);
}

.section__lead {
  margin: 0 0 1.85rem;
  color: var(--muted);
  font-size: 1.02rem;
  max-width: 38rem;
}

.section-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1.75rem;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--accent-deep) !important;
  border-bottom: 1.5px solid rgba(47, 93, 69, 0.35);
  padding-bottom: 0.12rem;
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.25s var(--ease);
}

.section-cta:hover {
  color: var(--accent) !important;
  border-color: var(--accent);
  transform: translateX(3px);
}

/* Emotion beats — key arguments, need to land hard */
.beats {
  display: grid;
  gap: 1rem;
}

@media (min-width: 720px) {
  .beats {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.1rem;
    align-items: stretch;
  }
}

.beat {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1.55rem 1.35rem 1.6rem 1.5rem;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), #fff 40%),
    #fff;
  border: 1px solid rgba(47, 93, 69, 0.14);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.85) inset,
    0 18px 42px rgba(20, 20, 19, 0.09);
  transition: transform 0.35s var(--ease), box-shadow 0.35s ease, border-color 0.25s ease;
  min-height: 100%;
}

.beat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-deep) 100%);
}

.beat:hover {
  transform: translateY(-5px);
  border-color: rgba(47, 93, 69, 0.28);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 24px 48px rgba(20, 20, 19, 0.12);
}

.beat__num {
  position: absolute;
  right: 0.7rem;
  top: 0.35rem;
  margin: 0;
  font-size: clamp(3rem, 10vw, 3.75rem);
  font-weight: 700;
  letter-spacing: -0.07em;
  line-height: 1;
  color: rgba(47, 93, 69, 0.1);
  pointer-events: none;
  user-select: none;
}

.beat h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 12.5em;
  font-size: clamp(1.18rem, 3.2vw, 1.38rem);
  font-weight: 750;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--ink);
}

.beat p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--ink-2);
  font-size: 0.98rem;
  line-height: 1.55;
  max-width: 28ch;
}

.beat--featured {
  background: linear-gradient(155deg, #1c3328 0%, #2f5d45 52%, #3a6f52 100%);
  border-color: transparent;
  box-shadow: 0 22px 52px rgba(35, 71, 52, 0.34);
  color: #f6f5f2;
}

.beat--featured::before {
  width: 4px;
  background: linear-gradient(180deg, #e4c992 0%, #c4a06a 100%);
}

.beat--featured .beat__num {
  color: rgba(246, 245, 242, 0.12);
}

.beat--featured h3 {
  color: #fff;
}

.beat--featured p {
  color: rgba(246, 245, 242, 0.86);
}

.beat--featured:hover {
  border-color: transparent;
  box-shadow: 0 28px 56px rgba(35, 71, 52, 0.4);
}

.beats .beat.reveal {
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease),
    box-shadow 0.35s ease,
    border-color 0.25s ease;
}

.beats .beat.reveal:nth-child(1) {
  transition-delay: 0.04s;
}

.beats .beat.reveal:nth-child(2) {
  transition-delay: 0.14s;
}

.beats .beat.reveal:nth-child(3) {
  transition-delay: 0.24s;
}

@media (min-width: 720px) {
  .beats .beat--featured.reveal.is-in {
    transform: translateY(-8px);
  }

  .beats .beat--featured.reveal.is-in:hover {
    transform: translateY(-12px);
  }
}

@media (min-width: 900px) {
  .beat {
    padding: 1.75rem 1.5rem 1.85rem 1.65rem;
  }

  .beat p {
    font-size: 1.02rem;
    line-height: 1.58;
  }
}

/* Before / after */
.ba {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #e8e4dc;
  touch-action: pan-y;
  user-select: none;
  box-shadow: 0 20px 50px rgba(20, 20, 19, 0.12);
  border: 1px solid var(--line);
  margin-bottom: 0.25rem;
}

.ba__layer {
  position: absolute;
  inset: 0;
}

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

.ba__before {
  z-index: 1;
  clip-path: inset(0 calc(100% - var(--pos, 50%)) 0 0);
}

.ba__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos, 50%);
  z-index: 3;
  width: 48px;
  margin-left: -24px;
  border: 0;
  background: transparent;
  padding: 0;
  touch-action: none;
  cursor: ew-resize;
}

.ba__handle::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  transform: translateX(-50%);
  background: rgba(246, 245, 242, 0.95);
  box-shadow: 0 0 14px rgba(0, 0, 0, 0.25);
}

.ba__knob {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 42px;
  height: 42px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid var(--accent);
  box-shadow: 0 8px 22px rgba(20, 20, 19, 0.18);
}

.ba__knob::before,
.ba__knob::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 6px;
  height: 6px;
  border-top: 1.5px solid var(--accent-deep);
  border-right: 1.5px solid var(--accent-deep);
}

.ba__knob::before {
  left: 11px;
  transform: translateY(-50%) rotate(-135deg);
}

.ba__knob::after {
  right: 11px;
  transform: translateY(-50%) rotate(45deg);
}

.ba__tag {
  position: absolute;
  z-index: 2;
  top: 0.75rem;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  background: rgba(20, 20, 19, 0.65);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ba__tag--before {
  left: 0.75rem;
}

.ba__tag--after {
  right: 0.75rem;
}

/* Proof */
.proof-score {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
  margin: 0 0 1.4rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.proof-score__stars {
  color: var(--accent);
  letter-spacing: 0.08em;
}

.reviews {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 78%);
  gap: 0.9rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.35rem;
  margin: 0 -1rem;
  padding-inline: 1rem;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

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

@media (min-width: 900px) {
  .reviews {
    grid-auto-columns: calc((100% - 1.8rem) / 3);
    margin: 0;
    padding-inline: 0;
  }
}

.review {
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-soft);
  border: 1px solid var(--line);
}

.review__img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #ebe6dc;
}

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

.review__body {
  padding: 1rem 1.05rem 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  flex: 1;
}

.review__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.82rem;
}

.review__name {
  font-weight: 700;
  color: var(--ink);
}

.review__verified {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 650;
}

.review__stars {
  color: var(--accent);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
}

.review__text {
  margin: 0.2rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

/* Moments — vertical page scroll free; horizontal only via arrows */
.section--moments .section__lead {
  margin-bottom: 1.25rem;
}

.moments-rail {
  position: relative;
}

.moments {
  --moment-gap: 20px;
  --moment-h: min(74svh, 680px);
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: min(72vw, calc(var(--moment-h) * 9 / 16));
  gap: var(--moment-gap);
  height: var(--moment-h);
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: none;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.35rem;
  margin: 0 -1rem;
  padding-inline: var(--moment-gap);
  scroll-padding-inline: var(--moment-gap);
  scrollbar-width: none;
  touch-action: pan-y;
  -webkit-overflow-scrolling: touch;
}

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

.moments-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: var(--accent, #2f5d45);
  box-shadow: 0 10px 28px rgba(20, 20, 19, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease,
    transform 0.25s ease,
    background 0.2s ease;
}

.moments-arrow span {
  font-size: 2rem;
  font-weight: 400;
  margin-top: -2px;
}

.moments-arrow:hover:not(:disabled):not(.is-edge-hidden) {
  background: #f6f5f2;
  transform: translateY(-50%) scale(1.04);
}

.moments-arrow.is-edge-hidden,
.moments-arrow:disabled {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  cursor: default;
  transform: translateY(-50%) scale(0.92);
}

.moments-arrow--prev {
  left: 6px;
}

.moments-arrow--next {
  right: 6px;
}

@media (min-width: 900px) {
  .moments {
    --moment-h: min(68svh, 640px);
    grid-auto-columns: calc(var(--moment-h) * 9 / 16);
    margin: 0;
    padding-inline: 0;
    scroll-padding-inline: 0;
  }

  .moments-arrow--prev {
    left: -8px;
  }

  .moments-arrow--next {
    right: -8px;
  }
}

.moment {
  position: relative;
  scroll-snap-align: start;
  height: 100%;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  background: #1a241d;
  box-shadow: 0 14px 36px rgba(20, 20, 19, 0.12);
}

.moment__poster,
.moment video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.moment video {
  z-index: 1;
}

.moment__overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 3.5rem 1rem 1.15rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.55rem;
  background: linear-gradient(180deg, transparent 0%, rgba(20, 20, 19, 0.55) 45%, rgba(20, 20, 19, 0.88) 100%);
  pointer-events: none;
}

.moment__cap {
  margin: 0;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}

.moment__cta {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: rgba(246, 245, 242, 0.95);
  color: var(--ink) !important;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  transition: transform 0.25s var(--ease), background 0.2s ease;
  pointer-events: auto;
}

.moment__cta:hover {
  transform: translateY(-1px);
  background: #fff;
}

.moments-hint {
  margin: 0.85rem 0 0;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Coupon — same pattern as main site */
.offer {
  padding: clamp(2.5rem, 7vw, 4.5rem) 0 6.5rem;
}

.coupon {
  display: grid;
  grid-template-columns: 1fr minmax(240px, 320px);
  gap: clamp(1.1rem, 3vw, 1.75rem);
  align-items: center;
  width: 100%;
  padding: clamp(1.4rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(700px 280px at 12% 0%, rgba(47, 93, 69, 0.45), transparent 55%),
    radial-gradient(500px 240px at 100% 100%, rgba(47, 93, 69, 0.22), transparent 50%),
    linear-gradient(145deg, #1a241d, #141413 62%);
  color: #f6f5f2;
  overflow: hidden;
  position: relative;
  box-shadow: 0 24px 60px rgba(20, 20, 19, 0.16);
}

.coupon__main {
  position: relative;
  z-index: 1;
  padding: 0.25rem 0.15rem;
}

.coupon__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(180, 210, 190, 0.95);
}

.coupon__main h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: inherit;
  max-width: 18ch;
}

.coupon__main p {
  margin: 0;
  color: rgba(246, 245, 242, 0.72);
  font-size: 1rem;
  max-width: 42ch;
  line-height: 1.55;
}

.coupon__actions {
  margin-top: 1.2rem;
}

.coupon .btn--primary,
.coupon .btn--cta {
  background: linear-gradient(135deg, #f6f5f2, #fff);
  color: var(--ink) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.coupon .btn--primary:hover,
.coupon .btn--cta:hover {
  background: #fff;
  color: var(--ink) !important;
}

.coupon__stub {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  width: 100%;
  min-width: 0;
  padding: 1.4rem 1.2rem;
  text-align: center;
  background: #fff;
  color: var(--ink);
  border: 2px dashed var(--accent);
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.coupon__stub::before,
.coupon__stub::after {
  content: "";
  position: absolute;
  left: -9px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #151a16;
}

.coupon__stub::before {
  top: 22%;
}

.coupon__stub::after {
  bottom: 22%;
}

.coupon__stub-label {
  font-size: 0.7rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.coupon-code {
  border: 0;
  background: transparent;
  font: inherit;
  font-size: clamp(1.8rem, 4vw, 2.2rem);
  font-weight: 750;
  letter-spacing: 0.12em;
  color: var(--ink);
  padding: 0.15rem 0.4rem;
  cursor: pointer;
}

.coupon__stub .btn--ghost {
  border-color: var(--line-strong);
  color: var(--ink) !important;
  min-height: 2.5rem;
  padding: 0.55rem 1rem;
  font-size: 0.85rem;
}

.coupon__stub .btn--ghost.is-copied {
  border-color: var(--accent);
  color: var(--accent-deep) !important;
}

@media (max-width: 700px) {
  .coupon {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .coupon__main {
    order: 1;
    text-align: center;
    padding: 0;
  }

  .coupon__main h2,
  .coupon__main p {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  .coupon__actions {
    display: flex;
    justify-content: center;
  }

  .coupon__stub {
    order: 2;
    width: min(100%, 280px);
    margin-inline: auto;
  }

  .coupon__stub::before,
  .coupon__stub::after {
    left: auto;
    top: -9px;
    bottom: auto;
  }

  .coupon__stub::before {
    left: 22%;
  }

  .coupon__stub::after {
    right: 22%;
    left: auto;
  }
}

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  padding: 0.65rem 0.85rem calc(0.65rem + var(--safe-b));
  background: linear-gradient(180deg, transparent, rgba(246, 245, 242, 0.96) 28%);
  transform: translateY(110%);
  transition: transform 0.35s var(--ease);
  pointer-events: none;
}

.sticky-cta.is-visible {
  transform: translateY(0);
  pointer-events: auto;
}

.sticky-cta .btn {
  width: 100%;
}

@media (min-width: 900px) {
  .sticky-cta {
    display: none;
  }
}

/* Footer */
.site-footer {
  padding: 1.25rem 0 5.5rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.78rem;
  text-align: center;
}

@media (min-width: 900px) {
  .site-footer {
    padding-bottom: 1.75rem;
  }
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 4px rgba(111, 191, 138, 0.2);
  }
  50% {
    box-shadow: 0 0 0 7px rgba(111, 191, 138, 0.06);
  }
}

@keyframes bob {
  0%,
  100% {
    transform: translate(-50%, 0);
    opacity: 0.5;
  }
  50% {
    transform: translate(-50%, 5px);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
