/**
 * TOPE digital — Home v2 (Figma dark landing)
 * Scoped to body.home-v2
 */

body.home-v2 {
  --hv2-bg: #000000;
  --hv2-text: #ffffff;
  --hv2-muted: #a3a3a3;
  --hv2-accent: #ff8400;
  --hv2-accent-hover: #ff9520;
  --hv2-card: #1a1a1a;
  --hv2-card-border: #2a2a2a;
  --hv2-radius-pill: 9999px;
  --hv2-radius-card: 28px;
  --hv2-max: 1440px;
  --hv2-gutter: clamp(16px, 5vw, 80px);
  --hv2-font-display: "Inter", system-ui, sans-serif;
  --hv2-font-body: "Inter", system-ui, sans-serif;

  background: var(--hv2-bg);
  color: var(--hv2-text);
  font-family: var(--hv2-font-body);
}

body.home-v2 .site-header {
  display: none;
}

body.home-v2 .site-footer {
  display: none;
}

/* ── Layout ── */
.hv2-container {
  width: min(var(--hv2-max), 100%);
  margin-inline: auto;
  padding-inline: var(--hv2-gutter);
}

.hv2-main {
  overflow-x: clip;
}

/* ── Header (Figma) ── */
.hv2-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hv2-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  width: min(var(--hv2-max), 100%);
  margin-inline: auto;
  padding: 0.75rem var(--hv2-gutter);
  min-height: 78px;
}

.hv2-header__brand img {
  display: block;
  height: 64px;
  width: auto;
}

.hv2-header__nav {
  display: none;
  align-items: center;
  justify-content: center;
  gap: clamp(1.25rem, 3vw, 2rem);
}

.hv2-header__nav a {
  color: var(--hv2-text);
  font-family: var(--hv2-font-display);
  font-size: 0.9375rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
}

.hv2-header__nav a:hover {
  color: var(--hv2-accent);
}

.hv2-header__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
}

.hv2-header__login {
  display: none;
  color: var(--hv2-text);
  font-size: 1.125rem;
  text-decoration: none;
}

.hv2-header__login:hover {
  color: var(--hv2-accent);
}

.hv2-header__club {
  display: none;
}

.hv2-header__a11y {
  color: var(--hv2-text);
}

.hv2-header__menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  background: transparent;
  color: var(--hv2-text);
  cursor: pointer;
}

.hv2-hamburger,
.hv2-hamburger::before,
.hv2-hamburger::after {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
}

.hv2-hamburger {
  position: relative;
}

.hv2-hamburger::before,
.hv2-hamburger::after {
  content: "";
  position: absolute;
  left: 0;
}

.hv2-hamburger::before { top: -6px; }
.hv2-hamburger::after { top: 6px; }

@media (min-width: 900px) {
  .hv2-header__nav {
    display: flex !important;
  }

  .hv2-header__login,
  .hv2-header__club {
    display: inline-flex;
  }

  .hv2-header__menu-btn {
    display: none;
  }
}

@media (max-width: 899px) {
  .hv2-header {
    position: sticky;
  }

  .hv2-header__inner {
    grid-template-columns: auto 1fr auto;
  }

  .hv2-header__nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem var(--hv2-gutter) 1.25rem;
    background: rgba(0, 0, 0, 0.96);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .hv2-header__nav:not([hidden]) {
    display: flex;
  }

  .hv2-header__nav a {
    padding: 0.75rem 0;
    font-size: 1rem;
  }

  .hv2-header__right .hv2-header__login,
  .hv2-header__right .hv2-header__club {
    display: none;
  }
}


/* ── Buttons ── */
.hv2-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.625rem;
  border-radius: var(--hv2-radius-pill);
  font-family: var(--hv2-font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
}

.hv2-btn--primary {
  background: var(--hv2-accent);
  color: #000;
  border-color: var(--hv2-accent);
}

.hv2-btn--primary:hover {
  background: var(--hv2-accent-hover);
  border-color: var(--hv2-accent-hover);
}

