/* ==========================================================================
   LefTraru Strategies - Diseño AUDAZ
   Inspirado en la geometría Mapuche y tipografía blackletter del logo
   ========================================================================== */

@import url("variables.css");

/* ==========================================================================
   RESET
   ========================================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--negro);
  background: var(--blanco);
  overflow-x: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}
ul,
ol {
  list-style: none;
}

/* ==========================================================================
   CONTAINER
   ========================================================================== */

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ==========================================================================
   NAVEGACIÓN - Minimalista pero con PRESENCIA
   ========================================================================== */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: var(--z-nav);
  padding: var(--space-3) 0;
  background: var(--blanco);
  transition:
    padding 0.6s cubic-bezier(0.25, 0.1, 0.25, 1),
    background 0.6s cubic-bezier(0.25, 0.1, 0.25, 1),
    box-shadow 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.nav--scrolled {
  background: rgba(253, 251, 247, 0.98);
  backdrop-filter: blur(20px);
  padding: var(--space-2) 0;
  box-shadow: var(--shadow-nav);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  height: 36px;
  width: auto;
  transition: opacity var(--duration-fast);
}

.nav__links {
  display: none;
  gap: var(--space-8);
}

@media (min-width: 900px) {
  .nav__links {
    display: flex;
  }
}

.nav__link {
  font-family: var(--font-accent);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--negro);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-sm);
  transition: all var(--duration-fast);
}

.nav__link:hover,
.nav__link[aria-current="page"] {
  color: var(--naranja);
}

.nav__link:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

.nav__cta {
  font-family: var(--font-accent);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: var(--space-3) var(--space-6);
  min-height: var(--btn-min-height);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--naranja);
  border-radius: var(--radius-sm);
  color: var(--naranja);
  transition: all var(--duration-fast);
}

.nav__cta:hover {
  background: var(--naranja);
  border-color: var(--naranja);
  color: var(--blanco);
}

.nav__cta:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

/* Toggle móvil */
.nav__toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-3);
  min-width: var(--btn-min-width);
  min-height: var(--btn-min-height);
  justify-content: center;
  align-items: center;
  border-radius: var(--radius-sm);
  z-index: 10;
  transition: background var(--duration-fast);
}

.nav__toggle:hover {
  background: rgba(0, 0, 0, 0.05);
}

.nav__toggle:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

@media (min-width: 900px) {
  .nav__toggle {
    display: none;
  }
}

.nav__toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--negro);
  transition: all var(--duration-fast) var(--ease-out);
}

.nav__toggle--active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__toggle--active span:nth-child(2) {
  opacity: 0;
}

.nav__toggle--active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav overlay */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(20px);
  z-index: calc(var(--z-nav) - 1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-10);
  opacity: 0;
  visibility: hidden;
  transition: all var(--duration-slow) var(--ease-out);
}

.mobile-nav--active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav__list {
  display: flex;
  flex-direction: column;
  list-style: none;
  margin: 0;
  padding: 0;
  border-left: 2px solid var(--naranja);
  padding-left: var(--space-6);
}

.mobile-nav__link {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 600;
  font-style: normal;
  color: var(--blanco);
  margin-bottom: var(--space-5);
  padding: var(--space-2) 0;
  position: relative;
  opacity: 0;
  transform: translateX(-30px);
  transition: all var(--duration-base) var(--ease-out);
}

.mobile-nav__link::before {
  content: "";
  position: absolute;
  left: calc(-1 * var(--space-6) - 2px);
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 2px;
  background: var(--naranja);
  transition: width 0.3s var(--ease-out);
}

.mobile-nav__link:hover::before,
.mobile-nav__link[aria-current="page"]::before {
  width: var(--space-4);
}

.mobile-nav__link:focus-visible {
  outline: none;
  color: var(--naranja);
}

.mobile-nav--active .mobile-nav__link {
  opacity: 1;
  transform: translateX(0);
}

.mobile-nav--active li:nth-child(1) .mobile-nav__link {
  transition-delay: 100ms;
}
.mobile-nav--active li:nth-child(2) .mobile-nav__link {
  transition-delay: 150ms;
}
.mobile-nav--active li:nth-child(3) .mobile-nav__link {
  transition-delay: 200ms;
}
.mobile-nav--active li:nth-child(4) .mobile-nav__link {
  transition-delay: 250ms;
}
.mobile-nav--active li:nth-child(5) .mobile-nav__link {
  transition-delay: 300ms;
}

.mobile-nav__link:hover {
  color: var(--naranja);
}

/* ==========================================================================
   HERO - Question-driven, provocative
   ========================================================================== */

main {
  padding-top: var(--header-height);
}

/* Evitar que nav fixed tape contenido al hacer scroll */
section {
  scroll-margin-top: 70px;
}

/* El hero no necesita scroll-margin porque tiene margin-top negativo */
.hero {
  scroll-margin-top: 0;
}

/* ==========================================================================
   HERO - Inspired by premisterlin.com
   Centered layout, dramatic typography, clean
   ========================================================================== */

.hero {
  min-height: 100vh;
  min-height: 100dvh;
  margin-top: calc(-1 * var(--header-height));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  text-align: center;
}

