@font-face {
  font-family: "Comfortaa";
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url("../fonts/comfortaa-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/open-sans-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 600 700;
  font-display: swap;
  src: url("../fonts/playfair-display-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Playfair Display";
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/playfair-display-italic-latin.woff2") format("woff2");
}

:root {
  --burgundy: #8b4f54;
  --burgundy-dark: #63353a;
  --burgundy-deep: #321b1e;
  --blush: #ffcccc;
  --nude: #ffdcdA;
  --rose-mist: #fff5f4;
  --black: #000000;
  --ink: #221c1d;
  --muted: #6e6264;
  --white: #ffffff;
  --cream: #fffaf8;
  --line: rgba(139, 79, 84, 0.18);
  --success: #316b51;
  --error: #a02d36;
  --shadow-sm: 0 12px 30px rgba(68, 31, 35, 0.08);
  --shadow-lg: 0 28px 70px rgba(68, 31, 35, 0.14);
  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --container: min(1180px, calc(100% - 40px));
  --font-heading: "Playfair Display", Georgia, serif;
  --font-body: "Open Sans", Arial, sans-serif;
  --font-label: "Comfortaa", "Open Sans", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.68;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--burgundy);
  outline-offset: 4px;
}

:where(.site-header, .topbar, .section-dark, .section-burgundy, .site-footer, .cookie-banner)
  :focus-visible {
  outline-color: var(--white);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.65em;
  color: var(--ink);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.08;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.65rem, 6vw, 5.6rem);
  letter-spacing: -0.04em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.75rem);
  letter-spacing: -0.025em;
}

h3 {
  font-size: clamp(1.35rem, 2.4vw, 2rem);
}

h4 {
  font-size: 1.15rem;
}

p {
  margin: 0 0 1.2rem;
}

ul,
ol {
  padding-left: 1.25rem;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 9999;
  padding: 12px 18px;
  background: var(--white);
  color: var(--black);
  border-radius: 999px;
}

.skip-link:focus {
  top: 16px;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.narrow {
  width: min(780px, calc(100% - 40px));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: clamp(76px, 9vw, 132px) 0;
  overflow: clip;
}

.section-compact {
  padding: clamp(48px, 6vw, 80px) 0;
}

.section-blush {
  background: var(--rose-mist);
}

.section-nude {
  background: var(--nude);
}

.section-dark {
  background:
    radial-gradient(circle at 85% 20%, rgba(255, 204, 204, 0.16), transparent 34%),
    var(--black);
  color: var(--white);
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--white);
}

.section-burgundy {
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.14), transparent 32%),
    var(--burgundy);
  color: var(--white);
}

.section-burgundy h2,
.section-burgundy h3,
.section-burgundy h4 {
  color: var(--white);
}

.section-heading {
  max-width: 780px;
  margin: 0 auto clamp(38px, 5vw, 62px);
  text-align: center;
}

.section-heading.align-left {
  margin-inline: 0;
  text-align: left;
}

.section-heading p {
  max-width: 680px;
  margin-inline: auto;
  color: var(--muted);
  font-size: 1.08rem;
}

.section-dark .section-heading p,
.section-burgundy .section-heading p {
  color: rgba(255, 255, 255, 0.78);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--burgundy);
  font-family: var(--font-label);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 1px;
  background: currentColor;
  content: "";
}

.section-dark .eyebrow,
.section-burgundy .eyebrow {
  color: var(--blush);
}

.lede {
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.65;
}

.tagline-script {
  color: var(--burgundy);
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-style: italic;
}

.fine-print {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.55;
}

.section-dark .fine-print {
  color: #f2cfd2;
  font-weight: 600;
}

.section-burgundy .fine-print {
  color: rgba(255, 255, 255, 0.88);
}

.legal-readiness .card p {
  color: var(--burgundy-dark);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button-row-centered {
  justify-content: center;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-family: var(--font-label);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--burgundy);
  color: var(--white);
  box-shadow: 0 12px 26px rgba(139, 79, 84, 0.22);
}

.button-primary:hover {
  background: var(--burgundy-dark);
}

.button-secondary {
  border-color: var(--burgundy);
  background: transparent;
  color: var(--burgundy);
}

.button-secondary:hover {
  background: var(--burgundy);
  color: var(--white);
}

.button-light {
  background: var(--white);
  color: var(--burgundy-dark);
}

.button-ghost-light {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}

.button-ghost-light:hover {
  background: var(--white);
  color: var(--black);
}

.button[disabled] {
  cursor: wait;
  opacity: 0.65;
  transform: none;
}

.topbar {
  position: relative;
  z-index: 120;
  padding: 8px 20px;
  background: var(--burgundy);
  color: var(--white);
  font-family: var(--font-label);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 110;
  background: rgba(0, 0, 0, 0.96);
  color: var(--white);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: box-shadow 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.25);
}

.nav-shell {
  display: flex;
  min-height: 136px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  color: var(--white);
  text-decoration: none;
}

.brand img {
  width: 184px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.32));
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  content: "";
  transition: transform 180ms ease;
}

.nav-toggle span {
  margin: 4px 0;
}

.nav-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"]::before {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"]::after {
  transform: translateY(-6px) rotate(-45deg);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 3px;
}

.nav-list {
  display: flex;
  margin: 0;
  padding: 0;
  align-items: center;
  gap: 2px;
  list-style: none;
}

.nav-item {
  position: relative;
}

.nav-link,
.dropdown-toggle {
  display: flex;
  min-height: 46px;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.82);
  cursor: pointer;
  font-family: var(--font-label);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-link:hover,
.nav-link[aria-current="page"],
.dropdown-toggle.is-current,
.dropdown-toggle:hover {
  color: var(--blush);
}

.dropdown-toggle::after {
  font-size: 0.72rem;
  content: "⌄";
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  width: 260px;
  margin: 0;
  padding: 10px;
  border: 1px solid rgba(255, 204, 204, 0.18);
  border-radius: var(--radius-sm);
  background: #111;
  box-shadow: var(--shadow-lg);
  list-style: none;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  visibility: hidden;
  transition:
    opacity 160ms ease,
    transform 160ms ease,
    visibility 0s linear 160ms;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.is-open .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
  visibility: visible;
  transition-delay: 0s;
}

.has-js .nav-dropdown:not(.is-open):hover .dropdown-menu {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  visibility: hidden;
}

.dropdown-link {
  display: block;
  padding: 11px 12px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  line-height: 1.35;
  text-decoration: none;
}

.dropdown-link:hover,
.dropdown-link[aria-current="page"] {
  background: rgba(255, 204, 204, 0.12);
  color: var(--blush);
}

.nav-cta {
  min-height: 44px;
  margin-left: 8px;
  padding-inline: 17px;
}

