/* ══════════════════════════════════════════════════
   MIMAR — Editorial Edition
   Stylesheet
   ══════════════════════════════════════════════════ */

:root {
  --ink: #1A2E4A;
  --ink-soft: #2A4068;
  --ink-70: rgba(26, 46, 74, 0.7);
  --ink-50: rgba(26, 46, 74, 0.5);
  --ink-15: rgba(26, 46, 74, 0.15);
  --ink-08: rgba(26, 46, 74, 0.08);
  --bone: #FFF8EC;
  --bone-warm: #F5EBD7;
  --paper: #FFFCF6;
  --blush: #FF6B6B;
  --blush-soft: #FFB8B8;
  --gold: #E8A92E;
  --mint: #6EC1E4;
  --grape: #C44BC2;
  --line: rgba(26, 46, 74, 0.12);

  --serif: 'Fraunces', Georgia, serif;
  --sans: 'Inter', -apple-system, sans-serif;
  --hand: 'Caveat', cursive;

  --ease: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; background: var(--paper); }
body {
  font-family: var(--sans);
  font-size: 16px;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
::selection { background: var(--blush); color: var(--bone); }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bone); }
::-webkit-scrollbar-thumb { background: var(--ink-15); }
::-webkit-scrollbar-thumb:hover { background: var(--ink-50); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--blush);
  display: inline-block;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
.section { padding: 130px 0; position: relative; }
.section-header {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 72px;
  max-width: 880px;
}
.section-header h2 { font-size: clamp(2.4rem, 5vw, 4rem); }
.section-header h2 em { font-style: italic; color: var(--blush); font-weight: 400; }
.section-header .lede { font-size: 1.05rem; color: var(--ink-70); max-width: 600px; }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 18px 0; background: transparent;
  transition: all 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(255, 252, 246, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--line);
  padding: 12px 0;
}
.nav.dark-bg:not(.scrolled) .nav-logo span,
.nav.dark-bg:not(.scrolled) .nav-links a,
.nav.dark-bg:not(.scrolled) .lang-btn { color: var(--bone); }
.nav.dark-bg:not(.scrolled) .lang-toggle { background: rgba(255,255,255,0.12); }
.nav.dark-bg:not(.scrolled) .lang-btn.active { background: var(--bone); color: var(--ink); }
.nav.dark-bg:not(.scrolled) .nav-mobile-toggle span { background: var(--bone); }

.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); }
.nav-logo img { width: 40px; height: 40px; border-radius: 50%; }
.nav-logo span { font-family: var(--serif); font-weight: 500; font-size: 1.15rem; }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a {
  text-decoration: none; color: var(--ink); font-size: 0.85rem; font-weight: 500;
  position: relative; transition: color 0.3s var(--ease);
  white-space: nowrap;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -6px; left: 0; width: 100%; height: 1px;
  background: currentColor; transform: scaleX(0); transform-origin: right;
  transition: transform 0.4s var(--ease-out);
}
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }

.lang-toggle { display: flex; gap: 2px; background: var(--ink-08); border-radius: 100px; padding: 3px; }
.lang-btn {
  padding: 5px 12px; border-radius: 100px; border: none; background: transparent;
  font-size: 0.72rem; font-weight: 600; color: var(--ink-70); cursor: pointer;
  transition: all 0.3s var(--ease); letter-spacing: 0.05em; font-family: var(--sans);
}
.lang-btn.active { background: var(--ink); color: var(--bone); }

.nav-mobile-toggle {
  display: none; background: none; border: none; cursor: pointer; padding: 8px; z-index: 1001;
}
.nav-mobile-toggle span {
  display: block; width: 22px; height: 2px; background: var(--ink); margin: 5px 0;
  transition: all 0.3s var(--ease);
}
.nav-mobile-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 5px); }
.nav-mobile-toggle.open span:nth-child(2) { opacity: 0; }
.nav-mobile-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -5px); }

/* ── HERO BASE ── */
.hero {
  min-height: 100vh; position: relative; overflow: hidden;
  background: var(--bone); color: var(--ink);
}
.hero-variant-split, .hero-variant-mosaic, .hero-variant-slideshow {
  display: none; min-height: 100vh; position: relative;
}
.hero[data-hero-variant="split"] .hero-variant-split,
.hero[data-hero-variant="mosaic"] .hero-variant-mosaic,
.hero[data-hero-variant="slideshow"] .hero-variant-slideshow { display: flex; }
.hero[data-hero-variant="slideshow"] { background: var(--ink); color: var(--bone); }
.hero[data-hero-variant="slideshow"] .hero-variant-slideshow { display: block; }

