/* ===== TOKENS ===== */
@font-face {
  font-family: 'Autography';
  src: url('../fontes/Autography.otf') format('opentype');
  font-display: swap;
}

:root {
  --white: oklch(97% 0.008 60);
  --landing-bg: rgba(255,255,255,0.85);
  --champagne: oklch(90% 0.02 300);
  --champagne-deep: oklch(83% 0.035 300);
  --graphite: oklch(22% 0.01 30);
  --graphite-light: oklch(40% 0.01 30);
  --gold: oklch(62% 0.16 312);
  --gold-light: oklch(62% 0.16 312);
  --rosé: oklch(88% 0.025 15);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', system-ui, sans-serif;
  --fs-headline: clamp(2.1rem, 5vw, 4.4rem);
  --fs-section-title: clamp(1.9rem, 4vw, 3.2rem);
  --fs-sub: clamp(1rem, 1.2vw, 1.16rem);
  --fs-body: clamp(0.98rem, 1vw, 1.08rem);
  --ls-label: 0.16em;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 17px; }
body {
  background: var(--landing-bg);
  color: var(--graphite);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}
body.menu-open,
body.modal-open {
  overflow: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--sans); border: none; background: none; }

/* ===== TYPOGRAPHY ===== */
.t-display {
  font-family: var(--serif);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.t-title {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.01em;
}
.t-label {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 1.15rem;
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  color: var(--gold);
}

/* ===== UTILS ===== */
.gold-line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto;
}
.gold-line--left { margin: 0; }

/* ===== DISABLED SECTIONS ===== */
#galeria,
#faq {
  display: none !important;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.4,0,0.2,1), transform 0.9s cubic-bezier(0.4,0,0.2,1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }
.reveal-delay-4 { transition-delay: 0.48s; }
.reveal-delay-5 { transition-delay: 0.60s; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--graphite);
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid var(--graphite);
  transition: background 0.35s, color 0.35s, border-color 0.35s;
}
.btn-primary:hover {
  background: transparent;
  color: var(--graphite);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: transparent;
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.5);
  transition: background 0.35s, border-color 0.35s;
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.9);
}
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background: transparent;
  color: var(--graphite);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  transition: background 0.35s, color 0.35s;
}
.btn-gold:hover {
  background: oklch(83% 0.035 300);
  color: var(--white);
}
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 36px;
  background: transparent;
  color: rgba(0, 0, 0, 0.8);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid oklch(62% 0.16 312);
  transition: all 0.35s;
}
.btn-whatsapp:hover {
  background: oklch(83% 0.035 300);
  color: var(--white);
  border-color: oklch(62% 0.16 312);
}
.whatsapp-icon {
  width: 20px; height: 20px;
  flex-shrink: 0;
}

