/* ============================================
   PUERTA DIGITAL
   Design system + global styles
   ============================================ */

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.55;
  color: var(--ink);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "cv11", "ss01", "ss03";
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

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

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

ul,
ol {
  list-style: none;
}

input,
textarea,
select,
button {
  font: inherit;
  color: inherit;
}

::selection {
  background: var(--accent);
  color: var(--white);
}

/* ---- Tokens ---- */
:root {
  /* Ink (deep charcoal with cool undertone) */
  --ink: #14161c;
  --ink-2: #1f242e;
  --ink-soft: #4b5160;
  --ink-muted: #6b7280;
  --ink-faint: #9ca3af;

  /* Rules and surfaces */
  --rule: #e5e3dc;
  --rule-soft: #f1efe9;
  --white: #ffffff;
  --paper: #faf9f6;
  --paper-2: #f1efe9;

  /* Muted brick red accent */
  --accent: #a83232;
  --accent-2: #8d2828;
  --accent-soft: #f7e8e8;
  --accent-glow: rgba(168, 50, 50, 0.12);

  /* Muted slate blue (secondary) */
  --slate: #3d4f6b;
  --slate-soft: #eaedf2;

  --font-sans: "Inter Tight", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-display: "Bricolage Grotesque", "Inter Tight", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --max-wide: 1280px;
  --max-narrow: 1040px;
  --max-prose: 720px;

  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --section-y: clamp(4.5rem, 10vw, 8rem);

  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 18px;
  --radius-xl: 28px;

  --shadow-sm: 0 1px 2px rgba(20, 22, 28, 0.04);
  --shadow: 0 6px 24px rgba(20, 22, 28, 0.06);
  --shadow-lg: 0 20px 50px rgba(20, 22, 28, 0.08);
  --shadow-xl: 0 30px 80px rgba(20, 22, 28, 0.12);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 280ms;
}

/* ---- Typography ---- */
.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.display-1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--ink);
  text-wrap: balance;
}

.display-2 {
  font-size: clamp(2.25rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.display-3 {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--ink);
}

.lead {
  font-size: clamp(1.125rem, 1.4vw, 1.375rem);
  line-height: 1.55;
  color: var(--ink-soft);
}

/* ---- Layout ---- */
.container {
  width: 100%;
  max-width: var(--max-wide);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.container--narrow {
  max-width: var(--max-narrow);
}

.section {
  padding-block: var(--section-y);
}

/* Offset in-page anchor jumps (#agendar, #portafolio, #cotizador, #suscripcion, …) below the sticky header */
.section {
  scroll-margin-top: 5.5rem;
}

.section--paper {
  background: var(--paper);
}

.section--top-rule {
  border-top: 1px solid var(--rule);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.65rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 999px;
  border: 1.5px solid transparent;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease),
    border-color var(--dur) var(--ease), transform var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease);
  white-space: nowrap;
  cursor: pointer;
  letter-spacing: -0.005em;
}

.btn--accent {
  background: var(--accent);
  color: var(--white);
}

.btn--accent:hover {
  background: var(--accent-2);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px var(--accent-glow);
}

.btn--ink {
  background: var(--ink);
  color: var(--white);
}

.btn--ink:hover {
  background: var(--ink-2);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--rule);
}

.btn--ghost:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.btn--ghost-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.25);
}

.btn--ghost-light:hover {
  background: var(--white);
  color: var(--ink);
}

.btn--whatsapp {
  background: #25d366;
  color: var(--white);
  width: 100%;
}

.btn--whatsapp:hover {
  background: #1faf54;
  transform: translateY(-2px);
}

.btn-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 600;
  color: var(--ink);
  transition: gap var(--dur) var(--ease), color var(--dur) var(--ease);
}

.btn-arrow svg {
  width: 1.1em;
  height: 1.1em;
  transition: transform var(--dur) var(--ease);
}

.btn-arrow:hover {
  color: var(--accent);
  gap: 0.7rem;
}

.btn-arrow:hover svg {
  transform: translateX(2px);
}

/* ---- Header ---- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}

.header.is-scrolled {
  border-bottom-color: var(--rule);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1.1rem;
  gap: 1.5rem;
}

.header__logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: opacity var(--dur) var(--ease);
  line-height: 1;
}

.header__logo:hover {
  opacity: 0.75;
}

.header__logo-mark {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  object-fit: contain;
}

/* Wordmark: "puerta" (Times New Roman serif) + "digital" (Be Vietnam), lowercase + tight */
.header__wordmark {
  text-transform: lowercase;
  word-spacing: -0.18em;
}

.header__wordmark-serif {
  font-family: "Times New Roman", Times, serif;
  font-weight: 400;
  font-size: 1.16em;
  letter-spacing: 0;
}

.header__wordmark-sans {
  font-family: "Be Vietnam Pro", sans-serif;
  font-weight: 600;
  letter-spacing: -0.005em;
}

.header__nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

.header__nav-link {
  position: relative;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color var(--dur) var(--ease);
}

.header__nav-link:hover,
.header__nav-link.is-active {
  color: var(--ink);
}

.header__nav-link.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.header__actions {
  display: none;
  align-items: center;
  gap: 1rem;
}

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

