/*
 * Kälida Proyectos — Sistema visual KEU 14
 */

:root {
  --color_fondo: #f4f4f1;
  --color_superficie: #ffffff;
  --color_superficie_suave: #ecece8;
  --color_media: #d4d2cc;
  --color_texto: #222222;
  --color_negro: #111111;
  --color_berenjena: #ff8200;
  --color_violeta: #51284f;
  --color_naranja: #ff8200;
  --color_borde: rgba(34, 34, 34, .12);
  --color_borde_suave: rgba(34, 34, 34, .08);
  --color_exito: #217a3c;
  --color_error: #9d2424;
  --color_alerta: #775a0a;

  --fuente: "Inter Tight", "Helvetica Neue", Arial, sans-serif;
  --ancho: 1280px;
  --altura_header: 76px;

  --radio_media: 16px;
  --radio_tarjeta: 16px;
  --radio_panel: 20px;
  --radio_boton: 10px;
  --radio_campo: 10px;
  --radio_capsula: 999px;

  --sombra_tarjeta: 0 1px 2px rgba(17, 17, 17, .05), 0 14px 40px rgba(17, 17, 17, .035);
  --sombra_hover: 0 2px 4px rgba(17, 17, 17, .06), 0 20px 48px rgba(17, 17, 17, .07);
  --transicion: 180ms ease;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-thumb {
  background: var(--color_naranja);
  border-width: 1px;
  border-style: solid;
  border-color: var(--color_naranja);
  border-radius: 20px;
}

::-webkit-scrollbar-track {
  background: #f4f4f1;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  max-width: 100%;
  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--color_fondo);
  color: var(--color_texto);
  font-family: var(--fuente);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu_open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

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

button {
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
}

[hidden] {
  display: none !important;
}

::selection {
  background: var(--color_naranja);
  color: var(--color_superficie);
}

:focus-visible {
  outline: 3px solid rgba(255, 130, 0, .45);
  outline-offset: 3px;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  color: var(--color_texto);
  font-family: var(--fuente);
  font-weight: 700;
  letter-spacing: -.045em;
}

h1 {
  font-size: clamp(2.55rem, 3.5vw, 3.85rem);
  line-height: 1.04;
}

h2 {
  font-size: clamp(2rem, 3vw, 2.85rem);
  line-height: 1.12;
}

h3 {
  font-size: clamp(1.15rem, 1.5vw, 1.45rem);
  line-height: 1.14;
}

h4 {
  font-size: 1rem;
  line-height: 1.15;
}

p {
  margin-bottom: 1.1rem;
  line-height: 1.55;
}

.wrap {
  width: min(var(--ancho), calc(100% - 40px));
  margin-inline: auto;
}

.section_border {
  border-top: 1px solid var(--color_borde);
}

.skip_link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: var(--radio_boton);
  background: var(--color_negro);
  color: #ffffff;
  font-weight: 600;
}

.skip_link:focus {
  transform: translateY(0);
}

/* Encabezado */
.site_header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--altura_header);
  border-bottom: 1px solid var(--color_borde_suave);
  background: rgba(244, 244, 241, .94);
  backdrop-filter: blur(16px);
}

.nav {
  display: grid;
  width: min(var(--ancho), calc(100% - 40px));
  min-height: var(--altura_header);
  margin-inline: auto;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  white-space: nowrap;
}

.brand_logo {
  display: block;
  width: 10.5rem;
  height: auto;
  object-fit: contain;
  object-position: left center;
}

.nav_links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
}

.nav_links a {
  position: relative;
  padding: 9px 0;
  color: var(--color_texto);
  font-size: .88rem;
  font-weight: 600;
}

.nav_links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 4px;
  height: 1px;
  background: var(--color_texto);
  transition: right var(--transicion);
}

.nav_links a:hover::after,
.nav_links a[aria-current="page"]::after {
  right: 0;
}

.nav_actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav_cta,
.button {
  display: inline-flex;
  min-height: 44px;
  padding: 0 18px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radio_boton);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .015em;
  transition: transform var(--transicion), background var(--transicion), box-shadow var(--transicion);
}

.nav_cta,
.button_dark {
  background: var(--color_negro);
  color: #ffffff;
}

.nav_cta:hover,
.button_dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(17, 17, 17, .14);
}

.button_light {
  border-color: var(--color_borde);
  background: var(--color_superficie);
  color: var(--color_texto);
}

.button_light:hover {
  background: var(--color_superficie_suave);
}

.button_white {
  background: #ffffff;
  color: var(--color_texto);
}

.button_white:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .18);
}

.button_full {
  width: 100%;
}

.button:disabled {
  border-color: var(--color_borde);
  background: var(--color_superficie_suave);
  color: var(--color_texto);
  transform: none;
  box-shadow: none;
}

.button.is_loading {
  pointer-events: none;
}

.menu_toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  gap: 5px;
  border: 1px solid var(--color_borde);
  border-radius: var(--radio_boton);
  background: var(--color_superficie);
}

.menu_toggle span {
  display: block;
  width: 18px;
  height: 1px;
  background: var(--color_texto);
}

/* Utilidades tipográficas */
.section_marker,
.hero_kicker,
.micro_label,
.eyebrow {
  display: inline-flex;
  color: var(--color_texto);
  font-size: .76rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.text_link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding-bottom: 3px;
  border-bottom: 1px solid var(--color_texto);
  color: var(--color_texto);
  font-size: .82rem;
  font-weight: 600;
}

.link_arrow {
  font-size: 1rem;
}

.lead_text,
.page_lead,
.rich_copy p,
.section_header>p,
.hero_summary p {
  color: var(--color_texto);
}

/* Marcos visuales */
.media_frame {
  position: relative;
  overflow: hidden;
  width: 100%;
  border-radius: var(--radio_media);
  background: var(--color_media);
}

.media_frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(34, 34, 34, .06);
  border-radius: inherit;
  pointer-events: none;
}

.media_frame_hero {
  aspect-ratio: 16 / 8.2;
}

.ratio_landscape {
  aspect-ratio: 16 / 11;
}

.ratio_portrait {
  aspect-ratio: 4 / 5;
}

.ratio_service {
  aspect-ratio: 4 / 5;
}

.ratio_cinematic {
  aspect-ratio: 16 / 9;
}

.ratio_portrait_wide {
  aspect-ratio: 4 / 4.7;
}

.ratio_editorial {
  aspect-ratio: 4 / 3;
}

.media_note {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 1;
  max-width: calc(100% - 28px);
  padding: 7px 10px;
  border-radius: var(--radio_capsula);
  background: rgba(255, 255, 255, .92);
  color: var(--color_texto);
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .01em;
  backdrop-filter: blur(8px);
}

/* Secciones y encabezados */
.section_header {
  display: grid;
  grid-template-columns: 1fr 5fr 2fr;
  gap: 28px;
  align-items: end;
  margin-bottom: 40px;
}

.section_header h2 {
  margin-bottom: 0;
}

.section_header>a,
.section_header>p {
  justify-self: end;
  max-width: 20rem;
  margin-bottom: 4px;
}

.section_header_left {
  align-items: start;
}

/* Inicio */
.home_hero {
  padding: 62px 0 82px;
}

.hero_grid {
  display: grid;
  grid-template-columns: 1fr 5fr 2fr;
  gap: 28px;
  align-items: end;
  margin-bottom: 44px;
}

.hero_kicker {
  align-self: start;
  padding-top: 8px;
}

.hero_grid h1 {
  max-width: 12ch;
  margin-bottom: 0;
}

.hero_summary {
  align-self: end;
}

.hero_summary p {
  margin-bottom: 26px;
}

.hero_actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.featured_project {
  display: block;
  padding: 10px;
  border: 1px solid var(--color_borde_suave);
  border-radius: var(--radio_panel);
  background: var(--color_superficie);
  box-shadow: var(--sombra_tarjeta);
  transition: transform var(--transicion), box-shadow var(--transicion);
}

.featured_project:hover {
  transform: translateY(-3px);
  box-shadow: var(--sombra_hover);
}

.featured_caption {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 14px 12px;
}

.featured_caption h2 {
  max-width: 24ch;
  margin: 8px 0 0;
  font-size: clamp(1.55rem, 2.1vw, 2.25rem);
  line-height: 1.10;
}

.studio_statement,
.projects_showcase,
.service_index,
.process_preview,
.journal_preview {
  padding: 82px 0;
}

.editorial_grid {
  display: grid;
  grid-template-columns: 1fr 4fr 3fr;
  gap: 38px;
  padding: 44px;
  border: 1px solid var(--color_borde_suave);
  border-radius: var(--radio_panel);
  background: var(--color_superficie);
  box-shadow: var(--sombra_tarjeta);
}

.editorial_grid h2 {
  max-width: 15ch;
  margin-bottom: 0;
}

.rich_copy {
  max-width: 31rem;
}

.quiet_list,
.line_list {
  margin: 22px 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--color_borde);
}

.quiet_list li,
.line_list li {
  padding: 11px 0;
  border-bottom: 1px solid var(--color_borde);
  color: var(--color_texto);
  font-size: .84rem;
}

.project_mosaic {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 20px;
  align-items: start;
}

.project_item>a,
.portfolio_card>a,
.article_card,
.journal_feature>a {
  display: block;
  height: 100%;
  padding: 9px;
  border: 1px solid var(--color_borde_suave);
  border-radius: var(--radio_tarjeta);
  background: var(--color_superficie);
  box-shadow: var(--sombra_tarjeta);
  transition: transform var(--transicion), box-shadow var(--transicion);
}

.project_item>a:hover,
.portfolio_card>a:hover,
.article_card:hover,
.journal_feature>a:hover {
  transform: translateY(-3px);
  box-shadow: var(--sombra_hover);
}

.project_caption {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 10px 10px;
}

.project_caption h3 {
  margin: 8px 0 0;
  font-size: clamp(1.08rem, 1.35vw, 1.4rem);
  line-height: 1.16;
}

.project_caption>span {
  font-size: .72rem;
}

.index_rows {
  overflow: hidden;
  border: 1px solid var(--color_borde_suave);
  border-radius: var(--radio_tarjeta);
  background: var(--color_superficie);
  box-shadow: var(--sombra_tarjeta);
}

.index_row {
  display: grid;
  grid-template-columns: 56px 2.2fr 3fr 32px;
  gap: 24px;
  min-height: 94px;
  padding: 24px;
  align-items: center;
  border-bottom: 1px solid var(--color_borde);
  transition: background var(--transicion);
}

.index_row:last-child {
  border-bottom: 0;
}

.index_row:hover {
  background: var(--color_superficie_suave);
}

.index_row>span:first-child {
  font-size: .72rem;
}

.index_row h3 {
  margin: 0;
  font-size: clamp(1.12rem, 1.4vw, 1.4rem);
  line-height: 1.16;
}

.index_row p {
  margin: 0;
}

.service_spotlight {
  padding: 0 0 82px;
}

.spotlight_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 12px;
  border-radius: var(--radio_panel);
  background: var(--color_berenjena);
  color: #ffffff;
}

