/*
 * LYVO Worldclass — visual system 2.0
 * White space, editorial photography and precise lime accents.
 */
:root {
  --lyvo-black: #0a0a0a;
  --lyvo-charcoal: #171a18;
  --lyvo-graphite: #353936;
  --lyvo-gray: #6e736f;
  --lyvo-mist: #f2f4f1;
  --lyvo-mist-dark: #e6e9e4;
  --lyvo-lime: #9abb4e;
  --lyvo-lime-deep: #7f9f36;
  --lyvo-lime-soft: #dce9bc;
  --lyvo-forest: #0a0a0a;
  --lyvo-forest-deep: #0a0a0a;
  --lyvo-forest-soft: #353936;
  --lyvo-ivory: #ffffff;
  --lyvo-cream: #f2f4f1;
  --lyvo-gold: #7f9f36;
  --lyvo-gold-soft: #9abb4e;
  --lyvo-ink: #171a18;
  --lyvo-muted: #6e736f;
  --lyvo-white: #ffffff;
  --lyvo-border: #dfe3dd;
  --lyvo-shadow: 0 24px 70px rgba(10, 10, 10, 0.09);
  --lyvo-radius: 0;
  --lyvo-shell: 1440px;
  --lyvo-serif: "Manrope", "Inter", Arial, sans-serif;
  --lyvo-sans: "Inter", Arial, sans-serif;
}

body.lyvo-site {
  background: #fff;
  color: var(--lyvo-charcoal);
  font-family: var(--lyvo-sans);
  font-size: 16px;
  line-height: 1.65;
}

body.lyvo-menu-open {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--lyvo-black);
  font-family: var(--lyvo-serif);
  font-weight: 500;
  letter-spacing: -0.045em;
}

h1 {
  font-size: clamp(3.7rem, 7vw, 7.6rem);
}

h2 {
  font-size: clamp(2.8rem, 5.2vw, 5.7rem);
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.75rem);
}

::selection {
  background: var(--lyvo-lime);
  color: var(--lyvo-black);
}

:focus-visible {
  outline: 2px solid var(--lyvo-lime-deep);
  outline-offset: 4px;
}

.lyvo-shell {
  width: min(calc(100% - 80px), var(--lyvo-shell));
}

.lyvo-section {
  padding-block: clamp(100px, 11vw, 180px);
}

.lyvo-section--compact {
  padding-block: 100px;
}

