/* =====================================================
   C&F STUDIO — Fotografía & Cine | Paysandú, Uruguay
   Archetype: Editorial Dark Warm (adapted)
   v20260526
   ===================================================== */

/* ── Variables ──────────────────────────────────────── */
:root {
  --bg:          #0C0A08;
  --bg-2:        #131110;
  --bg-3:        #1B1713;
  --bg-4:        #231F1A;
  --cream:       #F0E8D8;
  --cream-2:     #C6B9A6;
  --cream-3:     #857768;
  --gold:        #C9A96E;
  --gold-2:      #E5C98A;
  --gold-dark:   #7A6035;
  --green-wa:    #25D366;
  --line:        rgba(240,232,216,.10);
  --line-2:      rgba(240,232,216,.06);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  --gap:    clamp(.75rem, 2vw, 1.5rem);
  --gutter: clamp(1.25rem, 5vw, 4rem);
  --max-w:  1300px;

  --ease-out:    cubic-bezier(.25,.46,.45,.94);
  --ease-io:     cubic-bezier(.65,0,.35,1);

  --nav-h: 72px;
}

/* ── Reset ──────────────────────────────────────────── */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.65;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, video, iframe { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; background: none; border: none; color: inherit; font: inherit; }
ul, ol { list-style: none; }
input, select, textarea { font: inherit; }

/* ── Cursor ─────────────────────────────────────────── */
@media (hover: hover) {
  body { cursor: none; }
  a, button, [role="button"], .gallery-item, .filter-btn, .play-btn { cursor: none; }
}
.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gold);
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transform: translate3d(-200px,-200px,0);
  transition: opacity .3s, width .2s var(--ease-out), height .2s var(--ease-out), background .2s;
}
.cursor.is-ready { opacity: 1; }
.cursor.is-hover {
  width: 34px; height: 34px;
  background: transparent;
  border: 1px solid var(--gold);
  margin-left: -12px; margin-top: -12px;
}

/* ── Typography ─────────────────────────────────────── */
.t-eyebrow {
  font-family: var(--font-body);
  font-size: .6875rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── Layout ─────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: clamp(4rem, 10vw, 7.5rem); }
.section-sm { padding-block: clamp(2.5rem, 6vw, 4.5rem); }

/* ── Section Header ─────────────────────────────────── */
.section-header { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-header.centered { text-align: center; }
.section-header.centered .section-line { margin-inline: auto; }
.section-line { width: 36px; height: 1px; background: var(--gold); margin-block: .75rem; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-style: italic;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.05;
}
.section-sub {
  font-size: .9375rem;
  color: var(--cream-3);
  max-width: 44ch;
  margin-top: .75rem;
  font-weight: 300;
}
.section-header.centered .section-sub { margin-inline: auto; }

/* ── Buttons ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .875rem 2rem;
  font-family: var(--font-body);
  font-size: .6875rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  transition: all .3s var(--ease-out);
  white-space: nowrap;
}
.btn-primary { background: var(--gold); color: var(--bg); }
.btn-primary:hover { background: var(--gold-2); }
.btn-ghost { border: 1px solid rgba(201,169,110,.38); color: var(--gold); }
.btn-ghost:hover { border-color: var(--gold); background: rgba(201,169,110,.08); }
.btn-wa { background: var(--green-wa); color: #fff; }
.btn-wa:hover { background: #1cb956; }
.btn-wa svg { width: 18px; height: 18px; fill: #fff; flex-shrink: 0; }

/* ── Nav ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: var(--gutter);
  transition: background .45s var(--ease-out), border-color .45s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(12,10,8,.93);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo img {
  height: 18px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(.8rem, 2.5vw, 2.5rem);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.nav-links a {
  font-size: .6875rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cream-2);
  transition: color .25s;
  position: relative;
  padding-bottom: 3px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .3s var(--ease-out);
}
.nav-links a:hover,
.nav-links a.active { color: var(--cream); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-cta {
  font-size: .625rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  padding: .5rem 1.1rem;
  border: 1px solid rgba(201,169,110,.3);
  transition: all .25s var(--ease-out);
}
.nav-cta:hover { background: rgba(201,169,110,.1); border-color: var(--gold); }
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px 4px;
}
.nav-burger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--cream);
  transition: all .3s var(--ease-out);
}
.nav-burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; }
.nav-burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav overlay */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 99;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
.nav-mobile.is-open { display: flex; }
.nav-mobile a {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 9vw, 3.8rem);
  font-style: italic;
  font-weight: 600;
  color: var(--cream-2);
  transition: color .2s;
  letter-spacing: .02em;
}
.nav-mobile a:hover { color: var(--gold); }
.nav-mobile-close {
  position: absolute;
  top: 1.5rem; right: var(--gutter);
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--cream-3);
}

