/* ═══════════════════════════════════════════════
   Lety Maldonado Eventos — Static CSS
   Converted from Next.js + Tailwind to Vanilla CSS
   ═══════════════════════════════════════════════ */

/* ─── Google Fonts ─── */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500&family=DM+Serif+Display:ital,wght@0,400;1,400&display=swap');

/* ─── CSS Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; scroll-behavior: smooth; overflow-x: hidden; width: 100%; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

[id] { scroll-margin-top: 5rem; }
@media (min-width: 768px) { [id] { scroll-margin-top: 6rem; } }
img, video { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
a:visited { color: inherit; }
a.btn-dark:visited { color: var(--cream-light); }
a.btn-dark:visited:hover { color: var(--cream-light); }
a.btn-outline-dark:visited { color: var(--ebony); }
a.btn-outline-dark:visited:hover { background-color: var(--ebony); color: var(--cream-light); }
a.btn-outline-light:visited { color: var(--cream-light); }
a.btn-outline-light:visited:hover { background-color: var(--cream-light); color: var(--ebony); border-color: var(--cream-light); }
a.btn-ghost-dark:visited { color: var(--ebony); }
a.btn-ghost-dark:visited:hover { border-color: var(--ebony); color: var(--ebony); }
a.btn-ghost-light:visited { color: var(--cream-light); }
a.btn-ghost-light:visited:hover { color: var(--cream-light); }
ul, ol { list-style: none; }
button { border: none; background: none; cursor: pointer; font: inherit; }

/* ─── Design Tokens ─── */
:root {
  --font-serif: 'DM Serif Display', Georgia, serif;
  --font-sans: 'DM Sans', system-ui, sans-serif;
  --font-script: var(--font-sans); /* Script font removed — kept for HTML compat */

  --cream: #F0EBE3;
  --cream-light: #F7F4F0;
  --cream-warm: #E8E0D5;
  --cream-dark: #D8CDBF;
  --ebony: #1C1916;
  --ebony-light: #2E2A27;
  --ebony-muted: #5A5450;
  --ebony-subtle: #9B9590;
  --taupe: #7D6355;
  --taupe-light: #8A7261;
  --gold: #C4A882;
}

/* ─── Base ─── */
body {
  font-family: var(--font-sans);
  background: var(--cream-light);
  color: var(--ebony);
  overflow-x: hidden;
  width: 100%;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-serif); }
