/* =====================================================
   BWALÀ STUDIO 2026 — style.css
   Palette: #ffffff · #ffffff · #050505 · #f5f4f0 · #909090
   Fonts: FreightBig Pro Light (titles) · Inter (body)
   Loaded from Google Fonts & framerusercontent CDN
===================================================== */

/* ---- FONT IMPORTS ---- */
@font-face {
  font-family: "FreightBig";
  src: url("https://framerusercontent.com/assets/5xJQBY3bEdz7MiRDitbXOTI2jc.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "FreightBig";
  src: url("https://framerusercontent.com/assets/RoMkTwj8HI3vkr3eZTfVsjoFAoI.woff2") format("woff2");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background-color: #EDE7DE;
  color: #050505;
  overflow-x: clip; /* Fix for position: sticky */
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url("./images/grain.webp");
  background-repeat: repeat;
  opacity: 0.3; /* Textura al 30% de opacidad */
  pointer-events: none; /* Permite clics a través del overlay */
  z-index: 999999; /* Por encima de absolutamente todo */
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- TOKENS ---- */
:root {
  --black: #EDE7DE;
  --white: #050505;
  --off-white: #EDE7DE;
  --grey: #909090;
  --grey-dark: #323232;
  --grey-mid: #5c5c5c;
  --border: rgba(0,0,0,0.1);
  --border-dark: rgba(255,255,255,0.12);
  --font-display: 'FreightBig', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'Fragment Mono', monospace;
  --ease: cubic-bezier(0.25, 0, 0, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
}

/* ====================================================
   NAV
==================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 3rem;
  transition: padding 0.4s var(--ease);
  mix-blend-mode: difference;
  color: #fff;
  pointer-events: auto;
}
.nav.scrolled {
  padding: 1rem 3rem;
}
.nav-logo img {
  height: 36px;
  width: auto;
  filter: invert(1);
  transition: opacity 0.2s;
}
.nav-logo img:hover { opacity: 0.7; }
.nav-links {
  display: flex;
  gap: 2.5rem;
}
.nav-link {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  transition: opacity 0.2s;
}
.nav-link:hover { opacity: 0.6; }
.btn-nav {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 0.55rem 1.25rem;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 100px;
  color: #fff;
  transition: all 0.25s var(--ease);
}
.btn-nav:hover {
  background: #fff;
  color: #000;
  border-color: #fff;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: #fff;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { transform: rotate(-45deg); }

/* Mobile Menu Curtain & Centered Layout */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: #050505;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem;
  gap: 3rem;
  transform: translateY(-100%);
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.mobile-menu.open {
  transform: translateY(0);
}
.mobile-menu-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.mobile-link {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 8vw, 3.5rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.3s;
}
.mobile-link:hover {
  color: #EDE7DE;
}

/* Mobile CTA Button styling */
.mobile-cta-btn {
  display: none;
  padding: 0.85rem 2.5rem;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 100px;
  color: #EDE7DE;
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  font-family: var(--font-body);
  transition: all 0.3s;
  text-align: center;
}
.mobile-cta-btn:hover {
  background: #EDE7DE;
  color: #050505;
  border-color: #EDE7DE;
}

/* Mobile Language Switcher styling */
.mobile-lang-switcher {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
}
.mobile-lang-current {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
}
.mobile-lang-options {
  display: flex;
  gap: 1.5rem;
}
.mobile-lang-options a {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: #EDE7DE;
  text-decoration: none;
  transition: opacity 0.2s;
}
.mobile-lang-options a:hover {
  opacity: 0.7;
}

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav { padding: 1.25rem 1.5rem; }
  .nav.scrolled { padding: 1rem 1.5rem; }
}

/* ====================================================
   HERO
==================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 0 3rem 5rem;
  background: var(--black);
  overflow: hidden;
}

/* Subtle grid background */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

/* Large ambient circle */
.hero::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 70vw;
  height: 70vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(161,160,136,0.08) 0%, transparent 65%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  width: 100%;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
}
.eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--grey);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(4rem, 10vw, 10rem);
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: #050505;
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
}
.hero-title .italic { font-style: italic; color: rgba(0,0,0,0.55); }
.typewriter-cursor {
  display: inline-block;
  width: 4px;
  height: 0.9em;
  background-color: rgba(0,0,0,0.55);
  vertical-align: baseline;
  margin-left: 6px;
  animation: blinkCursor 0.8s infinite;
}
@keyframes blinkCursor {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}
.hero-sub {
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  color: var(--grey);
  font-weight: 300;
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 2.5rem;
}
/* Centered Hero Modifier */
.hero--centered {
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 3rem 5rem;
}
.hero--centered .hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero--centered .hero-eyebrow {
  justify-content: center;
}
.hero--centered .hero-actions {
  justify-content: center;
}
.hero--centered .hero-scroll {
  left: 50%;
  right: auto;
  transform: translateX(-50%);
}
.hero--centered .hero-meta {
  position: absolute;
  top: auto;
  bottom: 5rem;
  right: 3rem;
  transform: none;
  align-items: flex-end;
  text-align: right;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0.85rem 2rem;
  background: #1A1A1A;
  color: var(--black);
  border-radius: 100px;
  transition: all 0.3s var(--ease);
  border: 1px solid #050505;
}
.btn-primary:hover {
  background: transparent;
  color: #050505;
}
.btn-primary--light {
  background: var(--black);
  color: var(--white);
  border-color: rgba(0,0,0,0.3);
}
.btn-primary--light:hover {
  background: #1A1A1A;
  color: var(--black);
  border-color: #050505;
}
.btn-ghost {
  font-size: 0.85rem;
  color: var(--grey);
  transition: color 0.2s;
  letter-spacing: 0.02em;
}
.btn-ghost:hover { color: #050505; }

/* Hero scroll + meta */
.hero-scroll {
  position: absolute;
  bottom: 5rem;
  right: 3rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey);
  animation: fadeUp 1.2s 0.8s both;
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--grey), transparent);
  animation: scrollDown 1.5s ease-in-out infinite;
}
@keyframes scrollDown {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
.hero-meta {
  position: absolute;
  top: 50%;
  right: 3rem;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.25rem;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.25);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .hero { padding: 0 1.5rem 4rem; }
  .hero-scroll, .hero-meta { display: none; }
}

/* ====================================================
   MARQUEE
==================================================== */
.marquee-wrap {
  background: #1A1A1A;
  color: var(--black);
  overflow: hidden;
  padding: 1.2rem 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.marquee-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: marquee 30s linear infinite;
  align-items: center;
}
.marquee-track span {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  white-space: nowrap;
  color: var(--black);
}
.marquee-dot {
  font-size: 0.5rem !important;
  color: var(--grey) !important;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ====================================================
   LABEL
==================================================== */
.label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey);
  font-weight: 400;
}
.label--light { color: rgba(0,0,0,0.4); }