.lang-switch {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--rule);
  border-radius: 999px;
  padding: 2px;
  font-size: 0.8rem;
  font-weight: 600;
  background: var(--white);
}

.lang-switch__link {
  padding: 0.3rem 0.7rem;
  color: var(--ink-muted);
  border-radius: 999px;
  transition: all var(--dur) var(--ease);
  letter-spacing: 0.04em;
}

.lang-switch__link.is-active {
  background: var(--ink);
  color: var(--white);
}

.lang-switch__link:hover:not(.is-active) {
  color: var(--ink);
}

.header__toggle {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  margin-right: -0.5rem;
}

.header__toggle span {
  display: block;
  width: 24px;
  height: 1.75px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}

.header__toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header__toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.header__toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.header__mobile {
  display: none;
  border-top: 1px solid var(--rule);
  background: var(--white);
}

.header__mobile.is-open {
  display: block;
}

.header__mobile-nav {
  display: flex;
  flex-direction: column;
  padding-block: 1rem 1.5rem;
}

.header__mobile-link {
  padding: 0.9rem 0;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--rule-soft);
}

.header__mobile-link:last-of-type {
  border-bottom: none;
}

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

.header__mobile-lang {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
}

@media (min-width: 880px) {
  .header__nav,
  .header__actions {
    display: inline-flex;
  }

  .header__toggle {
    display: none;
  }
}

/* ---- Hero ---- */
.hero {
  position: relative;
  padding-top: clamp(3rem, 7vw, 5rem);
  padding-bottom: clamp(1rem, 2vw, 1.75rem);
  overflow: hidden;
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero__grid {
  display: grid;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: center;
  grid-template-columns: 1fr;
}

@media (min-width: 960px) {
  .hero__grid {
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  }
}

.hero__content {
  max-width: 720px;
}

.hero__headline {
  margin-top: 1.5rem;
}

.hero__headline-accent {
  display: inline-block;
  color: var(--accent);
  position: relative;
}

.hero__headline-accent::after {
  content: ".";
  color: var(--ink);
}

.hero__sub {
  margin-top: 1.75rem;
  max-width: 36rem;
}

.hero__actions {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__visual-arch {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.hero__visual-arch svg.hero-dashboard {
  width: 100%;
  height: auto;
  max-width: 520px;
  filter: drop-shadow(0 8px 16px rgba(20, 22, 28, 0.05))
    drop-shadow(0 30px 60px rgba(20, 22, 28, 0.1));
}

/* ---- Marquee ---- */
.marquee {
  background: var(--ink);
  color: var(--white);
  padding-block: 1.25rem;
  overflow: hidden;
  border-block: 1px solid var(--ink-2);
}

.marquee__track {
  display: flex;
  width: max-content;
  gap: 3rem;
  animation: marquee 40s linear infinite;
  align-items: center;
}

.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: rgba(255, 255, 255, 0.85);
  white-space: nowrap;
}

.marquee__bullet {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.marquee:hover .marquee__track {
  animation-play-state: paused;
}

/* ---- Problem / Editorial block ---- */
.editorial {
  max-width: 56rem;
}

.editorial__heading {
  margin-bottom: 2rem;
}

.editorial__body {
  font-size: clamp(1.25rem, 1.6vw, 1.55rem);
  line-height: 1.5;
  color: var(--ink-soft);
  font-weight: 400;
  letter-spacing: -0.005em;
}

.editorial__body strong {
  color: var(--ink);
  font-weight: 600;
}

/* ---- Differentiator grid ---- */
.diff__head {
  margin-bottom: clamp(3rem, 5vw, 4.5rem);
  max-width: 50rem;
}

.diff__grid {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--rule);
}

@media (min-width: 640px) {
  .diff__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .diff__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.diff__item {
  position: relative;
  padding: 2rem 1.75rem 2.25rem;
  border-bottom: 1px solid var(--rule);
  border-right: 1px solid var(--rule);
  transition: background var(--dur) var(--ease);
  cursor: default;
}

.diff__item:hover {
  background: var(--white);
}

.diff__item:hover .diff__icon-circle {
  background: var(--accent);
  color: var(--white);
}

.diff__item-num {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--ink-faint);
  margin-bottom: 1.5rem;
}

.diff__icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  margin-bottom: 1.25rem;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}

.diff__item-title {
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--ink);
  letter-spacing: -0.015em;
}

.diff__note {
  margin-top: 2.5rem;
  max-width: 38rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

/* ---- Services preview ---- */
.preview__head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: end;
  gap: 2rem;
  margin-bottom: clamp(2.5rem, 4vw, 3.5rem);
}

.preview__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 720px) {
  .preview__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.preview__card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2rem 1.75rem 2.25rem;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease), background var(--dur) var(--ease);
  text-decoration: none;
  color: inherit;
}

.preview__card:hover {
  transform: translateY(-4px);
  border-color: var(--ink);
  box-shadow: var(--shadow-lg);
}