.hero {
  position: relative;
  min-height: min(820px, calc(100svh - 168px));
  display: grid;
  align-items: stretch;
  overflow: hidden;
  background: linear-gradient(108deg, #ffffff 0%, #ffffff 36%, #fff5f6 65%, #ffcccc 100%);
}

.hero-grid {
  display: grid;
  min-height: inherit;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: 80px 56px 80px 0;
}

.hero-copy h1 {
  max-width: 720px;
}

.hero-copy .lede {
  max-width: 570px;
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: linear-gradient(108deg, #ffffff 0%, #ffffff 36%, #fff5f6 65%, #ffcccc 100%);
}

.hero-media::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(
    90deg,
    #ffffff 0%,
    #ffffff 26%,
    rgba(255, 255, 255, 0.98) 32%,
    rgba(255, 255, 255, 0.88) 37%,
    rgba(255, 255, 255, 0.68) 42%,
    rgba(255, 255, 255, 0.44) 47%,
    rgba(255, 255, 255, 0.22) 52%,
    rgba(255, 255, 255, 0.08) 58%,
    transparent 64%
  );
  content: "";
  pointer-events: none;
}

.hero-media > .hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: hero-hands-zoom 7.4s ease-in-out infinite alternate;
  filter: saturate(1.01) contrast(1.01) brightness(1.01);
  object-fit: contain;
  object-position: right center;
  transform-origin: 76% 68%;
  will-change: transform;
}

@keyframes hero-hands-zoom {
  from {
    transform: scale(1.015);
  }

  to {
    transform: scale(1.15);
  }
}

.hero-logo-showcase {
  position: absolute;
  z-index: 3;
  top: clamp(24px, 4vw, 52px);
  right: clamp(56px, 7.5vw, 112px);
  width: clamp(250px, 19vw, 340px);
  padding: 8px 10px 10px;
  border: 1px solid rgba(255, 204, 204, 0.58);
  border-radius: 22px;
  background: rgba(0, 0, 0, 0.92);
  box-shadow:
    0 18px 44px rgba(63, 25, 29, 0.26),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  pointer-events: none;
}

.hero-logo-showcase img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
}

@media (min-width: 1121px) {
  .nav-dropdown::after {
    position: absolute;
    z-index: 1;
    top: 100%;
    right: 0;
    left: 0;
    height: 20px;
    content: "";
  }

  .nav-dropdown .dropdown-menu {
    z-index: 2;
  }
}

@media (min-width: 861px) and (max-height: 950px) {
  .hero-copy {
    padding: 42px 56px 42px 0;
  }

  .hero-copy h1 {
    margin-bottom: 24px;
    font-size: clamp(3.5rem, 4.35vw, 4rem);
    line-height: 1.02;
  }

  .hero-copy .tagline-script {
    margin-bottom: 16px;
    font-size: 2rem;
    line-height: 1.4;
  }

  .hero-copy .lede {
    font-size: 1.125rem;
    line-height: 1.5;
  }
}

.hero-note {
  display: flex;
  margin-top: 28px;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 0.86rem;
}

.hero-note strong {
  color: var(--ink);
}

.hero-note-mark {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--burgundy);
  box-shadow: var(--shadow-sm);
}

.inner-hero {
  position: relative;
  min-height: 540px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.inner-hero h1 {
  max-width: 900px;
  color: var(--white);
  font-size: clamp(2.7rem, 6vw, 5.4rem);
}

.inner-hero .eyebrow {
  color: var(--blush);
}

.inner-hero .lede {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
}

.inner-hero-content {
  position: relative;
  z-index: 2;
  padding: 100px 0 70px;
}

.inner-hero-media {
  position: absolute;
  inset: 0;
}

.inner-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.86;
}

.services-hero-motion {
  overflow: hidden;
  background: #d99094;
}

.inner-hero.services-hero {
  min-height: 540px;
  aspect-ratio: auto;
  align-items: end;
}

.services-hero-motion img {
  animation: services-bubbles-travel 14s cubic-bezier(0.45, 0.05, 0.2, 1) infinite alternate;
  object-fit: cover;
  object-position: center;
  transform: translate3d(0, 0, 0) scale(1);
  transform-origin: 78% 50%;
  will-change: transform;
}

@keyframes services-bubbles-travel {
  0%, 12% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  82%, 100% {
    transform: translate3d(-0.75%, 0, 0) scale(1.035);
  }
}

.investor-hero-camera {
  overflow: hidden;
}

.investor-hero-camera img {
  animation: investor-camera-semicircle 12s cubic-bezier(0.37, 0, 0.63, 1) infinite alternate;
  transform-origin: 50% 50%;
  will-change: transform;
}

@keyframes investor-camera-semicircle {
  0% {
    transform: scale(1.075) translate3d(-0.65%, 0.3%, 0) rotateZ(-0.06deg);
  }

  22% {
    transform: scale(1.084) translate3d(0%, -0.25%, 0) rotateZ(-0.02deg);
  }

  50% {
    transform: scale(1.096) translate3d(0.85%, -0.65%, 0) rotateZ(0.03deg);
  }

  76% {
    transform: scale(1.107) translate3d(1.55%, -0.45%, 0) rotateZ(0.08deg);
  }

  100% {
    transform: scale(1.115) translate3d(2.1%, 0.1%, 0) rotateZ(0.11deg);
  }
}

.inner-hero-media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.74) 0%, rgba(0, 0, 0, 0.34) 48%, rgba(0, 0, 0, 0.06) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.38), transparent 62%);
  content: "";
}

.authority-band {
  background: var(--black);
  color: var(--white);
}

.projection-note {
  max-width: 900px;
  margin: 22px auto 0;
  text-align: center;
}

.authority-band .projection-note {
  margin-top: 0;
  padding: 0 18px 24px;
  color: rgba(255, 255, 255, 0.64);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.metric {
  min-width: 0;
  padding: 34px 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}

.metric:last-child {
  border-right: 0;
}

.metric strong {
  display: block;
  margin-bottom: 4px;
  color: var(--blush);
  font-family: var(--font-heading);
  font-size: clamp(1.55rem, 3vw, 2.5rem);
  line-height: 1;
}

.metric span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-label);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.45;
  text-transform: uppercase;
}