.hv2-btn--primary-inverse {
  color: var(--hv2-text);
  box-shadow: inset 1px 1px 1px rgba(255, 255, 255, 0.25);
}

.hv2-btn--primary-inverse:hover {
  color: var(--hv2-text);
}

.hv2-btn--ghost {
  background: transparent;
  color: var(--hv2-text);
  border: 1px solid rgba(255, 255, 255, 0.2);
  min-height: 50px;
  padding-inline: 1.5rem;
  font-size: 1rem;
  font-weight: 400;
}

.hv2-btn--outline {
  background: transparent;
  color: var(--hv2-text);
  border-color: rgba(255, 255, 255, 0.35);
}

.hv2-btn--outline:hover {
  border-color: var(--hv2-text);
}

.hv2-btn--sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.8125rem;
}

.hv2-header__club.hv2-btn--sm {
  padding: 0.75rem 1.5rem;
  font-size: 0.9375rem;
}

.hv2-btn--wide {
  width: 100%;
  max-width: 998px;
  margin-top: 2rem;
  padding-block: 1.25rem;
  font-size: 1.125rem;
}

.hv2-btn--pill {
  margin-inline: auto;
}

.hv2-link {
  color: var(--hv2-accent);
  font-weight: 600;
  text-decoration: none;
}

.hv2-link:hover {
  text-decoration: underline;
}

/* ── Hero (Figma) ── */
.hv2-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(520px, 58vw, 831px);
  padding: 5rem var(--hv2-gutter) 4rem;
  text-align: center;
}

.hv2-hero__title {
  margin: 0 0 1.25rem;
  font-family: var(--hv2-font-display);
  font-size: clamp(3rem, 10vw, 6.4375rem);
  font-weight: 400;
  line-height: 1.17;
  letter-spacing: -0.02em;
}

.hv2-hero__tagline {
  margin: 0 auto 2.5rem;
  max-width: 44.625rem;
  font-family: var(--hv2-font-display);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 400;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.7);
}

.hv2-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.hv2-play-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

/* ── Section titles ── */
.hv2-section-title {
  margin: 0 0 2.5rem;
  font-family: var(--hv2-font-display);
  font-size: clamp(2rem, 5vw, 3.375rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hv2-section-title--split {
  max-width: 14ch;
}

/* ── Servicios (Figma) ── */
.hv2-services {
  padding: 4rem 0 5rem;
}

.hv2-services__wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .hv2-services__wrap {
    grid-template-columns: minmax(0, 280px) minmax(0, 1fr);
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: start;
  }
}

.hv2-services__title {
  margin: 0;
  font-family: var(--hv2-font-display);
  font-size: clamp(2.75rem, 5.5vw, 4.25rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.hv2-services__panel {
  border-top: 1px solid var(--hv2-text);
  padding-top: 0;
}

@media (min-width: 1024px) {
  .hv2-services__panel {
    margin-left: 0;
  }
}

.hv2-services__row {
  display: grid;
  grid-template-columns: minmax(120px, 1fr) minmax(0, 2fr) auto;
  align-items: center;
  gap: 1rem 2rem;
  min-height: 160px;
  padding: 0;
  border-bottom: 1px solid var(--hv2-text);
  color: inherit;
  text-decoration: none;
  transition: background 0.2s;
}

.hv2-services__row:hover {
  background: rgba(255, 255, 255, 0.03);
}

.hv2-services__row-title {
  font-size: clamp(1.25rem, 2.2vw, 1.625rem);
  font-weight: 400;
  line-height: 1.32;
}

.hv2-services__row-desc {
  font-size: clamp(1rem, 1.5vw, 1.1875rem);
  line-height: 1.55;
  text-transform: lowercase;
  color: var(--hv2-text);
}

.hv2-services__row-plus {
  font-size: clamp(4rem, 8vw, 6.8125rem);
  font-weight: 400;
  line-height: 1;
  color: var(--hv2-text);
}

.hv2-services__audit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 4.75rem;
  padding: 1.375rem 1.5rem;
  border: 1px solid var(--hv2-accent);
  border-radius: 6.25rem;
  color: var(--hv2-text);
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}

.hv2-services__audit:hover {
  background: rgba(255, 132, 0, 0.08);
  border-color: var(--hv2-accent-hover);
}

@media (max-width: 767px) {
  .hv2-services__row {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    min-height: 0;
    padding-block: 1.5rem;
  }

  .hv2-services__row-desc {
    grid-column: 1 / -1;
  }
}

/* ── Planes (Figma) ── */
.hv2-plans {
  padding: 5rem 0 6rem;
}

.hv2-plans__head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 1024px) {
  .hv2-plans__head {
    grid-template-columns: minmax(0, 439px) 1fr;
    gap: clamp(3rem, 14vw, 12.5rem);
    align-items: start;
    margin-bottom: 3rem;
  }
}

.hv2-plans__title {
  margin: 0;
  max-width: 27.5rem;
  font-family: var(--hv2-font-display);
  font-size: clamp(3rem, 6.5vw, 4.75rem);
  font-weight: 400;
  line-height: 1.19;
  letter-spacing: -0.08em;
}

.hv2-plans__cta {
  padding-top: 0.9375rem;
}

.hv2-plans__cta p {
  margin: 0 0 1.5rem;
  font-family: var(--hv2-font-display);
  font-size: clamp(1.375rem, 2.4vw, 1.75rem);
  font-weight: 400;
  line-height: 1.3;
}

.hv2-plans__list {
  display: flex;
  flex-direction: column;
}

.hv2-plans__divider {
  height: 1px;
  margin-block: 0.25rem;
  background: rgba(255, 255, 255, 0.1);
}

.hv2-plan-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
  min-height: clamp(280px, 22vw, 320px);
  padding-block: clamp(1.5rem, 3vw, 2rem);
}