.preview__card--featured {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.preview__card--featured:hover {
  background: var(--ink-2);
  border-color: var(--ink-2);
}

.preview__card-num {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.preview__card-title {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-bottom: 0.75rem;
}

.preview__card-desc {
  font-size: 0.97rem;
  line-height: 1.55;
  color: var(--ink-soft);
  flex-grow: 1;
}

.preview__card--featured .preview__card-desc {
  color: rgba(255, 255, 255, 0.75);
}

.preview__card-price {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule);
}

.preview__card--featured .preview__card-price {
  border-top-color: rgba(255, 255, 255, 0.15);
}

.preview__card-price-num {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.015em;
}

.preview__card-price-cadence {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.85rem;
  color: var(--ink-muted);
}

.preview__card--featured .preview__card-price-cadence {
  color: rgba(255, 255, 255, 0.55);
}

/* ---- Credential badges (image-based) ---- */
.badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: clamp(2.5rem, 4vw, 3.5rem);
}

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

.badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  padding: 1.75rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease);
}

.badge:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  box-shadow: var(--shadow);
}

.badge__media {
  width: 88px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge__media img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.badge__label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.005em;
  line-height: 1.3;
}

.badge__issuer {
  font-size: 0.72rem;
  color: var(--ink-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
}

.creds__footnote {
  margin-top: 2.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 600;
  color: var(--ink);
}

.creds__pulse {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #2f8551;
  position: relative;
}

.creds__pulse::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: #2f8551;
  opacity: 0.4;
  animation: pulse 2.2s ease-out infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.45;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

/* ---- CTA Banner ---- */
.cta-banner {
  background: var(--ink);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -15%;
  width: 60%;
  aspect-ratio: 1;
  background: radial-gradient(circle, var(--accent-glow), transparent 60%);
  pointer-events: none;
}

.cta-banner__inner {
  position: relative;
  text-align: center;
  padding-block: clamp(4.5rem, 9vw, 7.5rem);
  max-width: 50rem;
  margin-inline: auto;
}

.cta-banner__heading {
  color: var(--white);
}

.cta-banner__sub {
  margin-top: 1.5rem;
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

.cta-banner__actions {
  margin-top: 2.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}

/* ---- Footer ---- */
.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.7);
  padding-block: clamp(3.5rem, 6vw, 5rem) 2.5rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 720px) {
  .footer__grid {
    grid-template-columns: 1.4fr 1fr 1.4fr;
  }
}

.footer__brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: -0.025em;
  line-height: 1;
}

.footer__brand-mark img {
  width: 128px;
  height: auto;
  flex-shrink: 0;
  object-fit: contain;
  /* Tint the black logo to white for the dark footer */
  filter: brightness(0) invert(1);
}

.footer__tagline {
  margin-top: 1rem;
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 22rem;
}

.footer__heading {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.footer__list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer__link {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--dur) var(--ease);
}

.footer__link:hover {
  color: var(--accent);
}

.footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--ink-2);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.85rem;
}

/* ---- Generic Page Header ---- */
.page-header {
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
  padding-block: clamp(4rem, 7vw, 6rem) clamp(3rem, 6vw, 5rem);
}

.page-header__sub {
  margin-top: 1.5rem;
  max-width: 38rem;
}

/* ---- About hero (profile photo + text) ---- */
.about-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: center;
}

@media (min-width: 880px) {
  .about-hero__grid {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  }
}

.about-hero__photo {
  position: relative;
  aspect-ratio: 1;
  max-width: 26rem;
  margin-inline: auto;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--paper-2);
}

.about-hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9);
}

.about-hero__caption {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: end;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* ---- About body ---- */
.about-body {
  max-width: var(--max-prose);
}

.about-body p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--ink-soft);
}

.about-body p + p {
  margin-top: 1.5rem;
}

.about-body__lede {
  font-size: clamp(1.35rem, 2vw, 1.65rem) !important;
  font-weight: 500;
  color: var(--ink) !important;
  line-height: 1.45 !important;
  letter-spacing: -0.015em;
  margin-bottom: 2rem;
}

/* ---- About credentials (icon + text) ---- */
.cred-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
  margin-top: 2.5rem;
}

@media (min-width: 640px) {
  .cred-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.cred-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.35rem;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.cred-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.cred-card__icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: var(--accent-soft);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cred-card__icon svg {
  width: 22px;
  height: 22px;
}

.cred-card__text {
  font-weight: 500;
  color: var(--ink);
}

/* ---- Testimonials ---- */
.testimonials {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: clamp(2.5rem, 4vw, 3.5rem);
}

@media (min-width: 880px) {
  .testimonials {
    grid-template-columns: repeat(2, 1fr);
  }
}

.testimonial {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.testimonial:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.testimonial__quote-mark {
  width: 28px;
  height: 28px;
  color: var(--accent);
  opacity: 0.7;
}

.testimonial__quote {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--ink-2);
  flex-grow: 1;
  font-weight: 400;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--rule);
}

.testimonial__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--paper-2);
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.testimonial__author-name {
  display: block;
  font-weight: 600;
  color: var(--ink);
  font-size: 0.95rem;
}

.testimonial__author-role {
  display: block;
  font-size: 0.85rem;
  color: var(--ink-muted);
  margin-top: 0.1rem;
}

/* ---- Services page tiers ---- */
.tiers {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 960px) {
  .tiers {
    grid-template-columns: repeat(3, 1fr);
  }
}

