/* =============================================================
   LUJAN SOTO · Minimalismo Interno — Stylesheet v1.0
   ============================================================= */

:root {
  --sage:       #8a9a82;
  --sage-deep:  #6f8068;
  --sage-soft:  #a9b6a0;
  --cream:      #f3efe6;
  --cream-2:    #ece6d8;
  --ink:        #3f463b;
  --ink-soft:   #5e6655;
  --gold:       #b89a5e;
  --rose:       #c4849a;
  --rose-soft:  #dba8ba;
  --white:      #fbfaf6;
  --display:    'Cormorant Garamond', serif;
  --body:       'Jost', sans-serif;
}

/* ── Reset ── */
.lujan-soto-landing *,
.lujan-soto-landing *::before,
.lujan-soto-landing *::after { margin: 0; padding: 0; box-sizing: border-box; }
.lujan-soto-landing img   { display: block; max-width: 100%; }
.lujan-soto-landing a     { color: inherit; text-decoration: none; }
.lujan-soto-landing ul    { list-style: none; }

/* Standalone (plantilla completa) */
body.lujan-soto-landing {
  font-family: var(--body);
  color: var(--ink);
  background: var(--cream);
  font-weight: 300;
  line-height: 1.75;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

/* Shortcode wrapper */
.lujan-soto-wrap {
  font-family: var(--body);
  color: var(--ink);
  background: var(--cream);
  font-weight: 300;
  line-height: 1.75;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: .01em;
}

.eyebrow {
  font-family: var(--body);
  font-size: .72rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--rose);
  display: block;
  margin-bottom: 20px;
}

/* ── Navbar ── */
header.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background .4s ease, box-shadow .4s ease, padding .4s ease;
  padding: 7px 0;
}

header.nav.scrolled {
  background: rgba(243,239,230,.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(63,70,59,.08);
  padding: 5px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-family: var(--display);
  font-size: 1.1rem;
  letter-spacing: .12em;
  color: var(--ink);
  text-transform: uppercase;
  line-height: 1.1;
}

.brand small {
  display: block;
  font-family: var(--body);
  font-size: .47rem;
  letter-spacing: .4em;
  color: var(--sage-deep);
  margin-top: 2px;
  text-align: center;
  text-transform: uppercase;
}

nav ul {
  display: flex;
  gap: 34px;
}

nav a {
  font-size: .74rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: color .25s;
}

nav a:hover { color: var(--gold); }

.nav-cta {
  border: 1px solid var(--sage-deep);
  color: var(--sage-deep);
  padding: 9px 22px;
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  transition: all .3s;
  font-family: var(--body);
}

.nav-cta:hover {
  background: var(--sage-deep);
  color: var(--white);
}

.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.burger span {
  width: 24px;
  height: 1.5px;
  background: var(--ink);
  display: block;
  transition: transform .3s, opacity .3s;
}

.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: rgba(243,239,230,.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(63,70,59,.08);
  padding: 20px 0 28px;
  box-shadow: 0 8px 32px rgba(63,70,59,.12);
}

.mobile-menu.open { display: block; }

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-menu a.mob-link {
  display: block;
  padding: 14px 28px;
  font-size: .8rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  border-bottom: 1px solid rgba(63,70,59,.06);
  transition: color .2s, background .2s;
}

.mobile-menu a.mob-link:hover { color: var(--gold); background: rgba(184,154,94,.04); }

.mobile-menu a.mob-cta {
  margin: 16px 28px 0;
  text-align: center;
  border: 1px solid var(--sage-deep);
  color: var(--sage-deep);
  border-bottom: 1px solid var(--sage-deep);
  padding: 12px 28px;
}

.mobile-menu a.mob-cta:hover { background: var(--sage-deep); color: var(--white); }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--cream);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  width: 100%;
  min-height: 100vh;
}

.hero-photo {
  position: relative;
  background: var(--cream-2);
  overflow: hidden;
}