/* Variant switch pills */
.hero-variant-switch {
  position: absolute; bottom: 24px; left: 50%;
  transform: translateX(-50%); z-index: 10;
  display: flex; gap: 6px;
  background: rgba(255,252,246,0.92);
  backdrop-filter: blur(12px);
  border-radius: 100px; padding: 4px;
  box-shadow: 0 8px 24px rgba(26,46,74,0.15);
  border: 1px solid var(--line);
}
.hero-variant-switch button {
  padding: 8px 18px; border-radius: 100px;
  border: none; background: transparent;
  font-family: var(--sans); font-size: 0.78rem;
  font-weight: 600; color: var(--ink-70);
  cursor: pointer; transition: all 0.3s var(--ease);
}
.hero-variant-switch button.active {
  background: var(--ink); color: var(--bone);
}

/* ── VARIANT A: SPLIT ── */
.hero-variant-split {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding-top: 80px;
}
.hero[data-hero-variant="split"] .hero-variant-split { display: grid !important; }
.hero[data-hero-variant="mosaic"] .hero-variant-split,
.hero[data-hero-variant="slideshow"] .hero-variant-split { display: none !important; }

.hero-split-left {
  padding: 60px 60px 80px;
  background: var(--bone);
}
.hero-split-content { max-width: 560px; text-align: center; margin: 0 auto; }
.hero-logo-stamp {
  width: 280px; height: 280px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 28px;
}
.hero-logo-stamp img { width: 100%; height: 100%; object-fit: contain; }
.hero-split-left .hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px; border-radius: 100px;
  background: var(--paper);
  border: 1px solid var(--line);
  font-size: 0.78rem; color: var(--ink);
  margin-bottom: 24px;
}
.hero-split-left .hero-badge .stars { color: var(--gold); }
.hero-split-left .hero-badge .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--blush); }
.hero-split-left h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.8rem);
  line-height: 1; color: var(--ink);
  font-weight: 300; margin-bottom: 24px;
}
.hero-split-left h1 em { font-style: italic; color: var(--blush); font-weight: 300; }
.hero-split-left .hero-tagline {
  font-size: 1.05rem; color: var(--ink-70);
  margin-bottom: 32px; line-height: 1.55;
}
.hero-split-left .hero-cta { margin-bottom: 40px; display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.hero-split-left .hero-bottom-meta {
  display: flex; gap: 32px; flex-wrap: wrap;
  justify-content: center;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.hero-split-left .hero-bottom-meta div {
  display: flex; flex-direction: column;
  font-size: 0.68rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--ink-50);
}
.hero-split-left .hero-bottom-meta strong {
  font-family: var(--serif); font-size: 1.6rem; font-weight: 400;
  color: var(--ink); margin-bottom: 2px;
  letter-spacing: -0.02em; text-transform: none;
}

.hero-split-right {
  position: relative; height: 100vh;
  overflow: hidden;
}
.hero-photo-stack {
  position: absolute; inset: 0;
  padding: 32px;
}
.hero-photo {
  background-size: cover; background-position: center;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(26,46,74,0.25);
}
.hero-photo.main {
  position: absolute;
  top: 32px; right: 32px; bottom: 32px; left: 32px;
  z-index: 1;
}
.hero-photo-tag {
  position: absolute; bottom: 20px; left: 20px;
  background: rgba(255,252,246,0.95);
  backdrop-filter: blur(10px);
  padding: 8px 16px; border-radius: 100px;
  font-size: 0.72rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink);
  font-weight: 600;
}
.hero-photo.small {
  position: absolute;
  width: 180px; height: 220px;
  z-index: 2;
  border: 6px solid var(--paper);
}
.hero-photo.small.a {
  top: 60px; left: -30px;
  transform: rotate(-6deg);
}
.hero-photo.small.b {
  bottom: 80px; right: -20px;
  transform: rotate(5deg);
  width: 200px; height: 150px;
}
.hero-sticker {
  position: absolute;
  top: 50%; right: -24px;
  background: var(--blush); color: var(--bone);
  font-family: var(--hand); font-weight: 700;
  font-size: 1.5rem; line-height: 1.1;
  padding: 18px 22px; border-radius: 50%;
  width: 110px; height: 110px;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  transform: translateY(-50%) rotate(-8deg);
  box-shadow: 0 10px 24px rgba(255,107,107,0.4);
  z-index: 3;
  animation: heroFloat 4s ease-in-out infinite;
}

