:root {
  /* Brand palette */
  --color-main: #5e0b15;
  --color-secondary: #90323d;
  --color-cream: #d9cab3;
  --color-gold: #bc8034;
  --color-taupe: #8c7a6b;
  --color-sage: #b5c2b7;

  --bg: #ffffff;
  --bg-elevated: #faf8f6;
  --bg-card: #ffffff;
  --bg-soft: #f3efe9;
  --text: #2d181c;
  --text-muted: var(--color-taupe);
  --accent: var(--color-main);
  --accent-light: var(--color-secondary);
  --gold: var(--color-gold);
  --sage: var(--color-sage);
  --border: rgba(140, 122, 107, 0.22);
  --radius: 12px;
  --radius-lg: 20px;
  --font-display: "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --shadow: 0 12px 40px rgba(94, 11, 21, 0.08);
  --shadow-sm: 0 4px 16px rgba(94, 11, 21, 0.06);
  --announcement-h: 2.35rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

/* Announcement bar */
.announcement {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: var(--announcement-h);
  padding: 0.55rem 1.25rem;
  background: linear-gradient(90deg, var(--color-main) 0%, var(--color-secondary) 50%, var(--color-main) 100%);
  position: relative;
  z-index: 20;
}

.announcement--hidden {
  display: none !important;
}

.announcement__text {
  margin: 0;
  max-width: 72rem;
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.01em;
  text-align: center;
  color: #ffffff;
}

/* Hero */
.hero {
  display: grid;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.25rem 3rem;
}

.hero__gallery {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hero__carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.hero__viewport {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  touch-action: pan-y;
}

.hero__viewport img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: center;
  transition: opacity 0.25s ease;
}

.hero__viewport img.is-fading {
  opacity: 0;
}

.hero__arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  color: var(--color-main);
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  transform: translateY(-50%);
  transition: color 0.15s, transform 0.15s;
}

.hero__arrow svg {
  filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.9))
    drop-shadow(0 1px 4px rgba(0, 0, 0, 0.15));
}

.hero__arrow--prev {
  left: 0.5rem;
}

.hero__arrow--next {
  right: 0.5rem;
}

.hero__arrow:hover {
  color: var(--color-secondary);
}

.hero__arrow:active {
  transform: translateY(-50%) scale(0.92);
}

.hero__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.hero__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--color-cream);
  border: 1px solid var(--color-taupe);
  cursor: pointer;
  transition: transform 0.2s, background 0.2s, border-color 0.2s;
}

.hero__dot:hover {
  border-color: var(--color-secondary);
}

.hero__dot.is-active {
  background: var(--color-main);
  border-color: var(--color-main);
  transform: scale(1.2);
}

.hero__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero h1 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 5vw, 2.75rem);
  font-weight: 600;
  line-height: 1.15;
}

.stars {
  color: var(--gold);
  letter-spacing: 0.05em;
}

.hero__price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.65rem 1rem;
  margin-bottom: 0.35rem;
}

.hero__price-current {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-main);
}

.hero__price-old {
  font-size: 1.1rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.hero__badge {
  padding: 0.2rem 0.55rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  background: var(--accent);
  border-radius: 6px;
}

.hero__installment {
  margin: 0 0 1.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.hero__cta {
  margin-bottom: 0.75rem;
  scroll-margin-top: 1.5rem;
}

.hero__tagline {
  margin: 0 0 1.25rem;
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--text-muted);
  text-align: center;
}

.hero__tagline em {
  font-style: italic;
  font-weight: 400;
}

/* Buy dropdown - marketplace links */
.buy-dropdown {
  position: relative;
  width: 100%;
}

.buy-dropdown__trigger {
  width: 100%;
}

.buy-dropdown__trigger::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.5rem;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid currentColor;
  vertical-align: middle;
  transition: transform 0.2s;
}

.buy-dropdown.is-open .buy-dropdown__trigger::after,
.buy-dropdown:hover .buy-dropdown__trigger::after,
.buy-dropdown:focus-within .buy-dropdown__trigger::after {
  transform: rotate(180deg);
}

.buy-dropdown__menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.5rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  pointer-events: none;
}