.lyvo-eyebrow {
  gap: 18px;
  margin-bottom: 24px;
  color: var(--lyvo-lime-deep);
  font-family: var(--lyvo-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
}

.lyvo-eyebrow::after {
  width: 72px;
  background: var(--lyvo-lime);
}

.lyvo-eyebrow--light {
  color: var(--lyvo-lime-soft);
}

.lyvo-eyebrow--light::after {
  background: var(--lyvo-lime);
}

.lyvo-lead {
  color: var(--lyvo-graphite);
  font-size: clamp(1.08rem, 1.5vw, 1.3rem);
}

[data-lyvo-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 800ms cubic-bezier(0.2, 0.7, 0.2, 1), transform 800ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

[data-lyvo-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.lyvo-button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.wp-element-button,
.wc-block-components-button {
  min-height: 56px;
  padding: 15px 28px;
  border-color: var(--lyvo-black) !important;
  border-radius: 0 !important;
  background: var(--lyvo-black) !important;
  color: #fff !important;
  font-family: var(--lyvo-sans) !important;
  font-size: 0.84rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.045em;
  transition: color 220ms ease, background-color 220ms ease, border-color 220ms ease, transform 220ms ease !important;
}

.lyvo-button .lyvo-icon {
  width: 19px;
  height: 19px;
  transition: transform 220ms ease;
}

.lyvo-button:hover .lyvo-icon {
  transform: translateX(4px);
}

.lyvo-button:hover,
.lyvo-button:focus-visible,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.wc-block-components-button:hover {
  border-color: var(--lyvo-lime) !important;
  background: var(--lyvo-lime) !important;
  color: var(--lyvo-black) !important;
}

.lyvo-button--lime {
  border-color: var(--lyvo-lime) !important;
  background: var(--lyvo-lime) !important;
  color: var(--lyvo-black) !important;
}

.lyvo-button--lime:hover,
.lyvo-button--lime:focus-visible {
  border-color: #fff !important;
  background: #fff !important;
  color: var(--lyvo-black) !important;
}

.lyvo-button--outline {
  border-color: var(--lyvo-black) !important;
  background: transparent !important;
  color: var(--lyvo-black) !important;
}

.lyvo-text-link,
.lyvo-product-details {
  gap: 8px;
  border: 0;
  color: var(--lyvo-black);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.lyvo-text-link::after,
.lyvo-product-details::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -3px;
  left: 0;
  height: 1px;
  background: var(--lyvo-lime-deep);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.lyvo-text-link,
.lyvo-product-details {
  position: relative;
}

.lyvo-text-link:hover::after,
.lyvo-product-details:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.lyvo-text-link .lyvo-icon {
  width: 18px;
  height: 18px;
}

/* Selected LYVO identity */
.lyvo-brand-lockup {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  color: var(--lyvo-black);
}

.lyvo-brand-lockup--light {
  color: #fff;
}

.lyvo-wordmark {
  display: inline-flex;
  height: 1em;
  align-items: center;
  gap: 0.34em;
  color: inherit;
  font-family: "Manrope", sans-serif;
  font-size: 2.05rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  line-height: 1;
}

.lyvo-wordmark > span:not(.lyvo-mark) {
  display: inline-block;
}

.lyvo-mark {
  position: relative;
  display: inline-block;
  width: 0.88em;
  height: 1em;
  flex: 0 0 auto;
}

.lyvo-mark__stroke,
.lyvo-mark__wing {
  position: absolute;
  display: block;
  background: linear-gradient(145deg, #b7d667, var(--lyvo-lime-deep));
}

.lyvo-mark__stroke {
  inset: 0.04em 0.2em 0.02em 0.05em;
  clip-path: polygon(0 0, 27% 0, 65% 70%, 100% 70%, 73% 100%, 55% 100%);
}

.lyvo-mark__wing {
  top: 0.04em;
  right: 0;
  width: 0.55em;
  height: 0.47em;
  clip-path: polygon(34% 0, 100% 0, 68% 78%, 48% 100%, 0 100%);
}

.lyvo-wordmark__tagline {
  padding-left: 0.1em;
  color: currentColor;
  font-size: 0.51rem;
  font-weight: 500;
  letter-spacing: 0.29em;
  line-height: 1.2;
  text-transform: uppercase;
  white-space: nowrap;
}

.lyvo-wordmark__tagline b {
  color: var(--lyvo-lime);
  font-weight: 500;
}

.lyvo-custom-logo {
  width: auto;
  max-width: 210px;
  max-height: 48px;
}

.lyvo-image-wordmark {
  position: relative;
  display: block;
  width: 188px;
  height: 34px;
  overflow: hidden;
  background: #fff;
}

.lyvo-image-wordmark img {
  position: absolute;
  top: -73px;
  left: -50px;
  width: 282px;
  max-width: none;
  height: 188px;
  mix-blend-mode: multiply;
}

/* Header */
.lyvo-announcement {
  background: var(--lyvo-black);
  color: rgba(255,255,255,0.82);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.lyvo-announcement__inner {
  min-height: 30px;
  gap: 22px;
}

.lyvo-announcement i {
  width: 2px;
  height: 2px;
  background: var(--lyvo-lime);
}

.lyvo-header {
  border-color: rgba(10,10,10,0.1);
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(18px) saturate(1.4);
  transition: box-shadow 220ms ease, background-color 220ms ease;
}

.lyvo-header.is-scrolled {
  box-shadow: 0 10px 35px rgba(0,0,0,0.07);
}

.lyvo-header__inner {
  min-height: 80px;
  grid-template-columns: 220px 1fr 220px;
}

.lyvo-logo {
  min-width: 160px;
}

.lyvo-primary-nav {
  min-width: 0;
}

.lyvo-menu {
  gap: clamp(20px, 2.5vw, 48px);
}

.lyvo-menu a {
  padding: 29px 0 25px;
  color: var(--lyvo-charcoal);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.045em;
}

.lyvo-menu a::after {
  bottom: 22px;
  height: 2px;
  background: var(--lyvo-lime);
}

.lyvo-menu .current-menu-item > a,
.lyvo-menu .current_page_item > a {
  color: var(--lyvo-black);
}

.lyvo-header-actions {
  gap: 4px;
}

.lyvo-icon-button {
  color: var(--lyvo-black);
}

.lyvo-icon-button:hover {
  color: var(--lyvo-lime-deep);
}

.lyvo-cart-count {
  top: 2px;
  right: 1px;
  background: var(--lyvo-lime);
  color: var(--lyvo-black);
  font-weight: 700;
}

.lyvo-search-panel {
  border-color: var(--lyvo-border);
  background: #fff;
}

.lyvo-search-panel__inner > p {
  font-family: var(--lyvo-serif);
  font-size: 1.7rem;
  letter-spacing: -0.04em;
}

.lyvo-search-form input[type="search"] {
  border-color: var(--lyvo-border);
  border-radius: 0;
}

.lyvo-search-form input[type="search"]:focus {
  border-color: var(--lyvo-lime-deep);
  box-shadow: 0 0 0 3px rgba(154,187,78,0.15);
}

.lyvo-scroll-progress {
  position: fixed;
  z-index: 90;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  pointer-events: none;
}

.lyvo-scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--lyvo-lime);
  transform: scaleX(0);
  transform-origin: left;
}

/* Cinematic hero */
.lyvo-cinema-hero {
  position: relative;
  min-height: calc(100svh - 110px);
  overflow: hidden;
  background: var(--lyvo-black);
  color: #fff;
}

.lyvo-cinema-hero__media,
.lyvo-cinema-hero__shade {
  position: absolute;
  inset: 0;
}

.lyvo-cinema-hero__media {
  background-position: center 42%;
  background-size: cover;
  transform: scale(1.04);
  will-change: transform;
}

.lyvo-cinema-hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lyvo-cinema-hero__shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.52) 43%, rgba(0,0,0,0.1) 75%),
    linear-gradient(0deg, rgba(0,0,0,0.48), transparent 46%);
}

.lyvo-cinema-hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: calc(100svh - 110px);
  flex-direction: column;
  justify-content: center;
  padding-block: 95px 105px;
}

.lyvo-cinema-hero__content {
  max-width: 930px;
}

.lyvo-cinema-hero h1 {
  max-width: 970px;
  margin-bottom: 28px;
  color: #fff;
  font-size: clamp(4.2rem, 8.2vw, 8.9rem);
  font-weight: 450;
  letter-spacing: -0.065em;
  line-height: 0.88;
}

.lyvo-cinema-hero h1 em {
  color: var(--lyvo-lime);
  font-style: normal;
}

.lyvo-cinema-hero__content > p:not(.lyvo-eyebrow) {
  max-width: 510px;
  color: rgba(255,255,255,0.82);
  font-size: clamp(1.05rem, 1.4vw, 1.24rem);
}

.lyvo-cinema-hero .lyvo-button-row {
  align-items: center;
  margin-top: 38px;
}

.lyvo-ghost-link {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  gap: 12px;
  padding: 13px 20px;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 500;
}

.lyvo-ghost-link .lyvo-icon {
  width: 32px;
  height: 32px;
  padding: 7px;
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: 50%;
  transition: background-color 220ms ease, color 220ms ease;
}

.lyvo-ghost-link:hover .lyvo-icon {
  background: #fff;
  color: var(--lyvo-black);
}

.lyvo-cinema-hero__timeline {
  position: absolute;
  right: 0;
  bottom: 48px;
  display: grid;
  width: min(57%, 760px);
  grid-template-columns: repeat(4, 1fr);
}

.lyvo-cinema-hero__timeline > span {
  position: relative;
  display: grid;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.45);
  font-size: 0.64rem;
  letter-spacing: 0.1em;
}

.lyvo-cinema-hero__timeline > span::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--lyvo-lime);
  transition: width 4.5s linear;
}

.lyvo-cinema-hero__timeline > span.is-active {
  color: #fff;
}