.grid-2,
.grid-3,
.grid-4,
.grid-6 {
  display: grid;
  gap: 22px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid-6 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  position: relative;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.card:not(.model-card),
.step,
.timeline-item,
.price-summary-card,
.department,
.manual {
  transform: translateY(0);
  transition:
    transform 240ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 220ms ease,
    box-shadow 240ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .card:not(.model-card):hover,
  .step:hover,
  .timeline-item:hover,
  .price-summary-card:hover,
  .department:hover,
  .manual:hover {
    border-color: rgba(139, 79, 84, 0.34);
    box-shadow: 0 20px 42px rgba(50, 27, 30, 0.12);
    transform: translateY(-6px);
  }
}

.card:not(.model-card):focus-within,
.step:focus-within,
.timeline-item:focus-within,
.price-summary-card:focus-within,
.department:focus-within,
.manual:focus-within {
  border-color: rgba(139, 79, 84, 0.34);
  box-shadow: 0 20px 42px rgba(50, 27, 30, 0.12);
  transform: translateY(-6px);
}

:where(.section-dark, .section-burgundy)
  :is(.card, .timeline-item, .step, .form-shell, .table-wrap, .price-summary-card, .department, .manual, .accordion details) {
  color: var(--ink);
}

:where(.section-dark, .section-burgundy)
  :is(.card, .timeline-item, .step, .form-shell, .table-wrap, .price-summary-card, .department, .manual, .accordion details)
  :is(h2, h3, h4, strong) {
  color: var(--ink);
}

:where(.section-dark, .section-burgundy)
  :is(.card, .timeline-item, .step, .form-shell, .table-wrap, .price-summary-card, .department, .manual, .accordion details)
  p {
  color: var(--muted);
}

.section-dark .form-shell .eyebrow,
.section-burgundy .form-shell .eyebrow {
  color: var(--burgundy);
}

.card h3 {
  margin-bottom: 10px;
}

.opportunity-path-grid .card {
  min-width: 0;
  height: 100%;
}

.opportunity-path-grid .icon-badge {
  margin-right: auto;
  margin-left: auto;
}

.opportunity-path-grid .card h3 {
  display: flex;
  min-height: 2.2em;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-size: clamp(1.4rem, 1.9vw, 1.6rem);
  line-height: 1.1;
  text-align: center;
  text-wrap: balance;
}

.brand-summary-card {
  width: min(1040px, 100%);
  margin: 34px auto;
  padding: clamp(28px, 4vw, 42px);
  border: 2px solid var(--burgundy);
  background: var(--rose-mist);
  box-shadow: 0 16px 36px rgba(68, 31, 35, 0.09);
}

.brand-summary-card h3 {
  margin-bottom: 14px;
  color: var(--burgundy-dark);
  font-size: clamp(1.55rem, 2.4vw, 2rem);
  line-height: 1.15;
}

.brand-summary-card p {
  max-width: 960px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(0.98rem, 1.4vw, 1.08rem);
  line-height: 1.75;
}

.brand-summary-card-center {
  margin-top: 34px;
  text-align: center;
}

.brand-summary-card-center p {
  margin-inline: auto;
}

.card p:last-child,
.card ul:last-child {
  margin-bottom: 0;
}

.icon-badge {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  place-items: center;
  border: 1px solid rgba(139, 79, 84, 0.2);
  border-radius: 50%;
  background: var(--rose-mist);
  color: var(--burgundy);
  font-family: var(--font-heading);
  font-size: 1.35rem;
}

.benefit-card {
  min-height: 230px;
}

.benefit-card p {
  color: var(--muted);
}

.services-card-grid .benefit-card {
  height: 100%;
}

.services-card-grid .benefit-card:last-child {
  grid-column: 2;
}

.channel-card {
  min-height: 440px;
  display: flex;
  overflow: hidden;
  padding: 0;
  flex-direction: column;
}

.channel-card img {
  display: block;
  min-height: 220px;
  width: 100%;
  height: 220px;
  max-height: 220px;
  flex: 0 0 220px;
  object-fit: cover;
  object-position: center;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

@media (hover: hover) and (pointer: fine) {
  .channel-card:hover img {
    transform: scale(1.025);
  }
}

.channel-card:focus-within img {
  transform: scale(1.025);
}

.channel-card-body {
  display: flex;
  flex: 1;
  padding: 24px;
  flex-direction: column;
}

.channel-card-body p {
  color: var(--muted);
}

.channel-card-body a {
  margin-top: auto;
  color: var(--burgundy);
  font-family: var(--font-label);
  font-size: 0.76rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}

.model-card {
  --model-card-rest-y: 0px;
  --model-card-active-y: -10px;

  display: flex;
  min-height: 560px;
  flex-direction: column;
  border-top: 5px solid var(--blush);
  transform: translateY(var(--model-card-rest-y));
  transition:
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 260ms ease,
    box-shadow 320ms ease;
}

.model-card:hover,
.model-card:focus-within {
  border-color: rgba(139, 79, 84, 0.46);
  box-shadow: var(--shadow-lg);
  transform: translateY(var(--model-card-active-y));
}

.model-card.is-featured {
  --model-card-rest-y: -14px;
  --model-card-active-y: -24px;

  border-color: var(--burgundy);
  background: var(--burgundy);
  color: var(--white);
}

.model-card.is-featured:hover,
.model-card.is-featured:focus-within {
  border-color: var(--burgundy-dark);
  box-shadow: 0 30px 72px rgba(68, 31, 35, 0.22);
}

.model-card.is-featured h3,
.model-card.is-featured .model-price {
  color: var(--white);
}

.model-card.is-featured .model-kicker,
.model-card.is-featured .fine-print {
  color: rgba(255, 255, 255, 0.76);
}

.model-card.is-featured .button-secondary {
  border-color: var(--white);
  color: var(--white);
}

.model-card.is-featured .button-secondary:hover {
  background: var(--white);
  color: var(--burgundy);
}

.model-kicker {
  color: var(--burgundy);
  font-family: var(--font-label);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.model-price {
  margin: 10px 0 22px;
  color: var(--burgundy);
  font-family: var(--font-heading);
  font-size: 2.35rem;
  font-weight: 700;
  line-height: 1;
}

.model-price small {
  display: block;
  margin-top: 8px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
}

.check-list {
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  margin-bottom: 11px;
  padding-left: 27px;
}

.check-list li::before {
  position: absolute;
  left: 0;
  color: var(--burgundy);
  font-weight: 700;
  content: "✓";
}

.model-card.is-featured .check-list li::before {
  color: var(--blush);
}

.model-card .button {
  margin-top: auto;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(34px, 7vw, 92px);
}

.split.reverse .split-media {
  order: 2;
}

.split-media {
  position: relative;
  margin: 0;
}

.split-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.split-media figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.78rem;
}

.pilot-image-motion-frame {
  overflow: hidden;
  border: 1px solid rgba(139, 79, 84, 0.16);
  border-radius: var(--radius-lg);
  background: var(--soft-white);
  box-shadow: var(--shadow-lg);
}

.pilot-image-motion-frame img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1486 / 1058;
  animation: pilot-center-zoom 7.6s ease-in-out infinite alternate;
  object-fit: contain;
  object-position: center;
  transform-origin: 50% 52%;
  will-change: transform;
}

.pilot-overview-layout {
  width: min(1320px, calc(100% - 40px));
  grid-template-columns: minmax(0, 7fr) minmax(420px, 5fr);
  gap: clamp(40px, 5vw, 72px);
}

.pilot-overview-layout .pilot-split-media {
  width: 100%;
}

.investor-pilot-layout {
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.45fr);
  gap: clamp(36px, 5vw, 72px);
}

.investor-pilot-layout > div {
  max-width: 480px;
}

.investor-pilot-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 1486 / 1058;
  border: 1px solid rgba(139, 79, 84, 0.16);
  border-radius: var(--radius-lg);
  background: var(--soft-white);
  object-fit: contain;
  object-position: center;
  box-shadow: var(--shadow-lg);
}

.investor-pilot-media .pilot-image-motion-frame img {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.inner-hero-media img[src$="salon-piloto-portada-sin-etiquetas-v2.webp"] {
  animation: pilot-center-zoom 7.6s ease-in-out infinite alternate;
  object-position: center center;
  transform-origin: 52% 54%;
  will-change: transform;
}

.inner-hero-media img[src$="modelo-rescate-transformacion.webp"] {
  animation: rescue-renewal-focus 8.4s ease-in-out infinite alternate;
  object-position: center center;
  transform-origin: 70% 52%;
  will-change: transform;
}

@keyframes pilot-center-zoom {
  from {
    transform: scale(1.01);
  }

  to {
    transform: scale(1.17);
  }
}

@keyframes rescue-renewal-focus {
  from {
    transform: scale(1.01) translateX(0);
  }

  to {
    transform: scale(1.14) translateX(-1.4%);
  }
}

.image-accent::before {
  position: absolute;
  z-index: -1;
  right: -24px;
  bottom: -24px;
  width: 54%;
  height: 58%;
  border-radius: var(--radius-lg);
  background: var(--blush);
  content: "";
}

.system-counters {
  display: grid;
  margin: 40px 0 34px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(139, 79, 84, 0.15);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.58);
}

