/* ============================================================
   PGM Studio — Design System v3
   Palette: void · cream · copper
   Type: Cormorant Garamond / DM Sans
   ============================================================ */

/* ─────────────────────────────────────────────────────────────
   0. RESET
───────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-body);
  background: var(--ivory);
  color: var(--slate);
  overflow-x: hidden;
  cursor: none;
}

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

/* ─────────────────────────────────────────────────────────────
   1. DESIGN TOKENS
───────────────────────────────────────────────────────────── */
:root {
  --void:     #0c0c0b;
  --deep:     #161613;
  --slate:    #2a2925;
  --fog:      #6b6660;
  --smoke:    #a8a39d;
  --linen:    #d9d3ca;
  --cream:    #f0ebe2;
  --ivory:    #f8f5f0;
  --white:    #ffffff;
  --copper:   #b5763a;
  --copper-l: #d09050;
  --copper-d: #8a5a28;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --text-titan:   clamp(3.5rem, 12vw, 11rem);
  --text-giant:   clamp(2.6rem, 7vw, 7rem);
  --text-display: clamp(1.9rem, 4vw, 4.2rem);
  --text-title:   clamp(1.5rem, 2.5vw, 2.6rem);
  --text-lead:    clamp(1.05rem, 1.6vw, 1.35rem);
  --text-body:    1rem;
  --text-small:   0.875rem;
  --text-micro:   0.72rem;

  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-inout: cubic-bezier(0.76, 0, 0.24, 1);
  --t-fast: 0.22s;
  --t-med:  0.5s;
  --t-slow: 0.9s;

  --z-base:    1;
  --z-up:      10;
  --z-nav:     100;
  --z-overlay: 200;
  --z-cursor:  999;
}

/* ─────────────────────────────────────────────────────────────
   2. SCROLL PROGRESS BAR
───────────────────────────────────────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 1px;
  background: var(--copper);
  z-index: var(--z-cursor);
  width: 0;
  pointer-events: none;
}

/* ─────────────────────────────────────────────────────────────
   3. CUSTOM CURSOR
───────────────────────────────────────────────────────────── */
.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: var(--z-cursor);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  will-change: transform;
}
.cursor-dot {
  width: 5px; height: 5px;
  background: var(--copper);
  transition: opacity var(--t-fast) ease, transform var(--t-fast) ease;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid rgba(181,118,58,.5);
  transition:
    width var(--t-fast) var(--ease-out),
    height var(--t-fast) var(--ease-out),
    border-color var(--t-fast) ease,
    opacity var(--t-fast) ease;
}
body.cursor-hover .cursor-ring { width: 60px; height: 60px; border-color: var(--copper); }
body.cursor-text  .cursor-ring { width: 88px; height: 88px; border-color: rgba(181,118,58,.25); }
body.cursor-hidden .cursor-dot,
body.cursor-hidden .cursor-ring { opacity: 0; }

/* ─────────────────────────────────────────────────────────────
   4. NAVIGATION — top bar
───────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: var(--z-nav);
  padding: 28px clamp(24px, 4vw, 60px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(12,12,11,.5) 0%, transparent 100%);
  pointer-events: none;
  transition: opacity var(--t-med) ease;
}
.nav.scrolled {
  padding: 16px clamp(24px, 4vw, 60px);
  background: var(--ivory);
  box-shadow: 0 1px 0 rgba(0,0,0,.06);
}
.nav.scrolled::before { opacity: 0; }

.nav-logo-img {
  height: 52px; width: auto;
  display: block;
  filter: brightness(10);
  transition: filter var(--t-med) ease, height var(--t-fast) ease;
  position: relative; z-index: 1;
}
.nav.scrolled .nav-logo-img { filter: none; height: 42px; }
.nav.nav-light::before       { opacity: 0; }
.nav.nav-light .nav-logo-img { filter: none; }
.nav.nav-light .nav-menu-btn { color: var(--slate); }
.nav.nav-light.scrolled { background: var(--ivory); }

/* ── Inline nav links (desktop) ── */
.nav-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
  z-index: 1;
}
.nav-link {
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(248,245,240,.75);
  text-decoration: none;
  transition: color var(--t-fast) ease;
  white-space: nowrap;
}
.nav-link:hover { color: var(--ivory); }
.nav-link.nav-active { color: var(--copper); }
.nav.scrolled .nav-link { color: var(--fog); }
.nav.scrolled .nav-link:hover { color: var(--slate); }
.nav.scrolled .nav-link.nav-active { color: var(--copper); }
.nav.nav-light .nav-link { color: var(--fog); }
.nav.nav-light .nav-link:hover { color: var(--slate); }
.nav.nav-light .nav-link.nav-active { color: var(--copper); }

@media (max-width: 960px) {
  .nav-links { display: none; }
}

/* ── Nav dropdown (desktop) ── */
.nav-dropdown-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.nav-dropdown-trigger {
  display: flex; align-items: center; gap: 5px;
  background: none; border: none; padding: 0;
  cursor: none;
  font-family: var(--font-body); font-size: .72rem; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(248,245,240,.75);
  transition: color var(--t-fast) ease;
  white-space: nowrap;
}
.nav-dropdown-trigger:hover { color: var(--ivory); }
.nav.scrolled .nav-dropdown-trigger { color: var(--fog); }
.nav.scrolled .nav-dropdown-trigger:hover { color: var(--slate); }
.nav.nav-light .nav-dropdown-trigger { color: var(--fog); }
.nav.nav-light .nav-dropdown-trigger:hover { color: var(--slate); }
.nav-chevron { font-size: .5rem; opacity: .65; transition: transform .2s ease; }
.nav-dropdown-wrap:hover .nav-chevron,
.nav-dropdown-wrap:focus-within .nav-chevron { transform: rotate(180deg); }

.nav-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--ivory);
  border: 1px solid var(--linen);
  min-width: 230px;
  padding: 6px 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
  z-index: 300;
  box-shadow: 0 16px 40px rgba(0,0,0,.1);
}
.nav-dropdown::before {
  content: '';
  position: absolute; top: -14px; left: 0; right: 0; height: 14px;
}
.nav-dropdown-wrap:hover .nav-dropdown,
.nav-dropdown-wrap:focus-within .nav-dropdown {
  opacity: 1; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-item {
  display: block; padding: 9px 20px;
  font-family: var(--font-body); font-size: .68rem; font-weight: 400;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--fog); text-decoration: none;
  transition: color .15s ease, background .15s ease;
  cursor: none;
}
.nav-dropdown-item:hover { color: var(--copper); background: var(--cream); }
.nav-dropdown-divider {
  height: 1px; background: var(--linen); margin: 5px 0;
}

/* ── Nav overlay: Servicios sub-links (mobile) ── */
.nav-overlay-services { border-bottom: 1px solid rgba(255,255,255,.06); }
.nav-overlay-services-hdr {
  display: grid; grid-template-columns: 80px 1fr;
  align-items: baseline; gap: 0;
  padding: 12px 0 8px;
}
.nav-overlay-services-hdr .link-num {
  font-style: normal; font-size: .68rem; font-weight: 300;
  letter-spacing: .14em; color: var(--copper); padding-top: 2px;
}
.nav-overlay-services-hdr .link-inner {
  font-family: var(--font-display); font-size: clamp(1.6rem,4vw,2.6rem);
  font-weight: 300; color: var(--ivory); line-height: 1.1;
}
.nav-overlay-services-sub {
  display: flex; flex-direction: column; gap: 0;
  padding-left: 80px; padding-bottom: 12px;
}
.nav-overlay-services-sub a {
  font-family: var(--font-body); font-size: .72rem; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(255,255,255,.5);
  text-decoration: none; padding: 7px 0;
  transition: color .2s ease;
  border-top: 1px solid rgba(255,255,255,.05);
}
.nav-overlay-services-sub a:hover { color: var(--copper); }

.nav-menu-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: var(--text-micro);
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  cursor: none;
  transition: color var(--t-fast) ease;
  position: relative; z-index: 1;
}
.nav.scrolled .nav-menu-btn { color: var(--slate); }

.nav-hamburger {
  width: 22px; height: 12px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.nav-hamburger span {
  display: block; width: 100%; height: 1px;
  background: currentColor;
  transition: transform var(--t-med) var(--ease-out), opacity var(--t-fast) ease, width var(--t-med) var(--ease-out);
}
.nav-hamburger span:nth-child(2) { width: 65%; }

/* ─────────────────────────────────────────────────────────────
   5. NAVIGATION — fullscreen overlay
───────────────────────────────────────────────────────────── */
.nav-overlay {
  position: fixed; inset: 0;
  z-index: var(--z-overlay);
  background: var(--void);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(40px,6vw,80px);
  clip-path: circle(0% at calc(100% - 60px) 44px);
  transition: clip-path .85s var(--ease-inout);
  pointer-events: none;
}
.nav-overlay.open {
  clip-path: circle(160% at calc(100% - 60px) 44px);
  pointer-events: all;
}

.nav-close {
  position: absolute;
  top: clamp(20px,3vw,36px);
  right: clamp(24px,4vw,60px);
  display: flex; align-items: center; gap: 10px;
  color: var(--smoke);
  font-family: var(--font-body);
  font-size: var(--text-micro);
  letter-spacing: .15em;
  text-transform: uppercase;
  cursor: none;
  transition: color var(--t-fast) ease;
}
.nav-close:hover { color: var(--cream); }
.nav-close-icon { width: 18px; height: 18px; position: relative; }
.nav-close-icon::before,
.nav-close-icon::after {
  content: '';
  position: absolute; top: 50%; left: 50%;
  width: 18px; height: 1px; background: currentColor;
}
.nav-close-icon::before { transform: translate(-50%,-50%) rotate(45deg); }
.nav-close-icon::after  { transform: translate(-50%,-50%) rotate(-45deg); }

.nav-overlay-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 40px;
}

.nav-overlay-links {
  display: flex; flex-direction: column; gap: 4px;
}
.nav-overlay-link {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.2rem,5vw,5rem);
  font-weight: 300;
  color: rgba(240,235,226,.65);
  letter-spacing: -.02em;
  line-height: 1.2;
  cursor: none;
  padding: 2px 0;
  transition: color var(--t-fast) ease;
  overflow: hidden;
}
.nav-overlay-link:hover { color: var(--cream); }
.link-inner {
  display: inline-block;
  transition: transform var(--t-med) var(--ease-out);
}
.nav-overlay-link:hover .link-inner { transform: translateX(10px); }
.link-num {
  font-family: var(--font-body);
  font-size: var(--text-micro);
  letter-spacing: .15em;
  color: var(--copper);
  vertical-align: super;
  margin-right: 6px;
  font-style: normal;
}

.nav-overlay-side { display: flex; flex-direction: column; gap: 36px; padding-bottom: 4px; }

.nav-overlay-cta {
  display: inline-block;
  padding: 18px 36px;
  border: 1px solid var(--copper);
  color: var(--copper);
  font-family: var(--font-body);
  font-size: var(--text-micro);
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: none;
  transition: background var(--t-fast) ease, color var(--t-fast) ease;
}
.nav-overlay-cta:hover { background: var(--copper); color: var(--void); }

.nav-overlay-info { color: var(--fog); font-size: var(--text-small); line-height: 1.65; }
.nav-overlay-info strong {
  display: block; color: var(--smoke);
  font-size: var(--text-micro); letter-spacing: .15em; text-transform: uppercase;
  margin-bottom: 8px; font-weight: 500;
}
.nav-overlay-info a { color: var(--smoke); transition: color var(--t-fast) ease; }
.nav-overlay-info a:hover { color: var(--copper); }

