:root {
  --ink: #17171a;
  --ink-soft: #29272b;
  --ivory: #f7f2eb;
  --ivory-deep: #eee5da;
  --white: #fffdf9;
  --beige: #d8c2a8;
  --sand: #bca284;
  --gold: #b69059;
  --gold-light: #d5b77f;
  --lavender: #b6a5cc;
  --muted: #6c6762;
  --line: rgba(23, 23, 26, 0.14);
  --line-light: rgba(255, 255, 255, 0.17);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
  --max: 1240px;
  --radius: 2px;
  --shadow: 0 28px 70px rgba(38, 29, 20, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
::selection { background: var(--lavender); color: var(--ink); }

.skip-link {
  position: fixed;
  z-index: 9999;
  left: 12px;
  top: -80px;
  padding: 10px 16px;
  background: var(--white);
  color: var(--ink);
  transition: top .2s ease;
}
.skip-link:focus { top: 12px; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 4vw, 64px);
  border-bottom: 1px solid transparent;
  transition: background .35s ease, border-color .35s ease, height .35s ease;
}
.site-header.scrolled {
  height: 72px;
  background: rgba(20, 20, 22, 0.93);
  backdrop-filter: blur(18px);
  border-color: var(--line-light);
}
.brand img { width: 128px; height: auto; }
.main-nav { display: flex; align-items: center; gap: clamp(18px, 2.2vw, 34px); color: #f7f1e8; }
.main-nav > a:not(.nav-cta) { font-size: .78rem; text-transform: uppercase; letter-spacing: .13em; position: relative; }
.main-nav > a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 1px; background: var(--gold-light); transition: right .25s ease; }
.main-nav > a:not(.nav-cta):hover::after { right: 0; }
.nav-cta { padding: 12px 20px; border: 1px solid rgba(255,255,255,.38); font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; transition: .25s ease; }
.nav-cta:hover { background: var(--white); color: var(--ink); }
.nav-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; padding: 12px; }
.nav-toggle span { display: block; height: 1px; margin: 7px 0; background: white; transition: transform .25s ease; }

.section { padding: clamp(90px, 11vw, 150px) clamp(20px, 5vw, 72px); }
.section > * { max-width: var(--max); margin-left: auto; margin-right: auto; }
.section-dark { color: var(--white); background: var(--ink); }
.eyebrow { margin: 0 0 18px; color: var(--gold); font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .24em; }
.section-dark .eyebrow { color: var(--gold-light); }
h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: .96; margin: 0; }
h1 { font-size: clamp(3.6rem, 7.4vw, 7.4rem); letter-spacing: -.035em; }
h2 { font-size: clamp(3rem, 5.8vw, 6.1rem); letter-spacing: -.03em; }
h3 { font-size: clamp(1.8rem, 2.8vw, 2.6rem); }
em { font-weight: 400; color: var(--gold); }
.section-dark em { color: var(--gold-light); }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 25px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: .77rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  cursor: pointer;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}
.button:hover { transform: translateY(-2px); }
.button-gold { background: var(--gold); color: #161513; }
.button-gold:hover { background: var(--gold-light); }
.button-ghost { border-color: rgba(255,255,255,.38); color: var(--white); }
.button-ghost:hover { background: var(--white); color: var(--ink); }
.button-dark { background: var(--ink); color: var(--white); }
.button-dark:hover { background: var(--gold); color: var(--ink); }
.button-outline { border-color: var(--ink); color: var(--ink); }
.button-outline:hover { background: var(--ink); color: var(--white); }
.text-link { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; border-bottom: 1px solid currentColor; }

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  align-items: center;
  gap: 4vw;
  padding: 130px clamp(20px, 6vw, 92px) 72px;
  overflow: hidden;
}
.hero-copy { position: relative; z-index: 2; max-width: 770px; }
.hero-lead { margin: 28px 0 34px; max-width: 520px; color: rgba(255,255,255,.72); font-family: var(--serif); font-size: clamp(1.45rem, 2vw, 2rem); line-height: 1.28; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; }
.hero-details { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; list-style: none; margin: 58px 0 0; padding: 26px 0 0; border-top: 1px solid var(--line-light); }
.hero-details li { display: flex; flex-direction: column; gap: 4px; }
.hero-details strong { color: var(--white); font-family: var(--serif); font-size: 1.15rem; font-weight: 500; }
.hero-details span { color: rgba(255,255,255,.54); font-size: .77rem; }
.hero-visual { position: relative; align-self: end; height: min(79vh, 820px); }
.hero-frame { position: relative; height: 100%; display: flex; align-items: flex-end; justify-content: center; }
.hero-frame::before { content: ""; position: absolute; inset: 7% 4% 2%; border: 1px solid rgba(213,183,127,.42); border-radius: 50% 50% 0 0; }
.hero-frame img { position: relative; z-index: 2; height: 100%; width: 100%; object-fit: contain; object-position: bottom center; filter: drop-shadow(0 30px 30px rgba(0,0,0,.3)); }
.hero-frame-line { position: absolute; z-index: 1; left: 0; top: 12%; width: 32%; height: 1px; background: var(--gold); }
.hero-seal { position: absolute; z-index: 3; right: -2%; bottom: 11%; width: 142px; height: 142px; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; display: grid; place-content: center; text-align: center; background: rgba(22,22,24,.52); backdrop-filter: blur(10px); }
.hero-seal span { font-family: var(--serif); font-size: 1.15rem; }
.hero-seal small { color: var(--gold-light); font-size: .64rem; text-transform: uppercase; letter-spacing: .18em; }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(10px); opacity: .3; pointer-events: none; }
.hero-glow-one { width: 520px; height: 520px; right: -90px; top: -90px; background: radial-gradient(circle, rgba(182,165,204,.5), transparent 68%); }
.hero-glow-two { width: 650px; height: 650px; left: -310px; bottom: -360px; background: radial-gradient(circle, rgba(182,144,89,.4), transparent 68%); }
.scroll-cue { position: absolute; z-index: 4; left: 50%; bottom: 22px; transform: translateX(-50%); display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.58); font-size: .65rem; text-transform: uppercase; letter-spacing: .2em; }
.scroll-cue i { display: block; width: 48px; height: 1px; background: rgba(255,255,255,.38); }