.hero-photo .ph { position: absolute; inset: 0; }

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 55%, rgba(138,154,130,.15));
  pointer-events: none;
}

.hero-copy {
  background: var(--sage);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 9% 0 8%;
}

.hero-copy .eyebrow { color: rgba(251,250,246,.75); }

.hero-copy h1 {
  font-size: clamp(2.6rem, 4.6vw, 4.1rem);
  color: var(--white);
  margin: 22px 0 24px;
  font-weight: 500;
}

.hero-copy h1 em { font-style: italic; color: var(--cream); }

.hero-copy p {
  color: rgba(251,250,246,.88);
  max-width: 32ch;
  font-size: 1.02rem;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  margin-top: 34px;
  border: 1px solid var(--cream);
  color: var(--white);
  padding: 13px 30px;
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  transition: all .35s;
  font-family: var(--body);
  cursor: pointer;
}

.btn:hover { background: var(--cream); color: var(--ink); }

.btn.dark { border-color: var(--sage-deep); color: var(--sage-deep); }
.btn.dark:hover { background: var(--sage-deep); color: var(--white); }

.btn-outline {
  border-color: rgba(251,250,246,.5);
  color: rgba(251,250,246,.85);
  margin-left: 14px;
}

.btn-outline:hover { background: rgba(251,250,246,.12); color: var(--white); }

/* ── Sections ── */
/* Anula el padding del tema de WordPress */
section,
.about, .method, .process, .sessions,
.quote-section, .closing {
  padding: 100px 0 !important;
  margin: 0 !important;
}

.hero {
  padding: 0 !important;
}

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px !important;
  padding-top: 0;
}

.section-head h2 { font-size: clamp(2rem, 3.4vw, 2.9rem); margin: 0 0 18px; }
.section-head p  { color: var(--ink-soft); font-size: 1.02rem; }

/* ── Sobre mí ── */
.about { background: var(--cream); padding-top: 100px !important; }

.about-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: flex-start;
}

.about-photo {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--cream-2);
}

.about-photo .ph  { position: absolute; inset: 0; }

.about-photo .frame {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(184,154,94,.45);
  pointer-events: none;
}

.about-copy { padding-top: 0; }
.about-copy h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin: 0 0 26px; }
.about-copy p  { margin-bottom: 16px; color: var(--ink-soft); font-size: .98rem; }

.about-copy .sign {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--rose);
  margin-top: 26px;
}

/* ── Método ── */
.method { background: var(--sage); color: var(--white); }
.method .eyebrow { color: var(--cream); }
.method .section-head h2 { color: var(--white); }
.method .section-head p  { color: rgba(251,250,246,.85); }

.method-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  margin-top: 10px;
}

.mcard {
  background: rgba(251,250,246,.07);
  border: 1px solid rgba(251,250,246,.18);
  padding: 44px 40px;
  transition: background .3s;
}

.mcard:hover { background: rgba(251,250,246,.11); }

.mcard .num {
  font-family: var(--body);
  font-size: .72rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--cream);
}

.mcard h3 { font-size: 1.8rem; color: var(--white); margin: 14px 0 16px; }
.mcard p  { color: rgba(251,250,246,.85); font-size: .97rem; line-height: 1.8; }

.mcard.featured { background: var(--white); border-color: var(--white); }
.mcard.featured:hover { background: var(--white); }
.mcard.featured .num { color: var(--gold); }
.mcard.featured h3  { color: var(--ink); }
.mcard.featured p   { color: var(--ink-soft); }

/* ── Proceso ── */
.process { background: var(--cream-2); }

.process-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 64px;
  align-items: stretch;
}

/* Espacio sobre el eyebrow en columna de texto del proceso */
.process-grid > div:last-child {
  padding-top: 16px;
}