/* ─────────────────────────────────────────────────────────────
   6. LAYOUT UTILITIES
───────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
}
.container-narrow {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
}

/* ─────────────────────────────────────────────────────────────
   7. SCROLL REVEAL
───────────────────────────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
[data-reveal].revealed { opacity: 1; transform: none; }

[data-reveal-group] > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
[data-reveal-group].revealed > *:nth-child(1) { opacity:1; transform:none; transition-delay:.0s; }
[data-reveal-group].revealed > *:nth-child(2) { opacity:1; transform:none; transition-delay:.1s; }
[data-reveal-group].revealed > *:nth-child(3) { opacity:1; transform:none; transition-delay:.2s; }
[data-reveal-group].revealed > *:nth-child(4) { opacity:1; transform:none; transition-delay:.3s; }
[data-reveal-group].revealed > *:nth-child(5) { opacity:1; transform:none; transition-delay:.4s; }
[data-reveal-group].revealed > *:nth-child(6) { opacity:1; transform:none; transition-delay:.5s; }

/* ─────────────────────────────────────────────────────────────
   8. BUTTONS
───────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: var(--text-micro);
  font-weight: 400;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 18px 40px;
  position: relative;
  overflow: hidden;
  cursor: none;
  transition: color var(--t-fast) ease;
}
.btn::before {
  content: '';
  position: absolute; inset: 0;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--t-med) var(--ease-out);
  z-index: 0;
}
.btn:hover::before { transform: scaleX(1); transform-origin: left; }
.btn > span, .btn > svg { position: relative; z-index: 1; }

.btn-dark { background: var(--void); color: var(--ivory); border: 1px solid var(--void); }
.btn-dark::before { background: var(--copper-d); }

.btn-outline { background: transparent; color: var(--slate); border: 1px solid var(--linen); }
.btn-outline::before { background: var(--slate); }
.btn-outline:hover { color: var(--ivory); border-color: var(--slate); }

.btn-outline-light { background: transparent; color: var(--ivory); border: 1px solid rgba(255,255,255,.3); }
.btn-outline-light::before { background: rgba(255,255,255,.1); }
.btn-outline-light:hover { color: var(--ivory); border-color: rgba(255,255,255,.6); }

.btn-copper { background: var(--copper); color: var(--ivory); border: 1px solid var(--copper); }
.btn-copper::before { background: var(--copper-d); }

.btn-arrow::after { content: '→'; position: relative; z-index: 1; transition: transform var(--t-fast) ease; }
.btn-arrow:hover::after { transform: translateX(4px); }

/* ─────────────────────────────────────────────────────────────
   9. HERO — HOMEPAGE
───────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh; min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(48px, 7vh, 80px);
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.06);
  transition: transform 8s ease-out;
}
.hero.loaded .hero-bg img { transform: scale(1); }
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(to right,  rgba(12,12,11,.68) 0%, rgba(12,12,11,.0) 65%),
    linear-gradient(to bottom, rgba(12,12,11,.15) 0%, rgba(12,12,11,.55) 100%);
}

.hero-content {
  position: relative; z-index: 1;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: flex-end;
  gap: 32px;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-micro);
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(240,235,226,.6);
  display: block;
  margin-bottom: clamp(16px,2.5vh,28px);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem,7.5vw,7.5rem);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -.03em;
  color: var(--ivory);
  max-width: 820px;
}
.hero-title em { font-style: italic; color: rgba(240,235,226,.8); }
.hero-sub {
  margin-top: clamp(18px,2.5vh,28px);
  font-size: var(--text-small);
  font-weight: 300;
  color: rgba(240,235,226,.5);
  letter-spacing: .04em;
  max-width: 360px;
  line-height: 1.7;
}
.hero-actions {
  display: flex; align-items: center; gap: 20px;
  margin-top: clamp(28px,3.5vh,44px);
}
.hero-scroll-hint {
  display: flex; align-items: center; gap: 14px;
  color: rgba(240,235,226,.45);
  font-family: var(--font-body);
  font-size: var(--text-micro);
  letter-spacing: .15em;
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 44px; height: 1px;
  background: rgba(240,235,226,.2);
  position: relative; overflow: hidden;
}
.hero-scroll-line::after {
  content: '';
  position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: var(--copper);
  animation: lineAnim 2.2s var(--ease-out) infinite 1.8s;
}
@keyframes lineAnim { from{left:-100%} to{left:100%} }

.hero-side {
  text-align: right;
  display: flex; flex-direction: column; gap: 32px;
  padding-bottom: 4px;
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--ivory);
  line-height: 1; display: block;
}
.hero-stat-label {
  font-family: var(--font-body);
  font-size: .6rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(240,235,226,.4);
  display: block; margin-top: 4px;
}

/* ─────────────────────────────────────────────────────────────
   10. SECTION: STATEMENT
───────────────────────────────────────────────────────────── */
.section-statement {
  background: var(--void);
  padding: clamp(80px,11vw,160px) 0;
}
.statement-inner { max-width: 960px; }
.statement-rule { width: 40px; height: 1px; background: var(--copper); margin-bottom: 40px; }
.statement-quote {
  font-family: var(--font-display);
  font-size: clamp(1.7rem,3.2vw,3.6rem);
  font-weight: 300; font-style: italic;
  color: var(--cream);
  line-height: 1.35; letter-spacing: -.01em;
  margin-bottom: 36px;
}
.statement-quote em { font-style: normal; color: var(--copper); }
.statement-cite {
  font-family: var(--font-body);
  font-size: var(--text-small);
  font-weight: 300; letter-spacing: .1em;
  color: var(--fog); text-transform: uppercase;
  display: flex; align-items: center; gap: 16px;
}
.statement-cite::before { content: ''; display: block; width: 32px; height: 1px; background: var(--fog); }

/* ─────────────────────────────────────────────────────────────
   11. SECTION: SERVICES
───────────────────────────────────────────────────────────── */
.section-services { background: var(--ivory); padding: clamp(80px,10vw,140px) 0; }
.section-intro {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px; align-items: end;
  margin-bottom: clamp(44px,5.5vw,72px);
}
.section-intro h2 { color: var(--slate); }
.section-intro-right { display: flex; flex-direction: column; align-items: flex-end; gap: 20px; }

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

.service-card { position: relative; overflow: hidden; aspect-ratio: 3/4; cursor: none; }
.service-card-img { position: absolute; inset: 0; }
.service-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.06); transition: transform .9s var(--ease-out);
}
.service-card:hover .service-card-img img { transform: scale(1); }
.service-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12,12,11,.88) 0%, rgba(12,12,11,0) 55%);
  transition: background var(--t-med) ease;
}
.service-card:hover .service-card-overlay {
  background: linear-gradient(to top, rgba(12,12,11,.92) 0%, rgba(12,12,11,.25) 65%);
}

/* Gradient via pseudo-element (cuando no existe .service-card-overlay en el HTML) */
.service-card-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,12,11,.86) 0%, rgba(12,12,11,.15) 55%, transparent 80%);
  transition: background var(--t-med) ease;
  pointer-events: none;
  z-index: 1;
}
.service-card:hover .service-card-media::after {
  background: linear-gradient(to top, rgba(12,12,11,.93) 0%, rgba(12,12,11,.35) 65%, rgba(12,12,11,.08) 90%);
}

.service-card-body { position: absolute; bottom:0; left:0; right:0; padding: clamp(22px,3vw,40px); z-index: 2; }
.service-card-num { font-family: var(--font-body); font-size: .62rem; color: var(--copper); letter-spacing: .2em; text-transform: uppercase; margin-bottom: 10px; display: block; }
.service-card-title { font-family: var(--font-display); font-size: clamp(1.4rem,2.2vw,2.2rem); font-weight: 400; color: var(--ivory); line-height: 1.1; margin-bottom: 14px; }
.service-card-desc { font-size: .85rem; color: rgba(240,235,226,.68); line-height: 1.65; max-height: 0; overflow: hidden; transition: max-height .45s var(--ease-out), margin var(--t-fast) ease; }
.service-card:hover .service-card-desc { max-height: 90px; margin-bottom: 18px; }
.service-card-link { display: inline-flex; align-items: center; gap: 8px; color: var(--copper); font-family: var(--font-body); font-size: .62rem; letter-spacing: .15em; text-transform: uppercase; opacity: 0; transform: translateY(6px); transition: opacity var(--t-fast) ease, transform var(--t-med) var(--ease-out); }
.service-card:hover .service-card-link { opacity: 1; transform: none; }
.service-card-link::after { content: '→'; transition: transform var(--t-fast) ease; }
.service-card:hover .service-card-link::after { transform: translateX(3px); }

/* ─────────────────────────────────────────────────────────────
   12. BEFORE / AFTER SLIDER
───────────────────────────────────────────────────────────── */
.section-ba { background: var(--cream); padding: clamp(80px,10vw,140px) 0; }
.ba-intro { max-width: 560px; margin-bottom: clamp(36px,4vw,56px); }
.ba-intro h2 { color: var(--slate); margin-top: 12px; }
.ba-intro p { color: var(--fog); margin-top: 16px; font-size: var(--text-small); line-height: 1.75; }

.ba-container {
  position: relative; overflow: hidden;
  aspect-ratio: 16/9; cursor: ew-resize; user-select: none;
}
.ba-before, .ba-after { position: absolute; inset: 0; }
.ba-before img, .ba-after img { width:100%; height:100%; object-fit:cover; pointer-events:none; }
.ba-after { clip-path: inset(0 50% 0 0); }
.ba-handle { position: absolute; top:0; bottom:0; left:50%; width:2px; background: rgba(255,255,255,.8); cursor: ew-resize; }
.ba-handle-btn {
  position: absolute; top:50%; left:50%;
  transform: translate(-50%,-50%);
  width: 44px; height: 44px;
  background: var(--ivory); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 14px rgba(0,0,0,.22);
  font-size: 13px; color: var(--slate);
}
.ba-label {
  position: absolute; bottom: 20px;
  font-family: var(--font-body); font-size: .6rem;
  letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255,255,255,.85);
  background: rgba(12,12,11,.38);
  padding: 5px 10px; backdrop-filter: blur(4px);
  pointer-events: none;
}
.ba-label-before { left: 20px; }
.ba-label-after  { right: 20px; }

/* ── B/A: Multi-service tab switcher ── */
.ba-tabs {
  display: flex; justify-content: center; gap: 0;
  margin: 0 0 clamp(24px,3vw,40px);
  border: 1px solid var(--linen);
  width: fit-content; margin-left: auto; margin-right: auto;
}
.ba-tab {
  font-family: var(--font-body); font-size: .72rem; font-weight: 400;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--fog); background: none;
  padding: 12px 28px; border: none; cursor: none;
  transition: color .2s ease, background .2s ease;
  position: relative;
}
.ba-tab + .ba-tab { border-left: 1px solid var(--linen); }
.ba-tab:hover { color: var(--slate); background: var(--ivory); }
.ba-tab.active { color: var(--copper); background: var(--ivory); }
.ba-tab.active::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--copper);
}

.ba-panels { position: relative; }
.ba-panel { display: none; flex-direction: column; align-items: stretch; }
.ba-panel.active { display: flex; }

.ba-caption {
  text-align: center; font-size: .7rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--fog);
  margin-top: 20px; font-family: var(--font-body);
}

@media (max-width: 640px) {
  .ba-tab { padding: 10px 14px; font-size: .65rem; letter-spacing: .08em; }
}

/* ─────────────────────────────────────────────────────────────
   13. PROJECTS STRIP (horizontal scroll)
───────────────────────────────────────────────────────────── */
.section-projects { background: var(--ivory); padding-top: clamp(80px,10vw,140px); }
.projects-header { display: flex; align-items: flex-end; justify-content: space-between; padding-bottom: clamp(36px,4vw,56px); gap: 24px; }
.projects-header h2 { color: var(--slate); }
.projects-header-right { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }

.proj-btn {
  width: 46px; height: 46px;
  border: 1px solid var(--linen);
  display: flex; align-items: center; justify-content: center;
  color: var(--fog); font-size: 1rem;
  cursor: none; background: none;
  transition: border-color var(--t-fast) ease, background var(--t-fast) ease, color var(--t-fast) ease;
}
.proj-btn:hover { border-color: var(--slate); background: var(--slate); color: var(--ivory); }

.projects-track {
  display: flex; gap: 3px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none; -ms-overflow-style: none;
  cursor: grab;
  padding-bottom: clamp(48px,6vw,80px);
}
.projects-track:active { cursor: grabbing; }
.projects-track::-webkit-scrollbar { display: none; }

