:root {
  --bg: #070707;
  --bg-2: #101010;
  --graphite: #161616;
  --gold: #c9a227;
  --gold-2: #e4c56a;
  --wine: #6e1c2c;
  --wine-2: #8e2438;
  --ivory: #f3ead8;
  --muted: #b7ae9f;
  --line: rgba(201, 162, 39, 0.28);
  --font-display: "Cinzel", serif;
  --font-serif: "Cormorant Garamond", serif;
  --font-sans: "Outfit", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--ivory);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 8;
  opacity: 0.08;
  mix-blend-mode: overlay;
  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='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grainShift 8s steps(6) infinite;
}

.orb {
  pointer-events: none;
  position: fixed;
  z-index: 1;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.28;
  mix-blend-mode: screen;
}

.orb-gold {
  width: 42vw;
  height: 42vw;
  max-width: 520px;
  max-height: 520px;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.55), transparent 70%);
  top: -8%;
  right: -10%;
  animation: orbDrift 18s ease-in-out infinite;
}

.orb-wine {
  width: 48vw;
  height: 48vw;
  max-width: 620px;
  max-height: 620px;
  background: radial-gradient(circle, rgba(142, 36, 56, 0.5), transparent 70%);
  bottom: 8%;
  left: -14%;
  animation: orbDrift 22s ease-in-out infinite reverse;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0;
  z-index: 40;
  background: linear-gradient(90deg, var(--wine-2), var(--gold), var(--gold-2));
  box-shadow: 0 0 12px rgba(201, 162, 39, 0.55);
  transform-origin: left;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.eyebrow {
  font-family: var(--font-sans);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--gold);
  margin-bottom: 0.85rem;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
}