.lyvo-cinema-hero__timeline > span.is-active::before {
  width: 100%;
}

.lyvo-cinema-hero__timeline b {
  margin-top: 5px;
  font-size: 0.72rem;
  font-weight: 500;
}

.lyvo-scroll-cue {
  position: absolute;
  bottom: 41px;
  left: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.65);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lyvo-scroll-cue span {
  position: relative;
  width: 1px;
  height: 36px;
  overflow: hidden;
  background: rgba(255,255,255,0.35);
}

.lyvo-scroll-cue span::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--lyvo-lime);
  animation: lyvo-scroll-line 2s ease infinite;
}

@keyframes lyvo-scroll-line {
  0% { transform: translateY(0); }
  100% { transform: translateY(200%); }
}

/* Premium benefit strip */
.lyvo-premium-strip {
  border-bottom: 1px solid var(--lyvo-border);
  background: #fff;
}

.lyvo-premium-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.lyvo-premium-strip__grid > div {
  display: flex;
  min-height: 116px;
  align-items: center;
  gap: 18px;
  padding: 26px 32px;
  border-right: 1px solid var(--lyvo-border);
}

.lyvo-premium-strip__grid > div:first-child {
  padding-left: 0;
}

.lyvo-premium-strip__grid > div:last-child {
  border-right: 0;
}

.lyvo-premium-strip .lyvo-icon {
  width: 27px;
  height: 27px;
  color: var(--lyvo-lime-deep);
}

.lyvo-premium-strip__grid span:not(.lyvo-icon) {
  display: grid;
  color: var(--lyvo-gray);
  font-size: 0.72rem;
  line-height: 1.45;
}

.lyvo-premium-strip__grid strong {
  color: var(--lyvo-black);
  font-size: 0.78rem;
  font-weight: 600;
}

/* Manifesto */
.lyvo-manifesto {
  padding-block: clamp(120px, 14vw, 220px);
  background: #fff;
}

.lyvo-manifesto__intro {
  max-width: 1120px;
}

.lyvo-manifesto__intro h2 {
  margin-bottom: 46px;
  font-size: clamp(3.35rem, 6.4vw, 7.1rem);
  line-height: 0.98;
}

.lyvo-manifesto__intro h2 em {
  color: var(--lyvo-lime-deep);
  font-style: normal;
}

.lyvo-manifesto__intro > p:last-child {
  max-width: 650px;
  margin-left: min(24vw, 330px);
  color: var(--lyvo-gray);
  font-size: clamp(1.05rem, 1.4vw, 1.3rem);
}

.lyvo-manifesto__grid {
  display: grid;
  margin-top: clamp(80px, 10vw, 150px);
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--lyvo-border);
}

.lyvo-manifesto__grid article {
  min-height: 260px;
  padding: 34px 54px 34px 0;
  border-right: 1px solid var(--lyvo-border);
}

.lyvo-manifesto__grid article + article {
  padding-left: 54px;
}

.lyvo-manifesto__grid article:last-child {
  border-right: 0;
}

.lyvo-manifesto__grid article > span {
  color: var(--lyvo-lime-deep);
  font-size: 0.72rem;
  font-weight: 600;
}

.lyvo-manifesto__grid h3 {
  margin-top: 72px;
  margin-bottom: 12px;
  font-size: clamp(1.6rem, 2.2vw, 2.2rem);
}

.lyvo-manifesto__grid p {
  max-width: 340px;
  color: var(--lyvo-gray);
}

/* Objective experience */
.lyvo-goals-experience {
  overflow: hidden;
  background: var(--lyvo-mist);
}

.lyvo-section-heading {
  margin-bottom: clamp(42px, 5vw, 75px);
}

.lyvo-section-heading h2 {
  margin-bottom: 16px;
  line-height: 0.98;
}

.lyvo-section-heading p:last-child {
  color: var(--lyvo-gray);
}

.lyvo-section-heading--row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 36px;
}

.lyvo-carousel-controls {
  display: flex;
  gap: 10px;
  padding-bottom: 12px;
}

.lyvo-carousel-controls button {
  width: 54px;
  height: 54px;
  border: 1px solid #cdd2ca;
  border-radius: 50%;
  background: transparent;
  color: var(--lyvo-black);
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease;
}

.lyvo-carousel-controls button:hover {
  border-color: var(--lyvo-lime);
  background: var(--lyvo-lime);
}