/* ===== NAV ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 24px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.5s, padding 0.4s, backdrop-filter 0.5s;
}
nav.scrolled {
  background: rgba(250,248,244,0.92);
  backdrop-filter: blur(12px);
  padding: 16px 40px;
  border-bottom: 1px solid rgba(180,160,110,0.15);
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: clamp(6px, 1.4vw, 12px);
  font-family: 'Autography', var(--serif);
  font-size: clamp(1.6rem, 3.6vw, 2rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--white);
  transition: color 0.4s;
}
.nav-logo-icon {
  width: clamp(24px, 3.8vw, 50px);
  height: clamp(24px, 3.8vw, 50px);
  object-fit: contain;
  flex-shrink: 0;
}
nav.scrolled .nav-logo { color: var(--graphite); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold-light); }
nav.scrolled .nav-links a { color: var(--graphite-light); }
nav.scrolled .nav-links a:hover { color: var(--gold); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 36px;
  background: transparent;
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.88);
  transition: all 0.35s;
}
.nav-cta:hover {
  background: oklch(83% 0.035 300);
  color: var(--white);
  border-color: oklch(62% 0.16 312);
}
nav.scrolled .nav-cta {
  color: rgba(0, 0, 0, 0.8);
  border-color: oklch(62% 0.16 312);
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--white);
  transition: background 0.4s;
}
nav.scrolled .nav-hamburger span { background: var(--graphite); }
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--graphite);
  letter-spacing: 0.03em;
}
.nav-mobile .nav-logo {
  font-family: 'Autography', var(--serif);
  font-size: clamp(1.2rem, 7vw, 2rem);
  line-height: 1;
  gap: clamp(6px, 2.2vw, 12px);
  max-width: 90vw;
}
.nav-mobile .nav-logo-icon {
  width: clamp(22px, 8vw, 44px);
  height: clamp(22px, 8vw, 44px);
}
.nav-mobile-close {
  position: absolute;
  top: 28px; right: 36px;
  font-size: 1.6rem;
  color: var(--graphite);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--serif);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(10,8,6,0.28) 0%,
      rgba(10,8,6,0.42) 50%,
      rgba(10,8,6,0.62) 100%
    );
  z-index: 1;
}
.hero-img {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(135deg, oklch(28% 0.04 60) 0%, oklch(18% 0.02 30) 50%, oklch(22% 0.03 50) 100%);
  z-index: 0;
  transform: scale(1.04);
  animation: heroZoom 18s ease-out forwards;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Elegant striped placeholder simulating a cinematic wedding scene */
.hero-img::after {
  content: '';
  position: absolute;
  inset: 0;
}
@keyframes heroZoom {
  from { transform: scale(1.04); }
  to { transform: scale(1.0); }
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 8vw;
  max-width: 860px;
}
.hero-eyebrow {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: 0;
  animation: fadeUp 1s 0.4s forwards;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold-light);
}
.hero-headline {
  font-family: var(--serif);
  font-size: var(--fs-headline);
  font-weight: 800;
  line-height: 1.05;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 1s 0.65s forwards;
}
.hero-headline em {
  font-style: italic;
  color: var(--champagne);
}
.hero-sub {
  font-family: var(--sans);
  font-size: var(--fs-sub);
  font-weight: 400;
  color: rgba(255,255,255,0.78);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 1s 0.9s forwards;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s 1.1s forwards;
}
.social-proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.social-proof-row--hero { margin-top: 22px; }
.social-proof-row--cta {
  margin: 18px auto 0;
  justify-content: center;
}
.social-proof-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.34);
  background: rgba(15,12,10,0.34);
  color: rgba(255,255,255,0.92);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeUp 1s 1.5s forwards;
}
.hero-scroll span {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.8); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== IMPACT PHRASE ===== */
.impact {
  padding: 120px 8vw;
  text-align: center;
  background: var(--white);
}
.impact-text {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 4.8vw, 4.2rem);
  font-weight: 500;
  line-height: 1.0;
  letter-spacing: -0.01em;
  max-width: 820px;
  margin: 0 auto;
  color: var(--graphite);
}
.impact-text em {
  font-style: italic;
  color: oklch(30% 0.05 45);
}

/* ===== ABOUT ===== */
.about {
  padding: 120px max(8vw, calc((100% - 1240px) / 2));
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  background: var(--champagne);
}
.about-label { margin-bottom: 0; }
.about-label-stack {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}
.about-heading {
  font-family: var(--serif);
  font-size: var(--fs-section-title);
  font-weight: 500;
  line-height: 1.0;
  margin-bottom: 32px;
  color: var(--graphite);
}
.about-body {
  font-size: var(--fs-body);
  color: var(--graphite-light);
  line-height: 1.85;
  margin-bottom: 40px;
  max-width: 460px;
}
.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
}
.about-stat-num {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--graphite);
  line-height: 1;
  margin-bottom: 6px;
}
.about-stat-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--graphite-light);
}
.about-image-side {
  position: relative;
  width: min(100%, 460px);
  margin: 0 auto;
}
.about-img-frame {
  width: 100%;
  aspect-ratio: 3/4;
  background-image:
    linear-gradient(to top, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.08)),
    url('../media/images/portfolio/duda.png'),
    repeating-linear-gradient(
      -45deg,
      oklch(82% 0.02 70) 0px,
      oklch(82% 0.02 70) 2px,
      oklch(85% 0.025 70) 2px,
      oklch(85% 0.025 70) 20px
    );
  background-size: cover, cover, auto;
  background-position: center top, center top, center;
  position: relative;
  overflow: hidden;
}
.about-img-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.18), transparent 45%);
}
.about-img-accent {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  border: 1px solid var(--gold);
  z-index: -1;
}
.about-img-accent2 {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 80px;
  height: 80px;
  border: 1px solid var(--gold);
  z-index: -1;
}