.spotlight_content {
  display: flex;
  padding: clamp(32px, 5vw, 66px);
  flex-direction: column;
  justify-content: center;
}

.spotlight_content h2 {
  margin: 8px 0 18px;
  color: #ffffff;
}

.spotlight_content p,
.spotlight_content li,
.spotlight_content .micro_label {
  color: #ffffff;
}

.spotlight_content .line_list {
  border-color: rgba(255, 255, 255, .18);
}

.spotlight_content .line_list li {
  border-color: rgba(255, 255, 255, .18);
}

.media_frame_dark {
  background: #aaa7a0;
}

.price_row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 18px;
}

.price_row strong {
  color: #ffffff;
  font-size: clamp(1.5rem, 2.5vw, 2.3rem);
  letter-spacing: -.04em;
}

.process_preview_grid {
  display: grid;
  overflow: hidden;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--color_borde_suave);
  border-radius: var(--radio_tarjeta);
  background: var(--color_superficie);
  box-shadow: var(--sombra_tarjeta);
}

.process_preview_grid article {
  min-height: 224px;
  padding: 28px 28px 60px;
  border-right: 1px solid var(--color_borde);
}

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

.process_preview_grid article>span {
  font-size: .72rem;
}

.process_preview_grid h3 {
  margin: 30px 0 14px;
}

.process_preview_grid p {
  margin-bottom: 0;
}

.journal_grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 20px;
}

.journal_feature h3 {
  margin: 12px 10px 14px;
  font-size: clamp(1.35rem, 1.9vw, 1.9rem);
  line-height: 1.08;
}

.journal_feature p {
  margin: 0 8px 8px;
}

.journal_feature .micro_label {
  margin: 18px 8px 0;
}

.journal_list {
  display: grid;
  gap: 20px;
}

.journal_list article {
  padding: 30px;
  border: 1px solid var(--color_borde_suave);
  border-radius: var(--radio_tarjeta);
  background: var(--color_superficie);
  box-shadow: var(--sombra_tarjeta);
  transition: transform var(--transicion), box-shadow var(--transicion);
}

.journal_list article:hover {
  transform: translateY(-3px);
  box-shadow: var(--sombra_hover);
}

.journal_list h3 {
  margin: 12px 0 30px;
}

.closing_cta {
  padding: 0 0 32px;
}

.closing_cta .wrap {
  display: grid;
  grid-template-columns: 1fr 4fr auto;
  gap: 28px;
  align-items: end;
  padding: clamp(38px, 6vw, 72px);
  border-radius: var(--radio_panel);
  background: var(--color_negro);
  color: #ffffff;
}

.closing_cta h2 {
  max-width: 16ch;
  margin: 0;
  color: #ffffff;
}

.closing_cta .micro_label {
  color: #ffffff;
}

.closing_cta_light .wrap {
  background: var(--color_superficie);
  color: var(--color_texto);
  border: 1px solid var(--color_borde_suave);
}

.closing_cta_light h2,
.closing_cta_light .micro_label {
  color: var(--color_texto);
}

/* Encabezados interiores */
.page_hero {
  padding: 68px 0 74px;
}

.page_hero_grid {
  display: grid;
  grid-template-columns: 1fr 5fr 2fr;
  gap: 28px;
  align-items: end;
}

.page_hero_grid .section_marker {
  align-self: start;
  padding-top: 8px;
}

.page_hero h1 {
  max-width: 12ch;
  margin-bottom: 0;
}

.page_lead {
  max-width: 25rem;
  margin-bottom: 5px;
}

/* Portafolio */
.portfolio_lead {
  padding: 72px 0 82px;
}

.portfolio_feature>a {
  display: grid;
  grid-template-columns: 1.65fr 1fr;
  gap: 12px;
  padding: 10px;
  border: 1px solid var(--color_borde_suave);
  border-radius: var(--radio_panel);
  background: var(--color_superficie);
  box-shadow: var(--sombra_tarjeta);
}

.portfolio_feature_copy {
  display: flex;
  padding: clamp(28px, 4.5vw, 54px);
  flex-direction: column;
  justify-content: center;
}

.portfolio_feature_copy h2 {
  margin: 10px 0 18px;
}

.portfolio_feature_copy .text_link {
  align-self: flex-start;
  margin-top: 14px;
}

.portfolio_grid_section {
  padding: 82px 0;
}

.portfolio_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.portfolio_card_copy {
  padding: 20px 12px 12px;
}

.portfolio_card_copy h3 {
  margin: 8px 0 10px;
}

.portfolio_card_copy .text_link {
  margin-top: 12px;
}

.content_band {
  padding: 32px 0 72px;
}

.content_band_grid {
  display: grid;
  grid-template-columns: 1fr 4fr 2fr;
  gap: 28px;
  align-items: end;
  padding: 42px;
  border: 1px solid var(--color_borde_suave);
  border-radius: var(--radio_panel);
  background: var(--color_superficie);
  box-shadow: var(--sombra_tarjeta);
}

.content_band_grid h2 {
  margin: 0;
}

.content_band_grid p {
  margin-bottom: 0;
}

.content_band_grid .button {
  justify-self: end;
}

/* Servicio */
.service_detail {
  padding: 72px 0 82px;
}

.service_detail_grid {
  display: grid;
  grid-template-columns: 1.45fr .75fr;
  gap: 22px;
  align-items: start;
}

.service_scope {
  padding: clamp(30px, 4.5vw, 52px);
  border: 1px solid var(--color_borde_suave);
  border-radius: var(--radio_panel);
  background: var(--color_superficie);
  box-shadow: var(--sombra_tarjeta);
}

.service_scope h2 {
  max-width: 18ch;
  margin: 12px 0 18px;
}

.service_scope .lead_text {
  max-width: 42rem;
}

.service_scope_list {
  margin: 30px 0 18px;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--color_borde);
}

.service_scope_list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--color_borde);
}

.service_scope_list li>span {
  padding-top: 4px;
  font-size: .7rem;
}

.service_scope_list h3 {
  margin: 0 0 4px;
  font-size: 1.15rem;
}

.service_scope_list p {
  margin: 0;
}

.service_note {
  margin-bottom: 0;
  font-size: .84rem;
}

.service_purchase {
  position: sticky;
  top: calc(var(--altura_header) + 20px);
  padding: clamp(30px, 4.5vw, 62px) clamp(30px, 4.5vw, 52px);
  border: 1px solid var(--color_borde_suave);
  border-radius: var(--radio_panel);
  background: var(--color_berenjena);
  box-shadow: var(--sombra_tarjeta);
  color: var(--color_superficie);
}

/* Contraste uniforme del contenido sobre el fondo berenjena sin alterar los botones. */
.service_purchase h2,
.service_purchase p,
.service_purchase .micro_label,
.service_purchase .service_price,
.service_purchase small,
.service_purchase>span {
  color: #ffffff;
}

.service_purchase h2 {
  margin: 12px 0 12px;
  font-size: clamp(1.65rem, 2.4vw, 2.35rem);
}

.service_price {
  display: block;
  margin: 28px 0 20px;
  color: var(--color_texto);
  font-size: clamp(1.75rem, 2.8vw, 2.55rem);
  letter-spacing: -.045em;
}

.service_purchase small {
  display: block;
  margin-top: 12px;
  text-align: center;
}

.service_philosophy {
  padding: 0 0 72px;
}

.service_philosophy_grid,
.collaboration_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 12px;
  border-radius: var(--radio_panel);
  background: var(--color_berenjena);
  color: #ffffff;
}

.service_philosophy_grid>div:last-child,
.collaboration_grid>div:first-child {
  display: flex;
  padding: clamp(32px, 5vw, 64px);
  flex-direction: column;
  justify-content: center;
}

.service_philosophy h2,
.collaboration_grid h2 {
  color: #ffffff;
}

.service_philosophy p,
.collaboration_grid p,
.service_philosophy .micro_label,
.collaboration_grid .micro_label {
  color: #ffffff;
}

.faq_section {
  padding: 82px 0 104px;
}

.faq_layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: start;
}

.faq_layout h2 {
  max-width: 13ch;
  margin: 12px 0 0;
}

.faq {
  overflow: hidden;
  border: 1px solid var(--color_borde_suave);
  border-radius: var(--radio_tarjeta);
  background: var(--color_superficie);
  box-shadow: var(--sombra_tarjeta);
}

.faq_item {
  border-bottom: 1px solid var(--color_borde);
}

.faq_item:last-child {
  border-bottom: 0;
}

.faq_question {
  display: flex;
  width: 100%;
  padding: 21px 22px;
  justify-content: space-between;
  gap: 18px;
  border: 0;
  background: transparent;
  color: var(--color_texto);
  font-weight: 600;
  text-align: left;
}

.faq_question::after {
  content: "+";
  font-size: 1.2rem;
  font-weight: 400;
}

.faq_item.is_open .faq_question::after {
  content: "−";
}

.faq_answer {
  padding: 0 54px 22px 22px;
  color: var(--color_texto);
}

/* Proceso */
.process_timeline {
  padding: 72px 0 82px;
}

.timeline_rows {
  overflow: hidden;
  border: 1px solid var(--color_borde_suave);
  border-radius: var(--radio_tarjeta);
  background: var(--color_superficie);
  box-shadow: var(--sombra_tarjeta);
}

.timeline_rows article {
  display: grid;
  grid-template-columns: 56px 2fr 4fr;
  gap: 24px;
  min-height: 108px;
  padding: 24px;
  align-items: center;
  border-bottom: 1px solid var(--color_borde);
}

.timeline_rows article:last-child {
  border-bottom: 0;
}

.timeline_rows article>span {
  font-size: .7rem;
}

.timeline_rows h3 {
  margin: 0;
  font-size: clamp(1.25rem, 1.8vw, 1.65rem);
}

.timeline_rows p {
  margin: 0;
}

.collaboration_section {
  padding: 0 0 72px;
}

.principles_section {
  padding: 82px 0 104px;
}

.principles_grid {
  display: grid;
  overflow: hidden;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--color_borde_suave);
  border-radius: var(--radio_tarjeta);
  background: var(--color_superficie);
  box-shadow: var(--sombra_tarjeta);
}

.principles_grid article {
  min-height: 230px;
  padding: 28px;
  border-right: 1px solid var(--color_borde);
}

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

.principles_grid h3 {
  margin: 66px 0 12px;
}

.principles_grid p {
  margin-bottom: 0;
}

/* Blog */
.journal_feature_section {
  padding: 72px 0 82px;
}

.journal_feature_grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 12px;
  padding: 10px;
  border: 1px solid var(--color_borde_suave);
  border-radius: var(--radio_panel);
  background: var(--color_superficie);
  box-shadow: var(--sombra_tarjeta);
}

.journal_feature_grid>article {
  /*display: flex;*/
  /*min-width: 0;*/
  padding: clamp(28px, 4.5vw, 54px);
  /*flex-direction: column;*/
  /*justify-content: center;*/
}