.tier {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2.5rem 2rem 2.25rem;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-xl);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.tier:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.tier--featured {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.tier--featured:hover {
  box-shadow: var(--shadow-xl);
}

.tier__head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.tier__tag {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.tier--featured .tier__tag {
  color: #e8a3a3;
}

.tier__num {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--ink-faint);
}

.tier--featured .tier__num {
  color: rgba(255, 255, 255, 0.4);
}

.tier__title {
  font-size: clamp(1.7rem, 2.5vw, 2.15rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
}

.tier__cadence {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-muted);
}

.tier--featured .tier__cadence {
  color: rgba(255, 255, 255, 0.55);
}

.tier__intro {
  margin-top: 1.5rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

.tier--featured .tier__intro {
  color: rgba(255, 255, 255, 0.78);
}

.tier__includes {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
}

.tier--featured .tier__includes {
  color: #e8a3a3;
}

.tier__features {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  flex-grow: 1;
}

.tier__feature {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--ink-soft);
}

.tier--featured .tier__feature {
  color: rgba(255, 255, 255, 0.85);
}

.tier__feature-check {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  margin-top: 2px;
}

.tier--featured .tier__feature-check {
  background: rgba(232, 163, 163, 0.18);
  color: #e8a3a3;
}

.tier__feature-check svg {
  width: 12px;
  height: 12px;
}

.tier__foot {
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--rule);
}

.tier--featured .tier__foot {
  border-top-color: rgba(255, 255, 255, 0.15);
}

.tier__price {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 1.25rem;
}

.tier__cta {
  width: 100%;
}

/* ---- Add-on ---- */
.addon {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 720px) {
  .addon {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

.addon__title {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.addon__tag {
  margin-top: 0.4rem;
  font-size: 0.9rem;
  color: var(--ink-muted);
  font-weight: 500;
}

.addon__desc {
  margin-top: 1rem;
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 32rem;
}

.addon__price {
  text-align: left;
}

@media (min-width: 720px) {
  .addon__price {
    text-align: right;
  }
}

.addon__price-main {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.addon__price-sub {
  margin-top: 0.25rem;
  color: var(--ink-soft);
}

/* ---- Services: monthly plan (flagship) ---- */
.plan {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
  border: 1px solid var(--ink);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 4vw, 3.25rem);
}

.plan::before {
  content: "";
  position: absolute;
  top: -35%;
  right: -10%;
  width: 55%;
  aspect-ratio: 1;
  background: radial-gradient(circle, var(--accent-glow), transparent 60%);
  pointer-events: none;
}

.plan__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3rem);
}

@media (min-width: 880px) {
  .plan__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: start;
  }
}

.plan__tag {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #e8a3a3;
}

.plan__title {
  margin-top: 1rem;
  font-size: clamp(1.85rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--white);
}

.plan__intro {
  margin-top: 1.1rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
  max-width: 32rem;
}

.plan__price {
  margin-top: 1.85rem;
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
}

.plan__price-num {
  font-size: clamp(2.75rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--white);
}

.plan__price-cadence {
  font-size: 1.05rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
}

.plan__term {
  margin-top: 0.65rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.plan__cta {
  margin-top: 2rem;
  width: 100%;
}

@media (min-width: 540px) {
  .plan__cta {
    width: auto;
  }
}

.plan__includes {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #e8a3a3;
  margin-bottom: 1.2rem;
}

.plan__features {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.plan__feature {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.plan__feature-check {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(232, 163, 163, 0.18);
  color: #e8a3a3;
  margin-top: 1px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}

.plan__feature-check svg {
  width: 13px;
  height: 13px;
}

.plan__feature-title {
  font-weight: 600;
  color: var(--white);
  line-height: 1.4;
}

.plan__feature-desc {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.65);
}

.plan__perk {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.plan__perk-badge {
  flex-shrink: 0;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
  background: #e8a3a3;
  border-radius: 999px;
  padding: 0.3rem 0.75rem;
}

.plan__perk-text {
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.82);
}

/* ---- Services: one-time projects ---- */
.projects {
  border-top: 1px solid var(--rule);
}

.project {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.4rem 1rem;
  border-bottom: 1px solid var(--rule);
  transition: background var(--dur) var(--ease);
}

.project:hover {
  background: var(--paper);
}

.project__name {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.project__sub {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--ink-muted);
}

.project__price {
  flex-shrink: 0;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}

.project--bundle {
  margin-top: 0.85rem;
  padding-inline: 1.25rem;
  background: var(--accent-soft);
  border-bottom: none;
  border-radius: var(--radius-lg);
}

.project--bundle:hover {
  background: var(--accent-soft);
}

.project--bundle .project__name,
.project--bundle .project__price {
  color: var(--accent-2);
}

/* ---- FAQ ---- */
.faq { border-top: 1px solid var(--rule); }
.faq__item { border-bottom: 1px solid var(--rule); }
.faq__q {
  cursor: pointer;
  list-style: none;
  padding: 1.4rem 0;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after {
  content: "+";
  flex-shrink: 0;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
  color: var(--accent);
  transition: transform var(--dur) var(--ease);
}
.faq__item[open] .faq__q::after { transform: rotate(45deg); }
.faq__a {
  padding-bottom: 1.4rem;
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 62ch;
}
.faq__a p + p { margin-top: 0.75rem; }

/* ---- Contact form ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 960px) {
  .contact-grid {
    grid-template-columns: 1.45fr 1fr;
    gap: 4rem;
  }
}

.form {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.35rem;
}

@media (min-width: 640px) {
  .form__row {
    grid-template-columns: 1fr 1fr;
  }
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form__label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.005em;
}

.form__label-opt {
  font-weight: 400;
  color: var(--ink-muted);
}

.form__input,
.form__textarea,
.form__select {
  width: 100%;
  padding: 0.95rem 1.1rem;
  background: var(--white);
  border: 1.5px solid var(--rule);
  border-radius: var(--radius);
  color: var(--ink);
  font-size: 1rem;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  font-family: inherit;
}

.form__input:focus,
.form__textarea:focus,
.form__select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-glow);
}

.form__textarea {
  resize: vertical;
  min-height: 140px;
}

.form__hidden {
  display: none;
}

.form__submit {
  align-self: flex-start;
  padding: 1rem 2rem;
  margin-top: 0.5rem;
}

@media (max-width: 640px) {
  .form__submit {
    width: 100%;
  }
}

.contact-aside {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius-xl);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  align-self: start;
}

.contact-aside__title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1.75rem;
  letter-spacing: -0.015em;
}

.contact-aside__list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-aside__item {
  display: flex;
  gap: 1rem;
  align-items: start;
}

.contact-aside__icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--rule);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contact-aside__icon svg {
  width: 20px;
  height: 20px;
}

.contact-aside__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  display: block;
  margin-bottom: 0.25rem;
}

.contact-aside__value {
  font-weight: 600;
  color: var(--ink);
  word-break: break-word;
  transition: color var(--dur) var(--ease);
}

.contact-aside__value:hover {
  color: var(--accent);
}

.contact-aside__divider {
  height: 1px;
  background: var(--rule);
  margin-block: 2rem;
}

/* ---- Portfolio ---- */
.portfolio-section + .portfolio-section {
  margin-top: clamp(4rem, 8vw, 6.5rem);
}

.portfolio-section__head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: end;
  gap: 1.5rem;
  margin-bottom: clamp(2rem, 3.5vw, 3rem);
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--rule);
}

.portfolio-section__head-text {
  max-width: 36rem;
}

.portfolio-section__title {
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--ink);
}