/* Laptops: tighter hero to reduce empty space */
@media (min-width: 1024px) {
  .hero {
    min-height: 92vh;
    min-height: 92dvh;
  }
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(70%) brightness(0.55);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.4) 0%,
    rgba(10, 10, 10, 0.6) 100%
  );
  mix-blend-mode: multiply;
}

.hero__overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(214, 76, 41, 0.25);
  mix-blend-mode: color;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}

.hero__content {
  max-width: 90%;
  padding: calc(var(--header-height) + var(--space-2)) var(--space-6)
    var(--space-4);
}

.hero__eyebrow {
  font-family: var(--font-accent);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dorado);
  margin-bottom: var(--space-6);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 9vw, 5.5rem);
  font-weight: 700;
  font-style: normal;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--blanco);
  margin-bottom: var(--space-4);
}

.hero__subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 500;
  font-style: italic;
  color: var(--dorado);
  margin-bottom: var(--space-6);
}

.hero__intro {
  font-size: var(--text-base);
  color: var(--blanco-80);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto var(--space-6);
}

.hero__scroll {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-accent);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blanco-60);
  padding: var(--space-4) var(--space-8);
  min-height: var(--btn-min-height);
  border: 1px solid var(--blanco-30);
  border-radius: var(--radius-sm);
  transition: all var(--duration-fast);
}

.hero__scroll:hover {
  color: var(--blanco);
  border-color: var(--blanco);
  background: var(--blanco-05);
}

.hero__scroll:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring-light);
}

/* ==========================================================================
   WHAT I DO - Dark section with image background
   ========================================================================== */

.whatido {
  padding: var(--space-8) 0;
  background: var(--negro);
  position: relative;
}

.whatido .container {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  justify-content: center;
  max-width: 1000px;
}

.whatido__icon {
  flex-shrink: 0;
  width: 240px;
  height: 240px;
  color: var(--blanco);
  opacity: 0.25;
  display: block;
  align-self: center;
}

.whatido__content {
  flex: 1;
  max-width: 650px;
}

.whatido__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  font-style: normal;
  letter-spacing: -0.02em;
  color: var(--blanco);
  margin-bottom: var(--space-5);
}

.whatido__lead {
  font-family: var(--font-accent);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--naranja);
  margin-bottom: var(--space-4);
}

.whatido__desc {
  font-size: var(--text-base);
  color: var(--blanco-70);
  margin-bottom: 0;
}

/* ==========================================================================
   SERVICES EDITORIAL - Full-width strips (Dark theme)
   ========================================================================== */

.services-editorial {
  background: var(--negro);
  padding: var(--space-8) 0 var(--space-14);
}

.services-editorial__header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.services-editorial__label {
  font-family: var(--font-accent);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--naranja);
  margin-bottom: var(--space-3);
}

.services-editorial__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--blanco);
}

.services-editorial__title em {
  font-style: italic;
  color: var(--dorado);
}

.service-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  padding: var(--space-6) var(--gutter);
  max-width: var(--container-max);
  margin: 0 auto;
  border-bottom: var(--border-subtle);
  border-radius: var(--radius-md);
  transition: all var(--duration-base) var(--ease-out);
  position: relative;
}

.service-strip:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring-light);
}

@media (min-width: 900px) {
  .service-strip {
    grid-template-columns: 80px 1fr 60px;
    gap: var(--space-8);
    padding: var(--space-8) var(--space-10);
    align-items: center;
  }
}

.service-strip::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: var(--naranja);
  transition: width var(--duration-base) var(--ease-out);
}

.service-strip:hover::before {
  width: 4px;
}

.service-strip:hover {
  background: rgba(214, 76, 41, 0.08);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 0 60px rgba(214, 76, 41, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.service-strip__number {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 700;
  font-style: italic;
  color: var(--naranja);
  opacity: 0.25;
  line-height: 1;
  transition: all var(--duration-base);
}

.service-strip:hover .service-strip__number {
  opacity: 0.5;
  transform: translateX(10px);
}

.service-strip__content {
  max-width: 600px;
}

.service-strip__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 600;
  font-style: italic;
  color: var(--blanco);
  margin-bottom: var(--space-2);
  transition: color var(--duration-fast);
}

.service-strip:hover .service-strip__title {
  color: var(--dorado);
}

.service-strip__desc {
  font-size: var(--text-base);
  color: var(--blanco-70);
  line-height: 1.7;
}

.service-strip__arrow {
  display: none;
}

@media (min-width: 900px) {
  .service-strip__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 1px solid var(--blanco-20);
    border-radius: 50%;
    color: var(--blanco-50);
    transition: all var(--duration-fast);
  }

  .service-strip:hover .service-strip__arrow {
    border-color: var(--naranja);
    color: var(--naranja);
    transform: translateX(5px);
  }

  .service-strip__arrow svg {
    width: 20px;
    height: 20px;
  }
}

/* ==========================================================================
   MEANING SECTION - Clean, centered
   ========================================================================== */

.meaning {
  padding: var(--space-14) 0;
  background: var(--naranja);
  text-align: center;
  position: relative;
}

.meaning__content {
  position: relative;
  z-index: var(--z-content);
  max-width: 700px;
  margin: 0 auto;
}