/* ===== PORTFOLIO ===== */
.portfolio {
  padding: 120px 8vw;
  background: var(--white);
}
.portfolio > .section-header {
  max-width: min(100%, 1240px);
  margin-inline: auto;
}
.portfolio .portfolio-grid {
  max-width: min(100%, 1240px);
  margin-inline: auto;
}
.section-header {
  text-align: center;
  margin-bottom: 72px;
}

.section-header .t-label { margin-bottom: 20px; display: block; }
.section-heading {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 4.8vw, 4.2rem);
  font-weight: 500;
  line-height: 1.0;
  color: var(--graphite);
  margin-bottom: 20px;
}
.section-sub {
  font-size: var(--fs-sub);
  color: var(--graphite-light);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.8;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.portfolio-grid--horizontal {
  margin-top: 8px;
}
.portfolio-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--graphite);
  border-radius: 10px;
}
.portfolio-card.vertical {
  grid-column: span 1;
}
.portfolio-card-img {
  width: 100%;
  background-color: oklch(24% 0.01 30);
  background-image: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(0,0,0,0.28));
  background-size: cover;
  background-position: center;
  position: relative;
  transition: transform 0.7s cubic-bezier(0.4,0,0.2,1);
  overflow: hidden;
}
.portfolio-card.vertical .portfolio-card-img {
  aspect-ratio: 9/16;
}
.portfolio-card.horizontal {
  grid-column: span 2;
}
.portfolio-card.horizontal .portfolio-card-img {
  aspect-ratio: 16/9;
}
.portfolio-card.vertical .portfolio-card-img--gabriella-cine {
  background-position: center 28%;
}
.portfolio-card.horizontal .portfolio-card-img--ana-daniel-casal {
  background-position: center 38%;
}
.portfolio-card:hover .portfolio-card-img {
  transform: scale(1.04);
}
.portfolio-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,8,6,0.85) 0%, transparent 55%);
  opacity: 0.7;
  transition: opacity 0.4s;
}
.portfolio-card:hover .portfolio-card-overlay { opacity: 1; }
.portfolio-card-play {
  display: none;
}
.play-btn {
  width: 68px;
  height: 68px;
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(4px);
  transition: all 0.35s;
}
.play-btn:hover, .portfolio-card:hover .play-btn {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.9);
  transform: scale(1.08);
}
.play-triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 9px 0 9px 16px;
  border-color: transparent transparent transparent rgba(255,255,255,0.9);
  margin-left: 3px;
}
.portfolio-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 28px 24px;
  z-index: 3;
}
.portfolio-card-type {
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 6px;
}
.portfolio-card-name {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 4px;
}
.portfolio-card-meta {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.06em;
}
.portfolio-cta {
  text-align: center;
  margin-top: 64px;
}