.journal_feature_grid h2 {
  margin: 10px 0 18px;
}

.article_grid_section {
  padding: 82px 0 104px;
}

.article_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.article_card .micro_label {
  margin: 18px 10px 0;
}

.article_card h3 {
  margin: 10px 10px 12px;
}

.article_card p {
  margin: 0 10px 14px;
}

.article_card .text_link {
  margin: 0 10px 10px;
}

/* Contacto */
.contact_main {
  padding: 72px 0 82px;
}

.contact_main_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact_statement,
.contact_brief {
  min-height: 520px;
  padding: clamp(32px, 5vw, 58px);
  border-radius: var(--radio_panel);
}

.contact_statement {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--color_berenjena);
  color: #ffffff;
}

.contact_statement .micro_label {
  margin-bottom: auto;
  color: #ffffff;
}

.contact_statement h2 {
  max-width: 10ch;
  color: #ffffff;
}

.contact_statement p {
  color: #ffffff;
}

.contact_statement .button {
  align-self: flex-start;
}

.contact_brief {
  border: 1px solid var(--color_borde_suave);
  background: var(--color_superficie);
  box-shadow: var(--sombra_tarjeta);
}

.contact_brief h2 {
  max-width: 12ch;
  margin: 12px 0 32px;
}

.contact_brief ol {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--color_borde);
}

.contact_brief li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  padding: 17px 0;
  border-bottom: 1px solid var(--color_borde);
}

.contact_brief li>span {
  font-size: .7rem;
}

.contact_brief h3 {
  margin: 0 0 3px;
  font-size: 1.1rem;
}

.contact_brief p {
  margin: 0;
}

.contact_options {
  padding: 82px 0 104px;
}

.contact_option_grid {
  display: grid;
  overflow: hidden;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--color_borde_suave);
  border-radius: var(--radio_tarjeta);
  background: var(--color_superficie);
  box-shadow: var(--sombra_tarjeta);
}

.contact_option {
  position: relative;
  min-height: 250px;
  padding: 28px;
  border-right: 1px solid var(--color_borde);
}

.contact_option:last-child {
  border-right: 0;
}

.contact_option>span:first-child {
  font-size: .7rem;
}

.contact_option h3 {
  margin: 56px 0 12px;
}

.contact_option p {
  margin-bottom: 0;
}

.contact_option .link_arrow {
  position: absolute;
  right: 24px;
  bottom: 22px;
}

/* Checkout */
.checkout_intro {
  padding: 68px 0 74px;
}

.checkout_intro_grid {
  display: grid;
  grid-template-columns: 1fr 5fr 2fr;
  gap: 28px;
  align-items: end;
}

.checkout_intro_grid .section_marker {
  align-self: start;
  padding-top: 8px;
}

.checkout_intro h1 {
  max-width: 12ch;
  margin-bottom: 0;
}

.checkout_intro p {
  margin-bottom: 5px;
}

.checkout_section {
  padding: 72px 0 104px;
}

.checkout_layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(320px, .75fr);
  gap: 18px;
  align-items: start;
}

.checkout_card {
  border: 1px solid var(--color_borde_suave);
  border-radius: var(--radio_panel);
  background: var(--color_superficie);
  box-shadow: var(--sombra_tarjeta);
}

.checkout_form_card {
  padding: clamp(28px, 4vw, 44px);
}

.checkout_summary_card {
  position: sticky;
  top: calc(var(--altura_header) + 20px);
  padding: 30px;
}

.card_heading {
  margin-bottom: 30px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--color_borde);
}

.card_heading h2 {
  margin: 12px 0 10px;
  font-size: clamp(1.65rem, 2.35vw, 2.35rem);
  line-height: 1.09;
}

.card_heading p {
  margin-bottom: 0;
}

.form_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 16px;
}

.field {
  display: grid;
  gap: 8px;
}

.field_full {
  grid-column: 1 / -1;
}

.field>span {
  color: var(--color_texto);
  font-size: .78rem;
  font-weight: 600;
}

.field small {
  font-weight: 400;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 13px 14px;
  border: 1px solid var(--color_borde);
  border-radius: var(--radio_campo);
  outline: 0;
  background: #ffffff;
  color: var(--color_texto);
  transition: border var(--transicion), box-shadow var(--transicion);
}

.field textarea {
  min-height: 142px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--color_texto);
  box-shadow: 0 0 0 3px rgba(34, 34, 34, .08);
}

.field input:disabled,
.field select:disabled,
.field textarea:disabled {
  background: var(--color_superficie_suave);
  color: var(--color_texto);
  -webkit-text-fill-color: var(--color_texto);
}

.check_field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 26px 0 18px;
  font-size: .82rem;
}

.check_field input {
  margin-top: 3px;
  accent-color: var(--color_texto);
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form_message {
  min-height: 1.4em;
  margin: 12px 0;
  font-size: .82rem;
  font-weight: 600;
}

.form_message.error {
  color: var(--color_error);
}

.form_message.success {
  color: var(--color_exito);
}

.secure_note {
  margin: 11px 0 0;
  font-size: .72rem;
  text-align: center;
}

.checkout_warning {
  margin-bottom: 18px;
  padding: 14px 16px;
  border: 1px solid #d6ba75;
  border-radius: var(--radio_boton);
  background: #fff7dc;
  color: var(--color_alerta);
}

.service_summary h3 {
  margin: 12px 0 10px;
  font-size: clamp(1.5rem, 2.1vw, 2rem);
}

.service_summary ul {
  padding-left: 18px;
}

.checkout_totals {
  margin-top: 24px;
}

.checkout_grand_total {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 20px;
  border-top: 1px solid var(--color_borde);
}

.checkout_grand_total strong {
  font-size: 1.25rem;
}

.summary_reassurance {
  display: grid;
  gap: 7px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--color_borde);
  font-size: .72rem;
}

/* Resultado */
.payment_result_page {
  background: var(--color_fondo);
}

.payment_result_wrap {
  min-height: calc(100vh - var(--altura_header) - 300px);
  padding: 80px 0;
}

.payment_result_card {
  width: min(680px, 100%);
  margin: 0 auto;
  padding: clamp(34px, 6vw, 60px);
  border: 1px solid var(--color_borde_suave);
  border-radius: var(--radio_panel);
  background: var(--color_superficie);
  box-shadow: var(--sombra_tarjeta);
  text-align: center;
}

.payment_result_icon {
  display: grid;
  width: 68px;
  height: 68px;
  margin: 0 auto 22px;
  place-items: center;
  border-radius: 50%;
  background: var(--color_superficie_suave);
  font-size: 1.8rem;
  font-weight: 700;
}

.payment_result_card h1 {
  margin: 14px 0 20px;
  font-size: clamp(2rem, 3.5vw, 3.1rem);
  line-height: 1.07;
}

.payment_result_card>p:not(.micro_label):not(.eyebrow) {
  max-width: 35rem;
  margin: 0 auto 18px;
}

.payment_result_note {
  padding: 12px 14px;
  border-radius: var(--radio_boton);
  background: var(--color_superficie_suave);
  font-size: .8rem;
}

.payment_result_actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.payment_result_card.success .payment_result_icon {
  color: var(--color_exito);
}

.payment_result_card.error .payment_result_icon {
  color: var(--color_error);
}

.payment_result_card.warning .payment_result_icon {
  color: var(--color_alerta);
}

/* Alertas */
.site_alert {
  padding: 12px 20px;
  text-align: center;
  font-size: .84rem;
  font-weight: 600;
}

.site_alert_error {
  border-bottom: 1px solid #e1b5b5;
  background: #fae7e7;
  color: #7e1d1d;
}

/* Pie */
.site_footer,
footer.site {
  padding: 70px 0 26px;
  background: var(--color_negro);
  color: #ffffff;
}

.footer_top {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: 9vw;
}

.footer_intro {
  max-width: 28rem;
}

.footer_brand {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.footer_brand_logo {
  display: block;
  width: 11.05rem;
  height: 3rem;
  object-fit: contain;
  object-position: left center;
  filter: brightness(0) invert(1);
}

.footer_intro p {
  margin-top: 18px;
  color: #ffffff;
}

.footer_nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.footer_nav h2 {
  margin-bottom: 18px;
  color: #ffffff;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .02em;
}

.footer_nav a {
  display: block;
  padding: 5px 0;
  color: #ffffff;
  font-size: .85rem;
}

.footer_bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 18px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .15);
  color: #ffffff;
  font-size: .72rem;
}

/* Ajustes de ritmo KEU 13.2 */
.section_header h2,
.hero_grid h1,
.page_hero h1,
.checkout_intro h1 {
  text-wrap: balance;
}

.hero_summary,
.page_lead,
.section_header>p,
.rich_copy,
.project_caption,
.portfolio_card_copy,
.article_card,
.journal_feature,
.journal_list article {
  line-height: 1.55;
}

.project_caption,
.portfolio_card_copy,
.article_card,
.journal_feature,
.journal_list article {
  text-wrap: pretty;
}

/* Responsividad */
@media (max-width: 1100px) {
  .nav_links {
    gap: 16px;
  }

  .nav_links a {
    font-size: .82rem;
  }

  .hero_grid,
  .page_hero_grid,
  .checkout_intro_grid,
  .section_header,
  .editorial_grid,
  .content_band_grid {
    grid-template-columns: 1fr 4fr 2fr;
  }

  .project_mosaic {
    grid-template-columns: 1.35fr 1fr 1fr;
  }

  .spotlight_content {
    padding: 36px;
  }
}