::selection { background: #D8CDBF; color: #1C1916; }
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: #F0EBE3; }
::-webkit-scrollbar-thumb { background: #BFB0A3; border-radius: 2px; }

/* ─── Typography ─── */
.text-display-lg { font-size: clamp(3rem, 6vw, 6rem); line-height: 1.0; }
.text-display-md { font-size: clamp(2rem, 4vw, 3.8rem); line-height: 1.05; }
.text-display-sm { font-size: clamp(1.6rem, 3vw, 2.8rem); line-height: 1.1; }
.text-script-md { font-size: 0.875rem; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 300; line-height: 1.4; }

/* ─── Layout ─── */
.container-wide { max-width: 80rem; margin: 0 auto; padding: 0 1.25rem; }
.container-narrow { max-width: 56rem; margin: 0 auto; padding: 0 1.25rem; }
.section-padding { padding: 5rem 0; }
.section-padding-sm { padding: 3rem 0; }

@media (min-width: 768px) {
  .container-wide, .container-narrow { padding: 0 2.5rem; }
  .section-padding { padding: 6rem 0; }
  .section-padding-sm { padding: 4rem 0; }
}
@media (min-width: 1024px) {
  .section-padding { padding: 8rem 0; }
  .section-padding-sm { padding: 5rem 0; }
}

/* ─── Labels ─── */
.label {
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  font-family: var(--font-sans);
  font-weight: 500;
  color: var(--taupe);
}
.label-light {
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  font-family: var(--font-sans);
  font-weight: 500;
  color: var(--taupe-light);
}

/* ─── Dividers ─── */
.divider { display: block; height: 1px; width: 3.5rem; background-color: var(--taupe); }
.divider-light { display: block; height: 1px; width: 3.5rem; background-color: var(--taupe-light); }

/* ─── Buttons ─── */
a.btn-dark, .btn-dark {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background-color: var(--ebony); color: var(--cream-light);
  padding: 1rem 2.25rem; font-size: 10px; letter-spacing: 0.35em;
  text-transform: uppercase; font-family: var(--font-sans); font-weight: 500;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
a.btn-dark:hover, .btn-dark:hover { background-color: var(--ebony-light); color: var(--cream-light); }

.btn-outline-dark {
  display: inline-flex; align-items: center; gap: 0.75rem;
  border: 1px solid var(--ebony); color: var(--ebony);
  padding: 1rem 2.25rem; font-size: 10px; letter-spacing: 0.35em;
  text-transform: uppercase; font-family: var(--font-sans); font-weight: 500;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.btn-outline-dark:hover { background-color: var(--ebony); color: var(--cream-light); }

.btn-ghost-dark {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: transparent; color: var(--ebony); border: 1px solid rgba(28,25,22,0.3);
  padding: 1rem 2.25rem; font-size: 10px; letter-spacing: 0.35em;
  text-transform: uppercase; font-family: var(--font-sans); font-weight: 500;
  transition: border-color 0.3s ease, color 0.3s ease;
}
.btn-ghost-dark:hover { border-color: var(--ebony); color: var(--ebony); }

.btn-outline-light {
  display: inline-flex; align-items: center; gap: 0.75rem;
  border: 1px solid rgba(240,235,227,0.4); color: var(--cream-light);
  padding: 1rem 2.25rem; font-size: 10px; letter-spacing: 0.35em;
  text-transform: uppercase; font-family: var(--font-sans); font-weight: 500;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.btn-outline-light:hover { background-color: var(--cream-light); color: var(--ebony); border-color: var(--cream-light); }

.btn-ghost-light {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--cream-light); font-size: 10px; letter-spacing: 0.35em;
  text-transform: uppercase; font-weight: 500;
  padding-bottom: 1px; border-bottom: 1px solid rgba(247,244,240,0.3);
  transition: border-color 0.2s ease;
}
.btn-ghost-light:hover { border-color: var(--cream-light); }

.btn-ghost-dark {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--ebony); font-size: 11px; letter-spacing: 0.35em;
  text-transform: uppercase; font-weight: 500; min-height: 44px;
  padding-bottom: 1px; border-bottom: 1px solid rgba(28,25,22,0.3);
  transition: border-color 0.2s ease;
}
.btn-ghost-dark:hover { border-color: var(--ebony); }

/* ─── Nav Link ─── */
.nav-link {
  font-size: 10px; letter-spacing: 0.35em; text-transform: uppercase;
  font-weight: 600; transition: color 0.2s ease; position: relative;
  color: var(--ebony);
}
.nav-link::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  height: 1px; width: 0; background-color: var(--taupe);
  transition: width 0.3s ease;
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link.active { color: var(--taupe); }

/* ─── Form ─── */
.input-field {
  width: 100%; background: transparent;
  border: none; border-bottom: 1px solid rgba(28,25,22,0.2);
  padding: 0.75rem 0; color: var(--ebony); font-size: 0.875rem;
  font-family: var(--font-sans); transition: border-color 0.3s ease;
}
.input-field::placeholder { color: var(--ebony-muted); }
.input-field:focus { outline: none; border-color: var(--taupe); }
.input-label {
  display: block; font-size: 10px; letter-spacing: 0.5em;
  text-transform: uppercase; font-weight: 500;
  color: var(--ebony-muted); margin-bottom: 0.5rem;
}
textarea.input-field { resize: vertical; min-height: 120px; }

/* ─── Watermark ─── */
.lm-watermark {
  position: absolute; font-family: var(--font-serif);
  font-weight: 300; line-height: 1; font-size: 10rem;
  user-select: none; pointer-events: none;
  color: rgba(28,25,22,0.04);
}
.lm-watermark-light {
  position: absolute; font-family: var(--font-serif);
  font-weight: 300; line-height: 1; font-size: 10rem;
  user-select: none; pointer-events: none;
  color: rgba(240,235,227,0.06);
}
@media (min-width: 768px) {
  .lm-watermark, .lm-watermark-light { font-size: 14rem; }
}

/* ─── Animations ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Scroll-triggered fade-up */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ═══════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: all 0.5s ease;
}
.site-header.transparent { background: transparent; }
.site-header.scrolled {
  background: rgba(247,244,240,0.95); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(28,25,22,0.05);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 4rem;
}
@media (min-width: 768px) { .header-inner { height: 5rem; } }

.header-logo { display: flex; flex-direction: column; line-height: 1; transition: all 0.7s ease; }
.header-logo.hidden-logo { opacity: 0; pointer-events: none; }
.header-logo .logo-name { font-family: var(--font-serif); font-size: 1.125rem; letter-spacing: 0.1em; color: var(--ebony); }
.header-logo .logo-sub { font-family: var(--font-sans); font-size: 0.625rem; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 300; color: var(--taupe); }

.desktop-nav { display: none; align-items: center; gap: 1.5rem; }
@media (min-width: 1024px) { .desktop-nav { display: flex; } }

.mobile-toggle { display: block; padding: 0.5rem; color: var(--ebony); }
@media (min-width: 1024px) { .mobile-toggle { display: none; } }

/* Mobile overlay */
.mobile-overlay {
  position: fixed; inset: 0; z-index: 60; background: var(--cream-light);
  display: flex; flex-direction: column;
  opacity: 0; pointer-events: none; transition: opacity 0.5s ease;
}
.mobile-overlay.open { opacity: 1; pointer-events: auto; }
.mobile-overlay-header { display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 1.5rem 1rem; }
.mobile-nav { flex: 1; display: flex; flex-direction: column; justify-content: center; padding: 0 2.5rem; gap: 0.25rem; }
.mobile-nav a {
  display: flex; align-items: center; gap: 1rem; padding: 0.75rem 0;
  transition: color 0.2s ease; color: rgba(28,25,22,0.35);
}
.mobile-nav a:hover, .mobile-nav a.active { color: var(--ebony); }
.mobile-nav a .num { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(28,25,22,0.2); width: 1.5rem; }
.mobile-nav a .link-text { font-family: var(--font-sans); font-size: 1.25rem; font-weight: 600; }
.mobile-bottom { padding: 0 2.5rem 2rem; }
.mobile-bottom-divider { height: 1px; background: rgba(28,25,22,0.08); margin-bottom: 1.5rem; }
.mobile-bottom-row { display: flex; align-items: center; justify-content: space-between; }
.mobile-bottom a { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(28,25,22,0.3); transition: color 0.2s; display: inline-flex; align-items: center; gap: 0.5rem; }
.mobile-bottom a:hover { color: rgba(28,25,22,0.6); }

/* ═══════════════════════════════════════════════
   HERO — Editorial Split
   ═══════════════════════════════════════════════ */
.hero {
  position: relative; min-height: 100dvh; display: flex;
  flex-direction: column; overflow: hidden; background: var(--cream-light);
}

/* Inner grid wrapper */
.hero-grid {
  position: relative; z-index: 10; flex: 1; display: flex; flex-direction: column;
}
@media (min-width: 1024px) {
  .hero-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 0; }
}

/* ── Video panel ── */
.hero-video-panel {
  position: absolute; inset: 0;
}
@media (min-width: 1024px) {
  .hero-video-panel {
    position: relative; inset: auto;
    grid-column: 6 / 13; grid-row: 1;
    min-height: 600px; order: 2;
  }
}

.hero-video-wrap {
  position: absolute; inset: 0;
  will-change: clip-path;
  /* clip-path set by GSAP before animation; no CSS pre-hide so fallback is always visible */
}

.hero-video-inner {
  position: absolute;
  inset: -12%; width: 124%; height: 124%;
  will-change: transform;
}

.hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
}

