*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream: #EDE9E2;
  --paper: #FFFFFF;
  --cream-2: #E2DCCE;
  --ink: #14130F;
  --muted: #6E6B63;
  --green-deep: #050505;
  --green-deep-2: #1B1D24;
  --green: #C7B78F;
  --green-line: #8A7856;
  --terracotta: #7C8794;
  --cream-ink: #FFFFFF;
  --muted-on-dark: #9C9C97;
  --border: rgba(20,19,15,0.12);
  --border-dark: rgba(255,255,255,0.14);
  --radius-lg: 40px;
  --radius: 18px;
  --serif: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { max-width: 100%; display: block; }

/* SCROLL REVEAL */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
[data-reveal].in-view { opacity: 1; transform: translateY(0); }
[data-reveal="1"].in-view { transition-delay: 0.08s; }
[data-reveal="2"].in-view { transition-delay: 0.16s; }
[data-reveal="3"].in-view { transition-delay: 0.24s; }
[data-reveal="4"].in-view { transition-delay: 0.32s; }
[data-reveal="5"].in-view { transition-delay: 0.4s; }
[data-reveal="6"].in-view { transition-delay: 0.48s; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

h1, h2, h3, .logo { font-family: var(--serif); font-weight: 500; letter-spacing: -0.01em; }

/* NAV */
.nav-wrap {
  position: fixed;
  top: 20px; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  padding: 0 20px;
}
nav {
  width: 100%;
  max-width: 1100px;
  padding: 12px 14px 12px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255,253,247,0.9);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: 0 20px 40px -28px rgba(30,51,36,0.35);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  text-decoration: none;
}
.footer-brand .logo .pearl-sm { box-shadow: inset -2px -2px 4px rgba(0,0,0,0.45), inset 1px 1px 3px rgba(255,255,255,0.5), 0 2px 5px -1px rgba(0,0,0,0.5); }
.logo span { color: var(--ink); }

.nav-links {
  display: flex;
  gap: 26px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
}
.nav-links a { color: inherit; text-decoration: none; transition: color 0.2s; padding-bottom: 2px; }
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--ink); border-bottom: 2px solid var(--green-line); }

.nav-cta {
  background: var(--green-deep);
  color: var(--cream-ink);
  text-decoration: none;
  padding: 11px 22px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  transition: filter 0.2s, transform 0.2s;
}
.nav-cta:hover { filter: brightness(1.15); transform: translateY(-1px); }

/* MONO SHADER BACKGROUND (animated black/grey/white gradient) */
.mono-shader-bg {
  background-color: #000000;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.18), transparent 50%),
    radial-gradient(circle at 82% 22%, rgba(51,51,51,0.75), transparent 55%),
    radial-gradient(circle at 62% 82%, rgba(26,26,26,0.9), transparent 52%),
    radial-gradient(circle at 8% 88%, rgba(255,255,255,0.1), transparent 45%);
  background-size: 220% 220%;
  animation: monoShaderMove 20s ease-in-out infinite;
}
@keyframes monoShaderMove {
  0%, 100% { background-position: 0% 0%, 100% 0%, 50% 100%, 0% 100%; }
  50% { background-position: 30% 40%, 65% 30%, 35% 65%, 25% 75%; }
}

/* PAGE HEADER (subpages) */
.page-header {
  padding: 168px 24px 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header .eyebrow { color: rgba(255,255,255,0.7); position: static; }
.page-header h1 {
  font-weight: 500;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--cream-ink);
  max-width: 720px;
  margin: 0 auto 18px;
}
.page-header p {
  font-size: 1.05rem;
  color: var(--muted-on-dark);
  max-width: 540px;
  margin: 0 auto;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background-color: #000000;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.18), transparent 50%),
    radial-gradient(circle at 82% 22%, rgba(51,51,51,0.75), transparent 55%),
    radial-gradient(circle at 62% 82%, rgba(26,26,26,0.9), transparent 52%),
    radial-gradient(circle at 8% 88%, rgba(255,255,255,0.1), transparent 45%);
  background-size: 220% 220%;
  animation: monoShaderMove 20s ease-in-out infinite;
  pointer-events: none;
}