/* ── VARIANT B: MOSAIC ── */
.hero-variant-mosaic { position: relative; min-height: 100vh; }
.hero-mosaic-bg {
  position: absolute; inset: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 8px; padding: 8px;
}
.hm-tile {
  background-size: cover; background-position: center;
  border-radius: 4px;
}
.hero-mosaic-bg::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,252,246,0.4) 0%, rgba(255,252,246,0.95) 60%);
  pointer-events: none;
}
.hero-mosaic-center {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  min-height: 100vh; padding: 100px 32px 80px;
}
.hero-mosaic-card {
  background: var(--paper);
  border-radius: 24px;
  padding: 48px 56px;
  max-width: 640px;
  text-align: center;
  box-shadow: 0 30px 80px rgba(26,46,74,0.2);
  border: 1px solid var(--line);
}
.hero-mosaic-logo {
  width: 120px; height: 120px;
  object-fit: contain;
  margin: 0 auto 20px;
  display: block;
}
.hero-mosaic-card .hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 14px; border-radius: 100px;
  background: var(--bone-warm);
  font-size: 0.75rem; color: var(--ink);
  margin-bottom: 20px;
}
.hero-mosaic-card .hero-badge .stars { color: var(--gold); }
.hero-mosaic-card h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  line-height: 1.05; margin-bottom: 18px;
  font-weight: 300; color: var(--ink);
}
.hero-mosaic-card h1 em { font-style: italic; color: var(--blush); font-weight: 300; }
.hero-mosaic-card .hero-tagline {
  color: var(--ink-70); font-size: 1rem;
  margin-bottom: 28px;
}
.hero-mosaic-card .hero-cta {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
}

/* ── VARIANT C: SLIDESHOW (original) ── */
.hero-variant-slideshow { position: absolute; inset: 0; }
.hero-slideshow-logo {
  width: 80px; height: 80px;
  object-fit: contain;
  margin-bottom: 24px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
}
.hero-slides { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity 1.6s var(--ease);
}
.hero-slide.active { opacity: 1; }
.hero-slide-img {
  width: 100%; height: 100%;
  background-size: cover; background-position: center;
  transform: scale(1.06);
  transition: transform 8s var(--ease-out);
}
.hero-slide.active .hero-slide-img { transform: scale(1); }
.hero-variant-slideshow::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,46,74,0.55) 0%, rgba(26,46,74,0.4) 50%, rgba(26,46,74,0.85) 100%);
  z-index: 1; pointer-events: none;
}
.hero-variant-slideshow .hero-floats { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.hero-variant-slideshow .hero-content {
  position: relative; z-index: 2; width: 100%;
  max-width: 1280px; margin: 0 auto;
  padding: 140px 32px 120px;
  color: var(--bone);
}
.hero-variant-slideshow h1 {
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 1; color: var(--bone);
  font-weight: 300; margin-bottom: 28px;
}
.hero-variant-slideshow h1 em { font-style: italic; color: var(--blush); font-weight: 300; }
.hero-variant-slideshow .hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px; border-radius: 100px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  font-size: 0.78rem; color: var(--bone);
  margin-bottom: 24px;
}
.hero-variant-slideshow .hero-badge .stars { color: var(--gold); }
.hero-variant-slideshow .hero-badge .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--blush); }
.hero-variant-slideshow .hero-tagline {
  font-size: 1.1rem; color: rgba(255,248,236,0.85);
  max-width: 580px; margin-bottom: 36px;
}
.hero-variant-slideshow .hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-variant-slideshow .hero-bottom-meta {
  display: flex; gap: 40px; flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid rgba(255,248,236,0.18);
}
.hero-variant-slideshow .hero-bottom-meta div {
  display: flex; flex-direction: column;
  font-size: 0.7rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255,248,236,0.6);
}
.hero-variant-slideshow .hero-bottom-meta strong {
  font-family: var(--serif); font-size: 1.7rem; font-weight: 400;
  color: var(--bone); margin-bottom: 2px;
  letter-spacing: -0.02em; text-transform: none;
}
.hero-float {
  position: absolute; font-size: 2.5rem; opacity: 0.85;
  animation: heroFloat 8s ease-in-out infinite;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.3));
}
.hero-float.a { top: 18%; left: 8%; animation-delay: 0s; }
.hero-float.b { top: 30%; right: 10%; animation-delay: 1s; font-size: 1.8rem; }
.hero-float.c { bottom: 28%; left: 12%; animation-delay: 2s; font-size: 2.2rem; }
.hero-float.d { top: 60%; right: 14%; animation-delay: 1.5s; font-size: 2rem; }
.hero-float.e { top: 12%; right: 30%; animation-delay: 0.5s; font-size: 1.6rem; }
@keyframes heroFloat {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50% { transform: translateY(-20px) rotate(3deg); }
}
.hero-indicators {
  position: absolute; bottom: 70px; right: 32px; z-index: 3;
  display: flex; gap: 6px;
}
.hero-indicator {
  width: 28px; height: 2px; background: rgba(255,248,236,0.3);
  cursor: pointer; border: none; padding: 0;
  transition: background 0.3s var(--ease);
}
.hero-indicator.active { background: var(--bone); }

.btn-outline-dark {
  background: transparent; color: var(--ink);
  border: 1px solid var(--ink-15);
}
.btn-outline-dark:hover {
  background: var(--ink); color: var(--bone);
  border-color: var(--ink);
}