/* Overlays */
.hero-overlay-mobile {
  position: absolute; inset: 0;
  background: rgba(247,244,240,0.65);
  pointer-events: none;
}
@media (min-width: 1024px) { .hero-overlay-mobile { display: none; } }

.hero-overlay-desktop-left {
  display: none;
  pointer-events: none;
}
@media (min-width: 1024px) {
  .hero-overlay-desktop-left {
    display: block; position: absolute;
    top: -2px; right: 0; bottom: -2px; left: -24px; /* extended left to cover sub-pixel seam */
    background: linear-gradient(to right,
      rgba(247,244,240,1) 0%, rgba(247,244,240,1) 8%,
      rgba(247,244,240,0.92) 14%, rgba(247,244,240,0.78) 22%,
      rgba(247,244,240,0.55) 36%, rgba(247,244,240,0.35) 48%,
      rgba(247,244,240,0.18) 62%, rgba(247,244,240,0.06) 76%,
      transparent 90%);
  }
}

.hero-overlay-top {
  display: none; pointer-events: none;
}
@media (min-width: 1024px) {
  .hero-overlay-top {
    display: block; position: absolute;
    top: -2px; right: 0; left: -4px; height: 35%;
    background: linear-gradient(to bottom,
      rgba(247,244,240,0.6) 0%, rgba(247,244,240,0.3) 50%, transparent 100%);
  }
}

.hero-overlay-bottom {
  display: none; pointer-events: none;
}
@media (min-width: 1024px) {
  .hero-overlay-bottom {
    display: block; position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(247,244,240,0.35) 0%, transparent 25%);
  }
}

/* ── Text panel ── */
.hero-text-panel {
  position: relative; z-index: 20;
  display: flex; flex-direction: column; justify-content: center;
  padding: 6rem 1.5rem 4rem;
  text-align: center; align-items: center;
  /* No background on mobile — video shows through with overlay tint */
}
@media (min-width: 768px) { .hero-text-panel { padding: 6rem 2.5rem 4rem; } }
@media (min-width: 1024px) {
  .hero-text-panel {
    grid-column: 1 / 6; grid-row: 1;
    padding: 0 2rem 0 4rem; order: 1;
    text-align: left; align-items: flex-start;
    background-color: var(--cream-light); /* solid cream only on desktop to cover column seam */
  }
}
@media (min-width: 1280px) { .hero-text-panel { padding: 0 2rem 0 6rem; } }

/* Hero logo image */
.hero-logo-img {
  width: 9rem; height: auto; object-fit: contain; margin-bottom: 1.5rem;
}
@media (min-width: 768px) { .hero-logo-img { width: 11rem; } }
@media (min-width: 1024px) { .hero-logo-img { width: 13rem; margin-bottom: 2.5rem; } }

/* Eyebrow */
.hero-eyebrow {
  font-family: var(--font-sans); font-size: 11px; letter-spacing: 0.3em;
  text-transform: uppercase; font-weight: 700; color: var(--ebony-muted);
  margin-bottom: 1.25rem;
}
@media (min-width: 1024px) { .hero-eyebrow { font-size: 11px; margin-bottom: 1.75rem; color: var(--taupe); } }