/* SITE HERO (home) */
.site-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 20px 48px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .site-hero { justify-content: center; padding: 0 40px; }
}

.site-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: #000000;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.18), transparent 50%),
    radial-gradient(circle at 82% 22%, rgba(51,51,51,0.75), transparent 55%),
    radial-gradient(circle at 62% 82%, rgba(26,26,26,0.9), transparent 52%),
    radial-gradient(circle at 8% 88%, rgba(255,255,255,0.1), transparent 45%);
  background-size: 220% 220%;
  animation: monoShaderMove 20s ease-in-out infinite;
}

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

.site-hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.15) 45%, rgba(0,0,0,0.65) 100%);
}

.site-hero-content {
  position: relative;
  z-index: 1;
  max-width: 560px;
}
@media (min-width: 1024px) {
  .site-hero-content { max-width: 720px; }
}

.hero-anim {
  opacity: 0;
  animation: heroFadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.site-hero-label.hero-anim { animation-name: heroLabelFadeUp; }
@keyframes heroLabelFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 0.75; transform: translateY(0); }
}

.site-hero-label {
  pointer-events: none;
  user-select: none;
  margin-bottom: 22px;
  font-size: clamp(16px, 3.4vw, 22px);
  line-height: 1.4;
  font-weight: 400;
  color: var(--cream-ink);
  filter: blur(3px);
  opacity: 0.75;
}

.site-hero-typewriter {
  color: var(--cream-ink);
  margin-bottom: 24px;
  font-size: clamp(19px, 4vw, 28px);
  line-height: 1.35;
  font-weight: 400;
  min-height: 54px;
}
@media (min-width: 1024px) {
  .site-hero-label { font-size: 26px; margin-bottom: 28px; }
  .site-hero-typewriter { font-size: 38px; margin-bottom: 32px; min-height: 100px; }
}

.hero-cursor {
  display: inline-block;
  width: 2px;
  height: 1.1em;
  background: var(--cream-ink);
  vertical-align: middle;
  margin-left: 2px;
  animation: heroBlink 1s step-end infinite;
}
.hero-cursor.done { display: none; }
@keyframes heroBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.site-hero-services {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.hero-service-pill {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  background: var(--cream-ink);
  color: var(--green-deep);
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 700;
  padding: 16px 28px;
  text-decoration: none;
  box-shadow: 0 16px 34px -16px rgba(0,0,0,0.5);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, color 0.2s;
}
.hero-service-pill:hover {
  transform: translateY(-2px);
  background: var(--green-line);
  color: var(--cream-ink);
  box-shadow: 0 20px 40px -14px rgba(0,0,0,0.6);
}

.site-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 2px 0;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
  background: transparent;
  color: var(--cream-ink);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 500;
  padding: 8px 16px;
  margin: 0 6px 8px 0;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.hero-pill:hover { background: var(--cream-ink); color: var(--green-deep); border-color: var(--cream-ink); }

.hero-pill--outline { border: 1px solid rgba(255,255,255,0.35); }
.hero-pill--outline svg { flex-shrink: 0; }
.hero-pill-email { text-decoration: underline; text-underline-offset: 2px; }

@media (max-width: 480px) {
  .hero-service-pill { flex: 1 1 100%; justify-content: center; }
}

@media (min-width: 1024px) {
  .hero-service-pill { font-size: 1.15rem; padding: 19px 34px; }
  .hero-pill { font-size: 0.92rem; padding: 11px 20px; }
}

/* HERO (home) */
.hero {
  min-height: 84vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 170px 24px 64px;
  position: relative;
  overflow: hidden;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  background-image:
    linear-gradient(180deg, rgba(5,5,5,0.4) 0%, rgba(5,5,5,0.55) 55%, rgba(5,5,5,0.82) 100%),
    url('https://images.unsplash.com/photo-1570172619644-dfd03ed5d881?w=1600&q=80');
  background-size: cover;
  background-position: center 30%;
}

.eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted-on-dark);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-weight: 500;
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  letter-spacing: -0.01em;
  line-height: 1.12;
  max-width: 760px;
  margin-bottom: 26px;
  position: relative;
  z-index: 1;
  color: var(--cream-ink);
}