.project-card {
  flex-shrink: 0;
  width: clamp(260px,28vw,400px);
  scroll-snap-align: start;
  position: relative; overflow: hidden;
  aspect-ratio: 3/4; cursor: none;
}
.project-card-img { position: absolute; inset: 0; }
.project-card-img img { width:100%; height:100%; object-fit:cover; transform:scale(1.05); transition: transform .9s var(--ease-out); }
.project-card:hover .project-card-img img { transform: scale(1); }
.project-card-body { position: absolute; bottom:0; left:0; right:0; padding: 24px 22px; background: linear-gradient(to top, rgba(12,12,11,.82) 0%, transparent 100%); }
.project-card-cat { font-family: var(--font-body); font-size: .62rem; letter-spacing: .2em; text-transform: uppercase; color: var(--copper); display: block; margin-bottom: 6px; }
.project-card-title { font-family: var(--font-display); font-size: clamp(1.1rem,1.8vw,1.5rem); font-weight: 400; color: var(--ivory); line-height: 1.15; margin-bottom: 6px; }
.project-card-meta { font-family: var(--font-body); font-size: .72rem; color: rgba(240,235,226,.5); }

.projects-strip-footer { padding: 0 0 clamp(48px,6vw,80px); display: flex; justify-content: flex-end; }

/* ─────────────────────────────────────────────────────────────
   14. ABOUT — PATRICIA SPLIT
───────────────────────────────────────────────────────────── */
.section-about { display: grid; grid-template-columns: 1fr 1fr; min-height: 85vh; }
.about-image { position: relative; overflow: hidden; }
.about-image img { position: absolute; inset:0; width:100%; height:100%; object-fit:cover; object-position: center top; transform:scale(1.04); transition: transform 7s ease-out; }
.section-about:hover .about-image img { transform: scale(1); }
.about-content { background: var(--void); padding: clamp(60px,8vw,120px) clamp(40px,6vw,80px); display: flex; flex-direction: column; justify-content: center; gap: 28px; }
.about-content .overline { color: var(--copper); }
.about-content h2 { font-size: clamp(1.8rem,3vw,3.2rem); font-weight: 300; color: var(--cream); line-height: 1.1; }
.about-content h2 em { color: var(--copper); }
.about-content p { color: var(--smoke); font-size: var(--text-small); line-height: 1.8; font-weight: 300; }
.about-signature { font-family: var(--font-display); font-size: 1.3rem; font-style: italic; font-weight: 300; color: var(--fog); padding-top: 20px; border-top: 1px solid rgba(255,255,255,.08); }

/* ─────────────────────────────────────────────────────────────
   15. STATS
───────────────────────────────────────────────────────────── */
.section-stats { background: var(--cream); padding: clamp(64px,8vw,96px) 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; }
.stat-block { padding: clamp(28px,4vw,52px); background: var(--ivory); text-align: center; transition: background var(--t-fast) ease; }
.stat-block:hover { background: var(--white); }
.stat-num { font-family: var(--font-display); font-size: clamp(2rem,4.5vw,4.5rem); font-weight: 300; color: var(--slate); line-height: 1; display: block; margin-bottom: 10px; word-break: break-word; }
.stat-label { font-family: var(--font-body); font-size: var(--text-small); font-weight: 300; letter-spacing: .04em; color: var(--fog); }

/* ─────────────────────────────────────────────────────────────
   16. TESTIMONIALS
───────────────────────────────────────────────────────────── */
.section-testimonials { background: var(--void); padding: clamp(80px,10vw,140px) 0; overflow: hidden; }
.testimonials-track-wrap { overflow: hidden; }
.testimonials-track { display: flex; transition: transform .7s var(--ease-inout); }
.testimonial-slide { flex: 0 0 100%; padding: 0 clamp(24px,10vw,120px); text-align: center; }
.testimonial-stars { letter-spacing: 5px; font-size: .8rem; color: var(--copper); display: block; margin-bottom: 28px; }
.testimonial-quote { font-family: var(--font-display); font-size: clamp(1.4rem,2.8vw,2.7rem); font-weight: 300; font-style: italic; color: var(--cream); line-height: 1.45; letter-spacing: -.01em; margin-bottom: 32px; }
.testimonial-author { font-family: var(--font-body); font-size: var(--text-small); letter-spacing: .1em; text-transform: uppercase; color: var(--fog); }
.testimonials-controls { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 52px; }
.testi-btn { width: 40px; height: 40px; border: 1px solid rgba(255,255,255,.15); display: flex; align-items: center; justify-content: center; color: var(--smoke); cursor: none; background: none; transition: border-color var(--t-fast) ease, color var(--t-fast) ease; }
.testi-btn:hover { border-color: var(--copper); color: var(--copper); }
.testi-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--fog); cursor: none; transition: background var(--t-fast) ease, transform var(--t-fast) ease; border: none; }
.testi-dot.active { background: var(--copper); transform: scale(1.6); }

/* ─────────────────────────────────────────────────────────────
   17. CTA BAND
───────────────────────────────────────────────────────────── */
.section-cta { background: var(--ivory); padding: clamp(80px,10vw,140px) 0; text-align: center; position: relative; overflow: hidden; }
.section-cta::before { content: 'PGM'; position: absolute; top:50%; left:50%; transform: translate(-50%,-50%); font-family: var(--font-display); font-size: clamp(6rem,22vw,20rem); font-weight: 300; color: rgba(0,0,0,.03); line-height: 1; pointer-events: none; letter-spacing: -.05em; user-select: none; white-space: nowrap; }
.cta-eyebrow { margin-bottom: 20px; display: block; }
.cta-title { font-family: var(--font-display); font-size: var(--text-giant); font-weight: 300; color: var(--slate); line-height: 1.05; letter-spacing: -.025em; margin-bottom: 24px; }
.cta-title em { color: var(--copper); font-style: italic; }
.cta-sub { font-size: var(--text-body); color: var(--fog); max-width: 440px; margin: 0 auto 40px; line-height: 1.7; font-weight: 300; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ─────────────────────────────────────────────────────────────
   18. FOOTER
───────────────────────────────────────────────────────────── */
.footer { background: var(--void); padding: clamp(60px,8vw,96px) 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: clamp(28px,4vw,56px); padding-bottom: clamp(44px,5vw,60px); border-bottom: 1px solid rgba(255,255,255,.07); margin-bottom: 28px; }
.footer-brand {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 28px;
}
.footer-logo-img { height: 90px; width: auto; display: block; filter: brightness(10); flex-shrink: 0; }
.footer-brand-text { flex: 1; }
.footer-brand-text p { font-size: var(--text-small); color: var(--fog); font-weight: 300; line-height: 1.65; }
.footer-brand p { font-size: var(--text-small); color: var(--fog); font-weight: 300; line-height: 1.65; }
.footer-brand-sub { color: var(--smoke) !important; font-size: var(--text-micro) !important; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 10px; }
.footer-tagline { color: var(--smoke) !important; font-size: var(--text-micro) !important; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 10px; }
.footer-col h4 { font-family: var(--font-body); font-size: var(--text-micro); font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: var(--smoke); margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li a { font-size: var(--text-small); font-weight: 300; color: var(--fog); transition: color var(--t-fast) ease; }
.footer-col li a:hover { color: var(--copper); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: var(--text-micro); color: var(--fog); font-weight: 300; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: var(--text-micro); color: var(--fog); transition: color var(--t-fast) ease; }
.footer-legal a:hover { color: var(--copper); }

/* ─────────────────────────────────────────────────────────────
   19. WA FLOAT
───────────────────────────────────────────────────────────── */
.wa-float { position: fixed; bottom: 30px; right: 30px; z-index: var(--z-nav); width: 50px; height: 50px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(37,211,102,.3); cursor: none; transition: transform var(--t-fast) var(--ease-out), box-shadow var(--t-fast) ease; }
.wa-float:hover { transform: scale(1.09); box-shadow: 0 6px 24px rgba(37,211,102,.45); }
.wa-float svg { width: 22px; height: 22px; fill: white; }
.wa-tooltip { position: absolute; right: 58px; background: var(--void); color: var(--ivory); font-size: .7rem; letter-spacing: .05em; padding: 6px 12px; white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity var(--t-fast) ease, transform var(--t-fast) ease; transform: translateX(4px); }
.wa-float:hover .wa-tooltip { opacity: 1; transform: translateX(0); }

/* ─────────────────────────────────────────────────────────────
   20. PAGE HERO — with photo (subpages)
───────────────────────────────────────────────────────────── */
.page-hero { position: relative; height: 65vh; min-height: 420px; overflow: hidden; display: flex; align-items: flex-end; padding-bottom: clamp(40px,5vw,64px); }
.page-hero-bg { position: absolute; inset: 0; }
.page-hero-bg img { width:100%; height:100%; object-fit:cover; object-position: center 30%; }
.page-hero-bg::after { content:''; position: absolute; inset:0; background: linear-gradient(to bottom, rgba(12,12,11,.3) 0%, rgba(12,12,11,.68) 100%); }
.page-hero-content { position: relative; z-index:1; width:100%; }
.page-hero-content .overline { color: var(--copper); margin-bottom: 12px; display: block; }
.page-hero-content h1 { font-size: clamp(2.2rem,6vw,5.5rem); font-weight: 300; color: var(--ivory); letter-spacing: -.03em; line-height: 1.0; max-width: 760px; margin-bottom: 14px; }
.page-hero-content p { color: rgba(240,235,226,.65); font-size: var(--text-body); max-width: 520px; font-weight: 300; }

/* PAGE HERO — dark no-photo */
.page-hero-dark { background: var(--void); padding: 140px 0 64px; }
.page-hero-dark .overline { color: var(--copper); margin-bottom: 14px; display: block; }
.page-hero-dark h1 { font-size: clamp(2.2rem,6vw,5.5rem); font-weight: 300; color: var(--cream); letter-spacing: -.03em; line-height: 1.0; }
.page-hero-dark p { color: var(--smoke); margin-top: 16px; max-width: 520px; font-weight: 300; }

/* ─────────────────────────────────────────────────────────────
   21. GENERIC SECTION HELPERS
───────────────────────────────────────────────────────────── */
.section-pad    { padding: clamp(80px,10vw,140px) 0; }
.section-pad-sm { padding: clamp(48px,6vw,80px) 0; }
.bg-ivory { background: var(--ivory); }
.bg-cream { background: var(--cream); }
.bg-void  { background: var(--void); }
.bg-white { background: var(--white); }

.section-header { margin-bottom: clamp(44px,5.5vw,72px); }
.section-header .overline { margin-bottom: 12px; display: block; }
.section-header h2 { color: var(--slate); }
.section-header h2.on-dark { color: var(--cream); }
.section-header .lead { font-size: var(--text-lead); color: var(--fog); max-width: 520px; line-height: 1.65; margin-top: 18px; font-weight: 300; }
.section-header .lead.on-dark { color: var(--smoke); }

.overline { font-family: var(--font-body); font-size: var(--text-micro); font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: var(--copper); }

.split-section { display: grid; grid-template-columns: 1fr 1fr; min-height: 600px; }
.split-image { position: relative; overflow: hidden; }
.split-image img { position: absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.split-content { padding: clamp(60px,8vw,100px) clamp(40px,6vw,80px); display: flex; flex-direction: column; justify-content: center; gap: 22px; }
.split-content.dark { background: var(--void); }
.split-content.dark h2 { color: var(--cream); }
.split-content.dark p  { color: var(--smoke); }

/* ─────────────────────────────────────────────────────────────
   22. PROCESO PAGE
───────────────────────────────────────────────────────────── */
.process-list { margin-top: clamp(44px,5vw,68px); border-top: 1px solid var(--linen); }
.process-item { display: grid; grid-template-columns: 68px 1fr 1fr; gap: 28px; align-items: start; border-bottom: 1px solid var(--linen); padding: clamp(26px,3vw,44px) 0; transition: background var(--t-fast) ease; }
.process-num { font-family: var(--font-display); font-size: 2.8rem; font-weight: 300; color: var(--linen); line-height: 1; transition: color var(--t-fast) ease; }
.process-item:hover .process-num { color: var(--copper); }
.process-title { font-family: var(--font-display); font-size: clamp(1.3rem,1.8vw,1.9rem); font-weight: 400; color: var(--slate); margin-bottom: 10px; }
.process-desc { font-size: .88rem; color: var(--fog); line-height: 1.75; }
.process-detail li { font-size: .84rem; color: var(--fog); padding: 5px 0 5px 16px; position: relative; line-height: 1.6; }
.process-detail li::before { content: '—'; position: absolute; left: 0; color: var(--copper); }

.faq-list { margin-top: clamp(44px,5vw,64px); }
.faq-item { border-top: 1px solid var(--linen); }
.faq-item:last-child { border-bottom: 1px solid var(--linen); }
.faq-question { width:100%; display:flex; justify-content:space-between; align-items:center; padding: 22px 0; font-family: var(--font-body); font-size: var(--text-body); font-weight: 400; color: var(--slate); text-align: left; cursor: none; transition: color var(--t-fast) ease; }
.faq-question:hover { color: var(--copper); }
.faq-icon { font-size: 1.15rem; flex-shrink: 0; margin-left: 20px; color: var(--copper); transition: transform var(--t-med) var(--ease-out); }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .5s var(--ease-out), padding .3s ease; }
.faq-item.open .faq-answer { max-height: 400px; padding-bottom: 22px; }
.faq-answer p { font-size: .88rem; color: var(--fog); line-height: 1.8; }

/* ─────────────────────────────────────────────────────────────
   23. PROYECTOS PAGE
───────────────────────────────────────────────────────────── */
.filter-bar { display: flex; gap: 0; border: 1px solid var(--linen); width: fit-content; margin-top: clamp(28px,3vw,44px); }
.filter-btn { padding: 12px 26px; font-family: var(--font-body); font-size: var(--text-micro); letter-spacing: .12em; text-transform: uppercase; color: var(--fog); cursor: none; border-right: 1px solid var(--linen); background: transparent; transition: background var(--t-fast) ease, color var(--t-fast) ease; border-top:none; border-bottom:none; border-left:none; }
.filter-btn:last-child { border-right: none; }
.filter-btn:hover { background: var(--cream); color: var(--slate); }
.filter-btn.active { background: var(--slate); color: var(--ivory); }

.projects-page-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 3px; margin-top: clamp(36px,4vw,56px); }
.project-item { position: relative; overflow: hidden; aspect-ratio: 4/5; cursor: none; transition: opacity .4s ease; }
.project-item.hidden { opacity: .12; pointer-events: none; }
.project-item-img { position: absolute; inset:0; }
.project-item-img img { width:100%; height:100%; object-fit:cover; transform:scale(1.04); transition: transform .9s var(--ease-out); }
.project-item:hover .project-item-img img { transform: scale(1); }
.project-item-hover { position: absolute; inset:0; background: rgba(12,12,11,0); transition: background var(--t-med) ease; display:flex; align-items:flex-end; padding: 24px; }
.project-item:hover .project-item-hover { background: rgba(12,12,11,.62); }
.project-item-body { transform: translateY(12px); opacity: 0; transition: transform var(--t-med) var(--ease-out), opacity var(--t-fast) ease; }
.project-item:hover .project-item-body { transform: none; opacity: 1; }
.project-item-title { font-family: var(--font-display); font-size: 1.35rem; font-weight: 400; color: var(--ivory); margin-bottom: 4px; }
.project-item-meta { font-size: .72rem; color: rgba(240,235,226,.55); letter-spacing: .06em; }
.project-item-featured { grid-column: span 2; aspect-ratio: 16/10; }

/* ─────────────────────────────────────────────────────────────
   24. ESTUDIO PAGE
───────────────────────────────────────────────────────────── */
.studio-portraits-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 3px; margin-top: clamp(44px,5vw,68px); }
.studio-portrait { overflow: hidden; aspect-ratio: 3/4; }
.studio-portrait img { width:100%; height:100%; object-fit:cover; object-position: center top; transition: transform .9s var(--ease-out); }
.studio-portrait:hover img { transform: scale(1.04); }
.studio-values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 3px; margin-top: clamp(44px,5vw,68px); }
.studio-value { padding: clamp(28px,3.5vw,48px); background: var(--cream); transition: background var(--t-fast) ease; }
.studio-value:hover { background: var(--ivory); }
.studio-value-num { font-family: var(--font-display); font-size: 2.8rem; font-weight: 300; color: var(--linen); line-height: 1; margin-bottom: 14px; display: block; transition: color var(--t-fast) ease; }
.studio-value:hover .studio-value-num { color: var(--copper); }
.studio-value-title { font-family: var(--font-display); font-size: 1.25rem; font-weight: 400; color: var(--slate); margin-bottom: 10px; }
.studio-value-desc { font-size: .84rem; color: var(--fog); line-height: 1.7; }

