:root {
  --bg: #f7f4ee;
  --bg-alt: #fffdf8;
  --surface: rgba(255, 253, 248, 0.94);
  --surface-strong: #fffefb;
  --line: rgba(71, 64, 58, 0.12);
  --text: #2f2c2a;
  --muted: #655f5a;
  --accent: #7d9d82;
  --accent-strong: #5f7e66;
  --sage: #c8d4c7;
  --dusty-blue: #c9d5df;
  --mustard: #d0b167;
  --shadow: 0 18px 44px rgba(59, 50, 45, 0.08);
  --radius-xl: 16px;
  --radius-lg: 12px;
  --radius-md: 10px;
  --container: 1180px;
}

@font-face {
  font-family: "Inter";
  src: url("./assets/fonts/Inter-Variable.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Playfair Display";
  src: url("./assets/fonts/PlayfairDisplay-Variable.ttf") format("truetype");
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Trebuchet MS", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(196, 111, 82, 0.1), transparent 34%),
    radial-gradient(circle at top right, rgba(201, 213, 223, 0.34), transparent 30%),
    linear-gradient(180deg, #fffdf9 0%, #f7f4ee 48%, #f3efe7 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a.button {
  font: inherit;
}

.page-shell {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

.ambient {
  position: absolute;
  width: 34rem;
  height: 34rem;
  border-radius: 999px;
  filter: blur(26px);
  opacity: 0.7;
  pointer-events: none;
}

.ambient-left {
  top: 5rem;
  left: -11rem;
  background: rgba(200, 212, 199, 0.58);
}

.ambient-right {
  top: 14rem;
  right: -9rem;
  background: rgba(201, 213, 223, 0.56);
}

.topbar,
.hero,
.section,
.footer {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 2rem), var(--container));
  margin-inline: auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
}

.brand {
  display: inline-flex;
  align-items: flex-start;
}

.brand-lockup {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.brand strong,
.footer strong {
  display: block;
  font-size: 1.05rem;
}

.brand small,
.section-lead,
.hero-text,
.offer-card p,
.article-card p,
.review-card p,
.pain-card p,
.about-copy p,
.footer p {
  color: var(--muted);
  line-height: 1.75;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  min-width: 0;
  min-height: 0;
  padding: 0.24rem 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  font-family: "Inter", "Trebuchet MS", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.01em;
  color: rgba(101, 95, 90, 0.92);
  text-align: left;
}

.nav,
.topbar-actions,
.hero-actions,
.footer,
.footer-meta,
.slider-actions,
.section-actions {
  display: flex;
}

.nav {
  gap: 1.4rem;
  color: var(--muted);
}

.nav a,
.button,
.footer-meta a {
  transition:
    color 180ms ease,
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.nav a:hover,
.footer-meta a:hover {
  color: var(--accent-strong);
}

.topbar-actions {
  align-items: center;
  gap: 0.8rem;
}

.env-pill {
  padding: 0.55rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--muted);
  font-size: 0.92rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.2rem;
  border-radius: 10px;
  border: 1px solid transparent;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #fffaf7;
  box-shadow: 0 14px 24px rgba(95, 126, 102, 0.24);
}

.button-soft {
  background: rgba(125, 157, 130, 0.12);
  border-color: rgba(125, 157, 130, 0.32);
  color: var(--accent-strong);
}

.button-ghost,
.slider-button {
  background: rgba(125, 157, 130, 0.12);
  border: 1px solid rgba(125, 157, 130, 0.28);
  color: var(--accent-strong);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 2rem;
  padding: 2.35rem 0 2.4rem;
  align-items: center;
}

.hero-copy {
  display: grid;
  align-content: start;
  gap: 1.2rem;
}

.eyebrow {
  margin: 0 0 0.7rem;
  color: var(--accent-strong);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.74rem;
  font-weight: 700;
}

.hero h1,
.section h2,
.portrait-caption h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  line-height: 0.98;
  letter-spacing: -0.02em;
}

.hero h1 {
  font-size: clamp(3.15rem, 5.5vw, 4.95rem);
  line-height: 1.04;
  max-width: 11.5ch;
  margin-bottom: 0.2rem;
}

.hero-text {
  max-width: 37rem;
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.75;
  color: rgba(101, 95, 90, 0.96);
}

.hero-actions {
  gap: 0.9rem;
  margin-top: 0.35rem;
  flex-wrap: wrap;
}

.hero-diagnostic {
  margin-top: 0.8rem;
}

.hero-diagnostic-button {
  width: fit-content;
  border-radius: 8px;
  padding-inline: 1.35rem;
}

.hero-actions .button-primary {
  padding-inline: 1.45rem;
  border-radius: 8px;
}

.hero-visual {
  display: flex;
  justify-content: flex-end;
  margin-top: -0.35rem;
}

.portrait-card,
.pain-card,
.calm-message,
.about-note,
.offer-card,
.article-card,
.review-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.portrait-card {
  width: min(100%, 30rem);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  display: grid;
  gap: 0.85rem;
}

.portrait-photo {
  position: relative;
  min-height: 25.5rem;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.portrait-photo::before {
  content: "";
  position: absolute;
  inset: 7% 7% 9%;
  border-radius: 50% 50% 44% 44%;
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0) 42%),
    radial-gradient(circle at 50% 62%, rgba(224, 232, 221, 0.78), rgba(224, 232, 221, 0) 68%);
  filter: blur(12px);
  z-index: 0;
}