.hero h1 em {
  font-style: normal;
  color: var(--green);
}

.hero .hero-sub {
  font-size: 1.1rem;
  color: var(--muted-on-dark);
  max-width: 480px;
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}

.cta-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.btn-primary {
  display: inline-block;
  background: var(--cream);
  color: var(--green-deep);
  text-decoration: none;
  padding: 16px 34px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.btn-primary:hover {
  transform: translateY(-2px);
  background: #fff;
  box-shadow: 0 16px 40px -16px rgba(0,0,0,0.4);
}

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--cream-ink);
  text-decoration: none;
  padding: 16px 30px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid var(--border-dark);
  transition: border-color 0.2s, background 0.2s;
}
.btn-ghost:hover { border-color: rgba(243,239,225,0.5); background: rgba(243,239,225,0.06); }

.btn-dark {
  display: inline-block;
  background: var(--green-deep);
  color: var(--cream-ink);
  text-decoration: none;
  padding: 16px 34px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: transform 0.2s, filter 0.2s;
}
.btn-dark:hover { transform: translateY(-2px); filter: brightness(1.2); }

.btn-outline-dark {
  display: inline-block;
  background: transparent;
  color: var(--ink);
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid var(--border);
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline-dark:hover { border-color: var(--green-line); background: rgba(20,19,15,0.05); }

/* SOCIAL PROOF */
.proof {
  text-align: center;
  padding: 48px 24px 36px;
}
.proof p {
  font-size: 0.74rem;
  color: var(--muted);
  margin-bottom: 22px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
}
.proof-logos {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.proof-logos span {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink);
}

@media (max-width: 480px) {
  .proof-logos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 16px;
    max-width: 320px;
    margin: 0 auto;
  }
  .proof-logos span { text-align: center; }
}

/* GENERAL */
section { padding: 100px 24px; }
.container { max-width: 1100px; margin: 0 auto; }

.section-label {
  font-size: 0.74rem;
  color: var(--green-line);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 14px;
  text-align: center;
}
.on-dark .section-label { color: #C9C6BC; }

.section-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 18px;
  color: var(--ink);
  text-align: center;
}
.on-dark .section-title { color: var(--cream-ink); }

.section-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 64px;
  text-align: center;
}
.on-dark .section-sub { color: var(--muted-on-dark); }

.section-head { text-align: center; }
.section-head.left { text-align: left; }
.section-head.left .section-label,
.section-head.left .section-title,
.section-head.left .section-sub { text-align: left; margin-left: 0; margin-right: 0; }

/* TEASER TILES */
.tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tile {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  height: 340px;
  display: block;
  text-decoration: none;
}
.tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.tile:hover img { transform: scale(1.06); }
.tile::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5,5,5,0) 40%, rgba(5,5,5,0.78) 100%);
}
.tile-caption {
  position: absolute;
  left: 20px; right: 20px; bottom: 18px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  z-index: 1;
}
.tile-caption span {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--cream-ink);
  max-width: 75%;
}
.tile-arrow {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(243,239,225,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream-ink);
  flex-shrink: 0;
}

/* ICON GRID (dark blocks) */
.icon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px 32px;
}
.icon-item { text-align: center; }
.icon-item .icon-wrap {
  width: 52px; height: 52px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream-ink);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.icon-item:hover .icon-wrap {
  transform: translateY(-4px) scale(1.06);
  background: var(--cream-ink);
  color: var(--green-deep);
  border-color: var(--cream-ink);
  box-shadow: 0 14px 30px -10px rgba(0,0,0,0.5);
}
.icon-item .icon-wrap svg { width: 22px; height: 22px; }
.icon-item h3 {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--cream-ink);
  margin-bottom: 8px;
}
.icon-item p {
  font-size: 0.86rem;
  color: var(--muted-on-dark);
  line-height: 1.6;
}