/* ─────────────────────────────────────────────────────────────
   25. SERVICIOS PAGES
───────────────────────────────────────────────────────────── */
.service-features-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 3px; margin-top: clamp(44px,5vw,68px); }
.service-feature { padding: clamp(28px,3.5vw,48px); background: var(--cream); }
.service-feature h4 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 400; color: var(--slate); margin-bottom: 10px; }
.service-feature p { font-size: .84rem; color: var(--fog); line-height: 1.7; }
.include-list { margin-top: clamp(28px,3vw,44px); }
.include-item { display: flex; gap: 16px; align-items: flex-start; padding: 16px 0; border-bottom: 1px solid var(--linen); }
.include-item:first-child { border-top: 1px solid var(--linen); }
.include-dash { color: var(--copper); flex-shrink: 0; font-family: var(--font-display); font-size: 1.1rem; }
.include-text { font-size: .88rem; color: var(--fog); line-height: 1.65; }
.include-text strong { color: var(--slate); font-weight: 500; display: block; margin-bottom: 2px; }

/* ─────────────────────────────────────────────────────────────
   26. CONTACTO PAGE
───────────────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px,6vw,80px); align-items: start; }
.contact-info-item { padding: 22px 0; border-bottom: 1px solid var(--linen); }
.contact-info-item:first-child { border-top: 1px solid var(--linen); }
.contact-info-label { font-size: var(--text-micro); font-weight: 500; letter-spacing: .16em; text-transform: uppercase; color: var(--fog); margin-bottom: 6px; display: block; }
.contact-info-value { font-family: var(--font-display); font-size: 1.25rem; font-weight: 400; color: var(--slate); }
.contact-info-value a { transition: color var(--t-fast) ease; }
.contact-info-value a:hover { color: var(--copper); }

/* ─────────────────────────────────────────────────────────────
   27. LEGAL PAGES
───────────────────────────────────────────────────────────── */
.legal-content { max-width: 760px; }
.legal-content h2 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 400; color: var(--slate); margin: 48px 0 14px; padding-top: 48px; border-top: 1px solid var(--linen); }
.legal-content h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.legal-content p { margin-bottom: 14px; font-size: .88rem; color: var(--fog); line-height: 1.8; }
.legal-content ul { margin: 10px 0 18px; display: flex; flex-direction: column; gap: 7px; }
.legal-content li { font-size: .88rem; color: var(--fog); line-height: 1.75; padding-left: 18px; position: relative; }
.legal-content li::before { content: '—'; position: absolute; left: 0; color: var(--copper); }
.legal-content a { color: var(--copper); border-bottom: 1px solid transparent; transition: border-color var(--t-fast) ease; }
.legal-content a:hover { border-bottom-color: var(--copper); }
.legal-updated { display: inline-block; font-size: var(--text-micro); color: var(--fog); background: var(--cream); padding: 5px 12px; margin-bottom: 44px; }
.cookies-table-wrap { overflow-x: auto; margin: 18px 0 24px; }
.cookies-table { width: 100%; border-collapse: collapse; font-size: .82rem; }
.cookies-table th { text-align: left; padding: 11px 14px; background: var(--cream); color: var(--slate); font-weight: 500; border-bottom: 2px solid var(--linen); white-space: nowrap; }
.cookies-table td { padding: 11px 14px; color: var(--fog); border-bottom: 1px solid var(--linen); vertical-align: top; line-height: 1.6; }
.cookies-table tr:last-child td { border-bottom: none; }
.cookie-type-badge { display: inline-block; font-size: .7rem; padding: 2px 7px; border-radius: 2px; font-weight: 500; }
.badge-tecnica   { background: #e8f0e8; color: #2d5a2d; }
.badge-analitica { background: #f0ede8; color: #5a4a2d; }
.badge-terceros  { background: #ede8f0; color: #3d2d5a; }

/* ─────────────────────────────────────────────────────────────
   28. RESPONSIVE
───────────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .stats-grid     { grid-template-columns: repeat(2,1fr); }
  .footer-grid    { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 900px) {
  .hero-side      { display: none; }
  .hero-content   { grid-template-columns: 1fr; }
  .services-grid  { grid-template-columns: 1fr 1fr; }
  .section-about  { grid-template-columns: 1fr; }
  .about-image    { aspect-ratio: 4/3; height: auto; min-height: 400px; }
  .about-image img { position: absolute; }
  .projects-page-grid { grid-template-columns: repeat(2,1fr); }
  .project-item-featured { grid-column: span 2; }
  .studio-portraits-grid { grid-template-columns: repeat(3,1fr); }
  .studio-values-grid { grid-template-columns: 1fr 1fr; }
  .service-features-grid { grid-template-columns: 1fr; }
  .contact-grid   { grid-template-columns: 1fr; }
  .split-section  { grid-template-columns: 1fr; }
  .split-image    { aspect-ratio: 4/3; height: auto; min-height: 360px; }
  .split-image img { position: absolute; }
  .nav-overlay-body { grid-template-columns: 1fr; }
  .nav-overlay-side { display: none; }
  .section-intro  { grid-template-columns: 1fr; gap: 20px; }
  .section-intro-right { align-items: flex-start; }
  .process-item   { grid-template-columns: 52px 1fr; }
  .process-detail { grid-column: 1/-1; }
}
@media (max-width: 700px) {
  .nav { padding: 20px 24px; }
  .nav.scrolled { padding: 14px 24px; }
  .nav-close { right: 24px; top: 20px; }
  .nav-overlay { padding: 72px 24px 40px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { aspect-ratio: 4/3; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat-block { padding: 24px 20px; }
  .projects-page-grid { grid-template-columns: 1fr; }
  .project-item-featured { grid-column: span 1; aspect-ratio: 4/5; }
  .studio-portraits-grid { grid-template-columns: 1fr 1fr; }
  .studio-values-grid { grid-template-columns: 1fr; }
  .filter-bar { width: 100%; flex-wrap: wrap; }
  .filter-btn { flex: 1; text-align: center; min-width: 80px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .hero-scroll-hint { display: none; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .hero-title { font-size: clamp(2.2rem,10vw,3.5rem); }
  .testimonial-quote { font-size: clamp(1.2rem,5vw,1.7rem); }
  .studio-portraits-grid { grid-template-columns: 1fr; }
  .ba-label { font-size: .56rem; padding: 4px 8px; }
}

/* ─────────────────────────────────────────────────────────────
   29. GLOBALS
───────────────────────────────────────────────────────────── */
::selection { background: var(--copper); color: var(--ivory); }
:focus-visible { outline: 1px solid var(--copper); outline-offset: 3px; }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--ivory); }
::-webkit-scrollbar-thumb { background: var(--linen); }
::-webkit-scrollbar-thumb:hover { background: var(--copper); }

/* ═════════════════════════════════════════════════════════════
   31. LAYOUT CORRECTIONS & PROPORTION AUDIT
   Marketing review — May 2026
═════════════════════════════════════════════════════════════ */

/* ── Hero: align text with page container margin ── */
.hero-content {
  padding-left:  clamp(24px, 5vw, 80px);
  padding-right: clamp(24px, 5vw, 80px);
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Hero micro text ── */
.hero-micro {
  font-size: .7rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(240,235,226,.42);
  margin-top: 16px;
  display: block;
}

/* ── Hero scroll indicator ── */
.hero-scroll {
  position: absolute;
  bottom: clamp(28px,4vh,48px);
  left: clamp(24px, 5vw, 80px);
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(240,235,226,.38);
  text-decoration: none;
  transition: color .3s ease;
}
.hero-scroll:hover { color: rgba(240,235,226,.65); }
.hero-scroll-line {
  width: 40px; height: 1px;
  background: rgba(240,235,226,.2);
  overflow: hidden; position: relative;
}
.hero-scroll-line::after {
  content: '';
  position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: var(--copper);
  animation: lineAnim 2.4s var(--ease-out) infinite 2s;
}

/* ── Before/After: handle text fix ── */
.ba-handle-circle {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--ivory); border: none; cursor: ew-resize;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,.28);
  font-size: 0; color: transparent;
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
}
.ba-handle-circle::before { content: '⟷'; font-size: 1rem; color: var(--slate); }