/* Headline */
.hero-headline {
  font-family: var(--font-serif); font-weight: 400;
  font-size: clamp(2.25rem, 8vw, 6rem); line-height: 0.95;
  letter-spacing: -0.01em; color: var(--ebony);
}
/* Lines visible by default; GSAP sets clip-path before animating if available */
.hero-headline-line1 { display: block; will-change: transform; }
.hero-headline-line2 { display: block; will-change: transform; color: var(--ebony-muted); margin-top: 0.25rem; }
@media (min-width: 1024px) { .hero-headline-line2 { margin-top: 0.5rem; color: var(--taupe); } }

/* Divider after headline */
.hero-divider-bar {
  display: block; height: 1px; width: 3rem; background: rgba(125,99,85,0.4);
  margin-top: 1.75rem; margin-bottom: 1.25rem; will-change: transform;
  transform-origin: left center;
  margin-left: auto; margin-right: auto;
}
@media (min-width: 1024px) {
  .hero-divider-bar { width: 4rem; margin-top: 2.5rem; margin-bottom: 2rem; margin-left: 0; margin-right: 0; }
}

/* Subtitle */
.hero-subtitle {
  color: rgba(28,25,22,0.85); font-size: 0.9375rem; line-height: 1.75;
  max-width: 28rem; margin-bottom: 2rem; font-weight: 600;
}
@media (min-width: 768px) { .hero-subtitle { font-size: 1rem; } }
@media (min-width: 1024px) { .hero-subtitle { font-size: 1.125rem; margin-bottom: 2.5rem; } }

/* CTAs */
.hero-ctas {
  display: flex; flex-direction: column; gap: 0.75rem;
  width: 100%;
}
@media (min-width: 640px) { .hero-ctas { flex-direction: row; gap: 1rem; width: auto; } }

/* Stats bar */
.stats-bar {
  position: relative; z-index: 10;
  border-top: 1px solid rgba(28,25,22,0.08);
  background: var(--cream-light);
}
.stats-grid { display: flex; justify-content: center; padding: 1.25rem 0; }
@media (min-width: 1024px) { .stats-grid { padding: 2rem 0; } }
.stat-item { text-align: center; padding: 0 0.5rem; }
@media (min-width: 768px) { .stat-item { padding: 0 1rem; } }
.stat-item + .stat-item { border-left: 1px solid rgba(28,25,22,0.08); }
.stat-value { font-family: var(--font-serif); font-size: 1.25rem; color: rgba(28,25,22,0.8); font-weight: 300; }
@media (min-width: 768px) { .stat-value { font-size: 1.875rem; } }
.stat-label { margin-top: 0.25rem; font-size: 9px; }
@media (min-width: 768px) { .stat-label { font-size: 11px; } }

/* Scroll indicator — desktop only */
.hero-scroll-indicator {
  display: none;
  position: absolute; bottom: 5rem; left: 4rem; z-index: 20;
  align-items: center; gap: 0.75rem;
}
@media (min-width: 1024px) { .hero-scroll-indicator { display: flex; } }
@media (min-width: 1280px) { .hero-scroll-indicator { left: 6rem; } }
.hero-scroll-indicator span:first-child {
  display: block; width: 1px; height: 2.5rem;
  background: rgba(28,25,22,0.2); animation: pulse 2s ease infinite;
}
.hero-scroll-text {
  font-family: var(--font-sans); font-size: 10px; font-weight: 500;
  letter-spacing: 0.3em; text-transform: uppercase; color: rgba(28,25,22,0.3);
}