.dark-block {
  background: var(--green-deep);
  border-radius: var(--radius-lg);
  max-width: 1160px;
  margin: 0 auto;
  padding: 88px 48px;
  position: relative;
  overflow: hidden;
}
.dark-block.textured::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 15% 20%, rgba(243,239,225,0.06) 0%, transparent 35%),
    radial-gradient(circle at 85% 75%, rgba(243,239,225,0.05) 0%, transparent 40%);
  pointer-events: none;
}

/* EDITORIAL REASON CARDS */
.reasons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 8px;
}
.reason {
  text-align: left;
  border-top: 1px solid var(--border);
  padding: 24px 20px 28px 0;
  margin: 0 -20px;
  padding-left: 20px;
  border-radius: var(--radius);
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), box-shadow 0.35s ease, background 0.35s ease;
}
.reason:hover {
  transform: translateY(-6px);
  background: var(--paper);
  box-shadow: 0 26px 50px -30px rgba(20,19,15,0.3);
}
.reason .reason-num {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--green-line);
  margin-bottom: 14px;
  display: block;
  transition: transform 0.35s ease;
}
.reason:hover .reason-num { transform: translateX(2px); }
.reason h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--ink);
}
.reason p { font-size: 0.92rem; color: var(--muted); }

.compare-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 24px 50px -32px rgba(20,19,15,0.22);
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), box-shadow 0.4s ease;
}
.compare-card:hover { transform: translateY(-6px); box-shadow: 0 34px 64px -28px rgba(20,19,15,0.28); }
.compare-card--dark {
  background: var(--green-deep);
  color: var(--cream-ink);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 24px 60px -28px rgba(0,0,0,0.5);
}
.compare-card--dark:hover { box-shadow: 0 34px 74px -24px rgba(0,0,0,0.6); }

.compare-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 5px 14px;
  margin-bottom: 18px;
}
.compare-tag--dark {
  color: var(--muted-on-dark);
  border-color: rgba(255,255,255,0.18);
}

/* SPLIT SECTIONS */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 420px;
  object-fit: cover;
  box-shadow: 0 34px 70px -30px rgba(20,19,15,0.35);
}
.split.reverse .split-img { order: 2; }
.split-list {
  list-style: none;
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.split-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.95rem;
  color: var(--muted);
}
.split-list li::before {
  content: '—';
  color: var(--green-line);
  font-weight: 700;
  flex-shrink: 0;
}

/* HOW IT WORKS */
.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.steps { display: flex; flex-direction: column; gap: 32px; }
.step { display: flex; gap: 24px; align-items: flex-start; }
.step-num {
  flex-shrink: 0;
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--green-line);
  width: 40px;
}
.step h3 { font-size: 1.02rem; font-weight: 700; margin-bottom: 4px; color: var(--ink); }
.step p { font-size: 0.92rem; color: var(--muted); }

.how-visual {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.how-visual-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 4px;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
  color: var(--ink);
}
.how-visual-row:last-child { border-bottom: none; }
.how-visual-tag {
  font-family: var(--serif);
  font-size: 0.95rem;
  color: var(--green-line);
}

/* FAQ */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 26px 4px;
}
.faq-item h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--ink); }
.faq-item p { font-size: 0.92rem; color: var(--muted); }

/* CTA SECTION */
.cta-section .container { display: flex; flex-direction: column; align-items: center; }
.cta-section .btn-primary { margin-top: 8px; }

/* CONTACTO */
.contact-card {
  max-width: 560px;
  margin: 0 auto;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 56px 44px;
  text-align: center;
}
.contact-card p { color: var(--muted); margin-bottom: 26px; }
.contact-email {
  display: inline-block;
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--green);
  text-decoration: none;
  margin-bottom: 26px;
}