.brand-strip { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--gold); color: var(--ink); }
.brand-strip div { min-height: 88px; display: flex; align-items: center; justify-content: center; padding: 18px; border-right: 1px solid rgba(23,23,26,.18); font-size: .7rem; text-align: center; text-transform: uppercase; letter-spacing: .09em; }
.brand-strip span { margin-right: 10px; font-family: var(--serif); font-size: 2rem; }

.intro { background: var(--white); }
.section-heading { max-width: 1040px; }
.section-heading h2 { max-width: 950px; }
.intro-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 10vw; align-items: end; margin-top: 70px; }
.intro-large { margin: 0; font-family: var(--serif); font-size: clamp(1.65rem, 2.8vw, 2.8rem); line-height: 1.22; }
.intro-note { padding: 34px 0 0 36px; border-left: 1px solid var(--gold); }
.intro-note p { margin: 12px 0; font-size: 1.03rem; }
.intro-note small { color: var(--muted); text-transform: uppercase; letter-spacing: .12em; }
.ornament { color: var(--gold); font-size: 1.25rem; }

.results-section { background: var(--ivory-deep); }
.split-heading { display: grid; grid-template-columns: 1.15fr .55fr; gap: 8vw; align-items: end; }
.split-heading > p { margin: 0; color: var(--muted); }
.comparison-grid { max-width: var(--max); margin: 72px auto 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.comparison-card { background: var(--white); box-shadow: var(--shadow); }
.before-after { position: relative; aspect-ratio: 4 / 5; overflow: hidden; background: #d4cdc4; }
.before-after img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 30%; user-select: none; }
.after-layer { position: absolute; inset: 0; width: 100%; overflow: hidden; clip-path: inset(0 calc(100% - var(--position)) 0 0); border-right: 1px solid white; }
.after-layer img { width: 100%; min-width: 100%; max-width: none; }
.slider-line { position: absolute; z-index: 4; left: var(--position); top: 0; bottom: 0; width: 1px; transform: translateX(-50%); background: rgba(255,255,255,.9); pointer-events: none; }
.slider-line span { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%; background: var(--white); color: var(--ink); box-shadow: 0 5px 18px rgba(0,0,0,.2); }
.comparison-range { position: absolute; z-index: 5; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: ew-resize; }
.label { position: absolute; z-index: 3; top: 18px; padding: 7px 10px; background: rgba(20,20,22,.68); color: white; font-size: .66rem; text-transform: uppercase; letter-spacing: .13em; backdrop-filter: blur(7px); }
.label-before { right: 18px; }
.label-after { left: 18px; }
.comparison-copy { padding: 27px 28px 32px; }
.comparison-copy span { color: var(--gold); font-size: .67rem; text-transform: uppercase; letter-spacing: .18em; }
.comparison-copy h3 { margin-top: 8px; font-size: clamp(1.75rem, 2.4vw, 2.4rem); line-height: 1.05; }
.editorial-gallery { max-width: var(--max); margin: 28px auto 0; display: grid; grid-template-columns: .78fr 1fr 1.45fr; grid-auto-rows: 390px; gap: 18px; }
.gallery-item { position: relative; overflow: hidden; border: 0; padding: 0; background: var(--ink); cursor: zoom-in; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.75,.2,1); }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item span { position: absolute; left: 18px; bottom: 18px; padding: 7px 10px; background: rgba(20,20,22,.66); color: white; font-size: .66rem; text-transform: uppercase; letter-spacing: .14em; }