/* ===== MODAL ===== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,8,6,0.96);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
}
.modal-overlay.open { display: flex; }
.modal-inner {
  position: relative;
  width: min(94vw, 1000px);
}
.modal-inner.is-vertical {
  max-width: 380px;
}
.modal-inner.is-horizontal {
  max-width: 1000px;
}
.modal-video-wrap {
  width: 100%;
  aspect-ratio: 16/9;
  max-height: 78vh;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.3);
  font-family: monospace;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}
.modal-inner.is-vertical .modal-video-wrap {
  aspect-ratio: 9/16;
}
.modal-inner.is-horizontal .modal-video-wrap {
  aspect-ratio: 16/9;
}
.modal-hint {
  margin-top: 12px;
  text-align: center;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.48);
}
.modal-close {
  position: absolute;
  top: -48px;
  right: 0;
  color: rgba(255,255,255,0.6);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: color 0.3s;
  background: none;
  border: none;
}
.modal-close:hover { color: var(--white); }
.modal-title {
  margin-top: 24px;
  text-align: center;
}
.modal-title h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 6px;
}
.modal-title p {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 120px 8vw;
  background: var(--graphite);
}
.testimonials > .section-header {
  max-width: min(100%, 1240px);
  margin-inline: auto;
}
.testimonials .testimonials-track-wrap {
  max-width: min(100%, 1240px);
  margin-inline: auto;
}
.testimonials .testimonials-nav {
  max-width: min(100%, 1240px);
  margin-inline: auto;
}
.testimonials .section-heading { color: var(--white); }
.testimonials .section-sub { color: rgba(255,255,255,0.5); }
.testimonials .t-label { color: var(--gold-light); }
.testimonials-track-wrap {
  overflow: hidden;
  position: relative;
}
.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.testimonial-card {
  flex: 0 0 calc(33.33% - 16px);
  min-width: 280px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 48px 40px;
}
.testimonial-quote {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
}
.testimonial-quote::before {
  content: '\201C';
  font-size: 3rem;
  line-height: 0.5;
  display: block;
  margin-bottom: 16px;
  color: var(--gold);
  font-style: normal;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--champagne-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--graphite);
  flex-shrink: 0;
}
.testimonial-name {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 2px;
}
.testimonial-date {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
}
.testimonials-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 52px;
}
.testimonials-nav button {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.2);
  background: transparent;
  color: rgba(255,255,255,0.6);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  cursor: pointer;
}
.testimonials-nav button:hover {
  border-color: rgba(255,255,255,0.7);
  color: var(--white);
}
.testimonials-dots {
  display: flex;
  gap: 8px;
}
.testi-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  transition: all 0.3s;
  cursor: pointer;
}
.testi-dot.active {
  background: var(--gold);
  width: 20px;
  border-radius: 2px;
}
.testimonials-cta {
  text-align: center;
  margin-top: 72px;
}
.btn-ghost-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 36px;
  background: transparent;
  color: rgba(0, 0, 0, 0.8);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid rgba(0, 0, 0, 0.7);
  transition: all 0.35s;
}
.btn-ghost-white:hover {
  background: oklch(83% 0.035 300);
  border-color: oklch(83% 0.035 300);
}

/* ===== DELIVERABLES ===== */
.deliverables {
  padding: 120px 8vw;
  background: var(--white);
}
.deliverables > .section-header {
  max-width: min(100%, 1240px);
  margin-inline: auto;
}
.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: oklch(62% 0.16 312);
  border: 1px solid oklch(62% 0.16 312);
  margin-top: 72px;
  max-width: min(100%, 1240px);
  margin-inline: auto;
}
.deliverable-item {
  background: rgba(250,248,244,0.92);
  padding: 40px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  transition: background 0.35s;
}
.deliverable-item:hover { background: var(--champagne); }
.deliverable-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.deliverable-icon svg { width: 100%; height: 100%; }
.deliverable-name {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--graphite);
  line-height: 1.0;
}
.deliverable-desc {
  font-size: 0.9rem;
  color: oklch(40% 0.01 30);
  line-height: 1.6;
}