/* ====================================================
   INTRO
==================================================== */
.intro {
  background: var(--black);
  padding: 8rem 3rem;
  border-top: 1px solid var(--border);
}
.intro-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 4rem;
  align-items: start;
}
.intro-statement {
  font-family: var(--font-display);
  font-size: clamp(3.6rem, 6.4vw, 5.6rem); /* Doble del tamaño anterior */
  font-weight: 300;
  line-height: 0.85;
  color: rgba(0,0,0,0.9);
  margin-bottom: 2.5rem;
}
.intro-statement span.reveal-word {
  opacity: 0.2;
  transition: opacity 0.15s ease-out;
  display: inline-block;
  margin-right: 0.25em;
}
.intro-statement em {
  font-style: italic;
  color: rgba(0,0,0,0.5);
}
.intro-body {
  font-size: 1rem;
  color: var(--grey);
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 2rem;
  font-weight: 300;
}
.link-arrow {
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: rgba(0,0,0,0.5);
  border-bottom: 1px solid rgba(0,0,0,0.2);
  padding-bottom: 2px;
  transition: all 0.2s;
}
.link-arrow:hover { color: #050505; border-color: #050505; }

@media (max-width: 768px) {
  .intro { padding: 5rem 1.5rem; }
  .intro-inner { grid-template-columns: 1fr; gap: 2rem; }
}

/* ====================================================
   WORK / PROJECTS
==================================================== */
.work {
  background: var(--black);
  padding: 0 3rem 8rem;
  border-top: 1px solid var(--border);
}
.work-header {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  align-items: flex-end;
  padding: 8rem 0 4rem;
  gap: 3rem;
}
.work-title {
  font-family: "FreightBig", serif;
  font-size: clamp(2.5rem, 5.2vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
}
.work-title .line-dark {
  color: var(--white);
}
.work-title .line-gray {
  color: var(--grey);
}
.work-subtitle {
  font-size: clamp(1.05rem, 1.25vw, 1.35rem);
  color: rgba(5, 5, 5, 0.7);
  line-height: 1.6;
  max-width: 480px;
  margin-bottom: 0.5rem;
}
.work-action {
  text-align: center;
  margin-top: 5rem;
}
.projects-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
  padding-bottom: 6rem;
}
.project {
  cursor: pointer;
  /* removed overflow: hidden so parallax wrapper can move without clipping info */
}
.project--large { grid-column: span 7; }
.project--small { grid-column: span 5; }

.project-parallax-wrapper {
  will-change: transform;
}

.project-image {
  overflow: hidden;
  border-radius: 0px;
  margin-bottom: 1.25rem;
  position: relative;
}
.project-img-inner {
  height: 65vh;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s var(--ease);
  filter: brightness(0.85);
}
.project:hover .project-img-inner {
  transform: scale(1.04);
  filter: brightness(1);
}

.project-img--1 {
  background-image: url('./images/SanaeSpaLongBeach-BrandingWeb.png');
  background-size: cover;
  background-position: center;
}
.project-img--2 {
  background-image: url('./images/CemProjectsArchitectsMiami-BrandingWeb.png');
  background-size: cover;
  background-position: center;
}
.project-img--3 {
  background-image: url('./images/JSCycleBikeStoreNewYork-BrandingWeb.png');
  background-size: cover;
  background-position: center;
}
.project-img--4 {
  background-image: url('./images/OlfaiaPerfumeria-BrandingShopifySocialMedia.png');
  background-size: cover;
  background-position: center;
}
.project-img--5 {
  background-image: url('./images/BlissicWellnessOnlineStore-BrandingWeb.png');
  background-size: cover;
  background-position: center;
}
.project-img--6 {
  background-image: url('./images/CadiesseJewelry-BrandingWeb.png');
  background-size: cover;
  background-position: center;
}

.project-info { padding: 0 0.25rem; }
.project-meta {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 0.5rem;
}
.project-num {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: var(--grey);
  font-weight: 400;
}
.project-tags {
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey-mid);
}
.project-title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  font-weight: 300;
  color: rgba(0,0,0,0.9);
  margin-bottom: 0.25rem;
  transition: color 0.2s;
}
.project:hover .project-title { color: #050505; }
.project-loc {
  font-size: 0.75rem;
  color: var(--grey);
}

@media (max-width: 900px) {
  .work { padding: 0 1.5rem 5rem; }
  .work-header {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 5rem 0 3rem;
  }
  .project--large, .project--small { grid-column: span 12; }
  .project-img-inner { height: 55vw; }
}

/* ====================================================
   SERVICES
==================================================== */
.services {
  background: var(--off-white);
  color: #050505;
  padding: 8rem 3rem;
}
.services-inner { max-width: 1400px; margin: 0 auto; }
.services-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
  gap: 2rem;
}
.services-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 300;
  line-height: 1.0;
  color: #050505;
}
.services-title em { font-style: italic; color: rgba(0,0,0,0.35); }
.services-list { display: flex; flex-direction: column; }
.service-item {
  border-top: 1px solid rgba(0,0,0,0.12);
  padding: 2rem 0;
  cursor: pointer;
  transition: padding 0.3s var(--ease);
}
.service-item:last-child { border-bottom: 1px solid rgba(0,0,0,0.12); }
.service-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.service-num {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--grey-mid);
  min-width: 30px;
}
.service-name {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 2.2rem);
  font-weight: 300;
  color: #050505;
  flex: 1;
  transition: letter-spacing 0.4s var(--ease);
}
.service-item:hover .service-name { letter-spacing: 0.02em; }
.service-arrow {
  font-size: 1.2rem;
  color: rgba(0,0,0,0.3);
  transition: all 0.3s var(--ease);
}
.service-item:hover .service-arrow {
  transform: translate(4px, -4px);
  color: #050505;
}
.service-body-wrapper {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.7s cubic-bezier(0.2, 1, 0.3, 1);
}
.service-item:hover .service-body-wrapper {
  grid-template-rows: 1fr;
}
.service-body {
  min-height: 0;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding-left: calc(30px + 1.5rem);
  padding-top: 1.5rem;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.4s cubic-bezier(0.2, 1, 0.3, 1), transform 0.7s cubic-bezier(0.2, 1, 0.3, 1);
}
.service-item:hover .service-body {
  opacity: 1;
  transform: translateY(0);
}
.service-desc {
  font-size: 0.95rem;
  color: var(--grey);
  line-height: 1.7;
  font-weight: 300;
}
.service-list {
  list-style: none;
  font-size: 0.95rem;
  color: #050505;
  line-height: 1.7;
  font-weight: 400;
}
.service-list li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.5rem;
}
.service-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--grey);
  font-size: 0.8rem;
}

@media (max-width: 768px) {
  .services { padding: 5rem 1.5rem; }
  .services-top { flex-direction: column; align-items: flex-start; }
}

.services-action {
  text-align: center;
  margin-top: 5rem;
}

/* ====================================================
   STATS
==================================================== */
.stats {
  background: #1A1A1A;
  padding: 5rem 3rem;
  border-top: 1px solid var(--border);
}
.stats-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
  flex: 1;
  min-width: 160px;
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  color: rgba(255,255,255,0.9);
  line-height: 1;
}
.stat-num sup {
  font-size: 0.5em;
  vertical-align: super;
  color: var(--grey);
}
.stat-label {
  font-size: 0.75rem;
  color: var(--grey);
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: 300;
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border-dark);
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .stats { padding: 4rem 1.5rem; }
  .stat-divider { display: none; }
  .stat { min-width: 45%; }
}

/* ====================================================
   PROCESS
==================================================== */
.process {
  background: var(--black);
  padding: 8rem 3rem;
  border-top: 1px solid var(--border);
}
.process-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}
.process-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 4.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: rgba(0,0,0,0.9);
  margin: 1.5rem 0;
}
.process-title em { font-style: italic; color: rgba(0,0,0,0.4); }
.process-body {
  font-size: 0.95rem;
  color: var(--grey);
  line-height: 1.75;
  font-weight: 300;
}
.process-right { display: flex; flex-direction: column; padding-top: 0.5rem; }
.process-step {
  display: flex;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}
.process-step:first-child { border-top: 1px solid var(--border); }
.step-num {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: var(--grey);
  min-width: 28px;
  padding-top: 0.3rem;
}
.step-content h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 300;
  color: rgba(0,0,0,0.9);
  margin-bottom: 0.5rem;
}
.step-content p {
  font-size: 0.85rem;
  color: var(--grey);
  line-height: 1.7;
  font-weight: 300;
}
@media (max-width: 900px) {
  .process { padding: 5rem 1.5rem; }
  .process-inner { grid-template-columns: 1fr; gap: 3rem; }
}

/* ====================================================
   TESTIMONIALS
==================================================== */
.testimonials {
  background: #1A1A1A;
  color: #EDE7DE;
  padding: 8rem 3rem;
}
.testimonials-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.testimonials-inner .label {
  color: var(--grey);
  margin-bottom: 3rem;
}
.testimonials-track { position: relative; min-height: 220px; }
.testimonial {
  display: none;
  flex-direction: column;
  gap: 2rem;
  animation: fadeIn 0.5s ease;
}
.testimonial.active { display: flex; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.t-quote {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.75rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.45;
  color: #EDE7DE;
}
.t-author { display: flex; flex-direction: column; gap: 0.25rem; }
.t-name { font-size: 0.85rem; font-weight: 500; color: #EDE7DE; }
.t-role { font-size: 0.75rem; color: var(--grey); }
.t-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3rem;
}
.t-btn {
  font-size: 1rem;
  color: rgba(255,255,255,0.4);
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
  background: none;
  cursor: pointer;
}
.t-btn:hover { background: #EDE7DE; color: #050505; border-color: #EDE7DE; }
.t-dots { display: flex; gap: 0.4rem; }
.t-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transition: background 0.2s;
}
.t-dot.active { background: #EDE7DE; }
@media (max-width: 768px) { .testimonials { padding: 5rem 1.5rem; } }

/* ====================================================
   CTA SECTION
==================================================== */
.cta-section {
  background: var(--black);
  padding: 10rem 3rem;
  border-top: 1px solid var(--border);
  text-align: center;
}
.cta-inner {
  max-width: 860px;
  margin: 0 auto;
}
.cta-section .label { margin-bottom: 1.5rem; }
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 7rem);
  font-weight: 300;
  line-height: 1.0;
  color: rgba(0,0,0,0.9);
  margin-bottom: 2rem;
}
.cta-title em { font-style: italic; color: rgba(0,0,0,0.4); }
.cta-sub {
  font-size: 1rem;
  color: var(--grey);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 3rem;
}
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 5rem;
}
.cta-info {
  font-size: 0.8rem;
  color: var(--grey);
}
.cta-info a {
  color: rgba(0,0,0,0.5);
  border-bottom: 1px solid rgba(0,0,0,0.2);
  padding-bottom: 1px;
  transition: color 0.2s;
}
.cta-info a:hover { color: #050505; }
.cta-offices {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
  border-top: 1px solid var(--border);
  padding-top: 3rem;
}
.office { display: flex; flex-direction: column; gap: 0.25rem; }
.office-city {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(0,0,0,0.7);
}
.office-country { font-size: 0.7rem; letter-spacing: 0.1em; color: var(--grey); text-transform: uppercase; }
@media (max-width: 768px) { .cta-section { padding: 6rem 1.5rem; } }

/* ====================================================
   FOOTER
==================================================== */
.footer {
  background: #EDE7DE;
  border-top: 1px solid rgba(0,0,0,0.06);
  padding: 4rem 3rem 2rem;
}
.footer-inner { max-width: 1400px; margin: 0 auto; }
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}
.footer-logo {
  height: 32px;
  width: auto;
  /* filter: invert(1); */
  opacity: 0.6;
  transition: opacity 0.2s;
}
.footer-logo:hover { opacity: 1; }
.footer-nav {
  display: flex;
  gap: 4rem;
  flex-wrap: wrap;
}
.footer-col h5 {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.25);
  margin-bottom: 1.25rem;
  font-weight: 400;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a {
  font-size: 0.85rem;
  color: rgba(0,0,0,0.45);
  transition: color 0.2s;
}
.footer-col a:hover { color: #050505; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(0,0,0,0.06);
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(0,0,0,0.2);
  font-weight: 300;
}
.footer-bottom a {
  font-size: 0.75rem;
  color: rgba(0,0,0,0.2);
  transition: color 0.2s;
}
.footer-bottom a:hover { color: rgba(0,0,0,0.6); }
.footer-bottom span { color: rgba(0,0,0,0.1); margin: 0 0.4rem; }
@media (max-width: 768px) {
  .footer { padding: 3rem 1.5rem 2rem; }
  .footer-top { flex-direction: column; }
}