@media (max-width: 1024px) {
  .hero-variant-split { grid-template-columns: 1fr !important; }
  .hero-split-left { padding: 100px 32px 40px; }
  .hero-split-right { height: 60vh; }
  .hero-photo.small { display: none; }
  .hero-sticker { right: 20px; top: 20px; transform: rotate(-8deg); width: 90px; height: 90px; font-size: 1.2rem; }
  .hero-mosaic-bg { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(4, 1fr); }
  .hm-tile:nth-child(n+9) { display: none; }
  .hero-mosaic-card { padding: 36px 28px; }
}
@media (max-width: 768px) {
  .hero-split-left { padding: 100px 20px 32px; }
  .hero-split-right { height: 50vh; }
  .hero-variant-switch { bottom: 12px; transform: translateX(-50%) scale(0.85); }
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 28px; border-radius: 100px;
  font-family: var(--sans); font-size: 0.9rem; font-weight: 500;
  letter-spacing: 0.03em; text-decoration: none;
  border: 1px solid transparent; cursor: pointer;
  transition: all 0.4s var(--ease);
}
.btn-arrow { transition: transform 0.4s var(--ease); }
.btn:hover .btn-arrow { transform: translateX(5px); }
.btn-primary { background: var(--blush); color: var(--bone); }
.btn-primary:hover { background: var(--ink); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(0,0,0,0.18); }
.btn-outline {
  background: transparent; color: var(--bone);
  border-color: rgba(255,248,236,0.4);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--bone); }

/* ── MARQUEE ── */
.marquee-section {
  background: var(--ink); color: var(--bone);
  overflow: hidden; padding: 0;
  border-top: 1px solid rgba(255,248,236,0.12);
  border-bottom: 1px solid rgba(255,248,236,0.12);
}
.marquee {
  display: flex; gap: 0; white-space: nowrap;
  animation: marquee 38s linear infinite;
  padding: 28px 0;
}
.marquee-item {
  display: inline-flex; align-items: center; gap: 60px;
  padding: 0 30px;
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 300;
}
.marquee-item::after {
  content: '✦'; color: var(--blush);
  font-style: normal; font-size: 0.6em; margin-left: 60px;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── ABOUT ── */
.about { background: var(--paper); }
.about-grid {
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: 80px; align-items: center;
}
.about-image-stack { position: relative; aspect-ratio: 4/5; }
.about-image-main {
  position: absolute; inset: 24px 0 0 24px;
  background:
    repeating-linear-gradient(45deg, rgba(26,46,74,0.04) 0, rgba(26,46,74,0.04) 1px, transparent 1px, transparent 12px),
    var(--bone-warm);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--sans); font-size: 0.7rem;
  color: var(--ink-50); letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 4px;
  box-shadow: 0 20px 40px rgba(26,46,74,0.12);
}
.about-image-tape {
  position: absolute; inset: 0 24px 24px 0;
  background: var(--blush);
  opacity: 0.18;
  border-radius: 4px;
}
.about-image-sticker {
  position: absolute; bottom: -16px; right: -8px;
  background: var(--gold); color: var(--ink);
  font-family: var(--hand); font-weight: 700;
  font-size: 1.4rem; padding: 12px 24px;
  border-radius: 100px; transform: rotate(-6deg);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  z-index: 3;
}
.about-text h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  margin: 20px 0 28px;
}
.about-text h2 em { font-style: italic; color: var(--blush); font-weight: 400; }
.about-text p {
  font-size: 1.05rem; color: var(--ink-70);
  line-height: 1.7; margin-bottom: 18px;
  max-width: 540px;
}
.about-text p strong { color: var(--ink); font-weight: 600; }
.about-signature {
  margin-top: 32px; padding-top: 24px;
  border-top: 1px solid var(--line);
  font-family: var(--hand); font-size: 1.6rem;
  color: var(--blush); transform: rotate(-1deg);
}