.system-counter {
  padding: 32px 18px;
  border-right: 1px solid rgba(139, 79, 84, 0.15);
  text-align: center;
}

.system-counter:last-child {
  border: 0;
}

.system-counter strong {
  display: block;
  color: var(--burgundy);
  font-family: var(--font-heading);
  font-size: 3rem;
  line-height: 1;
}

.system-counter span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-family: var(--font-label);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.45;
  text-transform: uppercase;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta-band h2 {
  margin-bottom: 10px;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
}

.cta-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.table-wrap {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 17px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  background: var(--rose-mist);
  color: var(--burgundy-dark);
  font-family: var(--font-label);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

tbody tr:last-child td {
  border-bottom: 0;
}

tbody tr.is-current td {
  background: rgba(255, 204, 204, 0.28);
}

.start-label {
  display: inline-flex;
  margin-left: 8px;
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--blush);
  color: var(--burgundy-dark);
  font-family: var(--font-label);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.price-summary {
  display: grid;
  margin-bottom: 36px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.price-summary-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.price-summary-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-family: var(--font-label);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}

.price-summary-card strong {
  color: var(--burgundy);
  font-family: var(--font-heading);
  font-size: 2rem;
}

.calculator {
  display: grid;
  padding: clamp(26px, 5vw, 50px);
  grid-template-columns: 1.1fr 0.9fr;
  gap: 42px;
  border-radius: var(--radius-lg);
  background: var(--black);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.calculator h2,
.calculator h3 {
  color: var(--white);
}

.calculator label {
  color: rgba(255, 255, 255, 0.78);
}

.calculator input[type="range"] {
  width: 100%;
  accent-color: var(--blush);
}

.calculator-output {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
}

.calculator-value {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.calculator-value span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.82rem;
}

.calculator-value strong {
  color: var(--blush);
  font-family: var(--font-heading);
  font-size: clamp(1.45rem, 3vw, 2.3rem);
}

.steps {
  display: grid;
  counter-reset: steps;
  gap: 18px;
}

.step {
  position: relative;
  min-height: 100px;
  padding: 26px 26px 26px 88px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  counter-increment: steps;
}

.step::before {
  position: absolute;
  top: 24px;
  left: 24px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: var(--burgundy);
  color: var(--white);
  content: counter(steps, decimal-leading-zero);
  font-family: var(--font-label);
  font-size: 0.7rem;
  font-weight: 700;
}

.step h3 {
  margin-bottom: 6px;
  font-size: 1.28rem;
}

.step p {
  margin: 0;
  color: var(--muted);
}

.timeline {
  position: relative;
  display: grid;
  gap: 18px;
}

.timeline::before {
  position: absolute;
  top: 14px;
  bottom: 14px;
  left: 24px;
  width: 2px;
  background: var(--blush);
  content: "";
}

.timeline-item {
  position: relative;
  padding: 22px 22px 22px 72px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.timeline-item::before {
  position: absolute;
  z-index: 2;
  top: 28px;
  left: 17px;
  width: 16px;
  height: 16px;
  border: 5px solid var(--white);
  border-radius: 50%;
  background: var(--burgundy);
  box-shadow: 0 0 0 1px var(--burgundy);
  content: "";
}

.timeline-year {
  color: var(--burgundy);
  font-family: var(--font-label);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.finder {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.82fr);
  gap: 34px;
}

.finder-options {
  display: grid;
  gap: 12px;
}

.finder-option {
  display: flex;
  width: 100%;
  padding: 20px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  text-align: left;
}

.finder-option:hover,
.finder-option[aria-pressed="true"] {
  border-color: var(--burgundy);
  background: var(--rose-mist);
}

.finder-option::after {
  color: var(--burgundy);
  content: "→";
  font-size: 1.4rem;
}

.finder-result {
  display: flex;
  min-height: 100%;
  padding: clamp(40px, 6vw, 76px);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: var(--radius-md);
  background: var(--burgundy);
  color: var(--white);
  text-align: center;
}

.finder-result > * {
  width: min(100%, 440px);
}

.finder-result h3 {
  margin-bottom: 20px;
  color: var(--white);
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.08;
}

.finder-result .eyebrow {
  justify-content: center;
  margin-bottom: 20px;
  color: var(--blush);
}

.finder-result > p:not(.eyebrow) {
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.75;
}

.finder-result .button {
  width: auto;
  min-width: 220px;
  border-color: var(--blush);
  background: var(--blush);
  color: var(--burgundy-dark);
  box-shadow: 0 14px 30px rgba(50, 27, 30, 0.2);
}

.finder-result .button:hover {
  border-color: var(--nude);
  background: var(--nude);
  color: var(--burgundy-deep);
}

.finder-result.is-empty {
  display: grid;
  place-items: center;
  background: var(--nude);
  color: var(--burgundy-dark);
}

.department-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.department {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
}

.department strong {
  display: block;
  margin-bottom: 5px;
  color: var(--burgundy);
}

.department span {
  color: var(--muted);
  font-size: 0.88rem;
}

.manual-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  counter-reset: manuals;
}

.manual {
  position: relative;
  padding: 22px 22px 22px 72px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  counter-increment: manuals;
}

.manual::before {
  position: absolute;
  top: 22px;
  left: 22px;
  color: var(--burgundy);
  content: counter(manuals, decimal-leading-zero);
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 700;
}

.manual strong {
  display: block;
  margin-bottom: 5px;
}

.manual span {
  color: var(--muted);
  font-size: 0.88rem;
}

.founder-card {
  display: flex;
  min-height: 100%;
  overflow: hidden;
  padding: 0;
  flex-direction: column;
  border-color: rgba(139, 79, 84, 0.18);
  background: rgba(255, 255, 255, 0.94);
}

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

@media (min-width: 1101px) {
  .founder-grid--compact .founder-card:last-child {
    grid-column: 2;
  }
}

.founder-portrait {
  position: relative;
  width: calc(100% - 40px);
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 2px solid var(--burgundy);
  border-radius: 16px;
  margin: 20px auto 0;
  background: #f4d9dc;
  box-shadow: 0 16px 34px rgba(89, 37, 43, 0.13);
}

.founder-portrait::after {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 62% 88% at 50% 46%,
      transparent 0%,
      transparent 54%,
      rgba(244, 217, 220, 0.1) 64%,
      rgba(244, 217, 220, 0.34) 78%,
      rgba(244, 217, 220, 0.66) 92%,
      rgba(244, 217, 220, 0.86) 100%
    ),
    linear-gradient(
      180deg,
      rgba(244, 217, 220, 0.16) 0%,
      transparent 14%,
      transparent 78%,
      rgba(244, 217, 220, 0.28) 90%,
      rgba(244, 217, 220, 0.72) 100%
    );
  content: "";
  pointer-events: none;
}

.founder-portrait img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.founder-card--illustration .founder-portrait img {
  object-fit: contain;
  object-position: center top;
}

.founder-role-badge {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  display: grid;
  width: 64px;
  height: 64px;
  border: 1px solid #59252b3d;
  border-radius: 50%;
  place-items: center;
  background: #efc4ca;
  box-shadow: 0 8px 20px #59252b2e;
  color: var(--burgundy-dark);
}

.founder-role-icon {
  position: relative;
  display: block;
  width: 34px;
  height: 34px;
  font: 700 29px/34px "Segoe UI Symbol", Arial, sans-serif;
  text-align: center;
}

.founder-role-icon::before,
.founder-role-icon::after,
.founder-role-icon i,
.founder-role-icon i::before,
.founder-role-icon i::after {
  position: absolute;
  box-sizing: border-box;
  content: "";
}

.founder-role-icon--leadership::before {
  inset: 6px 4px 2px;
  border: 2px solid currentColor;
  border-radius: 4px;
}

.founder-role-icon--leadership::after {
  top: 3px;
  left: 11px;
  width: 12px;
  height: 7px;
  border: 2px solid currentColor;
  border-radius: 3px;
  background: #efc4ca;
}

.founder-role-icon--leadership i {
  top: 14px;
  left: 13px;
  width: 15px;
  height: 2px;
  background: currentColor;
  box-shadow: 0 6px currentColor, 0 12px currentColor;
}

.founder-role-icon--leadership i::before {
  left: -6px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 6px currentColor, 0 12px currentColor;
}

.founder-role-icon--strategy::before {
  top: 10px;
  left: 3px;
  width: 28px;
  height: 20px;
  border: 2px solid currentColor;
  border-radius: 4px;
}

.founder-role-icon--strategy::after {
  top: 4px;
  left: 11px;
  width: 12px;
  height: 8px;
  border: 2px solid currentColor;
  border-radius: 4px 4px 0 0;
}

.founder-role-icon--strategy i {
  top: 18px;
  left: 5px;
  width: 24px;
  height: 2px;
  background: currentColor;
}

.founder-role-icon--strategy i::before {
  top: -2px;
  left: 10px;
  width: 4px;
  height: 6px;
  border: 1px solid currentColor;
  border-radius: 1px;
  background: #efc4ca;
}

.founder-role-icon--technical::before,
.founder-role-icon--technical::after {
  top: 7px;
  width: 15px;
  height: 23px;
  border: 2px solid currentColor;
  background: #efc4ca;
}

.founder-role-icon--technical::before {
  left: 3px;
  border-radius: 3px 0 2px 3px;
  transform: skewY(8deg);
}

.founder-role-icon--technical::after {
  right: 3px;
  border-radius: 0 3px 3px 2px;
  transform: skewY(-8deg);
}

.founder-role-icon--digital::before {
  inset: 1px 1px 11px;
  border: 2px solid currentColor;
  border-radius: 3px;
}

.founder-role-icon--digital::after {
  bottom: 0;
  left: 6px;
  width: 22px;
  content: "</>";
  font: 700 9px/1 Consolas, monospace;
  text-align: center;
}

.founder-role-icon--digital i {
  top: 7px;
  left: 10px;
  display: grid;
  width: 14px;
  height: 10px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 3px;
  outline: 1px dotted currentColor;
  outline-offset: 2px;
}

.founder-role-icon--digital i::before {
  inset: 0;
  display: grid;
  place-items: center;
  content: "IA";
  font: 700 6px/1 Arial, sans-serif;
}

.founder-card-body {
  display: flex;
  padding: 28px 28px 30px;
  flex: 1;
  flex-direction: column;
}

.founder-card-body h3 {
  margin: 8px 0 12px;
  font-size: clamp(1.55rem, 2vw, 2rem);
  line-height: 1.02;
}

.founder-card-body > p:not(.founder-specialty) {
  margin: 0 0 24px;
  color: var(--muted);
  line-height: 1.62;
}

.founder-role {
  color: var(--burgundy);
  font-family: var(--font-label);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.founder-role-note {
  margin-left: 0.35rem;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.founder-specialty {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 15px;
  border-radius: 16px;
  margin: auto 0 0;
  background: var(--rose-mist);
  color: var(--burgundy-dark);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.45;
}

.founder-specialty span {
  display: inline-grid;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  border-radius: 50%;
  place-items: center;
  background: var(--burgundy);
  color: var(--white);
  font-size: 0.75rem;
}

.quote {
  position: relative;
  margin: 0;
  padding: 34px 34px 34px 46px;
  border-left: 5px solid var(--burgundy);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: var(--rose-mist);
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2.6vw, 2.05rem);
  font-style: italic;
  line-height: 1.4;
}

.notice {
  padding: 20px 22px;
  border: 1px solid rgba(139, 79, 84, 0.25);
  border-radius: var(--radius-sm);
  background: var(--rose-mist);
  color: var(--burgundy-dark);
  font-size: 0.9rem;
}

.notice strong {
  display: block;
  margin-bottom: 4px;
}

.accordion {
  display: grid;
  gap: 12px;
}

.accordion details {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
}

.accordion summary {
  padding: 20px 54px 20px 22px;
  cursor: pointer;
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
}

.accordion details div {
  padding: 0 22px 22px;
  color: var(--muted);
}

.form-shell {
  display: grid;
  padding: clamp(26px, 5vw, 52px);
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(34px, 6vw, 72px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.form-intro {
  align-self: start;
}

.form-intro .contact-list {
  margin-top: 28px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.form-field {
  display: grid;
  gap: 7px;
}

.form-field.full {
  grid-column: 1 / -1;
}

.franchise-royalty-guide {
  margin: 6px 0 4px;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid rgba(139, 79, 84, 0.24);
  border-radius: var(--radius-md);
  background:
    linear-gradient(135deg, rgba(255, 238, 239, 0.92), rgba(255, 255, 255, 0.98));
  box-shadow: var(--shadow-sm);
}

.franchise-royalty-guide[hidden] {
  display: none;
}

.franchise-royalty-guide-heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
}

.franchise-royalty-guide-heading .eyebrow {
  margin-bottom: 8px;
}

.franchise-royalty-guide-heading h3 {
  margin: 0;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
}

.royalty-support-badge {
  max-width: 240px;
  padding: 9px 13px;
  border: 1px solid rgba(139, 79, 84, 0.22);
  border-radius: 999px;
  background: var(--white);
  color: var(--burgundy-dark);
  font-family: var(--font-label);
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
}

.franchise-royalty-columns {
  display: grid;
  margin-top: 22px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 14px;
}

.franchise-royalty-column {
  overflow: hidden;
  border: 1px solid rgba(139, 79, 84, 0.2);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.86);
}

.franchise-royalty-column h4 {
  margin: 0;
  padding: 13px 16px;
  border-bottom: 1px solid rgba(139, 79, 84, 0.2);
  background: rgba(139, 79, 84, 0.08);
  color: var(--burgundy-dark);
  font-family: var(--font-label);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.franchise-royalty-list {
  display: grid;
}

.franchise-royalty-row {
  display: grid;
  min-height: 76px;
  padding: 13px 16px;
  align-content: center;
  gap: 4px;
  border: 0;
  border-bottom: 1px solid rgba(139, 79, 84, 0.14);
  background: transparent;
  color: var(--ink);
  text-align: left;
  transition:
    background-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.franchise-royalty-row:last-child {
  border-bottom: 0;
}

button.franchise-royalty-row {
  width: 100%;
  cursor: pointer;
}

button.franchise-royalty-row:hover,
button.franchise-royalty-row:focus-visible,
.franchise-royalty-row.is-current {
  background: var(--burgundy);
  color: var(--white);
  box-shadow: inset 4px 0 0 var(--blush);
}

button.franchise-royalty-row:focus-visible {
  outline: 3px solid var(--burgundy);
  outline-offset: -3px;
}

.franchise-royalty-row strong {
  color: inherit;
  font-family: var(--font-heading);
  font-size: 1.15rem;
}

.franchise-royalty-row span {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.franchise-royalty-row.is-current span,
button.franchise-royalty-row:hover span,
button.franchise-royalty-row:focus-visible span {
  color: rgba(255, 255, 255, 0.82);
}

.franchise-royalty-total strong {
  color: var(--burgundy);
  font-size: 1.35rem;
}

.franchise-royalty-total.is-current strong {
  color: var(--white);
}

.franchise-royalty-note {
  margin: 14px 2px 0;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.5;
}

.form-field label,
.calculator label {
  font-family: var(--font-label);
  font-size: 0.75rem;
  font-weight: 700;
}

.form-field input,
.form-field select,
.form-field textarea,
.calculator select {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid rgba(139, 79, 84, 0.28);
  border-radius: 10px;
  background: var(--white);
  color: var(--ink);
}

.form-field textarea {
  min-height: 130px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus,
.calculator select:focus {
  border-color: var(--burgundy);
  outline: 3px solid var(--burgundy);
  outline-offset: 2px;
}

.checkbox-field {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
}

.checkbox-field input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--burgundy);
}

.checkbox-field label {
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.5;
}

.form-status {
  min-height: 28px;
  margin-top: 14px;
  font-size: 0.88rem;
}

.form-status.is-success {
  color: var(--success);
}

.form-status.is-error {
  color: var(--error);
}

.contact-list {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 12px;
  list-style: none;
}

.contact-list li {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: start;
  gap: 10px;
}

.contact-list span:first-child {
  color: var(--burgundy);
  font-size: 1.1rem;
}

.map-card {
  position: relative;
  display: grid;
  width: 100%;
  min-height: 460px;
  overflow: hidden;
  padding: 36px;
  border: 1px solid rgba(139, 79, 84, 0.18);
  border-radius: var(--radius-lg);
  place-items: center;
  background:
    linear-gradient(rgba(139, 79, 84, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 79, 84, 0.07) 1px, transparent 1px),
    radial-gradient(circle at 74% 28%, rgba(255, 204, 204, 0.7), transparent 24%),
    var(--cream);
  background-size: 38px 38px, 38px 38px, auto, auto;
  box-shadow: var(--shadow-lg);
}

.map-card-content {
  position: relative;
  z-index: 1;
  max-width: 390px;
  padding: 32px;
  border: 1px solid rgba(139, 79, 84, 0.18);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.map-card-content h3 {
  margin-bottom: 8px;
  font-size: clamp(1.55rem, 3vw, 2.1rem);
}

.map-card-content .button {
  margin-top: 12px;
}

.map-card-content small {
  display: block;
  margin-top: 14px;
  color: var(--muted);
}

.map-card-marker {
  display: grid;
  width: 54px;
  height: 54px;
  margin: 0 auto 16px;
  place-items: center;
  border-radius: 50%;
  background: var(--burgundy);
  color: var(--white);
  font-size: 1.7rem;
  box-shadow: 0 12px 30px rgba(99, 53, 58, 0.24);
}

.gallery-filters,
.blog-filters {
  display: flex;
  margin-bottom: 30px;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.filter-button {
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--muted);
  cursor: pointer;
  font-family: var(--font-label);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
}

.filter-button[aria-pressed="true"] {
  border-color: var(--burgundy);
  background: var(--burgundy);
  color: var(--white);
}

.gallery-instruction {
  display: flex;
  width: fit-content;
  margin: 0 auto 18px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 10px 17px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--rose-mist);
  color: var(--burgundy);
  font-family: var(--font-label);
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
}

.gallery-instruction span {
  font-size: 1.05rem;
  line-height: 1;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 18px;
}

.gallery-item {
  position: relative;
  display: flex;
  height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition:
    box-shadow 300ms ease,
    transform 300ms ease;
}

.gallery-item[hidden] {
  display: none;
}

.gallery-item:hover,
.gallery-item:focus-within {
  z-index: 2;
  box-shadow: var(--shadow-lg);
  transform: scale(1.12);
}

.gallery-open {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1486 / 1058;
  flex: 0 0 auto;
  overflow: hidden;
  padding: 0;
  border: 0;
  background: var(--rose-mist);
  color: inherit;
  cursor: zoom-in;
}

.gallery-open img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.gallery-caption {
  min-height: 122px;
  flex: 1;
  padding: 16px 20px 18px;
  background: var(--white);
  color: var(--ink);
}

.gallery-caption strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.25rem;
}

.gallery-caption span {
  color: var(--muted);
  font-size: 0.78rem;
}

.gallery-zoom-hint {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  background: rgba(50, 27, 30, 0.82);
  color: var(--white);
  font-family: var(--font-label);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 250ms ease,
    transform 250ms ease;
}

.gallery-open:hover .gallery-zoom-hint,
.gallery-open:focus-visible .gallery-zoom-hint {
  opacity: 1;
  transform: translateY(0);
}

.gallery-lightbox {
  width: min(1180px, calc(100% - 32px));
  max-width: none;
  max-height: calc(100dvh - 32px);
  overflow: visible;
  padding: 0;
  border: 0;
  border-radius: var(--radius-md);
  background: transparent;
}

.gallery-lightbox::backdrop {
  background: rgba(20, 12, 14, 0.88);
  backdrop-filter: blur(6px);
}

.gallery-lightbox-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 204, 204, 0.36);
  border-radius: var(--radius-md);
  background: var(--black);
  box-shadow: var(--shadow-lg);
}

.gallery-lightbox img {
  width: 100%;
  height: min(76dvh, 820px);
  object-fit: contain;
  object-position: center;
  background: linear-gradient(135deg, #0d090a, var(--burgundy-deep));
}

.gallery-lightbox-close {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.72);
  color: var(--white);
  cursor: pointer;
  font-size: 1.75rem;
  line-height: 1;
}

.gallery-lightbox-caption {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 22px 18px;
  background: var(--burgundy-deep);
  color: var(--white);
}

.gallery-lightbox-caption strong {
  font-family: var(--font-heading);
  font-size: 1.2rem;
}

.gallery-lightbox-caption span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.8rem;
  text-align: right;
}

@media (prefers-reduced-motion: reduce) {
  .gallery-item,
  .gallery-zoom-hint {
    transition: none;
  }

  .gallery-item:hover,
  .gallery-item:focus-within {
    transform: none;
  }
}

@media (max-width: 860px) {
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-item:hover,
  .gallery-item:focus-within {
    transform: scale(1.06);
  }
}

.blog-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.85fr 0.85fr;
  gap: 22px;
}