/* MARKETING PAGE EXTRAS */
.pill-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--paper);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink);
}
.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 8px;
}
.stat {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px 24px;
  text-align: center;
}
.stat-glass {
  position: relative;
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(20,19,15,0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 20px 44px -28px rgba(20,19,15,0.25), inset 0 1px 0 rgba(255,255,255,0.7);
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), box-shadow 0.35s ease, border-color 0.35s ease;
  overflow: hidden;
}
.stat-glass::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0.5) 0%, transparent 100%);
  pointer-events: none;
}
.stat-glass:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 30px 60px -24px rgba(20,19,15,0.35), inset 0 1px 0 rgba(255,255,255,0.8);
  border-color: var(--green-line);
}
.stat .stat-num { font-family: var(--serif); font-size: 2.2rem; color: var(--green-deep); display: block; margin-bottom: 6px; }
.stat .stat-label { font-size: 0.86rem; color: var(--muted); }

.service-row {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border-dark);
  align-items: flex-start;
}
.service-row:last-child { border-bottom: none; }
.service-row .emoji { font-size: 1.6rem; line-height: 1; }
.service-row h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: 6px; color: var(--cream-ink); }
.service-row p { font-size: 0.9rem; color: var(--muted-on-dark); }

/* DISPLAY CARDS (tarjetas apiladas) */
.display-cards {
  position: relative;
  width: min(32rem, 100%);
  height: 480px;
  margin: 0 auto;
}
.display-card {
  position: absolute;
  top: 0;
  left: 50%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 10px;
  width: min(25rem, 88vw);
  min-height: 180px;
  padding: 24px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--paper);
  filter: grayscale(100%);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), filter 0.5s ease, border-color 0.5s ease, box-shadow 0.5s ease;
  cursor: default;
}
.display-card--1 { transform: translateX(-50%) skewY(-8deg) translate(0, 0); z-index: 3; }
.display-card--2 { transform: translateX(-50%) skewY(-8deg) translate(56px, 145px); z-index: 2; }
.display-card--3 { transform: translateX(-50%) skewY(-8deg) translate(112px, 290px); z-index: 1; }
.display-card--1:hover { transform: translateX(-50%) skewY(-8deg) translateY(-18px); }
.display-card--2:hover { transform: translateX(-50%) skewY(-8deg) translate(56px, 145px) translateY(-8px); }
.display-card--3:hover { transform: translateX(-50%) skewY(-8deg) translate(112px, 290px) translateY(-8px); }
.display-card:hover {
  filter: grayscale(0%);
  border-color: var(--green-line);
  box-shadow: 0 18px 34px -12px rgba(20,19,15,0.18);
  z-index: 5;
}
.display-card-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--green-deep);
  color: var(--cream-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.display-card-top { display: flex; align-items: center; gap: 10px; }
.display-card-title { font-size: 1.1rem; font-weight: 600; color: var(--ink); }
.display-card-desc { font-size: 0.96rem; color: var(--ink); line-height: 1.4; }
.display-card-tag { font-size: 0.8rem; color: var(--muted); }

@media (max-width: 640px) {
  .display-cards { height: auto; }
  .display-card, .display-card--1, .display-card--2, .display-card--3 {
    position: static;
    transform: none !important;
    filter: grayscale(0%);
    width: 100%;
    margin-bottom: 14px;
  }
  .display-card:hover { box-shadow: none; }
}

.texture-panel {
  background: var(--cream-2);
  border-radius: var(--radius-lg);
  padding: 64px 48px;
  background-image: radial-gradient(circle at 20% 30%, rgba(20,19,15,0.05) 0%, transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(124,135,148,0.1) 0%, transparent 45%);
}

/* FOOTER */
footer {
  background: var(--green-deep);
  color: var(--cream-ink);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  padding: 64px 24px 32px;
  margin-top: 40px;
}
.footer-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand { max-width: 280px; }
.footer-brand .logo { display: block; margin-bottom: 12px; color: var(--cream-ink); }
.footer-brand .logo span { color: var(--cream-ink); }
.footer-brand p { font-size: 0.85rem; color: var(--muted-on-dark); }
.footer-col h4 {
  font-size: 0.74rem;
  color: var(--cream-ink);
  margin-bottom: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: var(--muted-on-dark);
  text-decoration: none;
  margin-bottom: 12px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--cream-ink); }