/* ── Project strip items: correct overlay ── */
.projects-strip .project-item {
  flex: 0 0 clamp(260px, 28vw, 380px);
  height: clamp(380px, 52vh, 540px);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  cursor: grab;
  aspect-ratio: unset !important;
}
.projects-strip .project-item:active { cursor: grabbing; }
.projects-strip .project-item > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 1s var(--ease-out);
  pointer-events: none;
}
.projects-strip .project-item:hover > img { transform: scale(1); }

/* Project item hover overlay */
.project-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12,12,11,.88) 0%, rgba(12,12,11,.0) 52%);
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: clamp(18px, 2vw, 28px);
  transition: background .5s ease;
}
.project-item:hover .project-item-overlay {
  background: linear-gradient(to top, rgba(12,12,11,.92) 0%, rgba(12,12,11,.25) 75%);
}
.project-item-overlay h4 {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.6vw, 1.4rem);
  font-weight: 400;
  color: var(--ivory);
  line-height: 1.15;
  margin-bottom: 6px;
  transform: translateY(5px);
  transition: transform .4s var(--ease-out);
}
.project-item:hover .project-item-overlay h4 { transform: none; }
.project-item-overlay span {
  font-size: .65rem;
  color: rgba(240,235,226,.5);
  letter-spacing: .12em;
  text-transform: uppercase;
}

/* ── Projects strip: correct padding ── */
.section-projects-strip { padding: 100px 0 0; }
.section-projects-strip .container .strip-header {
  padding: 0; /* container already provides margins */
  margin-bottom: clamp(36px, 4vw, 56px);
}
.projects-strip {
  padding: 0 clamp(24px, 5vw, 80px) clamp(36px, 4vw, 56px);
}
/* strip-footer already inside container → no extra padding */

/* ── Proyectos page hero content ── */
.proyectos-hero { padding: 140px 0 64px; }
.proyectos-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 7rem);
  font-weight: 300;
  color: var(--ivory);
  line-height: 1.0;
  letter-spacing: -.03em;
  margin-top: 14px;
  margin-bottom: 18px;
}
.proyectos-hero p {
  color: var(--smoke);
  font-size: var(--text-body);
  max-width: 480px;
  line-height: 1.7;
  font-weight: 300;
}

/* ── Filter bar layout ── */
.filter-bar {
  background: var(--ivory);
  padding: 36px 0 0;
  border-bottom: 1px solid var(--linen);
}
.filter-bar-inner {
  display: flex;
  gap: 0;
  border: 1px solid var(--linen);
  width: fit-content;
  margin: 0 clamp(24px, 5vw, 80px) 32px;
}

/* ── Project featured (proyectos page) ── */
.project-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  margin: 0 clamp(24px, 5vw, 80px) 48px;
  border: 1px solid var(--linen);
  overflow: hidden;
}
.project-featured-content {
  padding: clamp(40px, 5vw, 64px);
}

/* ── Projects list grid: full card structure ── */
.projects-list { padding: 0 0 80px; }
.projects-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 0;
  padding: 0 clamp(24px, 5vw, 80px);
}

/* Reset strip-card styles in grid context */
.projects-list-grid .project-card {
  width: auto !important;
  flex-shrink: unset !important;
  scroll-snap-align: unset !important;
  aspect-ratio: unset !important;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--linen);
  transition: box-shadow .35s var(--ease-out), transform .35s var(--ease-out);
}
.projects-list-grid .project-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,.09);
  transform: translateY(-3px);
}

.project-card-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  flex-shrink: 0;
}
.project-card-media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 1s var(--ease-out);
}
.projects-list-grid .project-card:hover .project-card-media img { transform: scale(1); }

/* Body override for grid */
.projects-list-grid .project-card-body {
  position: static !important;
  background: var(--white) !important;
  padding: 22px 24px 24px !important;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.projects-list-grid .project-card-body .project-card-cat {
  color: var(--copper);
  margin-bottom: 6px;
}
.projects-list-grid .project-card-body .project-card-title {
  color: var(--slate);
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  margin-bottom: 3px;
}
.project-card-location {
  font-size: .7rem;
  color: var(--smoke);
  letter-spacing: .06em;
  margin-bottom: 12px;
}
.project-card-desc {
  font-size: .87rem;
  color: var(--fog);
  line-height: 1.78;
  flex: 1;
  margin-bottom: 18px;
}
.project-card-footer {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  padding-top: 14px;
  border-top: 1px solid var(--linen);
  margin-top: auto;
}
.project-card-stat {
  font-size: .75rem;
  color: var(--slate);
  line-height: 1.3;
}
.project-card-stat strong {
  display: block;
  font-size: .9rem;
  color: var(--slate);
  font-weight: 600;
  margin-bottom: 2px;
}
.project-card-link {
  margin-left: auto;
  font-size: .72rem;
  color: var(--copper);
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--copper);
  transition: color .2s, letter-spacing .2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.project-card-link:hover { color: var(--copper-d); letter-spacing: .16em; }

/* Wide card: 2-column span */
.projects-list-grid .project-card.wide { grid-column: span 2; }
.projects-list-grid .project-card.wide .project-card-media { aspect-ratio: 16/7; }

/* ── About section: award block cleanup ── */
.about-award {
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(255,255,255,.1);
  padding: 18px 22px;
  background: rgba(255,255,255,.03);
}
.about-award img { display: none; }
.about-award::before { content: '◈'; color: var(--copper); font-size: 1.1rem; flex-shrink: 0; }
.about-award strong { display: block; font-size: .8rem; color: var(--ivory); font-weight: 500; margin-bottom: 3px; }
.about-award span { font-size: .68rem; color: var(--smoke); letter-spacing: .06em; }

/* ── Section statement proportions ── */
.section-statement blockquote { quotes: none; }
.section-statement .statement-wrap { max-width: 880px; }
.section-statement .statement-body {
  color: var(--fog);
  line-height: 1.85;
  font-size: var(--text-small);
  max-width: 620px;
  margin-top: 24px;
}

/* ── CTA band: consistent spacing ── */
.section-cta-band { padding: clamp(80px, 11vw, 140px) 0; }
.cta-band-inner { padding: 0 clamp(24px, 5vw, 80px); }

/* ── Section header text alignment ── */
.section-header.text-center { text-align: center; }
.section-header.text-center .lead,
.section-header.text-center p { margin-left: auto; margin-right: auto; }

/* ── Service pages: image proportions ── */
.service-intro-image { overflow: hidden; }
.service-intro-image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

/* ── Page hero image: always cover ── */
.page-hero-media { position: absolute; inset: 0; }
.page-hero-media img,
.page-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.page-hero-media::after,
.page-hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(12,12,11,.25) 0%, rgba(12,12,11,.65) 100%);
}

/* ── Projects page: responsive grid ── */
@media (max-width: 1100px) {
  .projects-list-grid { grid-template-columns: 1fr 1fr; }
  .projects-list-grid .project-card.wide { grid-column: span 2; }
  .project-featured { grid-template-columns: 1fr; }
  .project-featured-media { aspect-ratio: 16/9; min-height: 320px; }
}
@media (max-width: 700px) {
  .projects-list-grid { grid-template-columns: 1fr; gap: 16px; }
  .projects-list-grid .project-card.wide { grid-column: span 1; }
  .projects-list-grid .project-card.wide .project-card-media { aspect-ratio: 4/3; }
  .project-featured { margin: 0 0 32px; }
  .projects-strip .project-item { flex: 0 0 clamp(230px, 80vw, 320px); height: clamp(320px, 55vw, 420px); }
  .filter-bar-inner { margin: 0 16px 24px; flex-wrap: wrap; }
  .proyectos-hero h1 { font-size: clamp(2.4rem, 10vw, 4rem); }
}

/* ═════════════════════════════════════════════════════════════
   30. COMPATIBILITY ALIASES & MISSING CLASSES
   Maps HTML class names used in templates to v3 design system
═════════════════════════════════════════════════════════════ */

/* ── Button aliases ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px; border: none; cursor: pointer;
  font-family: var(--font-body); font-size: .78rem;
  font-weight: 500; letter-spacing: .08em; text-transform: uppercase;
  text-decoration: none; transition: background .3s var(--ease-out), color .3s var(--ease-out), transform .3s var(--ease-out);
  background: var(--copper); color: var(--ivory);
}
.btn-primary:hover { background: var(--copper-l); transform: translateY(-2px); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px; background: transparent; cursor: pointer;
  font-family: var(--font-body); font-size: .78rem;
  font-weight: 500; letter-spacing: .08em; text-transform: uppercase;
  text-decoration: none; border: 1px solid rgba(255,255,255,.35); color: var(--ivory);
  transition: border-color .3s, background .3s, transform .3s var(--ease-out);
}
.btn-ghost:hover { border-color: var(--ivory); background: rgba(255,255,255,.06); transform: translateY(-2px); }

/* ── Alias selectors (same styles, different names) ── */
.service-card-media { /* alias for .service-card-img */
  position: absolute; inset: 0; overflow: hidden;
}
.service-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease-out); }
.service-card:hover .service-card-media img { transform: scale(1.05); }

.ba-handle-circle { /* alias for .ba-handle-btn */
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--ivory); border: none; cursor: ew-resize;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(0,0,0,.3);
}
.ba-handle-circle::before { content: '↔'; font-size: .9rem; color: var(--void); }

.filter-tab { /* alias for .filter-btn */
  padding: 8px 20px; background: transparent;
  border: 1px solid var(--linen); color: var(--fog);
  font-family: var(--font-body); font-size: .72rem;
  letter-spacing: .1em; text-transform: uppercase; cursor: pointer;
  transition: all .3s var(--ease-out);
}
.filter-tab:hover, .filter-tab.active { background: var(--void); border-color: var(--void); color: var(--ivory); }

.footer-brand-sub { /* alias for .footer-tagline */
  font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--smoke); margin-bottom: 12px;
}

.page-hero-media { /* alias for .page-hero-bg */
  position: absolute; inset: 0; overflow: hidden;
}
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; }

.hero-micro { /* small overline text above hero heading */
  font-size: .68rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--copper); margin-bottom: 16px; display: block;
}
.hero-scroll { /* alias for .hero-scroll-hint */
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: .68rem; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.5);
}

.section-lead { /* alias: lead paragraph inside sections */
  font-family: var(--font-display); font-size: clamp(1.4rem,2.5vw,1.9rem);
  font-weight: 300; color: var(--slate); line-height: 1.55;
  max-width: 680px; margin-bottom: 28px;
}

.statement-wrap, .statement-body { max-width: 900px; margin: 0 auto; }

/* ── Testimonials aliases ── */
.testimonials-wrapper { overflow: hidden; position: relative; }
.testi-stars { display: flex; gap: 3px; margin-bottom: 20px; }
.testi-stars span { color: var(--copper); font-size: .9rem; }
.testi-quote { font-family: var(--font-display); font-size: clamp(1.3rem,2.8vw,2rem); font-weight: 300; font-style: italic; color: var(--ivory); line-height: 1.55; margin-bottom: 28px; }
.testi-author { display: flex; flex-direction: column; gap: 4px; }
.testi-author strong { font-size: .85rem; font-weight: 500; color: var(--ivory); letter-spacing: .04em; }
.testi-author span { font-size: .73rem; color: var(--smoke); letter-spacing: .08em; text-transform: uppercase; }

/* ── About section extensions ── */
.about-name { font-size: .78rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: var(--copper); margin-bottom: 4px; }
.about-role { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--fog); margin-bottom: 24px; }
.about-quote { font-family: var(--font-display); font-size: clamp(1.3rem,2.5vw,1.8rem); font-style: italic; font-weight: 300; color: var(--slate); line-height: 1.55; margin-bottom: 20px; }
.about-bio { color: var(--fog); line-height: 1.85; margin-bottom: 16px; }
.about-award { display: inline-flex; align-items: center; gap: 8px; font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--copper); padding: 8px 16px; border: 1px solid var(--copper-d); margin-top: 8px; }

/* ── CTA Band (section-cta-band / cta-band-inner) ── */
.section-cta-band {
  padding: 100px 0;
  background: var(--void);
  text-align: center;
}
.cta-band-inner { max-width: 680px; margin: 0 auto; padding: 0 24px; }
.cta-band-inner .overline { color: var(--copper); margin-bottom: 16px; display: block; }
.cta-band-inner h2 { font-family: var(--font-display); font-size: clamp(2rem,4vw,3rem); font-weight: 300; color: var(--ivory); margin-bottom: 20px; line-height: 1.25; }
.cta-band-inner p { color: var(--smoke); line-height: 1.75; margin-bottom: 36px; font-size: .95rem; }