.portrait-image {
  position: relative;
  z-index: 1;
  width: 94%;
  height: 94%;
  object-fit: contain;
  object-position: center center;
  border-radius: 0;
  filter: drop-shadow(0 1.4rem 2.2rem rgba(77, 63, 47, 0.16));
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 1) 62%, rgba(0, 0, 0, 0.9) 74%, rgba(0, 0, 0, 0.55) 86%, transparent 100%);
  -webkit-mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 1) 62%, rgba(0, 0, 0, 0.9) 74%, rgba(0, 0, 0, 0.55) 86%, transparent 100%);
}

.portrait-caption {
  padding: 0 0.4rem 0.3rem;
}

.portrait-caption h2 {
  font-size: 2rem;
}

.section {
  padding: 2.8rem 0;
}

.section-heading {
  max-width: 48rem;
  margin-bottom: 1.5rem;
}

.section h2 {
  font-size: clamp(2.1rem, 4vw, 3.7rem);
}

.pain-grid,
.offer-grid {
  display: grid;
  gap: 1rem;
}

.pain-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.pain-card {
  padding: 1.5rem;
  min-height: 10.5rem;
}

.pain-image-card {
  margin: 0;
  padding: 0;
  min-height: auto;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.pain-image-card img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 27rem;
  object-fit: contain;
}

.pain-card p {
  margin: 0;
  font-size: 1.18rem;
  color: var(--text);
}

.calm-message {
  margin-top: 1rem;
  padding: 0.15rem 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.section-bridge {
  padding-top: 0.35rem;
  margin-top: -1.6rem;
}

.section-bridge-after-about {
  margin-top: 0.8rem;
  padding-bottom: 1.1rem;
}

.section-bridge-after-about .bridge-illustration img {
  width: min(100%, 56rem);
}

.section-bridge-after-reviews {
  margin-top: 0.8rem;
  padding-top: 0.35rem;
  padding-bottom: 1.1rem;
}

.section-bridge-after-reviews .bridge-illustration img {
  width: min(100%, 56rem);
  max-width: 100%;
  max-height: none;
}

.bridge-illustration {
  margin: 0;
  display: flex;
  justify-content: center;
}

.bridge-illustration img {
  display: block;
  width: min(100%, 46rem);
  height: auto;
}

.calm-message h3 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.75rem, 3vw, 2.45rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--text);
}

.calm-message h3 span {
  display: block;
}

.calm-message h3 span + span {
  margin-top: 0.22em;
}

.section-accent {
  border-radius: 16px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.74), transparent 42%),
    linear-gradient(135deg, rgba(200, 212, 199, 0.48), rgba(244, 240, 233, 0.92));
  border: 1px solid var(--line);
  padding: 2rem;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  gap: 1.4rem;
  align-items: stretch;
}