.lyvo-goal-carousel {
  display: flex;
  margin-right: calc((100vw - min(calc(100vw - 80px), var(--lyvo-shell))) / -2);
  gap: 22px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.lyvo-goal-carousel::-webkit-scrollbar {
  display: none;
}

.lyvo-goal-card {
  position: relative;
  min-width: min(36vw, 510px);
  min-height: 610px;
  overflow: hidden;
  color: #fff;
  scroll-snap-align: start;
}

.lyvo-goal-card img,
.lyvo-goal-card__veil {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.lyvo-goal-card img {
  object-fit: cover;
  filter: saturate(0.78);
  transition: transform 800ms cubic-bezier(0.2,0.7,0.2,1), filter 400ms ease;
}

.lyvo-goal-card__veil {
  background: linear-gradient(0deg, rgba(0,0,0,0.79), rgba(0,0,0,0.06) 67%);
}

.lyvo-goal-card__icon {
  position: absolute;
  z-index: 2;
  top: 26px;
  right: 26px;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  backdrop-filter: blur(8px);
}

.lyvo-goal-card__icon .lyvo-icon {
  width: 24px;
  height: 24px;
}

.lyvo-goal-card__content {
  position: absolute;
  z-index: 2;
  right: 34px;
  bottom: 34px;
  left: 34px;
  display: grid;
}

.lyvo-goal-card__content b {
  font-family: var(--lyvo-serif);
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 500;
  letter-spacing: -0.05em;
}

.lyvo-goal-card__content small {
  max-width: 320px;
  margin-top: 10px;
  color: rgba(255,255,255,0.78);
  font-size: 0.88rem;
  line-height: 1.55;
}

.lyvo-goal-card__content i {
  margin-top: 24px;
  color: var(--lyvo-lime-soft);
  font-size: 0.73rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lyvo-goal-card:hover img {
  filter: saturate(1);
  transform: scale(1.045);
}

.lyvo-goals-experience__all {
  margin-top: 46px;
}

/* Interactive quiz */
.lyvo-quiz {
  display: grid;
  min-height: 820px;
  grid-template-columns: 0.9fr 1.1fr;
  background: var(--lyvo-black);
  color: #fff;
}

.lyvo-quiz__image {
  min-height: 680px;
  background-position: center;
  background-size: cover;
  filter: saturate(0.75) contrast(1.02);
}

.lyvo-quiz__panel {
  display: flex;
  align-items: center;
  padding: clamp(70px, 8vw, 130px);
}

.lyvo-quiz__content {
  width: min(100%, 690px);
  margin-inline: auto;
}

.lyvo-quiz__progress {
  height: 2px;
  margin-bottom: 42px;
  overflow: hidden;
  background: rgba(255,255,255,0.18);
}

.lyvo-quiz__progress span {
  display: block;
  height: 100%;
  background: var(--lyvo-lime);
  transition: width 350ms ease;
}

.lyvo-quiz__count {
  color: rgba(255,255,255,0.48);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.lyvo-quiz h2 {
  max-width: 650px;
  margin: 18px 0 35px;
  color: #fff;
  font-size: clamp(2.4rem, 4.2vw, 4.9rem);
  line-height: 1;
}

.lyvo-quiz__step[hidden] {
  display: none;
}

.lyvo-quiz__step.is-active {
  animation: lyvo-step-in 350ms ease both;
}

@keyframes lyvo-step-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.lyvo-quiz__options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.lyvo-quiz__options--single {
  grid-template-columns: 1fr;
}

.lyvo-quiz__options button {
  display: flex;
  min-height: 98px;
  align-items: center;
  gap: 18px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,0.2);
  background: transparent;
  color: #fff;
  text-align: left;
  cursor: pointer;
  transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.lyvo-quiz__options button:hover,
.lyvo-quiz__options button:focus-visible {
  border-color: var(--lyvo-lime);
  background: rgba(154,187,78,0.1);
  transform: translateY(-2px);
}

.lyvo-quiz__options .lyvo-icon {
  width: 30px;
  height: 30px;
  color: var(--lyvo-lime);
}

.lyvo-quiz__options button > span:not(.lyvo-icon) {
  display: grid;
  gap: 3px;
}

.lyvo-quiz__options b {
  font-size: 0.9rem;
  font-weight: 600;
}

.lyvo-quiz__options small {
  color: rgba(255,255,255,0.55);
  font-size: 0.72rem;
}

.lyvo-quiz__back {
  padding: 14px 0;
  border: 0;
  background: transparent;
  color: rgba(255,255,255,0.64);
  font-size: 0.75rem;
  cursor: pointer;
}

.lyvo-quiz__back:hover {
  color: var(--lyvo-lime);
}

.lyvo-quiz__result > p:not(.lyvo-quiz__count) {
  max-width: 530px;
  color: rgba(255,255,255,0.7);
}

.lyvo-quiz__result .lyvo-button {
  margin: 25px 20px 20px 0;
}

.lyvo-quiz__notice {
  max-width: 620px;
  margin-top: 26px;
  color: rgba(255,255,255,0.38);
  font-size: 0.66rem;
  line-height: 1.5;
}

/* Products */
.lyvo-curated-products {
  background: #fff;
}

.lyvo-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.lyvo-product-card {
  border: 0;
  background: #fff;
  transition: transform 260ms ease;
}

.lyvo-product-card:hover {
  transform: translateY(-5px);
}

.lyvo-product-card__image {
  position: relative;
  display: grid;
  min-height: 470px;
  overflow: hidden;
  place-items: center;
  background: var(--lyvo-mist);
}

.lyvo-product-card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  pointer-events: none;
  transition: border-color 220ms ease;
}

.lyvo-product-card:hover .lyvo-product-card__image::after {
  border-color: var(--lyvo-lime);
}

.lyvo-product-card__image img {
  width: 82%;
  height: 390px;
  padding: 22px;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform 500ms cubic-bezier(0.2,0.7,0.2,1);
}

.lyvo-product-card:hover .lyvo-product-card__image img {
  transform: scale(1.035);
}

.lyvo-product-badge {
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 18px;
  padding: 7px 11px;
  background: var(--lyvo-black);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.lyvo-product-card__body {
  padding: 24px 2px 0;
}

.lyvo-product-card__brand {
  margin-bottom: 7px;
  color: var(--lyvo-lime-deep);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.lyvo-product-card h3 {
  min-height: 52px;
  margin-bottom: 10px;
  font-size: 1.12rem;
  font-weight: 550;
  letter-spacing: -0.025em;
  line-height: 1.35;
}

.lyvo-product-card__price {
  color: var(--lyvo-black);
  font-size: 0.95rem;
  font-weight: 600;
}

.lyvo-product-card__actions {
  align-items: center;
  margin-top: 20px;
}

.lyvo-product-card__actions .lyvo-button {
  flex: 1;
  min-height: 49px;
  padding: 13px 18px;
  font-size: 0.72rem !important;
}

.lyvo-product-card__actions .lyvo-text-link {
  font-size: 0.72rem;
}

.lyvo-empty-state {
  padding: 45px;
  border: 1px solid var(--lyvo-border);
  background: var(--lyvo-mist);
  color: var(--lyvo-gray);
}

/* Proof */
.lyvo-proof {
  padding-block: clamp(110px, 13vw, 190px);
  background: var(--lyvo-charcoal);
  color: #fff;
}

.lyvo-proof__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(65px, 10vw, 160px);
}

.lyvo-proof__statement {
  position: sticky;
  top: 150px;
  align-self: start;
}

.lyvo-proof h2,
.lyvo-proof h3 {
  color: #fff;
}

.lyvo-proof__statement h2 {
  max-width: 560px;
  font-size: clamp(3rem, 5vw, 5.5rem);
}

.lyvo-proof__statement > p:last-child {
  max-width: 470px;
  color: rgba(255,255,255,0.62);
}

.lyvo-proof__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(255,255,255,0.18);
}

.lyvo-proof__items article {
  min-height: 280px;
  padding: 36px 34px;
  border-right: 1px solid rgba(255,255,255,0.18);
  border-bottom: 1px solid rgba(255,255,255,0.18);
}

.lyvo-proof__items article:nth-child(even) {
  border-right: 0;
}

.lyvo-proof__items .lyvo-icon {
  width: 34px;
  height: 34px;
  color: var(--lyvo-lime);
}

.lyvo-proof__items h3 {
  margin-top: 80px;
  margin-bottom: 10px;
  font-size: 1.4rem;
  letter-spacing: -0.025em;
}

.lyvo-proof__items p {
  color: rgba(255,255,255,0.55);
  font-size: 0.82rem;
}

/* Testimonials */
.lyvo-voices {
  background: var(--lyvo-mist);
}

.lyvo-voices__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--lyvo-border);
}

.lyvo-voices blockquote {
  min-height: 390px;
  padding: 36px 42px;
  margin: 0;
  border-right: 1px solid var(--lyvo-border);
}

.lyvo-voices blockquote:last-child {
  border-right: 0;
}

.lyvo-voices blockquote > span {
  color: var(--lyvo-lime-deep);
  font-family: Georgia, serif;
  font-size: 4rem;
  line-height: 1;
}

.lyvo-voices blockquote > p {
  margin-top: 50px;
  color: var(--lyvo-black);
  font-family: var(--lyvo-serif);
  font-size: clamp(1.3rem, 1.8vw, 1.8rem);
  letter-spacing: -0.035em;
  line-height: 1.4;
}

.lyvo-voices blockquote footer {
  display: grid;
  margin-top: 35px;
  color: var(--lyvo-gray);
  font-size: 0.73rem;
}

.lyvo-voices blockquote footer b {
  color: var(--lyvo-black);
}

.lyvo-partners {
  border-block: 1px solid var(--lyvo-border);
  background: #fff;
}

.lyvo-partners__inner {
  display: flex;
  min-height: 160px;
  align-items: center;
  justify-content: space-between;
  gap: 45px;
}

.lyvo-partners p {
  max-width: 250px;
  margin: 0;
  color: var(--lyvo-gray);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.lyvo-partners__inner > div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 28px 55px;
}

.lyvo-partners__inner > div span {
  color: var(--lyvo-graphite);
  font-family: var(--lyvo-serif);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

/* Journal */
.lyvo-journal-preview,
.lyvo-journal-page {
  background: #fff;
}

.lyvo-journal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 25px;
}

.lyvo-post-card__image {
  display: block;
  height: 340px;
  overflow: hidden;
  background: var(--lyvo-mist-dark);
}

.lyvo-post-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78);
  transition: transform 700ms cubic-bezier(0.2,0.7,0.2,1), filter 250ms ease;
}