/* ===== PROCESS ===== */
.process {
  padding: 120px 8vw;
  background: var(--champagne);
}
.process > .section-header {
  max-width: min(100%, 1240px);
  margin-inline: auto;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 80px;
  position: relative;
  max-width: min(100%, 1240px);
  margin-inline: auto;
}
.process-steps::after {
  content: '';
  position: absolute;
  top: 44px;
  left: calc(16.66% + 20px);
  right: calc(16.66% + 20px);
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
}
.process-step {
  padding: 0;
  position: relative;
}
.process-num {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.process-num::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: var(--champagne);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.process-step-title {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--graphite);
  margin-bottom: 12px;
  line-height: 1.0;
}
.process-step-text {
  font-size: 0.96rem;
  color: var(--graphite-light);
  line-height: 1.75;
}

/* ===== GALLERY ===== */
.gallery {
  padding: 120px 8vw;
  background: var(--white);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 12px;
  margin-top: 72px;
}
.gallery-item {
  overflow: hidden;
  position: relative;
}
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(4) { grid-column: span 2; }
.gallery-item:nth-child(6) { grid-column: span 2; grid-row: span 2; }
.gallery-img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  background-color: oklch(88% 0.02 70);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.gallery-item:hover .gallery-img { transform: scale(1.04); }
.gallery-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.04));
}
.gallery-item:nth-child(1) .gallery-img { min-height: 380px; }
.gallery-item:nth-child(6) .gallery-img { min-height: 380px; }

/* ===== FAQ ===== */
.faq {
  padding: 120px 8vw;
  background: var(--white);
  border-top: 1px solid oklch(91% 0.015 70);
}
.faq-list {
  max-width: 760px;
  margin: 72px auto 0;
}
.faq-item {
  border-bottom: 1px solid oklch(91% 0.015 70);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  gap: 20px;
}
.faq-question-text {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--graphite);
  line-height: 1.4;
}
.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border: 1px solid oklch(78% 0.02 70);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  color: var(--graphite-light);
  font-size: 1rem;
  line-height: 1;
}
.faq-item.open .faq-icon {
  background: var(--graphite);
  border-color: var(--graphite);
  color: var(--white);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4,0,0.2,1), padding 0.4s;
}
.faq-item.open .faq-answer { max-height: 300px; padding-bottom: 28px; }
.faq-answer-text {
  font-size: 1rem;
  color: var(--graphite-light);
  line-height: 1.85;
  max-width: 640px;
}