.process-photo {
  min-height: 420px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.process-photo .ph { position: absolute; inset: 0; }

.process-title { font-size: clamp(1.8rem, 2.8vw, 2.3rem); margin: 0 0 30px; line-height: 1.2; }

.steps li {
  display: flex;
  gap: 22px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(63,70,59,.12);
}

.steps li:last-child { border-bottom: none; }

.steps .s-num {
  font-family: var(--display);
  font-size: 1.6rem;
  color: var(--rose);
  line-height: 1;
  min-width: 44px;
  padding-top: 4px;
}

.steps h4 { font-family: var(--display); font-size: 1.4rem; font-weight: 500; margin-bottom: 6px; }
.steps p  { font-size: .94rem; color: var(--ink-soft); margin: 0; }

/* ── Sesiones ── */
.sessions { background: var(--cream); }

.sessions-card {
  background: var(--sage);
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.sessions-photo {
  position: relative;
  min-height: 460px;
  background: var(--cream-2);
}

.sessions-photo .ph { position: absolute; inset: 0; }

.sessions-text { padding: 70px 60px; }
.sessions-text .eyebrow { color: var(--cream); }
.sessions-text h2 { color: var(--white); font-size: clamp(1.7rem, 2.6vw, 2.3rem); margin: 14px 0 20px; }
.sessions-text p  { color: rgba(251,250,246,.88); margin-bottom: 14px; font-size: .97rem; }

.sessions-text ul { margin: 24px 0; }

.sessions-text li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(251,250,246,.15);
  font-size: .94rem;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  color: rgba(251,250,246,.9);
}

.sessions-text li::before {
  content: "·";
  color: var(--cream);
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.6;
  flex-shrink: 0;
}

.sessions-text .btn { margin-top: 28px; }

.sessions-subtitle {
  display: block;
  font-size: 1rem;
  font-style: italic;
  color: rgba(251,250,246,.65);
  font-weight: 400;
  margin-top: 4px;
  letter-spacing: .02em;
}

.sessions-note {
  font-style: italic;
  color: rgba(251,250,246,.7) !important;
  border-left: 2px solid rgba(251,250,246,.25);
  padding-left: 14px;
  margin: 18px 0 !important;
}

.sessions-list { margin: 18px 0 !important; }

.sessions-list li {
  padding: 9px 0;
  border-bottom: 1px solid rgba(251,250,246,.12);
  font-size: .94rem;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: rgba(251,250,246,.9);
}

.sessions-list li::before {
  content: "✦";
  color: var(--cream);
  font-size: .7rem;
  line-height: 1.8;
  flex-shrink: 0;
}

.sessions-pricing {
  margin-top: 26px;
  border-top: 1px solid rgba(251,250,246,.2);
  padding-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price-item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 14px;
  border: 1px solid rgba(251,250,246,.18);
  flex-wrap: wrap;
}

.price-item.featured-price {
  border-color: rgba(251,250,246,.38);
  background: rgba(251,250,246,.07);
}

.price-label {
  font-size: .88rem;
  color: rgba(251,250,246,.85);
  letter-spacing: .03em;
}

.price-amount {
  font-family: var(--display);
  font-size: 1.5rem;
  color: var(--white);
  font-weight: 500;
  white-space: nowrap;
}

.price-detail {
  width: 100%;
  font-size: .78rem;
  color: rgba(251,250,246,.55);
  letter-spacing: .04em;
  margin-top: 2px;
}

.price-duration {
  font-size: .78rem;
  color: rgba(251,250,246,.5) !important;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin: 4px 0 0 !important;
}

/* ── Cita / Quote ── */
.quote-section {
  background: var(--cream-2);
  padding: 96px 0;
}

.quote-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.quote-mark {
  font-family: var(--display);
  font-size: 8rem;
  color: var(--sage-soft);
  line-height: .6;
  margin-bottom: 20px;
  opacity: .5;
}

blockquote {
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  font-style: italic;
  color: var(--ink);
  line-height: 1.55;
  font-weight: 400;
}

cite {
  display: block;
  margin-top: 24px;
  font-style: normal;
  font-size: .75rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--rose);
}