.lyvo-post-card:hover .lyvo-post-card__image img {
  filter: saturate(1);
  transform: scale(1.04);
}

.lyvo-post-card__placeholder {
  display: grid;
  height: 100%;
  place-items: center;
}

.lyvo-post-card__placeholder .lyvo-mark {
  width: 65px;
  height: 75px;
}

.lyvo-post-card__body {
  padding-top: 22px;
}

.lyvo-post-card__body > p {
  display: flex;
  gap: 8px;
  color: var(--lyvo-gray);
  font-size: 0.67rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lyvo-post-card h3 {
  min-height: 66px;
  margin: 16px 0 22px;
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  line-height: 1.2;
}

.lyvo-page-hero {
  padding-block: clamp(110px, 13vw, 190px) 100px;
  background: var(--lyvo-mist);
}

.lyvo-page-hero h1 {
  max-width: 970px;
  margin-bottom: 25px;
}

.lyvo-page-hero p:last-child {
  color: var(--lyvo-gray);
  font-size: 1.1rem;
}

.lyvo-article-header {
  padding-block: clamp(90px, 11vw, 160px) 75px;
}

.lyvo-article-header__inner {
  max-width: 1080px;
}

.lyvo-article-header h1 {
  margin: 30px 0;
  font-size: clamp(3.2rem, 6vw, 6.8rem);
  line-height: 0.98;
}

.lyvo-article-header__inner > p {
  color: var(--lyvo-gray);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lyvo-article-cover {
  max-width: 1280px;
}

.lyvo-article-cover img {
  width: 100%;
  max-height: 760px;
  object-fit: cover;
}

.lyvo-article-content,
.lyvo-prose {
  width: min(calc(100% - 48px), 780px);
  margin-inline: auto;
  padding-block: 85px 140px;
  color: var(--lyvo-graphite);
  font-size: 1.06rem;
}

.lyvo-prose h2,
.lyvo-prose h3 {
  margin-top: 2em;
}

.lyvo-prose a {
  color: var(--lyvo-lime-deep);
  text-decoration: underline;
}

.lyvo-prose blockquote {
  padding-left: 28px;
  margin: 50px 0;
  border-left: 3px solid var(--lyvo-lime);
  color: var(--lyvo-black);
  font-family: var(--lyvo-serif);
  font-size: 1.45rem;
}

/* Contact */
.lyvo-contact-hero {
  padding-block: clamp(90px, 10vw, 150px);
  background: var(--lyvo-mist);
}

.lyvo-contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
  gap: clamp(60px, 9vw, 145px);
}

.lyvo-contact-intro {
  position: sticky;
  top: 150px;
}

.lyvo-contact-intro h1 {
  margin-top: 35px;
  font-size: clamp(3.5rem, 6vw, 6.2rem);
  line-height: 0.96;
}

.lyvo-contact-methods {
  display: grid;
  margin-top: 60px;
  border-top: 1px solid var(--lyvo-border);
}

.lyvo-contact-methods > * {
  display: grid;
  padding-block: 18px;
  border-bottom: 1px solid var(--lyvo-border);
}

.lyvo-contact-methods span {
  color: var(--lyvo-gray);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lyvo-contact-methods b {
  font-weight: 500;
}

.lyvo-contact-card {
  padding: clamp(35px, 5vw, 70px);
  background: #fff;
  box-shadow: var(--lyvo-shadow);
}

.lyvo-contact-form {
  display: grid;
  gap: 22px;
}

.lyvo-contact-form label {
  display: grid;
  gap: 8px;
}

.lyvo-contact-form label > span {
  color: var(--lyvo-graphite);
  font-size: 0.72rem;
  font-weight: 600;
}

.lyvo-contact-form input,
.lyvo-contact-form select,
.lyvo-contact-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 0;
  border: 0;
  border-bottom: 1px solid #cfd3cd;
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--lyvo-black);
}