@keyframes pulse {
  0%,100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ═══════════════════════════════════════════════
   SERVICES PREVIEW
   ═══════════════════════════════════════════════ */
.services-section { background: var(--cream-warm); position: relative; overflow: hidden; }
.section-heading { text-align: center; margin-bottom: 3.5rem; }
.section-heading .sh-script { font-family: var(--font-sans); font-weight: 300; letter-spacing: 0.22em; text-transform: uppercase; font-size: 0.875rem; color: var(--taupe); margin-bottom: 0.5rem; }
.section-heading .sh-title { font-family: var(--font-serif); font-weight: 300; color: var(--ebony); }
.section-heading .sh-title em { font-style: italic; }
.section-heading .sh-divider { margin: 1.25rem auto; }
.section-heading .sh-subtitle { color: var(--ebony-muted); font-size: 0.875rem; max-width: 28rem; margin: 0 auto; line-height: 1.7; }

/* Featured service card */
.featured-service {
  display: flex; flex-direction: column; background: var(--cream);
  border: 1px solid rgba(28,25,22,0.08); overflow: hidden;
  transition: border-color 0.4s; margin-bottom: 1px;
}
.featured-service:hover { border-color: rgba(125,99,85,0.3); }
@media (min-width: 768px) { .featured-service { flex-direction: row; } }
.featured-service-content { flex: 1; padding: 2.5rem; }
@media (min-width: 768px) { .featured-service-content { padding: 3.5rem; } }
.featured-service-icon-row { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.service-icon {
  width: 2rem; height: 2rem; display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(125,99,85,0.4); transition: border-color 0.3s;
}
.featured-service:hover .service-icon { border-color: var(--taupe); }
.service-icon svg { width: 14px; height: 14px; color: var(--taupe); }
.service-accent-line { height: 1px; width: 1.5rem; background: rgba(125,99,85,0.4); transition: width 0.3s; }
.featured-service:hover .service-accent-line { width: 2.5rem; }
.featured-service h3 { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 300; color: var(--ebony); margin-bottom: 0.75rem; }
@media (min-width: 768px) { .featured-service h3 { font-size: 1.875rem; } }
.featured-service p { font-size: 0.875rem; color: var(--ebony-muted); line-height: 1.7; max-width: 36rem; }
.featured-service-cta {
  display: flex; align-items: center; justify-content: center; padding: 2.5rem;
  border-top: 1px solid rgba(28,25,22,0.08); align-self: stretch;
}
@media (min-width: 768px) {
  .featured-service-cta { width: 12rem; border-top: none; border-left: 1px solid rgba(28,25,22,0.08); }
}
@media (min-width: 1024px) { .featured-service-cta { width: 16rem; } }
.featured-service-cta .cta-text {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 10px; letter-spacing: 0.35em; text-transform: uppercase;
  font-weight: 500; color: var(--taupe); transition: gap 0.3s;
}
.featured-service:hover .cta-text { gap: 1rem; }

/* Service cards grid */
.services-grid {
  display: grid; grid-template-columns: 1fr; gap: 1px;
  background: rgba(28,25,22,0.05);
}
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  display: flex; flex-direction: column; padding: 2rem 2.5rem;
  background: var(--cream); border: 1px solid rgba(28,25,22,0.08);
  transition: background-color 0.4s, border-color 0.4s;
}
.service-card:hover { background: var(--cream-warm); border-color: rgba(125,99,85,0.3); }
.service-card-icon-row { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.service-card h3 { font-family: var(--font-serif); font-size: 1.25rem; font-weight: 300; color: var(--ebony); margin-bottom: 0.75rem; }
.service-card p { font-size: 0.875rem; color: var(--ebony-muted); line-height: 1.7; flex: 1; }
.service-card .card-more {
  display: flex; align-items: center; gap: 0.5rem; margin-top: 1.5rem;
  font-size: 10px; letter-spacing: 0.35em; text-transform: uppercase;
  font-weight: 500; color: var(--taupe); opacity: 0; transition: opacity 0.3s;
}
.service-card:hover .card-more { opacity: 1; }

.services-cta { text-align: center; margin-top: 3rem; }

/* ═══════════════════════════════════════════════
   ABOUT PREVIEW
   ═══════════════════════════════════════════════ */
.about-section { background: var(--cream-light); position: relative; overflow: hidden; }
.about-grid { display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: start; }
@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; gap: 7rem; } }

.about-image-area { position: relative; }
@media (min-width: 1024px) { .about-image-area { position: sticky; top: 7rem; } }
.about-photo { position: relative; aspect-ratio: 3/4; background: var(--cream-warm); overflow: hidden; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.about-badge {
  position: absolute; bottom: -1.5rem; right: -1rem; background: var(--ebony);
  padding: 1.75rem 2.25rem;
}
@media (min-width: 768px) { .about-badge { right: -2rem; } }
.about-badge .badge-num { font-family: var(--font-serif); font-size: 1.875rem; font-weight: 400; color: rgba(240,235,227,0.8); }
.about-badge .badge-label { margin-top: 0.25rem; }
.about-cert-strip {
  position: absolute; top: 1.5rem; left: 0;
  background: rgba(240,235,227,0.95); backdrop-filter: blur(4px);
  padding: 0.75rem 1rem; display: flex; align-items: center; gap: 0.75rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.about-cert-strip svg { color: var(--taupe); flex-shrink: 0; }
.about-cert-strip span { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ebony-muted); font-weight: 500; }

.about-content .script-label { font-family: var(--font-sans); font-weight: 300; letter-spacing: 0.22em; text-transform: uppercase; font-size: 0.875rem; color: var(--taupe); margin-bottom: 0.5rem; }
.about-content h2 { font-weight: 300; color: var(--ebony); line-height: 1.1; margin-bottom: 1.25rem; }
.about-content h2 em { font-style: italic; }
.about-content .text-block { color: var(--ebony-muted); line-height: 1.7; margin-bottom: 1rem; font-size: 1rem; }
.about-content blockquote { border-left: 2px solid var(--taupe); padding-left: 1.5rem; margin: 2.5rem 0; }
.about-content blockquote p { font-family: var(--font-serif); font-size: clamp(1.25rem, 2vw, 1.5rem); font-style: italic; color: var(--taupe); line-height: 1.4; }
.about-content blockquote footer { margin-top: 0.5rem; font-size: 10px; letter-spacing: 0.35em; text-transform: uppercase; color: var(--taupe); font-weight: 500; }

.highlights-list { margin-bottom: 2.5rem; }
.highlights-list li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.875rem; color: var(--ebony-muted); margin-bottom: 0.75rem; }
.highlights-list li svg { flex-shrink: 0; margin-top: 2px; color: var(--taupe); }