.portfolio-section__intro {
  margin-top: 0.75rem;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.6;
}

.portfolio-section__count {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-variant-numeric: tabular-nums;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

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

.portfolio-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--paper);
  display: block;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}

/* Full-width lead image */
.portfolio-item--feature {
  grid-column: 1 / -1;
}

.portfolio-item--feature img {
  aspect-ratio: 16 / 9;
}

.portfolio-item:hover img {
  transform: scale(1.03);
}

.portfolio-item__caption {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  background: linear-gradient(to top, rgba(20, 22, 28, 0.78), transparent 55%);
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
  pointer-events: none;
}

.portfolio-item:hover .portfolio-item__caption,
.portfolio-item:focus-within .portfolio-item__caption {
  opacity: 1;
}

.portfolio-item__caption-text {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  line-height: 1.4;
}

/* Honor reduced motion */
@media (prefers-reduced-motion: reduce) {
  .portfolio-item img {
    transition: none;
  }
  .portfolio-item:hover img {
    transform: none;
  }
}

/* ---- Thank you page ---- */
.thanks {
  text-align: center;
  padding-block: clamp(5rem, 10vw, 8rem);
}

.thanks__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  margin-bottom: 2rem;
}

.thanks__icon svg {
  width: 32px;
  height: 32px;
}

.thanks__sub {
  margin-top: 1.5rem;
  max-width: 32rem;
  margin-inline: auto;
}

.thanks__actions {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* ---- Reveal animations ---- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

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

/* ---- Utilities ---- */
.text-center {
  text-align: center;
}

.mt-section {
  margin-top: clamp(2.5rem, 5vw, 4rem);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  width: auto;
  height: auto;
  padding: 0.6rem 1rem;
  overflow: visible;
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius);
  z-index: 200;
  text-decoration: none;
  font-weight: 600;
}

.visually-hidden:focus {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0.6rem 1rem;
  clip: auto;
  clip-path: none;
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius);
  z-index: 100;
  font-weight: 600;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ============================================
   2026-06 rework: pricing, booking & trust
   ============================================ */

/* ---- Trust strip (hero credentials) ---- */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 1.5rem;
  margin-top: 2.25rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--rule);
}

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

.trust-strip__item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--ink-2);
}

.trust-strip__item svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  color: var(--accent);
}

/* ---- Quick contact bar (mobile only) ---- */
.quick-bar {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 60;
  display: flex;
  gap: 1px;
  background: var(--rule);
  border-top: 1px solid var(--rule);
  box-shadow: 0 -6px 24px rgba(20, 22, 28, 0.08);
}

.quick-bar__btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 52px;
  padding: 0.85rem 1rem;
  font-size: 0.92rem;
  font-weight: 600;
}

.quick-bar__btn svg {
  width: 18px;
  height: 18px;
}

.quick-bar__btn--wa {
  background: #25d366;
  color: var(--white);
}

.quick-bar__btn--book {
  background: var(--accent);
  color: var(--white);
}

body:has(.quick-bar) {
  padding-bottom: 53px;
}

