/* ═══════════════════════════════════════════════
   LAKSHEN GROWTH PARTNER — styles.css
   ═══════════════════════════════════════════════ */

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

:root {
  --gold:       #C9A227;
  --gold-light: #E8C84A;
  --gold-dim:   #7a6118;
  --dark:       #080808;
  --dark2:      #0f0f0f;
  --dark3:      #161616;
  --dark4:      #1e1d1a;
  --text:       #e8e0cc;
  --text-dim:   #9a9080;
  --nav-h:      80px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: var(--text);
  font-family: 'Montserrat', sans-serif;
  overflow-x: hidden;
  cursor: none;
}

/* ─── GRAIN OVERLAY ─────────────────────────────── */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 1000;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: .04;
}

/* ─── CURSOR ─────────────────────────────────────── */
.cursor {
  position: fixed; top: 0; left: 0; z-index: 9999;
  pointer-events: none;
}
.cursor-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold-light);
  transform: translate(-50%, -50%);
  position: absolute; top: 0; left: 0;
}
.cursor-ring {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(201,162,39,.55);
  transform: translate(-50%, -50%);
  position: absolute; top: 0; left: 0;
  transition: width .18s ease, height .18s ease, border-color .18s ease;
}
.cursor-ring.hovered {
  width: 56px; height: 56px;
  border-color: rgba(201,162,39,.9);
}

/* ─── NAVBAR ─────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 500;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  background: rgba(8,8,8,.85);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(201,162,39,.12);
  transition: background .3s;
}
nav.scrolled { background: rgba(8,8,8,.97); }

.nav-logo img {
  height: 52px; width: auto;
  filter: drop-shadow(0 0 12px rgba(201,162,39,.35));
  transition: filter .3s;
}
.nav-logo img:hover { filter: drop-shadow(0 0 22px rgba(201,162,39,.65)); }

.nav-links { display: flex; gap: 40px; align-items: center; }

.nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 11.5px; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--text-dim); text-decoration: none;
  position: relative; padding-bottom: 4px;
  transition: color .3s;
  cursor: none;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .35s ease;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { width: 100%; }

.nav-links a.cta-link {
  color: var(--gold);
  border: 1px solid rgba(201,162,39,.4);
  padding: 9px 22px; border-radius: 2px;
  letter-spacing: .14em;
  transition: background .3s, color .3s, border-color .3s;
}
.nav-links a.cta-link::after { display: none; }
.nav-links a.cta-link:hover {
  background: var(--gold); color: var(--dark); border-color: var(--gold);
}

/* ─── HAMBURGER (mobile) ──────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 36px; height: 36px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; height: 1.5px; width: 100%;
  background: var(--gold);
  transition: transform .3s, opacity .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile drawer */
.mobile-menu {
  display: none;
  position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: rgba(8,8,8,.98);
  border-bottom: 1px solid rgba(201,162,39,.12);
  flex-direction: column; gap: 0;
  z-index: 499;
  transform: translateY(-10px); opacity: 0;
  transition: transform .3s, opacity .3s;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateY(0); opacity: 1;
  pointer-events: all;
}
.mobile-menu a {
  display: block; padding: 18px 32px;
  font-size: 12px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--text-dim); text-decoration: none;
  border-bottom: 1px solid rgba(201,162,39,.07);
  transition: color .2s, background .2s;
}
.mobile-menu a:hover { color: var(--gold-light); background: rgba(201,162,39,.04); }
.mobile-menu a.cta-link { color: var(--gold); }

/* ─── SECTIONS BASE ──────────────────────────────── */
section { position: relative; padding: 120px 48px; }
section:first-of-type { padding-top: calc(var(--nav-h) + 100px); }

.section-inner { max-width: 1100px; margin: 0 auto; }