/* ====================================================
   NEW EXPERIMENTAL FOOTER
==================================================== */
.footer-new {
  background: #1A1A1A;
  color: #EDE7DE;
  position: relative;
  overflow: hidden;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  min-height: 80vh;
  justify-content: space-between;
}
.footer-new-top {
  display: flex;
  justify-content: space-between;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 2;
  position: relative;
}
.footer-new-top-links {
  display: flex;
  gap: 2rem;
}
.footer-new-center {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.footer-new-logo {
  width: 90%;
  max-width: 1200px;
  height: auto;
  z-index: 2;
  position: relative;
  /* Filter to color the black SVG path into the beige color #EDE7DE */
  filter: invert(93%) sepia(12%) saturate(191%) hue-rotate(323deg) brightness(97%) contrast(92%);
}
.footer-new-img {
  position: absolute;
  z-index: 1;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.footer-new-img:hover {
  transform: scale(1.05);
  z-index: 3;
}
.footer-new-img-1 {
  width: 15vw;
  max-width: 200px;
  top: 10%;
  left: 20%;
}
.footer-new-img-2 {
  width: 20vw;
  max-width: 250px;
  top: 30%;
  right: 25%;
}
.footer-new-img-3 {
  width: 12vw;
  max-width: 150px;
  bottom: 25%;
  left: 45%;
}
.footer-new-img-4 {
  width: 18vw;
  max-width: 220px;
  bottom: 5%;
  right: 10%;
}
.footer-new-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  z-index: 2;
  position: relative;
}
.footer-new a {
  color: #EDE7DE;
}
.footer-new-nav {
  display: flex;
  gap: 1.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.footer-new-nav a {
  transition: opacity 0.2s;
}
.footer-new-nav a:hover {
  opacity: 0.6;
}
.footer-new-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.05em;
  color: #EDE7DE;
  text-transform: uppercase;
}
.footer-new-copy a {
  transition: opacity 0.2s;
}
.footer-new-copy a:hover {
  opacity: 0.6;
}
@media (max-width: 768px) {
  .footer-new { padding: 2rem 1.5rem; min-height: 60vh; }
  .footer-new-top { flex-direction: column; gap: 1rem; align-items: center; text-align: center; }
  .footer-new-bottom { flex-direction: column; gap: 2rem; align-items: center; text-align: center; }
  .footer-new-nav { flex-wrap: wrap; justify-content: center; }
  .footer-new-copy { align-items: center; }
}

/* ====================================================
   RESPONSIVE HELPERS
==================================================== */
.br-desktop { display: inline; }
@media (max-width: 768px) { .br-desktop { display: none; } }

/* ====================================================
   SCROLL ANIMATIONS
==================================================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ====================================================
   CUSTOM CURSOR FOR PROJECT IMAGES
==================================================== */
.project-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: auto;
  height: auto;
  padding: 10px 22px;
  background-color: #1A1A1A;
  color: #ffffff;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  pointer-events: none;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0);
  transition: opacity 0.3s cubic-bezier(0.25, 1, 0.5, 1), transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  white-space: nowrap;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.project-cursor.active {
  opacity: 1;
}
.project .project-image {
  cursor: none;
}
.project .project-image * {
  cursor: none;
}

@media (hover: none) {
  .project-cursor {
    display: none !important;
  }
  .project-image {
    cursor: auto;
  }
  .project-image * {
    cursor: auto;
  }
}

/* ====================================================
   SANAE CASE STUDY
==================================================== */
.sanae-page {
  background-color: #fcfcfc; /* Premium clean white for editorial look */
  color: #111;
}

/* --- Sanae Hero --- */
.sanae-hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: inset(0 0 0 0); /* Allows fixed background to be clipped by this section */
}
.sanae-hero-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1;
  background: #EDE7DE;
  will-change: transform;
}
.sanae-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05); /* for slow zoom effect via JS */
  will-change: transform;
}
.sanae-hero-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.25);
  z-index: 2;
}
.sanae-hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: #fff;
  padding: 0 2rem;
}
.sanae-hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 9vw, 140px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.sanae-hero-title-inner {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
}
.sanae-hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.5vw, 24px);
  font-weight: 300;
  letter-spacing: 0.02em;
  opacity: 0;
}
.hero-scroll--light {
  color: #fff;
}
.scroll-line--light {
  background: rgba(255,255,255,0.4);
}
.scroll-line--light::after {
  background: #fff;
}

/* --- Project Info Bar --- */
.sanae-info-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 3rem 3rem;
  z-index: 10;
  background: transparent;
}
.sanae-info-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.info-col h6 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.75rem;
  font-weight: 500;
}
.info-col p {
  font-size: 1.1rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.4;
}

/* --- Story Sections --- */
.story-section {
  padding: 8rem 3rem;
}

/* --- Brand Intro --- */
.sanae-intro {
  background: #EDE7DE;
  display: flex;
  justify-content: center;
  text-align: center;
  padding: 12rem 3rem;
}
.sanae-intro-inner {
  max-width: 900px;
}
.sanae-statement {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 64px);
  font-weight: 300;
  line-height: 1.2;
  color: #111;
}

/* --- Identity Gallery --- */
.sanae-gallery {
  background: #fff;
  padding-top: 0;
}
.sanae-gallery-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.gallery-row {
  display: grid;
  gap: 2rem;
}
.gallery-row-1 {
  grid-template-columns: 1fr;
}
.gallery-row-2 {
  grid-template-columns: 1fr 1fr;
}
.gallery-img-wrap {
  overflow: hidden;
  border-radius: 0px;
  background: #f5f4f0;
}
.gallery-img-wrap img {
  width: 100%;
  height: auto;
  transform: scale(1.05);
  transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.gallery-img-wrap:hover img {
  transform: scale(1);
}

/* --- Digital Experience --- */
.sanae-digital {
  background: #f5f4f0;
}
.sanae-digital-header {
  text-align: center;
  margin-bottom: 6rem;
}
.sanae-digital-header .label {
  margin-bottom: 1rem;
}
.sanae-digital-header h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 80px);
  font-weight: 300;
  color: #111;
}
.sanae-digital-mockups {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 6rem;
}
.mockup-wrap {
  border-radius: 0px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}
.mockup-wrap img {
  width: 100%;
  display: block;
}

/* --- Animations (CSS overrides for intersection observer) --- */
.anim-fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.anim-fade-up.in-view {
  opacity: 1;
  transform: translateY(0);
}
.anim-scale-up {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 1.2s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.anim-scale-up.in-view {
  opacity: 1;
  transform: scale(1);
}
.anim-delay-1 { transition-delay: 0.15s; }
.anim-delay-2 { transition-delay: 0.3s; }

/* Responsive adjustments */
@media (max-width: 1024px) {
  .sanae-info-inner {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .sanae-info-inner {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .sanae-info-bar {
    padding: 2rem 1.5rem;
  }
  .story-section {
    padding: 5rem 1.5rem;
  }
  .sanae-intro {
    padding: 6rem 1.5rem;
  }
  .gallery-row-2 {
    grid-template-columns: 1fr;
  }
  .sanae-digital-header {
    margin-bottom: 3rem;
  }
  .sanae-digital-mockups {
    gap: 3rem;
  }
  .process-list {
    grid-template-columns: 1fr;
  }
  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

/* ====================================================
   STUDIO PAGE
==================================================== */

/* --- Studio Hero (Scroll-Driven Expanding Image) --- */
.studio-hero-scroll {
  height: 300vh;
  position: relative;
}
.studio-hero {
  position: sticky;
  top: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #EDE7DE;
  overflow: hidden;
  z-index: 1;
}
/* Subtle grid - same as index hero */
.studio-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  z-index: 3;
}
/* Ambient radial glow */
.studio-hero::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 70vw;
  height: 70vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(161,160,136,0.12) 0%, transparent 65%);
  pointer-events: none;
  z-index: 3;
}
.studio-hero-img-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10%;
  aspect-ratio: 16 / 9;
  border-radius: 0px;
  overflow: hidden;
  will-change: width, height, border-radius;
  transition: border-radius 0.1s linear;
  z-index: 2;
}
.studio-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.9) contrast(1.02); /* Filtro oscuro del 10% para mejorar contraste de lectura */
}
.studio-hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  text-align: center;
  color: #1c1a17; /* Default dark text color */
  padding: 0 1.5rem;
  pointer-events: none;
  z-index: 1; /* Sits behind the expanding wrap in order of layout */
}
.studio-hero-content.inner-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 100vh; /* Fixed reference height */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #ffffff; /* Contrast white text inside expanding image */
  z-index: 10;
  text-align: center;
}
.studio-hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 140px);
  font-weight: 300;
  line-height: 0.95;
  margin-bottom: 2rem;
  color: inherit;
}
.studio-hero-content.inner-content .studio-hero-subtitle {
  color: rgba(255, 255, 255, 0.7);
}
.studio-hero-subtitle {
  font-size: 1.1rem;
  color: rgba(0,0,0,0.5);
  letter-spacing: 0.05em;
  font-weight: 300;
}
.studio-hero-bg { display: none; }
.studio-hero-overlay { display: none; }

