:root {
  --ink: #171413;
  --ink-2: #26201e;
  --orange: #f47e2c;
  --orange-dark: #cf5a1e;
  --cocoa: #593931;
  --paper: #fffdf9;
  --sand: #f1ebe3;
  --line: #d9d0c8;
  --muted: #706864;
  --body: 'Avenir Next', 'Segoe UI', sans-serif;
  --display: 'Bodoni 72', 'Iowan Old Style', Georgia, serif;
  --ease: cubic-bezier(0.32, 0.72, 0, 1);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; overflow-x: hidden; color: var(--ink); background: var(--paper); font-family: var(--body); }
body.is-loading { overflow: hidden; }
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button { cursor: pointer; }
.shell { width: min(1180px, calc(100% - 64px)); margin-inline: auto; }

.loader { position: fixed; inset: 0; z-index: 10; display: grid; place-items: center; color: var(--ink); background: #fff; transition: opacity 220ms var(--ease), visibility 220ms var(--ease); }
.loader.is-done { opacity: 0; visibility: hidden; pointer-events: none; }
.loader__inner { width: min(310px, 78vw); text-align: center; }
.loader__reveal { position: relative; width: 210px; margin: 0 auto 34px; overflow: hidden; }
.loader__reveal:before { content: ''; position: absolute; z-index: 2; inset: 0; background: #fff; transform: translateX(0); animation: revealMask 1s var(--ease) forwards; }
.loader__reveal:after { content: ''; position: absolute; z-index: 3; top: 0; bottom: 0; left: 0; width: 1px; background: var(--orange); transform: translateX(0); animation: revealLine 1s var(--ease) forwards; }
.loader__logo { position: relative; width: 210px; border-radius: 12px; }
.loader__track { height: 1px; background: #e2e3df; overflow: hidden; }
.loader__track span { display: block; width: 100%; height: 100%; background: var(--orange); transform: translateX(-100%); animation: load 1s var(--ease) forwards; }
.loader__inner p { margin: 14px 0 0; color: #8a8d87; font-size: 9px; text-transform: uppercase; letter-spacing: .21em; }
@keyframes revealMask { 0%, 10% { transform: translateX(0); } 82%, 100% { transform: translateX(101%); } }
@keyframes revealLine { 0%, 10% { transform: translateX(0); } 82%, 100% { transform: translateX(210px); } }
@keyframes load { 0% { transform: translateX(-100%); } 86%, 100% { transform: translateX(0); } }

.topbar { padding: 9px 20px; color: var(--paper); background: var(--orange); font-size: 9px; font-weight: 700; text-align: center; text-transform: uppercase; letter-spacing: .16em; }
.topbar a { margin-left: 12px; text-decoration: underline; text-underline-offset: 3px; }
.site-header { position: relative; z-index: 4; display: flex; align-items: center; min-height: 84px; border-bottom: 1px solid var(--line); background: var(--paper); }
.site-header--dark { color: var(--paper); border-bottom-color: rgba(255,255,255,.13); background: var(--ink); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.brand-mark { width: 152px; overflow: hidden; border-radius: 8px; background: white; }
.site-nav { display: flex; align-items: center; gap: 26px; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.site-nav a { position: relative; padding: 32px 0; color: var(--muted); transition: color 500ms var(--ease); }
.site-header--dark .site-nav a { color: rgba(255,255,255,.66); }
.site-nav a:after { content: ''; position: absolute; right: 0; bottom: 24px; left: 0; height: 2px; background: var(--orange); transform: scaleX(0); transform-origin: left; transition: transform 500ms var(--ease); }
.site-nav a:hover, .site-nav a.is-current { color: var(--ink); }
.site-header--dark .site-nav a:hover, .site-header--dark .site-nav a.is-current { color: var(--paper); }
.site-nav a:hover:after, .site-nav a.is-current:after { transform: scaleX(1); }
.header-cta { display: inline-flex !important; align-items: center; gap: 15px; padding: 11px 11px 11px 17px !important; color: var(--ink) !important; background: var(--orange); border-radius: 3px; }
.header-cta:after { display: none; }
.header-cta span, .button span { display: grid; place-items: center; width: 25px; height: 25px; color: var(--ink); background: rgba(21,19,18,.14); border-radius: 50%; transition: transform 600ms var(--ease); }
.header-cta:hover span, .button:hover span { transform: translate(3px,-1px); }
.menu-toggle { display: none; padding: 11px; color: currentColor; border: 1px solid currentColor; background: transparent; font-size: 9px; text-transform: uppercase; letter-spacing: .13em; }

.hero { position: relative; overflow: hidden; }
.home-hero { display: grid; grid-template-columns: 1.04fr .96fr; height: clamp(560px, calc(100dvh - 120px), 760px); min-height: 560px; color: var(--ink); background: var(--paper); }
.mobile-route-rail { display: none; }
.home-hero__copy { display: flex; flex-direction: column; justify-content: center; padding: 90px max(32px, calc((100vw - 1180px) / 2)); padding-right: 70px; }
.home-hero__media { position: relative; min-height: 0; }
.home-hero__media img { height: 100%; object-fit: cover; object-position: center; filter: saturate(.76); }
.home-hero__media:after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(255,253,249,.1), transparent 40%), linear-gradient(0deg, rgba(23,20,19,.22), transparent 48%); }
.eyebrow { display: flex; align-items: center; gap: 9px; margin: 0 0 22px; color: var(--cocoa); font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .19em; }
.eyebrow:before { content: ''; width: 26px; height: 1px; background: currentColor; }
.eyebrow--orange { color: var(--orange); }
.eyebrow--light { color: rgba(255,255,255,.68); }
.hero h1 { max-width: 670px; margin: 0 0 25px; font-size: clamp(3rem, 6vw, 6.4rem); font-weight: 600; line-height: .93; letter-spacing: -.07em; text-wrap: balance; }
.hero h1 em, h2 em, h3 em { color: var(--orange); font-family: var(--display); font-weight: 500; }
.hero__lede { max-width: 460px; margin: 0 0 32px; color: var(--muted); font-size: 15px; line-height: 1.7; }
.hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 22px; }
.button { display: inline-flex; align-items: center; justify-content: space-between; gap: 23px; min-height: 50px; padding: 6px 7px 6px 17px; border: 0; border-radius: 3px; color: var(--ink); background: var(--orange); font-size: 10px; font-weight: 700; letter-spacing: .07em; transition: transform 600ms var(--ease), background 600ms var(--ease); }
.button:hover { transform: translateY(-3px); background: #ff9141; }
.button:active { transform: scale(.98); }
.button--outline { color: var(--paper); border: 1px solid rgba(255,255,255,.42); background: transparent; }
.button--outline:hover { border-color: var(--orange); background: rgba(244,126,44,.12); }
.text-link { display: inline-flex; align-items: center; gap: 12px; color: var(--cocoa); font-size: 11px; font-weight: 700; transition: gap 500ms var(--ease), color 500ms var(--ease); }
.text-link:hover { gap: 18px; color: var(--orange-dark); }
.text-link--light { color: var(--cocoa); }
.hero-proof { position: absolute; z-index: 1; right: 24px; bottom: 25px; width: 225px; padding: 22px; color: var(--ink); background: var(--paper); border-top: 4px solid var(--orange); }
.hero-proof strong { display: block; margin-bottom: 6px; color: var(--orange-dark); font-family: var(--display); font-size: 35px; font-weight: 500; line-height: .9; }
.hero-proof span { display: block; font-size: 10px; line-height: 1.45; text-transform: uppercase; letter-spacing: .1em; }

.trust-strip { display: grid; grid-template-columns: repeat(4, 1fr); border-bottom: 1px solid var(--line); background: var(--paper); }
.trust-strip__item { display: flex; align-items: center; gap: 15px; min-height: 96px; padding: 18px 25px; border-right: 1px solid var(--line); }
.trust-strip__item:last-child { border-right: 0; }
.trust-strip__number { color: var(--orange-dark); font-family: var(--display); font-size: 32px; line-height: .8; }
.trust-strip__item strong { display: block; margin-bottom: 4px; font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.trust-strip__item span { color: var(--muted); font-size: 10px; }
.section { padding: clamp(90px, 11vw, 150px) 0; }
.section--compact { padding: clamp(64px, 8vw, 104px) 0; }
.section--sand { background: var(--sand); }
.section--ink { color: var(--paper); background: var(--ink); }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 50px; margin-bottom: 52px; }
.section-heading h2, .home-intro h2, .program-overview h2, .contact-panel h2 { max-width: 700px; margin: 0; font-size: clamp(2.7rem, 5vw, 5.1rem); font-weight: 600; line-height: .94; letter-spacing: -.07em; text-wrap: balance; }
.section-heading > p { max-width: 335px; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.7; }
.section--ink .section-heading h2 { color: var(--paper); }
.section--ink .section-heading > p { color: rgba(255,255,255,.62); }
.home-intro { display: grid; grid-template-columns: 1fr 1.55fr; gap: 100px; align-items: start; }
.home-intro__copy p { max-width: 520px; margin: 28px 0 0; color: var(--muted); line-height: 1.75; font-size: 15px; }
.home-intro__side { padding-top: 16px; }
.home-intro__side .side-note { display: grid; grid-template-columns: 80px 1fr; gap: 18px; padding: 18px 0; border-top: 1px solid var(--line); }
.side-note strong { color: var(--orange-dark); font-family: var(--display); font-size: 32px; font-weight: 500; }
.side-note span { color: var(--muted); font-size: 11px; line-height: 1.5; }
.home-intro--selected { grid-template-columns: 1.02fr .98fr; gap: 70px; align-items: center; }
.home-intro--selected .home-intro__copy { padding-right: 18px; }
.home-intro--selected .home-intro__copy h2 { max-width: 620px; }
.home-intro--selected .home-intro__copy p { max-width: 500px; }
.home-intro--selected .home-intro__side { padding-top: 4px; }
.home-intro--selected .home-intro__side .side-note { grid-template-columns: 78px 1fr; gap: 18px; padding: 19px 0; }
.home-intro--selected .side-note b { display: block; margin-bottom: 5px; font-size: 11px; text-transform: uppercase; letter-spacing: .07em; }
.home-intro--selected .side-note span { display: block; max-width: 360px; }
.program-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.program-card { position: relative; min-height: 390px; display: flex; flex-direction: column; justify-content: flex-end; padding: 29px; overflow: hidden; color: var(--paper); background: var(--ink); }
.program-card__image { position: absolute; inset: 0; }
.program-card__image img { height: 100%; object-fit: cover; opacity: .52; filter: saturate(.7); transition: transform 900ms var(--ease), opacity 900ms var(--ease); }
.program-card:hover .program-card__image img { opacity: .72; transform: scale(1.05); }
.program-card:after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(23,20,19,.95), rgba(23,20,19,.06) 72%); }
.program-card__content { position: relative; z-index: 1; }
.program-card__number { color: var(--orange); font-size: 10px; letter-spacing: .13em; }
.program-card h3 { max-width: 260px; margin: 10px 0 12px; font-size: 28px; font-weight: 600; line-height: 1; letter-spacing: -.05em; }
.program-card p { max-width: 280px; margin: 0 0 22px; color: rgba(255,255,255,.7); font-size: 12px; line-height: 1.55; }
.program-card__link { display: inline-flex; align-items: center; gap: 10px; color: var(--orange); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; }
.program-card__link span { font-size: 17px; transition: transform 500ms var(--ease); }
.program-card:hover .program-card__link span { transform: translate(3px,-2px); }
.experience-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: 80px; align-items: center; }
.experience-grid__visual { position: relative; }
.experience-grid__visual img { aspect-ratio: 4 / 3; object-fit: cover; filter: saturate(.78); }
.experience-grid__visual:before { content: ''; position: absolute; z-index: 1; inset: 14px; border: 1px solid rgba(255,255,255,.55); pointer-events: none; }
.experience-grid__tag { position: absolute; z-index: 2; right: -22px; bottom: 26px; padding: 18px; color: var(--paper); background: var(--cocoa); font-size: 10px; text-transform: uppercase; letter-spacing: .12em; }
.experience-grid__copy h2 { margin: 0 0 24px; color: var(--paper); font-size: clamp(2.6rem, 4.4vw, 4.7rem); font-weight: 600; line-height: .95; letter-spacing: -.07em; }
.experience-grid__copy > p { max-width: 430px; margin: 0 0 30px; color: rgba(255,255,255,.65); font-size: 14px; line-height: 1.7; }
.check-list { display: grid; gap: 0; margin: 0 0 30px; padding: 0; list-style: none; }
.check-list li { display: flex; gap: 15px; padding: 15px 0; border-top: 1px solid rgba(255,255,255,.16); color: rgba(255,255,255,.75); font-size: 12px; }
.check-list li:before { content: '✓'; color: var(--orange); }
.proof-row { display: grid; grid-template-columns: 1.1fr .9fr; gap: 80px; align-items: center; }
.proof-row h2 { max-width: 610px; margin: 0 0 25px; font-size: clamp(2.8rem, 5vw, 5.2rem); font-weight: 600; line-height: .94; letter-spacing: -.07em; }
.proof-row p { max-width: 480px; margin: 0; color: var(--muted); line-height: 1.7; font-size: 14px; }
.recognition-list { border-top: 1px solid var(--line); }
.recognition-list__item { display: grid; grid-template-columns: 45px 1fr; gap: 15px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.recognition-list__item > span { color: var(--orange-dark); font-size: 10px; letter-spacing: .12em; }
.recognition-list__item strong { display: block; margin-bottom: 6px; font-size: 13px; }
.recognition-list__item p { margin: 0; font-size: 11px; line-height: 1.5; }
.contact-panel { display: grid; grid-template-columns: 1fr 1fr; gap: 85px; align-items: start; }
.contact-panel h2 em { color: var(--cocoa); }
.contact-panel__copy > p { max-width: 450px; margin: 27px 0 0; color: var(--muted); font-size: 14px; line-height: 1.7; }
.contact-direct { display: grid; gap: 6px; margin-top: 34px; padding-top: 19px; border-top: 1px solid var(--line); }
.contact-direct small { color: var(--muted); font-size: 9px; text-transform: uppercase; letter-spacing: .16em; }
.contact-direct a:first-of-type { color: var(--cocoa); font-family: var(--display); font-size: 27px; }
.contact-direct a:last-of-type { width: fit-content; color: var(--orange-dark); font-size: 11px; font-weight: 700; }
.contact-form { display: grid; gap: 22px; padding: 30px; background: var(--sand); }
.contact-form__head { display: flex; justify-content: space-between; padding-bottom: 15px; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 9px; text-transform: uppercase; letter-spacing: .12em; }
.contact-form label { display: grid; gap: 8px; color: var(--muted); font-size: 9px; text-transform: uppercase; letter-spacing: .14em; }
.contact-form input, .contact-form select { width: 100%; padding: 11px 0; border: 0; border-bottom: 1px solid #bdb1a9; outline: 0; color: var(--ink); background: transparent; font-size: 13px; }
.contact-form input:focus, .contact-form select:focus { border-color: var(--orange-dark); }
.contact-form .button { width: fit-content; margin-top: 7px; }
.form-note { margin: -6px 0 0; color: var(--muted); font-size: 10px; line-height: 1.5; }
.form-note.is-success { color: #3f7149; }

.breadcrumb { padding: 20px 0; color: var(--muted); font-size: 9px; text-transform: uppercase; letter-spacing: .13em; }
.breadcrumb a { color: var(--orange-dark); }
.program-hero { display: grid; grid-template-columns: 1.02fr .98fr; height: clamp(520px, calc(100dvh - 166px), 680px); min-height: 520px; color: var(--ink); background: var(--paper); }
.program-hero__copy { display: flex; flex-direction: column; justify-content: center; padding: 75px max(32px, calc((100vw - 1180px) / 2)); padding-right: 72px; }
.program-hero__copy h1 { max-width: 600px; margin: 0 0 23px; font-size: clamp(3rem, 5.7vw, 5.8rem); font-weight: 600; line-height: .94; letter-spacing: -.07em; }
.program-hero__copy p { max-width: 450px; margin: 0 0 29px; color: var(--muted); line-height: 1.7; font-size: 14px; }
.program-hero__media { position: relative; min-height: 0; }
.program-hero__media img { height: 100%; object-fit: cover; filter: saturate(.75); }
.program-hero__media:after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(255,253,249,.12), transparent 45%), linear-gradient(0deg, rgba(23,20,19,.18), transparent 48%); }
.program-hero__label { margin-bottom: 16px; color: var(--orange); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .18em; }
.program-hero__duration { display: flex; align-items: end; gap: 11px; margin-top: auto; padding-top: 28px; border-top: 1px solid var(--line); }
.program-hero__duration strong { color: var(--orange); font-family: var(--display); font-size: 47px; font-weight: 500; line-height: .78; }
.program-hero__duration span { color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .12em; }
.program-overview { display: grid; grid-template-columns: .78fr 1.22fr; gap: 90px; align-items: start; }
.program-facts { border-top: 2px solid var(--orange); }
.program-facts__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.program-facts__row span { color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .12em; }
.program-facts__row strong { font-size: 12px; font-weight: 600; }
.program-overview__copy h2 { margin-bottom: 25px; }
.program-overview__copy > p { max-width: 630px; margin: 0 0 35px; color: var(--muted); font-size: 15px; line-height: 1.8; }
.program-overview__copy .check-list { color: var(--ink); }
.program-overview__copy .check-list li { color: var(--ink); border-color: var(--line); }
.program-overview__copy .check-list li:before { color: var(--orange-dark); }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.feature-card { padding: 27px; border-top: 3px solid var(--orange); background: var(--paper); }
.feature-card span { display: block; margin-bottom: 36px; color: var(--orange-dark); font-size: 10px; font-weight: 700; letter-spacing: .15em; }
.feature-card h3 { margin: 0 0 11px; font-size: 21px; line-height: 1; letter-spacing: -.04em; }
.feature-card p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.6; }
.process-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: start; }
.process-grid h2 { margin: 0; color: var(--paper); font-size: clamp(2.8rem, 5vw, 5rem); font-weight: 600; line-height: .94; letter-spacing: -.07em; }
.process-list { border-top: 1px solid rgba(255,255,255,.18); }
.process-item { display: grid; grid-template-columns: 46px 1fr; gap: 18px; padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,.18); }
.process-item > span { color: var(--orange); font-size: 10px; letter-spacing: .12em; }
.process-item h3 { margin: 0 0 7px; color: var(--paper); font-size: 16px; }
.process-item p { max-width: 430px; margin: 0; color: rgba(255,255,255,.59); font-size: 12px; line-height: 1.55; }
.practice-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 85px; align-items: center; }
.practice-grid__media { position: relative; }
.practice-grid__media img { aspect-ratio: 4 / 3; object-fit: cover; filter: saturate(.8); }
.practice-grid__media:after { content: ''; position: absolute; inset: 15px; border: 1px solid rgba(255,255,255,.6); pointer-events: none; }
.practice-grid__copy h2 { margin: 0 0 22px; font-size: clamp(2.6rem, 4.5vw, 4.6rem); font-weight: 600; line-height: .95; letter-spacing: -.07em; }
.practice-grid__copy p { max-width: 450px; margin: 0 0 26px; color: var(--muted); font-size: 14px; line-height: 1.75; }
.cta-band { padding: 80px 0; color: var(--paper); background: var(--orange); }
.cta-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cta-band h2 { max-width: 660px; margin: 0; color: var(--ink); font-size: clamp(2.7rem, 5vw, 5rem); font-weight: 600; line-height: .94; letter-spacing: -.07em; }
.cta-band .button { color: var(--paper); background: var(--ink); white-space: nowrap; }
.cta-band .button span { color: var(--ink); background: var(--orange); }