@media (max-width: 900px) {
  .nav {
    grid-template-columns: auto 1fr auto;
  }

  .nav_links {
    display: none;
  }

  .menu_toggle {
    display: grid;
  }

  .nav_links.is_open {
    position: absolute;
    top: calc(var(--altura_header) - 1px);
    left: 20px;
    right: 20px;
    display: flex;
    padding: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    border: 1px solid var(--color_borde_suave);
    border-radius: 0 0 var(--radio_tarjeta) var(--radio_tarjeta);
    background: var(--color_superficie);
    box-shadow: var(--sombra_hover);
  }

  .nav_links.is_open a {
    padding: 13px 12px;
    border-radius: 8px;
  }

  .nav_links.is_open a:hover {
    background: var(--color_superficie_suave);
  }

  .nav_links.is_open a::after {
    display: none;
  }

  .hero_grid,
  .page_hero_grid,
  .checkout_intro_grid {
    grid-template-columns: 1fr 2fr;
  }

  .hero_grid h1,
  .page_hero h1,
  .checkout_intro h1 {
    grid-column: 1 / -1;
    max-width: 15ch;
  }

  .hero_summary,
  .page_lead,
  .checkout_intro p {
    grid-column: 2;
  }

  .editorial_grid,
  .section_header,
  .content_band_grid {
    grid-template-columns: 1fr 3fr;
  }

  .editorial_grid .rich_copy,
  .section_header>p,
  .section_header>a,
  .content_band_grid p,
  .content_band_grid .button {
    grid-column: 2;
    justify-self: start;
  }

  .project_mosaic,
  .portfolio_grid,
  .article_grid {
    grid-template-columns: 1fr 1fr;
  }

  .project_item_featured {
    grid-column: 1 / -1;
  }

  .project_item_featured .ratio_landscape {
    aspect-ratio: 16 / 8.5;
  }

  .spotlight_grid,
  .portfolio_feature>a,
  .service_detail_grid,
  .service_philosophy_grid,
  .collaboration_grid,
  .journal_feature_grid,
  .contact_main_grid,
  .checkout_layout {
    grid-template-columns: 1fr;
  }

  .service_purchase,
  .checkout_summary_card {
    position: static;
  }

  .checkout_summary_card {
    order: -1;
  }

  .process_preview_grid,
  .principles_grid,
  .contact_option_grid {
    grid-template-columns: 1fr 1fr;
  }

  .process_preview_grid article:nth-child(2),
  .contact_option:nth-child(2),
  .principles_grid article:nth-child(2) {
    border-right: 0;
  }

  .process_preview_grid article:nth-child(-n+2),
  .contact_option:nth-child(-n+2),
  .principles_grid article:nth-child(-n+2) {
    border-bottom: 1px solid var(--color_borde);
  }

  .principles_grid article:last-child,
  .contact_option:last-child {
    grid-column: 1 / -1;
  }

  .journal_grid {
    grid-template-columns: 1fr;
  }

  .journal_list {
    grid-template-columns: 1fr 1fr;
  }

  .faq_layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .closing_cta .wrap {
    grid-template-columns: 1fr 3fr;
  }

  .closing_cta .button {
    grid-column: 2;
    justify-self: start;
  }

  .footer_top {
    grid-template-columns: 1fr;
    gap: 46px;
  }
}

@media (max-width: 640px) {
  :root {
    --altura_header: 68px;
    --radio_media: 12px;
    --radio_tarjeta: 12px;
    --radio_panel: 14px;
  }

  body {
    font-size: 15px;
  }

  .wrap,
  .nav {
    width: min(100% - 24px, var(--ancho));
  }

  h1 {
    font-size: clamp(2.2rem, 10vw, 2.65rem);
    line-height: 1.05;
  }

  h2 {
    font-size: clamp(1.85rem, 8.5vw, 2.25rem);
    line-height: 1.08;
  }

  h3 {
    font-size: clamp(1.08rem, 5.4vw, 1.35rem);
    line-height: 1.14;
  }

  .brand_logo {
    width: 9.45rem;
    height: auto;
  }

  .nav_cta {
    display: none;
  }

  .home_hero,
  .page_hero,
  .checkout_intro {
    padding: 44px 0 54px;
  }

  .hero_grid,
  .page_hero_grid,
  .checkout_intro_grid,
  .editorial_grid,
  .section_header,
  .content_band_grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hero_grid h1,
  .page_hero h1,
  .checkout_intro h1,
  .hero_summary,
  .page_lead,
  .checkout_intro p,
  .editorial_grid .rich_copy,
  .section_header>p,
  .section_header>a,
  .content_band_grid p,
  .content_band_grid .button {
    grid-column: auto;
  }

  .hero_kicker,
  .page_hero_grid .section_marker,
  .checkout_intro_grid .section_marker {
    padding-top: 0;
  }

  .hero_actions {
    align-items: stretch;
  }

  .hero_actions .button {
    flex: 1 1 100%;
  }

  .featured_project,
  .project_item>a,
  .portfolio_card>a,
  .article_card,
  .journal_feature>a {
    padding: 7px;
  }

  .featured_caption {
    padding: 16px 8px 8px;
  }

  .studio_statement,
  .projects_showcase,
  .service_index,
  .process_preview,
  .journal_preview,
  .portfolio_grid_section,
  .article_grid_section,
  .contact_options,
  .faq_section,
  .principles_section {
    padding: 60px 0;
  }

  .editorial_grid,
  .content_band_grid {
    padding: 26px;
  }

  .project_mosaic,
  .portfolio_grid,
  .article_grid,
  .process_preview_grid,
  .principles_grid,
  .contact_option_grid,
  .journal_list {
    grid-template-columns: 1fr;
  }

  .project_item_featured {
    grid-column: auto;
  }

  .project_item_featured .ratio_landscape {
    aspect-ratio: 4 / 3;
  }

  .process_preview_grid article,
  .principles_grid article,
  .contact_option {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--color_borde);
  }

  .process_preview_grid article:last-child,
  .principles_grid article:last-child,
  .contact_option:last-child {
    border-bottom: 0;
    grid-column: auto;
  }

  .process_preview_grid h3,
  .principles_grid h3,
  .contact_option h3 {
    margin-top: 28px;
  }

  .index_row {
    grid-template-columns: 36px 1fr 28px;
    gap: 12px;
    padding: 18px;
  }

  .index_row p {
    grid-column: 2 / -1;
  }

  .spotlight_grid,
  .service_philosophy_grid,
  .collaboration_grid {
    padding: 8px;
  }

  .spotlight_content,
  .service_philosophy_grid>div:last-child,
  .collaboration_grid>div:first-child {
    padding: 26px 20px 30px;
  }

  .price_row {
    align-items: flex-start;
    flex-direction: column;
  }

  .closing_cta .wrap {
    grid-template-columns: 1fr;
    padding: 32px 24px;
  }

  .closing_cta .button {
    grid-column: auto;
  }

  .portfolio_feature>a {
    padding: 7px;
  }

  .portfolio_feature_copy {
    padding: 24px 14px 20px;
  }

  .content_band {
    padding-bottom: 52px;
  }

  .service_detail,
  .portfolio_lead,
  .journal_feature_section,
  .contact_main,
  .checkout_section,
  .process_timeline {
    padding: 54px 0 60px;
  }

  .service_scope,
  .service_purchase,
  .contact_statement,
  .contact_brief,
  .checkout_form_card,
  .checkout_summary_card {
    padding: 24px 20px;
  }

  .contact_statement,
  .contact_brief {
    min-height: auto;
  }

  .contact_statement .micro_label {
    margin-bottom: 72px;
  }

  .timeline_rows article {
    grid-template-columns: 36px 1fr;
    gap: 12px;
    padding: 18px;
  }

  .timeline_rows p {
    grid-column: 2;
  }

  .form_grid {
    grid-template-columns: 1fr;
  }

  .field_full {
    grid-column: auto;
  }

  .payment_result_wrap {
    padding: 52px 0;
  }

  .footer_nav {
    grid-template-columns: 1fr 1fr;
    gap: 26px;
  }

  .footer_bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
    animation-duration: .001ms !important;
  }
}

/* KEU 13.3 — Eyebrows editoriales inspirados en Awwwards */
.section_marker,
.hero_kicker,
.micro_label,
.eyebrow {
  display: block;
  margin: 0 0 .8rem;
  color: var(--color_texto);
  font-family: "Inter Tight", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(.76rem, .73rem + .08vw, .82rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -.01em;
  text-transform: none;
}

/* El eyebrow y el titulo comparten columna, como una unidad editorial. */
.section_header {
  grid-template-rows: auto auto;
  row-gap: .55rem;
}

.section_header>.section_marker {
  grid-column: 2;
  grid-row: 1;
  align-self: end;
  margin-bottom: 0;
}

.section_header>h2 {
  grid-column: 2;
  grid-row: 2;
}

.section_header>p,
.section_header>a {
  grid-column: 3;
  grid-row: 2;
  align-self: end;
}

.hero_grid,
.page_hero_grid,
.checkout_intro_grid {
  grid-template-rows: auto auto;
  row-gap: .65rem;
}

.hero_grid>.hero_kicker,
.page_hero_grid>.section_marker,
.checkout_intro_grid>.section_marker {
  grid-column: 2;
  grid-row: 1;
  align-self: end;
  margin-bottom: 0;
  padding-top: 0;
}

.hero_grid>h1,
.page_hero_grid>h1,
.checkout_intro_grid>h1 {
  grid-column: 2;
  grid-row: 2;
}

.hero_grid>.hero_summary,
.page_hero_grid>.page_lead,
.checkout_intro_grid>p {
  grid-column: 3;
  grid-row: 2;
  align-self: end;
}

.editorial_grid,
.content_band_grid,
.closing_cta .wrap {
  grid-template-rows: auto auto;
  row-gap: .55rem;
}

.editorial_grid>.section_marker,
.content_band_grid>.section_marker,
.closing_cta .wrap>.micro_label {
  grid-column: 2;
  grid-row: 1;
  align-self: end;
  margin-bottom: 0;
}

.editorial_grid>h2,
.content_band_grid>h2,
.closing_cta .wrap>h2 {
  grid-column: 2;
  grid-row: 2;
}

.editorial_grid>.rich_copy,
.content_band_grid>p,
.content_band_grid>.button,
.closing_cta .wrap>.button {
  grid-column: 3;
  grid-row: 2;
  align-self: end;
}

/* Los labels internos conservan cercania con el titulo sin parecer etiquetas tecnicas. */
.featured_caption .micro_label,
.project_caption .micro_label,
.portfolio_feature_copy .micro_label,
.portfolio_card_copy .micro_label,
.article_card .micro_label,
.journal_feature .micro_label,
.journal_list .micro_label,
.card_heading .micro_label,
.service_purchase .micro_label,
.spotlight_content .micro_label,
.contact_statement .micro_label,
.contact_brief .section_marker {
  margin-bottom: .65rem;
}

/* Fondos oscuros: se conserva contraste pleno, sin opacidad. */
.spotlight_content .micro_label,
.service_philosophy .micro_label,
.collaboration_grid .micro_label,
.contact_statement .micro_label,
.closing_cta .micro_label {
  color: #ffffff;
}

.closing_cta_light .micro_label {
  color: var(--color_texto);
}

@media (max-width: 900px) {

  .section_header>.section_marker,
  .section_header>h2,
  .hero_grid>.hero_kicker,
  .hero_grid>h1,
  .page_hero_grid>.section_marker,
  .page_hero_grid>h1,
  .checkout_intro_grid>.section_marker,
  .checkout_intro_grid>h1,
  .editorial_grid>.section_marker,
  .editorial_grid>h2,
  .content_band_grid>.section_marker,
  .content_band_grid>h2,
  .closing_cta .wrap>.micro_label,
  .closing_cta .wrap>h2 {
    grid-column: 2;
  }

  .section_header>p,
  .section_header>a,
  .hero_grid>.hero_summary,
  .page_hero_grid>.page_lead,
  .checkout_intro_grid>p,
  .editorial_grid>.rich_copy,
  .content_band_grid>p,
  .content_band_grid>.button,
  .closing_cta .wrap>.button {
    grid-column: 2;
    grid-row: auto;
    justify-self: start;
  }
}

@media (max-width: 640px) {

  .section_marker,
  .hero_kicker,
  .micro_label,
  .eyebrow {
    margin-bottom: .7rem;
    font-size: .76rem;
  }

  .section_header>.section_marker,
  .section_header>h2,
  .section_header>p,
  .section_header>a,
  .hero_grid>.hero_kicker,
  .hero_grid>h1,
  .hero_grid>.hero_summary,
  .page_hero_grid>.section_marker,
  .page_hero_grid>h1,
  .page_hero_grid>.page_lead,
  .checkout_intro_grid>.section_marker,
  .checkout_intro_grid>h1,
  .checkout_intro_grid>p,
  .editorial_grid>.section_marker,
  .editorial_grid>h2,
  .editorial_grid>.rich_copy,
  .content_band_grid>.section_marker,
  .content_band_grid>h2,
  .content_band_grid>p,
  .content_band_grid>.button,
  .closing_cta .wrap>.micro_label,
  .closing_cta .wrap>h2,
  .closing_cta .wrap>.button {
    grid-column: 1;
    grid-row: auto;
  }
}

/*
 * KEU 13.4 — Alineación editorial
 * Los eyebrows y sus títulos comparten un eje izquierdo real con el contenido.
 * La jerarquía conserva Inter Tight, color sólido y una separación editorial más clara.
 */
.section_marker,
.hero_kicker,
.eyebrow {
  display: block;
  margin: 0 0 .95rem;
  color: var(--color_texto);
  font-family: var(--fuente);
  font-size: clamp(.80rem, .77rem + .08vw, .84rem);
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: 0;
  text-transform: none;
}

.micro_label {
  display: block;
  margin: 0 0 .65rem;
  color: var(--color_texto);
  font-family: var(--fuente);
  font-size: .72rem;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0;
  text-transform: none;
}

/* Encabezados de sección: eyebrow y título alineados con la colección inferior. */
.section_header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(15rem, auto);
  grid-template-rows: auto auto;
  column-gap: clamp(2rem, 5vw, 6rem);
  row-gap: .2rem;
  align-items: end;
  margin-bottom: 48px;
}