/* --- Philosophy --- */
.studio-philosophy {
  background: #EDE7DE;
  display: flex;
  align-items: center;
  justify-content: center;
}
.studio-philosophy-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.philosophy-title {
  font-family: var(--font-display);
  font-size: clamp(3.6rem, 6.4vw, 5.6rem); /* Mismo tamaño que en el Home (doble del original) */
  font-weight: 300;
  line-height: 0.85; /* Interlineado compacto */
  color: #111;
  margin-bottom: 2.5rem;
}
.philosophy-title span.reveal-word {
  opacity: 0.2; /* 20% de opacidad inicial */
  transition: opacity 0.15s ease-out;
  display: inline-block;
  margin-right: 0.25em;
}
.philosophy-copy {
  font-size: clamp(1.2rem, 2vw, 22px);
  color: rgba(0,0,0,0.5);
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

/* --- Founders --- */
.studio-founders {
  background: #EDE7DE;
  color: #111;
}
.founders-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.founders-header {
  margin-bottom: 4rem;
}
.founders-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 3rem;
  align-items: center;
}
.founder-bio {
  text-align: center;
}
.founder-bio h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 1rem;
  color: #111;
}
.founder-bio p {
  font-size: 1rem;
  color: var(--grey);
  line-height: 1.6;
}
.founders-image-wrap {
  width: 100%;
  max-width: 450px;
  border-radius: 0px;
  overflow: hidden;
}
.founders-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 900px) {
  .founders-grid { grid-template-columns: 1fr; }
  .founder-bio { order: 2; }
  .founder-bio:last-child { order: 3; }
  .founders-image-wrap { order: 1; margin: 0 auto; }
}

/* --- Process --- */
.studio-process {
  background: #fff;
}
.process-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.process-main-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 80px);
  font-weight: 300;
  margin-bottom: 4rem;
}
.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  border-top: 1px solid rgba(0,0,0,0.1);
  padding-top: 4rem;
}
.process-num {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 1.5rem;
}
.process-content p {
  font-size: 1.1rem;
  line-height: 1.5;
  color: #111;
}

/* --- Selected Work --- */
.studio-portfolio {
  background: #1A1A1A;
  color: #fff;
}
.portfolio-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.portfolio-header {
  margin-bottom: 4rem;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.portfolio-item {
  display: block;
  text-decoration: none;
}
.portfolio-img-wrap {
  overflow: hidden;
  border-radius: 0px;
  margin-bottom: 1.5rem;
}
.portfolio-img-wrap img {
  width: 100%;
  height: auto;
  transition: transform 0.8s var(--ease);
}
.portfolio-item:hover .portfolio-img-wrap img {
  transform: scale(1.03);
}
.portfolio-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: #fff;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}
.portfolio-tags {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

/* ====================================================
   CONTACT PAGE
==================================================== */

/* --- Hero --- */
.contact-hero {
  min-height: 100vh;
  background: #EDE7DE;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10rem 3rem 6rem;
  position: relative;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  text-align: center;
}
/* Subtle grid - same as index hero */
.contact-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  z-index: 0;
}
/* Ambient radial glow */
.contact-hero::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 70vw;
  height: 70vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(161,160,136,0.12) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.contact-hero-inner {
  max-width: 900px;
  width: 100%;
  position: relative;
  z-index: 1;
}
.contact-hero .label {
  margin-bottom: 2rem;
}
.contact-hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 130px);
  font-weight: 300;
  line-height: 0.95;
  color: #111;
  margin-bottom: 2.5rem;
}
.contact-hero-title em {
  font-style: italic;
  color: rgba(0,0,0,0.35);
}
.contact-hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(0,0,0,0.5);
  line-height: 1.6;
  max-width: 520px;
  font-weight: 300;
  margin: 0 auto;
}
.contact-hero-scroll-hint {
  position: absolute;
  bottom: 3rem;
  right: 3rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.35);
  z-index: 1;
}

/* --- Body: Form + Info --- */
.contact-body {
  background: #EDE7DE;
  padding: 7rem 3rem;
}
.contact-body-inner {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

/* --- Form --- */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.form-row {
  display: flex;
  gap: 2rem;
}
.form-row--2 > .form-group { flex: 1; }
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.form-group label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.4);
  font-weight: 500;
}
.form-group input,
.form-group textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(0,0,0,0.15);
  padding: 0.75rem 0;
  font-size: 1rem;
  font-family: var(--font-body);
  color: #111;
  font-weight: 300;
  transition: border-color 0.2s;
  outline: none;
  resize: none;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(0,0,0,0.25); }
.form-group input:focus,
.form-group textarea:focus { border-bottom-color: #111; }

/* Service chips */
.service-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding-top: 0.5rem;
}
.chip {
  padding: 0.5rem 1.25rem;
  border: 1px solid rgba(0,0,0,0.2);
  border-radius: 100px;
  font-size: 0.8rem;
  font-family: var(--font-body);
  color: rgba(0,0,0,0.5);
  background: transparent;
  cursor: pointer;
  transition: all 0.2s var(--ease);
  letter-spacing: 0.04em;
}
.chip:hover {
  border-color: #111;
  color: #111;
}
.chip--active {
  background: #111;
  border-color: #111;
  color: #fff;
}

/* Submit button */
.contact-submit {
  align-self: center;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 2.5rem;
  background: #111;
  color: #fff;
  border: none;
  border-radius: 100px;
  font-size: 0.9rem;
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.contact-submit:hover {
  background: #333;
  transform: translateY(-2px);
}
.contact-submit.loading {
  opacity: 0.5;
  pointer-events: none;
}
.submit-icon {
  display: flex;
  align-items: center;
  transition: transform 0.3s;
}
.contact-submit:hover .submit-icon { transform: translateX(4px); }

/* Success */
.form-success {
  display: none;
  padding: 1.5rem 2rem;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 8px;
  font-size: 1rem;
  color: #111;
}
.form-success.visible { display: block; }

/* --- Info Column --- */
.contact-info-col {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: space-between;
  padding-top: 0;
  border-top: 1px solid rgba(0,0,0,0.07);
  padding-top: 4rem;
}
.contact-info-block { }
.contact-info-block .label { margin-bottom: 1rem; }
.contact-email {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 300;
  color: #111;
  font-style: italic;
  border-bottom: 1px solid rgba(0,0,0,0.15);
  padding-bottom: 4px;
  transition: color 0.2s;
  display: inline-block;
}
.contact-email:hover { color: rgba(0,0,0,0.5); }

/* Offices */
.offices-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.office-card {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.office-card:last-child { border-bottom: none; padding-bottom: 0; }
.office-card-city {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  font-style: italic;
  color: #111;
}
.office-card-country {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.4);
  margin-top: 0.15rem;
}
.office-card-note {
  font-size: 0.8rem;
  color: rgba(0,0,0,0.3);
  margin-top: 0.5rem;
}

/* Social links */
.social-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.social-link {
  font-size: 0.9rem;
  color: rgba(0,0,0,0.5);
  transition: color 0.2s;
  letter-spacing: 0.02em;
}
.social-link:hover { color: #111; }

/* Responsive */
@media (max-width: 1024px) {
  .contact-body-inner {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .contact-hero { padding: 8rem 1.5rem 4rem; }
  .contact-body { padding: 5rem 1.5rem; }
  .form-row { flex-direction: column; gap: 2.5rem; }
  .contact-hero-scroll-hint { display: none; }
  .contact-info-col { flex-direction: column; }
}

/* ====================================================
   SERVICES PAGE
==================================================== */

/* --- Hero --- */
.svc-hero {
  min-height: 100vh;
  background: #EDE7DE;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10rem 3rem 6rem;
  position: relative;
  overflow: hidden;
}
/* Grid overlay */
.svc-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}
/* Ambient radial glow */
.svc-hero::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 70vw;
  height: 70vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(161,160,136,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.svc-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.svc-hero .label { margin-bottom: 2rem; text-align: center; }
.svc-hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 130px);
  font-weight: 300;
  line-height: 0.95;
  color: #111;
  margin-bottom: 2.5rem;
}
.svc-hero-title em {
  font-style: italic;
  color: rgba(0,0,0,0.35);
}
.svc-hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(0,0,0,0.5);
  line-height: 1.6;
  max-width: 560px;
  font-weight: 300;
  margin: 0 auto;
}
.svc-scroll-hint {
  position: absolute;
  bottom: 3rem;
  right: 3rem;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.35);
}

/* --- Service CTA link inside accordion --- */
.service-cta {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: #111;
  border-bottom: 1px solid rgba(0,0,0,0.3);
  padding-bottom: 2px;
  transition: opacity 0.2s;
}
.service-cta:hover { opacity: 0.5; }

/* --- Selected Work --- */
.svc-work {
  background: #EDE7DE;
  color: #111;
}
.svc-work-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.svc-work-header {
  margin-bottom: 4rem;
}
.svc-work-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 80px);
  font-weight: 300;
  line-height: 1;
  color: #111;
  margin-top: 1rem;
}
.svc-work-title em {
  font-style: italic;
  color: rgba(0,0,0,0.35);
}