/* ── Hero ────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%; height: 130%;
  margin-top: -15%;
  object-fit: cover;
  object-position: center;
  will-change: transform;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    165deg,
    rgba(12,10,8,.22) 0%,
    rgba(12,10,8,.52) 50%,
    rgba(12,10,8,.90) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-inline: var(--gutter);
  max-width: 900px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.75rem;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  display: block;
  width: 32px; height: 1px;
  background: var(--gold);
  opacity: .65;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8.5vw, 7.5rem);
  font-style: italic;
  font-weight: 600;
  color: var(--cream);
  line-height: .98;
  margin-bottom: 1.5rem;
  text-wrap: balance;
  letter-spacing: -.01em;
}
.hero-sub {
  font-size: clamp(.875rem, 1.5vw, 1.0625rem);
  color: var(--cream-2);
  max-width: 60ch;
  margin-inline: auto;
  margin-bottom: 2.75rem;
  font-weight: 300;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: .875rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 2.25rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
}
.hero-scroll-label {
  font-size: .5rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--cream-3);
}
.hero-scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: .25; transform: scaleY(.5) translateY(-4px); }
  55%      { opacity: 1;   transform: scaleY(1)  translateY(4px); }
}

/* ── Page Header (inner pages) ─────────────────────── */
.page-header {
  padding-top: calc(var(--nav-h) + clamp(3.5rem, 9vw, 6.5rem));
  padding-bottom: clamp(2.5rem, 6vw, 4.5rem);
  border-bottom: 1px solid var(--line);
}
.page-header-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, 8rem);
  font-style: italic;
  font-weight: 600;
  color: var(--cream);
  line-height: .92;
  letter-spacing: -.01em;
}

/* ── About Preview ──────────────────────────────────── */
.about-preview { background: var(--bg-2); }
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 8vw, 7rem);
  align-items: center;
}
.about-eyebrow { margin-bottom: 1.25rem; }
.about-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-style: italic;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.08;
  margin-bottom: 1.5rem;
}
.about-text {
  font-size: 1rem;
  color: var(--cream-2);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 2.25rem;
}
.about-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 1px;
}
.stat-label {
  font-size: .5875rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cream-3);
  margin-top: .4rem;
}
.about-image {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.about-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .9s var(--ease-out);
  filter: contrast(1.05);
}
.about-image:hover img { transform: scale(1.04); }
.about-image-frame {
  position: absolute;
  inset: 1.25rem;
  border: 1px solid rgba(201,169,110,.22);
  pointer-events: none;
  z-index: 1;
}

/* ── Showreel ────────────────────────────────────────── */
.showreel {
  position: relative;
  height: clamp(300px, 55vw, 640px);
  overflow: hidden;
}
.showreel-bg { position: absolute; inset: 0; }
.showreel-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.38) saturate(.7);
}
.showreel-overlay {
  position: absolute; inset: 0;
  background: rgba(12,10,8,.3);
  z-index: 1;
}
.showreel-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  text-align: center;
}
.showreel-eyebrow { letter-spacing: .28em; }
.showreel-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 7vw, 5.5rem);
  font-style: italic;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.0;
}
.play-btn {
  width: 76px; height: 76px;
  border-radius: 50%;
  border: 1.5px solid rgba(201,169,110,.55);
  background: rgba(201,169,110,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .4s var(--ease-out);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  margin-top: .5rem;
}
.play-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.1);
}
.play-btn svg {
  width: 22px; height: 22px;
  fill: var(--gold);
  transform: translateX(2px);
  transition: fill .3s;
}
.play-btn:hover svg { fill: var(--bg); }