.section_header>.section_marker {
  grid-column: 1;
  grid-row: 1;
  align-self: end;
  margin-bottom: 0;
}

.section_header>h2 {
  grid-column: 1;
  grid-row: 2;
  max-width: 20ch;
  margin: 0;
}

.section_header>p,
.section_header>a {
  grid-column: 2;
  grid-row: 2;
  align-self: end;
  justify-self: end;
  max-width: 24rem;
  margin-bottom: .2rem;
}

/* Hero principal e interiores: el bloque editorial inicia en el eje del contenido. */
.hero_grid,
.page_hero_grid,
.checkout_intro_grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(18rem, .55fr);
  grid-template-rows: auto auto;
  column-gap: clamp(2.5rem, 6vw, 7rem);
  row-gap: .2rem;
  align-items: center;
}

.hero_grid {
  margin-bottom: 52px;
}

.hero_grid>.hero_kicker,
.page_hero_grid>.section_marker,
.checkout_intro_grid>.section_marker {
  grid-column: 1;
  grid-row: 1;
  align-self: end;
  margin-bottom: 0;
  padding-top: 0;
}

.hero_grid>h1,
.page_hero_grid>h1,
.checkout_intro_grid>h1 {
  grid-column: 1;
  grid-row: 2;
  max-width: 20ch;
  margin: 0;
}

.hero_grid>.hero_summary,
.page_hero_grid>.page_lead,
.checkout_intro_grid>p {
  grid-column: 2;
  grid-row: 2;
  align-self: end;
  justify-self: end;
  max-width: 25rem;
  margin-bottom: .2rem;
}

/* Bloques editoriales contenidos. */
.editorial_grid,
.content_band_grid,
.closing_cta .wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(19rem, .75fr);
  grid-template-rows: auto auto;
  column-gap: clamp(2rem, 5vw, 6rem);
  row-gap: .2rem;
  align-items: center;
}

.editorial_grid>.section_marker,
.content_band_grid>.section_marker,
.closing_cta .wrap>.micro_label {
  grid-column: 1;
  grid-row: 1;
  align-self: end;
  margin-bottom: 0;
}

.editorial_grid>h2,
.content_band_grid>h2,
.closing_cta .wrap>h2 {
  grid-column: 1;
  grid-row: 2;
  max-width: 18ch;
  margin: 0;
}

.editorial_grid>.rich_copy,
.content_band_grid>p,
.content_band_grid>.button,
.closing_cta .wrap>.button {
  grid-column: 2;
  grid-row: 2;
  align-self: center;
  justify-self: end;
}

.editorial_grid>.rich_copy,
.content_band_grid>p {
  max-width: 31rem;
}

/* Separación interna de labels que acompañan títulos de tarjetas. */
.featured_caption .micro_label,
.project_caption .micro_label,
.portfolio_feature_copy .micro_label,
.portfolio_card_copy .micro_label,
.article_card .micro_label,
.journal_feature .micro_label,
.journal_list .micro_label,
.card_heading .micro_label,
.service_purchase .micro_label,
.spotlight_content .micro_label,
.contact_statement .micro_label,
.contact_brief .section_marker {
  margin-bottom: .7rem;
}

/* Contraste completo en superficies oscuras. */
.spotlight_content .micro_label,
.service_philosophy .micro_label,
.collaboration_grid .micro_label,
.contact_statement .micro_label,
.closing_cta .micro_label {
  color: #ffffff;
}

.closing_cta_light .micro_label {
  color: var(--color_texto);
}

@media (max-width: 900px) {

  .section_header,
  .hero_grid,
  .page_hero_grid,
  .checkout_intro_grid,
  .editorial_grid,
  .content_band_grid,
  .closing_cta .wrap {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    row-gap: 1rem;
  }

  .section_header>.section_marker,
  .section_header>h2,
  .section_header>p,
  .section_header>a,
  .hero_grid>.hero_kicker,
  .hero_grid>h1,
  .hero_grid>.hero_summary,
  .page_hero_grid>.section_marker,
  .page_hero_grid>h1,
  .page_hero_grid>.page_lead,
  .checkout_intro_grid>.section_marker,
  .checkout_intro_grid>h1,
  .checkout_intro_grid>p,
  .editorial_grid>.section_marker,
  .editorial_grid>h2,
  .editorial_grid>.rich_copy,
  .content_band_grid>.section_marker,
  .content_band_grid>h2,
  .content_band_grid>p,
  .content_band_grid>.button,
  .closing_cta .wrap>.micro_label,
  .closing_cta .wrap>h2,
  .closing_cta .wrap>.button {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
  }

  .section_header>.section_marker,
  .hero_grid>.hero_kicker,
  .page_hero_grid>.section_marker,
  .checkout_intro_grid>.section_marker,
  .editorial_grid>.section_marker,
  .content_band_grid>.section_marker,
  .closing_cta .wrap>.micro_label {
    margin-bottom: -.15rem;
  }

  .section_header>p,
  .section_header>a,
  .hero_grid>.hero_summary,
  .page_hero_grid>.page_lead,
  .checkout_intro_grid>p,
  .editorial_grid>.rich_copy,
  .content_band_grid>p,
  .content_band_grid>.button,
  .closing_cta .wrap>.button {
    max-width: 36rem;
  }
}

@media (max-width: 640px) {

  .section_marker,
  .hero_kicker,
  .eyebrow {
    margin-bottom: .8rem;
    font-size: .78rem;
  }

  .micro_label {
    margin-bottom: .6rem;
    font-size: .70rem;
  }

  .section_header {
    margin-bottom: 34px;
  }

  .hero_grid {
    margin-bottom: 38px;
  }
}

/* =========================================================
   KEU 14 — Movimiento progresivo, preloader y medios
   ========================================================= */

.site_preloader,
.site_reveal_curtain {
  display: none;
}

html.js:not(.preloader_seen) {
  overflow: hidden;
}

.js:not(.preloader_seen) .site_preloader,
.js:not(.preloader_seen) .site_reveal_curtain {
  position: fixed;
  inset: 0;
  display: block;
  overflow: hidden;
  background: var(--color_fondo);
  transform: translateY(0);
  pointer-events: auto;
}

.js:not(.preloader_seen) .site_preloader {
  z-index: 2001;
  display: grid;
  place-items: center;
}

.js:not(.preloader_seen) .site_reveal_curtain {
  z-index: 2000;
}

.preloader_failsafe .site_preloader,
.preloader_failsafe .site_reveal_curtain {
  visibility: hidden;
  pointer-events: none;
  transition: transform 800ms cubic-bezier(.77, 0, .18, 1), visibility 0s 800ms;
}

.preloader_failsafe .site_preloader {
  transform: translateY(-100%);
}

.preloader_failsafe .site_reveal_curtain {
  transform: translateY(100%);
}

.preloader_content {
  display: grid;
  place-items: center;
  width: min(18rem, calc(100% - 48px));
}

.preloader_logo {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  opacity: .26;
  transform: scale(.985);
  transform-origin: center;
}

.media_frame picture,
.media_frame img {
  width: 100%;
  height: 100%;
}

.media_frame img {
  display: block;
  object-fit: cover;
  transform-origin: center center;
}

[data-parallax] {
  overflow: hidden;
}