@media (min-width: 720px) {
  .quick-bar {
    display: none;
  }

  body:has(.quick-bar) {
    padding-bottom: 0;
  }
}

/* ---- Numbered steps (how it works) ---- */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  counter-reset: step;
}

@media (min-width: 720px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.step {
  position: relative;
  padding: 1.75rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
}

.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 700;
  font-size: 0.95rem;
}

.step__title {
  margin-top: 1rem;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.015em;
}

.step__desc {
  margin-top: 0.5rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* ---- Stat band (Airbnb data) ---- */
.stat-band {
  background: var(--paper);
  border-block: 1px solid var(--rule);
}

.stat-band__figures {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

@media (max-width: 539px) {
  .stat-band__figures {
    grid-template-columns: 1fr;
  }
}

.stat-figure__num {
  display: block;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}

.stat-figure__label {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 16rem;
}

.stat-band__source {
  margin-top: 2rem;
  font-size: 0.82rem;
  color: var(--ink-muted);
}

.stat-band__source a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ---- Coming soon ---- */
.coming-soon {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 720px) {
  .coming-soon {
    grid-template-columns: repeat(2, 1fr);
  }
}

.cs-card {
  padding: 1.75rem;
  background: var(--paper);
  border: 1.5px dashed var(--rule);
  border-radius: var(--radius-lg);
  color: var(--ink-soft);
}

.cs-card__tag {
  display: inline-block;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: var(--paper-2);
  border: 1px solid var(--rule);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.cs-card__title {
  margin-top: 0.9rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
}

.cs-card__desc {
  margin-top: 0.5rem;
  font-size: 0.92rem;
  line-height: 1.6;
}

.cs-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.1rem;
}

.cs-form input[type="email"] {
  flex: 1 1 12rem;
  padding: 0.7rem 1rem;
  border: 1px solid var(--rule);
  border-radius: 999px;
  background: var(--white);
  font-size: 0.9rem;
}

.cs-form input[type="email"]:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}

.cs-form button {
  padding: 0.7rem 1.3rem;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 600;
}

.cs-form button:hover {
  background: var(--ink-2);
}

.cs-form__why {
  flex-basis: 100%;
  font-size: 0.8rem;
  color: var(--ink-muted);
}

/* ---- Preset packages ---- */
.pkg-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 960px) {
  .pkg-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }
}

.pkg-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2.25rem 2rem 2rem;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-xl);
  text-align: left;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.pkg-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pkg-card--featured {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.pkg-card__tag {
  position: absolute;
  top: -0.8rem;
  left: 2rem;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pkg-card__name {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.pkg-card__for {
  margin-top: 0.35rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink-muted);
}

.pkg-card--featured .pkg-card__for {
  color: rgba(255, 255, 255, 0.6);
}

.pkg-card__list {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.93rem;
  color: var(--ink-soft);
  flex-grow: 1;
}

.pkg-card--featured .pkg-card__list {
  color: rgba(255, 255, 255, 0.82);
}

.pkg-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.pkg-card__list svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  color: var(--accent);
}

.pkg-card--featured .pkg-card__list svg {
  color: #e8a3a3;
}

.pkg-card__pricing {
  margin-top: 1.5rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--rule);
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.pkg-card--featured .pkg-card__pricing {
  border-top-color: rgba(255, 255, 255, 0.15);
}

.pkg-card__was {
  font-size: 1rem;
  color: var(--ink-faint);
  text-decoration: line-through;
  font-variant-numeric: tabular-nums;
}

.pkg-card--featured .pkg-card__was {
  color: rgba(255, 255, 255, 0.45);
}

.pkg-card__price {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  font-variant-numeric: tabular-nums;
}

.pkg-card__save {
  display: inline-block;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
}

.pkg-card--featured .pkg-card__save {
  background: rgba(232, 163, 163, 0.18);
  color: #e8a3a3;
}

.pkg-card__cta {
  margin-top: 1.4rem;
  width: 100%;
}

/* ---- Pricing calculator ---- */
.calc {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 960px) {
  .calc {
    grid-template-columns: 1.4fr 1fr;
    gap: 2.5rem;
  }
}

.size-toggle {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0.4rem;
  background: var(--paper-2);
  border-radius: var(--radius-lg);
}

.size-toggle__opt {
  flex: 1 1 auto;
}

.size-toggle__opt input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.size-toggle__opt label {
  display: block;
  padding: 0.65rem 1rem;
  border-radius: 12px;
  font-size: 0.88rem;
  font-weight: 600;
  text-align: center;
  color: var(--ink-soft);
  cursor: pointer;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}

.size-toggle__opt input:checked + label {
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}

.size-toggle__opt input:focus-visible + label {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.calc__options {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 1.25rem;
}

.calc-opt {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.4rem;
  background: var(--white);
  border: 1.5px solid var(--rule);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}

.calc-opt:hover {
  border-color: var(--ink-faint);
}

.calc-opt.is-selected {
  border-color: var(--accent);
  background: #fdfaf9;
}

.calc-opt input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.calc-opt__check {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin-top: 2px;
  border: 2px solid var(--rule);
  border-radius: 8px;
  background: var(--white);
  color: transparent;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease);
}

.calc-opt__check svg {
  width: 14px;
  height: 14px;
}

.calc-opt.is-selected .calc-opt__check {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.calc-opt input:focus-visible ~ .calc-opt__check {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.calc-opt__body {
  flex-grow: 1;
}

.calc-opt__name {
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: -0.01em;
}

.calc-opt__desc {
  margin-top: 0.3rem;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--ink-soft);
}

.calc-opt__link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
}

.calc-opt__link:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.calc-opt__price {
  flex-shrink: 0;
  font-weight: 700;
  font-size: 1.05rem;
  font-variant-numeric: tabular-nums;
}

.calc-opt--disabled {
  cursor: default;
  background: var(--paper);
  border-style: dashed;
  color: var(--ink-muted);
}

.calc-opt--disabled:hover {
  border-color: var(--rule);
}

.calc-opt--disabled .calc-opt__name {
  color: var(--ink-soft);
}

.calc-opt__soon {
  flex-shrink: 0;
  align-self: center;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-muted);
  white-space: nowrap;
}