.blog-grid[data-active-filter="noticias"] {
  width: min(860px, 100%);
  margin-inline: auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.news-featured {
  display: grid;
  width: min(920px, 100%);
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 28px;
  margin-inline: auto;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  grid-template-columns: minmax(0, 0.82fr) minmax(430px, 1.18fr);
}

.news-featured-media {
  display: flex;
  margin: 0;
  background: var(--blush);
  flex-direction: column;
}

.news-featured-media img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 360px;
  flex: 1;
  object-fit: cover;
  object-position: center;
}

.news-featured-media figcaption {
  padding: 10px 18px 12px;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.45;
}

.news-featured-content {
  display: flex;
  padding: clamp(22px, 2.5vw, 34px);
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
}

.news-featured-content h2 {
  max-width: 16ch;
  margin-bottom: 12px;
  font-size: clamp(2rem, 2.8vw, 2.65rem);
  line-height: 1;
}

.news-source-logo {
  display: inline-block;
  margin: 4px 0 9px;
  padding: 0 18px 8px 0;
  border-bottom: 3px solid #c8102e;
  color: #111111;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1;
  text-decoration: none;
}

.news-source-logo:hover,
.news-source-logo:focus-visible {
  color: var(--burgundy);
}

.news-featured-content .article-meta {
  margin: 2px 0 10px;
}