/* Override portfolio grid for beige bg */
.svc-work .portfolio-grid {
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.svc-work .portfolio-title {
  color: #111;
}
.svc-work .portfolio-tags {
  color: rgba(0,0,0,0.45);
}

/* Responsive */
@media (max-width: 768px) {
  .svc-hero { padding: 8rem 1.5rem 5rem; }
  .svc-scroll-hint { display: none; }
  .svc-work .portfolio-grid { grid-template-columns: 1fr; }
}

/* ====================================================
   PAGE TRANSITION OVERLAY
==================================================== */
.page-transition-overlay {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  z-index: 99999;
  pointer-events: none;
  overflow: hidden;
}

.transition-panel {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: #050505; /* Casi negro */
  transform: translateY(0);
  transition: transform 0.6s cubic-bezier(0.85, 0, 0.15, 1);
  will-change: transform;
  z-index: 10;
}

/* Loaded state: panel slides up, off-screen */
.page-transition-overlay.is-loaded .transition-panel {
  transform: translateY(-100%);
}

/* Instant bottom state: place panel at the bottom instantly */
.page-transition-overlay.instant-bottom .transition-panel {
  transform: translateY(100%) !important;
  transition: none !important;
}

/* Transition Logo (Centered and static, on top of panel) */
.transition-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 20; /* Por encima del panel */
  width: 140px;
  height: auto;
  filter: invert(96%) sepia(9%) saturate(373%) hue-rotate(343deg) brightness(97%) contrast(92%); /* Beige Claro #EDE7DE */
  opacity: 1;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.page-transition-overlay.is-loaded .transition-logo {
  opacity: 0;
  transition-delay: 0.1s; /* Retraso para que el panel empiece a moverse antes de borrarse */
}

/* ---- LANGUAGE SWITCHER ---- */
.nav-cta {
  display: flex;
  align-items: center;
}

.lang-switcher {
  position: relative;
  display: inline-block;
  margin-right: 2rem;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--black);
  cursor: pointer;
}
[data-theme="dark"] .lang-switcher,
.sanae-page .nav.nav--transparent .lang-switcher {
  color: var(--white);
}

.lang-current {
  cursor: inherit;
  pointer-events: none; /* Let the container handle hover */
}
.lang-current u {
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.lang-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(15px) scale(0.95);
  transform-origin: top center;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 6px;
  padding: 0.35rem 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  min-width: 70px;
  text-align: center;
  z-index: 100;
}

.lang-switcher:hover .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(8px) scale(1);
}

.lang-dropdown a {
  display: block;
  padding: 0.5rem 1rem;
  color: var(--black);
  text-decoration: none;
  font-size: 0.75rem;
  transition: background 0.2s;
  cursor: pointer;
}

.lang-dropdown a:hover {
  background: rgba(0,0,0,0.04);
}



/* ====================================================
   CONTACT SPLIT LAYOUT (2 COLUMNS)
==================================================== */
.contact-hero-split {
  min-height: 100vh;
  background: #EDE7DE;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10rem 3rem 6rem;
  position: relative;
}

/* Reusing grid background overlay */
.contact-hero-split::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  z-index: 0;
}

.contact-hero-split-inner {
  max-width: 1300px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  position: relative;
  z-index: 1;
}

/* Left Column Styling */
.contact-left-col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-left-col .contact-hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 5.5vw, 5.8rem);
  font-weight: 300;
  line-height: 0.95;
  color: #111;
  margin-top: 1rem;
  margin-bottom: 2rem;
  text-align: left;
}

.contact-left-col .contact-hero-title em {
  font-style: italic;
  color: rgba(0,0,0,0.35);
}

.contact-left-col .contact-hero-sub {
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  color: rgba(0,0,0,0.5);
  line-height: 1.6;
  max-width: 480px;
  font-weight: 300;
  margin: 0;
  text-align: left;
}

/* Left Bottom Business Info */
.contact-business-info {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  border-top: 1px solid rgba(0,0,0,0.08);
  padding-top: 2rem;
}

.contact-business-info .info-block {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-business-info .info-label {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.4);
  font-weight: 500;
}

.contact-business-info .info-email {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 300;
  color: #111;
  font-style: italic;
  border-bottom: 1px solid rgba(0,0,0,0.15);
  padding-bottom: 2px;
  align-self: flex-start;
  transition: opacity 0.2s;
}

.contact-business-info .info-email:hover {
  opacity: 0.7;
}

.contact-business-info .contact-social-links {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.contact-business-info .social-link {
  font-size: 0.85rem;
  color: rgba(0,0,0,0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-business-info .social-link:hover {
  color: #000;
}

/* Right Column Form override alignments */
.contact-right-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-right-col .contact-submit {
  align-self: flex-start;
}

/* Responsive for Split Layout */
@media (max-width: 968px) {
  .contact-hero-split {
    padding: 8rem 2rem 4rem;
  }
  .contact-hero-split-inner {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .contact-left-col {
    gap: 2rem;
  }
  .contact-business-info {
    margin-top: 2rem;
  }
}

/* ====================================================
   NEW PROCESS TIMELINE SECTION (HORIZONTAL & STICKY PIN)
==================================================== */
.process-pinned-scroll {
  height: 250vh; /* Scroll height for pin duration */
  position: relative;
  background: var(--black);
}

.process {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 0 3rem;
}

.process-sticky-container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.process-header-new {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 4rem;
  align-items: start;
}

.process-intro-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.process-title-new {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 5.5vw, 6.2rem);
  font-weight: 300;
  line-height: 0.95;
  color: #1c1a17;
  margin: 0;
}

.process-subtitle-new {
  font-size: clamp(1rem, 1.3vw, 1.25rem);
  color: var(--grey-mid);
  line-height: 1.5;
  max-width: 580px;
  font-weight: 300;
}

.process-timeline-wrapper {
  position: relative;
  width: 100%;
}

.process-timeline-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
  padding-bottom: 0.5rem;
}

.timeline-col {
  padding: 3rem 2.5rem 3rem 0;
  display: flex;
  flex-direction: column;
  position: relative;
  opacity: 0.05; /* Hide completely initially */
  transform: translateY(15px);
  transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1), transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.timeline-col:last-child {
  padding-right: 0;
}

.timeline-col.active {
  opacity: 1;
  transform: translateY(0);
}

.timeline-step-label {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 1.25rem;
}

.timeline-step-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.3vw, 2.5rem);
  font-weight: 300;
  color: #111;
  margin-bottom: 1.25rem;
  line-height: 1.1;
}

.timeline-step-desc {
  font-size: 0.88rem;
  color: var(--grey-mid);
  line-height: 1.7;
  font-weight: 300;
  max-width: 320px;
}

/* Plus indicators alignment (+ markers in the grid) */
.timeline-plus-marker {
  position: absolute;
  bottom: -9px; /* center it on the 1px bottom border line */
  left: 0;
  font-size: 0.9rem;
  color: rgba(0, 0, 0, 0.35);
  font-weight: 300;
  line-height: 1;
  z-index: 5;
}

/* Add final right marker on the last column */
.timeline-col:last-child::after {
  content: "+";
  position: absolute;
  bottom: -9px;
  right: 0;
  font-size: 0.9rem;
  color: rgba(0, 0, 0, 0.35);
  font-weight: 300;
  line-height: 1;
  z-index: 5;
}

/* Progress bar line (horizontal timeline border) */
.timeline-progress-track {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.08);
  overflow: hidden;
  z-index: 2;
}

.timeline-progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: #111;
  transform-origin: left center;
  transition: width 0.1s ease-out;
  will-change: width;
}

/* Responsive adjustment (disable sticky scroll on mobile for better UX) */
@media (max-width: 900px) {
  .process-pinned-scroll {
    height: auto;
    background: var(--black);
  }
  .process {
    position: static;
    height: auto;
    padding: 5rem 1.5rem;
  }
  .process-sticky-container {
    gap: 3rem;
  }
  .process-header-new {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .process-timeline-new {
    grid-template-columns: 1fr;
    padding-bottom: 0;
  }
  .timeline-col {
    padding: 2.5rem 0;
    opacity: 1; /* Always visible on mobile */
    transform: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }
  .timeline-col:last-child {
    border-bottom: none;
  }
  .timeline-plus-marker {
    bottom: -9px;
    left: 0;
  }
  .timeline-col:last-child::after {
    display: none;
  }
  .timeline-progress-track {
    display: none;
  }
}

/* ====================================================
   BRANDING EXPERIENCE SECTION (STUDIO)
==================================================== */
.brand-experience-section {
  background: var(--off-white);
  padding: 10rem 3rem;
  border-top: 1px solid var(--border);
  position: relative; /* Crucial: sets the boundary/context for sticky elements */
  overflow: visible;  /* Crucial: prevents overflow clipping which disables sticky positioning */
}

.brand-experience-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 4fr 6fr; /* Left 40%, Right 60% */
  gap: 6rem;
  align-items: start; /* Allows columns to have separate heights so left can slide alongside right */
  position: relative;
  overflow: visible;  /* Ensures no overflow hidden interrupts sticky behavior */
}

/* Sticky left column */
.brand-experience-left {
  position: -webkit-sticky;
  position: sticky;
  top: 140px; /* Offset to clear the navigation bar safely */
  align-self: start; /* Instructs layout engine not to stretch the element height to parent height */
  height: auto;
}

.brand-experience-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.2vw, 4.8rem);
  font-weight: 300;
  line-height: 1.05;
  color: #111;
}