/* ── Horizontal scroll strip (index.html projects section) ── */
.section-projects-strip { padding: 100px 0; background: var(--void); overflow: hidden; }
.section-projects-strip .strip-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; padding: 0 60px; }
.strip-header h2 { font-family: var(--font-display); font-size: clamp(2rem,4vw,3rem); font-weight: 300; color: var(--ivory); }
.strip-arrows { display: flex; gap: 12px; }
.strip-btn, .proj-prev, .proj-next { width: 48px; height: 48px; border: 1px solid rgba(255,255,255,.2); background: transparent; color: var(--ivory); font-size: 1.1rem; cursor: pointer; transition: all .3s var(--ease-out); display: flex; align-items: center; justify-content: center; }
.strip-btn:hover, .proj-prev:hover, .proj-next:hover { background: var(--copper); border-color: var(--copper); }
.strip-footer { text-align: center; margin-top: 48px; }
.projects-strip { display: flex; gap: 20px; overflow-x: auto; padding: 0 60px 24px; cursor: grab; scrollbar-width: none; -ms-overflow-style: none; justify-content: center; }
.projects-strip::-webkit-scrollbar { display: none; }
.projects-strip:active { cursor: grabbing; }
.projects-strip .project-card { flex: 0 0 420px; height: 560px; border-radius: 0; }
@media (max-width: 768px) {
  .section-projects-strip .strip-header { padding: 0 24px; flex-direction: column; align-items: flex-start; gap: 20px; }
  .projects-strip { padding: 0 24px 24px; }
  .projects-strip .project-card { flex: 0 0 300px; height: 420px; }
}

/* ── Service pages ── */
.service-section { padding: 100px 0; }
.service-section.alt { background: var(--ivory); }
.service-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.service-intro-image { overflow: hidden; }
.service-intro-image img { width: 100%; aspect-ratio: 4/5; object-fit: cover; display: block; }

.service-benefits { padding: 100px 0; background: var(--ivory); }
.benefits-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 48px; margin-top: 60px; }
.benefit-item { padding: 36px 28px; border: 1px solid var(--linen); background: var(--white); }
.benefit-item h4 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 400; color: var(--slate); margin: 16px 0 12px; }
.benefit-item p { color: var(--fog); line-height: 1.8; font-size: .9rem; }
.benefit-icon { font-size: 1.1rem; color: var(--copper); }

.service-includes { padding: 100px 0; }
.includes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 48px; }
.include-item { display: flex; align-items: flex-start; gap: 16px; padding: 20px 24px; background: var(--ivory); border: 1px solid var(--linen); }
.include-item p { color: var(--fog); line-height: 1.7; font-size: .92rem; margin: 0; }
.include-check { width: 28px; height: 28px; background: var(--copper); color: var(--ivory); font-size: .7rem; font-weight: 600; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

@media (max-width: 900px) {
  .service-intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .benefits-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .includes-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .service-section { padding: 64px 0; }
  .service-benefits { padding: 64px 0; }
  .service-includes { padding: 64px 0; }
  .benefits-grid { grid-template-columns: 1fr; }
}

/* ── Process page ── */
.process-steps-full { display: flex; flex-direction: column; padding: 80px 0; }
.process-step-full { display: grid; grid-template-columns: 120px 1fr; gap: 0 48px; border-top: 1px solid var(--linen); padding: 48px 0; align-items: start; }
.process-step-full:last-child { border-bottom: 1px solid var(--linen); }
.process-step-num-col { display: flex; align-items: flex-start; padding-top: 4px; }
.process-step-num-big { font-family: var(--font-display); font-size: 4rem; font-weight: 300; color: var(--linen); line-height: 1; }
.process-step-text { }
.process-step-text .process-title { font-family: var(--font-display); font-size: clamp(1.4rem,2.5vw,1.9rem); font-weight: 400; color: var(--slate); margin-bottom: 12px; }
.process-step-text .process-desc { color: var(--fog); line-height: 1.85; margin-bottom: 20px; }
.process-step-detail { background: var(--ivory); border-left: 2px solid var(--copper); padding: 16px 20px; color: var(--fog); font-size: .88rem; line-height: 1.75; font-style: italic; margin-top: 8px; }

@media (max-width: 700px) {
  .process-step-full { grid-template-columns: 1fr; gap: 12px; }
  .process-step-num-big { font-size: 2.5rem; }
}

/* ── Contact page ── */
.contact-hero {
  min-height: 38vh; display: flex; align-items: flex-end;
  background: var(--void); padding: 80px 0 64px;
}
.contact-hero-inner { max-width: 700px; padding: 0 60px; }
.contact-hero-inner h1 { font-family: var(--font-display); font-size: clamp(2.5rem,6vw,4.5rem); font-weight: 300; color: var(--ivory); line-height: 1.15; margin-bottom: 20px; }
.contact-hero-inner p { color: var(--smoke); line-height: 1.75; font-size: 1rem; }

.contact-page { padding: 80px 0 100px; }
.contact-page-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }

.contact-detail { display: flex; flex-direction: column; gap: 24px; margin-top: 32px; }
.contact-detail-item { display: flex; flex-direction: column; gap: 4px; }
.contact-detail-label { font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--fog); }
.contact-detail-value { font-size: .95rem; color: var(--slate); line-height: 1.5; text-decoration: none; }
.contact-detail-value:hover { color: var(--copper); }

.contact-wa { display: inline-flex; align-items: center; gap: 10px; padding: 14px 24px; background: #25D366; color: #fff; text-decoration: none; font-size: .78rem; font-weight: 500; letter-spacing: .06em; text-transform: uppercase; transition: background .3s; }
.contact-wa:hover { background: #1da851; }

.contact-map { margin-top: 32px; border: 1px solid var(--linen); overflow: hidden; }
.contact-map iframe { display: block; width: 100%; height: 260px; border: none; filter: grayscale(1) contrast(1.05); }

.contact-form-wrap { background: var(--ivory); padding: 40px; border: 1px solid var(--linen); }
.contact-form-wrap h3 { font-family: var(--font-display); font-size: 1.7rem; font-weight: 400; color: var(--slate); margin-bottom: 8px; }
.contact-form-wrap p { color: var(--fog); font-size: .9rem; margin-bottom: 24px; }

.contact-trust-row { display: flex; gap: 0; margin-top: 36px; border: 1px solid var(--linen); }
.contact-trust-item { flex: 1; padding: 24px 20px; text-align: center; border-right: 1px solid var(--linen); }
.contact-trust-item:last-child { border-right: none; }
.contact-trust-num { font-family: var(--font-display); font-size: 2rem; font-weight: 300; color: var(--copper); line-height: 1; margin-bottom: 6px; }
.contact-trust-label { font-size: .67rem; letter-spacing: .12em; text-transform: uppercase; color: var(--fog); }

@media (max-width: 900px) {
  .contact-hero-inner { padding: 0 24px; }
  .contact-page-grid { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 600px) {
  .contact-trust-row { flex-direction: column; }
  .contact-trust-item { border-right: none; border-bottom: 1px solid var(--linen); }
  .contact-trust-item:last-child { border-bottom: none; }
  .contact-form-wrap { padding: 24px 20px; }
}

/* ── Estudio page extras ── */
.studio-portraits-row { display: flex; gap: 0; overflow: hidden; }
.studio-portrait-cell { flex: 1; overflow: hidden; position: relative; aspect-ratio: 3/4; }
.studio-portrait-cell img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 1.1s var(--ease-out); }
.studio-portrait-cell:hover img { transform: scale(1.04); }

.studio-history-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; padding: 80px 0; }
.studio-history-left { }
.studio-history-right { }
.studio-history-quote { font-family: var(--font-display); font-size: clamp(1.4rem,2.5vw,2rem); font-style: italic; font-weight: 300; color: var(--copper); line-height: 1.55; border-left: 2px solid var(--copper); padding-left: 28px; margin: 32px 0; }

.studio-award-strip { display: flex; align-items: center; gap: 0; padding: 48px 0; border-top: 1px solid var(--linen); border-bottom: 1px solid var(--linen); flex-wrap: wrap; }
.studio-award-badge { padding: 20px 40px; text-align: center; }
.studio-award-badge strong { display: block; font-family: var(--font-display); font-size: 1.2rem; font-weight: 400; color: var(--slate); margin-bottom: 4px; }
.studio-award-badge span { font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--fog); }
.studio-award-divider { width: 1px; height: 40px; background: var(--linen); flex-shrink: 0; }

.studio-services-row { display: flex; flex-direction: column; }
.studio-service-link { display: flex; align-items: center; justify-content: space-between; padding: 28px 0; border-bottom: 1px solid var(--linen); text-decoration: none; transition: all .3s var(--ease-out); }
.studio-service-link:first-child { border-top: 1px solid var(--linen); }
.studio-service-link:hover .studio-service-arrow { transform: translateX(8px); }
.studio-service-link:hover .link-inner { color: var(--copper); }
.studio-service-num { font-size: .68rem; letter-spacing: .18em; color: var(--fog); margin-right: 20px; flex-shrink: 0; }
.studio-service-arrow { font-size: 1.1rem; color: var(--copper); transition: transform .3s var(--ease-out); }

@media (max-width: 900px) {
  .studio-portraits-row { flex-direction: column; }
  .studio-portrait-cell { aspect-ratio: 16/9; }
  .studio-history-grid { grid-template-columns: 1fr; gap: 40px; padding: 48px 0; }
  .studio-award-strip { justify-content: center; }
}

/* ── Proyectos hero ── */
.proyectos-hero {
  min-height: 50vh; display: flex; align-items: flex-end;
  background: var(--void); padding: 100px 0 64px; position: relative;
}
.proyectos-hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: rgba(255,255,255,.08); }

/* ── Projects page: featured + list ── */
.project-featured { display: grid; grid-template-columns: 1fr 1fr; min-height: 560px; margin-bottom: 60px; }
.project-featured-media { overflow: hidden; position: relative; }
.project-featured-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease-out); }
.project-featured:hover .project-featured-media img { transform: scale(1.04); }
.project-featured-content { background: var(--void); padding: 60px 48px; display: flex; flex-direction: column; justify-content: flex-end; }
.project-cat-tag { font-size: .67rem; letter-spacing: .2em; text-transform: uppercase; color: var(--copper); margin-bottom: 12px; }
.project-featured-title { font-family: var(--font-display); font-size: clamp(2rem,3.5vw,2.8rem); font-weight: 300; color: var(--ivory); margin-bottom: 16px; line-height: 1.2; }
.project-location { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--smoke); margin-bottom: 28px; }
.project-description { color: var(--fog); line-height: 1.8; margin-bottom: 32px; font-size: .92rem; }
.project-meta-row { display: flex; gap: 32px; margin-bottom: 36px; flex-wrap: wrap; }
.project-meta-item { display: flex; flex-direction: column; gap: 4px; }
.project-meta-label { font-size: .65rem; letter-spacing: .15em; text-transform: uppercase; color: var(--fog); }
.project-meta-value { font-size: .9rem; color: var(--smoke); }

.projects-list { padding: 60px 0 100px; }
.projects-list-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.projects-list-grid .project-card { aspect-ratio: 3/4; position: relative; overflow: hidden; }

@media (max-width: 1024px) {
  .project-featured { grid-template-columns: 1fr; }
  .project-featured-media { aspect-ratio: 16/9; }
  .project-featured-content { padding: 40px 32px; }
  .projects-list-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 640px) {
  .project-featured-content { padding: 28px 24px; }
  .projects-list-grid { grid-template-columns: 1fr; }
  .proyectos-hero { padding: 80px 0 48px; }
}

/* ═════════════════════════════════════════════════════════════
   32. FULL-AUDIT CORRECTIONS — PROCESO, ESTUDIO & SERVICIOS
═════════════════════════════════════════════════════════════ */

/* ── Process steps: proper 3-column grid ── */
.process-steps-full { display: flex; flex-direction: column; gap: 0; padding: 60px 0 80px; }

.process-step-full {
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  grid-template-rows: auto;
  gap: 0 48px;
  border-top: 1px solid var(--linen);
  padding: 52px 0;
  align-items: start;
}
.process-step-full:last-child { border-bottom: 1px solid var(--linen); }

/* Col 1: Number */
.process-step-num-col { padding-top: 6px; }
.process-step-num-big {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--linen);
  line-height: 1;
}