/* ─── DECORATIVE LINE ────────────────────────────── */
.deco-line {
  display: flex; align-items: center; gap: 16px; margin-bottom: 28px;
}
.deco-line span {
  font-size: 10px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; white-space: nowrap;
}
.deco-line::before, .deco-line::after {
  content: ''; flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
}
.deco-line::before { max-width: 40px; }

/* ─── SECTION 1 – NUESTRO PROCESO ────────────────── */
#proceso {
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(201,162,39,.07) 0%, transparent 70%),
    var(--dark);
  min-height: 100vh; display: flex; align-items: center;
}

.headline-container {
  text-align: center; max-width: 860px; margin: 0 auto 72px;
}

.headline-eyebrow {
  display: inline-block;
  font-size: 10px; letter-spacing: .35em; text-transform: uppercase;
  color: var(--gold); font-weight: 600;
  border: 1px solid rgba(201,162,39,.25);
  padding: 6px 18px; border-radius: 2px; margin-bottom: 36px;
}

h1.main-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4.5vw, 62px);
  font-weight: 700; line-height: 1.12; letter-spacing: -.01em;
  color: #fff; margin-bottom: 24px;
}
h1.main-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), #a07c1a);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

p.subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(16px, 2.2vw, 26px);
  font-style: italic; font-weight: 300;
  color: var(--text-dim); letter-spacing: .02em;
}
p.subtitle strong { color: var(--gold); font-weight: 400; font-style: normal; }

/* ─── VIDEO WRAPPER ──────────────────────────────── */
.video-wrapper {
  max-width: 860px; margin: 0 auto; position: relative;
  border-radius: 4px; overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(201,162,39,.18),
    0 40px 80px rgba(0,0,0,.7),
    0 0 80px rgba(201,162,39,.07);
}
.video-wrapper::before {
  content: '';
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  border: 1px solid rgba(201,162,39,.15); border-radius: 4px;
}
.video-wrapper iframe, .video-wrapper video {
  display: block; width: 100%; aspect-ratio: 16 / 9; border: none;
}
.video-placeholder {
  width: 100%; aspect-ratio: 16 / 9; background: var(--dark3);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px;
}
.video-placeholder .play-icon {
  width: 72px; height: 72px; border-radius: 50%;
  border: 2px solid var(--gold-dim);
  display: flex; align-items: center; justify-content: center;
}
.video-placeholder .play-icon::after {
  content: '';
  border-left: 26px solid var(--gold-dim);
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  margin-left: 6px;
}
.video-placeholder p {
  font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-dim);
}

/* ─── SECTION 2 – CALENDLY ───────────────────────── */
#agenda {
  background: linear-gradient(180deg, var(--dark) 0%, var(--dark2) 50%, var(--dark) 100%);
}

h2.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 3.5vw, 52px);
  font-weight: 600; text-align: center;
  margin-bottom: 60px; color: #fff; letter-spacing: -.01em;
}
h2.section-title span {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.calendly-wrap {
  max-width: 900px; margin: 0 auto; border-radius: 4px; overflow: hidden;
  box-shadow: 0 0 0 1px rgba(201,162,39,.15), 0 40px 80px rgba(0,0,0,.6);
}

/* ─── SECTION 3 – SOBRE NOSOTROS ────────────────── */
#nosotros {
  background:
    radial-gradient(ellipse 60% 60% at 10% 50%, rgba(201,162,39,.05) 0%, transparent 65%),
    var(--dark);
}

.nosotros-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}

.nosotros-photo { position: relative; }
.nosotros-photo::before {
  content: '';
  position: absolute; top: -12px; left: -12px; right: 12px; bottom: 12px;
  border: 1px solid rgba(201,162,39,.22); border-radius: 3px; pointer-events: none;
}
.nosotros-photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(201,162,39,.08) 0%, transparent 60%);
  border-radius: 3px;
}
.nosotros-photo img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 3px;
  display: block; filter: grayscale(20%) contrast(1.05);
}
.photo-placeholder {
  width: 100%; aspect-ratio: 4/5; background: var(--dark3); border-radius: 3px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; border: 1px solid rgba(201,162,39,.1);
}
.photo-placeholder svg { opacity: .25; }
.photo-placeholder p {
  font-size: 10px; letter-spacing: .25em; text-transform: uppercase; color: var(--gold-dim);
}