.meaning__word {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, 8rem);
  font-weight: 700;
  font-style: italic;
  letter-spacing: -0.02em;
  color: var(--blanco);
  line-height: 0.95;
  margin-bottom: var(--space-4);
}

.meaning__translation {
  font-family: var(--font-accent);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blanco-70);
  margin-bottom: var(--space-8);
}

.meaning__text {
  font-size: var(--text-lg);
  color: var(--blanco-85);
  line-height: 1.8;
  margin-bottom: var(--space-5);
}

.meaning__text strong {
  color: var(--blanco);
}

.meaning__highlight {
  display: block;
  margin-top: var(--space-3);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  color: var(--dorado);
}

/* ==========================================================================
   STATEMENT SECTION - Like "Content is Forever"
   ========================================================================== */

.statement {
  padding: var(--space-14) 0;
  background: var(--negro);
  text-align: center;
}

.statement .container {
  max-width: 800px;
}

.statement__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5.5vw, 3.5rem);
  font-weight: 700;
  font-style: normal;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--blanco);
  margin-bottom: var(--space-6);
}

.statement__text {
  font-size: var(--text-lg);
  color: var(--blanco-80);
  line-height: 1.8;
  margin-bottom: var(--space-6);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.statement__text em {
  font-style: italic;
  color: var(--blanco);
}

.statement__tagline {
  font-family: var(--font-accent);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blanco);
  margin-bottom: var(--space-8);
}

.statement__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-accent);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blanco);
  padding: var(--btn-padding-lg);
  min-height: var(--btn-min-height);
  border: 2px solid var(--blanco);
  border-radius: var(--radius-md);
  transition: all var(--duration-fast);
}

.statement__cta:hover {
  background: var(--blanco);
  color: var(--negro);
}

.statement__cta:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring-light);
}

/* ==========================================================================
   SECCIÓN INTRO - Impact Statement (Dark theme)
   ========================================================================== */

.intro {
  padding: var(--space-16) 0 var(--space-20);
  background: var(--negro);
  position: relative;
}

.intro::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 80px;
  background: rgba(214, 76, 41, 0.3);
}

.intro__content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding-top: var(--space-10);
}

.intro__text {
  font-family: var(--font-body);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 400;
  line-height: 1.6;
  color: var(--blanco-85);
  max-width: 700px;
  margin: 0 auto;
}

.intro__text strong {
  color: var(--naranja);
  font-weight: 600;
}

.intro__highlight {
  display: block;
  margin-top: var(--space-4);
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 600;
  font-style: italic;
  color: var(--dorado);
}

/* Simple intro for service pages (no stats) - Dark theme */
.intro .container--narrow .intro__text,
.section--cream .intro__text {
  font-family: var(--font-body);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 400;
  line-height: 1.6;
  color: var(--blanco-85);
  max-width: 800px;
  margin: 0;
  text-align: left;
}

.intro .container--narrow .intro__text em,
.section--cream .intro__text em {
  color: var(--dorado);
  font-style: italic;
}

/* Center text for service page intros */
.section--cream .container--narrow .intro__content {
  text-align: center;
}

.section--cream .container--narrow .intro__text {
  text-align: center;
  margin: 0 auto;
}

@keyframes patternDrift {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-80px, -80px);
  }
}

/* ==========================================================================
   FOOTER - Minimal, centered, light background
   ========================================================================== */

.footer {
  background: var(--blanco);
  color: var(--negro);
  padding: var(--space-8) 0;
  text-align: center;
  border-top: var(--border-light);
}

.footer .container {
  max-width: 600px;
}

.footer__logo-wrap {
  margin-bottom: var(--space-4);
}

.footer__logo {
  height: 50px;
  width: auto;
  margin: 0 auto;
}

.footer__site {
  font-family: var(--font-accent);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gris);
  margin-bottom: var(--space-4);
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-4);
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-5);
  border-bottom: var(--border-light);
}

.footer__nav a {
  font-family: var(--font-accent);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gris);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-sm);
  transition: all var(--duration-fast);
}

.footer__nav a:hover {
  color: var(--naranja);
}

.footer__nav a:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

.footer__copy {
  font-size: var(--text-sm);
  color: var(--gris);
}

/* ==========================================================================
   PAGE HEADER - Service pages
   ========================================================================== */

.page-header {
  height: 65vh;
  min-height: 500px;
  max-height: 700px;
  display: flex;
  align-items: center;
  padding: var(--space-16) 0 var(--space-10);
  background: var(--negro);
  position: relative;
  overflow: hidden;
}

/* Subtle ambient glow */
.page-header::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -5%;
  width: 50%;
  height: 100%;
  background: radial-gradient(
    ellipse,
    rgba(214, 76, 41, 0.03) 0%,
    transparent 65%
  );
  pointer-events: none;
}

/* Secondary accent */
.page-header::after {
  content: "";
  position: absolute;
  bottom: -40%;
  left: -10%;
  width: 40%;
  height: 80%;
  background: radial-gradient(
    ellipse,
    rgba(3, 102, 145, 0.02) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.page-header__bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 55%;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat;
  opacity: 0.3;
  filter: grayscale(50%) brightness(0.5);
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(0, 0, 0, 0.4) 30%,
    rgba(0, 0, 0, 1) 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(0, 0, 0, 0.4) 30%,
    rgba(0, 0, 0, 1) 100%
  );
}