h2 {
  font-size: clamp(1.7rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.section-lead {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--muted);
  max-width: 40rem;
}

.section-head {
  margin-bottom: 2.5rem;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  padding: 0.9rem 0;
  transition: background 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(7, 7, 7, 0.92);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.logo-mark {
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-display);
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.logo:hover .logo-mark {
  box-shadow: 0 0 18px rgba(201, 162, 39, 0.45);
  transform: rotate(-8deg);
}

.logo-text {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav {
  display: none;
  align-items: center;
  gap: 1.4rem;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav a {
  position: relative;
  transition: color 0.25s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav a:hover {
  color: var(--gold);
}

.nav a:hover::after {
  width: 100%;
}

.nav-cta {
  border: 1px solid var(--gold);
  padding: 0.55rem 0.9rem;
  color: var(--gold) !important;
  overflow: hidden;
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover {
  background: var(--gold);
  color: #140f05 !important;
}

.menu-btn {
  width: 2.4rem;
  height: 2.4rem;
  background: transparent;
  border: 1px solid var(--line);
  display: grid;
  place-content: center;
  gap: 5px;
  cursor: pointer;
  position: relative;
  z-index: 21;
}

.menu-btn span {
  display: block;
  width: 16px;
  height: 1px;
  background: var(--ivory);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-btn[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-btn[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-btn[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav.open {
  display: flex;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  flex-direction: column;
  background: rgba(7, 7, 7, 0.98);
  padding: 1.2rem 1.25rem 1.6rem;
  border-bottom: 1px solid var(--line);
  animation: dropNav 0.35s ease;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: 7.5rem 0 6.5rem;
  overflow: hidden;
}

.hero-media,
.hero-media img,
.hero-veil,
.hero-rays {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 118%;
  object-fit: cover;
  filter: grayscale(0.28) contrast(1.12) saturate(0.9);
  transform: scale(1.08);
  animation: kenBurns 22s ease-in-out infinite alternate;
  will-change: transform;
}

.hero-veil {
  background:
    linear-gradient(180deg, rgba(7, 7, 7, 0.55) 0%, rgba(7, 7, 7, 0.28) 35%, rgba(7, 7, 7, 0.92) 100%),
    radial-gradient(ellipse at 20% 80%, rgba(110, 28, 44, 0.42), transparent 45%);
}

.hero-rays {
  background: repeating-linear-gradient(
    115deg,
    transparent 0 18px,
    rgba(201, 162, 39, 0.035) 18px 19px
  );
  mix-blend-mode: overlay;
  animation: raysSweep 14s linear infinite;
}

.hero-content {
  position: relative;
  z-index: 2;
}

h1 {
  font-size: clamp(2.1rem, 7vw, 4.6rem);
  max-width: 14ch;
  margin-bottom: 1.2rem;
}

h1 em {
  font-style: italic;
  font-family: var(--font-serif);
  color: var(--gold-2);
  font-weight: 500;
  background: linear-gradient(90deg, var(--gold-2), #fff4c8, var(--gold));
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 5s ease infinite;
}

.hero-lead {
  max-width: 38rem;
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 1.8rem;
}

.hero-lead strong {
  color: var(--ivory);
  font-weight: 500;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.1rem;
  padding: 0.85rem 1.35rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

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

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, #a7841a 100%);
  color: #140f05;
}

.btn-gold::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.45) 45%, transparent 70%);
  transform: translateX(-120%);
}

.btn-gold:hover::before {
  animation: btnShine 0.8s ease;
}

.glow-btn {
  box-shadow: 0 0 0 rgba(201, 162, 39, 0.0);
  animation: ctaPulse 2.6s ease-in-out infinite;
}

.btn-ghost,
.btn-outline {
  border-color: var(--line);
  background: transparent;
  color: var(--ivory);
}

.btn-ghost:hover,
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 162, 39, 0.06);
}

.btn-xl {
  width: 100%;
  min-height: 3.5rem;
  font-size: 0.84rem;
}

.hero-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.55rem 1rem;
  padding-top: 0.4rem;
  border-top: 1px solid var(--line);
  max-width: 28rem;
}

.price-label,
.price-note {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-value {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--gold);
}

.pulse-gold {
  animation: goldPulse 2.4s ease-in-out infinite;
}

.hero-scroll {
  margin-top: 2.2rem;
  width: 22px;
  height: 36px;
  border: 1px solid var(--gold);
  border-radius: 20px;
  position: relative;
  opacity: 0.75;
}

.hero-scroll span {
  position: absolute;
  left: 50%;
  top: 7px;
  width: 4px;
  height: 8px;
  margin-left: -2px;
  background: var(--gold);
  border-radius: 4px;
  animation: scrollDot 1.6s ease-in-out infinite;
}

.tension {
  padding: 5rem 0 4rem;
  position: relative;
}

.tension-grid {
  display: grid;
  gap: 1.8rem;
}

.tension-photo {
  overflow: hidden;
  border: 1px solid var(--line);
  position: relative;
}

.tension-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(7, 7, 7, 0.45));
  pointer-events: none;
}

.tension-photo img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  filter: grayscale(0.25) saturate(0.85);
  transition: transform 1.1s ease, filter 0.6s ease;
}

.tension-photo:hover img {
  transform: scale(1.08);
  filter: grayscale(0.05) saturate(1);
}

.tension-copy h2 {
  max-width: 16ch;
}

.tension-copy p {
  color: var(--muted);
  margin-bottom: 1rem;
  font-family: var(--font-serif);
  font-size: 1.18rem;
}

.check-list {
  list-style: none;
  display: grid;
  gap: 0.7rem;
  margin-top: 1.4rem;
}

.check-list li {
  padding-left: 1.4rem;
  position: relative;
  color: var(--ivory);
  font-size: 0.95rem;
}

.check-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border: 1px solid var(--gold);
  position: absolute;
  left: 0;
  top: 0.45rem;
  animation: tickGlow 2.8s ease-in-out infinite;
}

.benefits,
.errors,
.separate,
.faq {
  padding: 4.5rem 0;
}

.benefits {
  background: linear-gradient(180deg, #070707 0%, #101010 100%);
}

.benefit-grid,
.error-grid,
.separate-grid {
  display: grid;
  gap: 1rem;
}

.benefit-card,
.error-card,
.separate-card,
.discover-item,
.offer-card,
.faq-item {
  background: var(--graphite);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.benefit-card,
.separate-card,
.discover-item,
.error-card {
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
}

.benefit-card:hover,
.separate-card:hover,
.discover-item:hover,
.error-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35), 0 0 24px rgba(201, 162, 39, 0.12);
}

.benefit-card,
.separate-card,
.discover-item {
  padding: 1.4rem;
}

.benefit-num,
.error-card span,
.separate-card span {
  color: var(--gold);
  font-family: var(--font-display);
  letter-spacing: 0.12em;
  font-size: 0.85rem;
}

.benefit-card h3,
.discover-item h3,
.separate-card h3 {
  font-size: 1.15rem;
  margin: 0.7rem 0 0.55rem;
}

.benefit-card p,
.discover-item p,
.separate-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.error-grid {
  list-style: none;
  counter-reset: none;
}

.error-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.2rem;
  min-height: 5.2rem;
}