@media (hover: hover) and (pointer: fine) {

  .project_item .media_frame img,
  .portfolio_card .media_frame img,
  .article_card .media_frame img,
  .journal_feature .media_frame img,
  .featured_project .media_frame img {
    transition: transform 500ms cubic-bezier(.22, 1, .36, 1);
  }

  .project_item:hover .media_frame img,
  .portfolio_card:hover .media_frame img,
  .article_card:hover .media_frame img,
  .journal_feature:hover .media_frame img,
  .featured_project:hover .media_frame img {
    transform: scale(1.025);
  }

  .button,
  .nav_cta,
  .text_link,
  .index_row,
  .contact_option_grid a {
    transition-duration: 260ms;
    transition-timing-function: cubic-bezier(.22, 1, .36, 1);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .site_preloader,
  .site_reveal_curtain {
    display: none !important;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}


/* KEU 14.5 — Cortina de transición para el preloader */
/* Los títulos ganan aire vertical sin alterar escala, peso ni retícula. */


/* =========================================================
   KEU 14.3 — Identidad visual SVG
   ========================================================= */

@media (max-width: 620px) {
  .footer_brand_logo {
    width: 9.6rem;
    height: 2.65rem;
  }

  .preloader_content {
    width: min(15.5rem, calc(100% - 44px));
  }
}

/* =========================================================
   KEU 15 — Navegación móvil fija al viewport
   ========================================================= */

@media (max-width: 900px) {

  html.menu_open,
  body.menu_open {
    overflow: hidden;
    overscroll-behavior: none;
  }

  body.menu_open {
    touch-action: none;
  }

  body.menu_open::before {
    content: "";
    position: fixed;
    inset: var(--menu_header_offset, var(--altura_header)) 0 0;
    z-index: 1980;
    background: var(--color_fondo);
    animation: menu_cortina_entrada 420ms cubic-bezier(.77, 0, .18, 1) both;
  }

  .site_header {
    z-index: 1000;
  }

  .site_header .nav {
    width: 100%;
    padding-inline: 20px;
    grid-template-columns: auto 1fr;
  }

  .site_header .brand {
    justify-self: start;
  }

  .site_header .nav_actions {
    justify-self: end;
  }

  html.menu_open .site_header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    z-index: 2000;
  }

  .menu_toggle {
    position: relative;
    z-index: 2002;
    display: grid;
    place-content: center;
    gap: 6px;
    overflow: hidden;
    border-color: var(--color_borde_suave);
    background: var(--color_superficie);
    box-shadow: 0 8px 24px rgba(17, 17, 17, .06);
    transition:
      border-color 260ms cubic-bezier(.22, 1, .36, 1),
      background 260ms cubic-bezier(.22, 1, .36, 1),
      transform 260ms cubic-bezier(.22, 1, .36, 1);
  }

  .menu_toggle:hover {
    transform: translateY(-1px);
  }

  .menu_toggle span {
    width: 20px;
    height: 1.5px;
    transform-origin: center;
    transition:
      transform 360ms cubic-bezier(.22, 1, .36, 1),
      opacity 220ms ease;
  }

  .menu_toggle.is_active span:first-child {
    transform: translateY(3.75px) rotate(45deg);
  }

  .menu_toggle.is_active span:last-child {
    transform: translateY(-3.75px) rotate(-45deg);
  }

  .nav_links.mobile_nav_panel,
  .nav_links.mobile_nav_panel.is_open {
    position: fixed;
    top: var(--menu_header_offset, var(--altura_header));
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1990;
    display: flex;
    width: auto;
    height: auto;
    max-height: none;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 0;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    border: 0;
    border-radius: 0;
    background: var(--color_fondo);
    box-shadow: none;
    opacity: 1;
    visibility: hidden;
    transform: translateY(-100%);
    transform-origin: top center;
    pointer-events: none;
    transition:
      transform 480ms cubic-bezier(.77, 0, .18, 1),
      visibility 0s linear 480ms;
  }

  .nav_links.mobile_nav_panel.is_open {
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    transition-delay: 0s;
  }

  .nav_links.mobile_nav_panel::before {
    content: "Explora";
    display: block;
    padding: clamp(14px, 2.2vw, 18px) clamp(18px, 2.2vw, 24px);
    border-bottom: 1px solid var(--color_borde);
    background: var(--color_superficie_suave);
    color: var(--color_texto);
    font-size: .72rem;
    font-weight: 500;
    letter-spacing: .01em;
  }

  .nav_links.mobile_nav_panel>a {
    display: flex;
    min-height: 54px;
    padding: clamp(13px, 2.4vw, 17px) clamp(18px, 2.2vw, 24px);
    align-items: center;
    justify-content: flex-start;
    border-bottom: 1px solid var(--color_borde);
    border-radius: 0;
    background: transparent;
    color: var(--color_texto);
    font-size: clamp(1.2rem, 4.8vw, 1.65rem);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -.035em;
    opacity: 0;
    transform: translateY(12px);
    transition:
      background 220ms ease,
      color 220ms ease,
      opacity 360ms ease,
      transform 440ms cubic-bezier(.22, 1, .36, 1);
  }

  .nav_links.mobile_nav_panel>a::after {
    content: none;
  }

  .nav_links.mobile_nav_panel>a:hover,
  .nav_links.mobile_nav_panel>a:focus-visible,
  .nav_links.mobile_nav_panel>a[aria-current="page"] {
    background: rgba(255, 130, 0, .08);
    color: var(--color_naranja);
  }

  .nav_links.mobile_nav_panel>a[aria-current="page"] {
    font-weight: 700;
  }

  .nav_links.mobile_nav_panel.is_open>a {
    opacity: 1;
    transform: translateY(0);
  }

  .nav_links.mobile_nav_panel.is_open>a:nth-child(1) {
    transition-delay: 70ms;
  }

  .nav_links.mobile_nav_panel.is_open>a:nth-child(2) {
    transition-delay: 110ms;
  }

  .nav_links.mobile_nav_panel.is_open>a:nth-child(3) {
    transition-delay: 150ms;
  }

  .nav_links.mobile_nav_panel.is_open>a:nth-child(4) {
    transition-delay: 190ms;
  }

  .nav_links.mobile_nav_panel.is_open>a:nth-child(5) {
    transition-delay: 230ms;
  }

  .nav_links.mobile_nav_panel.is_open>a:nth-child(6) {
    transition-delay: 270ms;
  }

  .nav_links.mobile_nav_panel>a:last-of-type {
    border-bottom: 0;
  }

  /* Accesos compactos de contacto al pie del menú móvil. */
  .mobile_nav_social {
    display: grid;
    margin-top: auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid var(--color_borde);
    background: var(--color_superficie_suave);
    opacity: 0;
    transform: translateY(10px);
    transition:
      opacity 320ms ease,
      transform 400ms cubic-bezier(.22, 1, .36, 1);
  }

  .nav_links.mobile_nav_panel.is_open .mobile_nav_social {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 310ms;
  }

  .nav_links.mobile_nav_panel .mobile_nav_social a {
    display: flex;
    min-width: 0;
    min-height: 50px;
    padding: 13px 10px;
    align-items: center;
    justify-content: center;
    border-right: 1px solid var(--color_borde);
    background: transparent;
    color: var(--color_texto);
    font-size: clamp(.72rem, 2.5vw, .84rem);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0;
    text-align: center;
    opacity: 1;
    transform: none;
    transition: background 220ms ease, color 220ms ease;
  }

  .nav_links.mobile_nav_panel .mobile_nav_social a:last-child {
    border-right: 0;
  }

  .nav_links.mobile_nav_panel .mobile_nav_social a:hover,
  .nav_links.mobile_nav_panel .mobile_nav_social a:focus-visible {
    background: rgba(255, 130, 0, .10);
    color: var(--color_naranja);
  }

  @keyframes menu_cortina_entrada {
    from {
      transform: translateY(-100%);
    }

    to {
      transform: translateY(0);
    }
  }
}

@media (max-width: 640px) {
  .site_header .nav {
    width: 100%;
    padding-inline: 12px;
  }

  .nav_links.mobile_nav_panel,
  .nav_links.mobile_nav_panel.is_open {
    top: var(--menu_header_offset, var(--altura_header));
    right: 0;
    bottom: 0;
    left: 0;
    padding: 0;
  }

  .nav_links.mobile_nav_panel>a {
    min-height: 52px;
    font-size: clamp(1.16rem, 5.8vw, 1.5rem);
  }
}

@media (prefers-reduced-motion: reduce) and (max-width: 900px) {

  body.menu_open::before,
  .nav_links.mobile_nav_panel,
  .nav_links.mobile_nav_panel a,
  .menu_toggle span {
    animation: none !important;
    transition: none !important;
  }
}

/* Privacidad, documentos legales y cierre de contratación */
.privacy_banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 1200;
}

.privacy_banner[hidden] {
  display: none;
}

.privacy_banner_inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  width: min(960px, 100%);
  margin: 0 auto;
  padding: 22px;
  border: 1px solid var(--color_borde_suave);
  border-radius: var(--radio_panel);
  background: var(--color_superficie);
  box-shadow: 0 22px 60px rgba(34, 34, 34, .18);
}

.privacy_banner_title {
  margin: 0 0 7px;
  color: var(--color_texto);
  font-weight: 700;
}

.privacy_banner p {
  margin: 0;
  max-width: 48rem;
  font-size: .82rem;
  line-height: 1.55;
}

.privacy_banner a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy_banner_actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer_legal_links {
  display: flex;
  gap: 8px 18px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .15);
}

.footer_legal_links a,
.footer_privacy_button {
  color: #ffffff;
  font-size: .72rem;
  line-height: 1.4;
  text-decoration: none;
}

.footer_privacy_button {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.footer_legal_links a:hover,
.footer_legal_links a:focus-visible,
.footer_privacy_button:hover,
.footer_privacy_button:focus-visible {
  text-underline-offset: 3px;
}

.checkout_legal {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--color_borde);
  font-size: .76rem;
  line-height: 1.55;
}

.checkout_legal h3 {
  margin: 0 0 8px;
  font-size: .9rem;
}

.checkout_legal p {
  margin: 0 0 8px;
}