/* ── STATS ── */
.stats-strip {
  background: var(--ink); padding: 80px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stat {
  padding: 0 32px; text-align: center;
  border-right: 1px solid rgba(255,248,236,0.15);
}
.stat:last-child { border-right: none; }
.stat-emoji { font-size: 2rem; margin-bottom: 16px; }
.stat-num {
  font-family: var(--serif); font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 300; line-height: 1;
  letter-spacing: -0.04em; color: var(--bone);
  display: flex; align-items: baseline; gap: 4px;
  justify-content: center;
}
.stat-num .suffix { font-size: 0.5em; color: var(--blush); font-style: italic; }
.stat-label {
  font-size: 0.72rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(255,248,236,0.6);
  margin-top: 12px;
}

/* ── PROCESS ── */
.process { background: var(--paper); }
.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.process-steps::before {
  content: ''; position: absolute;
  top: 36px; left: 12%; right: 12%; height: 2px;
  background: repeating-linear-gradient(90deg, var(--blush) 0, var(--blush) 6px, transparent 6px, transparent 12px);
  z-index: 0;
}
.process-step {
  background: var(--bone); padding: 32px 24px;
  border-radius: 16px; position: relative;
  transition: transform 0.4s var(--ease);
  box-shadow: 0 4px 16px rgba(26,46,74,0.06);
}
.process-step:hover { transform: translateY(-6px); }
.process-step-num {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--ink); color: var(--bone);
  padding: 8px 14px 8px 14px; border-radius: 100px;
  font-family: var(--serif); font-size: 0.95rem;
  margin-bottom: 20px; font-weight: 500;
}
.process-step-emoji { font-size: 1.1rem; }
.process-step h3 {
  font-size: 1.25rem; margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.process-step p {
  font-size: 0.92rem; color: var(--ink-70);
  line-height: 1.55;
}

/* ── SERVICES ── */
.services { background: var(--bone); }
.services-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--paper);
  padding: 28px 24px 32px;
  border-radius: 4px;
  border: 1px solid var(--line);
  position: relative;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(26,46,74,0.08);
  border-color: var(--blush-soft);
}
.service-emoji {
  font-size: 1.6rem;
  margin-bottom: 18px;
  display: inline-flex;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  background: var(--bone);
  border-radius: 50%;
}
.service-card:nth-child(1) .service-emoji { background: rgba(255,107,107,0.15); }
.service-card:nth-child(2) .service-emoji { background: rgba(110,193,228,0.18); }
.service-card:nth-child(3) .service-emoji { background: rgba(196,75,194,0.15); }
.service-card:nth-child(4) .service-emoji { background: rgba(232,169,46,0.18); }
.service-card h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 12px;
  color: var(--ink);
}
.service-card h3 em { font-style: italic; color: var(--blush); font-weight: 400; }
.service-card p {
  color: var(--ink-70);
  font-size: 0.88rem;
  line-height: 1.55;
}
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ── PROCESS SOFT (inside services) ── */
.process-soft {
  margin-top: 80px;
  padding: 56px 48px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  position: relative;
}
.process-soft::before {
  content: ''; position: absolute;
  top: -1px; left: -1px; right: -1px;
  height: 3px;
  background: linear-gradient(90deg, var(--blush) 0%, var(--gold) 50%, var(--mint) 100%);
}
.process-soft-header { margin-bottom: 40px; }
.process-soft-header .eyebrow { margin-bottom: 12px; }
.process-soft-header h3 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.1;
  max-width: 720px;
}
.process-soft-header h3 em { font-style: italic; color: var(--blush); font-weight: 400; }
.process-soft-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.process-soft-step {
  display: flex; flex-direction: column; gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  position: relative;
}
.process-soft-step::before {
  content: ''; position: absolute;
  top: -1px; left: 0; width: 32px; height: 1px;
  background: var(--blush);
}
.ps-num {
  font-family: var(--serif);
  font-size: 0.85rem; font-weight: 500;
  color: var(--blush);
  letter-spacing: 0.1em;
}
.ps-body h4 {
  font-family: var(--serif);
  font-size: 1.15rem; font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
  color: var(--ink);
}
.ps-body p {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--ink-70);
}
@media (max-width: 900px) {
  .process-soft { padding: 40px 24px; margin-top: 56px; }
  .process-soft-steps { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (max-width: 540px) {
  .process-soft-steps { grid-template-columns: 1fr; }
}

/* ── GALLERY CAROUSEL ── */
.gallery { background: var(--paper); }
.gallery-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}
.gallery-track {
  display: flex;
  gap: 16px;
  transition: transform 0.6s var(--ease-out);
}
.gallery-slide {
  flex: 0 0 calc(50% - 8px);
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}
.gallery-slide:hover img {
  transform: scale(1.04);
}
.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--ink-15);
  background: rgba(255, 252, 246, 0.92);
  backdrop-filter: blur(10px);
  color: var(--ink);
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-arrow:hover {
  background: var(--ink);
  color: var(--bone);
  border-color: var(--ink);
}
.gallery-arrow.prev { left: 16px; }
.gallery-arrow.next { right: 16px; }

@media (max-width: 768px) {
  .gallery-slide {
    flex: 0 0 100%;
  }
  .gallery-arrow {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }
  .gallery-arrow.prev { left: 8px; }
  .gallery-arrow.next { right: 8px; }
}