.error-card p {
  font-family: var(--font-serif);
  font-size: 1.18rem;
}

.error-card.featured {
  border-color: var(--gold);
  background: linear-gradient(90deg, rgba(110, 28, 44, 0.35), var(--graphite));
  animation: featuredGlow 3.4s ease-in-out infinite;
}

.discover {
  position: relative;
  padding: 5.5rem 0;
  overflow: hidden;
}

.discover-bg {
  position: absolute;
  inset: -8% 0;
}

.discover-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.5) brightness(0.35);
  transform: scale(1.08);
  will-change: transform;
}

.discover-inner {
  position: relative;
  z-index: 1;
}

.discover-list {
  display: grid;
  gap: 1rem;
}

.discover-item {
  background: rgba(16, 16, 16, 0.78);
  backdrop-filter: blur(8px);
}

.offer {
  padding: 2rem 0 4.5rem;
}

.offer-card {
  padding: 2rem 1.3rem 2.2rem;
  border: 1px solid var(--gold);
  background:
    radial-gradient(circle at top right, rgba(110, 28, 44, 0.28), transparent 40%),
    #121212;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.offer-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: conic-gradient(from 180deg, transparent, rgba(201, 162, 39, 0.45), transparent 30%);
  animation: spinBorder 8s linear infinite;
  z-index: 0;
}

.offer-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  background:
    radial-gradient(circle at top right, rgba(110, 28, 44, 0.28), transparent 40%),
    #121212;
  z-index: 1;
}

.offer-card > * {
  position: relative;
  z-index: 2;
}

.offer-badge {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.35rem 0.75rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.68rem;
  animation: badgeFlicker 3.8s ease-in-out infinite;
}

.offer-sub {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--gold-2);
  margin: 0.35rem 0 1rem;
}

.offer-copy {
  color: var(--muted);
  max-width: 36rem;
  margin: 0 auto 1.5rem;
}

.offer-price-block {
  margin-bottom: 1.4rem;
}

.offer-from,
.offer-pay,
.offer-secure {
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.offer-price {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 8vw, 4.4rem);
  color: var(--gold);
  line-height: 1;
  margin: 0.3rem 0;
  text-shadow: 0 0 28px rgba(201, 162, 39, 0.35);
  animation: goldPulse 2.8s ease-in-out infinite;
}

.offer-points {
  list-style: none;
  display: grid;
  gap: 0.55rem;
  margin: 0 auto 1.6rem;
  max-width: 28rem;
  text-align: left;
}

.offer-points li {
  padding-left: 1.1rem;
  position: relative;
}

.offer-points li::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--gold);
  position: absolute;
  left: 0;
  top: 0.5rem;
}

.offer-secure {
  margin-top: 0.9rem;
}

.section-head.muted h2,
.section-head.muted .section-lead {
  color: var(--muted);
}

.section-head.muted h2 {
  color: #d7d0c4;
}

.separate {
  background: #0b0b0b;
  padding-top: 3.5rem;
}

.separate-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.separate-card .btn {
  margin-top: auto;
}

.faq-wrap {
  max-width: 760px;
}

.faq-list {
  display: grid;
  gap: 0.7rem;
}

.faq-item {
  border: 1px solid rgba(201, 162, 39, 0.18);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.05rem 1.2rem;
  font-family: var(--font-display);
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  transition: color 0.25s ease, background 0.25s ease;
}

.faq-item summary:hover {
  color: var(--gold);
  background: rgba(201, 162, 39, 0.04);
}

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

.faq-item summary::after {
  content: "+";
  color: var(--gold);
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
  content: "-";
  transform: rotate(180deg);
}

.faq-item p {
  padding: 0 1.2rem 1.15rem;
  color: var(--muted);
  font-family: var(--font-serif);
  font-size: 1.15rem;
  animation: fadeUp 0.4s ease;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 2.5rem 0 6.5rem;
  text-align: center;
  color: var(--muted);
}