.buy-dropdown:hover .buy-dropdown__menu,
.buy-dropdown:focus-within .buy-dropdown__menu,
.buy-dropdown.is-open .buy-dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.buy-dropdown__item {
  display: block;
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  background: var(--bg-card);
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}

.buy-dropdown__item:hover,
.buy-dropdown__item:focus-visible {
  background: rgba(217, 202, 179, 0.55);
  color: var(--color-main);
  outline: none;
}

.buy-dropdown--sm {
  width: auto;
  min-width: 10rem;
}

.buy-dropdown--sm .buy-dropdown__trigger {
  width: auto;
  white-space: nowrap;
}

.buy-dropdown--sm .buy-dropdown__menu {
  right: 0;
  left: auto;
  min-width: 220px;
}

/* Sticky bar - menu opens upward */
.buy-dropdown--up .buy-dropdown__trigger::after {
  border-top: none;
  border-bottom: 6px solid currentColor;
}

.buy-dropdown--up .buy-dropdown__menu {
  top: auto;
  bottom: calc(100% + 0.5rem);
  transform: translateY(6px);
}

.buy-dropdown--up:hover .buy-dropdown__menu,
.buy-dropdown--up:focus-within .buy-dropdown__menu,
.buy-dropdown--up.is-open .buy-dropdown__menu {
  transform: translateY(0);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius);
  transition: transform 0.15s, background 0.2s, box-shadow 0.2s;
}

.btn:active {
  transform: scale(0.98);
}

.btn--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--color-main) 0%, var(--color-secondary) 100%);
  box-shadow: 0 8px 24px rgba(94, 11, 21, 0.22);
}

.btn--primary:hover {
  box-shadow: 0 12px 28px rgba(144, 50, 61, 0.28);
}

.btn--secondary {
  color: var(--text);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
}

.btn--secondary:hover {
  border-color: var(--text-muted);
}

.btn--sm {
  padding: 0.65rem 1.25rem;
  font-size: 0.9rem;
}

.btn--block {
  width: 100%;
}

.hero__faq {
  margin-top: 1.25rem;
  width: 100%;
}

/* FAQ */
.faq {
  margin: 0;
  padding: 0;
}

.faq__item {
  border-bottom: 1px solid var(--border);
}

.faq__item summary {
  padding: 0.65rem 1.75rem 0.65rem 0;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.35;
  cursor: pointer;
  list-style: none;
  position: relative;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--accent-light);
  transition: transform 0.2s;
}

.faq__item[open] summary {
  padding-bottom: 0.35rem;
}

.faq__item[open] summary::after {
  content: "−";
}

.faq__item p,
.faq__item ul {
  margin: 0 0 0.65rem;
  padding-bottom: 0.15rem;
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.45;
}

.faq__item ul {
  padding-left: 1.1rem;
  list-style: disc;
}

.faq__item li {
  margin-bottom: 0.2rem;
}

.faq__item li:last-child {
  margin-bottom: 0;
}

.faq__video-link {
  display: inline;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  font: inherit;
  font-size: inherit;
  font-weight: 600;
  color: var(--color-main);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.faq__video-link:hover {
  color: var(--color-secondary);
}

/* Video modal */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.video-modal[hidden] {
  display: none;
}

.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(45, 24, 28, 0.72);
  backdrop-filter: blur(4px);
}

.video-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 900px);
  padding: 0;
  background: #000;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.video-modal__close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  font-size: 1.75rem;
  line-height: 1;
  color: #fff;
  background: rgba(0, 0, 0, 0.55);
  cursor: pointer;
  transition: background 0.2s ease;
}

.video-modal__close:hover {
  background: rgba(0, 0, 0, 0.8);
}

.video-modal__close:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.video-modal__player {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-modal__player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

body.modal-open {
  overflow: hidden;
}

/* Full-width video */
.video-section {
  width: 100%;
  margin: 0;
  padding: 0;
  background: var(--color-main);
}

.video-section__embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--color-main);
}