.news-featured-content > p:not(.eyebrow):not(.article-meta) {
  margin-bottom: 12px;
}

.news-featured-content .lede {
  font-size: 1.04rem;
  line-height: 1.55;
}

.news-featured-content .button {
  margin-top: 6px;
  padding: 13px 20px;
}

.article-card {
  display: flex;
  overflow: hidden;
  padding: 0;
  flex-direction: column;
}

.article-card[hidden] {
  display: none;
}

.article-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.article-card.is-featured img {
  height: 300px;
}

.article-card-body {
  display: flex;
  height: 100%;
  padding: 26px;
  flex-direction: column;
}

.article-card-body p {
  color: var(--muted);
}

.article-card-body a {
  margin-top: auto;
  color: var(--burgundy);
  font-family: var(--font-label);
  font-size: 0.72rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}

.article-meta {
  margin-bottom: 10px;
  color: var(--burgundy);
  font-family: var(--font-label);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.legal-content h2 {
  margin-top: 2em;
  font-size: 1.8rem;
}

.legal-content h3 {
  margin-top: 1.6em;
  font-size: 1.35rem;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: flex;
  min-height: 52px;
  align-items: center;
  gap: 10px;
  padding: 12px 17px;
  border: 1px solid rgba(245, 184, 190, 0.42);
  border-radius: 999px;
  background: var(--burgundy);
  color: var(--white);
  box-shadow: 0 14px 34px rgba(89, 37, 43, 0.34);
  font-family: var(--font-label);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  border-color: var(--blush);
  box-shadow: 0 18px 42px rgba(89, 37, 43, 0.42);
  transform: translateY(-3px);
}

.whatsapp-float-icon {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 3px 10px rgba(37, 211, 102, 0.28);
}

.whatsapp-float-icon img {
  display: block;
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
  object-fit: contain;
}

.whatsapp-dialog {
  width: min(520px, calc(100% - 30px));
  padding: 0;
  border: 0;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-lg);
  color: var(--ink);
}