/* ── Cierre ── */
.closing {
  background: var(--sage-deep);
  color: var(--white);
  text-align: center;
  padding: 130px 0;
}

.closing .eyebrow { color: var(--cream); }

.closing h2 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  color: var(--white);
  max-width: 18ch;
  margin: 18px auto 24px;
  font-weight: 500;
}

.closing h2 em { font-style: italic; color: var(--cream); }

.closing p { color: rgba(251,250,246,.85); max-width: 46ch; margin: 0 auto; font-size: 1.02rem; }

.closing-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 38px;
}

.closing-actions .btn { margin-top: 0; }

/* ── Footer ── */
footer {
  background: var(--ink);
  color: rgba(251,250,246,.7);
  padding: 60px 0 44px;
  text-align: center;
}

footer .brand { color: var(--white); margin-bottom: 18px; }
footer .brand small { color: var(--sage-soft); }

.f-links {
  display: flex;
  gap: 28px;
  justify-content: center;
  margin: 22px 0 16px;
  flex-wrap: wrap;
}

.f-links a { font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; transition: color .25s; }
.f-links a:hover { color: var(--gold); }

.f-social { margin: 16px 0; }

.f-social a {
  font-size: .74rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--sage-soft);
  transition: color .25s, border-color .25s;
  border: 1px solid rgba(169,182,160,.3);
  padding: 6px 16px;
}

.f-social a:hover { color: var(--gold); border-color: var(--gold); }

.f-fine {
  font-size: .72rem;
  letter-spacing: .1em;
  color: rgba(251,250,246,.35);
  margin-top: 20px;
}

/* ── Imágenes de sección ── */
.hero-photo img,
.about-photo img,
.process-photo img,
.sessions-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-photo img    { object-position: center 35%; }
.about-photo img   { object-position: center 20%; }
.process-photo img { object-position: center center; }
.sessions-photo img{ object-position: center center; }

/* ── Placeholder visual (cuando no hay imagen) ── */
.ph {
  display: flex;
  align-items: center;
  justify-content: center;
  background: repeating-linear-gradient(
    45deg,
    var(--cream-2),
    var(--cream-2) 18px,
    #e4dccb 18px,
    #e4dccb 36px
  );
  color: var(--sage-deep);
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  text-align: center;
  height: 100%;
  width: 100%;
}

.ph span {
  background: rgba(251,250,246,.88);
  padding: 10px 16px;
  border: 1px solid rgba(138,154,130,.4);
}

/* ── Reveal animation ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s ease, transform .9s ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

/* ── Responsive ── */
@media (max-width: 960px) {
  nav ul, .nav-cta { display: none; }
  .burger { display: flex; }

  .hero-grid { grid-template-columns: 1fr; }
  .hero-photo { min-height: 62vh; order: -1; }
  .hero-copy { padding: 72px 32px 80px; }

  .about-grid { grid-template-columns: 1fr; gap: 44px; }
  .about-photo { aspect-ratio: 3/2; }

  .method-cards { grid-template-columns: 1fr; }

  .process-grid { grid-template-columns: 1fr; gap: 44px; }

  .sessions-card { grid-template-columns: 1fr; }
  .sessions-photo { min-height: 52vw; }
  .sessions-text { padding: 52px 36px; }

  section,
  .about, .method, .process, .sessions,
  .quote-section, .closing { padding: 64px 0 !important; }
  .process-grid > div:last-child { padding-top: 0; }
}

@media (max-width: 640px) {
  .wrap { padding: 0 20px; }
  .hero-copy h1 { font-size: 2.5rem; }
  .hero-copy { padding: 60px 20px 72px; }
  .mcard { padding: 36px 28px; }
  .sessions-text { padding: 44px 24px; }
  .closing { padding: 96px 0; }
  .btn-outline { margin-left: 0; }
}