.lyvo-contact-form input:focus,
.lyvo-contact-form select:focus,
.lyvo-contact-form textarea:focus {
  border-color: var(--lyvo-lime-deep);
}

.lyvo-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.lyvo-contact-form .lyvo-button {
  justify-self: start;
  margin-top: 10px;
}

.lyvo-form-privacy {
  color: var(--lyvo-gray);
  font-size: 0.64rem;
}

.lyvo-honeypot {
  position: absolute !important;
  left: -9999px !important;
}

/* Existing editorial pages upgraded */
.lyvo-editorial-hero {
  background: var(--lyvo-mist);
}

.lyvo-editorial-hero__grid {
  min-height: 690px;
}

.lyvo-editorial-hero__grid > div:first-child {
  padding-right: 70px;
}

.lyvo-editorial-hero h1 {
  font-size: clamp(3.5rem, 6vw, 6.5rem);
}

.lyvo-breadcrumbs {
  color: var(--lyvo-gray);
  font-size: 0.7rem;
  letter-spacing: 0.05em;
}

.lyvo-objective-grid {
  gap: 18px;
}

.lyvo-objective-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border: 0;
}

.lyvo-objective-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72);
  transition: transform 650ms cubic-bezier(0.2,0.7,0.2,1), filter 250ms ease;
}

.lyvo-objective-card:hover > img {
  filter: saturate(0.95);
  transform: scale(1.045);
}

.lyvo-objective-card::after {
  display: none;
}

.lyvo-objective-card__overlay {
  background: linear-gradient(0deg, rgba(0,0,0,0.78), rgba(0,0,0,0.08));
}

.lyvo-objective-card__content {
  padding: 30px;
}

.lyvo-objective-card__content h3 {
  color: #fff;
  font-family: var(--lyvo-serif);
  font-size: 2rem;
}

.lyvo-objective-card__content p {
  max-width: 310px;
  margin: 0 0 18px;
  color: rgba(255,255,255,0.72);
  font-size: 0.8rem;
  line-height: 1.5;
}

.lyvo-editorial-photo--goals {
  overflow: hidden;
  background: var(--lyvo-black);
}

.lyvo-editorial-photo--goals img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(1) contrast(1.06);
}

.lyvo-objective-disclaimer {
  padding-block: 28px;
  border-top: 1px solid var(--lyvo-border);
  background: var(--lyvo-mist);
}

.lyvo-objective-disclaimer p {
  max-width: 920px;
  margin: 0;
  color: var(--lyvo-gray);
  font-size: 0.7rem;
}

.lyvo-about-intro,
.lyvo-objectives-page .lyvo-section {
  background: #fff;
}

.lyvo-about-portrait {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  background: var(--lyvo-black);
}

.lyvo-about-portrait > img {
  width: 100%;
  height: 100%;
  min-height: 650px;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.72);
}

.lyvo-about-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.48), transparent 55%);
}

.lyvo-about-portrait__mark {
  position: absolute;
  z-index: 2;
  right: 30px;
  bottom: 30px;
  left: 30px;
  display: flex;
  align-items: center;
  gap: 17px;
  color: #fff;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lyvo-about-portrait__mark .lyvo-mark {
  width: 34px;
  height: 39px;
}

.lyvo-values-grid > div {
  border-color: var(--lyvo-border);
}

.lyvo-statement-band {
  background: var(--lyvo-black);
}

/* WooCommerce */
.lyvo-woocommerce-main {
  padding-top: 0;
  background: #fff;
}

.woocommerce-products-header {
  min-height: 410px;
  margin-top: 0;
  padding-top: 105px;
  background: var(--lyvo-mist);
}

.woocommerce-products-header::after {
  right: -90px;
  bottom: -210px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: var(--lyvo-lime-soft);
  opacity: 0.65;
}

.woocommerce-products-header__title {
  font-size: clamp(4rem, 7vw, 7rem);
}

.lyvo-shop-intro {
  position: relative;
  z-index: 2;
  max-width: 590px;
  color: var(--lyvo-gray);
}

.woocommerce .woocommerce-breadcrumb {
  padding-top: 32px;
  color: var(--lyvo-gray);
  font-size: 0.7rem;
}

.woocommerce ul.products {
  gap: 26px;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  padding-bottom: 24px;
  border: 0;
  background: #fff;
}

.woocommerce ul.products li.product a img {
  height: 390px;
  background: var(--lyvo-mist);
  mix-blend-mode: multiply;
  transition: transform 400ms ease;
}

.woocommerce ul.products li.product:hover a img {
  transform: scale(1.025);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  min-height: 58px;
  padding: 22px 0 0;
  color: var(--lyvo-black);
  font-family: var(--lyvo-serif);
  font-size: 1.16rem;
  font-weight: 550;
}

.woocommerce ul.products li.product .price {
  padding-inline: 0;
  color: var(--lyvo-black);
  font-size: 1rem;
}

.woocommerce ul.products li.product .button {
  margin-inline: 0;
}

.woocommerce span.onsale {
  top: 15px;
  left: 15px;
  border-radius: 0;
  background: var(--lyvo-lime);
  color: var(--lyvo-black);
  font-size: 0.65rem;
}

.woocommerce div.product .product_title {
  font-size: clamp(3.1rem, 5vw, 5.5rem);
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
  color: var(--lyvo-black);
}

.woocommerce div.product div.images img {
  background: var(--lyvo-mist);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
  border-color: var(--lyvo-lime-deep);
}

.woocommerce-checkout #customer_details,
.woocommerce-checkout #order_review,
.woocommerce .cart-collaterals .cart_totals,
.woocommerce-page .cart-collaterals .cart_totals {
  background: #fff;
}

.woocommerce-checkout #payment {
  background: var(--lyvo-mist);
}