.services-section { background: var(--white); }
.center-heading { text-align: center; }
.center-heading h2 { margin-left: auto; margin-right: auto; }
.center-heading > p:last-child { max-width: 720px; margin: 24px auto 0; color: var(--muted); }
.service-categories { margin-top: 70px; border-top: 1px solid var(--line); }
.service-detail { border-bottom: 1px solid var(--line); }
.service-detail > summary { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 24px; min-height: 108px; padding: 20px 0; cursor: pointer; list-style: none; }
.service-detail > summary::-webkit-details-marker { display: none; }
.service-detail > summary span { display: flex; align-items: center; gap: 18px; font-family: var(--serif); font-size: clamp(1.75rem, 3vw, 3.1rem); line-height: 1; }
.service-detail > summary small { color: var(--gold); font-family: var(--sans); font-size: .68rem; letter-spacing: .14em; }
.service-detail > summary b { color: var(--muted); font-size: .8rem; font-weight: 500; text-transform: uppercase; letter-spacing: .1em; }
.service-detail > summary::after { content: "+"; grid-column: 3; color: var(--gold); font-family: var(--serif); font-size: 2rem; }
.service-detail[open] > summary::after { content: "−"; }
.detail-content { padding: 0 0 52px 42px; }
.service-table-wrap { overflow-x: auto; }
.service-table { width: 100%; border-collapse: collapse; min-width: 710px; }
.service-table th, .service-table td { padding: 15px 12px; border-bottom: 1px solid var(--line); text-align: left; }
.service-table th { color: var(--muted); font-size: .67rem; text-transform: uppercase; letter-spacing: .13em; }
.service-table td:first-child { font-family: var(--serif); font-size: 1.22rem; }
.service-table td:nth-child(2), .service-table td:nth-child(3) { color: var(--muted); font-size: .87rem; }
.service-table td:last-child { text-align: right; }
.service-notes { display: flex; flex-wrap: wrap; gap: 10px 28px; margin-top: 24px; color: var(--muted); font-size: .82rem; }
.service-notes p { margin: 0; }
.sub-detail { margin-top: 26px; }
.sub-detail > summary { display: inline-flex; cursor: pointer; color: var(--ink); font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; border-bottom: 1px solid var(--ink); }
.compact-table { margin-top: 18px; }
.mini-services { display: grid; grid-template-columns: 1fr 1fr auto; gap: 20px 45px; align-items: end; }
.mini-services article { padding: 26px; background: var(--ivory); }
.mini-services h3 { font-size: 1.9rem; }
.mini-services p { margin: 10px 0 20px; color: var(--muted); font-size: .87rem; }
.mini-services strong { font-size: .76rem; text-transform: uppercase; letter-spacing: .08em; }
.service-footer { display: flex; align-items: center; gap: 24px; margin-top: 40px; padding: 32px; background: var(--ivory); }
.service-footer p { flex: 1; margin: 0; font-family: var(--serif); font-size: 1.35rem; line-height: 1.3; }
.catalog-link { font-size: .75rem; color: var(--muted); border-bottom: 1px solid currentColor; white-space: nowrap; }