/* ===== FINAL CTA ===== */
.final-cta {
  padding: 160px 8vw;
  background: var(--champagne);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(180,150,90,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.final-cta-label { margin-bottom: 28px; display: block; }
.final-cta-heading {
  font-family: var(--serif);
  font-size: var(--fs-section-title);
  font-weight: 500;
  line-height: 1.0;
  color: var(--graphite);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}
.final-cta-heading em { font-style: italic; color: oklch(58% 0.07 76); }
.final-cta-text {
  font-size: var(--fs-sub);
  color: var(--graphite-light);
  max-width: 500px;
  margin: 0 auto 56px;
  line-height: 1.85;
}
.final-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.final-cta-trust {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--graphite-light);
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.final-cta-trust::before,
.final-cta-trust::after {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: currentColor;
  opacity: 0.4;
}
.final-cta .social-proof-badge {
  border: 1px solid rgba(0,0,0,0.2);
  background: rgba(255,255,255,0.7);
  color: rgba(0,0,0,0.72);
}

/* ===== FOOTER ===== */
footer {
  background: var(--graphite);
  color: rgba(255,255,255,0.5);
  padding: 72px 8vw 40px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 40px;
}
.footer-brand-name {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Autography', var(--serif);
  font-size: 1.85rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.footer-brand-logo {
  width: 50px;
  height: 50px;
  object-fit: contain;
  flex-shrink: 0;
}
.footer-brand-desc {
  font-size: 0.82rem;
  line-height: 1.75;
  max-width: 240px;
  color: rgba(255,255,255,0.4);
}
.footer-col-title {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 20px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold-light); }
.footer-contact-item {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.05em;
}
.footer-socials {
  display: flex;
  gap: 20px;
}
.footer-social-link {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-social-link:hover { color: var(--gold-light); }

a:focus-visible,
button:focus-visible,
[role="button"]:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ===== WHATSAPP FLOAT ===== */
.wa-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 90;
  width: 56px;
  height: 56px;
  background: transparent;
  border: 1px solid oklch(62% 0.16 312);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  transition: transform 0.35s, background 0.35s, border-color 0.35s, box-shadow 0.35s;
  cursor: pointer;
}
.wa-float:hover {
  background: oklch(83% 0.035 300);
  border-color: oklch(62% 0.16 312);
  transform: scale(1.06);
}
.wa-float svg {
  width: 26px;
  height: 26px;
  fill: rgba(0, 0, 0, 0.8);
}
.wa-float:hover svg {
  fill: var(--white);
}

body.nav-at-top .wa-float,
body:not(:has(nav.scrolled)) .wa-float {
  border-color: rgba(255, 255, 255, 0.88);
}
body.nav-at-top .wa-float svg,
body:not(:has(nav.scrolled)) .wa-float svg {
  fill: rgba(255, 255, 255, 0.92);
}
body.nav-at-top .wa-float:hover svg,
body:not(:has(nav.scrolled)) .wa-float:hover svg {
  fill: var(--white);
}

/* ===== GLOBAL LANDING BACKGROUND ===== */
.impact,
.about,
.portfolio,
.testimonials,
.deliverables,
.process,
.gallery,
.faq,
.final-cta,
footer {
  background: var(--landing-bg) !important;
}

/* ===== LIGHT BACKGROUND CONTRAST FIXES ===== */
.testimonials .section-heading { color: var(--graphite); }
.testimonials .section-sub { color: var(--graphite-light); }
.testimonial-card {
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(0,0,0,0.08);
}
.testimonial-quote { color: var(--graphite); }
.testimonial-name { color: var(--graphite); }
.testimonial-date { color: rgba(0,0,0,0.45); }
.testimonials-nav button {
  border: 1px solid oklch(62% 0.16 312);
  color: rgba(0,0,0,0.75);
  background: rgba(255,255,255,0.6);
}
.testimonials-nav button:hover {
  background: oklch(83% 0.035 300);
  border-color: oklch(83% 0.035 300);
  color: var(--white);
}
.testi-dot { background: rgba(0,0,0,0.2); }
.btn-ghost-white {
  color: var(--graphite);
  border-color: oklch(62% 0.16 312);
}
.btn-ghost-white:hover {
  background: oklch(83% 0.035 300);
  color: var(--white);
  border-color: oklch(62% 0.16 312);
}
footer { color: rgba(0,0,0,0.62); }
.footer-brand-name { color: var(--graphite); }
.footer-brand-desc { color: rgba(0,0,0,0.6); }
.footer-col-title { color: rgba(0,0,0,0.52); }
.footer-links a { color: rgba(0,0,0,0.68); }
.footer-contact-item { color: rgba(0,0,0,0.68); }
.footer-copy { color: rgba(0,0,0,0.52); }
.footer-social-link { color: rgba(0,0,0,0.6); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .deliverables-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 900px) {
  nav { padding: 20px 24px; }
  nav.scrolled { padding: 14px 24px; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .about {
    grid-template-columns: 1fr;
    padding: 80px max(6vw, calc((100% - 1240px) / 2));
    gap: 52px;
  }
  .about-image-side { order: -1; }
  .about-image-side { width: min(100%, 520px); }
  .about-img-frame {
    width: 100%;
    aspect-ratio: 3/4;
    background-position: center 18%, center 18%, center;
  }
  .portfolio-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .portfolio-card.horizontal { grid-column: span 2; }
  .testimonial-card { flex: 0 0 calc(80vw - 32px); }
  .process-steps { grid-template-columns: 1fr; gap: 40px; }
  .process-steps::after { display: none; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:nth-child(1) { grid-column: span 2; }
  .gallery-item:nth-child(4) { grid-column: span 1; }
  .gallery-item:nth-child(6) { grid-column: span 2; }
  .deliverables-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 600px) {
  .nav-mobile .nav-logo { font-size: clamp(1.1rem, 8vw, 1.6rem); }
  .nav-mobile .nav-logo-icon {
    width: clamp(20px, 9vw, 30px);
    height: clamp(20px, 9vw, 30px);
  }
  .about-img-frame {
    width: 100%;
    aspect-ratio: 4/5;
    min-height: 360px;
    background-position: center 20%, center 20%, center;
  }
  .hero-content { padding: 0 6vw; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-headline { font-size: clamp(2.2rem, 10vw, 3rem); }
  .hero-sub { font-size: 1.06rem; line-height: 1.8; }
  .social-proof-row--hero { margin-top: 16px; gap: 8px; }
  .social-proof-badge {
    font-size: 0.64rem;
    letter-spacing: 0.06em;
    padding: 7px 10px;
  }
  .section-heading { font-size: clamp(2rem, 8vw, 2.6rem); }
  .section-sub { font-size: 1.05rem; line-height: 1.9; }
  .about-heading { font-size: clamp(2rem, 8vw, 2.6rem); }
  .about-body { font-size: 1.08rem; line-height: 1.9; }
  .portfolio-grid { gap: 14px; }
  .portfolio-card.vertical .portfolio-card-img {
    aspect-ratio: 9/16;
    max-height: none;
  }
  .portfolio-card.horizontal .portfolio-card-img {
    aspect-ratio: 16/9;
    max-height: none;
  }
  .portfolio-card-info { padding: 18px 14px 14px; }
  .portfolio-card-name { font-size: 1.08rem; }
  .deliverable-name { font-size: 1.18rem; }
  .deliverable-desc { font-size: 1rem; line-height: 1.75; }
  .process-step-title { font-size: 1.35rem; }
  .process-step-text { font-size: 1rem; line-height: 1.8; }
  .faq-question-text { font-size: 1.22rem; }
  .faq-answer-text { font-size: 1.05rem; line-height: 1.9; }
  .final-cta-heading { font-size: clamp(2.1rem, 9vw, 2.8rem); }
  .final-cta-text { font-size: 1.08rem; line-height: 1.9; }
  .testimonial-quote { font-size: 1.12rem; }
  .testimonial-name { font-size: 1.06rem; }
  .testimonial-date { font-size: 0.78rem; }
  .btn-primary, .btn-secondary, .btn-gold, .btn-whatsapp, .btn-ghost-white {
    font-size: 0.86rem;
  }
  .footer-brand-desc,
  .footer-links a,
  .footer-contact-item { font-size: 1rem; }
  .impact { padding: 80px 6vw; }
  .portfolio { padding: 80px 6vw; }
  .testimonials { padding: 80px 6vw; }
  .deliverables { padding: 80px 6vw; }
  .deliverables-grid { grid-template-columns: 1fr; }
  .process { padding: 80px 6vw; }
  .gallery { padding: 80px 6vw; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(4),
  .gallery-item:nth-child(6) { grid-column: span 1; }
  .faq { padding: 80px 6vw; }
  .final-cta { padding: 100px 6vw; }
  .about-stats { flex-wrap: wrap; gap: 24px; }
  footer { padding: 60px 6vw 32px; }
  .footer-bottom { flex-direction: column; align-items: center; }
}

@media (max-width: 768px) {
  .portfolio-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .portfolio-card.horizontal { grid-column: span 2; }
}

@media (max-width: 480px) {
  .portfolio-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .portfolio-card.horizontal { grid-column: span 2; }
}

@media (max-width: 360px) {
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-card.horizontal { grid-column: span 1; }
}