/* Col 2: Text */
.process-step-text h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 400;
  color: var(--slate);
  margin: 0 0 16px;
  line-height: 1.2;
}
.process-step-text p {
  color: var(--fog);
  line-height: 1.85;
  font-size: .92rem;
  margin: 0;
}

/* Col 3: Detail checklist */
.process-step-detail {
  background: var(--ivory);
  border-left: 2px solid var(--copper);
  padding: 22px 24px;
  align-self: stretch;
}
.process-step-detail ul {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.process-step-detail li {
  font-size: .85rem;
  color: var(--fog);
  line-height: 1.7;
  padding-left: 18px;
  position: relative;
}
.process-step-detail li::before {
  content: '—';
  position: absolute; left: 0;
  color: var(--copper);
}

@media (max-width: 1000px) {
  .process-step-full { grid-template-columns: 60px 1fr; }
  .process-step-detail { grid-column: 2; margin-top: 20px; }
}
@media (max-width: 600px) {
  .process-step-full { grid-template-columns: 1fr; gap: 12px; padding: 36px 0; }
  .process-step-num-big { font-size: 2rem; color: var(--copper); }
  .process-step-detail { grid-column: 1; }
}

/* ── FAQ accordion ── */
.faq-list { max-width: 800px; margin: 60px auto 0; }
.faq-item { border-bottom: 1px solid var(--linen); }
.faq-item:first-child { border-top: 1px solid var(--linen); }
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  width: 100%; padding: 22px 0; background: none; border: none;
  font-family: var(--font-body); font-size: .93rem;
  font-weight: 500; color: var(--slate); cursor: pointer; text-align: left;
  transition: color .2s;
}
.faq-question:hover { color: var(--copper); }
.faq-icon {
  font-size: 1.6rem; font-weight: 300; color: var(--copper);
  transition: transform .3s var(--ease-out); flex-shrink: 0; margin-left: 24px;
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 0 22px; }
.faq-item.open .faq-answer { display: block; }
.faq-answer p { color: var(--fog); line-height: 1.85; font-size: .9rem; margin: 0; }

/* ── Estudio: award badge — hide img, use CSS icon ── */
.studio-award-badge img { display: none; }
.studio-award-badge .award-icon {
  font-size: 1.6rem;
  color: var(--copper);
  display: block;
  margin-bottom: 10px;
}
.studio-award-badge::before {
  content: '◈';
  display: block;
  font-size: 1.6rem;
  color: var(--copper);
  margin-bottom: 10px;
}

/* ── Estudio: studio service links ── */
.studio-service-link h3 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  font-weight: 300;
  color: var(--slate);
  margin: 0 0 6px;
  transition: color .3s var(--ease-out);
  flex: 1;
}
.studio-service-link p {
  font-size: .88rem;
  color: var(--fog);
  line-height: 1.6;
  margin: 0;
  max-width: 400px;
}
.studio-service-link { gap: 20px; }
.studio-service-link .studio-service-num { min-width: 36px; }
.studio-service-link:hover h3 { color: var(--copper); }

/* ── Service intro: fix duplicate-image padding ── */
.service-intro-image img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

/* ── Page hero: ensure overlay is above img ── */
.page-hero { position: relative; min-height: 70vh; display: flex; align-items: flex-end; overflow: hidden; }
.page-hero-media { position: absolute; inset: 0; z-index: 0; }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; display: block; }
.page-hero-media::after {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom, rgba(12,12,11,.15) 0%, rgba(12,12,11,.72) 100%);
}
.page-hero-content {
  position: relative; z-index: 2;
  padding: clamp(48px, 8vw, 100px) clamp(24px, 5vw, 80px) clamp(60px, 8vw, 100px);
  max-width: 900px;
}
.page-hero-content .overline { color: var(--copper); margin-bottom: 12px; display: block; }
.page-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--ivory);
  line-height: 1.15;
  margin-bottom: 20px;
}
.page-hero-content p {
  color: var(--smoke);
  font-size: clamp(.9rem, 1.5vw, 1.1rem);
  line-height: 1.75;
  max-width: 560px;
  margin: 0;
}

@media (max-width: 768px) {
  .page-hero { min-height: 55vh; }
  .process-step-full { padding: 36px 0; }
}

/* ═══════════════════════════════════════════════════════════════
   SECTION 33 — READABILITY, CONTRAST & UX FIXES
═══════════════════════════════════════════════════════════════ */

/* ── Testimonials: ensure text is legible on dark background ── */
.section-testimonials .testi-stars { color: var(--copper); font-size: 1.1rem; letter-spacing: 4px; }
.section-testimonials .testi-quote {
  color: var(--ivory) !important;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.4vw, 1.9rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 24px;
}
.section-testimonials .testi-author { color: var(--smoke) !important; font-size: .82rem; letter-spacing: .08em; }
.section-testimonials blockquote { margin: 0; padding: 0 clamp(16px,6vw,80px); text-align: center; }
.section-testimonials cite { display: block; text-align: center; font-style: normal; }

/* ── Strip footer: "Ver todos los proyectos" button — visible on dark sections ── */
.strip-footer .btn-outline {
  color: var(--ivory);
  border-color: rgba(255, 255, 255, 0.4);
  background: transparent;
}
.strip-footer .btn-outline:hover {
  background: var(--copper);
  border-color: var(--copper);
  color: var(--ivory);
}

/* ── Process steps: hover color change + 4-column layout with image ── */
.process-step-full {
  cursor: default;
  transition: background .35s var(--ease-out), border-color .3s var(--ease-out);
  border-radius: 2px;
}
.process-step-num-big {
  transition: color .3s var(--ease-out);
}
.process-step-text h3,
.process-step-title {
  transition: color .3s var(--ease-out);
}
.process-step-full:hover {
  border-color: var(--copper);
  background: var(--cream);
}
.process-step-full:hover .process-step-num-big {
  color: var(--copper);
}
.process-step-full:hover .process-step-text h3,
.process-step-full:hover .process-step-title {
  color: var(--copper);
}
.process-step-full:hover .process-step-detail {
  background: transparent;
}
.process-step-full:hover .process-step-detail li {
  color: var(--slate);
}

/* ── Process step image (4th column) ── */
.process-step-image {
  align-self: stretch;
  position: relative;
  overflow: hidden;
  min-height: 200px;
  border-radius: 2px;
}
.process-step-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform .8s var(--ease-out);
  filter: grayscale(20%) brightness(.9);
}
.process-step-full:hover .process-step-image img {
  transform: scale(1);
  filter: grayscale(0%) brightness(1);
}

/* Override grid to 4 columns when image is present */
.process-steps-full .process-step-full {
  grid-template-columns: 80px 1fr 1fr 220px;
}
@media (max-width: 1200px) {
  .process-steps-full .process-step-full {
    grid-template-columns: 80px 1fr 1fr;
  }
  .process-step-image { display: none; }
}
@media (max-width: 1000px) {
  .process-steps-full .process-step-full {
    grid-template-columns: 60px 1fr;
  }
  .process-step-detail { grid-column: 2; margin-top: 20px; }
}
@media (max-width: 600px) {
  .process-steps-full .process-step-full {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 36px 0;
  }
  .process-step-num-big { font-size: 2rem; color: var(--copper); }
  .process-step-detail { grid-column: 1; }
}

/* ── Studio history: readable text on dark (void) background ── */
.studio-history-right p {
  color: var(--smoke) !important;
  line-height: 1.85;
  margin-bottom: 20px;
}
.studio-history-right h2 {
  color: var(--ivory) !important;
  font-weight: 300;
}
.studio-history-right .overline {
  color: var(--copper);
}

/* ── Studio portrait row: 2 photos only (hide the 3rd) ── */
.studio-portrait-cell:nth-child(3) { display: none; }
.studio-portrait-cell { aspect-ratio: 2/3; }

/* ── Hero photo base position (overridden per page below) ── */
.page-hero-media img {
  object-position: center 30%;
}

/* ── Statement quote (home): improve body text contrast on dark bg ── */
.statement-quote { color: var(--ivory) !important; }
.statement-body { color: var(--smoke) !important; }
.section-statement .overline { color: var(--copper); }

/* ── Cookie consent banner ── */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--void);
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px clamp(20px,5vw,80px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 32px rgba(0,0,0,.4);
  transform: translateY(100%);
  transition: transform .4s var(--ease-out);
}
#cookie-banner.visible { transform: translateY(0); }
#cookie-banner p {
  color: var(--smoke);
  font-size: .82rem;
  line-height: 1.6;
  margin: 0;
  max-width: 680px;
  flex: 1;
}
#cookie-banner p a { color: var(--copper); text-decoration: none; border-bottom: 1px solid transparent; transition: border-color .2s; }
#cookie-banner p a:hover { border-bottom-color: var(--copper); }
.cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.cookie-accept {
  background: var(--copper);
  color: var(--ivory);
  border: 1px solid var(--copper);
  padding: 10px 24px;
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s, border-color .2s;
}
.cookie-accept:hover { background: var(--copper-d); border-color: var(--copper-d); }
.cookie-reject {
  background: transparent;
  color: var(--smoke);
  border: 1px solid rgba(255,255,255,.2);
  padding: 10px 20px;
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 400;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color .2s, color .2s;
}
.cookie-reject:hover { border-color: rgba(255,255,255,.5); color: var(--ivory); }

@media (max-width: 600px) {
  #cookie-banner { flex-direction: column; align-items: flex-start; }
  .cookie-actions { width: 100%; }
  .cookie-accept, .cookie-reject { flex: 1; text-align: center; }
}

/* ═══════════════════════════════════════════════════════════════
   SECTION 34 — LOGO, HOVER EFFECTS, HERO FIXES
═══════════════════════════════════════════════════════════════ */

/* ── Logo: larger and more prominent ── */
.nav-logo-img {
  height: 68px !important;
  width: auto;
  transition: height .3s var(--ease-out), opacity .3s ease;
}
.nav.scrolled .nav-logo-img { height: 52px !important; }

/* ── Benefit items (Estudio / Service pages): hover color shift ── */
.benefit-item {
  transition: background .3s var(--ease-out), border-color .3s var(--ease-out), transform .3s var(--ease-out);
}
.benefit-item:hover {
  background: var(--void);
  border-color: var(--copper);
  transform: translateY(-4px);
}
.benefit-item:hover h4 {
  color: var(--ivory);
  transition: color .3s var(--ease-out);
}
.benefit-item:hover p {
  color: var(--smoke);
  transition: color .3s var(--ease-out);
}
.benefit-item:hover .benefit-icon {
  color: var(--copper);
}

/* ── Page hero: ensure nav doesn't overlap content ── */
.page-hero {
  padding-top: 0;
  min-height: 80vh !important;
}
.page-hero-media img {
  object-position: center 30%;
}

/* ── Proceso hero: imagen centrada ── */
.proceso-page .page-hero-media img {
  object-fit: cover;
  object-position: center center;
}

/* ── Estudio hero: Patricia, cara centrada ── */
.estudio-page .page-hero-media img {
  object-position: center 40%;
}