.summary-card {
  padding: 1.9rem 1.75rem;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

@media (min-width: 960px) {
  .summary-card {
    position: sticky;
    top: 96px;
  }
}

.summary-card__title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.summary-card__lines {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.summary-line {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.93rem;
}

.summary-line__name {
  color: var(--ink-2);
  font-weight: 500;
}

.summary-line__tag {
  display: inline-block;
  margin-left: 0.4rem;
  padding: 0.1rem 0.5rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  white-space: nowrap;
}

.summary-line__price {
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  white-space: nowrap;
}

.summary-line__was {
  margin-right: 0.45rem;
  color: var(--ink-muted);
  font-weight: 400;
  text-decoration: line-through;
}

.summary-card__empty {
  margin-top: 1.25rem;
  font-size: 0.92rem;
  color: var(--ink-muted);
  line-height: 1.55;
}

.summary-savings {
  margin-top: 1.25rem;
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius);
  background: var(--accent-soft);
  color: var(--accent-2);
  font-size: 0.88rem;
  line-height: 1.5;
  font-weight: 500;
}

.summary-savings strong {
  font-weight: 700;
}

.summary-total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.4rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--rule);
}

.summary-total[hidden] {
  display: none;
}

.summary-total__label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink-2);
}

.summary-total__num {
  font-size: 2.1rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  font-variant-numeric: tabular-nums;
}

.summary-note {
  margin-top: 0.85rem;
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--ink-muted);
}

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

.summary-trust {
  margin-top: 0.85rem;
  font-size: 0.78rem;
  text-align: center;
  color: var(--ink-muted);
}

/* ---- Price & travel-zone tables ---- */
.price-table,
.zone-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.price-table th,
.price-table td,
.zone-table th,
.zone-table td {
  padding: 0.95rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--rule);
  vertical-align: top;
}

.price-table th,
.zone-table th {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.price-table td:last-child,
.zone-table td:last-child {
  text-align: right;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.price-table__sub {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--ink-muted);
}

/* ---- Next steps (contextual cross-links) ---- */
.next-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 720px) {
  .next-steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.next-step {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1.2rem 1.4rem;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 0.95rem;
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.next-step:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.next-step svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--accent);
}

/* ---- Breadcrumbs ---- */
.crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--ink-muted);
}

.crumbs a:hover {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.crumbs__sep {
  color: var(--ink-faint);
}

.crumbs [aria-current="page"] {
  color: var(--ink-2);
  font-weight: 600;
}

/* ---- Credential badge (text-based, e.g. FAA Part 107) ---- */
.badge--cred .badge__media {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
}

.badge--cred .badge__media svg {
  width: 30px;
  height: 30px;
}

.badge--cred .badge__media .badge__mark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
  color: var(--accent);
}

/* ---- Booking page quote recap ---- */
.quote-recap {
  display: none;
  margin-bottom: 2rem;
  padding: 1.4rem 1.6rem;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
}

.quote-recap.is-visible {
  display: block;
}

.quote-recap__label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.quote-recap__body {
  margin-top: 0.5rem;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--ink-2);
}

.quote-recap__body strong {
  font-variant-numeric: tabular-nums;
}

.quote-recap__note {
  margin-top: 0.35rem;
  font-size: 0.82rem;
  color: var(--ink-muted);
}

/* ---- Scope note ---- */
.scope-note {
  font-size: 0.88rem;
  color: var(--ink-muted);
  line-height: 1.55;
}

.scope-note a {
  color: var(--accent);
  font-weight: 600;
}

.scope-note a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---- Footer: 4-column variant + coming-soon entries ---- */
@media (min-width: 720px) {
  .footer__grid--4 {
    grid-template-columns: 1.4fr 1fr 1.1fr 1.2fr;
  }
}

.footer__soon {
  color: var(--ink-faint);
  font-size: 0.85rem;
}

.footer__cred {
  margin-top: 1rem;
  font-size: 0.82rem;
  color: var(--ink-muted);
}

/* ---- Footer additions ---- */
.footer__trust {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: var(--ink-faint);
}

.footer__link--muted {
  color: var(--ink-faint);
  font-size: 0.85em;
  pointer-events: none;
  cursor: default;
}