.about-aside {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.about-copy p:last-child {
  margin-bottom: 0;
}

.about-family-photo {
  margin: 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-family-frame {
  position: relative;
  width: min(100%, 30rem);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  aspect-ratio: 4 / 5;
}

.about-copy h2 {
  margin-top: 0;
}

.about-family-image {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 0;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.about-family-image::before {
  content: "";
  position: absolute;
  inset: 7% 7% 9%;
  border-radius: 50% 50% 44% 44%;
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0) 42%),
    radial-gradient(circle at 50% 62%, rgba(224, 232, 221, 0.78), rgba(224, 232, 221, 0) 68%);
  filter: blur(12px);
  z-index: 0;
}

.about-family-image img {
  position: relative;
  z-index: 1;
  width: 94%;
  height: 94%;
  display: block;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 1.4rem 2.2rem rgba(77, 63, 47, 0.16));
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 1) 62%, rgba(0, 0, 0, 0.9) 74%, rgba(0, 0, 0, 0.55) 86%, transparent 100%);
  -webkit-mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 1) 62%, rgba(0, 0, 0, 0.9) 74%, rgba(0, 0, 0, 0.55) 86%, transparent 100%);
}

.about-note {
  padding: 1.6rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(201, 213, 223, 0.34));
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.65rem;
  line-height: 1.32;
}

.about-note p {
  margin: 0;
  color: var(--text);
}

.offer-card {
  position: relative;
  display: grid;
  grid-template-rows: auto auto auto 1fr auto auto;
  gap: 1rem;
  align-content: start;
  padding: 1.6rem;
}

.slider-track.offer-carousel {
  display: flex;
  gap: 1rem;
  overflow: visible;
  transform: translateX(0);
  will-change: transform;
}

.offer-carousel-shell {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.45rem;
}

.slider-shell {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.45rem;
}

.offer-carousel-viewport {
  overflow: hidden;
}

.slider-viewport {
  overflow: hidden;
}

.slider-track.offer-carousel .offer-card {
  flex: 0 0 calc((100% - 2rem) / 3);
  min-height: 25.5rem;
  min-width: 0;
}

.offer-card p {
  margin: 0;
}

.offer-card .button {
  align-self: end;
}

.offer-meta {
  display: inline-grid;
  gap: 0.22rem;
  width: fit-content;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(125, 157, 130, 0.24);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.56);
}

.offer-meta-label {
  color: var(--muted);
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.offer-visual {
  margin: 0;
  padding: 0.5rem 0 0.1rem;
  display: flex;
  justify-content: center;
}

.offer-visual img {
  display: block;
  width: 100%;
  max-width: 15rem;
  height: auto;
}

.offer-card h3,
.article-card h3,
.review-card strong {
  margin: 0;
}

.offer-step,
.review-badge {
  display: inline-flex;
  width: fit-content;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: rgba(200, 212, 199, 0.4);
  color: var(--accent-strong);
  font-size: 0.85rem;
  font-weight: 700;
}

.offer-timer {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: grid;
  gap: 0.38rem;
  min-width: 11.4rem;
  padding: 0.58rem 0.62rem 0.64rem;
  border-radius: 16px;
  background: rgba(255, 248, 235, 0.98);
  border: 1px solid rgba(208, 177, 103, 0.4);
  color: #8a6132;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.1;
  text-align: left;
  box-shadow: 0 12px 24px rgba(127, 95, 49, 0.12);
}

.offer-timer-label {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(138, 97, 50, 0.88);
}

.offer-timer-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.35rem;
}

.offer-timer-cell {
  display: grid;
  justify-items: center;
  gap: 0.12rem;
  padding: 0.42rem 0.25rem 0.36rem;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 237, 214, 0.86));
  border: 1px solid rgba(208, 177, 103, 0.24);
  transform: translateY(0);
  transition:
    transform 180ms ease,
    opacity 180ms ease,
    box-shadow 180ms ease;
}

.offer-timer-value {
  font-size: 0.98rem;
  line-height: 1;
  color: #6f4f2b;
  font-variant-numeric: tabular-nums;
}

.offer-timer-unit {
  font-size: 0.62rem;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(111, 79, 43, 0.72);
}

.offer-card-featured {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(236, 226, 212, 0.92));
}

.slider-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.slider-actions,
.section-actions {
  gap: 0.75rem;
}