.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 28px;
  border-top: 1px solid var(--border-dark);
  text-align: center;
}
.footer-bottom p { font-size: 0.8rem; color: var(--muted-on-dark); }

@media (max-width: 900px) {
  .tiles { grid-template-columns: 1fr; }
  .icon-grid { grid-template-columns: repeat(2, 1fr); }
  .reasons { grid-template-columns: 1fr; gap: 28px; }
  .stat-row { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .how-grid, .split { grid-template-columns: 1fr; gap: 32px; }
  .split.reverse .split-img { order: 0; }
  .split img { height: 280px; }
  .dark-block { padding: 56px 28px; border-radius: 28px; }
  .texture-panel { padding: 40px 26px; }
  section { padding: 72px 20px; }
  .service-row { grid-template-columns: 36px 1fr; }
}

/* MOBILE NAV */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 84px;
  left: 20px;
  right: 20px;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 10px 22px 22px;
  z-index: 99;
  box-shadow: 0 24px 48px rgba(0,0,0,0.2);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--ink);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  font-weight: 600;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu .nav-cta {
  display: inline-block;
  text-align: center;
  margin-top: 12px;
  color: var(--cream-ink);
  border-bottom: none;
}

@media (max-width: 620px) {
  .nav-wrap { top: 14px; padding: 0 14px; }
  nav { padding: 10px 10px 10px 20px; }
  .nav-links { display: none; }
  nav > .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .hero { padding: 130px 20px 56px; }
  .page-header { padding: 130px 20px 56px; }
  .cta-section .dark-block { text-align: center; }
}

/* INTERACTIVE LANDING (index.html) */
.landing-body { height: 100vh; overflow: hidden; }

.intro {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse 70% 60% at 50% 40%, rgba(124,135,148,0.1) 0%, transparent 60%),
    linear-gradient(160deg, #1B1D24 0%, #0C0D10 50%, #050505 100%);
  overflow: hidden;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}
.intro.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.mesh-gradient-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.mesh-blob {
  position: absolute;
  width: 65%;
  height: 65%;
  border-radius: 50%;
  filter: blur(80px);
  mix-blend-mode: screen;
  will-change: transform;
}
.mesh-blob--1 { background: #1B1D24; top: -15%; left: -15%; opacity: 0.9; animation: meshMove1 13s ease-in-out infinite; }
.mesh-blob--2 { background: #7C8794; top: 10%; right: -20%; opacity: 0.5; animation: meshMove2 17s ease-in-out infinite; }
.mesh-blob--3 { background: #C7B78F; bottom: -20%; left: 5%; opacity: 0.28; animation: meshMove3 15s ease-in-out infinite; }
.mesh-blob--4 { background: #8A7856; bottom: -15%; right: 0%; opacity: 0.4; animation: meshMove4 19s ease-in-out infinite; }
@keyframes meshMove1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(14%, 10%) scale(1.2); }
}
@keyframes meshMove2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-10%, 12%) scale(0.88); }
}
@keyframes meshMove3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(8%, -14%) scale(1.25); }
}
@keyframes meshMove4 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-12%, -8%) scale(1.1); }
}
.ethereal-shadow-noise {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  mix-blend-mode: overlay;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.intro-badge {
  position: relative;
  z-index: 1;
  width: 190px;
  height: 190px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  padding: 0;
  filter: drop-shadow(0 0 46px rgba(255,255,255,0.22)) drop-shadow(0 0 90px rgba(255,255,255,0.1));
  transition: transform 0.4s ease;
}
.intro-badge:hover { transform: scale(1.04); }
.intro-badge:active { transform: scale(1.12); transition: transform 0.12s ease; }
.intro-badge::before {
  content: '';
  position: absolute;
  inset: -170%;
  z-index: -2;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(255,255,255,0.95) 0%,
    rgba(255,255,255,0.5) 9%,
    rgba(232,232,228,0.24) 20%,
    rgba(199,183,143,0.12) 34%,
    rgba(124,135,148,0.06) 50%,
    transparent 68%);
  filter: blur(12px);
  mix-blend-mode: screen;
  pointer-events: none;
  animation: coronaPulse 6s ease-in-out infinite;
}
.intro-badge::after {
  content: '';
  position: absolute;
  inset: -190%;
  z-index: -3;
  border-radius: 50%;
  background: repeating-conic-gradient(
    from 0deg,
    rgba(255,255,255,0.045) 0deg 3deg,
    transparent 3deg 15deg
  );
  filter: blur(16px);
  mix-blend-mode: screen;
  pointer-events: none;
  animation: coronaSpin 90s linear infinite;
}
@keyframes coronaPulse {
  0%, 100% { opacity: 0.85; }
  50% { opacity: 1; }
}
@keyframes coronaSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.hero-scene { width: 100%; height: 100%; }
.hero-scene canvas { display: block; width: 100% !important; height: 100% !important; border-radius: 50%; }