.checkout_legal_links {
  display: flex;
  gap: 8px 14px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.checkout_legal_links a,
.check_field a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal_version {
  display: block;
  margin: -8px 0 18px 30px;
  color: var(--color_texto_suave);
  font-size: .7rem;
}

.legal_scope h2 {
  max-width: none;
}

.legal_scope h3 {
  margin: 30px 0 10px;
  font-size: 1.15rem;
}

.legal_scope ul,
.legal_scope ol {
  padding-left: 1.25rem;
}

.legal_scope li+li {
  margin-top: 8px;
}

.legal_scope a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 760px) {
  .privacy_banner {
    right: 10px;
    bottom: 10px;
    left: 10px;
  }

  .privacy_banner_inner {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 18px;
  }

  .privacy_banner_actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .privacy_banner_actions .button {
    width: 100%;
  }

  .footer_legal_links {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Kälida Espacios — capa catálogo estático KE-Espacios 001 */
.brand_logo_espacios{width:168px;height:auto;max-height:52px;object-fit:contain}.footer_logo_espacios{width:200px;height:auto}.catalog_hero{padding:84px 0 56px}.catalog_hero_grid{display:grid;grid-template-columns:minmax(0,1fr) auto;gap:48px;align-items:end}.catalog_hero p{max-width:720px;font-size:1.02rem}.catalog_count{display:flex;align-items:baseline;gap:8px;padding-bottom:8px}.catalog_count strong{font-size:2.7rem;letter-spacing:-.05em}.catalog_count span{color:#666}.catalog_section{padding:48px 0 96px}.catalog_tools{display:grid;grid-template-columns:minmax(240px,1fr) minmax(180px,240px) auto;gap:16px;align-items:end;margin-bottom:32px}.catalog_tools label{display:grid;gap:7px;font-size:.82rem;font-weight:600}.catalog_tools input,.catalog_tools select{width:100%;min-height:46px;border:1px solid var(--color_borde);border-radius:var(--radio_campo);background:var(--color_superficie);padding:0 13px;color:var(--color_texto)}.catalog_result{padding-bottom:13px;color:#666;font-size:.9rem}.product_grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:28px 18px}.product_card{min-width:0}.product_card_media{display:block;overflow:hidden;border-radius:var(--radio_media);background:var(--color_superficie_suave);aspect-ratio:1/1}.product_card_media img{width:100%;height:100%;object-fit:cover;transition:transform 350ms ease}.product_card:hover .product_card_media img{transform:scale(1.025)}.product_card_body{padding:14px 2px 0}.product_card_body h3{margin:6px 0 12px;font-size:1.12rem}.product_card_meta{display:flex;justify-content:space-between;gap:12px;align-items:flex-start;font-size:.9rem}.product_card_meta strong{font-weight:600}.product_card_meta span{color:#6a6a65;text-align:right}.product_placeholder{display:grid;width:100%;height:100%;place-items:center;background:linear-gradient(135deg,#e8e7e2,#d5d2ca);font-size:4rem;font-weight:700;color:rgba(53,27,52,.25)}.product_placeholder_large{min-height:560px}.catalog_empty{padding:32px 0;color:#666}.breadcrumbs{display:flex;gap:10px;align-items:center;flex-wrap:wrap;padding-top:26px;color:#6a6a65;font-size:.82rem}.breadcrumbs a:last-child{color:var(--color_texto)}.product_detail{padding:38px 0 96px}.product_detail_grid{display:grid;grid-template-columns:minmax(0,1.15fr) minmax(360px,.85fr);gap:64px;align-items:start}.product_gallery{min-width:0}.product_gallery_main{overflow:hidden;border-radius:var(--radio_panel);background:var(--color_superficie_suave);aspect-ratio:1/1}.product_gallery_main img{width:100%;height:100%;object-fit:cover}.product_thumbs{display:grid;grid-template-columns:repeat(5,1fr);gap:8px;margin-top:10px}.product_thumbs button{padding:0;border:1px solid transparent;border-radius:10px;overflow:hidden;background:transparent;aspect-ratio:1}.product_thumbs button:hover,.product_thumbs button:focus-visible{border-color:var(--color_texto)}.product_thumbs img{width:100%;height:100%;object-fit:cover}.product_summary{position:sticky;top:calc(var(--altura_header) + 26px)}.product_summary h1{margin:10px 0 18px;font-size:clamp(2.1rem,3.2vw,3.35rem)}.product_price{font-size:1.45rem;font-weight:700;margin-bottom:10px}.availability{display:inline-flex;padding:7px 10px;border-radius:999px;margin-bottom:24px;font-size:.8rem;font-weight:700}.availability.is_in{background:#e4f2e7;color:#206336}.availability.is_out{background:#eee9e4;color:#795135}.product_rich_copy{font-size:1rem;line-height:1.65}.product_actions{display:flex;gap:10px;flex-wrap:wrap;margin:28px 0 14px}.product_sku{font-size:.82rem;color:#777}.spec_list{margin:24px 0 0;border-top:1px solid var(--color_borde)}.spec_list>div{display:grid;grid-template-columns:145px 1fr;gap:18px;padding:12px 0;border-bottom:1px solid var(--color_borde)}.spec_list dt{font-weight:600}.spec_list dd{margin:0;color:#666}.product_info{padding:72px 0 88px}.product_content{max-width:800px}.variant_details{margin-top:28px;border-top:1px solid var(--color_borde);border-bottom:1px solid var(--color_borde);padding:18px 0}.variant_details summary{cursor:pointer;font-weight:700}.table_scroll{overflow:auto;margin-top:18px}.variant_details table{width:100%;border-collapse:collapse;font-size:.9rem}.variant_details th,.variant_details td{text-align:left;padding:10px;border-bottom:1px solid var(--color_borde)}.home_hero_espacios{padding:70px 0 84px}.home_hero_espacios .hero_grid{margin-bottom:42px}.home_hero_media{position:relative;display:block;overflow:hidden;isolation:isolate;border-radius:var(--radio_panel);height:min(64vw,720px);min-height:440px;background:#ddd}.home_hero_media img{width:100%;height:100%;object-fit:cover;border-radius:inherit}.home_hero_media::after{content:"";position:absolute;inset:0;background:linear-gradient(90deg,rgba(17,17,17,.18),transparent 50%);pointer-events:none}.category_feature_grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}.category_feature{display:block}.category_feature_media{overflow:hidden;border-radius:var(--radio_media);aspect-ratio:4/5;background:var(--color_superficie_suave)}.category_feature_media img{width:100%;height:100%;object-fit:cover;transition:transform 350ms ease}.category_feature:hover img{transform:scale(1.025)}.category_feature h3{margin:13px 0 4px}.category_feature p{color:#666}.benefit_grid{display:grid;grid-template-columns:repeat(3,1fr);gap:28px}.benefit_grid article{padding-top:22px;border-top:1px solid var(--color_borde)}.home_band{padding:88px 0}.home_band_dark{background:var(--color_berenjena);color:#fff}.home_band_dark h2,.home_band_dark h3{color:#fff}.home_band_dark .process_preview_grid article{border-color:rgba(255,255,255,.22)}.contact_grid{display:grid;grid-template-columns:1fr 1fr;gap:56px;padding:80px 0 100px}.contact_channels{display:grid;gap:12px}.contact_channel{display:flex;justify-content:space-between;gap:18px;padding:16px 0;border-bottom:1px solid var(--color_borde)}.legal_page{padding:72px 0 104px}.legal_page .rich_copy{max-width:900px}.legal_page .rich_copy h2,.legal_page .rich_copy h3{margin-top:2rem}.site_notice{padding:16px 0;background:#fff3df;border-bottom:1px solid rgba(119,90,10,.16);font-size:.9rem}.site_notice .wrap{display:flex;justify-content:space-between;gap:18px}.footer_privacy_button{display:none!important}
@media(max-width:1100px){.product_grid{grid-template-columns:repeat(3,minmax(0,1fr))}.product_detail_grid{gap:38px}.category_feature_grid{grid-template-columns:repeat(3,1fr)}}
@media(max-width:900px){.catalog_hero{padding:56px 0 38px}.catalog_hero_grid{grid-template-columns:1fr;gap:18px}.catalog_count{display:none}.catalog_tools{grid-template-columns:1fr 1fr}.catalog_result{grid-column:1/-1;padding:0}.product_grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:24px 12px}.product_detail_grid{grid-template-columns:1fr}.product_summary{position:static}.product_placeholder_large{min-height:0}.home_hero_espacios{padding:48px 0 60px}.home_hero_media{height:62vw;min-height:360px}.category_feature_grid,.benefit_grid{grid-template-columns:1fr}.contact_grid{grid-template-columns:1fr;gap:28px}.spec_list>div{grid-template-columns:1fr;gap:3px}}
@media(max-width:640px){.product_grid{grid-template-columns:1fr 1fr}.product_card_body h3{font-size:1rem}.product_card_meta{display:grid;gap:3px}.product_card_meta span{text-align:left}.catalog_tools{grid-template-columns:1fr}.product_thumbs{grid-template-columns:repeat(4,1fr)}.home_hero_media{height:72vw;min-height:320px}.product_actions .button{width:100%;justify-content:center}.legal_page{padding-top:48px}}

/* KE-Espacios 001 — simplificación del menú móvil sin GSAP ni portal de navegación */
@media (max-width:900px){
  body.menu_open::before{display:none!important}
  .site_header{z-index:1200}
  .nav_links.is_open{z-index:1201}
}


/* ==========================================================
   KE-Espacios 002 — refinamiento visual
   Paleta propia de Espacios: naranja Kälida #ff8200
   ========================================================== */
:root {
  --color_acento: var(--color_naranja);
  --color_acento_suave: rgba(255, 130, 0, .10);
  --color_acento_medio: rgba(255, 130, 0, .18);
  --color_acento_borde: rgba(255, 130, 0, .34);
  --color_texto_suave: #6a6762;
}

/* Acento de marca: navegación y enlaces clave */
.nav_links a::after {
  height: 2px;
  bottom: 2px;
  background: var(--color_acento);
}

.nav_links a:hover,
.nav_links a[aria-current="page"] {
  color: var(--color_texto);
}

.text_link {
  border-bottom-color: rgba(17, 17, 17, .55);
  transition: color var(--transicion), border-color var(--transicion);
}

.text_link:hover,
.text_link:focus-visible {
  color: var(--color_acento);
  border-bottom-color: var(--color_acento);
}

/* Acento editorial reservado a section markers; kicker y micro labels permanecen neutros */
.catalog_section .section_marker,
.home_band:not(.home_band_dark) .section_marker {
  color: var(--color_acento);
  font-weight: 600;
}

/* Header más fino y premium sin perder el lenguaje de Proyectos */
.site_header {
  background: rgba(244, 244, 241, .97);
  box-shadow: 0 1px 0 rgba(17, 17, 17, .035);
}

.nav_cta {
  box-shadow: 0 5px 18px rgba(17, 17, 17, .08);
}

.nav_cta:hover,
.nav_cta:focus-visible {
  box-shadow: 0 10px 26px rgba(17, 17, 17, .16);
}

/* Home: fotografía protagonista y ritmo editorial */
.home_hero_espacios {
  padding-top: 76px;
}

.home_hero_media {
  border: 1px solid rgba(17, 17, 17, .06);
  box-shadow: 0 18px 50px rgba(17, 17, 17, .055);
}

.home_hero_media::after {
  background: linear-gradient(90deg, rgba(17,17,17,.09), transparent 45%);
}

.home_hero_espacios .hero_summary p {
  color: var(--color_texto_suave);
  font-size: 1.02rem;
}

/* Producto destacado y categorías: más sensación de catálogo editorial */
.product_card {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.product_card_media {
  position: relative;
  border: 1px solid rgba(17, 17, 17, .055);
  background: #ebe9e3;
  box-shadow: 0 1px 0 rgba(255,255,255,.65) inset;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.product_card:hover .product_card_media,
.product_card:focus-within .product_card_media {
  transform: translateY(-3px);
  border-color: var(--color_acento_borde);
  box-shadow: 0 16px 36px rgba(17, 17, 17, .08);
}

.product_card:hover .product_card_media img {
  transform: scale(1.035);
}

.product_card_body {
  display: flex;
  min-height: 122px;
  padding: 13px 3px 0;
  flex: 1;
  flex-direction: column;
}

.product_card_body .micro_label {
  color: #77736e;
  font-size: .69rem;
  font-weight: 500;
}

.product_card_body h3 {
  margin: 5px 0 10px;
  font-size: 1.07rem;
  line-height: 1.13;
}

.product_card_body h3 a {
  transition: color var(--transicion);
}

.product_card:hover h3 a,
.product_card:focus-within h3 a {
  color: #ff8200;
}

.product_card_meta {
  margin-top: auto;
  padding-top: 9px;
  border-top: 1px solid var(--color_borde_suave);
  font-size: .81rem;
}

.product_card_meta strong {
  color: var(--color_texto);
  font-weight: 700;
}

.product_card_meta span {
  color: #77736e;
  font-size: .76rem;
}

.product_placeholder {
  background:
    radial-gradient(circle at 50% 42%, rgba(255,255,255,.78), transparent 27%),
    linear-gradient(145deg, #efeee9, #dedbd4);
  color: rgba(255, 130, 0, .43);
  font-size: 3.65rem;
  letter-spacing: -.08em;
  text-shadow: 0 1px 0 rgba(255,255,255,.75);
}

.category_feature {
  padding-bottom: 4px;
}

.category_feature_media {
  border: 1px solid rgba(17,17,17,.055);
  box-shadow: 0 12px 34px rgba(17,17,17,.045);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.category_feature:hover .category_feature_media,
.category_feature:focus-visible .category_feature_media {
  transform: translateY(-3px);
  border-color: var(--color_acento_borde);
  box-shadow: 0 18px 42px rgba(17,17,17,.075);
}

.category_feature h3 {
  position: relative;
  display: inline-block;
  margin: 13px 0 10px;
}

.category_feature h3::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -4px;
  height: 2px;
  background: var(--color_acento);
  transition: right 220ms ease;
}

.category_feature:hover h3::after,
.category_feature:focus-visible h3::after {
  right: 0;
}

.category_feature p {
  max-width: 34rem;
  color: var(--color_texto_suave);
}

/* Beneficios: acento pequeño, no invasivo */
.benefit_grid article {
  position: relative;
  padding-top: 26px;
  border-top-color: rgba(17,17,17,.10);
}

.benefit_grid article::before {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  width: 42px;
  height: 2px;
  background: var(--color_acento);
}

/* Proceso: sustituye berenjena por naranja y corrige el bloque blanco sin contenido */
.home_band_dark {
  background: var(--color_acento);
  color: var(--color_texto);
}

.home_band_dark h2,
.home_band_dark h3,
.home_band_dark p,
.home_band_dark .section_marker,
.home_band_dark .micro_label {
  color: var(--color_texto);
}

.home_band_dark .section_header {
  margin-bottom: 34px;
}

.home_band_dark .process_preview_grid {
  overflow: visible;
  gap: 12px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.home_band_dark .process_preview_grid article {
  min-height: 214px;
  padding: 26px 26px 30px;
  border: 1px solid rgba(17,17,17,.11);
  border-radius: var(--radio_tarjeta);
  background: rgba(255,255,255,.94);
  box-shadow: 0 10px 28px rgba(17,17,17,.055);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.home_band_dark .process_preview_grid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(17,17,17,.10);
}

.home_band_dark .process_preview_grid article > span {
  display: inline-grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 999px;
  background: var(--color_negro);
  color: #fff;
  font-size: .69rem;
  font-weight: 700;
}

.home_band_dark .process_preview_grid h3 {
  margin-top: 26px;
}

.home_band_dark .process_preview_grid p {
  color: var(--color_texto_suave);
}

/* Cierre: conserva el negro para que el naranja funcione como acento y no como relleno repetido */
.closing_cta .wrap {
  border: 1px solid rgba(255,255,255,.045);
  box-shadow: 0 16px 42px rgba(17,17,17,.09);
}

.closing_cta .micro_label {
  color: #ffffff;
}

.closing_cta .button_white:hover,
.closing_cta .button_white:focus-visible {
  background: var(--color_acento);
  color: var(--color_texto);
}

/* Catálogo: controles y encabezados con mayor limpieza */
.catalog_hero {
  padding-top: 76px;
}

.catalog_hero h1 {
  margin: 8px 0 18px;
}

.catalog_hero p {
  max-width: 760px;
  color: var(--color_texto_suave);
  font-size: 1.02rem;
}

.catalog_count strong {
  color: var(--color_texto);
}

.catalog_count::before {
  content: "";
  width: 28px;
  height: 2px;
  margin-right: 4px;
  align-self: center;
  background: var(--color_acento);
}

.catalog_tools {
  padding: 18px;
  border: 1px solid var(--color_borde_suave);
  border-radius: var(--radio_tarjeta);
  background: rgba(255,255,255,.46);
}

.catalog_tools label > span {
  color: #55524e;
}

.catalog_tools input,
.catalog_tools select {
  border-color: rgba(17,17,17,.13);
  box-shadow: 0 1px 0 rgba(255,255,255,.7) inset;
  transition: border-color var(--transicion), box-shadow var(--transicion), background var(--transicion);
}

.catalog_tools input:hover,
.catalog_tools select:hover {
  border-color: rgba(17,17,17,.22);
}

.catalog_tools input:focus,
.catalog_tools select:focus {
  outline: none;
  border-color: var(--color_acento);
  box-shadow: 0 0 0 3px var(--color_acento_suave);
  background: #fff;
}

.catalog_result {
  color: #77736e;
}

.breadcrumbs {
  color: #77736e;
}

.breadcrumbs a:hover,
.breadcrumbs a:focus-visible {
  color: var(--color_acento);
}

/* Ficha de producto */
.product_gallery_main {
  border: 1px solid rgba(17,17,17,.055);
  box-shadow: 0 16px 44px rgba(17,17,17,.055);
}

.product_summary > .micro_label {
  color: var(--color_texto);
  font-weight: 500;
}

.product_price {
  color: var(--color_texto);
}

.product_thumbs button:hover,
.product_thumbs button:focus-visible {
  border-color: var(--color_acento);
}

.spec_list > div {
  transition: background var(--transicion);
}

.spec_list > div:hover {
  background: rgba(255,130,0,.035);
}

.variant_details summary:hover,
.variant_details summary:focus-visible {
  color: #cc6800;
}

/* Contacto: misma sobriedad, mejor jerarquía */
.contact_grid {
  gap: clamp(48px, 7vw, 92px);
}

.contact_grid h1 {
  margin: 8px 0 30px;
}

.contact_grid > div:first-child > p {
  max-width: 38rem;
  color: var(--color_texto_suave);
  font-size: 1.05rem;
}

.contact_channels {
  border-top: 2px solid var(--color_acento);
}

.contact_channel {
  padding: 19px 0;
  transition: background var(--transicion), padding var(--transicion);
}

.contact_channel:hover {
  padding-left: 8px;
  padding-right: 8px;
  background: rgba(255,130,0,.035);
}

.contact_channel strong,
.contact_channel a {
  transition: color var(--transicion);
}

.contact_channel:hover strong,
.contact_channel:hover a {
  color: #cc6800;
}

/* Legales: lectura más cómoda y acentos discretos */
.legal_page {
  padding-top: 76px;
}

.legal_page h1 {
  max-width: 23ch;
  margin: 8px 0 34px;
}

.legal_page .rich_copy {
  max-width: 860px;
  font-size: 1rem;
  line-height: 1.68;
}

.legal_page .rich_copy p,
.legal_page .rich_copy li {
  line-height: 1.68;
}

.legal_page .rich_copy h2,
.legal_page .rich_copy h3 {
  margin-top: 2.35rem;
  letter-spacing: -.03em;
}

.legal_page .rich_copy li::marker {
  color: var(--color_acento);
}

.legal_page .rich_copy a {
  color: #b95f00;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

/* Footer: más refinado, con naranja en interacción */
.footer_nav a,
.footer_legal_links a {
  transition: color var(--transicion);
}

.footer_nav a:hover,
.footer_nav a:focus-visible,
.footer_legal_links a:hover,
.footer_legal_links a:focus-visible {
  color: var(--color_acento);
}

.footer_nav h2 {
  color: #fff;
}

/* Menú móvil: reemplaza definitivamente el coral heredado */
@media (max-width: 900px) {
  .nav_links.mobile_nav_panel > a:hover,
  .nav_links.mobile_nav_panel > a:focus-visible,
  .nav_links.mobile_nav_panel > a[aria-current="page"] {
    background: var(--color_acento_suave);
    color: #c86400;
  }

  .nav_links.mobile_nav_panel .mobile_nav_social a:hover,
  .nav_links.mobile_nav_panel .mobile_nav_social a:focus-visible {
    background: var(--color_acento_suave);
    color: #c86400;
  }

  .home_band_dark .process_preview_grid {
    grid-template-columns: 1fr 1fr;
  }

  .home_band_dark .process_preview_grid article,
  .home_band_dark .process_preview_grid article:nth-child(2),
  .home_band_dark .process_preview_grid article:nth-child(-n+2) {
    border: 1px solid rgba(17,17,17,.11);
  }
}

@media (max-width: 640px) {
  .home_hero_espacios {
    padding-top: 50px;
  }

  .catalog_tools {
    padding: 14px;
  }

  .product_card_body {
    min-height: 0;
  }

  .product_card_body h3 {
    font-size: .98rem;
  }

  .product_card_meta {
    gap: 4px;
  }

  .home_band_dark .process_preview_grid {
    grid-template-columns: 1fr;
  }

  .home_band_dark .process_preview_grid article {
    min-height: 0;
  }

  .contact_channels {
    margin-top: 10px;
  }

  .legal_page .rich_copy {
    font-size: .97rem;
  }
}


/* =========================================================
   KÄLIDA ESPACIOS 004 — refinamientos de catálogo y producto
   ========================================================= */

.breadcrumbs {
  padding: 26px 0;
}

.catalog_hero {
  padding: 84px 0 20px;
}

.product_card_body h3 {
  line-height: 1.4;
}

.product_summary h1 {
  line-height: 1.12;
}

.product_detail_grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 64px;
}

.catalog_tools {
  grid-template-columns: minmax(240px, 1fr) minmax(180px, 220px) minmax(180px, 220px) auto;
}

@media (max-width: 1100px) {
  .product_detail_grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 38px;
  }
}

@media (max-width: 900px) {
  .catalog_hero {
    padding-top: 20px;
  }

  .catalog_tools {
    grid-template-columns: 1fr 1fr;
  }

  .product_detail_grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .product_card_body h3 {
    line-height: 1.4;
  }

  .catalog_tools {
    grid-template-columns: 1fr;
  }
}


/* =========================================================
   KÄLIDA ESPACIOS 006 — información de producto compacta
   ========================================================= */

.product_info_grid {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: 56px;
  align-items: start;
  padding: 44px;
  border: 1px solid var(--color_borde_suave);
  border-radius: var(--radio_panel);
  background: var(--color_superficie);
  box-shadow: var(--sombra_tarjeta);
}

.product_info_grid > h2 {
  max-width: 12ch;
  margin: 0;
}

.product_info_body {
  min-width: 0;
}

.product_info_body .product_content {
  max-width: 100%;
}

.product_info_body .variant_details {
  margin-top: 28px;
}

@media (max-width: 900px) {
  .product_info_grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 34px;
  }

  .product_info_grid > h2 {
    max-width: 16ch;
  }
}

@media (max-width: 640px) {
  .product_info {
    padding: 52px 0 64px;
  }

  .product_info_grid {
    padding: 26px 22px;
  }
}

/* ==========================================================
   KE-Espacios 007 — capa funcional: preloader y privacidad
   ========================================================== */
.footer_privacy_button {
  display: inline-flex !important;
  align-items: center;
  color: rgba(255, 255, 255, .78);
  transition: color var(--transicion);
}

.footer_privacy_button:hover,
.footer_privacy_button:focus-visible {
  color: var(--color_naranja);
  text-decoration: underline;
}

.preloader_content {
  width: min(13.5rem, calc(100% - 48px));
}

.preloader_logo {
  width: 100%;
  height: auto;
}

.privacy_banner_inner {
  border-color: rgba(255, 130, 0, .18);
}

.privacy_banner a:hover,
.privacy_banner a:focus-visible {
  color: var(--color_naranja);
}

@media (max-width: 620px) {
  .preloader_content {
    width: min(12rem, calc(100% - 44px));
  }
}