.woocommerce-error,
.woocommerce-info,
.woocommerce-message {
  border-top-color: var(--lyvo-lime-deep);
}

.woocommerce-info::before,
.woocommerce-message::before {
  color: var(--lyvo-lime-deep);
}

/* Closing CTA and footer */
.lyvo-closing-cta {
  padding-block: clamp(90px, 10vw, 145px);
  background: var(--lyvo-lime);
}

.lyvo-closing-cta__inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 55px;
}

.lyvo-closing-cta .lyvo-eyebrow {
  color: rgba(0,0,0,0.58);
}

.lyvo-closing-cta .lyvo-eyebrow::after {
  background: var(--lyvo-black);
}

.lyvo-closing-cta h2 {
  max-width: 950px;
  margin: 0;
  font-size: clamp(3rem, 5.8vw, 6.5rem);
  line-height: 0.95;
}

.lyvo-closing-cta .lyvo-button--lime {
  flex: 0 0 auto;
  border-color: var(--lyvo-black) !important;
  background: var(--lyvo-black) !important;
  color: #fff !important;
}

.lyvo-closing-cta .lyvo-button--lime:hover {
  border-color: #fff !important;
  background: #fff !important;
  color: var(--lyvo-black) !important;
}

.lyvo-global-trust {
  border-color: rgba(255,255,255,0.14);
  background: var(--lyvo-black);
  color: rgba(255,255,255,0.7);
}

.lyvo-global-trust__grid > div {
  border-color: rgba(255,255,255,0.15);
}

.lyvo-global-trust .lyvo-icon {
  color: var(--lyvo-lime);
}

.lyvo-footer {
  padding-top: 70px;
  background: var(--lyvo-black);
  color: rgba(255,255,255,0.58);
}

.lyvo-footer__grid {
  padding-bottom: 65px;
}

.lyvo-footer h2 {
  color: #fff;
  font-family: var(--lyvo-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.lyvo-footer li + li {
  margin-top: 9px;
}

.lyvo-footer a:hover {
  color: var(--lyvo-lime);
}

.lyvo-footer__bottom {
  min-height: 115px;
  grid-template-columns: 250px 1fr auto;
  border-color: rgba(255,255,255,0.16);
}

.lyvo-footer__logo .lyvo-wordmark {
  font-size: 2.15rem;
}

.lyvo-footer__bottom p {
  color: rgba(255,255,255,0.42);
}

.lyvo-payment-marks {
  color: rgba(255,255,255,0.48);
}

.lyvo-floating-help {
  border: 0;
  border-radius: 0;
  background: var(--lyvo-black);
  color: #fff;
  box-shadow: 0 16px 45px rgba(0,0,0,0.22);
}

.lyvo-floating-help::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  background: var(--lyvo-lime);
}

/* Responsive */
@media (max-width: 1180px) {
  .lyvo-shell {
    width: min(calc(100% - 56px), var(--lyvo-shell));
  }

  .lyvo-header__inner {
    grid-template-columns: 180px 1fr 145px;
  }

  .lyvo-menu {
    gap: 22px;
  }

  .lyvo-menu a {
    font-size: 0.72rem;
  }

  .lyvo-premium-strip__grid > div {
    padding-inline: 22px;
  }

  .lyvo-goal-card {
    min-width: 44vw;
  }

  .lyvo-quiz__panel {
    padding: 70px;
  }

  .lyvo-product-card__image {
    min-height: 390px;
  }

  .lyvo-product-card__image img {
    height: 320px;
  }
}

@media (max-width: 900px) {
  .lyvo-shell {
    width: min(calc(100% - 36px), var(--lyvo-shell));
  }

  body.lyvo-site.admin-bar .lyvo-header {
    top: 46px;
  }

  .lyvo-announcement__inner span:nth-of-type(3),
  .lyvo-announcement__inner span:nth-of-type(4),
  .lyvo-announcement__inner i:nth-of-type(2),
  .lyvo-announcement__inner i:nth-of-type(3) {
    display: none;
  }

  .lyvo-header__inner {
    min-height: 70px;
    grid-template-columns: 1fr auto auto;
  }

  .lyvo-wordmark {
    font-size: 1.75rem;
  }

  .lyvo-image-wordmark {
    width: 158px;
    transform: scale(0.84);
    transform-origin: left center;
  }

  .lyvo-menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .lyvo-primary-nav {
    position: fixed;
    top: 100px;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    overflow-y: auto;
    padding: 40px 18px;
    border: 0;
    background: #fff;
    box-shadow: none;
  }

  body.admin-bar .lyvo-primary-nav {
    top: 146px;
  }

  .lyvo-primary-nav.is-open {
    display: block;
  }

  .lyvo-menu {
    display: grid;
    gap: 0;
  }

  .lyvo-menu a {
    padding: 16px 5px;
    border-bottom: 1px solid var(--lyvo-border);
    font-family: var(--lyvo-serif);
    font-size: 1.55rem;
    letter-spacing: -0.03em;
  }

  .lyvo-menu a::after {
    display: none;
  }

  .lyvo-header-actions > a[aria-label="Mi cuenta"] {
    display: none;
  }

  .lyvo-cinema-hero,
  .lyvo-cinema-hero__inner {
    min-height: calc(100svh - 100px);
  }

  .lyvo-cinema-hero__shade {
    background: linear-gradient(90deg, rgba(0,0,0,0.78), rgba(0,0,0,0.18)), linear-gradient(0deg, rgba(0,0,0,0.55), transparent 60%);
  }

  .lyvo-cinema-hero__timeline {
    width: 60%;
  }

  .lyvo-cinema-hero__timeline span:nth-child(n+3) {
    display: none;
  }

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

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

  .lyvo-premium-strip__grid > div {
    border-bottom: 1px solid var(--lyvo-border);
  }

  .lyvo-premium-strip__grid > div:nth-child(2) {
    border-right: 0;
  }

  .lyvo-premium-strip__grid > div:nth-child(n+3) {
    border-bottom: 0;
  }

  .lyvo-premium-strip__grid > div:first-child {
    padding-left: 22px;
  }

  .lyvo-manifesto__intro > p:last-child {
    margin-left: 0;
  }

  .lyvo-manifesto__grid {
    grid-template-columns: 1fr;
  }

  .lyvo-manifesto__grid article,
  .lyvo-manifesto__grid article + article {
    min-height: auto;
    padding: 30px 0 40px;
    border-right: 0;
    border-bottom: 1px solid var(--lyvo-border);
  }

  .lyvo-manifesto__grid h3 {
    margin-top: 35px;
  }

  .lyvo-goal-card {
    min-width: 70vw;
    min-height: 540px;
  }

  .lyvo-quiz {
    grid-template-columns: 1fr;
  }

  .lyvo-quiz__image {
    min-height: 500px;
    background-position: center 36%;
  }

  .lyvo-quiz__panel {
    padding: 80px 36px;
  }

  .lyvo-product-grid,
  .lyvo-journal-grid,
  .woocommerce ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lyvo-product-card:last-child,
  .lyvo-post-card:last-child {
    grid-column: 1 / -1;
    width: calc(50% - 13px);
  }

  .lyvo-proof__grid {
    grid-template-columns: 1fr;
  }

  .lyvo-proof__statement {
    position: static;
  }

  .lyvo-voices__grid {
    grid-template-columns: 1fr;
  }

  .lyvo-voices blockquote {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--lyvo-border);
  }

  .lyvo-voices blockquote > p {
    margin-top: 20px;
  }

  .lyvo-partners__inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 40px;
  }

  .lyvo-partners__inner > div {
    justify-content: flex-start;
  }

  .lyvo-contact-layout {
    grid-template-columns: 1fr;
  }

  .lyvo-contact-intro {
    position: static;
  }

  .lyvo-closing-cta__inner,
  .lyvo-section-heading--row {
    align-items: flex-start;
    flex-direction: column;
  }

  .lyvo-footer__bottom {
    grid-template-columns: 220px 1fr;
  }
}