.nosotros-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 3vw, 46px);
  font-weight: 700; line-height: 1.1; color: #fff; margin-bottom: 28px;
}
.nosotros-text h2 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nosotros-text .divider {
  width: 48px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-bottom: 28px;
}

.nosotros-text p {
  font-size: 15px; line-height: 1.85; color: var(--text-dim);
  margin-bottom: 20px; font-weight: 300;
}
.nosotros-text p strong { color: var(--gold-light); font-weight: 500; }

.diferenciadores {
  list-style: none; margin: 28px 0 40px;
  display: flex; flex-direction: column; gap: 14px;
}
.diferenciadores li {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 14px; color: var(--text-dim); line-height: 1.6;
}
.diferenciadores li::before {
  content: '';
  flex-shrink: 0; width: 16px; height: 16px; margin-top: 3px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold) 3px, transparent 3px), rgba(201,162,39,.12);
  border: 1px solid var(--gold-dim);
}

/* ─── CTA BUTTON ─────────────────────────────────── */
.btn-gold {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase; font-weight: 600;
  color: var(--dark);
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 60%, #a07c1a 100%);
  padding: 16px 38px; border: none; border-radius: 2px;
  text-decoration: none; cursor: none; position: relative; overflow: hidden;
  transition: box-shadow .3s, transform .2s;
  box-shadow: 0 8px 32px rgba(201,162,39,.3);
}
.btn-gold::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.18), transparent);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(201,162,39,.45); }
.btn-gold svg { width: 14px; height: 14px; }

/* ─── FOOTER ─────────────────────────────────────── */
footer {
  border-top: 1px solid rgba(201,162,39,.1);
  padding: 48px; display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 24px; background: var(--dark2);
}
footer img { height: 108px; opacity: .7; }
footer p {
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-dim);
}

/* ─── SCROLL REVEAL ──────────────────────────────── */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .35s; }

/* ═══════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════ */

/* ── Tablet (≤ 1024px) ── */
@media (max-width: 1024px) {
  nav { padding: 0 32px; }
  section { padding: 100px 32px; }
  .nosotros-grid { gap: 56px; }
}

/* ── Tablet portrait / large mobile (≤ 768px) ── */
@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  nav { padding: 0 20px; }

  /* Show hamburger, hide desktop links */
  .hamburger { display: flex; }
  .nav-links { display: none; }
  .mobile-menu { display: flex; }

  /* Custom cursor off on touch */
  body { cursor: auto; }
  .cursor { display: none; }

  section { padding: 80px 20px; }
  section:first-of-type { padding-top: calc(var(--nav-h) + 72px); }

  .headline-container { margin-bottom: 48px; }

  /* Stack nosotros */
  .nosotros-grid { grid-template-columns: 1fr; gap: 40px; }
  .nosotros-photo::before { display: none; }
  .nosotros-photo .photo-placeholder,
  .nosotros-photo img { aspect-ratio: 3/2; }

  .diferenciadores { gap: 12px; }

  footer { padding: 32px 20px; flex-direction: column; align-items: flex-start; gap: 16px; }
  footer img { height: 30px; }
}

/* ── Mobile (≤ 480px) ── */
@media (max-width: 480px) {
  h1.main-title { font-size: 26px; }
  p.subtitle { font-size: 15px; }
  h2.section-title { font-size: 24px; margin-bottom: 36px; }
  .nosotros-text h2 { font-size: 22px; }

  .btn-gold { padding: 14px 28px; font-size: 10px; width: 100%; justify-content: center; }

  .video-placeholder .play-icon { width: 56px; height: 56px; }

  .deco-line::before { max-width: 20px; }
}