.certs-row { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2.5rem; }
.cert-badge {
  border: 1px solid rgba(28,25,22,0.1); padding: 0.5rem 1rem;
  display: flex; align-items: center; gap: 0.5rem; background: var(--cream-warm);
}
.cert-badge .cert-name { font-family: var(--font-serif); font-size: 0.875rem; color: var(--ebony); font-weight: 500; }
.cert-badge .cert-full { font-size: 10px; color: var(--ebony-muted); }

/* ═══════════════════════════════════════════════
   PROCESS SECTION
   ═══════════════════════════════════════════════ */
.process-section { background: var(--cream); position: relative; overflow: hidden; }
.process-bg {
  position: absolute; inset: 0; opacity: 0.04; pointer-events: none;
  background-image: repeating-linear-gradient(0deg, transparent, transparent 40px, #1C1916 40px, #1C1916 41px);
}
.steps-grid {
  display: grid; grid-template-columns: 1fr; gap: 2rem;
}
@media (min-width: 640px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .steps-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } }

.step-card {
  padding: 2rem; border: 1px solid rgba(28,25,22,0.08);
  transition: border-color 0.5s; display: flex; flex-direction: column;
  background: var(--cream-light);
}
.step-card:hover { border-color: rgba(125,99,85,0.3); }
.step-phase { font-size: 9px; letter-spacing: 0.35em; text-transform: uppercase; color: var(--taupe); opacity: 0.6; margin-bottom: 1.25rem; }
.step-number-row { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.step-number { font-family: var(--font-serif); font-size: 3rem; font-weight: 300; color: rgba(28,25,22,0.08); line-height: 1; }
.step-icon-box {
  width: 2.25rem; height: 2.25rem; border: 1px solid rgba(125,99,85,0.3);
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.3s;
}
.step-card:hover .step-icon-box { border-color: rgba(125,99,85,0.6); }
.step-icon-box svg { width: 15px; height: 15px; color: var(--taupe); }
.step-line { width: 2rem; height: 1px; background: rgba(125,99,85,0.5); margin-bottom: 1.25rem; }
.step-card h3 { font-family: var(--font-serif); font-size: 1.25rem; font-weight: 300; color: var(--ebony); margin-bottom: 0.75rem; }
.step-card p { font-size: 0.875rem; color: var(--ebony-muted); line-height: 1.7; flex: 1; }

/* ═══════════════════════════════════════════════
   PORTFOLIO PREVIEW
   ═══════════════════════════════════════════════ */
.portfolio-section { background: var(--cream-light); }
.portfolio-header { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 3.5rem; }
@media (min-width: 1024px) { .portfolio-header { flex-direction: row; align-items: flex-end; justify-content: space-between; } }
.portfolio-header .ph-left .ph-script { font-family: var(--font-sans); font-weight: 300; letter-spacing: 0.22em; text-transform: uppercase; font-size: 0.875rem; color: var(--taupe); margin-bottom: 0.5rem; }
.portfolio-header .ph-left h2 { font-weight: 300; color: var(--ebony); line-height: 1.1; }
.portfolio-header .ph-left h2 em { font-style: italic; }
.portfolio-header .ph-right { max-width: 20rem; }
.portfolio-header .ph-right p { font-size: 0.875rem; color: var(--ebony-muted); line-height: 1.7; }

.portfolio-grid {
  display: grid; grid-template-columns: 1fr; gap: 0.5rem;
}
@media (min-width: 640px) { .portfolio-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .portfolio-grid { grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(2, 280px); } }
.portfolio-item {
  position: relative; overflow: hidden; cursor: pointer; min-height: 280px;
}
@media (min-width: 1024px) {
  .portfolio-item.span-2-col { grid-column: span 2; }
  .portfolio-item.span-2-row { grid-row: span 2; }
}
.portfolio-item img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transition: transform 0.7s ease;
}
.portfolio-item:hover img { transform: scale(1.04); }
.portfolio-item .overlay-dark {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,25,22,0.8), rgba(28,25,22,0.1) 60%, transparent);
}
.portfolio-item .overlay-hover {
  position: absolute; inset: 0; background: rgba(28,25,22,0.3);
  opacity: 0; transition: opacity 0.5s;
}
.portfolio-item:hover .overlay-hover { opacity: 1; }
.portfolio-item .item-content {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  justify-content: flex-end; padding: 1.5rem 2rem;
}
.portfolio-item .item-quote {
  font-family: var(--font-serif); font-size: 1rem; font-style: italic; color: rgba(240,235,227,0.7);
  margin-bottom: 0.75rem; opacity: 0; transform: translateY(8px);
  transition: opacity 0.5s, transform 0.5s;
}
.portfolio-item:hover .item-quote { opacity: 1; transform: translateY(0); }
.portfolio-item .item-cat { margin-bottom: 0.25rem; opacity: 0.6; }
.portfolio-item .item-title { font-family: var(--font-serif); font-size: 1.25rem; color: var(--cream); font-weight: 300; }
@media (min-width: 768px) { .portfolio-item .item-title { font-size: 1.5rem; } }