@media (min-width: 900px) {
  .hv2-plan-row {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: clamp(2rem, 4vw, 3.5rem);
  }

  .hv2-plan-row--reverse .hv2-plan-row__content {
    order: 2;
  }

  .hv2-plan-row--reverse .hv2-plan-row__media {
    order: 1;
  }
}

@media (max-width: 899px) {
  .hv2-plan-row--reverse .hv2-plan-row__content,
  .hv2-plan-row--reverse .hv2-plan-row__media {
    order: unset;
  }
}

.hv2-plan-row__content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 0;
}

.hv2-plan-row__step {
  font-family: var(--hv2-font-display);
  font-size: 1.375rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--hv2-text);
}

.hv2-plan-row__heading {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.5rem 0.625rem;
}

.hv2-plan-row__title-text {
  margin: 0;
  font-family: var(--hv2-font-display);
  font-size: clamp(2.375rem, 5.2vw, 4.25rem);
  font-weight: 400;
  line-height: 1.19;
  letter-spacing: -0.03em;
}

.hv2-plan-row__arrow {
  flex-shrink: 0;
  width: clamp(3rem, 5.5vw, 5rem);
  height: auto;
  display: block;
}

.hv2-plan-row__arrow--before {
  transform: rotate(-90deg);
}

.hv2-plan-row__desc {
  max-width: 20rem;
  margin: 0.75rem 0 0;
  font-size: clamp(1.0625rem, 1.5vw, 1.1875rem);
  line-height: 1.38;
  color: var(--hv2-text);
}

.hv2-plan-row__media {
  overflow: hidden;
  height: clamp(11rem, 17vw, 15rem);
  border-radius: 24rem;
  background: var(--hv2-accent);
}

.hv2-plan-row__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Marketing Pack 360° — píldora ancha con borde naranja */
.hv2-plan-row--wide {
  display: block;
  min-height: clamp(280px, 22vw, 320px);
  padding-block: clamp(1.5rem, 3vw, 2rem);
}

.hv2-plan-row__pill {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(11rem, 17vw, 15rem);
  padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1.25rem, 4vw, 3rem);
  border: 1px solid var(--hv2-accent);
  border-radius: 24rem;
}