/* ---- Service grid item links ---- */
.diff__item-link {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.diff__item-link:hover .diff__item-title {
  color: var(--accent);
}

/* ---- Booking embed container ---- */
.cal-embed {
  width: 100%;
  min-height: 680px;
  overflow: auto;
  border-radius: var(--radius-lg);
}

/* ============================================
   REWORK v2: dropdown nav, hero text-forward,
   stat-band layout fix, audience cards
   ============================================ */

/* ---- Dropdown nav item ("Para quién / Who it's for") ---- */
.header__nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.header__dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color var(--dur) var(--ease);
}

.header__dropdown-toggle:hover,
.header__nav-item.is-open .header__dropdown-toggle,
.header__dropdown-toggle[aria-expanded="true"] {
  color: var(--ink);
}

.header__dropdown-toggle svg {
  width: 13px;
  height: 13px;
  transition: transform var(--dur) var(--ease);
}

.header__nav-item.is-open .header__dropdown-toggle svg {
  transform: rotate(180deg);
}

/* hover bridge so the menu doesn't disappear between toggle and panel */
.header__nav-item::after {
  content: "";
  position: absolute;
  top: 100%;
  left: -0.5rem;
  right: -0.5rem;
  height: 14px;
}

.header__dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 17rem;
  padding: 0.5rem;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease),
    visibility var(--dur) var(--ease);
  z-index: 60;
}

.header__nav-item:hover .header__dropdown-menu,
.header__nav-item:focus-within .header__dropdown-menu,
.header__nav-item.is-open .header__dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.header__dropdown-link {
  display: block;
  padding: 0.7rem 0.85rem;
  border-radius: var(--radius);
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 600;
  transition: background var(--dur) var(--ease);
}

.header__dropdown-link span {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--ink-muted);
  line-height: 1.4;
}

.header__dropdown-link:hover,
.header__dropdown-link:focus-visible {
  background: var(--paper);
}

/* Mobile: dropdown renders as a labeled group of sublinks */
.header__mobile-group-label {
  padding: 1rem 0 0.5rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.header__mobile-sublink {
  padding: 0.85rem 0 0.85rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--rule-soft);
}

/* ---- Hero: text-forward, single column (no visual) ---- */
.hero__content--center {
  max-width: 52rem;
}

.hero__content--center .hero__sub {
  max-width: 40rem;
}

/* ---- Stat band: two-column layout (fixes detached figures) ---- */
.stat-band__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

.stat-band__content a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (min-width: 880px) {
  .stat-band__inner {
    grid-template-columns: 1.4fr 0.9fr;
    gap: clamp(2.5rem, 5vw, 4.5rem);
  }

  .stat-band__figures {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 0;
  }
}

/* ---- Audience cards (home → 3 audience pages) ---- */
.audience-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 720px) {
  .audience-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.audience-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.85rem 1.6rem 2rem;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-xl);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease),
    border-color var(--dur) var(--ease);
}

.audience-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--ink-faint);
}

.audience-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--paper-2);
  color: var(--accent);
}

.audience-card__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.audience-card__desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

.audience-card__link {
  margin-top: auto;
  padding-top: 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--accent);
}

.audience-card__link svg {
  width: 16px;
  height: 16px;
  transition: transform var(--dur) var(--ease);
}

.audience-card:hover .audience-card__link svg {
  transform: translateX(4px);
}

/* ---- "Para quién / Who it's for" full-width editorial acts ---- */
.who__head-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 880px) {
  .who__head-row {
    grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr);
    column-gap: clamp(2.5rem, 6vw, 5rem);
    align-items: end;
  }
}

.who__head-lead {
  margin: 0;
  color: var(--ink-soft);
}

.who__acts {
  list-style: none;
  margin: clamp(2.75rem, 5vw, 4.5rem) 0 0;
  padding: 0;
  border-bottom: 1px solid var(--rule);
}

.who__act {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem 1.5rem;
  padding: clamp(2rem, 4vw, 3.4rem) 0;
  border-top: 1px solid var(--rule);
}

@media (min-width: 880px) {
  .who__act {
    grid-template-columns: auto minmax(0, 1.55fr);
    column-gap: clamp(2.25rem, 5vw, 4.5rem);
    align-items: center;
  }
  /* zigzag: even rows put the numeral on the right */
  .who__act:nth-child(even) {
    grid-template-columns: minmax(0, 1.55fr) auto;
  }
  .who__act:nth-child(even) .who__num {
    order: 2;
    justify-self: end;
  }
  .who__act:nth-child(even) .who__act-body {
    order: 1;
  }
}

.who__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3.25rem, 7vw, 6rem);
  line-height: 0.82;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(168, 50, 50, 0.55);
  transition: -webkit-text-stroke-color var(--dur) var(--ease);
}

@supports not (-webkit-text-stroke: 1px black) {
  .who__num {
    color: rgba(168, 50, 50, 0.55);
  }
}

.who__name {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.04;
  color: var(--ink);
  transition: color var(--dur) var(--ease);
}

.who__copy {
  margin-top: 0.9rem;
  font-size: 1.05rem;
  line-height: 1.62;
  color: var(--ink-soft);
  max-width: 44rem;
}

.who__act:hover .who__name {
  color: var(--accent);
}

.who__act:hover .who__num {
  -webkit-text-stroke-color: var(--accent);
}