.experience { display: grid; grid-template-columns: .82fr 1.18fr; gap: 7vw; align-items: center; padding: clamp(90px, 11vw, 150px) clamp(20px, 6vw, 92px); overflow: hidden; }
.experience-copy { max-width: 580px; }
.experience-copy h2 { font-size: clamp(3.2rem, 5.2vw, 5.8rem); }
.experience-copy > p:not(.eyebrow) { color: rgba(255,255,255,.64); margin: 28px 0; }
.check-list { list-style: none; padding: 0; margin: 0 0 34px; }
.check-list li { position: relative; padding: 12px 0 12px 28px; border-bottom: 1px solid var(--line-light); font-size: .9rem; }
.check-list li::before { content: "✦"; position: absolute; left: 0; color: var(--gold-light); }
.video-stack { position: relative; min-height: 660px; }
.video-card { position: absolute; margin: 0; overflow: hidden; box-shadow: 0 32px 70px rgba(0,0,0,.4); }
.video-card video { width: 100%; height: 100%; object-fit: cover; }
.video-card figcaption { position: absolute; left: 18px; bottom: 18px; padding: 7px 10px; background: rgba(15,15,17,.68); color: white; font-size: .66rem; text-transform: uppercase; letter-spacing: .13em; }
.video-card-main { inset: 0 13% 0 0; }
.video-card-small { width: 43%; height: 46%; right: 0; bottom: -4%; border: 8px solid var(--ink); }

.courses-section { background: var(--ivory-deep); }
.course-intro { display: grid; grid-template-columns: 1.1fr .65fr; gap: 8vw; align-items: end; }
.course-intro .eyebrow { grid-column: 1 / -1; margin-bottom: -30px; }
.course-intro h2 { max-width: 820px; }
.course-intro > p:last-child { color: var(--muted); margin: 0; }
.course-grid { max-width: var(--max); margin: 74px auto 0; display: grid; grid-template-columns: 1fr; gap: 20px; }
.course-card { position: relative; display: grid; grid-template-columns: 90px 1fr 260px; gap: 38px; padding: 42px; background: var(--white); border: 1px solid rgba(23,23,26,.08); }
.course-card-featured { background: var(--ink); color: var(--white); }
.course-number { color: var(--gold); font-family: var(--serif); font-size: 3rem; }
.course-tag { color: var(--gold); font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .15em; }
.course-info h3 { margin: 12px 0 18px; font-size: clamp(2.5rem, 4vw, 4.4rem); }
.course-info p { max-width: 660px; color: var(--muted); }
.course-card-featured .course-info p { color: rgba(255,255,255,.63); }
.course-info ul { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 8px 22px; padding: 0; list-style: none; font-size: .83rem; }
.course-info li::before { content: "✓"; color: var(--gold); margin-right: 9px; }
.course-price { display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end; gap: 12px; border-left: 1px solid var(--line); padding-left: 32px; }
.course-card-featured .course-price { border-color: var(--line-light); }
.course-price small { color: var(--muted); text-transform: uppercase; letter-spacing: .12em; }
.course-card-featured .course-price small { color: rgba(255,255,255,.52); }
.course-price strong { font-family: var(--serif); font-size: 2.3rem; line-height: 1; }
.course-price strong span { display: block; margin-top: 6px; font-family: var(--sans); font-size: .65rem; letter-spacing: .12em; }
.academy-banner { position: relative; max-width: var(--max); min-height: 480px; margin: 24px auto 0; display: grid; grid-template-columns: .78fr 1.22fr; align-items: center; background: var(--lavender); overflow: hidden; }
.academy-banner img { height: 520px; width: 100%; object-fit: contain; object-position: bottom center; align-self: end; }
.academy-banner > div { max-width: 610px; padding: 60px; }
.academy-banner p { margin: 16px 0 30px; font-family: var(--serif); font-size: clamp(2.3rem, 4vw, 4.5rem); line-height: .98; }

.about-section { display: grid; grid-template-columns: .82fr 1.18fr; gap: 9vw; align-items: center; background: var(--white); }
.about-visual { position: relative; max-width: 500px; margin: 0 0 0 auto; }
.about-frame { position: relative; padding: 18px; border: 1px solid var(--gold); }
.about-frame::before { content: ""; position: absolute; left: -40px; top: 50px; width: 62%; height: 75%; background: var(--lavender); opacity: .34; z-index: -1; }
.about-frame img { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: center top; }
.about-signature { position: absolute; right: -42px; bottom: -24px; font-family: var(--serif); font-style: italic; font-size: 3rem; color: var(--gold); transform: rotate(-6deg); }
.about-copy { max-width: 670px; margin: 0; }
.about-copy h2 { margin-bottom: 28px; }
.about-copy > p { color: var(--muted); }
.about-copy .about-lead { color: var(--ink); font-family: var(--serif); font-size: 1.6rem; line-height: 1.3; }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 34px 0; }
.about-stats div { padding: 20px 10px 20px 0; border-top: 1px solid var(--line); }
.about-stats strong { display: block; font-family: var(--serif); font-size: 1.8rem; }
.about-stats span { color: var(--muted); font-size: .7rem; text-transform: uppercase; letter-spacing: .08em; }