.page-header .container {
  position: relative;
  z-index: var(--z-content);
}

.page-header__label {
  font-family: var(--font-accent);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--naranja);
  margin-bottom: var(--space-4);
}

.page-header__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 700;
  font-style: normal;
  letter-spacing: -0.02em;
  color: var(--blanco);
  line-height: 1.1;
  margin-bottom: var(--space-5);
  max-width: 700px;
}

.page-header__title em {
  font-style: italic;
  color: var(--naranja);
}

.page-header__subtitle {
  font-size: var(--text-lg);
  color: var(--blanco-70);
  line-height: 1.7;
  max-width: 550px;
  margin-bottom: var(--space-8);
}

.page-header__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-accent);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--negro);
  background: var(--naranja);
  padding: var(--btn-padding-md);
  min-height: var(--btn-min-height);
  border-radius: var(--radius-md);
  transition: all var(--duration-fast) var(--ease-out);
}

.page-header__cta:hover {
  background: var(--blanco);
  transform: translateY(-2px);
  box-shadow: var(--shadow-accent);
}

.page-header__cta:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

.page-header__cta svg {
  width: 18px;
  height: 18px;
  transition: transform var(--duration-fast);
}

.page-header__cta:hover svg {
  transform: translateX(4px);
}

/* ==========================================================================
   ANIMACIONES
   ========================================================================== */

[data-reveal] {
  opacity: 0;
  transform: translateY(50px);
  transition: all var(--duration-slow) var(--ease-out);
}

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

[data-reveal-stagger] > * {
  opacity: 0;
  transform: translateY(40px);
}

[data-reveal-stagger].is-visible > * {
  opacity: 1;
  transform: translateY(0);
  transition: all var(--duration-base) var(--ease-out);
}

[data-reveal-stagger].is-visible > *:nth-child(1) {
  transition-delay: 0ms;
}
[data-reveal-stagger].is-visible > *:nth-child(2) {
  transition-delay: 150ms;
}
[data-reveal-stagger].is-visible > *:nth-child(3) {
  transition-delay: 300ms;
}
[data-reveal-stagger].is-visible > *:nth-child(4) {
  transition-delay: 450ms;
}

/* ==========================================================================
   UTILIDADES
   ========================================================================== */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  border: 0;
}

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

/* ==========================================================================
   ESTILOS ADICIONALES - Páginas de servicios
   ========================================================================== */

/* Section backgrounds */
.section {
  padding: var(--space-16) 0;
}

.section--cream {
  background: var(--negro);
}

/* Dark theme section text colors */
.section--cream h2,
.section--cream h3 {
  color: var(--blanco);
}

.section--cream p {
  color: var(--blanco-80);
}

/* ==========================================================================
   PAGE DIFFERENTIATION - Unique styles per page
   ========================================================================== */

/* INTERPRETATION - Precise, clean, professional */
body.page-interpretation .page-header {
  background: var(--negro);
  border-top: 4px solid var(--azul);
}

body.page-interpretation .page-header::before {
  background: radial-gradient(
    ellipse at 30% 20%,
    rgba(3, 102, 145, 0.12) 0%,
    transparent 70%
  );
}

body.page-interpretation .page-header::after {
  content: "";
  position: absolute;
  bottom: -30%;
  right: -15%;
  width: 50%;
  height: 70%;
  background: radial-gradient(
    ellipse,
    rgba(3, 102, 145, 0.06) 0%,
    transparent 60%
  );
  pointer-events: none;
}

body.page-interpretation .page-header__title em {
  color: var(--azul);
}

body.page-interpretation .page-header__label {
  color: var(--azul-light);
}

body.page-interpretation .page-header__subtitle {
  color: rgba(3, 102, 145, 0.8);
  border-left: 3px solid var(--azul);
  padding-left: var(--space-5);
}

body.page-interpretation .service__number {
  color: var(--azul);
}

body.page-interpretation .service:hover {
  border-left-color: var(--azul);
  background: rgba(3, 102, 145, 0.04);
}

body.page-interpretation .service:hover .service__title {
  color: var(--azul);
}

body.page-interpretation .meaning {
  background: var(--azul);
  position: relative;
  overflow: hidden;
}