/* ── LIGHTBOX ── */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(26,46,74,0.96); z-index: 2000;
  display: none; align-items: center; justify-content: center;
  padding: 40px; backdrop-filter: blur(20px);
}
.lightbox.open { display: flex; animation: fadeIn 0.4s var(--ease); }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.lightbox-content { display: flex; flex-direction: column; align-items: center; }
.lightbox-img {
  width: 60vw; height: 70vh;
  background: var(--bone-warm);
  background-size: cover; background-position: center;
  border-radius: 4px;
}
.lightbox-caption { margin-top: 24px; text-align: center; color: var(--bone); }
.lightbox-caption .meta {
  font-size: 0.7rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(255,248,236,0.6);
  margin-bottom: 6px;
}
.lightbox-caption .title {
  font-family: var(--serif); font-style: italic;
  font-size: 1.5rem;
}
.lightbox-close, .lightbox-nav {
  position: absolute; background: transparent;
  border: 1px solid rgba(255,248,236,0.3); color: var(--bone);
  width: 48px; height: 48px; border-radius: 50%;
  cursor: pointer; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s var(--ease);
}
.lightbox-close:hover, .lightbox-nav:hover {
  background: var(--bone); color: var(--ink); border-color: var(--bone);
}
.lightbox-close { top: 32px; right: 32px; }
.lightbox-nav.prev { left: 32px; top: 50%; transform: translateY(-50%); }
.lightbox-nav.next { right: 32px; top: 50%; transform: translateY(-50%); }
.lightbox-counter {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  font-size: 0.75rem; letter-spacing: 0.2em;
  color: rgba(255,248,236,0.6);
}

/* ── TESTIMONIALS ── */
.testimonials {
  background: var(--ink); color: var(--bone);
  position: relative; overflow: hidden;
}
.testimonials::before {
  content: '"'; position: absolute;
  top: -80px; right: 5%;
  font-family: var(--serif); font-size: 28rem;
  font-style: italic; color: rgba(255,248,236,0.04);
  line-height: 1; pointer-events: none;
}
.testimonials .section-header h2 { color: var(--bone); }
.testimonials .section-header h2 em { color: var(--blush); }
.testimonials .section-header .lede { color: rgba(255,248,236,0.7); }

.testimonials-rating {
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 16px; padding: 8px 16px;
  background: rgba(255,255,255,0.08);
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.15);
}
.testimonials .stars { color: var(--gold); letter-spacing: 2px; }
.rating-text { font-size: 0.8rem; color: rgba(255,248,236,0.8); }
.rating-text strong { color: var(--bone); font-weight: 700; }

.testimonial-stage {
  position: relative; min-height: 360px;
  margin-top: 56px;
}
.testimonial {
  position: absolute; inset: 0; opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  pointer-events: none;
  display: grid; grid-template-columns: 1fr 280px;
  gap: 56px; align-items: end;
}
.testimonial.active { opacity: 1; transform: translateY(0); pointer-events: auto; }
.testimonial-quote {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.4rem, 2.3vw, 2.1rem);
  font-weight: 300; line-height: 1.4;
  color: var(--bone); max-width: 880px;
}
.testimonial-quote::before { content: '"'; font-style: normal; color: var(--blush); margin-right: 4px; }
.testimonial-quote::after { content: '"'; font-style: normal; color: var(--blush); margin-left: 4px; }
.testimonial-author {
  border-left: 2px solid var(--blush); padding-left: 20px;
}
.testimonial-author .avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--blush); color: var(--bone);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 1.3rem;
  font-weight: 500; margin-bottom: 12px;
}
.testimonial-author .name {
  font-family: var(--serif); font-size: 1.05rem;
  color: var(--bone); margin-bottom: 4px;
}
.testimonial-author .event {
  font-size: 0.78rem; color: rgba(255,248,236,0.65);
  margin-bottom: 8px;
}
.testimonial-author .source {
  font-size: 0.65rem; color: var(--gold);
  text-transform: uppercase; letter-spacing: 0.18em;
  font-weight: 600;
}
.testimonial-controls {
  margin-top: 40px; display: flex;
  align-items: center; justify-content: space-between;
  border-top: 1px solid rgba(255,248,236,0.15);
  padding-top: 24px;
}
.testimonial-dots { display: flex; gap: 8px; }
.testimonial-dot {
  width: 28px; height: 2px;
  background: rgba(255,248,236,0.25);
  cursor: pointer; border: none; padding: 0;
  transition: background 0.3s var(--ease);
}
.testimonial-dot.active { background: var(--bone); }
.testimonial-arrow {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid rgba(255,248,236,0.25);
  background: transparent; color: var(--bone);
  cursor: pointer; transition: all 0.3s var(--ease);
}
.testimonial-arrow:hover {
  background: var(--bone); color: var(--ink); border-color: var(--bone);
}

/* ── PARTNERS ── */
.partners { background: var(--paper); }
.partners-badges {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.partner-badge {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 36px;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: var(--bone);
  text-decoration: none;
  color: var(--ink);
  transition: all 0.4s var(--ease);
}
.partner-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(26, 46, 74, 0.1);
  border-color: var(--blush-soft);
}
.partner-badge-logo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--paper);
}
.partner-badge-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.partner-badge-name {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
}
.partner-badge-location {
  font-size: 0.82rem;
  color: var(--blush);
}