/* Video modal */
.video-modal {
  position: fixed; inset: 0;
  z-index: 9000;
  background: rgba(0,0,0,.93);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.video-modal.is-open { opacity: 1; pointer-events: all; }
.video-modal-inner {
  position: relative;
  width: min(90vw, 1080px);
  aspect-ratio: 16/9;
  background: #000;
}
.video-modal-inner iframe { width: 100%; height: 100%; border: none; }
.video-modal-close {
  position: absolute;
  top: -2.25rem; right: 0;
  color: var(--cream-2);
  font-size: .625rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: .5rem;
  transition: color .2s;
}
.video-modal-close:hover { color: var(--cream); }

/* ── Services Preview (Home) ────────────────────────── */
.services-preview { background: var(--bg-2); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
.service-card {
  background: var(--bg-3);
  padding: clamp(1.75rem, 3.5vw, 2.5rem);
  border: 1px solid var(--line-2);
  transition: border-color .35s, transform .35s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s var(--ease-out);
}
.service-card:hover { border-color: rgba(201,169,110,.18); transform: translateY(-5px); }
.service-card:hover::after { transform: scaleX(1); }
.service-num {
  font-size: .5875rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 1.5rem;
}
.service-icon {
  width: 40px; height: 40px;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.service-icon svg { width: 100%; height: 100%; stroke: currentColor; fill: none; }
.service-name {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-style: italic;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: .75rem;
  line-height: 1.1;
}
.service-desc {
  font-size: .9375rem;
  color: var(--cream-3);
  line-height: 1.7;
  margin-bottom: 1.75rem;
  font-weight: 300;
}
.service-link {
  font-size: .625rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  transition: gap .25s;
}
.service-link::after { content: '→'; }
.service-link:hover { gap: .85rem; }

/* ── Gallery Grid (shared) ──────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  background: var(--bg-3);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 4/3;
  transition: transform .75s var(--ease-out), filter .5s;
}
.gallery-item.portrait img { aspect-ratio: 3/4; }
.gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(1.06) contrast(1.04);
}
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12,10,8,.65) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1.1rem;
  opacity: 0;
  transition: opacity .4s var(--ease-out);
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-cat {
  font-size: .5625rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Preview on home: taller items */
.gallery-preview-grid .gallery-item:nth-child(1) { grid-row: span 2; }
.gallery-preview-grid .gallery-item:nth-child(1) img { aspect-ratio: 4/5; }

/* Gallery page filter */
.gallery-filter {
  display: flex;
  gap: .5rem;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}
.filter-btn {
  font-family: var(--font-body);
  font-size: .625rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: .6rem 1.4rem;
  border: 1px solid var(--line);
  color: var(--cream-3);
  transition: all .25s var(--ease-out);
}
.filter-btn:hover,
.filter-btn.active {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,169,110,.07);
}
.gallery-item.hidden   { display: none; }
.gallery-item.no-image { display: none !important; }
.gallery-count {
  font-size: .6875rem;
  color: var(--cream-3);
  letter-spacing: .08em;
  margin-bottom: 1.25rem;
}

/* ── Testimonials ────────────────────────────────────── */
.testimonials { background: var(--bg-2); }
.testimonials-track { overflow: hidden; }
.testimonials-slider {
  display: flex;
  transition: transform .65s var(--ease-io);
}
.testimonial-card {
  flex: 0 0 100%;
  padding-inline: clamp(.5rem, 4vw, 3rem);
}
.testimonial-inner {
  background: var(--bg-3);
  border: 1px solid var(--line-2);
  padding: clamp(2rem, 5vw, 3rem) clamp(2rem, 5vw, 3.5rem);
  max-width: 740px;
  margin-inline: auto;
}
.testimonial-mark {
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: .5;
  color: var(--gold);
  opacity: .25;
  margin-bottom: 1.25rem;
  font-style: italic;
}
.testimonial-quote {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.7rem);
  font-style: italic;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.45;
  margin-bottom: 2rem;
}
.testimonial-author { display: flex; align-items: center; gap: 1.25rem; }
.testimonial-divider { width: 1px; height: 26px; background: var(--gold); opacity: .35; }
.testimonial-name {
  font-size: .875rem;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: .04em;
}
.testimonial-event {
  font-size: .6875rem;
  color: var(--cream-3);
  letter-spacing: .08em;
  margin-top: .2rem;
}
.testimonials-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.t-arrow {
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream-2);
  transition: all .25s var(--ease-out);
}
.t-arrow:hover { border-color: var(--gold); color: var(--gold); }
.t-arrow svg { width: 18px; height: 18px; stroke: currentColor; fill: none; }
.t-dots { display: flex; gap: .5rem; align-items: center; }
.t-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--cream-3);
  transition: all .3s var(--ease-out);
}
.t-dot.active { background: var(--gold); width: 18px; border-radius: 3px; }