.whatsapp-dialog::backdrop {
  background: rgba(0, 0, 0, 0.68);
  backdrop-filter: blur(3px);
}

.whatsapp-dialog-content {
  position: relative;
  padding: 34px;
}

.whatsapp-dialog-close {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  display: grid;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(139, 79, 84, 0.24);
  border-radius: 50%;
  place-items: center;
  background: var(--white);
  color: var(--burgundy-dark);
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
}

.whatsapp-dialog-close:hover {
  border-color: var(--burgundy);
  background: var(--rose-mist);
}

.whatsapp-contact-card {
  display: grid;
  margin-bottom: 24px;
  grid-template-columns: 142px minmax(0, 1fr);
  align-items: center;
  gap: 22px;
}

.whatsapp-contact-logo {
  overflow: hidden;
  border: 1px solid rgba(139, 79, 84, 0.2);
  border-radius: 18px;
  background: var(--black);
  box-shadow: var(--shadow-sm);
}

.whatsapp-contact-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.whatsapp-contact-card .eyebrow {
  margin-bottom: 8px;
}

.whatsapp-contact-card h2 {
  margin-bottom: 4px;
  font-size: clamp(2rem, 7vw, 3.2rem);
}

.whatsapp-contact-tagline {
  margin-bottom: 10px;
  color: var(--burgundy);
  font-family: var(--font-heading);
  font-style: italic;
}

.whatsapp-contact-number {
  color: var(--ink);
  font-weight: 700;
  text-decoration-color: rgba(139, 79, 84, 0.45);
  text-underline-offset: 4px;
}

.whatsapp-dialog-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.whatsapp-dialog-actions .button {
  width: 100%;
}

.whatsapp-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.whatsapp-action span {
  font-size: 1rem;
  line-height: 1;
}

.whatsapp-button-icon {
  display: block;
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
  object-fit: contain;
}

.whatsapp-inline-icon {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
}

.whatsapp-inline-icon img {
  display: block;
  width: 17px;
  height: 17px;
  filter: brightness(0) invert(1);
  object-fit: contain;
}

.whatsapp-download-help,
.whatsapp-download-status {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.55;
  text-align: center;
}

.whatsapp-download-help a {
  color: var(--burgundy-dark);
  font-weight: 700;
}

.whatsapp-download-status:empty {
  display: none;
}

.site-footer {
  padding: 64px 0 28px;
  background: var(--burgundy-deep);
  color: rgba(255, 255, 255, 0.78);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr 0.9fr 1.2fr;
  gap: 38px;
}

.footer-brand img {
  display: block;
  width: min(210px, 100%);
  height: auto;
  aspect-ratio: 815 / 574;
  margin-bottom: 18px;
  object-fit: contain;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.3));
}

.footer-brand p {
  max-width: 340px;
  color: rgba(255, 255, 255, 0.68);
}

.site-footer h2,
.site-footer h3 {
  color: var(--white);
  font-family: var(--font-label);
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li {
  margin-bottom: 9px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.86rem;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--blush);
}

.footer-social-note {
  max-width: 270px;
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.76rem;
  line-height: 1.55;
}

.footer-bottom {
  display: flex;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.74rem;
}

.footer-legal-copy {
  display: grid;
  max-width: 640px;
  gap: 5px;
  line-height: 1.55;
}