/* ── INSTAGRAM ── */
.instagram { background: var(--bone); padding: 110px 0; }
.ig-header {
  display: flex; flex-direction: column;
  margin-bottom: 40px; gap: 8px;
}
.ig-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}
.ig-header h2 em { font-style: italic; color: var(--blush); font-weight: 400; }
.ig-handle a {
  font-family: var(--sans); font-size: 0.9rem;
  color: var(--blush); text-decoration: none;
  font-weight: 500;
}
.ig-handle a:hover { text-decoration: underline; }
.ig-grid {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}
.ig-item {
  aspect-ratio: 1;
  background:
    repeating-linear-gradient(135deg, rgba(26,46,74,0.05) 0, rgba(26,46,74,0.05) 1px, transparent 1px, transparent 10px),
    var(--bone-warm);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  transition: transform 0.4s var(--ease);
  border-radius: 4px;
}
.ig-item:hover { transform: scale(1.05); z-index: 1; }
.ig-item-emoji { font-size: 2.2rem; opacity: 0.7; }
.ig-item::after {
  content: '↗'; position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 40px; height: 40px;
  background: var(--bone); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink); opacity: 0;
  transition: opacity 0.3s var(--ease);
  font-size: 1.1rem;
}
.ig-item:hover::after { opacity: 1; }
.ig-item:hover .ig-item-emoji { opacity: 0; }

/* ── TEAM ── */
.team { background: var(--paper); }
.team-benefits {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; margin-bottom: 56px;
}
.team-benefit {
  padding: 28px 24px;
  background: var(--bone);
  border-radius: 12px;
  transition: transform 0.4s var(--ease);
}
.team-benefit:hover { transform: translateY(-4px); }
.team-benefit-emoji { font-size: 1.8rem; margin-bottom: 14px; }
.team-benefit h4 {
  font-size: 1.15rem; margin-bottom: 8px;
}
.team-benefit p {
  font-size: 0.88rem; color: var(--ink-70);
  line-height: 1.55;
}

/* ── CONTACT ── */
.contact {
  background: var(--ink); color: var(--bone);
  padding: 130px 0;
}
.contact .section-header h2 { color: var(--bone); }
.contact .section-header h2 em { color: var(--blush); }
.contact .section-header .lede { color: rgba(255,248,236,0.7); }

.contact-grid {
  display: grid; grid-template-columns: 1fr 1.3fr;
  gap: 56px; align-items: start;
  margin-top: 40px;
}
.contact-cards {
  display: flex; flex-direction: column; gap: 12px;
}
.contact-card {
  display: flex; align-items: center; gap: 18px;
  padding: 18px 22px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  text-decoration: none; color: var(--bone);
  transition: all 0.3s var(--ease);
}
.contact-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--blush);
  transform: translateX(4px);
}
.contact-card-emoji { font-size: 1.5rem; }
.contact-card-label {
  font-size: 0.7rem; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,248,236,0.6);
  margin-bottom: 4px;
}
.contact-card-value {
  font-family: var(--serif); font-style: italic;
  font-size: 1.05rem; color: var(--bone);
}

.contact-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 40px; border-radius: 16px;
}
.contact-form h3 {
  color: var(--bone); font-size: 1.4rem;
  margin-bottom: 28px;
}
.contact-form .form-group label { color: rgba(255,248,236,0.75); }
.contact-form .form-group input,
.contact-form .form-group textarea,
.contact-form .form-group select {
  background: transparent; border: none;
  border-bottom: 1px solid rgba(255,248,236,0.25);
  color: var(--bone); border-radius: 0;
  padding: 12px 0; font-family: var(--sans);
}
.contact-form .form-group input::placeholder,
.contact-form .form-group textarea::placeholder { color: rgba(255,248,236,0.4); }
.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus,
.contact-form .form-group select:focus {
  outline: none; border-bottom-color: var(--blush);
}
.contact-form .form-group select option { background: var(--ink); color: var(--bone); }
.contact-form button[type="submit"] {
  background: var(--blush); color: var(--bone);
  border: none; padding: 16px 32px;
  border-radius: 100px; font-family: var(--sans);
  font-size: 0.9rem; font-weight: 500; letter-spacing: 0.04em;
  cursor: pointer; width: 100%; margin-top: 12px;
  transition: all 0.3s var(--ease);
}
.contact-form button[type="submit"]:hover {
  background: var(--bone); color: var(--ink);
  transform: translateY(-2px);
}

/* Forms shared */
.form-group { margin-bottom: 22px; }
.form-group label {
  display: block; font-size: 0.7rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-70); margin-bottom: 10px;
  font-weight: 600;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 14px 0;
  border: none; border-bottom: 1px solid var(--ink-15);
  background: transparent; font-family: var(--sans);
  font-size: 0.95rem; color: var(--ink);
  transition: border-color 0.3s var(--ease);
  border-radius: 0;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-bottom-color: var(--ink);
}
.form-group textarea { resize: vertical; min-height: 80px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }

.success-msg {
  background: rgba(232,169,46,0.15); color: var(--gold);
  padding: 16px; text-align: center;
  display: none; margin-top: 16px;
  font-size: 0.9rem; border-radius: 8px;
  border-left: 3px solid var(--gold);
}
.success-msg.show { display: block; animation: fadeIn 0.4s var(--ease); }
.contact-form .success-msg {
  color: var(--bone); background: rgba(255,107,107,0.15);
  border-left-color: var(--blush);
}

/* ── FOOTER ── */
.footer {
  background: var(--ink); color: rgba(255,248,236,0.7);
  padding: 72px 0 28px;
  border-top: 1px solid rgba(255,248,236,0.1);
}
.footer-top {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 56px;
}
.footer-brand-name {
  font-family: var(--serif); font-style: italic;
  font-size: 2.4rem; color: var(--bone);
  margin-bottom: 12px; font-weight: 300;
}
.footer-brand-tag {
  font-family: var(--hand); color: var(--blush);
  font-size: 1.4rem; margin-bottom: 20px;
}
.footer-col h5 {
  font-size: 0.7rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--bone);
  margin-bottom: 18px; font-weight: 600;
}
.footer-col a {
  display: block; color: rgba(255,248,236,0.6);
  text-decoration: none; font-size: 0.9rem;
  margin-bottom: 10px; transition: color 0.3s var(--ease);
}
.footer-col a:hover { color: var(--blush); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px; border-top: 1px solid rgba(255,248,236,0.1);
  font-size: 0.75rem; color: rgba(255,248,236,0.5);
  flex-wrap: wrap; gap: 16px;
}

/* ── WHATSAPP FAB ── */
.wa-fab {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; color: white;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(37,211,102,0.35);
  transition: all 0.3s var(--ease);
}
.wa-fab::before {
  content: ''; position: absolute; inset: -6px;
  border-radius: 50%; border: 2px solid rgba(37,211,102,0.5);
  animation: wa-pulse 2s var(--ease) infinite;
}
@keyframes wa-pulse {
  0% { transform: scale(0.95); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}
.wa-fab:hover { transform: scale(1.08); }
.wa-fab svg { width: 28px; height: 28px; }

/* ── I18N ── */
[data-lang="en"] [data-i18n-pt],
[data-lang="pt"] [data-i18n-en] { display: none; }
[data-lang="pt"] [data-i18n-pt],
[data-lang="en"] [data-i18n-en] { display: inline; }
[data-lang="en"] [data-block-pt],
[data-lang="pt"] [data-block-en] { display: none !important; }
[data-lang="pt"] [data-block-pt],
[data-lang="en"] [data-block-en] { display: block; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .stat:nth-child(2) { border-right: none; }
  .stat { border-bottom: 1px solid var(--line); padding-bottom: 24px; }
  .stat:nth-last-child(-n+2) { border-bottom: none; padding-bottom: 0; padding-top: 24px; }
  .ig-grid { grid-template-columns: repeat(3, 1fr); }
  .ig-item:nth-child(n+7) { display: none; }
  .gallery-grid { columns: 2; }
  .team-benefits { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .partners-list { grid-template-columns: 1fr; }
  .contact-grid, .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .testimonial { grid-template-columns: 1fr; gap: 32px; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .hero-bottom-meta { gap: 24px; }
}

@media (max-width: 1100px) {
  .nav-links { display: none; }
  .nav-mobile-toggle { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column; align-items: flex-start;
    position: fixed; inset: 0;
    background: var(--paper); padding: 100px 32px 32px;
    gap: 24px; z-index: 1000;
  }
  .nav-links.open a { font-size: 1.4rem; font-family: var(--serif); color: var(--ink); }
}

@media (max-width: 768px) {
  .container, .nav-inner { padding: 0 20px; }
  .section { padding: 80px 0; }
  .hero-content { padding: 100px 20px 80px; }
  .hero-bottom-meta { gap: 20px; }
  .hero-bottom-meta strong { font-size: 1.4rem; }
  .gallery-grid { columns: 1; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid var(--line); padding: 24px 0; }
  .stat:last-child { border-bottom: none; }
  .partner { grid-template-columns: 1fr; padding: 28px 24px; }
  .ig-grid { grid-template-columns: repeat(3, 1fr); gap: 4px; }
  .contact-form { padding: 28px 22px; }
  .testimonials::before { font-size: 14rem; top: -40px; }
  .lightbox { padding: 16px; }
  .lightbox-close { top: 16px; right: 16px; }
  .lightbox-nav.prev { left: 8px; }
  .lightbox-nav.next { right: 8px; }
  .lightbox-img { width: 90vw; height: 60vh; }
  .team-benefits { grid-template-columns: 1fr; }
  .testimonial-controls { flex-direction: column; gap: 20px; }
  .process-steps { grid-template-columns: 1fr; }
  .hero-float { font-size: 1.5rem !important; }
  .about-image-stack { aspect-ratio: 1/1; }
}

.hero-photo[data-images] {
  transition: opacity 0.6s ease;
}