/* ── CTA Final ───────────────────────────────────────── */
.cta-final {
  position: relative;
  text-align: center;
  overflow: hidden;
}
.cta-mesh {
  position: absolute; inset: -20%;
  background:
    radial-gradient(ellipse 60% 70% at 30% 55%, rgba(201,169,110,.11), transparent),
    radial-gradient(ellipse 50% 60% at 75% 40%, rgba(201,169,110,.07), transparent);
  filter: blur(70px);
  z-index: 0;
}
.cta-content { position: relative; z-index: 1; }
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  font-style: italic;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.05;
  margin-bottom: 1rem;
  text-wrap: balance;
}
.cta-sub {
  font-size: 1rem;
  color: var(--cream-3);
  margin-bottom: 2.5rem;
  font-weight: 300;
}
.cta-actions { display: flex; gap: .875rem; justify-content: center; flex-wrap: wrap; }

/* ── Services Page ──────────────────────────────────── */
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 7vw, 5.5rem);
  align-items: center;
  padding-block: clamp(3rem, 7vw, 5rem);
  border-bottom: 1px solid var(--line);
}
.service-block:last-child { border-bottom: none; }
.service-block.reverse { direction: rtl; }
.service-block.reverse > * { direction: ltr; }
.service-block-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.service-block-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease-out);
}
.service-block-img:hover img { transform: scale(1.05); }
.service-block-num {
  font-size: .625rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .875rem;
}
.service-block-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-style: italic;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.08;
  margin-bottom: 1.25rem;
}
.service-block-text {
  font-size: .9375rem;
  color: var(--cream-2);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 1.5rem;
}
.service-block-list {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin-bottom: 2rem;
}
.service-block-list li {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .875rem;
  color: var(--cream-2);
  font-weight: 300;
}
.service-block-list li::before {
  content: '';
  display: block;
  width: 14px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* Process */
.process { background: var(--bg-2); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}
.process-step {
  background: var(--bg-2);
  padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 3vw, 2.5rem);
  text-align: center;
}
.process-step-num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-style: italic;
  font-weight: 600;
  color: var(--gold);
  opacity: .25;
  line-height: 1;
  margin-bottom: 1.25rem;
}
.process-step-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: .6rem;
}
.process-step-text {
  font-size: .875rem;
  color: var(--cream-3);
  line-height: 1.65;
  font-weight: 300;
}

/* ── Nosotros Page ──────────────────────────────────── */
.nosotros-intro-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(3rem, 8vw, 6rem);
  align-items: center;
}
.nosotros-intro-text p {
  font-size: 1.0625rem;
  color: var(--cream-2);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 1.5rem;
}
.nosotros-intro-text p:last-child { margin-bottom: 0; }
.nosotros-intro-img {
  aspect-ratio: 3/4;
  overflow: hidden;
}
.nosotros-intro-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.04) saturate(.9);
  transition: transform .8s var(--ease-out);
}
.nosotros-intro-img:hover img { transform: scale(1.04); }