.video-section__poster {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-section__play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.25rem;
  height: 4.25rem;
  padding: 0;
  padding-left: 0.2rem;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--color-main);
  cursor: pointer;
  transform: translate(-50%, -50%);
  box-shadow: 0 8px 28px rgba(94, 11, 21, 0.35);
  transition: transform 0.2s ease, background 0.2s ease;
}

.video-section__play:hover {
  transform: translate(-50%, -50%) scale(1.06);
  background: #fff;
}

.video-section__play:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.video-section__play-icon {
  display: block;
}

.video-section__embed.is-playing .video-section__poster,
.video-section__embed.is-playing .video-section__play {
  display: none;
}

.video-section__iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Flip cards preview */
.deck-preview {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 3rem;
}

.deck-preview__header {
  margin-bottom: 2rem;
  text-align: center;
}

.deck-preview h2 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--color-main);
}

.deck-preview__hint {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.deck-preview__hint--small {
  margin-top: 1rem;
  font-size: 0.75rem;
  text-align: center;
  opacity: 0.85;
}

.flip-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  justify-items: center;
}

.flip-card {
  position: relative;
  width: 100%;
  max-width: 168px;
  aspect-ratio: 2 / 3;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  perspective: 1400px;
  perspective-origin: 50% 35%;
  -webkit-tap-highlight-color: transparent;
}

.flip-card::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: -6px;
  height: 28px;
  border-radius: 50%;
  background: radial-gradient(
    ellipse at center,
    rgba(94, 11, 21, 0.22) 0%,
    rgba(94, 11, 21, 0.06) 55%,
    transparent 72%
  );
  transform: scaleY(0.45);
  filter: blur(2px);
  pointer-events: none;
  transition: transform 0.45s ease, opacity 0.45s ease;
  z-index: 0;
}

.flip-card:hover::after,
.flip-card:focus-visible::after {
  transform: scale(1.08, 0.5) translateY(4px);
  opacity: 0.85;
}

.flip-card:focus-visible {
  outline: 2px solid var(--color-main);
  outline-offset: 4px;
  border-radius: var(--radius);
}

.flip-card__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  transform: rotateX(8deg);
  transition: transform 0.6s cubic-bezier(0.34, 1.15, 0.64, 1);
  transform-style: preserve-3d;
  will-change: transform;
}

.flip-card:hover .flip-card__inner,
.flip-card:focus-visible .flip-card__inner {
  transform: rotateX(14deg) rotateY(-10deg) translateY(-10px) scale(1.03);
}

.flip-card.is-flipped .flip-card__inner {
  transform: rotateY(180deg) rotateX(8deg);
}

.flip-card.is-flipped:hover .flip-card__inner,
.flip-card.is-flipped:focus-visible .flip-card__inner {
  transform: rotateY(180deg) rotateX(14deg) rotateY(10deg) translateY(-10px) scale(1.03);
}

.flip-card__face {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem 0.85rem;
  border-radius: 14px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateZ(5px);
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    inset 0 -2px 6px rgba(0, 0, 0, 0.12),
    0 2px 0 rgba(255, 255, 255, 0.12),
    0 8px 16px rgba(94, 11, 21, 0.12),
    0 20px 40px rgba(94, 11, 21, 0.14);
}

.flip-card__face::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.28) 0%,
    rgba(255, 255, 255, 0.06) 38%,
    transparent 52%,
    rgba(0, 0, 0, 0.1) 100%
  );
  pointer-events: none;
}

.flip-card__face::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 11px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  pointer-events: none;
}