.social-invite {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 1.4rem;
  padding: 1.6rem 1.6rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.74), transparent 42%),
    linear-gradient(135deg, rgba(200, 212, 199, 0.48), rgba(244, 240, 233, 0.92));
  box-shadow: var(--shadow);
}

.social-invite-visual {
  margin: 0;
  flex: 0 0 min(100%, 17rem);
}

.social-invite-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.social-invite-copy {
  flex: 1 1 22rem;
  max-width: 38rem;
}

.social-invite-copy h3 {
  margin: 0;
  font-family: "Inter", "Trebuchet MS", sans-serif;
  font-size: 1.16rem;
  font-weight: 700;
  line-height: 1.45;
}

.social-invite-copy p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.75;
}

.social-invite-actions {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  justify-content: flex-start;
  align-items: flex-start;
}

.social-invite-actions .button {
  min-width: 10rem;
  min-height: 3.2rem;
}

.slider-button {
  min-height: 2.85rem;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  cursor: pointer;
}

#formats .slider-button-chevron,
#blog .slider-button-chevron,
#reviews .slider-button-chevron {
  min-width: 2rem;
  width: 2rem;
  min-height: 2rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  box-shadow: none;
  color: rgba(95, 126, 102, 0.9);
  font-size: 0;
  line-height: 1;
}

#formats .slider-button-chevron::before,
#blog .slider-button-chevron::before,
#reviews .slider-button-chevron::before {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
}

#formats .slider-button-chevron[data-slider-prev="formats"]::before,
#blog .slider-button-chevron[data-slider-prev="articles"]::before,
#reviews .slider-button-chevron[data-slider-prev="reviews"]::before {
  content: "<";
}

#formats .slider-button-chevron[data-slider-next="formats"]::before,
#blog .slider-button-chevron[data-slider-next="articles"]::before,
#reviews .slider-button-chevron[data-slider-next="reviews"]::before {
  content: ">";
}

#formats .slider-button-chevron:hover,
#blog .slider-button-chevron:hover,
#reviews .slider-button-chevron:hover {
  transform: translateY(-1px);
  color: var(--accent-strong);
}

.slider-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(18rem, 1fr);
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.35rem;
  scrollbar-width: thin;
}

.slider-track::-webkit-scrollbar {
  height: 8px;
}

.slider-track::-webkit-scrollbar-thumb {
  background: rgba(101, 95, 90, 0.22);
  border-radius: 999px;
}

.article-card,
.review-card {
  scroll-snap-align: start;
  min-height: 16rem;
  padding: 1.5rem;
}

.article-card h3,
.review-card p {
  font-size: 1.16rem;
}

.review-card {
  display: grid;
  align-content: start;
  gap: 1rem;
}

.review-card p {
  margin: 0;
}

.footer {
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.6rem 0 2rem;
  border-top: 1px solid var(--line);
  margin-top: 1rem;
}

.footer-meta {
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: revealUp 700ms ease forwards;
}

.reveal:nth-of-type(2) {
  animation-delay: 90ms;
}

.reveal:nth-of-type(3) {
  animation-delay: 180ms;
}

.reveal:nth-of-type(4) {
  animation-delay: 270ms;
}

.reveal:nth-of-type(5) {
  animation-delay: 360ms;
}

.reveal:nth-of-type(6) {
  animation-delay: 450ms;
}