.portfolio-item .corner { position: absolute; width: 1.5rem; height: 1.5rem; opacity: 0; transition: opacity 0.5s; }
.portfolio-item:hover .corner { opacity: 1; }
.corner-tr { top: 1rem; right: 1rem; border-top: 1px solid rgba(240,235,227,0.2); border-right: 1px solid rgba(240,235,227,0.2); }
.corner-bl { bottom: 1rem; left: 1rem; border-bottom: 1px solid rgba(240,235,227,0.2); border-left: 1px solid rgba(240,235,227,0.2); }

.portfolio-bottom {
  display: flex; flex-direction: column; align-items: center; gap: 1.5rem;
  margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid rgba(28,25,22,0.08);
}
@media (min-width: 640px) { .portfolio-bottom { flex-direction: row; justify-content: space-between; } }
.portfolio-bottom .quote { font-size: 0.875rem; color: var(--ebony-muted); font-style: italic; font-family: var(--font-serif); }

/* ═══════════════════════════════════════════════
   TIKTOK FEED
   ═══════════════════════════════════════════════ */
.tiktok-section { background: var(--cream); position: relative; overflow: hidden; }
.tiktok-grid { 
  display: flex; gap: 1.5rem; overflow-x: auto; scroll-snap-type: x mandatory; 
  padding-bottom: 2rem; scrollbar-width: none;
}
.tiktok-grid::-webkit-scrollbar { display: none; }
.tiktok-grid blockquote { 
  flex: 0 0 auto; width: 325px !important; margin: 0 !important; 
  scroll-snap-align: center;
}
@media (min-width: 768px) {
  .tiktok-grid { display: grid; grid-template-columns: repeat(2, 1fr); justify-items: center; overflow-x: visible; padding-bottom: 0; }
  .tiktok-grid blockquote { width: 100% !important; min-width: 0 !important; max-width: 400px !important; margin: 0 auto !important; flex: auto; }
}
@media (min-width: 1024px) {
  .tiktok-grid { grid-template-columns: repeat(3, 1fr); justify-content: center; }
}

/* ═══════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════ */
.testimonials-section { background: var(--cream-light); position: relative; overflow: hidden; }
.testimonial-big-quote { font-family: var(--font-serif); font-size: 8rem; line-height: 1; color: rgba(125,99,85,0.1); user-select: none; margin-bottom: 0.5rem; }
.testimonial-text { font-family: var(--font-serif); font-weight: 300; font-style: italic; color: var(--ebony); line-height: 1.3; margin-bottom: 2.5rem; max-width: 48rem; }
.testimonial-author { display: flex; align-items: center; gap: 1.5rem; }
.testimonial-author .author-line { height: 1px; width: 2.5rem; background: var(--taupe); }
.testimonial-author .author-name { font-family: var(--font-sans); font-weight: 500; color: var(--ebony); font-size: 0.875rem; }
.testimonial-author .author-event { margin-top: 0.125rem; }

.testimonial-nav { display: flex; align-items: center; gap: 1.25rem; margin-top: 3rem; }
.testimonial-nav .nav-btn {
  width: 2.5rem; height: 2.5rem; border: 1px solid rgba(28,25,22,0.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--ebony-muted); transition: all 0.2s;
}
.testimonial-nav .nav-btn:hover { color: var(--ebony); border-color: var(--ebony); }
.testimonial-dots { display: flex; align-items: center; gap: 0.5rem; }
.testimonial-dot { height: 1px; transition: all 0.3s; background: rgba(28,25,22,0.2); cursor: pointer; border: none; }
.testimonial-dot.active { width: 2rem; background: var(--ebony); }
.testimonial-dot:not(.active) { width: 0.75rem; }

/* ═══════════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════════ */
.cta-section { background: var(--ebony); position: relative; overflow: hidden; }
.cta-bg {
  position: absolute; inset: 0;
}
.cta-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.15; }
.cta-content { position: relative; z-index: 10; text-align: center; }
.cta-logo { margin-bottom: 2.5rem; display: flex; flex-direction: column; align-items: center; line-height: 1; gap: 0.25rem; }
.cta-logo .name { font-family: var(--font-serif); font-size: 1.5rem; letter-spacing: 0.2em; color: rgba(240,235,227,0.8); }
.cta-logo .role { font-family: var(--font-sans); font-size: 0.625rem; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 300; color: var(--taupe-light); }
.cta-script { font-family: var(--font-sans); font-weight: 300; letter-spacing: 0.22em; text-transform: uppercase; color: var(--taupe-light); margin-bottom: 1rem; }
.cta-heading { font-family: var(--font-serif); font-weight: 300; color: var(--cream-light); line-height: 1.1; margin-bottom: 1.25rem; }
.cta-heading em { font-style: italic; }
.cta-sub { color: rgba(240,235,227,0.5); font-size: 0.875rem; line-height: 1.7; max-width: 28rem; margin: 0 auto 2.5rem; }
.cta-buttons { display: flex; flex-direction: column; gap: 1rem; justify-content: center; margin-bottom: 3.5rem; }
@media (min-width: 640px) { .cta-buttons { flex-direction: row; } }
.cta-socials { display: flex; align-items: center; justify-content: center; gap: 2rem; }
.cta-socials a { display: flex; align-items: center; gap: 0.5rem; font-size: 10px; letter-spacing: 0.35em; text-transform: uppercase; font-weight: 500; color: var(--taupe-light); transition: color 0.2s; }
.cta-socials a:hover { color: var(--cream); }
.cta-socials .sep { width: 1px; height: 1rem; background: rgba(240,235,227,0.1); }