.team { background: var(--bg-2); }
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.25rem, 3vw, 2rem);
}
.team-card { background: var(--bg-3); border: 1px solid var(--line-2); overflow: hidden; }
.team-card-img {
  aspect-ratio: 3/4;
  overflow: hidden;
}
.team-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: contrast(1.04) saturate(.85);
  transition: transform .8s var(--ease-out), filter .6s;
}
.team-card:hover .team-card-img img {
  transform: scale(1.04);
  filter: contrast(1.04) saturate(1);
}
.team-card-body { padding: clamp(1.5rem, 3vw, 2.25rem); }
.team-card-role {
  font-size: .5875rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .5rem;
}
.team-card-name {
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-style: italic;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: .875rem;
}
.team-card-bio {
  font-size: .9375rem;
  color: var(--cream-2);
  line-height: 1.7;
  font-weight: 300;
}

.values { }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
.value-item { padding: clamp(1.75rem, 3.5vw, 2.5rem) 0; border-top: 2px solid var(--gold); }
.value-num {
  font-family: var(--font-display);
  font-size: .875rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: .1em;
  margin-bottom: 1rem;
}
.value-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: .75rem;
}
.value-text {
  font-size: .9375rem;
  color: var(--cream-3);
  line-height: 1.7;
  font-weight: 300;
}

/* ── Contact Page ────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(3rem, 8vw, 6.5rem);
  align-items: start;
}
.wa-block {
  background: rgba(37,211,102,.06);
  border: 1px solid rgba(37,211,102,.2);
  padding: 1.75rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.wa-block-text { flex: 1; }
.wa-block-title {
  font-family: var(--font-display);
  font-size: 1.1875rem;
  font-style: italic;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: .2rem;
}
.wa-block-desc { font-size: .8125rem; color: var(--cream-3); font-weight: 300; }
.contact-info-list { margin-top: 2.5rem; }
.contact-info-row {
  display: flex;
  gap: 1.25rem;
  padding-block: 1rem;
  border-bottom: 1px solid var(--line);
}
.contact-info-row:last-child { border-bottom: none; }
.contact-info-label {
  font-size: .5625rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--cream-3);
  min-width: 72px;
  padding-top: .15rem;
  flex-shrink: 0;
}
.contact-info-value { font-size: .9375rem; color: var(--cream-2); font-weight: 300; }
.contact-info-value a:hover { color: var(--gold); }

/* Form */
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block;
  font-size: .5875rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--cream-3);
  margin-bottom: .6rem;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: var(--bg-3);
  border: 1px solid var(--line);
  color: var(--cream);
  padding: .9rem 1.1rem;
  font-size: .9375rem;
  font-weight: 300;
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color .25s, box-shadow .25s;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,110,.1);
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--cream-3); opacity: 1; }
.form-textarea { resize: vertical; min-height: 130px; }
.form-select-wrap { position: relative; }
.form-select-arrow {
  position: absolute;
  right: 1.1rem;
  top: calc(50% - 4px);
  width: 9px; height: 9px;
  border-right: 1.5px solid var(--gold);
  border-bottom: 1.5px solid var(--gold);
  transform: rotate(45deg);
  pointer-events: none;
}
.form-submit {
  width: 100%;
  padding: 1.1rem;
  background: var(--gold);
  color: var(--bg);
  font-size: .6875rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  border: none;
  transition: background .3s var(--ease-out), opacity .3s;
}
.form-submit:hover { background: var(--gold-2); }
.form-submit.is-sending { opacity: .6; pointer-events: none; }
.form-note {
  font-size: .75rem;
  color: var(--cream-3);
  margin-top: .75rem;
  font-weight: 300;
}
.form-success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
  background: var(--bg-3);
  border: 1px solid rgba(201,169,110,.25);
}
.form-success.is-visible { display: block; }
.form-success-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-style: italic;
  color: var(--cream);
  margin-bottom: .75rem;
  margin-top: .75rem;
}
.form-success-text { font-size: .9375rem; color: var(--cream-3); font-weight: 300; }