.brand-experience-author {
  display: block;
  font-size: 0.55em;
  font-style: italic;
  text-transform: none;
  color: var(--grey-mid);
  margin-top: 0.5rem;
}

.brand-experience-img-container {
  margin-top: 3rem;
  width: 100%;
  max-width: 320px; /* Tamaño armónico para no saturar la columna */
  overflow: hidden;
  border-radius: 0px;
}

.brand-experience-img {
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(0.96) contrast(1.02); /* Sutil filtro de tono */
  transition: transform 0.8s var(--ease);
}

.brand-experience-left:hover .brand-experience-img {
  transform: scale(1.03); /* Efecto hover premium al pasar el ratón */
}

/* Right column layout */
.brand-experience-right {
  display: flex;
  flex-direction: column;
  padding-top: 25vh; /* Centers content horizontally relative to the viewport/sticky item */
  gap: 6rem; /* Spacing between text blocks to allow scroll progress */
  padding-bottom: 25vh; /* Gives room to scroll past the last item smoothly */
}

.experience-block {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.experience-block-title {
  font-size: clamp(0.7rem, 1vw, 0.97rem); /* A la mitad del tamaño (respecto a 1.95rem) */
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey);
  font-weight: 500;
}

.experience-block-text {
  font-family: var(--font-display);
  font-size: 2rem; /* Tamaño fijo a 2rem */
  font-weight: 300;
  line-height: 1.25;
  color: #111;
  text-align: left;
}

/* Scroll reveal word styling */
.experience-block-text span.reveal-word {
  opacity: 0.1; /* Start at 10% visibility */
  transition: opacity 0.15s ease-out;
  display: inline-block;
  margin-right: 0.25em;
}

/* Responsive */
@media (max-width: 900px) {
  .brand-experience-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .brand-experience-left {
    position: static;
  }
  .brand-experience-right {
    gap: 4rem;
  }
  .experience-block-text {
    font-size: clamp(1.5rem, 5vw, 2.5rem);
  }
}

/* ====================================================
   BRAND STRATEGY & IDENTITY MODULE (BRANDING PAGE)
==================================================== */
.strategy-identity-section {
  background: #EDE7DE; /* matches the theme of branding intro */
  padding: 8rem 3rem 4rem;
  position: relative;
  overflow: visible; /* Prevents clipping of sticky elements */
}

.strategy-identity-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
  position: relative;
  overflow: visible; /* Prevents clipping of sticky elements */
}

/* LEFT COLUMN */
.si-left {
  display: flex;
  flex-direction: column;
  position: -webkit-sticky;
  position: sticky;
  top: 140px; /* Offset to clear the navigation bar safely */
  align-self: start;
  height: auto;
}

.si-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: #111;
  margin-bottom: 2rem;
}

.si-desc {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: #111;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 3rem;
  max-width: 600px;
}

.si-desc span.reveal-word, .si-title span.reveal-word {
  opacity: 0.2;
  transition: opacity 0.15s ease-out;
  display: inline-block;
  margin-right: 0.25em;
}

.si-highlight {
  background: var(--off-white);
  padding: 2rem;
  border-left: 2px solid var(--black);
  margin-bottom: 3rem;
  max-width: 550px;
}
.si-highlight p {
  font-size: 1rem;
  color: #111;
  line-height: 1.5;
}
.si-highlight strong {
  font-weight: 500;
}

.si-meta {
  display: flex;
  gap: 3rem;
  margin-bottom: 4rem;
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  max-width: 550px;
}
.si-meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.si-meta-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--grey-mid);
}
.si-meta-val {
  font-family: var(--font-display);
  font-size: 2rem;
  color: #111;
  line-height: 1;
}

.si-actions {
  display: flex;
  align-items: center;
}

/* Removed custom CTA classes */
/* RIGHT COLUMN (Deliverables) */
.si-right {
  background: var(--off-white);
  padding: 4rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.si-deliverables-title {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--grey);
  border-bottom: 1px solid var(--border);
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

.si-deliverable-group h4 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  color: #111;
  margin-bottom: 1rem;
}

.si-deliverable-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.si-deliverable-group ul li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 1.05rem;
  color: var(--grey-dark);
  font-weight: 300;
}
.si-deliverable-group ul li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--grey-mid);
}

/* Responsive */
@media (max-width: 900px) {
  .strategy-identity-inner {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .si-right {
    padding: 2.5rem;
  }
  .si-meta {
    flex-direction: column;
    gap: 1.5rem;
  }
  .si-actions {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
  }
  .si-actions a {
    margin: 0 !important;
    text-align: center;
    width: 100%;
  }
}

/* ====================================================
   FULL-WIDTH ACCORDION GALLERY
==================================================== */
.gallery-accordion-track {
  display: flex;
  gap: 15px;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  align-items: flex-start; /* Aligns items to the top, so they grow downwards */
  justify-content: center;
}

.accordion-item {
  flex: 1; /* Equal base width */
  transition: flex 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  cursor: pointer;
}

.accordion-item img {
  width: 100%;
  height: auto; /* Maintains original proportions, no cropping */
  display: block;
  border-radius: 4px;
}

.accordion-item:hover {
  flex: 1.5; /* Expands width by 50%, which naturally scales height by 50% */
}

@media (max-width: 900px) {
  .gallery-accordion-track {
    flex-direction: column;
    padding: 0 1.5rem;
    width: 100%;
  }
  .accordion-item {
    flex: none;
    width: 100%;
    margin-bottom: 15px;
  }
  .accordion-item:hover {
    flex: none; 
    transform: scale(1.05); /* Simple zoom on mobile */
  }
}

/* ====================================================
   GLOBAL NEXT PROJECT INTERACTION
==================================================== */
.next-project-wrapper {
  margin-top: 3.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
}

.next-project-wrapper.next-project--center {
  margin-top: 0;
  padding: 8rem 3rem;
  background: #fff;
  align-items: center;
  text-align: center;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.next-project-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #909090;
  margin-bottom: 0.5rem;
}

.next-project-link {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 1.35rem;
  color: #050505;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  align-self: flex-start;
  transition: opacity 0.3s ease;
}

.next-project-wrapper.next-project--center .next-project-link {
  font-size: 2.2rem;
  align-self: center;
  gap: 0.75rem;
}

.next-project-link span {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: transform 0.3s ease;
}

.next-project-wrapper.next-project--center .next-project-link span {
  font-size: 1.4rem;
}

.next-project-link:hover {
  opacity: 0.6;
}

.next-project-link:hover span {
  transform: translateX(4px);
}

/* =====================================================
   IMAGE TRAIL EFFECT (Shop & Home Hero)
===================================================== */
.hero-trail-active {
  cursor: none !important;
}

.trail-cursor {
  position: fixed;
  width: 8px;
  height: 8px;
  background: #050505;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, opacity 0.2s ease;
  mix-blend-mode: difference;
  opacity: 0;
}

.trail-img {
  position: fixed;
  pointer-events: none;
  z-index: 9000;
  border-radius: 4px;
  overflow: hidden;
  will-change: transform, opacity;

  /* Size — portrait crop, small */
  width: 130px;
  height: 170px;
  object-fit: cover;

  /* Enter state — scale from zero using 3D acceleration */
  opacity: 0;
  transform: translate3d(-50%, -50%, 0) scale3d(0, 0, 1) rotate(var(--rot));

  /* Ultra snappy entrance */
  transition:
    opacity 0.1s ease-out,
    transform 0.14s cubic-bezier(0.175, 0.885, 0.32, 1.15); /* Snappy spring */
}

.trail-img.is-visible {
  opacity: 1;
  transform: translate3d(-50%, -50%, 0) scale3d(1, 1, 1) rotate(var(--rot));
}

.trail-img.is-hiding {
  opacity: 0;
  transform: translate3d(-50%, -50%, 0) scale3d(0, 0, 1) rotate(var(--rot));
  transition:
    opacity 0.15s ease-in,
    transform 0.18s cubic-bezier(0.6, -0.28, 0.735, 0.045);
}

/* ============================================================
   PROMO WEB (promoweb.html) STYLES
============================================================ */
:root {
  --bg-dark: #1A1A1A;
  --bg-light: #F6F5F0;
  --text-main: #2C2D2B;
  --text-body: #3B3C39;
  --text-light: #F6F5F0;
  --accent: #a8a187;
  --shadow-soft: 0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.16);
}

.bg-dark { background-color: var(--bg-dark); }
.bg-light { background-color: var(--bg-light); }
.bg-white { background-color: #ffffff; }

.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
  box-sizing: border-box;
}

.text-light { color: var(--text-light) !important; }
.text-center { text-align: center; }
.max-w-700 { max-width: 700px; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.w-full { width: 100%; }
.max-w-sm { max-width: 24rem; }
.inline-flex { display: inline-flex; }
.rounded-xl { border-radius: 1rem; }
.shadow-soft { box-shadow: var(--shadow-soft); }

.section-title {
  font-family: 'FreightBig', Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 300;
  color: var(--text-main);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.section-sub {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  color: var(--text-body);
  line-height: 1.5;
  margin-bottom: 2.5rem;
}

/* Promo Rating Badge (Avatar Stack + Stars) */
.promo-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.avatar-stack {
  display: flex;
  align-items: center;
}
.avatar-stack-img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid #fff;
  margin-left: -12px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.avatar-stack-img:first-child {
  margin-left: 0;
}
.rating-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  line-height: 1.3;
}
.rating-stars {
  color: #ff9f00;
  font-size: 1.15rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.1rem;
}
.rating-text {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--text-body);
}