/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */
.site-footer { background: var(--cream-warm); color: var(--ebony-muted); }
.footer-cta-strip { border-bottom: 1px solid rgba(28,25,22,0.1); }
.footer-cta-inner {
  padding: 3.5rem 1rem; display: flex; flex-direction: column;
  align-items: center; gap: 2rem; text-align: center;
}
@media (min-width: 768px) {
  .footer-cta-inner { flex-direction: row; justify-content: space-between; padding: 4rem 0; text-align: left; }
}
.footer-cta-script { font-family: var(--font-sans); font-weight: 300; letter-spacing: 0.22em; text-transform: uppercase; color: var(--taupe); }
.footer-cta-sub { font-size: 0.875rem; color: var(--ebony-muted); margin-top: 0.25rem; }

.footer-main { padding: 4rem 1rem; }
.footer-grid {
  display: grid; grid-template-columns: 1fr; gap: 3rem;
}
@media (min-width: 768px) { 
  .footer-main { padding: 5rem 0; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); } 
}
@media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }

.footer-brand .fb-logo { display: inline-flex; flex-direction: column; line-height: 1; margin-bottom: 1.25rem; }
.footer-brand .fb-name { font-family: var(--font-serif); font-size: 1.25rem; letter-spacing: 0.1em; color: rgba(28,25,22,0.9); }
.footer-brand .fb-role { font-family: var(--font-sans); font-size: 0.625rem; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 300; color: var(--taupe); margin-top: 0.125rem; }
.footer-brand .fb-desc { font-size: 0.875rem; line-height: 1.7; color: var(--ebony-muted); margin-bottom: 1.5rem; }
.footer-brand .fb-socials { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.footer-brand .fb-socials a {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ebony-muted); transition: color 0.2s;
}
.footer-brand .fb-socials a:hover { color: var(--ebony); }

.footer-col .col-title { margin-bottom: 1.25rem; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 0.875rem; }
.footer-col a { font-size: 0.875rem; color: var(--ebony-muted); transition: color 0.2s; }
.footer-col a:hover { color: var(--ebony); }

.footer-contact li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.875rem; color: var(--ebony-muted); margin-bottom: 1rem; word-break: break-word; overflow-wrap: break-word; }
.footer-contact li a { display: flex; align-items: flex-start; gap: 0.75rem; word-break: break-word; overflow-wrap: break-word; }
.footer-contact svg { flex-shrink: 0; margin-top: 2px; color: var(--taupe); }

.footer-bottom {
  border-top: 1px solid rgba(28,25,22,0.1); padding: 1.5rem 1rem;
  display: flex; flex-direction: column; align-items: center; gap: 0.75rem; text-align: center;
}
@media (min-width: 640px) { .footer-bottom { flex-direction: row; justify-content: space-between; padding: 1.5rem 0; text-align: left; } }



/* -----------------------------------------------
   LIGHTBOX
   ----------------------------------------------- */
.lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(28,25,22,0.95);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.lightbox.active { opacity: 1; pointer-events: auto; }
.lightbox-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  color: #fff; cursor: pointer; z-index: 10000;
  padding: 0.5rem;
}
.lightbox-img-wrap { max-width: 90vw; max-height: 80vh; position: relative; }
.lightbox-img-wrap img { width: 100%; height: auto; max-height: 80vh; object-fit: contain; }
.lightbox-caption { color: var(--cream); text-align: center; margin-top: 1rem; font-family: var(--font-serif); font-size: 1.25rem; }


.footer-bottom p { font-size: 0.75rem; color: rgba(28,25,22,0.3); }

/* -----------------------------------------------
   FLOATING WHATSAPP BUTTON
   ----------------------------------------------- */
.floating-wa {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 9998;
  width: 3.5rem; height: 3.5rem; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(37,211,102,0.4);
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.4s ease, visibility 0.4s ease;
  animation: wa-pulse 2s ease-in-out infinite;
  opacity: 0; visibility: hidden; pointer-events: none;
}
.floating-wa.visible { opacity: 1; visibility: visible; pointer-events: auto; }
.floating-wa:hover { transform: scale(1.12); box-shadow: 0 6px 20px rgba(37,211,102,0.5); animation: none; }
.floating-wa svg { width: 22px; height: 22px; fill: currentColor; }
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 4px 12px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 12px rgba(37,211,102,0.4), 0 0 0 12px rgba(37,211,102,0.15); }
}