@media (max-width: 620px) {
  .lyvo-shell {
    width: min(calc(100% - 28px), var(--lyvo-shell));
  }

  h1 {
    font-size: 3.35rem;
  }

  h2 {
    font-size: 2.75rem;
  }

  .lyvo-section {
    padding-block: 90px;
  }

  .lyvo-announcement__inner {
    gap: 9px;
    font-size: 0.57rem;
    letter-spacing: 0.05em;
  }

  .lyvo-header-actions .lyvo-search-toggle {
    display: none;
  }

  .lyvo-wordmark {
    gap: 0.25em;
    font-size: 1.55rem;
  }

  .lyvo-image-wordmark {
    width: 150px;
    margin-right: -20px;
    transform: scale(0.78);
  }

  .lyvo-cinema-hero__inner {
    padding-block: 75px 100px;
  }

  .lyvo-cinema-hero__media {
    background-position: 61% center;
  }

  .lyvo-cinema-hero__shade {
    background: linear-gradient(90deg, rgba(0,0,0,0.82), rgba(0,0,0,0.32)), linear-gradient(0deg, rgba(0,0,0,0.68), transparent 58%);
  }

  .lyvo-cinema-hero h1 {
    font-size: clamp(3.55rem, 18vw, 5.2rem);
  }

  .lyvo-cinema-hero .lyvo-button-row,
  .lyvo-cinema-hero .lyvo-button {
    width: 100%;
  }

  .lyvo-ghost-link {
    padding-inline: 0;
  }

  .lyvo-scroll-cue {
    display: none;
  }

  .lyvo-cinema-hero__timeline {
    right: 14px;
    bottom: 25px;
    width: calc(100% - 28px);
  }

  .lyvo-premium-strip__grid {
    grid-template-columns: 1fr;
  }

  .lyvo-premium-strip__grid > div,
  .lyvo-premium-strip__grid > div:nth-child(n+3) {
    min-height: 90px;
    padding: 20px 5px;
    border-right: 0;
    border-bottom: 1px solid var(--lyvo-border);
  }

  .lyvo-premium-strip__grid > div:last-child {
    border-bottom: 0;
  }

  .lyvo-manifesto {
    padding-block: 100px;
  }

  .lyvo-manifesto__intro h2 {
    font-size: 3.3rem;
  }

  .lyvo-goal-carousel {
    margin-right: -14px;
  }

  .lyvo-goal-card {
    min-width: 84vw;
    min-height: 500px;
  }

  .lyvo-goal-card__content {
    right: 24px;
    bottom: 25px;
    left: 24px;
  }

  .lyvo-carousel-controls {
    display: none;
  }

  .lyvo-quiz__image {
    min-height: 380px;
  }

  .lyvo-quiz__panel {
    padding: 70px 20px;
  }

  .lyvo-quiz__options {
    grid-template-columns: 1fr;
  }

  .lyvo-product-grid,
  .lyvo-journal-grid,
  .woocommerce ul.products {
    grid-template-columns: 1fr;
  }

  .lyvo-product-card:last-child,
  .lyvo-post-card:last-child {
    grid-column: auto;
    width: auto;
  }

  .lyvo-product-card__image {
    min-height: 360px;
  }

  .lyvo-product-card__image img {
    height: 300px;
  }

  .lyvo-proof__items {
    grid-template-columns: 1fr;
  }

  .lyvo-proof__items article,
  .lyvo-proof__items article:nth-child(even) {
    min-height: 240px;
    padding-inline: 5px;
    border-right: 0;
  }

  .lyvo-proof__items h3 {
    margin-top: 55px;
  }

  .lyvo-voices blockquote {
    padding-inline: 5px;
  }

  .lyvo-post-card__image {
    height: 300px;
  }

  .lyvo-form-row {
    grid-template-columns: 1fr;
  }

  .lyvo-contact-card {
    padding: 32px 20px;
  }

  .lyvo-closing-cta h2 {
    font-size: 3.25rem;
  }

  .lyvo-footer__grid,
  .lyvo-footer__bottom {
    grid-template-columns: 1fr;
  }

  .lyvo-footer__bottom {
    gap: 18px;
    padding-block: 30px;
  }

  .lyvo-floating-help {
    width: 52px;
    height: 52px;
    min-height: 0;
    padding: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-lyvo-reveal] {
    opacity: 1;
    transform: none;
  }

  .lyvo-scroll-cue span::after {
    animation: none;
  }
}