.promo-hero {
  padding: 8rem 0 5rem;
  background: var(--black);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.promo-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  z-index: 0;
}
.promo-hero-inner {
  position: relative;
  z-index: 1;
}
.promo-title {
  font-family: 'FreightBig', Georgia, serif;
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 300;
  color: var(--text-main);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.promo-sub {
  font-size: 1.1rem;
  color: var(--text-body);
  max-width: 700px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}
.promo-urgency { margin-bottom: 2rem; }
.promo-urgency-badge {
  color: var(--text-main);
  padding: 0;
  background: none;
  font-size: 0.95rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.pulsing-dot {
  width: 9px;
  height: 9px;
  background-color: #ff7a00;
  border-radius: 50%;
  position: relative;
  display: inline-block;
}
.pulsing-dot::after {
  content: '';
  width: 100%;
  height: 100%;
  background-color: #ff7a00;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  animation: pulseGPS 2s infinite ease-out;
}
@keyframes pulseGPS {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(3.5);
    opacity: 0;
  }
}
.promo-cta-wrap { margin-bottom: 3rem; }
.promo-trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-body);
  border-top: 1px solid rgba(0,0,0,0.1);
  border-bottom: 1px solid rgba(0,0,0,0.1);
  padding: 1rem 0;
  max-width: 800px;
  margin: 0 auto 4rem;
}
.promo-trust-row .divider {
  width: 1px;
  height: 1.5rem;
  background-color: rgba(0,0,0,0.1);
}
.promo-hero-fan {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  /* Reduce height so it takes less DOM space, letting images bleed over */
  height: clamp(300px, 45vw, 550px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2; /* Ensure it overlaps nicely */
}
.fan-img {
  position: absolute;
  border-radius: 1.25rem;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease, z-index 0s;
  height: auto;
  transform-origin: center center;
}
.fan-center {
  width: 65%; /* 50% larger than 45% */
  left: 50%;
  z-index: 5;
  transform: translateX(-50%) rotate(0deg) translateY(0);
}
.fan-center:hover {
  z-index: 10;
  transform: translateX(-50%) scale(1.05) translateY(-2%);
  box-shadow: 0 25px 60px rgba(0,0,0,0.3);
}

.fan-inner-left {
  width: 60%;
  left: 35%;
  z-index: 4;
  transform: translateX(-50%) rotate(-8deg) translateY(5%);
}
.fan-inner-left:hover {
  z-index: 10;
  transform: translateX(-50%) rotate(-4deg) scale(1.08) translateY(-2%);
  box-shadow: 0 25px 60px rgba(0,0,0,0.3);
}

.fan-inner-right {
  width: 60%;
  left: 65%;
  z-index: 4;
  transform: translateX(-50%) rotate(8deg) translateY(5%);
}
.fan-inner-right:hover {
  z-index: 10;
  transform: translateX(-50%) rotate(4deg) scale(1.08) translateY(-2%);
  box-shadow: 0 25px 60px rgba(0,0,0,0.3);
}

.fan-outer-left {
  width: 50%;
  left: 18%;
  z-index: 3;
  transform: translateX(-50%) rotate(-16deg) translateY(12%);
}
.fan-outer-left:hover {
  z-index: 10;
  transform: translateX(-50%) rotate(-8deg) scale(1.1) translateY(-2%);
  box-shadow: 0 25px 60px rgba(0,0,0,0.3);
}

.fan-outer-right {
  width: 50%;
  left: 82%;
  z-index: 3;
  transform: translateX(-50%) rotate(16deg) translateY(12%);
}
.fan-outer-right:hover {
  z-index: 10;
  transform: translateX(-50%) rotate(8deg) scale(1.1) translateY(-2%);
  box-shadow: 0 25px 60px rgba(0,0,0,0.3);
}

.promo-hero-fan:hover .fan-img:not(:hover) {
  opacity: 0.5;
}

/* Custom Cursor Tooltip */
.fan-cursor-tooltip {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  background-color: #000000;
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  z-index: 1000;
  opacity: 0;
  transform: translate(-50%, -150%);
  transition: opacity 0.2s ease;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(0,0,0,0.25);
  font-family: inherit;
}
.fan-cursor-tooltip.active {
  opacity: 1;
}

@media (max-width: 768px) {
  .promo-hero-fan { height: clamp(250px, 60vw, 400px); }
  .fan-center { width: 75%; }
  .fan-inner-left { width: 70%; left: 30%; transform: translateX(-50%) rotate(-10deg) translateY(5%); }
  .fan-inner-right { width: 70%; left: 70%; transform: translateX(-50%) rotate(10deg) translateY(5%); }
  .fan-outer-left { width: 60%; left: 10%; transform: translateX(-50%) rotate(-20deg) translateY(12%); }
  .fan-outer-right { width: 60%; left: 90%; transform: translateX(-50%) rotate(20deg) translateY(12%); }
}

/* Compare / Avant-Apres */
.promo-avant-apres { padding: 6rem 0; }
.promo-stats-row {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}
.promo-stat {
  background-color: var(--bg-light);
  padding: 1rem 1.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
}
.promo-compare-grid {
  display: grid;
  grid-template-columns: 1.2fr 2fr 1.2fr;
  gap: 0;
  align-items: center;
}
.compare-col {
  display: flex;
  flex-direction: column;
}
.compare-slider-col {
  position: relative;
  z-index: 2;
}
.compare-avant {
  background-color: var(--black);
  padding: 2.5rem 2rem;
  border-radius: 1rem 0 0 1rem;
  border: none;
  position: relative;
  z-index: 1;
}
.compare-apres {
  background-color: var(--black);
  padding: 2.5rem 2rem;
  border-radius: 0 1rem 1rem 0;
  border: none;
  position: relative;
  z-index: 1;
}
.compare-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text-main);
  min-height: 30px;
}
.promo-mini-logo {
  height: 28px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
}
.logo-strike { text-decoration: line-through; color: var(--text-body); font-weight: 600; }
.compare-list { list-style: none; padding: 0; margin: 0; }
.compare-list li { margin-bottom: 0.85rem; padding-left: 1.5rem; position: relative; font-size: 0.88rem; line-height: 1.4; color: var(--text-body); }
.list-cross li::before { content: '✕'; position: absolute; left: 0; color: #ff6b6b; font-weight: bold; }
.list-check li::before { content: '✓'; position: absolute; left: 0; color: #4CAF50; font-weight: bold; }

/* Slider Avant/Après */
.ba-slider { position:relative; width:100%; aspect-ratio: 9 / 16; overflow:hidden; border-radius:1rem; cursor:col-resize; user-select:none; box-shadow: var(--shadow-soft); container-type: inline-size; }
.ba-before, .ba-after-img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; pointer-events:none; }
.ba-after-img { clip-path: inset(0 50% 0 0); }
.ba-handle { position:absolute; top:0; left:50%; width:4px; height:100%; background:#fff; z-index:10; transform:translateX(-50%); }
.ba-handle-circle { position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width:44px; height:44px; background:#fff; border-radius:50%; display:flex; align-items:center; justify-content:center; box-shadow:0 2px 16px rgba(0,0,0,0.25); color: #1a1a1a; font-weight: bold; }
.ba-label { position:absolute; top:1rem; font-size:0.75rem; font-weight:600; padding:0.4rem 0.8rem; border-radius:9999px; z-index:11; letter-spacing:0.05em; pointer-events:none; }
.ba-label-left { left:1rem; background:rgba(0,0,0,0.65); color:#fff; }
.ba-label-right { right:1rem; background:var(--bg-dark); color:var(--text-light); }

/* Infinite Carousel */
.promo-carousel-sec { padding: 4rem 0; overflow: hidden; }
@keyframes bwalaScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-400px * 9 - 2rem * 9)); }
}
.carousel-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: bwalaScroll 41s linear infinite;
  align-items: center;
}
.carousel-track:hover { animation-play-state: paused; }
.carousel-item {
  flex: 0 0 auto;
  width: 400px;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.carousel-item img {
  width: 100%; height: auto; display: block;
}

/* ROI */
.promo-roi { padding: 6rem 0; }
.roi-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  margin-bottom: 4rem;
}
.roi-benefit-card {
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-soft);
}
.roi-b-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.roi-b-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-dark);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  flex-shrink: 0;
}
.roi-b-perc {
  font-size: clamp(3.5rem, 6vw, 4.5rem);
  font-weight: 300;
  font-family: 'FreightBig', serif;
  color: var(--text-main);
  line-height: 1;
}
.roi-b-title { font-size: 1.1rem; font-weight: 600; margin-bottom: 1rem; }
.roi-b-text { font-size: 0.95rem; color: var(--text-body); line-height: 1.5; }