/* ── Tienda (shop) page ── */
.tienda-hero {
  background: var(--void);
  padding: clamp(140px,15vw,180px) 0 clamp(64px,8vw,100px);
}
.tienda-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 300;
  color: var(--ivory);
  line-height: 1.15;
  margin-top: 12px;
  margin-bottom: 20px;
}
.tienda-hero p {
  color: var(--smoke);
  font-size: clamp(.9rem, 1.5vw, 1.05rem);
  max-width: 520px;
  line-height: 1.75;
}
.tienda-section {
  background: var(--ivory);
  padding: clamp(80px,10vw,120px) 0;
}
.tienda-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 60px;
}
.producto-card {
  background: var(--white);
  border: 1px solid var(--linen);
  overflow: hidden;
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
}
.producto-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,.12);
}
.producto-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform .6s var(--ease-out);
}
.producto-card:hover .producto-img { transform: scale(1.04); }
.producto-body {
  padding: 24px;
}
.producto-cat {
  font-family: var(--font-body);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 8px;
  display: block;
}
.producto-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--slate);
  margin-bottom: 8px;
  line-height: 1.25;
}
.producto-desc {
  font-size: .85rem;
  color: var(--fog);
  line-height: 1.7;
  margin-bottom: 20px;
}
.producto-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.producto-precio {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--slate);
}
.producto-precio span {
  font-size: .75rem;
  font-family: var(--font-body);
  color: var(--fog);
  font-weight: 400;
}
.btn-comprar {
  background: var(--copper);
  color: var(--ivory);
  border: 1px solid var(--copper);
  padding: 10px 20px;
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background .2s, border-color .2s;
  cursor: pointer;
  white-space: nowrap;
}
.btn-comprar:hover { background: var(--copper-d); border-color: var(--copper-d); }
.btn-comprar--soon {
  background: var(--linen);
  border-color: var(--linen);
  color: var(--smoke);
  cursor: not-allowed;
  opacity: 0.7;
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.btn-comprar--soon:hover { background: var(--linen); border-color: var(--linen); }
.tienda-stripe-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .75rem;
  color: var(--fog);
  margin-top: 8px;
}
.tienda-stripe-note svg { opacity: .5; }
.tienda-guarantee {
  background: var(--cream);
  padding: 48px 0;
  text-align: center;
}
.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 40px;
}
.guarantee-item { text-align: center; }
.guarantee-icon { font-size: 1.8rem; margin-bottom: 12px; display: block; }
.guarantee-item h4 { font-family: var(--font-display); font-size: 1.1rem; color: var(--slate); margin-bottom: 8px; }
.guarantee-item p { font-size: .83rem; color: var(--fog); line-height: 1.65; }

@media (max-width: 768px) {
  .tienda-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .guarantee-grid { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 480px) {
  .tienda-grid { grid-template-columns: 1fr; }
  .producto-footer { flex-direction: column; align-items: flex-start; }
  .btn-comprar { width: 100%; justify-content: center; }
}

/* ─────────────────────────────────────────────────────────────
   35. SPACING & TYPOGRAPHY UTILITIES
───────────────────────────────────────────────────────────── */
.mt-8  { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-20 { margin-top: 20px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.mt-48 { margin-top: 48px; }

.mb-8  { margin-bottom: 8px; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.mb-20 { margin-bottom: 20px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }

/* Intro lead paragraph inside service sections */
.lead {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 300;
  color: var(--slate);
  line-height: 1.6;
  max-width: 640px;
}

/* ═══════════════════════════════════════════════════════════════
   SECTION 36 — CONSULTA MODAL + SERVICE CONTACT FORMS
═══════════════════════════════════════════════════════════════ */

/* ── Modal overlay ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(12, 12, 11, 0.82);
  z-index: 8000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s var(--ease-out);
  backdrop-filter: blur(4px);
}
.modal-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}
.modal-box {
  background: var(--ivory);
  max-width: 560px;
  width: 100%;
  padding: clamp(32px, 5vw, 52px);
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(24px);
  transition: transform .4s var(--ease-out);
  box-shadow: 0 32px 80px rgba(0,0,0,.3);
}
.modal-overlay.is-open .modal-box {
  transform: translateY(0);
}
.modal-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 36px; height: 36px;
  background: none;
  border: 1px solid var(--linen);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .2s, background .2s;
}
.modal-close:hover {
  background: var(--void);
  border-color: var(--void);
}
.modal-close::before,
.modal-close::after {
  content: '';
  position: absolute;
  width: 14px; height: 1px;
  background: var(--slate);
  transition: background .2s;
}
.modal-close:hover::before,
.modal-close:hover::after { background: var(--ivory); }
.modal-close::before { transform: rotate(45deg); }
.modal-close::after  { transform: rotate(-45deg); }
.modal-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 400;
  color: var(--slate);
  margin-bottom: 8px;
  line-height: 1.2;
}
.modal-sub {
  font-size: .85rem;
  color: var(--fog);
  margin-bottom: 28px;
  line-height: 1.6;
}

/* ── Shared form styles (modal + contact page) ── */
.pgm-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pgm-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.pgm-form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pgm-form-field label {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--fog);
}
.pgm-form-field input,
.pgm-form-field select,
.pgm-form-field textarea {
  background: var(--white);
  border: 1px solid var(--linen);
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: .88rem;
  color: var(--slate);
  outline: none;
  transition: border-color .2s;
  appearance: none;
  border-radius: 0;
  width: 100%;
}
.pgm-form-field input:focus,
.pgm-form-field select:focus,
.pgm-form-field textarea:focus {
  border-color: var(--copper);
}
.pgm-form-field textarea {
  resize: vertical;
  min-height: 100px;
}
.pgm-form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b6660' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.pgm-form-submit {
  background: var(--copper);
  color: var(--ivory);
  border: 1px solid var(--copper);
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s, border-color .2s;
  width: 100%;
  margin-top: 8px;
}
.pgm-form-submit:hover { background: var(--copper-d); border-color: var(--copper-d); }
.pgm-form-note {
  font-size: .72rem;
  color: var(--smoke);
  text-align: center;
  line-height: 1.5;
  margin-top: -4px;
}
.pgm-form-success {
  text-align: center;
  padding: 32px 24px;
  display: none;
}
.pgm-form-success h4 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--slate);
  margin-bottom: 12px;
}
.pgm-form-success p {
  font-size: .88rem;
  color: var(--fog);
  line-height: 1.65;
}

/* ── Contact page: service tabs ── */
.contact-service-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 28px;
  border-bottom: 2px solid var(--linen);
  overflow-x: auto;
  scrollbar-width: none;
}
.contact-service-tabs::-webkit-scrollbar { display: none; }
.contact-svc-tab {
  background: none;
  border: none;
  padding: 12px 20px;
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--fog);
  cursor: pointer;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: color .2s, border-color .2s;
}
.contact-svc-tab:hover { color: var(--slate); }
.contact-svc-tab.active {
  color: var(--copper);
  border-bottom-color: var(--copper);
}
.contact-form-panel {
  display: none;
}
.contact-form-panel.active {
  display: block;
}
.contact-form-panel .pgm-form-row {
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 500px) {
  .contact-form-panel .pgm-form-row { grid-template-columns: 1fr; }
  .pgm-form-row { grid-template-columns: 1fr; }
}

/* ── Footer brand: horizontal layout on wider screens ── */
@media (max-width: 900px) {
  .footer-brand {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .footer-logo-img { height: 64px; }
}

/* ═══════════════════════════════════════════════════════════════
   SECTION 35 — SERVICES GRID (5 cards), TIENDA PREVIEW, STICKY CTA
═══════════════════════════════════════════════════════════════ */

/* ── Services grid: 5 cards — 3+2 centered layout ── */
/* Desktop: use 6-col virtual grid so row 2 (cards 4+5) auto-centers */
@media (min-width: 961px) {
  .services-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 3px;
  }
  .services-grid .service-card:nth-child(1) { grid-column: 1 / 3; }
  .services-grid .service-card:nth-child(2) { grid-column: 3 / 5; }
  .services-grid .service-card:nth-child(3) { grid-column: 5 / 7; }
  .services-grid .service-card:nth-child(4) { grid-column: 2 / 4; }
  .services-grid .service-card:nth-child(5) { grid-column: 4 / 6; }
}

/* ── Tienda Preview (home section) ── */
.section-tienda-preview {
  background: var(--cream);
  padding: clamp(80px, 10vw, 120px) 0;
}
.tienda-preview-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 56px;
}
.tienda-preview-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--slate);
  line-height: 1.2;
  margin: 12px 0 16px;
}
.tienda-preview-header .section-lead {
  color: var(--fog);
  font-size: clamp(.88rem, 1.2vw, 1rem);
  line-height: 1.75;
  max-width: 440px;
  margin: 0;
}
.tienda-preview-cta-desktop {
  flex-shrink: 0;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .tienda-preview-header { flex-direction: column; align-items: flex-start; }
  .tienda-preview-cta-desktop { display: none; }
}

.tienda-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .tienda-preview-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (max-width: 480px) {
  .tienda-preview-grid { grid-template-columns: 1fr; }
}

.tienda-preview-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--white);
  border: 1px solid var(--linen);
  overflow: hidden;
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
}
.tienda-preview-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,.1);
}
.tienda-preview-img-wrap {
  overflow: hidden;
  aspect-ratio: 3/4;
}
.tienda-preview-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s var(--ease-out);
}
.tienda-preview-card:hover .tienda-preview-img-wrap img {
  transform: scale(1.04);
}
.tienda-preview-info {
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.tienda-preview-cat {
  font-family: var(--font-body);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--copper);
}
.tienda-preview-name {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.6vw, 1.3rem);
  font-weight: 400;
  color: var(--slate);
  margin: 0;
  line-height: 1.3;
}
.tienda-preview-price {
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 500;
  color: var(--fog);
  margin-top: 4px;
}
.tienda-preview-footer {
  text-align: center;
}

/* ── Sticky CTA bar (mobile only) ── */
.sticky-cta-mobile {
  display: none; /* hidden on desktop */
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 500;
  background: var(--void);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 12px 20px;
  gap: 12px;
  transform: translateY(100%);
  transition: transform .4s var(--ease-out);
  box-shadow: 0 -8px 32px rgba(0,0,0,.3);
}
.sticky-cta-mobile.visible {
  transform: translateY(0);
}
@media (max-width: 960px) {
  .sticky-cta-mobile {
    display: flex;
    align-items: center;
  }
}
.sticky-cta-btn {
  flex: 1;
  background: var(--copper);
  color: var(--ivory);
  border: 1px solid var(--copper);
  padding: 13px 20px;
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  display: block;
  transition: background .2s, border-color .2s;
  cursor: pointer;
}
.sticky-cta-btn:hover { background: var(--copper-d); border-color: var(--copper-d); }
.sticky-cta-wa {
  width: 48px;
  height: 48px;
  background: rgba(37,211,102,.12);
  border: 1px solid rgba(37,211,102,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #25d366;
  transition: background .2s;
  text-decoration: none;
}
.sticky-cta-wa:hover { background: rgba(37,211,102,.2); }
.sticky-cta-wa svg {
  width: 20px;
  height: 20px;
}

/* ══════════════════════════════════════════════════
   SECCIÓN 36 — ACCESIBILIDAD
   Skip-link + prefers-reduced-motion
   ══════════════════════════════════════════════════ */

/* Skip to main content link — visible solo al hacer foco con teclado */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 99999;
  padding: 10px 20px;
  background: var(--copper);
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .05em;
  text-decoration: none;
  border-radius: 2px;
  transition: top .15s ease;
}
.skip-link:focus {
  top: 16px;
  outline: 2px solid var(--ivory);
  outline-offset: 2px;
}

/* Respetar preferencia de reducción de movimiento */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .hero-bg img,
  .about-image img,
  .studio-portrait img,
  .service-card-media img,
  .project-item img,
  .project-card-img img {
    transform: none !important;
  }
  [data-reveal],
  [data-reveal-group] > * {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ══════════════════════════════════════════════════
   SECCIÓN 37 — REALCE FOTOGRÁFICO (calidad premium)
   Mejora luminosidad, contraste, saturación y nitidez
   de todas las imágenes para un acabado tipo editorial
   ══════════════════════════════════════════════════ */

.hero-bg img,
.page-hero-media img,
.about-image img,
.studio-portrait img,
.studio-portrait-cell img,
.service-card-media img,
.service-intro-image img,
.project-item img,
.project-item > img,
.project-card-media img,
.project-featured-media img,
.split-image img,
.ba-before img,
.ba-after img,
.tienda-preview-img-wrap img,
.producto-img {
  filter: brightness(1.06) contrast(1.08) saturate(1.12);
  image-rendering: -webkit-optimize-contrast;
}

/* Pantallas de alta densidad (Retina/4K): nitidez extra */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .hero-bg img,
  .page-hero-media img,
  .about-image img,
  .studio-portrait img,
  .studio-portrait-cell img,
  .service-card-media img,
  .service-intro-image img,
  .project-item img,
  .project-item > img,
  .project-card-media img,
  .project-featured-media img,
  .split-image img,
  .ba-before img,
  .ba-after img,
  .tienda-preview-img-wrap img,
  .producto-img {
    filter: brightness(1.07) contrast(1.10) saturate(1.14);
  }
}

/* En hover de tarjetas: ligero plus de brillo */
.service-card:hover .service-card-media img,
.project-item:hover img,
.project-card:hover .project-card-media img,
.tienda-preview-card:hover .tienda-preview-img-wrap img {
  filter: brightness(1.10) contrast(1.10) saturate(1.16);
}