.flip-card__logo {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.flip-card__rings {
  position: relative;
  z-index: 1;
  margin-top: 0.75rem;
  font-size: 1.5rem;
  opacity: 0.5;
}

.flip-card__face--cream .flip-card__rings,
.flip-card__face--sage .flip-card__rings {
  opacity: 0.35;
}

.flip-card__face--front {
  transform: rotateY(180deg) translateZ(5px);
  text-align: center;
}

.flip-card__face--cream,
.flip-card__face--sage {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    inset 0 -2px 6px rgba(94, 11, 21, 0.08),
    0 2px 0 rgba(255, 255, 255, 0.4),
    0 8px 16px rgba(94, 11, 21, 0.1),
    0 20px 40px rgba(94, 11, 21, 0.12);
}

.flip-card__face--cream {
  background: var(--color-cream);
  color: var(--color-main);
}

.flip-card__face--main {
  background: var(--color-main);
  color: #ffffff;
}

.flip-card__face--secondary {
  background: var(--color-secondary);
  color: #ffffff;
}

.flip-card__face--gold {
  background: var(--color-gold);
  color: #ffffff;
}

.flip-card__face--taupe {
  background: var(--color-taupe);
  color: #ffffff;
}

.flip-card__face--sage {
  background: var(--color-sage);
  color: var(--color-main);
}

.flip-card__type,
.flip-card__face--front p {
  position: relative;
  z-index: 1;
}

.flip-card__type {
  display: block;
  margin-bottom: 0.65rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
}

.flip-card__face--front p {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.45;
  font-weight: 500;
}

@media (min-width: 640px) {
  .flip-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .flip-card {
    max-width: 180px;
  }
}

@media (min-width: 900px) {
  .flip-cards {
    grid-template-columns: repeat(6, 1fr);
    max-width: 1100px;
    margin: 0 auto;
  }

  .flip-card {
    max-width: none;
  }

  .flip-card__face--front p {
    font-size: 0.82rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .flip-card__inner {
    transition: none;
    transform: none;
    will-change: auto;
  }

  .flip-card.is-flipped .flip-card__inner {
    transform: rotateY(180deg);
  }

  .flip-card:hover .flip-card__inner,
  .flip-card:focus-visible .flip-card__inner {
    transform: none;
  }

  .flip-card.is-flipped:hover .flip-card__inner,
  .flip-card.is-flipped:focus-visible .flip-card__inner {
    transform: rotateY(180deg);
  }

  .flip-card::after {
    transition: none;
  }
}

/* Intensity / benefits carousel */
.intensity {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 2.5rem 0 3rem;
  background: var(--color-main);
  overflow: hidden;
}

.intensity__header {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto 1.5rem;
  padding: 0 1.25rem;
  text-align: center;
}

.intensity h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.8vw, 2.35rem);
  font-weight: 600;
  line-height: 1.25;
  color: #ffffff;
}

.intensity__subtitle {
  margin: 0;
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
}

/* Full-width row of 3 cards */
.cards-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  width: 100%;
  padding: 0 1.25rem;
}

.benefit-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.benefit-card__icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  color: var(--color-main);
  background: rgba(217, 202, 179, 0.45);
  border-radius: 12px;
}

.benefit-card__icon svg {
  width: 1.25rem;
  height: 1.25rem;
  stroke-width: 1.75;
}

.benefit-card__body {
  min-width: 0;
  flex: 1;
}

.benefit-card h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.3;
}

.benefit-card p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--text-muted);
}

/* Reviews */
.reviews {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 2rem 0 4rem;
  overflow: hidden;
}

.reviews__header {
  max-width: 1100px;
  margin: 0 auto 1.5rem;
  padding: 0 1.25rem;
  text-align: center;
}

.reviews h2 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.5vw, 1.75rem);
}

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

.review-card {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 0;
  margin: 0;
  padding: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.review-card__img {
  display: block;
  flex-shrink: 0;
  width: 6.5rem;
  min-height: 100%;
  align-self: stretch;
  object-fit: cover;
  object-position: center;
  background: var(--bg-soft);
  border-radius: 0;
}

.review-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 0;
  flex: 1;
  padding: 0.85rem 1rem 0.85rem 0.9rem;
}

.review-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  width: 100%;
}

.review-card cite {
  font-style: normal;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  text-align: left;
}

.review-card .stars {
  flex-shrink: 0;
  font-size: 0.85rem;
  text-align: right;
}

.review-card p {
  margin: 0.35rem 0 0;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--text-muted);
}

/* Closing CTA */
.closing {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 2rem 0 5rem;
  background: linear-gradient(160deg, var(--color-main) 0%, #3d0810 55%, var(--color-secondary) 100%);
  overflow: hidden;
}

.closing::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 20% 50%, rgba(217, 202, 179, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse 60% 50% at 100% 80%, rgba(188, 128, 52, 0.1) 0%, transparent 45%);
  pointer-events: none;
}