@keyframes revealUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .topbar,
  .about-layout,
  .hero {
    grid-template-columns: 1fr;
  }

  .bridge-illustration {
    justify-content: center;
  }

  .topbar {
    display: grid;
  }

  .nav,
  .topbar-actions,
  .footer,
  .slider-heading {
    flex-wrap: wrap;
  }

  .social-invite {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .social-invite-actions {
    width: 100%;
  }

  .pain-grid {
    grid-template-columns: 1fr;
  }

  .pain-image-card img {
    max-height: none;
  }

  .hero-visual {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .topbar,
  .hero,
  .section,
  .footer {
    width: min(calc(100% - 1.2rem), var(--container));
  }

  .hero {
    padding-top: 1.45rem;
  }

  .topbar {
    gap: 0.55rem;
    padding: 0.95rem 0 0.8rem;
  }

  .slider-heading {
    align-items: flex-start;
  }

  .hero h1 {
    max-width: 11ch;
    font-size: clamp(2.5rem, 10.8vw, 3.55rem);
  }

  .brand {
    align-items: flex-start;
  }

  .brand strong {
    font-size: 0.96rem;
    line-height: 1.2;
  }

  .brand small {
    font-size: 0.76rem;
    line-height: 1.35;
  }

  .brand-mark {
    padding: 0.12rem 0;
    font-size: 0.82rem;
    line-height: 1.22;
  }


  .hero-copy,
  .hero-text {
    min-width: 0;
  }

  .hero-actions .button,
  .hero-actions .button,
  .hero-diagnostic-button {
    width: 100%;
    padding-inline: 1rem;
    line-height: 1.3;
  }

  .portrait-photo {
    min-height: 22rem;
  }

  .section-accent {
    padding: 1.2rem;
  }

  .section-heading {
    margin-bottom: 0.85rem;
  }

  .slider-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .section-actions {
    width: 100%;
  }

  .slider-button {
    width: 100%;
    min-height: 2.7rem;
  }

  .nav {
    width: 100%;
    gap: 0.42rem 0.72rem;
    justify-content: flex-start;
    font-size: 0.74rem;
    line-height: 1.3;
  }

  .nav a {
    display: inline-flex;
    align-items: center;
    min-height: 2rem;
    padding: 0.12rem 0;
  }

  .topbar-actions {
    justify-content: flex-start;
    width: 100%;
  }

  .topbar-actions .button {
    min-height: 2.5rem;
    padding-inline: 0.9rem;
    font-size: 0.92rem;
  }

  .social-invite {
    gap: 0.75rem;
    margin-top: 1rem;
    padding: 1.2rem;
  }

  .social-invite-visual {
    flex-basis: auto;
    width: min(100%, 12rem);
    margin-inline: auto;
  }

  .social-invite-copy {
    max-width: none;
  }

  .social-invite-copy h3 {
    font-size: 1.02rem;
    line-height: 1.35;
  }

  .social-invite-copy p {
    margin: 0.35rem 0 0;
    line-height: 1.65;
  }

  .social-invite-actions {
    gap: 0.55rem;
  }

  .social-invite-actions .button {
    width: 100%;
    min-height: 3rem;
    font-size: 0.96rem;
  }

  .slider-track {
    grid-auto-columns: 88%;
  }

  .slider-track.offer-carousel {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 92%;
    gap: 1rem;
    overflow-x: auto;
    transform: none !important;
    will-change: auto;
  }

  .offer-carousel-viewport {
    overflow: visible;
  }

  .offer-carousel-shell,
  .slider-shell {
    position: relative;
    grid-template-columns: minmax(0, 1fr);
  }

  #formats .slider-button-chevron,
  #blog .slider-button-chevron,
  #reviews .slider-button-chevron {
    position: absolute;
    top: 50%;
    z-index: 2;
    transform: translateY(-50%);
    width: 2.15rem;
    min-width: 2.15rem;
    min-height: 2.15rem;
    background: rgba(255, 253, 248, 0.86);
    border: 1px solid rgba(125, 157, 130, 0.2);
    backdrop-filter: blur(8px);
  }

  #formats .slider-button-chevron::before,
  #blog .slider-button-chevron::before,
  #reviews .slider-button-chevron::before {
    font-size: 1.65rem;
  }

  #formats .slider-button-chevron[data-slider-prev="formats"],
  #blog .slider-button-chevron[data-slider-prev="articles"],
  #reviews .slider-button-chevron[data-slider-prev="reviews"] {
    left: -0.2rem;
  }

  #formats .slider-button-chevron[data-slider-next="formats"],
  #blog .slider-button-chevron[data-slider-next="articles"],
  #reviews .slider-button-chevron[data-slider-next="reviews"] {
    right: -0.2rem;
  }

  .offer-carousel .offer-card {
    flex: initial;
    min-height: auto;
    padding: 1.25rem;
  }

  .offer-visual img {
    max-width: 12rem;
  }

  .offer-meta {
    width: 100%;
  }

  .section-actions .button {
    width: 100%;
  }

  .article-card,
  .review-card {
    min-height: auto;
    padding: 1.25rem;
  }

  .footer {
    align-items: flex-start;
  }
}