body.page-interpretation .meaning::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -5%;
  transform: translateY(-50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

body.page-interpretation .meaning::after {
  content: "";
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 250px;
  height: 250px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.05) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

body.page-interpretation .section--cream {
  background: var(--negro);
}

body.page-interpretation .section--cream .intro__text em {
  color: var(--azul-light);
}

/* NARRATIVE - Creative, dynamic, warm */
body.page-narrative .page-header {
  background: var(--negro);
  border-top: 4px solid var(--dorado);
}

body.page-narrative .page-header::before {
  background: radial-gradient(
    ellipse at 70% 30%,
    rgba(212, 165, 116, 0.15) 0%,
    transparent 60%
  );
}

body.page-narrative .page-header::after {
  background: radial-gradient(
    ellipse at 20% 80%,
    rgba(214, 76, 41, 0.08) 0%,
    transparent 55%
  );
}

body.page-narrative .page-header__title em {
  color: var(--dorado);
}

body.page-narrative .page-header__label {
  color: var(--dorado-light);
}

body.page-narrative .page-header__subtitle {
  color: rgba(212, 165, 116, 0.85);
}

body.page-narrative .section--cream {
  background: var(--negro);
  padding: var(--space-12) 0;
}

body.page-narrative .service {
  border-left-color: transparent;
  border-bottom: 2px solid transparent;
  background: transparent;
}

body.page-narrative .service:hover {
  border-left-color: transparent;
  border-bottom-color: var(--dorado);
  background: rgba(212, 165, 116, 0.06);
}

body.page-narrative .service__number {
  color: var(--dorado);
}

body.page-narrative .service:hover .service__title {
  color: var(--dorado);
}

body.page-narrative .meaning {
  background: var(--dorado);
}

/* POLITICAL STRATEGY - Bold, powerful, impactful */
body.page-political .page-header {
  background: var(--negro);
  border-top: 5px solid var(--burdeos);
  box-shadow: inset 0 4px 0 rgba(111, 17, 17, 0.3);
}

body.page-political .page-header::before {
  background: radial-gradient(
    ellipse at 80% 20%,
    rgba(139, 35, 50, 0.18) 0%,
    transparent 65%
  );
}

body.page-political .page-header__title {
  font-size: clamp(3rem, 9vw, 5.5rem);
}

body.page-political .page-header__title em {
  color: var(--burdeos);
}

body.page-political .page-header__label {
  color: #d64c29;
}

body.page-political .page-header__subtitle {
  color: rgba(255, 255, 255, 0.75);
  border-left: 4px solid var(--burdeos);
  padding-left: var(--space-5);
}

body.page-political .service {
  background: transparent;
  border: none;
  border-left: 4px solid transparent;
  padding-left: var(--space-10);
}

body.page-political .service:hover {
  background: transparent;
  border-left-color: var(--burdeos);
}

body.page-political .service__number {
  position: absolute;
  left: 0;
  top: var(--space-6);
  font-size: clamp(4rem, 10vw, 6rem);
  color: var(--burdeos);
  opacity: 0.08;
  z-index: 0;
}

body.page-political .service:hover .service__number {
  opacity: 0.15;
}

body.page-political .service__body {
  position: relative;
  z-index: 1;
}

body.page-political .service:hover .service__title {
  color: var(--burdeos);
}

body.page-political .meaning {
  background: var(--burdeos);
}

body.page-political .meaning__word {
  font-size: clamp(2.5rem, 8vw, 4rem);
}

body.page-political .section--cream {
  background: var(--negro);
}

body.page-political .page-header__cta {
  background: var(--burdeos);
  color: var(--blanco);
  border: 2px solid var(--burdeos);
}

body.page-political .page-header__cta:hover {
  background: var(--blanco);
  color: var(--burdeos);
  border-color: var(--blanco);
}

body.page-interpretation .page-header__cta {
  background: var(--azul);
  color: var(--blanco);
  border: 2px solid var(--azul);
}

body.page-interpretation .page-header__cta:hover {
  background: var(--blanco);
  color: var(--azul);
  border-color: var(--blanco);
}

body.page-narrative .page-header__cta {
  background: var(--dorado);
  color: var(--negro);
  border: 2px solid var(--dorado);
}

body.page-narrative .page-header__cta:hover {
  background: var(--blanco);
  color: var(--dorado);
  border-color: var(--blanco);
}

/* CONTACT - Warm, inviting, personal */

/* Contact Section */
.contact-section {
  padding: var(--space-16) 0;
  background: var(--negro);
  border-top: 4px solid var(--naranja);
  position: relative;
}

.contact-section--full {
  padding-top: 100px;
  padding-bottom: var(--space-12);
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
}

.contact-section__bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 55%;
  background: url("../assets/images/contact-bg.jpg") center/cover no-repeat;
  opacity: 0.2;
  filter: grayscale(50%) brightness(0.5);
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(0, 0, 0, 0.4) 30%,
    rgba(0, 0, 0, 1) 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(0, 0, 0, 0.4) 30%,
    rgba(0, 0, 0, 1) 100%
  );
}

.contact-section::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 50%;
  height: 80%;
  background: radial-gradient(
    ellipse,
    rgba(214, 76, 41, 0.08) 0%,
    transparent 60%
  );
  pointer-events: none;
  z-index: 0;
}

.contact-section > .container {
  position: relative;
  z-index: 1;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr 1.3fr;
    gap: var(--space-16);
    align-items: start;
  }
}

/* Contact Info - Left Side */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-10);
}

.contact-info__header {
  padding-bottom: var(--space-8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-info__header > .contact-info__label {
  font-family: var(--font-accent);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--naranja);
  margin-bottom: var(--space-4);
}

.contact-info__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 6vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--blanco);
  margin-bottom: var(--space-4);
}

.contact-info__title em {
  font-style: italic;
  color: var(--naranja);
}