.footer-legal-copy strong {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.footer-legal-copy > span {
  color: rgba(255, 255, 255, 0.58);
}

.footer-privacy-button {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.footer-privacy-button:hover,
.footer-privacy-button:focus-visible {
  color: var(--white);
}

.cookie-banner {
  position: fixed;
  z-index: 150;
  right: 18px;
  bottom: 18px;
  left: 18px;
  max-width: 720px;
  margin: auto;
  padding: 22px;
  border: 1px solid rgba(255, 204, 204, 0.28);
  border-radius: var(--radius-md);
  background: #111;
  color: var(--white);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner h2 {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 1.35rem;
}

.cookie-banner p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.cookie-reject {
  border-color: rgba(255, 204, 204, 0.72);
  background: transparent;
  color: var(--blush);
}

.cookie-reject:hover {
  border-color: var(--blush);
  background: var(--blush);
  color: var(--burgundy-dark);
}

.cookie-dialog {
  width: min(560px, calc(100% - 30px));
  padding: 0;
  border: 0;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.cookie-dialog::backdrop {
  background: rgba(0, 0, 0, 0.62);
}

.cookie-dialog-content {
  position: relative;
  padding: 32px;
}

.cookie-dialog-content > h2 {
  padding-right: 48px;
}

.cookie-dialog-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--burgundy-dark);
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
}

.cookie-dialog-close:hover {
  border-color: var(--burgundy);
  background: var(--rose-mist);
}

.cookie-dialog-close:focus-visible {
  outline: 3px solid var(--burgundy);
  outline-offset: 2px;
}

.cookie-choice {
  display: flex;
  margin: 18px 0;
  padding: 16px;
  align-items: start;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.not-found {
  min-height: 70svh;
  display: grid;
  place-items: center;
  background: var(--rose-mist);
  text-align: center;
}

@media (max-width: 1120px) {
  .nav-shell {
    min-height: 122px;
  }

  .brand img {
    width: 164px;
    height: auto;
  }

  .nav-toggle {
    display: grid;
  }

  .main-nav {
    position: absolute;
    z-index: 105;
    top: 100%;
    right: 0;
    left: 0;
    display: block;
    max-height: calc(100dvh - 110px);
    overflow-y: auto;
    padding: 20px;
    background: rgba(0, 0, 0, 0.985);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    visibility: hidden;
    transition:
      opacity 180ms ease,
      transform 180ms ease,
      visibility 0s linear 180ms;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
    transition-delay: 0s;
  }

  .nav-list {
    display: block;
    width: min(560px, 100%);
    margin-inline: auto;
  }

  .nav-link,
  .dropdown-toggle {
    width: 100%;
    min-height: 54px;
    justify-content: space-between;
    padding: 12px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.8rem;
  }

  .dropdown-menu {
    position: static;
    display: none;
    width: 100%;
    padding: 6px 12px 12px;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    visibility: visible;
  }

  .nav-dropdown.is-open .dropdown-menu {
    display: block;
  }

  .nav-dropdown:hover .dropdown-menu,
  .nav-dropdown:focus-within .dropdown-menu {
    transform: none;
  }

  .nav-cta {
    width: min(560px, 100%);
    margin: 18px auto 0;
  }

  .price-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .metrics {
    grid-template-columns: repeat(3, 1fr);
  }

  .metric:nth-child(3) {
    border-right: 0;
  }

  .metric:nth-child(n + 4) {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .founder-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  :root {
    --container: min(100% - 30px, 720px);
  }

  .inner-hero.services-hero {
    min-height: 620px;
    aspect-ratio: auto;
  }

  .services-hero-motion img {
    object-fit: cover;
    object-position: 76% center;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: none;
    padding: 68px 0 48px;
  }

  .hero-media {
    position: relative;
    inset: auto;
    height: 340px;
    order: 2;
  }

  .hero-media::after {
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.92) 0%,
      rgba(255, 255, 255, 0.35) 4%,
      transparent 10%
    );
  }

  .hero-media > .hero-photo {
    object-fit: contain;
    object-position: right bottom;
  }

  .hero-logo-showcase {
    top: 22px;
    right: 18px;
    left: auto;
    width: min(58vw, 230px);
    padding: 6px 8px 8px;
    border-radius: 18px;
  }

  .split,
  .form-shell,
  .calculator,
  .finder {
    grid-template-columns: 1fr;
  }

  .split.reverse .split-media {
    order: 0;
  }

  .grid-3,
  .grid-6 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-card-grid .benefit-card:last-child {
    grid-column: auto;
  }

  .model-card.is-featured {
    --model-card-rest-y: 0px;
    --model-card-active-y: -10px;
  }

  .system-counters {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .system-counter:nth-child(2) {
    border-right: 0;
  }

  .system-counter:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(139, 79, 84, 0.15);
  }

  .department-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }

  .news-featured {
    grid-template-columns: 1fr;
  }

  .news-featured-media img {
    min-height: auto;
    aspect-ratio: 3 / 2;
  }

  .news-featured-content h2 {
    max-width: 18ch;
  }

  .article-card.is-featured {
    grid-column: 1 / -1;
  }

  .price-summary {
    grid-template-columns: 1fr;
  }

  .cta-band {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 15px;
  }

  .topbar {
    padding-inline: 10px;
    font-size: 0.6rem;
  }

  .nav-shell {
    min-height: 110px;
  }

  .brand img {
    width: 148px;
  }

  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button-row .button {
    width: 100%;
  }

  .inner-hero {
    min-height: 500px;
  }

  .metrics,
  .grid-2,
  .grid-3,
  .grid-4,
  .grid-6,
  .founder-grid,
  .department-list,
  .manual-list,
  .gallery-grid,
  .blog-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .blog-grid[data-active-filter="noticias"] {
    grid-template-columns: 1fr;
  }

  .metric,
  .metric:nth-child(3) {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .metric:last-child {
    border-bottom: 0;
  }

  .channel-card {
    min-height: 0;
  }

  .model-card {
    min-height: 0;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-field.full {
    grid-column: auto;
  }

  .franchise-royalty-guide-heading {
    flex-direction: column;
  }

  .royalty-support-badge {
    max-width: none;
    text-align: left;
  }

  .franchise-royalty-columns {
    grid-template-columns: 1fr;
  }

  .calculator-output {
    padding: 22px;
  }

  .calculator-value {
    align-items: start;
    flex-direction: column;
    gap: 3px;
  }

  .table-wrap {
    overflow: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .responsive-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .responsive-table,
  .responsive-table tbody,
  .responsive-table tr,
  .responsive-table td {
    display: block;
    width: 100%;
  }

  .responsive-table tr {
    margin-bottom: 14px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--white);
    box-shadow: var(--shadow-sm);
  }

  .responsive-table td {
    display: grid;
    padding: 9px 0;
    grid-template-columns: minmax(120px, 0.8fr) 1fr;
    gap: 14px;
    border-bottom: 1px solid var(--line);
  }

  .responsive-table td::before {
    color: var(--burgundy);
    content: attr(data-label);
    font-family: var(--font-label);
    font-size: 0.66rem;
    font-weight: 700;
    text-transform: uppercase;
  }

  .responsive-table td:last-child {
    border-bottom: 0;
  }

  .start-label {
    margin: 6px 0 0;
  }

  .step {
    padding: 76px 22px 22px;
  }

  .timeline::before {
    left: 19px;
  }

  .timeline-item {
    padding-left: 56px;
  }

  .timeline-item::before {
    left: 12px;
  }

  .footer-bottom {
    align-items: start;
    flex-direction: column;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    padding: 10px;
  }

  .whatsapp-float span:last-child {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .whatsapp-dialog-content {
    padding: 28px 20px 24px;
  }

  .whatsapp-contact-card {
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 16px;
  }

  .whatsapp-dialog-actions {
    grid-template-columns: 1fr;
  }

  .cookie-banner {
    bottom: 10px;
    padding: 18px;
  }
}

@media (max-width: 520px) {
  .hero-media > .hero-photo {
    object-fit: contain;
    object-position: right bottom;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-media > .hero-photo,
  .services-hero-motion img,
  .investor-hero-camera img,
  .inner-hero-media img[src$="salon-piloto-portada-sin-etiquetas-v2.webp"],
  .inner-hero-media img[src$="modelo-rescate-transformacion.webp"],
  .pilot-image-motion-frame img {
    animation: none;
    transform: none;
  }

  .model-card {
    --model-card-active-y: var(--model-card-rest-y);
  }

  .card:not(.model-card),
  .card:not(.model-card):hover,
  .card:not(.model-card):focus-within,
  .step,
  .step:hover,
  .step:focus-within,
  .timeline-item,
  .timeline-item:hover,
  .timeline-item:focus-within,
  .price-summary-card,
  .price-summary-card:hover,
  .price-summary-card:focus-within,
  .department,
  .department:hover,
  .department:focus-within,
  .manual,
  .manual:hover,
  .manual:focus-within,
  .channel-card img,
  .channel-card:hover img,
  .channel-card:focus-within img {
    transform: none;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media print {
  .topbar,
  .site-header,
  .whatsapp-float,
  .cookie-banner,
  .site-footer,
  .button {
    display: none !important;
  }

  .section {
    padding: 28px 0;
  }
}