.booking-section { background: var(--ivory); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; list-style: none; margin: 60px auto 0; padding: 0; }
.steps li { position: relative; min-height: 270px; padding: 34px; background: var(--white); border-top: 2px solid var(--gold); }
.steps li > span { color: var(--gold); font-size: .7rem; letter-spacing: .15em; }
.steps h3 { margin: 58px 0 14px; font-size: 2.2rem; }
.steps p { margin: 0; color: var(--muted); font-size: .88rem; }

.faq-section { display: grid; grid-template-columns: .72fr 1.28fr; gap: 8vw; background: var(--white); }
.faq-heading h2 { font-size: clamp(3rem, 5vw, 5rem); }
.faq-list details { border-top: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 25px 46px 25px 0; cursor: pointer; list-style: none; font-family: var(--serif); font-size: 1.45rem; line-height: 1.2; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 6px; top: 20px; color: var(--gold); font-size: 1.8rem; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list p { margin: -7px 48px 25px 0; color: var(--muted); font-size: .9rem; }

.contact-section { min-height: 780px; display: grid; grid-template-columns: .8fr 1.2fr; }
.contact-photo { position: relative; overflow: hidden; background: #101011; }
.contact-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 55%, var(--ink)); }
.contact-photo img { width: 100%; height: 100%; object-fit: contain; object-position: bottom center; }
.contact-content { display: flex; flex-direction: column; justify-content: center; padding: clamp(70px, 8vw, 120px) clamp(24px, 6vw, 92px); }
.contact-content h2 { max-width: 720px; font-size: clamp(3.2rem, 5.5vw, 6rem); }
.contact-content > p:not(.eyebrow) { color: rgba(255,255,255,.62); }
.contact-form { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; max-width: 760px; margin-top: 30px; }
.contact-form label { display: flex; flex-direction: column; gap: 8px; color: rgba(255,255,255,.72); font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; }
.contact-form label span { color: rgba(255,255,255,.38); }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 0; border-bottom: 1px solid rgba(255,255,255,.26); border-radius: 0; padding: 13px 0; background: transparent; color: white; outline: none; text-transform: none; letter-spacing: 0; }
.contact-form option { color: var(--ink); }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--gold-light); }
.full-field { grid-column: 1 / -1; }
.contact-meta { display: flex; flex-wrap: wrap; gap: 12px 28px; margin-top: 28px; color: rgba(255,255,255,.55); font-size: .78rem; }
.contact-meta a { color: var(--gold-light); }

.site-footer { display: grid; grid-template-columns: 1fr auto auto; gap: 50px; align-items: end; padding: 70px clamp(20px, 6vw, 92px) 30px; background: #101011; color: rgba(255,255,255,.62); border-top: 1px solid var(--line-light); }
.footer-brand img { width: 145px; height: auto; }
.footer-brand p { margin: 18px 0 0; font-family: var(--serif); font-size: 1.2rem; line-height: 1.3; }
.footer-links, .social-links { display: flex; flex-direction: column; gap: 8px; font-size: .76rem; }
.footer-links a:hover, .social-links a:hover { color: var(--gold-light); }
.copyright { grid-column: 1 / -1; margin: 38px 0 0; padding-top: 22px; border-top: 1px solid var(--line-light); font-size: .68rem; text-align: center; }

.floating-whatsapp { position: fixed; z-index: 990; right: 22px; bottom: 22px; width: 56px; height: 56px; display: grid; place-items: center; border-radius: 50%; background: #25d366; color: white; box-shadow: 0 12px 30px rgba(0,0,0,.25); transition: transform .25s ease; }
.floating-whatsapp:hover { transform: translateY(-4px) scale(1.02); }
.floating-whatsapp svg { width: 29px; height: 29px; fill: currentColor; }

.lightbox { width: min(92vw, 880px); max-height: 92vh; border: 0; padding: 0; background: transparent; overflow: visible; }
.lightbox::backdrop { background: rgba(9,9,10,.9); backdrop-filter: blur(8px); }
.lightbox img { max-height: 88vh; width: auto; margin: auto; object-fit: contain; }
.lightbox-close { position: fixed; right: 24px; top: 18px; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.4); border-radius: 50%; background: rgba(0,0,0,.3); color: white; font-size: 2rem; line-height: 1; cursor: pointer; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.65,.25,1); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1060px) {
  .hero { grid-template-columns: 1fr .72fr; }
  h1 { font-size: clamp(3.5rem, 7vw, 5.8rem); }
  .hero-details { grid-template-columns: 1fr; gap: 9px; }
  .brand-strip { grid-template-columns: repeat(2, 1fr); }
  .course-card { grid-template-columns: 70px 1fr; }
  .course-price { grid-column: 2; border-left: 0; border-top: 1px solid var(--line); padding: 24px 0 0; }
  .course-card-featured .course-price { border-color: var(--line-light); }
  .experience { grid-template-columns: 1fr 1fr; }
  .video-stack { min-height: 560px; }
  .mini-services { grid-template-columns: 1fr 1fr; }
  .mini-services .button { grid-column: 1 / -1; justify-self: start; }
  .service-footer { flex-wrap: wrap; }
  .contact-section { grid-template-columns: .65fr 1.35fr; }
}