.contact-info__intro {
  font-size: var(--text-lg);
  line-height: 1.7;
  color: var(--gris);
}

.contact-info__items {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.contact-info__item {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
  padding: var(--space-5);
  background: var(--blanco-02);
  border: 1px solid var(--blanco-05);
  border-radius: var(--radius-lg);
  transition: all var(--duration-fast);
}

.contact-info__item:hover {
  background: var(--blanco-04);
  border-color: rgba(232, 93, 40, 0.2);
}

.contact-info__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(232, 93, 40, 0.1);
  border-radius: var(--radius-md);
  color: var(--naranja);
}

.contact-info__icon svg {
  width: 22px;
  height: 22px;
}

.contact-info__label {
  font-family: var(--font-accent);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--naranja);
  margin-bottom: var(--space-1);
}

.contact-info__value {
  font-size: var(--text-base);
  color: var(--blanco);
  line-height: 1.6;
}

.contact-info__value--link {
  color: var(--blanco);
  border-bottom: 1px solid var(--naranja);
  transition: all var(--duration-fast);
}

.contact-info__value--link:hover {
  color: var(--naranja);
}

/* Contact Info CTA */
.contact-info__cta {
  padding-top: var(--space-8);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-info__cta-text {
  font-size: var(--text-sm);
  color: var(--gris);
  margin-bottom: var(--space-4);
}

.contact-info__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-accent);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--naranja);
  transition: all var(--duration-fast);
}

.contact-info__cta-btn svg {
  width: 18px;
  height: 18px;
  transition: transform var(--duration-fast);
}

.contact-info__cta-btn:hover {
  color: var(--blanco);
}

.contact-info__cta-btn:hover svg {
  transform: translateX(4px);
}

/* Contact Form - Right Side */
.contact-form-wrap {
  background: rgba(10, 10, 10, 0.6);
  padding: var(--space-10);
  border: 1px solid rgba(214, 76, 41, 0.15);
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
}

.contact-form-header {
  margin-bottom: var(--space-8);
  padding-bottom: var(--space-6);
  border-bottom: 2px solid rgba(214, 76, 41, 0.2);
}

.contact-form-header__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--blanco);
  margin-bottom: var(--space-2);
}

.contact-form-header__title::before {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: var(--naranja);
  margin-bottom: var(--space-4);
}

.contact-form-header__text {
  font-size: var(--text-sm);
  color: var(--gris);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}

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

.form__group {
  display: flex;
  flex-direction: column;
}

.form__label {
  font-family: var(--font-accent);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blanco);
  margin-bottom: var(--space-2);
}

.form__optional {
  font-weight: 400;
  color: var(--gris);
  text-transform: none;
  letter-spacing: 0;
}

.form__input,
.form__textarea,
.form__select {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--blanco);
  background: var(--blanco-04);
  border: 1px solid var(--blanco-10);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  transition: all var(--duration-fast);
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: var(--gris);
  opacity: 0.6;
}

.form__input:focus,
.form__textarea:focus,
.form__select:focus {
  outline: none;
  border-color: var(--naranja);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 3px rgba(232, 93, 40, 0.15);
}

.form__select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
  padding-right: 40px;
}

.form__select option {
  background: var(--negro);
  color: var(--blanco);
}

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

.form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  font-family: var(--font-accent);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: var(--space-5) var(--space-8);
  background: var(--naranja);
  color: var(--blanco);
  border: 2px solid var(--naranja);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--duration-fast);
  margin-top: var(--space-4);
}

.form__submit svg {
  width: 18px;
  height: 18px;
  transition: transform var(--duration-fast);
}

.form__submit:hover {
  background: var(--naranja-dark);
  border-color: var(--naranja-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(232, 93, 40, 0.3);
}

.form__submit:hover svg {
  transform: translateX(3px) translateY(-3px);
}

.form__submit:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

/* Contact Page Mobile Adjustments */
@media (max-width: 899px) {
  .contact-section {
    padding: var(--space-12) 0;
  }

  .contact-form-wrap {
    padding: var(--space-8);
  }
}

/* ==========================================================================
   SPLIT ROWS LAYOUT - Interpretation Page
   Clean, precise, alternating left/right layout
   ========================================================================== */

.split-rows {
  display: flex;
  flex-direction: column;
}

.split-row {
  display: grid;
  grid-template-columns: 1fr;
  background: rgba(10, 10, 10, 0.4);
  border-bottom: var(--border-subtle);
  border-radius: var(--radius-md);
  transition: all var(--duration-base) var(--ease-out);
}

.split-row:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring-light);
}

.split-row:last-child {
  border-bottom: none;
}

@media (min-width: 900px) {
  .split-row {
    grid-template-columns: 1fr 1.5fr;
  }

  .split-row--reverse {
    grid-template-columns: 1.5fr 1fr;
  }

  .split-row--reverse .split-row__header {
    order: 2;
  }

  .split-row--reverse .split-row__body {
    order: 1;
    text-align: right;
  }

  .split-row--reverse .split-row__tags {
    justify-content: flex-end;
  }
}

.split-row:hover {
  background: rgba(3, 102, 145, 0.08);
}