@media (max-width: 640px) {
  .intro-badge { width: 140px; height: 140px; }
}

/* PEARL MARK */
.pearl {
  display: block;
  border-radius: 50%;
  background:
    radial-gradient(circle at 33% 28%, #ffffff 0%, #f5f5f5 16%, #d8d8d6 34%, #b0b0b0 56%, #6e6e6e 78%, #3a3a3a 96%);
  box-shadow:
    inset -5px -6px 12px rgba(15,26,17,0.35),
    inset 3px 4px 8px rgba(255,255,255,0.55),
    0 8px 20px -6px rgba(5,5,5,0.5);
  transition: transform 0.18s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.logo:hover .pearl { transform: scale(1.12); }
.logo:active .pearl { transform: scale(1.4); }
.pearl-lg { width: 74px; height: 74px; }
.pearl-sm {
  width: 13px; height: 13px;
  flex-shrink: 0;
  box-shadow:
    inset -2px -2px 4px rgba(15,26,17,0.35),
    inset 1px 1px 3px rgba(255,255,255,0.6),
    0 2px 5px -1px rgba(5,5,5,0.45);
}

.intro-name {
  font-family: var(--serif);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--cream-ink);
  opacity: 0.8;
  position: relative;
  z-index: 1;
}

.particle-canvas {
  position: fixed;
  inset: 0;
  z-index: 30;
  pointer-events: none;
}

.reveal {
  position: fixed;
  inset: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(160deg, rgba(5,5,5,0.18) 0%, rgba(5,5,5,0.05) 45%, rgba(5,5,5,0.3) 100%),
    url('assets/reveal-bg-desktop.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  transition: opacity 0.7s ease 0.15s, visibility 0.7s ease 0.15s;
}
.reveal.visible { opacity: 1; visibility: visible; }

.reveal-blob { display: none; }

.reveal-top { position: relative; z-index: 2; padding: 32px 44px; }
.reveal-top .logo { font-size: 1.2rem; color: var(--cream-ink); }
.reveal-top .logo span { color: var(--cream-ink); }

.reveal-heading {
  position: relative;
  z-index: 2;
  text-align: center;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-on-dark);
  margin-top: 8px;
}

.reveal-point {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  padding: 6px;
}
.point-dot {
  width: 13px; height: 13px;
  border-radius: 50%;
  flex-shrink: 0;
  background: radial-gradient(circle at 33% 28%, #ffffff 0%, #d8d8d6 40%, #8f8f89 100%);
  box-shadow: 0 0 0 6px rgba(243,239,225,0.06), 0 2px 8px rgba(0,0,0,0.4);
  transition: transform 0.3s;
}
.point-line {
  width: 64px;
  height: 0;
  border-top: 1px dotted rgba(243,239,225,0.45);
  flex-shrink: 0;
  transition: width 0.3s;
}
.point-label {
  font-family: var(--serif);
  font-size: 1.15rem;
  line-height: 1.3;
  color: var(--cream-ink);
  white-space: nowrap;
}
.reveal-point:hover .point-dot { transform: scale(1.25); }
.reveal-point:hover .point-line { width: 78px; }

.point-a { top: 62%; left: 8%; }
.point-b { top: 20%; right: 8%; text-align: right; }
.point-b .point-label { text-align: right; }

.reveal-bottom {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 32px;
  padding: 22px;
  margin-top: auto;
}
.reveal-bottom a {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted-on-dark);
  text-decoration: none;
}
.reveal-bottom a:hover { color: var(--cream-ink); }

.reveal-mid { display: contents; }

@media (max-width: 760px) {
  .reveal {
    background:
      linear-gradient(160deg, rgba(5,5,5,0.2) 0%, rgba(5,5,5,0.05) 45%, rgba(5,5,5,0.35) 100%),
      url('assets/reveal-bg-mobile.jpg');
    background-size: cover;
    background-position: center;
  }
  .reveal-blob { opacity: 0.55; }
  .reveal-mid {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    gap: 40px;
    position: relative;
    z-index: 2;
    padding: 24px;
  }
  .reveal-heading { margin: 0; }
  .reveal-point { position: relative; top: auto !important; left: auto !important; right: auto !important; justify-content: center; width: 100%; padding: 0; }
  .point-label { white-space: normal; text-align: center !important; }
  .point-b { flex-direction: row-reverse; }
  .reveal-bottom { margin-top: 0; }
}

@media (max-width: 720px) {
}

/* LOGO INTRO SCREEN */
.logo-intro {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--paper);
  transition: opacity 0.8s cubic-bezier(0.22,1,0.36,1), visibility 0.8s cubic-bezier(0.22,1,0.36,1);
}
.logo-intro.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.logo-intro-glow {
  position: absolute;
  top: 50%; left: 50%;
  width: 560px; height: 560px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(138,120,86,0.14) 0%, rgba(138,120,86,0.05) 40%, transparent 70%);
  filter: blur(20px);
  animation: logoGlowPulse 4.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes logoGlowPulse {
  0%, 100% { opacity: 0.7; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.12); }
}