.site-footer { padding: 44px 0 23px; color: rgba(255,255,255,.62); background: var(--ink); }
.footer__top { display: flex; align-items: center; gap: 27px; padding-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,.16); }
.footer__top img { width: 135px; border-radius: 8px; }
.footer__top p { margin: 2px 0; font-size: 9px; text-transform: uppercase; letter-spacing: .13em; }
.footer__top > a { margin-left: auto; color: var(--orange); font-size: 10px; text-transform: uppercase; letter-spacing: .13em; }
.footer__bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 18px; font-size: 9px; text-transform: uppercase; letter-spacing: .11em; }
.footer__bottom a { color: var(--paper); }
.floating-actions { position: fixed; z-index: 5; right: 21px; bottom: 20px; display: flex; flex-direction: column; gap: 9px; align-items: flex-end; }
.floating-action { display: flex; align-items: center; gap: 8px; transition: transform 500ms var(--ease); }
.floating-action:hover { transform: translateX(-4px); }
.floating-action span { display: grid; place-items: center; width: 48px; height: 48px; color: white; border-radius: 50%; font-size: 10px; font-weight: 700; letter-spacing: .05em; box-shadow: 0 9px 20px rgba(0,0,0,.18); }
.floating-action b { order: -1; color: var(--ink); opacity: 0; transform: translateX(8px); font-size: 9px; text-transform: uppercase; letter-spacing: .12em; transition: opacity 500ms var(--ease), transform 500ms var(--ease); }
.floating-action:hover b { opacity: 1; transform: none; }
.floating-action--phone span { background: var(--cocoa); }
.floating-action--whatsapp span { background: #2f9d5a; }
[data-reveal] { opacity: 0; transform: translateY(28px); filter: blur(7px); transition: opacity 850ms var(--ease), transform 850ms var(--ease), filter 850ms var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: none; filter: none; }
[data-delay="1"] { transition-delay: 120ms; }
[data-delay="2"] { transition-delay: 220ms; }

@media (max-width: 900px) {
  .shell { width: min(100% - 40px, 680px); }
  .site-header__inner { min-height: 74px; }
  .site-nav { display: none; }
  .menu-toggle { display: block; }
  .site-nav.is-open { position: absolute; top: 74px; right: 20px; left: 20px; display: grid; gap: 0; padding: 8px; border: 1px solid var(--line); background: var(--paper); box-shadow: 0 18px 30px rgba(40,26,20,.1); }
  .site-header--dark .site-nav.is-open { border-color: rgba(255,255,255,.16); background: var(--ink-2); }
  .site-nav.is-open a { padding: 14px 12px; }
  .site-nav.is-open a:after { bottom: 7px; left: 12px; }
  .site-nav.is-open .header-cta { justify-content: space-between; margin-top: 5px; }
  .home-hero, .program-hero { grid-template-columns: 1fr; height: auto; min-height: calc(100dvh - 120px); }
  .home-hero__copy, .program-hero__copy { padding: 90px max(20px, calc((100% - 680px) / 2)); }
  .home-hero__media, .program-hero__media { min-height: 420px; }
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
  .trust-strip__item:nth-child(2) { border-right: 0; }
  .trust-strip__item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .home-intro, .experience-grid, .proof-row, .contact-panel, .program-overview, .process-grid, .practice-grid { grid-template-columns: 1fr; gap: 52px; }
  .program-grid, .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .program-card:last-child, .feature-card:last-child { grid-column: 1 / -1; }
  .section-heading { display: block; }
  .section-heading > p { margin-top: 22px; }
  .cta-band__inner { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 620px) {
  .shell { width: calc(100% - 32px); }
  .topbar { padding-inline: 10px; font-size: 8px; }
  .topbar a { display: none; }
  .brand-mark { width: 125px; }
  .home-hero, .program-hero { display: grid; grid-template-columns: 1fr; grid-template-rows: 1.25fr .75fr; height: calc(100dvh - 120px); min-height: 0; }
  .program-hero { height: calc(100dvh - 166px); }
  .home-hero__copy, .program-hero__copy { position: relative; z-index: 1; height: auto; justify-content: center; padding: 30px 16px 24px; color: var(--ink); background: var(--paper); }
  .home-hero__media, .program-hero__media { position: relative; inset: auto; height: auto; min-height: 0; }
  .home-hero__media:after, .program-hero__media:after { background: linear-gradient(0deg, rgba(23,20,19,.25), transparent 62%); }
  .home-hero { position: relative; display: block; height: calc(100dvh - 120px); min-height: 0; color: var(--paper); background: var(--ink); }
  .mobile-route-rail { position: absolute; z-index: 4; top: 0; right: 0; left: 0; display: grid; grid-template-columns: repeat(3, 1fr); border-bottom: 1px solid rgba(255,255,255,.2); color: var(--paper); background: rgba(23,20,19,.92); }
  .mobile-route-rail a { display: grid; place-items: center; min-height: 48px; padding: 8px 5px; border-right: 1px solid rgba(255,255,255,.2); color: var(--paper); font-size: 10px; font-weight: 700; text-align: center; text-transform: uppercase; letter-spacing: .04em; }
  .mobile-route-rail a:last-child { border-right: 0; }
  .mobile-route-rail a:hover, .mobile-route-rail a:focus-visible { color: var(--orange); background: rgba(244,126,44,.11); }
  .home-hero:before { content: 'CHEF'; position: absolute; z-index: 1; top: 42px; left: -14px; color: rgba(255,255,255,.055); font-size: 9.6rem; font-weight: 800; letter-spacing: -.1em; line-height: .8; pointer-events: none; }
  .home-hero__media { position: absolute; z-index: 0; inset: 0; height: auto; min-height: 0; }
  .home-hero__media img { height: 100%; object-fit: cover; object-position: center; filter: saturate(.68); }
  .home-hero__media:after { background: linear-gradient(0deg, rgba(23,20,19,.95), rgba(23,20,19,.08) 73%), linear-gradient(90deg, rgba(23,20,19,.62), transparent 76%); }
  .home-hero__copy { position: absolute; z-index: 2; right: 16px; bottom: 22px; left: 16px; display: block; height: auto; padding: 0; color: var(--paper); background: transparent; }
  .home-hero__copy .eyebrow { margin-bottom: 17px; color: var(--orange); }
  .home-hero__copy h1 { max-width: 350px; color: var(--paper); }
  .home-hero__copy .hero__lede { max-width: 255px; margin: 18px 0 0; color: rgba(255,255,255,.7); }
  .home-hero__copy .hero__actions { margin-top: 21px; }
  .home-hero__copy .text-link--light { color: var(--paper); }
  .home-hero .hero-proof { top: 64px; right: 16px; bottom: auto; width: auto; min-width: 154px; padding: 13px; border-top-width: 3px; }
  .home-hero .hero-proof strong { font-size: 32px; }
  .home-hero .hero-proof span { font-size: 8px; }
  .hero h1 { font-size: clamp(2.8rem, 13.5vw, 4.3rem); }
  .program-hero__copy h1 { font-size: clamp(2.55rem, 11.5vw, 3.7rem); }
  .hero-proof { right: 16px; bottom: 16px; width: 180px; padding: 16px; }
  .hero-proof strong { font-size: 29px; }
  .trust-strip { grid-template-columns: 1fr 1fr; }
  .trust-strip__item { min-height: 90px; gap: 9px; padding: 15px 12px; }
  .trust-strip__number { font-size: 25px; }
  .trust-strip__item span { font-size: 9px; }
  .section { padding: 88px 0; }
  .section-heading h2, .home-intro h2, .program-overview h2, .contact-panel h2, .process-grid h2, .practice-grid__copy h2, .proof-row h2 { font-size: clamp(2.7rem, 13vw, 4.3rem); }
  .program-grid, .feature-grid { display: block; }
  .program-card { min-height: 350px; margin-bottom: 14px; }
  .feature-card { margin-bottom: 14px; }
  .experience-grid__tag { right: 10px; bottom: 10px; }
  .proof-row { gap: 40px; }
  .contact-form { padding: 23px 19px; }
  .program-hero__duration { margin-top: 18px; padding-top: 14px; }
  .practice-grid__media { order: 2; }
  .practice-grid__copy { order: 1; }
  .cta-band { padding: 70px 0; }
  .cta-band h2 { font-size: clamp(2.7rem, 13vw, 4.3rem); }
  .footer__top { display: grid; grid-template-columns: 1fr 1fr; }
  .footer__top > a { grid-column: 1 / -1; margin-left: 0; }
  .footer__bottom { display: grid; gap: 10px; }
  .floating-actions { right: 14px; bottom: 14px; }
  .floating-action b { display: none; }
}
@media (max-width: 700px) {
  .home-hero { position: relative; display: block; height: calc(100dvh - 120px); min-height: 0; color: var(--paper); background: var(--ink); }
  .mobile-route-rail { position: absolute; z-index: 4; top: 0; right: 0; left: 0; display: grid; grid-template-columns: repeat(3, 1fr); border-bottom: 1px solid rgba(255,255,255,.2); color: var(--paper); background: rgba(23,20,19,.92); }
  .mobile-route-rail a { display: grid; place-items: center; min-height: 48px; padding: 8px 5px; border-right: 1px solid rgba(255,255,255,.2); color: var(--paper); font-size: 10px; font-weight: 700; text-align: center; text-transform: uppercase; letter-spacing: .04em; }
  .mobile-route-rail a:last-child { border-right: 0; }
  .mobile-route-rail a:hover, .mobile-route-rail a:focus-visible { color: var(--orange); background: rgba(244,126,44,.11); }
  .home-hero:before { content: 'CHEF'; position: absolute; z-index: 1; top: 42px; left: -14px; color: rgba(255,255,255,.055); font-size: 9.6rem; font-weight: 800; letter-spacing: -.1em; line-height: .8; pointer-events: none; }
  .home-hero__media { position: absolute; z-index: 0; inset: 0; height: auto; min-height: 0; }
  .home-hero__media img { height: 100%; object-fit: cover; object-position: center; filter: saturate(.68); }
  .home-hero__media:after { background: linear-gradient(0deg, rgba(23,20,19,.95), rgba(23,20,19,.08) 73%), linear-gradient(90deg, rgba(23,20,19,.62), transparent 76%); }
  .home-hero__copy { position: absolute; z-index: 2; right: 16px; bottom: 22px; left: 16px; display: block; height: auto; padding: 0; color: var(--paper); background: transparent; }
  .home-hero__copy .eyebrow { margin-bottom: 17px; color: var(--orange); }
  .home-hero__copy h1 { max-width: 350px; color: var(--paper); font-size: clamp(2.8rem, 13.5vw, 4.3rem); }
  .home-hero__copy .hero__lede { max-width: 255px; margin: 18px 0 0; color: rgba(255,255,255,.7); }
  .home-hero__copy .hero__actions { margin-top: 21px; }
  .home-hero__copy .text-link--light { color: var(--paper); }
  .home-hero .hero-proof { top: 64px; right: 16px; bottom: auto; width: auto; min-width: 154px; padding: 13px; border-top-width: 3px; }
  .home-hero .hero-proof strong { font-size: 32px; }
  .home-hero .hero-proof span { font-size: 8px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *:before, *:after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; filter: none; }
}

/* Homepage option 03: the navbar shares the hero surface and the logo is no longer boxed. */
@media (min-width: 701px) {
  body[data-page="inicio"] .site-header--hero-integrated {
    position: relative;
    z-index: 7;
    margin-bottom: -84px;
    color: var(--ink);
    border-bottom-color: rgba(23, 20, 19, .13);
    background: rgba(255, 253, 249, .78);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }

  body[data-page="inicio"] .site-header--hero-integrated .brand-mark {
    width: 156px;
    background: transparent;
    border-radius: 0;
  }

  body[data-page="inicio"] .site-header--hero-integrated .site-nav a,
  body[data-page="inicio"] .site-header--hero-integrated .site-nav a:hover,
  body[data-page="inicio"] .site-header--hero-integrated .site-nav a.is-current { color: var(--ink); }

  body[data-page="inicio"] .site-header--hero-integrated .header-cta {
    color: var(--ink) !important;
    background: var(--orange);
  }
}

@media (max-width: 700px) {
  body[data-page="inicio"] .site-header--hero-integrated {
    color: var(--paper);
    border-bottom-color: rgba(255, 255, 255, .15);
    background: rgba(23, 20, 19, .74);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  body[data-page="inicio"] .site-header--hero-integrated .brand-mark {
    width: 125px;
    background: transparent;
    border-radius: 0;
  }

  body[data-page="inicio"] .site-header--hero-integrated .brand-mark img { filter: brightness(0) invert(1); }
  body[data-page="inicio"] .site-header--hero-integrated .menu-toggle { color: var(--paper); }
  body[data-page="inicio"] .site-header--hero-integrated .site-nav.is-open { background: var(--ink-2); }
}