@media (max-width: 820px) {
  .site-header { height: 72px; }
  .brand img { width: 105px; }
  .nav-toggle { display: block; z-index: 2; }
  .nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .main-nav { position: fixed; inset: 0; display: flex; flex-direction: column; justify-content: center; gap: 26px; background: rgba(18,18,20,.98); opacity: 0; visibility: hidden; transform: translateY(-12px); transition: .25s ease; }
  .main-nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .main-nav > a:not(.nav-cta) { font-family: var(--serif); font-size: 2rem; text-transform: none; letter-spacing: 0; }
  .hero { min-height: auto; grid-template-columns: 1fr; padding-top: 120px; padding-bottom: 0; text-align: center; }
  .hero-copy { margin: auto; }
  .hero-lead { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-details { grid-template-columns: repeat(3, 1fr); }
  .hero-visual { height: 62vh; min-height: 520px; margin-top: 40px; }
  .hero-seal { right: 2%; }
  .scroll-cue { display: none; }
  .brand-strip { grid-template-columns: 1fr 1fr; }
  .intro-grid, .split-heading, .course-intro, .about-section, .faq-section { grid-template-columns: 1fr; }
  .comparison-grid { grid-template-columns: 1fr; }
  .editorial-gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 330px; }
  .gallery-wide { grid-column: 1 / -1; }
  .detail-content { padding-left: 0; }
  .service-detail > summary { grid-template-columns: 1fr; gap: 8px; padding-right: 40px; position: relative; }
  .service-detail > summary::after { position: absolute; right: 0; top: 28px; }
  .mini-services { grid-template-columns: 1fr; }
  .mini-services .button { grid-column: auto; }
  .experience { grid-template-columns: 1fr; }
  .video-stack { min-height: 620px; }
  .course-intro .eyebrow { margin-bottom: 0; }
  .course-card { grid-template-columns: 50px 1fr; padding: 30px 24px; gap: 22px; }
  .course-info ul { grid-template-columns: 1fr; }
  .academy-banner { grid-template-columns: 1fr 1fr; }
  .academy-banner > div { padding: 36px; }
  .about-visual { margin: 0 auto; }
  .steps { grid-template-columns: 1fr; }
  .contact-section { grid-template-columns: 1fr; }
  .contact-photo { height: 560px; }
  .contact-photo::after { background: linear-gradient(0deg, var(--ink), transparent 44%); }
  .site-footer { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  body { font-size: 15px; }
  .section { padding: 78px 18px; }
  h1 { font-size: clamp(3.3rem, 16vw, 5rem); }
  h2 { font-size: clamp(2.8rem, 13vw, 4.5rem); }
  .hero { padding: 105px 18px 0; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-details { grid-template-columns: 1fr; }
  .hero-details li { padding: 7px 0; }
  .hero-visual { min-height: 440px; height: 54vh; }
  .hero-seal { width: 112px; height: 112px; }
  .brand-strip { grid-template-columns: 1fr; }
  .brand-strip div { min-height: 66px; justify-content: flex-start; text-align: left; }
  .intro-grid { margin-top: 40px; gap: 40px; }
  .intro-note { padding-left: 20px; }
  .editorial-gallery { grid-template-columns: 1fr; grid-auto-rows: 360px; }
  .gallery-wide { grid-column: auto; }
  .service-detail > summary span { font-size: 1.65rem; }
  .service-detail > summary b { font-size: .7rem; }
  .service-footer { padding: 24px; }
  .service-footer .button, .catalog-link { width: 100%; text-align: center; }
  .experience { padding: 78px 18px; }
  .video-stack { min-height: 520px; }
  .video-card-main { inset: 0 5% 0 0; }
  .video-card-small { width: 50%; height: 42%; }
  .course-card { grid-template-columns: 1fr; }
  .course-number { font-size: 2rem; }
  .course-price { grid-column: 1; }
  .academy-banner { grid-template-columns: 1fr; }
  .academy-banner img { height: 360px; }
  .academy-banner > div { padding: 30px 24px 44px; }
  .about-stats { grid-template-columns: 1fr; }
  .about-signature { right: 0; font-size: 2.3rem; }
  .contact-photo { height: 420px; }
  .contact-content { padding: 62px 18px 78px; }
  .contact-form { grid-template-columns: 1fr; }
  .full-field { grid-column: auto; }
  .site-footer { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { grid-column: auto; }
  .copyright { grid-column: 1; }
  .floating-whatsapp { width: 52px; height: 52px; right: 16px; bottom: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}


/* ================================================================
   AJUSTES SOLICITADOS — JULIO 2026
   El logotipo original se conserva sin ninguna modificación.
   ================================================================ */

/* Barra superior ligeramente más alta y logo con aire en la parte superior. */
.site-header {
  height: 104px;
  padding-top: 10px;
  padding-bottom: 4px;
}

.site-header .brand {
  display: flex;
  align-items: center;
  align-self: stretch;
  margin-top: 4px;
}

.site-header .brand img {
  width: 128px;
  height: auto;
  display: block;
}

.site-header.scrolled {
  height: 84px;
  padding-top: 4px;
  padding-bottom: 2px;
}

.site-header.scrolled .brand {
  margin-top: 0;
}

.site-header.scrolled .brand img {
  width: 118px;
}

/* Compensación para que la portada no quede debajo de la barra más alta. */
.hero {
  padding-top: 132px;
}

/* Sección Laura: retrato de medio cuerpo, menos alto y con menos vacío. */
.about-section {
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(48px, 7vw, 92px);
  align-items: center;
  padding-top: clamp(74px, 7vw, 96px);
  padding-bottom: clamp(74px, 7vw, 96px);
}

.about-visual {
  width: 100%;
  max-width: 455px;
}

.about-frame img {
  width: 100%;
  aspect-ratio: 1 / 1.08;
  object-fit: cover;
  object-position: center 9%;
}

.about-copy {
  align-self: center;
  padding-top: 0;
}

.about-copy .eyebrow {
  margin-bottom: 14px;
}

.about-copy h2 {
  margin-bottom: 22px;
}

/* Crédito del footer. */
.copyright {
  line-height: 1.75;
}

.copyright span {
  display: block;
}

.copyright .made-by {
  margin-top: 4px;
  color: rgba(255,255,255,.76);
}

.copyright .made-by a {
  color: var(--gold-light);
  font-weight: 600;
}

.copyright .made-by a:hover {
  color: var(--white);
}

@media (max-width: 980px) {
  .site-header {
    height: 96px;
    padding-top: 8px;
  }

  .site-header .brand img {
    width: 120px;
  }

  .site-header.scrolled {
    height: 80px;
  }

  .site-header.scrolled .brand img {
    width: 110px;
  }

  .hero {
    padding-top: 124px;
  }
}

@media (max-width: 820px) {
  .site-header,
  .site-header.scrolled {
    height: 84px;
    padding-top: 5px;
    padding-bottom: 3px;
  }

  .site-header .brand,
  .site-header.scrolled .brand {
    margin-top: 0;
  }

  .site-header .brand img,
  .site-header.scrolled .brand img {
    width: 108px;
  }

  .hero {
    padding-top: 112px;
  }

  .about-section {
    grid-template-columns: 1fr;
    gap: 44px;
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .about-visual {
    max-width: 430px;
    margin-left: auto;
    margin-right: auto;
  }

  .about-copy {
    max-width: 680px;
  }
}

@media (max-width: 560px) {
  .site-header,
  .site-header.scrolled {
    height: 80px;
    padding-top: 5px;
    padding-bottom: 2px;
  }

  .site-header .brand img,
  .site-header.scrolled .brand img {
    width: 100px;
  }

  .hero {
    padding-top: 104px;
  }

  .about-section {
    gap: 38px;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .about-visual {
    max-width: 370px;
  }

  .about-frame img {
    aspect-ratio: 1 / 1.1;
    object-position: center 8%;
  }
}


/* ================================================================
   AJUSTES FINALES — JULIO 2026
   ================================================================ */

/* Academy: retrato menos cuadrado y recortado arriba/abajo. */
.academy-banner {
  min-height: 430px;
  grid-template-columns: .72fr 1.28fr;
  padding: 34px 42px;
  gap: clamp(32px, 5vw, 72px);
}

.academy-banner img {
  width: min(100%, 360px);
  height: 400px;
  justify-self: center;
  align-self: center;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 46% 46% 22px 22px / 18% 18% 7% 7%;
  clip-path: inset(3% 0 4% 0 round 46% 46% 22px 22px);
}

.academy-banner > div {
  max-width: 640px;
  padding: 36px 24px 36px 0;
}

/* Sobre Laura: medio cuerpo y sección más compacta. */
.about-section {
  max-width: none;
  grid-template-columns: minmax(300px, 390px) minmax(0, 1fr);
  gap: clamp(44px, 6vw, 78px);
  align-items: center;
  padding-top: 74px;
  padding-bottom: 74px;
}

.about-visual {
  width: 100%;
  max-width: 390px;
  justify-self: end;
}

.about-frame {
  padding: 14px;
}

.about-frame img {
  width: 100%;
  height: 470px;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center 11%;
}

.about-copy {
  max-width: 690px;
  align-self: center;
}

.about-copy .eyebrow {
  margin-bottom: 12px;
}

.about-copy h2 {
  margin-bottom: 18px;
}

.about-copy .about-lead {
  margin-bottom: 18px;
}

.about-stats {
  margin-top: 28px;
}

/* Dirección completa. */
.contact-meta {
  align-items: center;
}

.contact-address {
  flex-basis: 100%;
  color: rgba(255,255,255,.72);
}

/* Menú móvil sólido incluso después de desplazar la página. */
@media (max-width: 820px) {
  body.menu-open {
    overflow: hidden;
  }

  body.menu-open .site-header,
  body.menu-open .site-header.scrolled {
    height: 84px;
    background: #141416;
    border-color: rgba(255,255,255,.12);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .nav-toggle {
    position: relative;
    z-index: 2202;
  }

  .main-nav {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100dvh;
    min-height: 100vh;
    padding: 118px 28px 48px;
    justify-content: flex-start;
    align-items: center;
    gap: 24px;
    overflow-y: auto;
    background: #141416;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-16px);
    z-index: 2201;
    isolation: isolate;
  }

  .main-nav::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
      radial-gradient(circle at 15% 8%, rgba(182,144,89,.14), transparent 34%),
      linear-gradient(180deg, #18171a 0%, #111114 100%);
  }

  .main-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .main-nav > a:not(.nav-cta) {
    color: #fffdf9;
  }

  .main-nav .nav-cta {
    margin-top: 8px;
    color: #fffdf9;
    border-color: rgba(255,255,255,.46);
  }

  .academy-banner {
    grid-template-columns: .82fr 1.18fr;
    min-height: 390px;
    padding: 28px;
    gap: 28px;
  }

  .academy-banner img {
    width: min(100%, 290px);
    height: 350px;
  }

  .academy-banner > div {
    padding: 28px 8px 28px 0;
  }

  .about-section {
    grid-template-columns: 1fr;
    gap: 38px;
    padding-top: 62px;
    padding-bottom: 62px;
  }

  .about-visual {
    justify-self: center;
    max-width: 380px;
  }

  .about-frame img {
    height: 445px;
    object-position: center 10%;
  }

  .about-copy {
    max-width: 680px;
  }
}

@media (max-width: 620px) {
  .academy-banner {
    grid-template-columns: 1fr;
    padding: 26px 22px 34px;
    gap: 22px;
  }

  .academy-banner img {
    width: min(100%, 300px);
    height: 330px;
    object-position: center 15%;
  }

  .academy-banner > div {
    padding: 0 4px 6px;
    text-align: left;
  }

  .academy-banner p {
    font-size: clamp(2.2rem, 11vw, 3.45rem);
  }

  .about-section {
    gap: 32px;
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .about-visual {
    max-width: 340px;
  }

  .about-frame img {
    height: 390px;
  }

  .contact-address {
    line-height: 1.55;
  }
}