.closing__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 0 1.25rem;
}

.closing__panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.15rem;
  align-items: center;
  width: 100%;
  padding: 1.25rem 1.25rem;
  text-align: left;
  background: var(--bg-card);
  border: 1px solid rgba(217, 202, 179, 0.35);
  border-radius: 20px;
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}

.closing__content {
  min-width: 0;
}

.closing__verse {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.65rem;
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 4vw, 1.85rem);
  font-weight: 600;
  line-height: 1.25;
  color: var(--color-main);
}

.closing__message {
  margin: 0;
  font-size: clamp(0.88rem, 2vw, 0.95rem);
  line-height: 1.55;
  color: var(--text-muted);
}

.closing__aside {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.85rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.closing__brand {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin: 0;
  text-align: center;
}

.closing__brand-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--color-main);
}

.closing__brand-tagline {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-taupe);
}

@keyframes btn-pulse {
  0%,
  100% {
    box-shadow: 0 8px 22px rgba(94, 11, 21, 0.28);
  }

  50% {
    box-shadow:
      0 10px 32px rgba(144, 50, 61, 0.45),
      0 0 0 3px rgba(188, 128, 52, 0.2);
  }
}

.closing__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  color: #fff;
  background: linear-gradient(135deg, var(--color-main) 0%, var(--color-secondary) 100%);
  border: none;
  border-radius: var(--radius);
  box-shadow: 0 8px 22px rgba(94, 11, 21, 0.26);
  animation: btn-pulse 2.2s ease-in-out infinite;
  transition: transform 0.2s ease;
}

.closing__btn:hover {
  transform: translateY(-2px);
  animation-play-state: paused;
  box-shadow: 0 12px 28px rgba(94, 11, 21, 0.35);
}

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

.closing__btn:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
}

@media (min-width: 720px) {
  .closing__panel {
    grid-template-columns: 1fr auto;
    gap: 2rem;
    padding: 1.35rem 1.75rem;
  }

  .closing__verse {
    margin-bottom: 0.4rem;
    font-size: 1.65rem;
  }

  .closing__aside {
    flex-shrink: 0;
    align-items: center;
    min-width: 220px;
    padding: 0 0 0 2rem;
    border-top: none;
    border-left: 1px solid var(--border);
  }

  .closing__btn {
    width: 100%;
    max-width: 260px;
  }
}

@media (min-width: 900px) {
  .closing__panel {
    padding: 1.5rem 2rem;
  }

  .closing__verse {
    font-size: 1.85rem;
  }

  .closing__aside {
    min-width: 280px;
  }
}

.closing__legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.25rem 0.5rem;
  margin: 1.25rem 0 0;
  font-size: 0.7rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.65);
  text-align: center;
}

.closing__legal span:first-child {
  font-weight: 500;
}

.closing__legal-sep {
  opacity: 0.5;
}

/* Sticky bar */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 1.25rem;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 24px rgba(94, 11, 21, 0.06);
  transform: translateY(100%);
  transition: transform 0.3s;
}

.sticky-bar.is-visible {
  transform: translateY(0);
}

.sticky-bar__name {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
}

.sticky-bar__price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-main);
}

.sticky-bar__cta {
  flex-shrink: 0;
  padding: 0.6rem 0.85rem;
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
  animation: btn-pulse 2.2s ease-in-out infinite;
}

.sticky-bar__cta:hover {
  animation-play-state: paused;
}

/* Responsive */
@media (min-width: 768px) {
  .hero {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    gap: 3rem;
    padding-top: 3rem;
  }

  .hero__gallery {
    align-self: start;
  }

  .cards-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    max-width: 1400px;
    margin: 0 auto;
  }

  .review-card__img {
    width: 7.5rem;
  }

  .closing__inner {
    max-width: 1400px;
    margin: 0 auto;
  }

  .closing__panel {
    padding: 1.35rem 2rem;
  }

}

@media (prefers-reduced-motion: reduce) {
  .closing__btn,
  .sticky-bar__cta {
    animation: none;
  }

  html {
    scroll-behavior: auto;
  }
}