/* ── Footer ──────────────────────────────────────────── */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  padding-block: clamp(2.5rem, 5vw, 4rem);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  margin-bottom: 3rem;
}
.footer-logo img {
  height: 22px;
  width: auto;
  display: block;
  margin-bottom: .375rem;
}
.footer-sub {
  font-size: .6rem;
  color: var(--cream-3);
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-desc {
  font-size: .875rem;
  color: var(--cream-3);
  line-height: 1.65;
  max-width: 26ch;
  font-weight: 300;
}
.footer-col-title {
  font-size: .5625rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-links { display: flex; flex-direction: column; gap: .625rem; }
.footer-links a {
  font-size: .875rem;
  color: var(--cream-3);
  transition: color .2s;
  font-weight: 300;
}
.footer-links a:hover { color: var(--cream); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.footer-copy { font-size: .6875rem; color: var(--cream-3); font-weight: 300; }
.footer-credits { font-size: .6875rem; color: var(--cream-3); opacity: .45; transition: opacity .2s; }
.footer-credits:hover { opacity: .9; }

/* ── Reveals ─────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .85s var(--ease-out), transform .85s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: none; }
/* Safety net for split-text elements */
.reveal[data-split] { opacity: 1; transform: none; }
/* Staggered delays */
[data-delay="1"] { transition-delay: .1s; }
[data-delay="2"] { transition-delay: .2s; }
[data-delay="3"] { transition-delay: .3s; }
[data-delay="4"] { transition-delay: .4s; }
[data-delay="5"] { transition-delay: .55s; }

/* ── WhatsApp Float ─────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  width: 54px;
  height: 54px;
  background: var(--green-wa);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 4px 16px rgba(37,211,102,.32),
    0 2px 10px rgba(0,0,0,.40);
  z-index: 400;
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
  animation: wa-enter .65s var(--ease-out) .9s both;
}
.wa-float::before {
  content: '';
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  border: 1.5px solid rgba(37,211,102,.38);
  animation: wa-pulse 3s ease-in-out infinite;
  pointer-events: none;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow:
    0 6px 24px rgba(37,211,102,.48),
    0 4px 14px rgba(0,0,0,.45);
}
.wa-float svg {
  width: 28px;
  height: 28px;
  fill: #fff;
  flex-shrink: 0;
}
@keyframes wa-enter {
  from { opacity: 0; transform: scale(.45) rotate(-12deg); }
  to   { opacity: 1; transform: scale(1)  rotate(0deg); }
}
@keyframes wa-pulse {
  0%, 100% { opacity: 0; transform: scale(1); }
  55%       { opacity: 1; transform: scale(1.18); }
}

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 1023px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid  { grid-template-columns: 1fr 1fr; }
  .gallery-preview-grid .gallery-item:nth-child(1) { grid-row: span 1; }
  .gallery-preview-grid .gallery-item:nth-child(1) img { aspect-ratio: 4/3; }
  .service-block { grid-template-columns: 1fr; }
  .service-block.reverse { direction: ltr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .nosotros-intro-layout { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .about-layout { grid-template-columns: 1fr; }
  .about-image { max-width: 400px; }
}

@media (max-width: 767px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; max-width: 360px; margin-inline: auto; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 539px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-actions, .cta-actions { flex-direction: column; align-items: center; }
  .about-stats { gap: 1.5rem; }
  .process-grid { grid-template-columns: 1fr; }
  .wa-block { flex-direction: column; text-align: center; align-items: center; }
  .wa-float { bottom: 1.1rem; right: 1.1rem; width: 48px; height: 48px; }
  .wa-float svg { width: 24px; height: 24px; }
}