.roi-calculator-card {
  background-color: var(--bg-dark);
  border-radius: 1.5rem;
  padding: 3rem;
  color: var(--text-light);
  max-width: 860px;
  margin: 0 auto;
}
.roi-calc-title {
  font-family: 'FreightBig', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 300;
  margin-bottom: 2.5rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.roi-inputs {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}
.roi-inputs-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.btn-roi-cta {
  display: inline-block;
  background-color: var(--bg-light);
  color: var(--bg-dark) !important;
  padding: 1.2rem 2.5rem;
  border-radius: 9999px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1.15rem;
  transition: transform 0.2s, background-color 0.2s;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.1);
}
.btn-roi-cta:hover {
  background-color: #ffffff;
  transform: translateY(-2px);
}
.roi-input-group label { display: block; margin-bottom: 0.5rem; font-size: 0.9rem; color: #aaa; }
.roi-input-group input[type="number"] { width: 100%; background: #2a2a2a; border: 1px solid #444; color: #fff; padding: 0.75rem 1rem; border-radius: 0.5rem; font-size: 1rem; }
.roi-slider-group label { display: block; margin-bottom: 0.5rem; font-size: 0.9rem; color: #aaa; }
.slider-labels { display: flex; justify-content: space-between; font-size: 0.8rem; color: #888; margin-bottom: 0.5rem; }
.slider-labels .accent-label { color: var(--accent); }
.roi-slider-group input[type="range"] { width: 100%; margin-bottom: 1rem; accent-color: var(--accent); }
.slider-current-val { text-align: center; font-size: 1.25rem; font-weight: 600; color: var(--accent); }

.roi-results { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.roi-res-col { padding: 2rem; border-radius: 1rem; }
.roi-res-current { background-color: #2a2a2a; }
.roi-res-after { background-color: var(--bg-light); color: var(--text-main); }
.roi-res-col h4 { font-size: 1.2rem; margin-bottom: 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 0.5rem; }
.roi-res-after h4 { border-bottom-color: rgba(0,0,0,0.1); }
.res-row { display: flex; justify-content: space-between; margin-bottom: 1rem; font-size: 1.05rem; }
.res-row.highlight { color: #4CAF50; font-weight: 600; }
.res-row.total { font-size: 1.25rem; font-weight: bold; border-top: 1px solid rgba(0,0,0,0.1); padding-top: 1rem; margin-top: 1rem; }
.roi-res-current .res-row.total { border-top-color: rgba(255,255,255,0.1); }
.res-row.text-sm { font-size: 0.85rem; color: var(--text-body); }
.roi-cta-note { font-size: 0.85rem; color: #aaa; margin-top: 0.5rem; }

/* Process Promo Footer */
.process-footer-new {
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.process-footer-text {
  font-family: 'FreightBig', Georgia, serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-style: italic;
  font-weight: 300;
  color: var(--text-main);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}
.process-footer-sub {
  font-size: 1.05rem;
  color: var(--text-body);
  margin-bottom: 1.5rem;
}

/* Team */
.promo-team { padding: 6rem 0; }
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; max-width: 700px; margin: 3rem auto 0; }
.team-card-img-wrap { position: relative; aspect-ratio: 3/4; border-radius: 1rem; overflow: hidden; box-shadow: var(--shadow-soft); transition: transform 0.3s ease; }
.team-card-img-wrap:hover { transform: scale(1.03); }
.team-card-img-wrap img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.luis-img img { object-position: 25% center; }
.vanessa-img img { object-position: 75% center; }
.team-card-info { margin-top: 1rem; }
.team-card-name { font-weight: 600; font-size: 1.1rem; color: var(--text-main); }
.team-card-role { font-size: 0.85rem; color: var(--text-body); margin-top: 0.25rem; }

/* Testimonials */
.promo-testimonials { padding: 6rem 0; }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }
.testi-img { width: 100%; border-radius: 1rem; box-shadow: var(--shadow-soft); }
.btn-secondary { display: inline-block; padding: 0.75rem 2rem; border: 1px solid var(--text-main); color: var(--text-main); border-radius: 9999px; text-decoration: none; font-weight: 500; transition: all 0.3s; }
.btn-secondary:hover { background: var(--text-main); color: #fff; }

/* Pricing */
.promo-pricing { padding: 6rem 0; }
.pricing-split-container {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: flex-start;
}
.pricing-mockup-wrap {
  width: 100%;
  position: sticky;
  top: 140px;
}
.pricing-mockup-img {
  width: 100%;
  border-radius: 1rem;
  box-shadow: var(--shadow-lg);
  transform: rotate(-1.5deg);
  transition: transform 0.3s ease;
}
.pricing-mockup-img:hover {
  transform: rotate(0deg) scale(1.02);
}
.pricing-card {
  background: var(--bg-dark);
  color: #fff;
  border-radius: 1.5rem;
  padding: 3rem;
  width: 100%;
  box-shadow: var(--shadow-lg);
}
.pricing-title-price-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.pricing-card-title {
  font-family: 'FreightBig', Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 300;
  line-height: 1.1;
  color: #fff;
}
.pricing-card-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  flex-shrink: 0;
}
.pricing-card-price .price-old {
  font-size: 1.2rem;
  color: #888;
  text-decoration: line-through;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.pricing-card-price .price-val {
  font-family: 'FreightBig', serif;
  font-size: 3rem;
  font-weight: 300;
  color: #fff;
  line-height: 1;
}
.pricing-card-sub {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #ccc;
  margin-bottom: 2rem;
}
.pricing-cta-block {
  margin-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: 2.5rem;
}
.pricing-cta-block .btn-roi-cta {
  width: 100%;
  text-align: center;
}
.payment-badge {
  font-size: 0.8rem;
  color: #888;
  margin-top: 0.75rem;
  text-align: center;
}
.pricing-body {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.pricing-col {
  width: 100%;
}
.option-payante-col {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 2.5rem;
}
.pricing-list-title { font-size: 1.25rem; margin-bottom: 1.5rem; color: var(--accent); }
.pricing-list { list-style: none; padding: 0; margin: 0; }
.pricing-list li { margin-bottom: 0.75rem; font-size: 0.95rem; color: #ddd; }
.list-arrow li { color: #aaa; }

/* FAQ */
.promo-faq { padding: 6rem 0; }
.faq-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 4rem; }
.btn-whatsapp { display: inline-flex; align-items: center; justify-content: center; background: #25D366; color: #fff; padding: 0.75rem 1.5rem; border-radius: 9999px; text-decoration: none; font-weight: 600; margin-top: 1rem; transition: opacity 0.3s; }
.btn-whatsapp:hover { opacity: 0.9; }
.faq-accordion { border-top: 1px solid rgba(255,255,255,0.1); }
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.1); }
.faq-btn { width: 100%; background: none; border: none; color: #fff; font-family: 'Inter', sans-serif; font-size: 1.1rem; text-align: left; padding: 1.5rem 0; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-icon { font-size: 1.5rem; font-weight: 300; transition: transform 0.3s; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; color: #aaa; font-size: 0.95rem; line-height: 1.6; }
.faq-answer p { margin-bottom: 1.5rem; }
.faq-item.open .faq-answer { max-height: 500px; }
.faq-item.open .faq-icon { transform: rotate(180deg); }

/* Prefooter */
.promo-prefooter { padding: 6rem 0; }

/* Responsive Adjustments */
@media (max-width: 991px) {
  .promo-compare-grid { grid-template-columns: 1fr; }
  .compare-col { margin-bottom: 2rem; }
  .roi-inputs-row { grid-template-columns: 1fr; }
  .roi-benefits { grid-template-columns: 1fr; }
  .roi-results { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .pricing-body { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .pricing-split-container { grid-template-columns: 1fr; gap: 3rem; }
  .pricing-mockup-wrap { position: static; max-width: 600px; margin: 0 auto; }
  .pricing-mockup-img { transform: none; }
}
@media (max-width: 767px) {
  .promo-title { font-size: 2.5rem; }
  .promo-trust-row { flex-direction: column; gap: 0.5rem; }
  .promo-trust-row .divider { display: none; }
  .team-grid { grid-template-columns: 1fr; max-width: 350px; }
  .price-val { font-size: 3rem; }
}

/* Light theme for testimonials */
.testimonials.theme-light {
  background: var(--bg-light) !important;
  color: var(--text-main) !important;
}
.testimonials.theme-light .t-quote {
  color: var(--text-main) !important;
}
.testimonials.theme-light .t-name {
  color: var(--text-main) !important;
}
.testimonials.theme-light .t-role {
  color: var(--text-body) !important;
}
.testimonials.theme-light .t-btn {
  color: var(--text-main) !important;
  border-color: rgba(0,0,0,0.15) !important;
}
.testimonials.theme-light .t-btn:hover {
  background: var(--text-main) !important;
  color: #fff !important;
  border-color: var(--text-main) !important;
}
.testimonials.theme-light .t-dot {
  background: rgba(0,0,0,0.15) !important;
}
.testimonials.theme-light .t-dot.active {
  background: var(--text-main) !important;
}

/* Custom prefooter title sizing */
.promo-prefooter-title {
  font-size: clamp(3rem, 5.7vw, 4.8rem) !important;
  max-width: 1100px;
  margin: 0 auto 2.5rem;
  line-height: 1.15 !important;
}

/* Prefooter legal bar */
.prefooter-legal-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  border-top: 1px solid rgba(0,0,0,0.06);
  padding-top: 3rem;
  margin-top: 4rem;
  font-size: 0.8rem;
}
.prefooter-legal-bar a {
  color: var(--text-body);
  text-decoration: none;
  font-weight: 400;
  transition: color 0.2s;
}
.prefooter-legal-bar a:hover {
  color: var(--text-main);
}
.prefooter-legal-bar .legal-logo {
  height: 22px;
  width: auto;
  opacity: 0.8;
  display: block;
}
.prefooter-legal-bar .divider {
  color: #ccc;
  user-select: none;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 65px;
  height: 65px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}
.floating-whatsapp img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}
.floating-whatsapp:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

@media (max-width: 768px) {
  .floating-whatsapp {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 55px;
    height: 55px;
  }
  .floating-whatsapp img {
    width: 32px;
    height: 32px;
  }
}