.footer-brand {
  font-family: var(--font-display);
  color: var(--ivory);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.site-footer a {
  display: inline-block;
  margin-top: 0.9rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
  transition: letter-spacing 0.3s ease;
}

.site-footer a:hover {
  letter-spacing: 0.16em;
}

.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 25;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.7rem 0.9rem calc(0.7rem + env(safe-area-inset-bottom));
  background: rgba(7, 7, 7, 0.96);
  border-top: 1px solid var(--gold);
  transform: translateY(110%);
  animation: slideCta 0.7s 1.1s ease forwards;
}

.mobile-cta-price span {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.mobile-cta-price strong {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 1.15rem;
}

.mobile-cta .btn {
  flex: 1;
  min-height: 2.8rem;
  padding: 0.7rem 0.6rem;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
}

.fade-up {
  animation: fadeUp 0.9s ease both;
}

.delay-1 { animation-delay: 0.12s; }
.delay-2 { animation-delay: 0.24s; }
.delay-3 { animation-delay: 0.36s; }
.delay-4 { animation-delay: 0.48s; }
.delay-5 { animation-delay: 0.7s; }

.reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.98);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.benefit-card:nth-child(1) { transition-delay: 0.05s; }
.benefit-card:nth-child(2) { transition-delay: 0.12s; }
.benefit-card:nth-child(3) { transition-delay: 0.19s; }
.benefit-card:nth-child(4) { transition-delay: 0.26s; }

.error-card:nth-child(odd) { transition-delay: 0.05s; }
.error-card:nth-child(even) { transition-delay: 0.14s; }

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

@keyframes kenBurns {
  from { transform: scale(1.08) translate3d(0, 0, 0); }
  to { transform: scale(1.18) translate3d(0, -3%, 0); }
}

@keyframes raysSweep {
  from { transform: translateX(-8%); }
  to { transform: translateX(8%); }
}

@keyframes shimmer {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes btnShine {
  to { transform: translateX(120%); }
}

@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201, 162, 39, 0.0), 0 8px 24px rgba(201, 162, 39, 0.18); }
  50% { box-shadow: 0 0 0 8px rgba(201, 162, 39, 0.0), 0 10px 32px rgba(201, 162, 39, 0.38); }
}

@keyframes goldPulse {
  0%, 100% { text-shadow: 0 0 0 rgba(201, 162, 39, 0); }
  50% { text-shadow: 0 0 22px rgba(201, 162, 39, 0.55); }
}

@keyframes scrollDot {
  0% { opacity: 1; transform: translateY(0); }
  80% { opacity: 0; transform: translateY(14px); }
  100% { opacity: 0; transform: translateY(14px); }
}

@keyframes orbDrift {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(8%, 10%, 0) scale(1.12); }
}

@keyframes grainShift {
  0%, 100% { transform: translate(0, 0); }
  20% { transform: translate(-2%, 1%); }
  40% { transform: translate(1%, -2%); }
  60% { transform: translate(-1%, 2%); }
  80% { transform: translate(2%, -1%); }
}

@keyframes dropNav {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: none; }
}

@keyframes tickGlow {
  0%, 100% { box-shadow: none; }
  50% { box-shadow: 0 0 8px var(--gold); }
}

@keyframes featuredGlow {
  0%, 100% { box-shadow: 0 0 0 rgba(201, 162, 39, 0); }
  50% { box-shadow: 0 0 28px rgba(110, 28, 44, 0.35); }
}

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

@keyframes badgeFlicker {
  0%, 100% { opacity: 1; }
  48% { opacity: 1; }
  50% { opacity: 0.65; }
  52% { opacity: 1; }
}

@keyframes slideCta {
  to { transform: none; }
}

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

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

  .mobile-cta {
    transform: none;
  }
}

@media (min-width: 768px) {
  .menu-btn,
  .mobile-cta {
    display: none;
  }

  .nav {
    display: flex;
  }

  .nav.open {
    position: static;
    flex-direction: row;
    background: transparent;
    padding: 0;
    border: 0;
    animation: none;
  }

  .tension-grid {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 3rem;
  }

  .tension-photo img {
    height: 520px;
  }

  .benefit-grid,
  .separate-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .error-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .discover-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .offer-card {
    padding: 3.2rem 3rem;
  }

  .site-footer {
    padding-bottom: 2.8rem;
  }
}

@media (min-width: 1024px) {
  .benefit-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .separate-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-actions .btn-gold {
    min-width: 22rem;
  }
}