.hv2-plan-row__content--center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  max-width: 48rem;
  margin-inline: auto;
  text-align: center;
}

.hv2-plan-row__content--center .hv2-plan-row__heading {
  justify-content: center;
}

.hv2-plan-row__content--center .hv2-plan-row__desc {
  max-width: none;
  margin-top: 0.5rem;
}

/* ── Método (Figma) ── */
.hv2-method {
  padding: clamp(4rem, 10vw, 9rem) 0 6rem;
}

.hv2-method__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: clamp(2rem, 5vw, 5rem);
}

.hv2-method__title {
  margin: 0;
  max-width: 11ch;
  font-family: var(--hv2-font-display);
  font-size: clamp(3rem, 10vw, 7.5625rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.hv2-method__arrows {
  display: flex;
  gap: 0;
  flex-shrink: 0;
}

.hv2-method__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  opacity: 0.9;
  transition: opacity 0.2s;
}

.hv2-method__arrow:hover:not(:disabled) {
  opacity: 1;
}

.hv2-method__arrow:disabled {
  opacity: 0.35;
  cursor: default;
}

.hv2-method__arrow img {
  width: 64px;
  height: 64px;
  display: block;
}

.hv2-method__carousel {
  position: relative;
}

.hv2-method__viewport {
  overflow: hidden;
  outline: none;
}

.hv2-method__track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.hv2-method__slide {
  flex: 0 0 min(614px, 85vw);
  min-width: 0;
  margin-right: 2rem;
}

.hv2-method-card {
  width: 100%;
  min-height: 417px;
  padding: 2.5rem 2rem 2rem;
  border-top: 1px solid var(--hv2-text);
  border-right: 1px solid var(--hv2-text);
  border-radius: 0 3rem 0 0;
}

.hv2-method-card__name {
  margin: 0 0 1.25rem;
  font-family: var(--hv2-font-display);
  font-size: 1.6875rem;
  font-weight: 700;
  line-height: 1.2;
}

.hv2-method-card__text {
  margin: 0 0 1.5rem;
  font-size: 1rem;
  line-height: 1.64;
  color: var(--hv2-text);
}

.hv2-method-card__quote {
  margin: 1.5rem 0 0;
  padding: 0;
  border: 0;
  font-size: 0.9375rem;
  line-height: 1.38;
  color: var(--hv2-text);
}

.hv2-method-card__person {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}

.hv2-method-card__avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.hv2-method-card__role {
  margin: 0;
  font-size: 1.1875rem;
  line-height: 1.3;
}

.hv2-method-card__role-desc {
  margin: 0.25rem 0 0;
  font-size: 0.9375rem;
  line-height: 1.38;
  color: rgba(255, 255, 255, 0.65);
}

.hv2-method-card__logo {
  margin-top: 1.5rem;
  display: block;
  opacity: 0.9;
}

/* ── Portfolio (Figma) ── */
.hv2-portfolio {
  padding: 5rem 0 6rem;
}

.hv2-portfolio__heading {
  margin: 0 0 clamp(2rem, 4vw, 3.5rem);
  font-family: var(--hv2-font-display);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.hv2-portfolio__heading-sm {
  display: block;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.22;
}

.hv2-portfolio__heading-lg {
  display: block;
  font-size: clamp(4rem, 18vw, 15.5rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.hv2-portfolio__masonry {
  columns: 1;
  column-gap: 1.5rem;
}

@media (min-width: 640px) {
  .hv2-portfolio__masonry {
    columns: 2;
  }
}

@media (min-width: 1100px) {
  .hv2-portfolio__masonry {
    columns: 3;
  }
}

.hv2-portfolio__item {
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  display: block;
  width: 100%;
  margin: 0 0 1.5rem;
  overflow: hidden;
}

.hv2-portfolio__item--size-wide {
  column-span: all;
  min-height: 380px;
}

.hv2-portfolio__item--size-tall {
  min-height: 560px;
}

.hv2-portfolio__item--size-medium {
  min-height: 420px;
}

.hv2-portfolio__item--size-compact {
  min-height: 300px;
}

.hv2-portfolio__item--hero {
  display: grid;
  grid-template-columns: 1fr;
  background: #3a3a3a;
}

.hv2-portfolio__item--hero .hv2-portfolio__copy {
  color: #000;
}

@media (min-width: 768px) {
  .hv2-portfolio__item--hero {
    grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
    min-height: 438px;
  }
}

.hv2-portfolio__item--accent {
  display: flex;
  flex-direction: column;
  background: var(--hv2-accent);
  color: #000;
}

.hv2-portfolio__item--accent .hv2-portfolio__copy {
  display: flex;
  flex-direction: column;
  flex: 1;
  height: 100%;
}

.hv2-portfolio__item--accent .hv2-portfolio__inline-logo {
  margin-top: auto;
}

.hv2-portfolio__item--dark {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #797979;
  color: #3a3a3a;
}

.hv2-portfolio__item--card {
  padding: 2.5rem;
  color: var(--hv2-text);
}

.hv2-portfolio__item--card-dark {
  background: #303030;
}

.hv2-portfolio__item--card-gray {
  background: #565656;
  color: #000;
}

.hv2-portfolio__copy {
  padding: 2.5rem;
}

.hv2-portfolio__copy h3 {
  margin: 0 0 0.375rem;
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.hv2-portfolio__copy p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.3;
  opacity: 0.7;
}

.hv2-portfolio__visual {
  min-height: 200px;
}

.hv2-portfolio__visual img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  display: block;
}

.hv2-portfolio__visual--logo {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.hv2-portfolio__visual--logo img {
  width: auto;
  max-width: 210px;
  max-height: 210px;
  min-height: 0;
  object-fit: contain;
}

.hv2-portfolio__inline-logo {
  width: min(473px, 100%);
  margin-top: 1rem;
  display: block;
}

.hv2-portfolio__item--card h3 {
  margin: 0 0 0.375rem;
  font-size: 1.25rem;
  font-weight: 400;
}

.hv2-portfolio__item--card p {
  margin: 0;
  max-width: 20rem;
  font-size: 1rem;
  line-height: 1.3;
  opacity: 0.85;
}

/* ── News (Figma) ── */
.hv2-news {
  padding: clamp(4rem, 8vw, 6rem) 0;
  border-top: 1px solid var(--hv2-text);
}

.hv2-news__container {
  max-width: calc(var(--hv2-max) + 2rem);
}

.hv2-news__head {
  display: grid;
  gap: 1.5rem;
  margin-bottom: clamp(3rem, 8vw, 9rem);
  padding-top: 1.625rem;
}

@media (min-width: 768px) {
  .hv2-news__head {
    grid-template-columns: minmax(120px, 1fr) minmax(0, 2fr);
    align-items: start;
  }
}

.hv2-news__kicker {
  margin: 0;
  font-family: var(--hv2-font-display);
  font-size: clamp(1.5rem, 3vw, 1.9375rem);
  font-weight: 400;
  line-height: 1.5;
}

.hv2-news__kicker .hv2-news__kicker-accent {
  color: var(--hv2-accent);
}

.hv2-news__lead {
  margin: 0;
  max-width: 25.5rem;
  font-size: clamp(1.125rem, 2vw, 1.40625rem);
  line-height: 1.07;
  color: var(--hv2-text);
}

.hv2-news__grid {
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
}

@media (min-width: 768px) {
  .hv2-news__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.25rem 3.75rem;
  }
}

.hv2-news__card {
  display: flex;
  flex-direction: column;
  gap: 2.125rem;
}

.hv2-news__media {
  display: block;
  overflow: hidden;
  aspect-ratio: 625 / 336;
  background: var(--hv2-accent);
}

.hv2-news__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.3s;
}

.hv2-news__media-placeholder {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--hv2-accent);
}

.hv2-news__media:hover img {
  filter: grayscale(40%);
}

.hv2-news__body {
  display: grid;
  grid-template-columns: minmax(0, 0.32fr) minmax(0, 0.38fr) auto;
  gap: 1rem 1.5rem;
  align-items: start;
  min-height: 175px;
}

.hv2-news__body h3 {
  margin: 0;
  font-family: var(--hv2-font-display);
  font-size: clamp(1.125rem, 2vw, 1.40625rem);
  font-weight: 400;
  line-height: 1.07;
}

.hv2-news__body h3 a {
  color: inherit;
  text-decoration: none;
}

.hv2-news__body h3 a:hover {
  color: var(--hv2-accent);
}

.hv2-news__excerpt {
  margin: 0;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.25;
  color: var(--hv2-text);
}

.hv2-news__plus {
  align-self: start;
  font-family: var(--hv2-font-display);
  font-size: clamp(4rem, 8vw, 6.8125rem);
  font-weight: 400;
  line-height: 0.75;
  color: var(--hv2-text);
  text-decoration: none;
}

.hv2-news__plus:hover {
  color: var(--hv2-accent);
}

.hv2-news__more {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(450px, 100%);
  margin: clamp(3rem, 8vw, 5rem) auto 0;
  padding: 1.375rem 2rem;
  border: 1px solid var(--hv2-text);
  border-radius: 6.25rem;
  color: var(--hv2-text);
  font-size: clamp(2.5rem, 6vw, 3.75rem);
  line-height: 1;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}

.hv2-news__more:hover {
  background: rgba(255, 255, 255, 0.04);
}

@media (max-width: 640px) {
  .hv2-news__body {
    grid-template-columns: 1fr auto;
  }

  .hv2-news__excerpt {
    grid-column: 1 / -1;
  }
}

/* ── Footer ── */
.hv2-footer {
  padding: 4rem 0 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #000;
}

.hv2-footer__inner {
  display: grid;
  gap: 2rem;
  width: min(var(--hv2-max), 100%);
  margin-inline: auto;
  padding-inline: var(--hv2-gutter);
}

@media (min-width: 768px) {
  .hv2-footer__inner {
    grid-template-columns: 1.2fr 1fr 1fr;
    grid-template-rows: auto auto;
  }

  .hv2-footer__legal {
    grid-column: 1 / -1;
  }
}

.hv2-footer__address,
.hv2-footer__copy {
  margin: 0.75rem 0 0;
  font-size: 0.875rem;
  color: var(--hv2-muted);
  line-height: 1.5;
}

.hv2-footer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.hv2-footer__nav a,
.hv2-footer__contact a {
  color: var(--hv2-text);
  text-decoration: none;
  font-size: 0.9375rem;
}

.hv2-footer__nav a:hover,
.hv2-footer__contact a:hover {
  color: var(--hv2-accent);
}

.hv2-footer__contact p {
  margin: 0 0 0.5rem;
  font-size: 0.9375rem;
  color: var(--hv2-muted);
}

.hv2-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hv2-footer__legal a {
  color: var(--hv2-muted);
  font-size: 0.8125rem;
  text-decoration: none;
}

.hv2-footer__legal a:hover {
  color: var(--hv2-text);
}

/* ── Scroll reveal ── */
.hv2-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.hv2-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .hv2-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hv2-method__track {
    transition: none;
  }
}

body.a11y-reduce-motion .hv2-reveal,
body.a11y-reduce-motion .hv2-method__track {
  transition: none !important;
  animation: none !important;
}

/* ── Skip link on dark home ── */
body.home-v2 .skip-link:focus {
  background: var(--hv2-accent);
  color: #000;
}

/* ── Cookie banner on dark home ── */
body.home-v2 .cookie-consent-banner {
  background: #111;
  border-top-color: rgba(255, 255, 255, 0.1);
}

body.home-v2 .cookie-consent-text {
  color: var(--hv2-muted);
}

/* ── A11y panel on dark home ── */
body.home-v2 .a11y-panel {
  background: #111;
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--hv2-text);
}