.split-row__header {
  padding: var(--space-10) var(--space-8);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  background: linear-gradient(
    135deg,
    rgba(3, 102, 145, 0.08) 0%,
    transparent 100%
  );
}

.split-row__number {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 7rem);
  font-weight: 700;
  font-style: italic;
  color: var(--azul);
  opacity: 0.1;
  line-height: 1;
  position: absolute;
  top: var(--space-6);
  right: var(--space-6);
  transition: opacity var(--duration-base);
}

.split-row:hover .split-row__number {
  opacity: 0.2;
}

.split-row__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  font-style: italic;
  color: var(--blanco);
  transition: color var(--duration-fast);
}

.split-row:hover .split-row__title {
  color: var(--azul-light);
}

.split-row__body {
  padding: var(--space-10) var(--space-8);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-row__desc {
  color: var(--blanco-70);
  line-height: 1.8;
  margin-bottom: var(--space-5);
  max-width: 500px;
}

.split-row__tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.split-row__tags li {
  font-family: var(--font-accent);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: var(--space-2) var(--space-4);
  background: var(--azul);
  color: var(--blanco);
  border-radius: 2px;
  transition: all var(--duration-fast);
}

.split-row:hover .split-row__tags li {
  background: var(--azul-dark);
}

@media (max-width: 899px) {
  .split-row__header {
    padding: var(--space-8) var(--gutter);
  }

  .split-row__body {
    padding: 0 var(--gutter) var(--space-8);
  }

  .split-row__number {
    position: static;
    font-size: var(--text-2xl);
    opacity: 0.3;
    margin-bottom: var(--space-2);
  }
}

/* ==========================================================================
   BENTO GRID LAYOUT - Marketing Page
   Creative, visual, dynamic with varying card sizes
   ========================================================================== */

.bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
}

@media (min-width: 768px) {
  .bento {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto auto;
  }

  .bento__item--large {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
  }

  .bento__item--tall {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
  }
}

@media (min-width: 1024px) {
  .bento {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
  }

  .bento__item--large {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
  }

  .bento__item--tall {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
  }
}

.bento__item {
  background: rgba(10, 10, 10, 0.4);
  padding: var(--space-7);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: all var(--duration-base) var(--ease-out);
  border: var(--border-subtle);
  border-radius: var(--radius-lg);
}

.bento__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--naranja);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration-base) var(--ease-out);
}

.bento__item:hover::before {
  transform: scaleX(1);
}

.bento__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--border-accent);
}

.bento__item:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring-light);
}

.bento__icon {
  width: 40px;
  height: 40px;
  color: var(--dorado);
  margin-bottom: var(--space-3);
}

.bento__icon svg {
  width: 100%;
  height: 100%;
}

.bento__title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 600;
  font-style: italic;
  color: var(--blanco);
  margin-bottom: var(--space-3);
  transition: color var(--duration-fast);
}

.bento__item:hover .bento__title {
  color: var(--dorado);
}

.bento__desc {
  color: var(--blanco-70);
  line-height: 1.7;
  flex: 1;
}

.bento__footer {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-5);
  padding-top: var(--space-5);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.bento__tag {
  font-family: var(--font-accent);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: var(--space-1) var(--space-3);
  background: linear-gradient(
    135deg,
    rgba(212, 165, 116, 0.2),
    rgba(214, 76, 41, 0.15)
  );
  color: var(--dorado);
  border-radius: 2px;
}

.bento__list {
  margin-top: var(--space-4);
}

.bento__list li {
  font-size: var(--text-sm);
  color: var(--blanco-70);
  padding: var(--space-2) 0;
  padding-left: var(--space-4);
  position: relative;
  border-bottom: 1px solid var(--blanco-05);
}

.bento__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--dorado);
  border-radius: 50%;
}

.bento__list li:last-child {
  border-bottom: none;
}

/* ==========================================================================
   POWER CARDS GRID - Political Strategy Page
   Bold, impactful 2x2 grid with dramatic styling
   ========================================================================== */

.power-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

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

.power-card {
  background: rgba(10, 10, 10, 0.4);
  padding: var(--space-10);
  position: relative;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  transition: all var(--duration-base) var(--ease-out);
  border: var(--border-subtle);
  border-radius: var(--radius-lg);
}

.power-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    transparent 0%,
    rgba(139, 35, 50, 0.1) 100%
  );
  opacity: 0;
  transition: opacity var(--duration-base);
}

.power-card:hover::before {
  opacity: 1;
}

.power-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(139, 35, 50, 0.25);
  border-color: rgba(139, 35, 50, 0.3);
}

.power-card:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

.power-card__number {
  position: absolute;
  top: var(--space-6);
  right: var(--space-6);
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 700;
  font-style: italic;
  color: var(--burdeos);
  opacity: 0.06;
  line-height: 1;
  transition: all var(--duration-base);
  z-index: 0;
}

.power-card:hover .power-card__number {
  opacity: 0.12;
  transform: scale(1.1) translateX(-10px);
}

.power-card__content {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.power-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  font-style: italic;
  color: var(--blanco);
  margin-bottom: var(--space-4);
  transition: color var(--duration-fast);
}

.power-card:hover .power-card__title {
  color: var(--naranja);
}