.logo-intro-mark {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: clamp(10px, 2.4vw, 26px);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
.logo-intro-mark:hover .logo-intro-icon { transform: scale(1.08) rotate(0deg); }
.logo-intro-mark:active .logo-intro-icon { transform: scale(0.96) rotate(0deg); }

.logo-intro-word {
  font-family: 'Anton', 'Inter', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--green-deep);
  font-size: clamp(2rem, 8vw, 5.2rem);
  line-height: 1;
  opacity: 0;
}
.logo-intro-word--1 {
  animation: logoWordInLeft 0.9s cubic-bezier(0.22,1,0.36,1) forwards;
  animation-delay: 0.25s;
}
.logo-intro-word--2 {
  animation: logoWordInRight 0.9s cubic-bezier(0.22,1,0.36,1) forwards;
  animation-delay: 0.35s;
}
@keyframes logoWordInLeft {
  from { opacity: 0; transform: translateX(-24px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes logoWordInRight {
  from { opacity: 0; transform: translateX(24px); }
  to { opacity: 1; transform: translateX(0); }
}

.logo-intro-icon {
  display: inline-flex;
  width: clamp(56px, 9vw, 104px);
  flex-shrink: 0;
  opacity: 0;
  transform: scale(0.4) rotate(-10deg);
  animation: logoIconIn 0.8s cubic-bezier(0.22,1,0.36,1) forwards;
  animation-delay: 0.05s;
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
}
.logo-intro-icon svg { width: 100%; height: auto; display: block; }
.logo-intro-icon ellipse { fill: var(--green-deep); }
.logo-intro-pearl { fill: var(--paper); }
@keyframes logoIconIn {
  from { opacity: 0; transform: scale(0.4) rotate(-10deg); }
  to { opacity: 1; transform: scale(1) rotate(0deg); }
}

@media (max-width: 640px) {
  .logo-intro-mark { flex-direction: column; gap: 14px; }
  .logo-intro-icon { width: 70px; }
}