.power-card__desc {
  color: var(--blanco-70);
  line-height: 1.8;
  flex: 1;
}

.power-card__accent {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--naranja);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration-base) var(--ease-out);
}

.power-card:hover .power-card__accent {
  transform: scaleX(1);
}

/* ==========================================================================
   RESPONSIVE IMPROVEMENTS - Mobile First
   ========================================================================== */

/* Mobile: Smaller gutters and optimized spacing */
@media (max-width: 767px) {
  :root {
    --gutter: 1rem;
  }

  .page-header__bg,
  .contact-section__bg,
  .whatido__icon {
    display: none;
  }

  /* Smaller section padding on mobile */
  .section {
    padding: var(--space-8) 0;
  }

  .hero__content {
    padding: calc(var(--header-height) + var(--space-4)) var(--space-4)
      var(--space-4);
  }

  .page-header {
    padding: var(--space-14) 0 var(--space-8);
  }

  .meaning {
    padding: var(--space-8) 0;
  }

  .statement {
    padding: var(--space-8) 0;
  }

  .whatido {
    padding: var(--space-8) 0;
  }

  /* Smaller card padding */
  .bento__item {
    padding: var(--space-5);
  }

  .power-card {
    padding: var(--space-6);
    min-height: 200px;
  }

  .contact-form-wrap {
    padding: var(--space-5);
  }

  /* Nav improvements */
  .nav {
    padding: var(--space-2) 0;
  }

  .nav--scrolled {
    padding: var(--space-2) 0;
  }

  .nav__logo {
    height: 28px;
  }

  /* Footer breathing room */
  .footer {
    padding: var(--space-6) 0;
  }

  .footer__nav {
    gap: var(--space-3);
  }

  /* Service strips mobile */
  .service-strip {
    padding: var(--space-5) var(--space-4);
  }

  /* Split rows mobile */
  .split-row__header,
  .split-row__body {
    padding: var(--space-5) var(--space-4);
  }
}

/* Tablet adjustments */
@media (min-width: 768px) and (max-width: 1023px) {
  .bento {
    gap: var(--space-5);
  }

  .power-grid {
    gap: var(--space-5);
  }
}

/* Large screens: more breathing room */
@media (min-width: 1200px) {
  .section {
    padding: var(--space-12) 0;
  }

  .hero__content {
    max-width: 80%;
    padding: calc(var(--header-height) + var(--space-6)) var(--space-8)
      var(--space-8);
  }

  .bento {
    gap: var(--space-5);
  }

  .power-grid {
    gap: var(--space-6);
  }
}

/* ==========================================================================
   ACCESSIBILITY ENHANCEMENTS
   ========================================================================== */

/* Skip link styles */
.sr-only:focus {
  position: fixed;
  top: var(--space-4);
  left: var(--space-4);
  width: auto;
  height: auto;
  padding: var(--space-4) var(--space-6);
  background: var(--naranja);
  color: var(--blanco);
  font-family: var(--font-accent);
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--radius-md);
  z-index: calc(var(--z-overlay) + 1);
  clip-path: none;
  overflow: visible;
}

/* ==========================================================================
   PARALLAX - Efecto de profundidad en el hero
   ========================================================================== */

.hero--parallax {
  perspective: 1000px;
  overflow: hidden;
}

.hero--parallax .hero__video {
  transform: translateZ(-1px) scale(1.5);
  transform-origin: center center;
}

/* ==========================================================================
   GLOW EFFECTS - Elementos con resplandor sutil
   ========================================================================== */

.glow-on-hover {
  transition:
    transform var(--duration-base) var(--ease-out),
    box-shadow var(--duration-base) ease;
}

.glow-on-hover:hover {
  transform: translateY(-4px);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.4),
    0 0 60px rgba(214, 76, 41, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* Glow para el logo en footer */
.footer__logo-wrap:hover .footer__logo {
  filter: drop-shadow(0 0 20px rgba(214, 76, 41, 0.3));
}

/* ==========================================================================
   SCROLL INDICATOR - Animación sutil
   ========================================================================== */

@keyframes scrollBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}

.hero__scroll-indicator {
  animation: scrollBounce 2s ease-in-out infinite;
}

/* ==========================================================================
   ACCESIBILIDAD
   ========================================================================== */

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

  html {
    scroll-behavior: auto;
  }

  [data-reveal],
  [data-reveal-stagger] > * {
    opacity: 1;
    transform: none;
  }

  .hero--parallax .hero__video {
    transform: none;
  }

  .hero__scroll-indicator {
    animation: none;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .nav__link,
  .footer__nav a {
    text-decoration: underline;
  }

  .form__input,
  .form__textarea,
  .form__select {
    border-width: 3px;
  }
}

/* ==========================================================================
   PRINT STYLES
   ========================================================================== */

@media print {
  .nav,
  .mobile-nav,
  .hero__scroll,
  .footer__nav,
  .page-header__cta,
  .statement__cta,
  .cta__btn {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .hero,
  .page-header,
  .meaning,
  .statement {
    background: #fff !important;
    color: #000 !important;
  }

  .hero__title,
  .page-header__title,
  .meaning__word,
  .statement__title {
    color: #000 !important;
  }
}
