@font-face {
    font-family: 'Leafy';
    src: url('../font/Leafy-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --bg: #fefefe;
    --sand: #f6f4f0;
    --dark: #1c1c1c;
    --soft: #4a4a4a;
    --muted: #8a8a8a;
    --line: #e8e6e2;
    --green: #3a7d44;
    --green-soft: #edf5ee;
    --r: 20px;
    --r-sm: 14px;
    --pill: 999px;
    --font: 'Outfit', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--bg); color: var(--dark); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* --- CONTAINER --- */
.container { max-width: 1080px; width: 100%; margin: 0 auto; padding: 0 24px; }

/* --- NAV --- */
.nav { position: fixed; top: 16px; left: 50%; transform: translateX(-50%); z-index: 100; width: calc(100% - 40px); max-width: 900px; }
.nav__bar {
    display: flex; align-items: center; justify-content: space-between;
    background: rgba(255,255,255,.75); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--line); border-radius: var(--pill);
    padding: 6px 6px 6px 24px; height: 52px;
}
.nav__logo { font-weight: 700; font-size: 17px; letter-spacing: -.03em; display: flex; align-items: center; gap: 0; }
.nav__logo .co-badge { display: inline-flex; align-items: center; justify-content: center; background: var(--green-soft); color: var(--green); font-size: 10px; font-weight: 700; padding: 2px 6px; border-radius: 6px; margin-left: 2px; letter-spacing: 0; line-height: 1; }
.nav__links { display: flex; gap: 20px; }
.nav__links a { font-size: 13px; font-weight: 500; color: var(--soft); transition: color .15s; }
.nav__links a:hover { color: var(--dark); }
.nav__links a.active { color: var(--dark); font-weight: 600; }
.nav__vc {
    background: linear-gradient(90deg, #c040a0, #2a1a8a);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; font-weight: 700 !important;
}
.nav__cta { padding: 10px 22px; background: var(--dark); color: #fff; border-radius: var(--pill); font-size: 13px; font-weight: 600; transition: opacity .15s; }
.nav__cta:hover { opacity: .85; }
.nav__burger { display: none; margin-right: 12px; cursor: pointer; width: 24px; height: 18px; position: relative; }
.nav__burger span { display: block; width: 24px; height: 2px; background: var(--dark); border-radius: 2px; position: absolute; left: 0; transition: transform .3s, opacity .2s, top .3s; }
.nav__burger span:nth-child(1) { top: 0; }
.nav__burger span:nth-child(2) { top: 8px; }
.nav__burger span:nth-child(3) { top: 16px; }
.nav__burger.open span:nth-child(1) { top: 8px; transform: rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { top: 8px; transform: rotate(-45deg); }

/* --- HERO --- */
.hero { padding: 100px 24px 0; text-align: center; }
.hero__chip { display: inline-block; padding: 6px 18px; background: var(--green-soft); color: var(--green); border-radius: var(--pill); font-size: 13px; font-weight: 600; margin-bottom: 20px; }
.hero h1 { font-size: clamp(36px, 6vw, 72px); font-weight: 800; letter-spacing: -.04em; line-height: 1.05; max-width: 700px; margin: 0 auto 20px; }
.hero h1 em { font-style: normal; color: var(--green); }
.hero__sub { font-size: 17px; color: var(--soft); max-width: 480px; margin: 0 auto 16px; line-height: 1.6; font-weight: 400; }
.hero__btns { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: var(--pill); font-size: 15px; font-weight: 600; transition: all .2s; }
.btn--dark { background: var(--dark); color: #fff; }
.btn--dark:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.12); }
.btn--soft { background: var(--sand); color: var(--dark); }
.btn--soft:hover { background: var(--line); }
.btn--wa { background: #25d366; color: #fff; }
.btn--wa:hover { background: #1fbe5d; transform: translateY(-2px); }
.btn--outline { border: 1.5px solid var(--line); color: var(--dark); background: transparent; }
.btn--outline:hover { border-color: var(--dark); }
.btn--outline-light { border: 1.5px solid rgba(255,255,255,.35); color: #fff; background: rgba(29,29,31,.85); }
.btn--outline-light:hover { border-color: rgba(255,255,255,.6); background: rgba(29,29,31,.95); }
.btn--full { width: 100%; justify-content: center; }

/* hero mosaic */
.hero__mosaic { display: grid; grid-template-columns: 1fr 1.8fr 1fr; gap: 12px; max-width: 960px; margin: 48px auto 0; }
.hero__mosaic img { width: 100%; height: 280px; object-fit: cover; border-radius: var(--r); }
.hero__mosaic > :nth-child(2) img { height: 320px; margin-top: -40px; }

/* --- SECTIONS --- */
.section { max-width: 1080px; margin: 0 auto; padding: 80px 24px; }
.hero + .section { padding-top: 40px; }
.section--sand { background: var(--sand); }
.section--full { max-width: 100%; }
.stitle { font-size: clamp(24px, 3.5vw, 40px); font-weight: 700; letter-spacing: -.03em; line-height: 1.15; }
.stitle em { font-style: normal; color: var(--green); }
.ssub { font-size: 16px; color: var(--soft); line-height: 1.6; margin-top: 12px; max-width: 520px; }
.ssub.center { margin-left: auto; margin-right: auto; text-align: center; }
.shead { text-align: center; margin-bottom: 48px; }

/* --- MARQUEE TRUST --- */
.trust { padding: 32px 0; margin-top: 48px; overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust__track { display: flex; gap: 56px; animation: marquee 20s linear infinite; }
.trust__item { font-size: 16px; font-weight: 700; color: var(--muted); white-space: nowrap; opacity: .4; letter-spacing: -.01em; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* --- PROBLEM / SOLUTION --- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.split__img { border-radius: var(--r); overflow: hidden; }
.split__img img { width: 100%; height: 380px; object-fit: cover; }
.split__text { display: flex; flex-direction: column; gap: 14px; }
.split__text .chip { align-self: flex-start; }
.chip { display: inline-block; padding: 5px 14px; border-radius: var(--pill); font-size: 12px; font-weight: 600; }
.chip--green { background: var(--green-soft); color: var(--green); }
.chip--gray { background: var(--sand); color: var(--muted); }
.callout { font-size: 18px; font-weight: 600; color: var(--dark); line-height: 1.4; }

/* --- FEATURES --- */
.feat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.feat {
    background: var(--bg); border: 1px solid var(--line);
    border-radius: var(--r); padding: 28px 22px;
    transition: transform .25s, box-shadow .25s;
}
.feat:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.06); }
.feat__ico { width: 44px; height: 44px; border-radius: 12px; background: var(--green-soft); color: var(--green); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.feat h3 { font-size: 15px; font-weight: 600; margin-bottom: 6px; }
.feat p { font-size: 13px; color: var(--soft); line-height: 1.5; }

/* --- GALLERY --- */
.gal { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 240px; gap: 12px; grid-auto-flow: dense; }
.gal__item { position: relative; border-radius: var(--r); overflow: hidden; }
.gal__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.gal__item:hover img { transform: scale(1.05); }
.gal__item--big { grid-column: span 2; }
.gal__item--full { grid-column: span 3; }
.gal__cap { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px; color: #fff; background: linear-gradient(transparent, rgba(0,0,0,.55)); }
.gal__cap h3 { font-size: 16px; font-weight: 600; }
.gal__cap p { font-size: 12px; opacity: .8; }

/* --- RUTINA GRID --- */
.rutina-grid { display: grid; grid-template-columns: 1.2fr 1fr 1.4fr; gap: 20px; max-height: 420px; }
.rutina-grid__big { border-radius: var(--r); overflow: hidden; max-height: 420px; }
.rutina-grid__big img { width: 100%; height: 100%; object-fit: cover; }
.rutina-grid__stack { display: flex; flex-direction: column; gap: 16px; max-height: 420px; }
.rutina-grid__img { border-radius: var(--r); overflow: hidden; flex: 1; min-height: 0; }
.rutina-grid__img img { width: 100%; height: 100%; object-fit: cover; }
.rutina-grid__text { display: flex; flex-direction: column; justify-content: center; gap: 16px; color: var(--soft); font-size: .95rem; line-height: 1.6; padding: 8px 0; }

/* --- QUOTE --- */
.quote-band {
    background: var(--dark); color: #fff; text-align: center;
    padding: 72px 24px; position: relative; overflow: hidden;
}
.quote-band::before {
    content: ''; position: absolute; inset: 0;
    background: url('../images/topo-pattern.svg') repeat;
    background-size: 600px 600px; opacity: .45; pointer-events: none;
    filter: invert(1) brightness(2);
}
.quote-band > * { position: relative; z-index: 1; }
.quote-band blockquote {
    font-size: clamp(24px, 3.5vw, 42px); font-weight: 700;
    letter-spacing: -.03em; line-height: 1.25; font-style: normal;
    max-width: 640px; margin: 0 auto;
}

/* --- ABOUT --- */
.about-img { border-radius: var(--r); overflow: hidden; }
.about-img img { width: 100%; height: 360px; object-fit: cover; }
.about-stats { display: flex; gap: 36px; margin-top: 20px; }
.about-stat strong { display: block; font-size: 30px; font-weight: 700; letter-spacing: -.02em; }
.about-stat span { font-size: 13px; color: var(--muted); }

/* --- TOPO BACKGROUND --- */
.about-topo {
    position: relative;
    overflow: hidden;
    max-width: 100%;
    padding-left: 24px;
    padding-right: 24px;
}
.about-topo > .split { max-width: 1080px; margin: 0 auto; position: relative; z-index: 1; }
.about-topo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/topo-pattern.svg') repeat;
    background-size: 600px 600px;
    opacity: .45;
    pointer-events: none;
}

/* --- TESTIMONIALS --- */
.test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.test {
    border: 1px solid var(--line); border-radius: var(--r); padding: 28px;
    display: flex; flex-direction: column; gap: 16px;
    background: var(--bg);
    transition: transform .25s, box-shadow .25s;
}
.test:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.06); }
.test__stars { color: #f5a623; font-size: 14px; letter-spacing: 2px; }
.test p { font-size: 14px; color: var(--soft); line-height: 1.6; flex: 1; }
.test__who { display: flex; align-items: center; gap: 10px; }
.test__who img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; }
.test__who strong { display: block; font-size: 13px; }
.test__who span { font-size: 12px; color: var(--muted); }

/* --- CTA BANNER --- */
.cta-band {
    max-width: 1080px; margin: 0 auto; padding: 0 24px;
}
.cta-card {
    background: var(--green-soft); border-radius: var(--r);
    padding: 56px 40px; text-align: center;
}
.cta-card h2 { font-size: clamp(22px, 3vw, 32px); font-weight: 700; letter-spacing: -.02em; margin-bottom: 12px; }
.cta-card > p { font-size: 15px; color: var(--soft); margin-bottom: 28px; }
.cta-card em { font-style: normal; color: var(--green); }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* --- CONTACT --- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 14px; }
.contact-info h2 { font-size: 28px; font-weight: 700; letter-spacing: -.02em; }
.ci-row { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--soft); margin-top: 4px; }
.ci-row svg { color: var(--muted); flex-shrink: 0; }
.ci-row a:hover { color: var(--green); }
.ci-socials { display: flex; gap: 8px; margin-top: 8px; }
.ci-socials a { width: 38px; height: 38px; border-radius: 12px; border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; color: var(--soft); transition: all .15s; }
.ci-socials a:hover { background: var(--dark); color: #fff; border-color: var(--dark); }

.contact-form {
    background: var(--sand); border-radius: var(--r); padding: 32px;
    display: flex; flex-direction: column; gap: 12px;
    position: relative; overflow: hidden;
}
.contact-form::before {
    content: ''; position: absolute; inset: 0;
    background: url('../images/frailejones-tile-light.svg') repeat;
    background-size: 300px 300px; opacity: .06; pointer-events: none;
}
.contact-form > * { position: relative; z-index: 1; }
.contact-form h3 { font-size: 17px; font-weight: 600; margin-bottom: 4px; }
.contact-form form { display: flex; flex-direction: column; gap: 12px; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.contact-form input, .contact-form textarea {
    width: 100%; padding: 13px 16px; background: var(--bg);
    border: 1px solid var(--line); border-radius: 12px;
    font-size: 14px; color: var(--dark); transition: border .15s;
    font-family: var(--font);
}
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--dark); }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: var(--muted); }
.contact-form textarea { resize: vertical; min-height: 90px; }

/* --- FOOTER --- */
.foot {
    max-width: 1080px; margin: 0 auto; padding: 24px;
    display: flex; align-items: center; justify-content: space-between;
    border-top: 1px solid var(--line); font-size: 12px; color: var(--muted);
}
.foot__logo { height: 28px; width: auto; opacity: .45; }
.foot a { color: var(--muted); transition: color .15s; }
.foot a:hover { color: var(--dark); }
.foot__r { display: flex; align-items: center; gap: 20px; }
.foot__social { display: flex; gap: 8px; }
.foot__social a { color: var(--muted); font-size: 18px; transition: color .15s; display: inline-flex; align-items: center; justify-content: center; min-width: 44px; min-height: 44px; }
.foot__social a:hover { color: var(--dark); }

/* --- PAGE HEADER (for inner pages) --- */
.page-hero {
    padding: 120px 24px 40px;
    text-align: center;
}
.page-hero + .section { padding-top: 40px; }
.page-hero h1 {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    letter-spacing: -.04em;
    line-height: 1.1;
}
.page-hero p {
    font-size: 17px;
    color: var(--soft);
    margin-top: 12px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

/* --- ANDAR PAGE --- */
.andar-plans { display: flex; flex-direction: column; gap: 12px; margin-top: 16px; }
.andar-plan { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; background: var(--sand); border-radius: var(--r-sm); }
.andar-plan__name { font-weight: 700; font-size: 16px; color: var(--dark); }
.andar-plan__price { font-weight: 700; font-size: 20px; color: var(--green); letter-spacing: -.02em; }
.andar-plan__desc { font-size: 13px; color: var(--muted); }
.andar-includes { margin-top: 20px; font-size: 14px; line-height: 1.7; color: var(--soft); }
.andar-includes p { margin-bottom: 6px; }
.andar-includes strong { color: var(--dark); }

/* --- CALENDARIO PAGE (calendar view) --- */

/* Month group */
.cal-month { margin-bottom: 48px; }
.cal-month__header {
    font-size: 14px; font-weight: 700; letter-spacing: 3px; color: var(--muted);
    padding-bottom: 12px; border-bottom: 2px solid var(--line); margin-bottom: 0;
}

/* Event row */
.cal-event {
    display: flex; align-items: stretch; gap: 0;
    border-bottom: 1px solid var(--line); padding: 20px 0;
    position: relative; transition: background .15s;
    color: var(--dark);
}
.cal-event::before {
    content: ''; position: absolute; left: 0; top: 0; bottom: 0;
    width: 4px; background: var(--line);
}
.cal-event:hover { background: var(--sand); }
.cal-event--principiante::before { background: #4caf50; }
.cal-event--intermedia::before { background: #ff9800; }
.cal-event--exigente::before { background: #e53935; }

/* Date column */
.cal-event__date {
    min-width: 80px; padding: 0 16px; display: flex; flex-direction: column;
    align-items: center; justify-content: center; flex-shrink: 0;
}
.cal-event__day {
    font-size: 36px; font-weight: 800; line-height: 1; letter-spacing: -.03em; color: var(--dark);
    position: relative; display: inline-block;
}
.cal-event__day sup {
    font-size: 20px; font-weight: 700; color: var(--muted);
    position: absolute; top: -2px; left: 100%; margin-left: 1px;
    white-space: nowrap;
}
.cal-event__weekday { font-size: 12px; font-weight: 600; text-transform: uppercase; color: var(--green); letter-spacing: 1px; margin-top: 2px; }
.cal-event__monthname { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }

/* Image column */
.cal-event__img {
    width: 120px; height: 90px; flex-shrink: 0; border-radius: var(--r-sm);
    overflow: hidden; margin: 0 16px;
}
.cal-event__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.cal-event:hover .cal-event__img img { transform: scale(1.05); }

/* Body */
.cal-event__body { flex: 1; display: flex; flex-direction: column; gap: 4px; justify-content: center; padding-right: 16px; }
.cal-event__title { font-size: 18px; font-weight: 700; letter-spacing: -.02em; line-height: 1.2; }
.cal-event__info { display: flex; align-items: center; gap: 12px; font-size: 13px; color: var(--muted); }
.cal-event__time::before, .cal-event__loc::before { content: ''; display: inline-block; width: 14px; height: 14px; vertical-align: -2px; margin-right: 4px; background-size: contain; background-repeat: no-repeat; opacity: .55; }
.cal-event__time::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%234a4a4a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M12 6v6l4 2'/%3E%3C/svg%3E"); }
.cal-event__loc::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%234a4a4a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E"); }
.cal-event__desc { font-size: 13px; color: var(--soft); line-height: 1.4; }
.cal-event__foot { display: flex; align-items: center; gap: 12px; margin-top: 4px; }
.cal-event__diff {
    font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .5px;
    padding: 2px 10px; border-radius: 6px; background: var(--sand); color: var(--soft);
}
.cal-event--principiante .cal-event__diff { background: #e8f5e9; color: #2e7d32; }
.cal-event--intermedia .cal-event__diff { background: #fff3e0; color: #e65100; }
.cal-event--exigente .cal-event__diff { background: #fce4ec; color: #c62828; }
.cal-event__diff--variable { background: #f0f0f0; color: #999; }
.cal-event__price { font-size: 15px; font-weight: 700; color: var(--green); }

/* Event actions (Participar button) */
.cal-event__actions {
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; padding: 0 20px;
}
.btn--sm { padding: 8px 20px; font-size: 13px; border-radius: var(--pill); }

/* Past events */
.cal-event--past { opacity: .5; pointer-events: auto; }
.cal-event--past .cal-event__img,
.cal-event--past .cal-event__body { cursor: default; }
.cal-event--past .cal-event__img img { filter: grayscale(.6); }
.cal-event__past-label {
    font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em;
    color: var(--muted); background: var(--bg); border: 1px solid var(--line);
    padding: 6px 16px; border-radius: var(--pill);
}
.btn--green { background: var(--green); color: #fff; font-weight: 600; transition: opacity .15s; display: inline-flex; align-items: center; }
.btn--green:hover { opacity: .85; }

/* --- MODAL --- */
.modal-overlay {
    position: fixed; inset: 0; z-index: 200;
    background: rgba(0,0,0,.5); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
    display: flex; align-items: center; justify-content: center; padding: 24px;
    opacity: 0; visibility: hidden; transition: opacity .25s, visibility .25s;
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal {
    background: var(--bg); border-radius: var(--r); padding: 36px 32px;
    max-width: 480px; width: 100%; position: relative;
    transform: translateY(20px); transition: transform .25s;
    box-shadow: 0 24px 64px rgba(0,0,0,.15);
}
.modal-overlay.open .modal { transform: translateY(0); }
.modal__close {
    position: absolute; top: 12px; right: 16px;
    font-size: 28px; line-height: 1; color: var(--muted); cursor: pointer;
    background: none; border: none; padding: 4px 8px; transition: color .15s;
}
.modal__close:hover { color: var(--dark); }
.modal__title { font-size: 22px; font-weight: 700; letter-spacing: -.03em; color: var(--dark); margin-bottom: 4px; }
.modal__sub { font-size: 14px; color: var(--green); font-weight: 600; margin-bottom: 20px; }
.modal__form { display: flex; flex-direction: column; gap: 12px; }
.modal__row { display: flex; gap: 12px; }
.modal__input {
    width: 100%; padding: 11px 14px; border: 1px solid var(--line); border-radius: var(--r-sm);
    font-family: var(--font); font-size: 14px; color: var(--dark); background: var(--bg);
    transition: border-color .2s; box-sizing: border-box;
}
.modal__row .modal__input { flex: 1; width: auto; min-width: 0; }
.modal__input:focus { outline: none; border-color: var(--green); }
.modal__textarea { resize: vertical; min-height: 72px; }
.modal__form .btn { align-self: stretch; padding: 12px 24px; font-size: 14px; justify-content: center; border-radius: var(--pill); }

@media (max-width: 480px) {
    .modal { padding: 28px 20px; }
    .modal__row { flex-direction: column; }
    .modal__title { font-size: 20px; }
}

/* Link to all tracks */
.cal-all-link { text-align: center; margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--line); }

/* Calendar responsive */
@media (max-width: 768px) {
    .cal-event { flex-wrap: wrap; gap: 12px; padding: 16px 0 16px 12px; border-left-width: 3px; }
    .cal-event__date { min-width: 60px; padding: 0 8px; }
    .cal-event__day { font-size: 28px; }
    .cal-event__day sup { font-size: 16px; }
    .cal-event__img { width: 80px; height: 64px; margin: 0; }
    .cal-event__body { padding-right: 8px; }
    .cal-event__title { font-size: 16px; }
    .cal-event__actions { padding: 0 12px; }
}
@media (max-width: 480px) {
    .cal-event { flex-wrap: wrap; gap: 8px; padding: 16px 0 16px 12px; border-left-width: 3px; }
    .cal-event__img { display: block; width: 100%; height: 140px; margin: 0 0 0 -12px; padding: 0; border-radius: 0; order: -1; width: calc(100% + 12px); }
    .cal-event__img img { width: 100%; height: 100%; object-fit: cover; }
    .cal-event__date { min-width: auto; flex-direction: row; gap: 6px; padding: 0; width: 100%; justify-content: flex-start; align-items: baseline; }
    .cal-event__day { font-size: 22px; }
    .cal-event__day sup { font-size: 14px; position: static; margin-left: 2px; }
    .cal-event__weekday { font-size: 12px; margin-top: 0; }
    .cal-event__monthname { font-size: 11px; }
    .cal-event__body { padding: 0 8px 0 0; width: 100%; }
    .cal-event__title { font-size: 16px; }
    .cal-event__info { flex-wrap: wrap; gap: 6px; }
    .cal-event__actions { width: 100%; padding: 4px 0 0 0; }
    .cal-event__actions .btn { width: 100%; justify-content: center; }
}

/* --- SALIDAS PAGE (filtered listing) --- */
.cal-filters { display: flex; flex-direction: column; gap: 16px; margin-bottom: 40px; }
.cal-filter-group { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.cal-filter-label { font-size: 13px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; min-width: 80px; }
.cal-filter-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.cal-chip { display: inline-flex; align-items: center; padding: 7px 18px; border-radius: var(--pill); border: 1px solid var(--line); background: var(--bg); color: var(--soft); font-size: 14px; font-weight: 500; transition: all .2s; cursor: pointer; }
.cal-chip:hover { border-color: var(--green); color: var(--dark); }
.cal-chip.active { background: var(--green); color: #fff; border-color: var(--green); }

.cal-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.cal-card { display: flex; background: var(--bg); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; transition: transform .25s, box-shadow .25s; color: var(--dark); }
.cal-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.06); }
.cal-card__img { width: 220px; min-height: 200px; flex-shrink: 0; overflow: hidden; }
.cal-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.cal-card:hover .cal-card__img img { transform: scale(1.05); }
.cal-card__body { flex: 1; padding: 20px; display: flex; flex-direction: column; gap: 6px; }
.cal-card__title { font-size: 18px; font-weight: 700; letter-spacing: -.02em; line-height: 1.2; }
.cal-card__location { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: .5px; }
.cal-card__desc { font-size: 13px; color: var(--soft); line-height: 1.5; flex: 1; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.cal-card__meta { display: flex; align-items: center; gap: 8px; margin-top: auto; }
.cal-card__duration { font-size: 12px; color: var(--muted); background: var(--sand); padding: 3px 10px; border-radius: 6px; }
.cal-card__diff { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .5px; padding: 3px 10px; border-radius: 6px; }
.cal-card__diff--principiante { background: #e8f5e9; color: #2e7d32; }
.cal-card__diff--intermedia { background: #fff3e0; color: #e65100; }
.cal-card__diff--exigente { background: #fce4ec; color: #c62828; }
.cal-card__price { margin-top: 8px; display: flex; align-items: baseline; gap: 6px; }
.cal-card__price-label { font-size: 11px; text-transform: uppercase; color: var(--muted); letter-spacing: .5px; }
.cal-card__price-value { font-size: 18px; font-weight: 700; color: var(--green); letter-spacing: -.02em; }

/* Calendario responsive */
@media (max-width: 900px) {
    .cal-grid { grid-template-columns: 1fr; }
    .cal-filter-group { flex-direction: column; align-items: flex-start; gap: 8px; }
    .cal-filter-label { min-width: auto; }
}
@media (max-width: 600px) {
    .cal-card { flex-direction: column; }
    .cal-card__img { width: 100%; min-height: 180px; height: 180px; }
}

/* --- HTMX --- */
.htmx-indicator { display: none; }
.htmx-request .htmx-indicator { display: inline-block; }
.htmx-request.htmx-indicator { display: inline-block; }

/* Form success message */
.form-success {
    text-align: center;
    padding: 24px;
    color: var(--green);
    font-weight: 600;
    font-size: 16px;
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
    .nav__links { display: none; }
    .nav__burger { display: block; }
    .nav__links.open { display: flex; flex-direction: column; position: absolute; top: 60px; left: 0; right: 0; background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 20px; gap: 14px; box-shadow: 0 12px 32px rgba(0,0,0,.08); }
    .nav__links.open a { font-size: 15px; }
    .hero__mosaic { grid-template-columns: 1fr 1fr; }
    .hero__mosaic > :nth-child(3) { display: none; }
    .hero__mosaic > :nth-child(2) img { margin-top: 0; }
    .split { grid-template-columns: 1fr; gap: 32px; }
    .split__img { order: -1; }
    .split__img img { height: 260px; }
    .feat-grid { grid-template-columns: 1fr 1fr; }
    .gal { grid-template-columns: 1fr 1fr; grid-auto-rows: 200px; }
    .gal__item--big { grid-column: span 1; }
    .gal__item--full { grid-column: span 2; }
    .rutina-grid { grid-template-columns: 1fr 1fr; max-height: none; }
    .rutina-grid__big { max-height: 280px; }
    .rutina-grid__stack { max-height: 280px; }
    .rutina-grid__text { grid-column: span 2; }
    .test-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
    .hero__mosaic { grid-template-columns: 1fr; }
    .hero__mosaic > :nth-child(2), .hero__mosaic > :nth-child(3) { display: none; }
    .hero__mosaic img { height: 220px; }
    .feat-grid { grid-template-columns: 1fr !important; }
    .gal { grid-template-columns: 1fr; }
    .gal__item--full { grid-column: span 1; }
    .rutina-grid { grid-template-columns: 1fr; max-height: none; }
    .rutina-grid__big { max-height: 240px; }
    .rutina-grid__stack { flex-direction: row; max-height: 200px; }
    .rutina-grid__text { grid-column: span 1; }
    .about-stats { flex-direction: column; gap: 16px; }
    .cf-row { grid-template-columns: 1fr; }
    .foot { flex-direction: column; gap: 8px; text-align: center; }
    .foot__logo { order: -1; }
    .hero__btns { flex-direction: column; align-items: center; }
    .cta-btns { flex-direction: column; align-items: center; }
    .cta-card { padding: 40px 24px; }
}

/* ============================================================
   VALLE CAMINA PAGE
   ============================================================ */
.vc-page { position: relative; overflow: hidden; }

/* Hero */
.vc-hero { position: relative; min-height: 85vh; height: 56.25vw; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.vc-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: 0; }
.vc-hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%); transition: opacity .3s; }
/* When hero has no text (only the button), keep the photo bright and dim only on button hover */
.vc-hero--bare .vc-hero-bg::after { opacity: 0; }
.vc-hero--bare:has(.btn:hover) .vc-hero-bg::after { opacity: 1; }
.vc-hero .container { position: relative; z-index: 1; }
.vc-hero-content { position: relative; z-index: 1; text-align: center; color: #fff; max-width: 700px; margin: 0 auto; padding: 40px 24px; }
.vc-hero-logo { width: 240px; height: auto; margin: 0 auto 30px; filter: drop-shadow(0 4px 20px rgba(0,0,0,0.3)); }
.vc-hero h1 { font-size: clamp(36px, 7vw, 72px); font-weight: 800; text-transform: uppercase; color: #fff; line-height: 1.1; margin-bottom: 16px; text-shadow: 0 2px 30px rgba(0,0,0,0.4); letter-spacing: -.03em; }
.vc-hero .btn--reto { display: inline-flex; flex-direction: column; align-items: center; gap: 4px; font-size: 18px; padding: 18px 52px; letter-spacing: 3px; font-weight: 700; background: #fff; color: var(--dark); border-radius: var(--pill); box-shadow: 0 4px 30px rgba(255,255,255,0.35); transition: transform .2s, box-shadow .2s; line-height: 1.2; animation: reto-pulse 3s ease-in-out infinite; }
.vc-hero .btn--reto:hover { transform: scale(1.06); box-shadow: 0 6px 40px rgba(255,255,255,0.5); animation: none; }
@keyframes reto-pulse { 0%, 100% { box-shadow: 0 4px 30px rgba(255,255,255,0.35); } 50% { box-shadow: 0 4px 40px rgba(255,255,255,0.55); transform: scale(1.02); } }
.btn--reto-date { font-size: 12px; letter-spacing: 4px; text-transform: uppercase; font-weight: 500; color: var(--soft); }

/* Intro */
.vc-intro { text-align: center; max-width: 800px; margin: 0 auto; }
.vc-intro h2 { font-size: clamp(28px, 5vw, 48px); font-weight: 700; color: var(--dark); margin-bottom: 20px; letter-spacing: -.03em; }
.vc-intro p { font-size: 17px; line-height: 1.7; color: var(--soft); }

/* Stats */
.vc-stats { display: flex; justify-content: center; gap: 60px; margin-top: 40px; }
.vc-stat { text-align: center; }
.vc-stat-number { font-size: 72px; font-weight: 700; color: var(--green); line-height: 1; letter-spacing: -.03em; font-variant-numeric: tabular-nums; min-width: 2ch; display: inline-block; text-align: center; }
.vc-stat-label { font-size: 14px; text-transform: uppercase; letter-spacing: 2px; color: var(--muted); margin-top: 6px; font-weight: 500; }

/* Two-column layout */
.vc-section-ondas { position: relative; overflow: hidden; }
.vc-section-ondas::before { content: ""; position: absolute; inset: 0; background: url('../images/topo-pattern.svg') repeat; background-size: 600px 600px; opacity: .45; pointer-events: none; filter: invert(1) brightness(2); z-index: 0; }
.vc-section-ondas > * { position: relative; z-index: 1; }
.vc-two-col { display: flex; align-items: center; gap: 50px; }
.vc-two-col-text { flex: 1; color: #ccc; font-size: 16px; line-height: 1.7; }
.vc-two-col-text h2 { font-size: clamp(28px, 5vw, 44px); font-weight: 700; color: #fff; margin-bottom: 16px; letter-spacing: -.03em; }
.vc-two-col-img { flex: 1; }
.vc-two-col-img img { width: 100%; border-radius: var(--r); object-fit: cover; }

/* Gallery — tile grid */
.vc-gallery { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 240px; gap: 12px; grid-auto-flow: dense; }
.vc-gallery-item { position: relative; border-radius: var(--r); overflow: hidden; }
.vc-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.vc-gallery-item:hover img { transform: scale(1.05); }
.vc-gallery-item--big { grid-column: span 2; }
.vc-gallery-cap { position: absolute; bottom: 0; left: 0; right: 0; padding: 16px; color: #fff; background: linear-gradient(transparent, rgba(0,0,0,.5)); font-size: 13px; }

/* Route maps */
.vc-section-light { background: var(--sand); }
.vc-topo { position: relative; overflow: hidden; }
.vc-topo::before { content: ''; position: absolute; inset: 0; background: url('../images/topo-pattern.svg') repeat; background-size: 600px 600px; opacity: .5; pointer-events: none; }
.vc-topo > * { position: relative; z-index: 1; }

.vc-route-maps { display: grid; grid-template-columns: 1fr; gap: 30px; max-width: 800px; margin: 0 auto; }
.vc-route-map { background: #fff; border-radius: var(--r); overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
.vc-route-map img { width: 100%; height: auto; display: block; }

/* Dark section */
.vc-section-dark { background: var(--dark); }
.vc-section-dark .vc-section-title { color: #fff; }
.vc-section-title { font-size: clamp(28px, 5vw, 48px); font-weight: 700; text-align: center; margin-bottom: 40px; color: var(--dark); letter-spacing: -.03em; }

/* Includes grid */
.vc-includes-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.vc-include-item { text-align: center; padding: 30px 20px; }
.vc-include-item i { font-size: 40px; color: var(--green); margin-bottom: 16px; display: block; }
.vc-include-item h3 { font-size: 22px; font-weight: 600; color: #fff; margin-bottom: 10px; }
.vc-include-item p { font-size: 14px; line-height: 1.6; color: #aaa; }

/* Accent section (pricing) */
.vc-section-accent { background: var(--sand); }

/* Pricing */
.vc-pricing { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; }
.vc-price-card { background: #fff; border-radius: var(--r); padding: 40px 36px; text-align: center; box-shadow: 0 2px 16px rgba(0,0,0,0.06); width: 300px; transition: transform 0.2s, box-shadow 0.2s; position: relative; }
.vc-price-card--has-image { padding-top: 0; overflow: hidden; }
.vc-price-image { margin: 0 -36px 24px; aspect-ratio: 4/3; overflow: hidden; }
.vc-price-image img, .vc-price-image picture { width: 100%; height: 100%; object-fit: cover; display: block; }
.vc-price-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,0.12); }
.vc-price-featured { background: var(--dark); color: #fff; transform: scale(1.05); box-shadow: 0 8px 40px rgba(0,0,0,0.2); }
.vc-price-featured:hover { transform: scale(1.05) translateY(-4px); box-shadow: 0 12px 50px rgba(0,0,0,0.25); }
.vc-price-featured .vc-price-badge { color: var(--green); }
.vc-price-featured .vc-price-amount { color: #fff; }
.vc-price-featured .vc-price-currency { color: rgba(255,255,255,.6); }
.vc-price-featured .vc-price-deadline { color: rgba(255,255,255,.5); }
.vc-price-tag { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--green); color: #fff; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; padding: 4px 16px; border-radius: var(--pill); z-index: 2; }
.vc-price-card--has-image .vc-price-tag { top: 12px; }
.vc-price-badge { font-size: 13px; text-transform: uppercase; letter-spacing: 2px; color: var(--green); margin-bottom: 20px; font-weight: 600; }
.vc-price-amount { font-size: 56px; font-weight: 700; color: var(--dark); line-height: 1; letter-spacing: -.03em; }
.vc-price-currency { font-size: 14px; color: var(--muted); margin-bottom: 12px; }
.vc-price-deadline { font-size: 14px; color: var(--muted); margin-bottom: 24px; }
.vc-price-btn { display: inline-flex; }

/* CTA banner — button on top, then title, then subtitle */
.vc-cta-banner { position: relative; background: linear-gradient(135deg, #2d3e52 0%, var(--green) 100%); padding: 80px 24px; text-align: center; overflow: hidden; }
.vc-cta-banner::before { content: ""; position: absolute; inset: 0; background-image: url('/static/images/valle-camina/ondas.svg'); background-repeat: no-repeat; background-position: center; background-size: 100% auto; opacity: 0.09; pointer-events: none; z-index: 0; }
.vc-cta-banner > * { position: relative; z-index: 1; }
.vc-cta-banner .btn--cta { display: inline-flex; align-items: center; justify-content: center; padding: 16px 44px; font-size: 16px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; background: #fff; color: var(--dark); border-radius: var(--pill); box-shadow: 0 4px 24px rgba(0,0,0,0.2); transition: transform .2s, box-shadow .2s; margin-bottom: 28px; }
.vc-cta-banner .btn--cta:hover { transform: translateY(-2px) scale(1.04); box-shadow: 0 6px 32px rgba(0,0,0,0.3); }
.vc-cta-banner h2 { font-size: clamp(28px, 5vw, 48px); font-weight: 700; color: #fff; margin-bottom: 10px; letter-spacing: -.03em; }
.vc-cta-banner p { font-size: 17px; color: rgba(255,255,255,0.85); margin: 0; max-width: 720px; margin-left: auto; margin-right: auto; }

/* Mountain silhouette with the "ondas" pattern (single combined SVG) */
.vc-mountain-wave {
    position: relative;
    width: 100%;
    background: #fff;
    overflow: hidden;
    margin: 0;
    pointer-events: none;
}
.vc-mountain-wave__img {
    display: block;
    width: 100%;
    height: auto;
}
@media (max-width: 760px) {
    .vc-mountain-wave__img { min-height: 140px; object-fit: cover; }
}

/* FAQ — left aligned */
.vc-faq { max-width: 860px; }
.vc-section-title--left { text-align: left; margin-bottom: 24px; }
.vc-faq__content h3,
.vc-faq__content h2 { font-size: clamp(20px, 2.5vw, 26px); font-weight: 700; color: var(--dark); margin: 28px 0 10px; }
.vc-faq__content h3:first-child,
.vc-faq__content h2:first-child { margin-top: 0; }
.vc-faq__content p { font-size: 16px; line-height: 1.65; color: var(--soft); margin-bottom: 14px; }
.vc-faq__content strong { color: var(--dark); font-weight: 700; }
.vc-faq__content p:has(> strong:only-child) { font-size: clamp(18px, 2.2vw, 22px); margin-top: 24px; margin-bottom: 8px; }
.vc-faq__content p:has(> strong:only-child) strong { font-weight: 700; }

/* Qué llevar — 4-column grid with icons (matches homepage .feat style) */
.vc-bring-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; max-width: 1100px; margin: 0 auto; }
.vc-bring-col { background: var(--bg); border: 1px solid var(--line); border-radius: var(--r); padding: 28px 22px; transition: transform .25s, box-shadow .25s; text-align: left; }
.vc-bring-col:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.06); }
.vc-bring-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--green-soft); color: var(--green); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.vc-bring-icon svg { width: 22px; height: 22px; display: block; stroke: currentColor; }
.vc-bring-col__title { font-size: 15px; font-weight: 600; color: var(--dark); margin: 0 0 6px; line-height: 1.25; }
.vc-bring-col__content { font-size: 13px; line-height: 1.5; color: var(--soft); }
.vc-bring-col__content p { margin-bottom: 4px; }
.vc-bring-col__content p:last-child { margin-bottom: 0; }
.vc-bring-col__content ul,
.vc-bring-col__content ol { margin: 0 !important; padding: 0 !important; list-style: none !important; }
.vc-bring-col__content li { position: relative; padding-left: 18px; margin-bottom: 4px; list-style: none !important; line-height: 1.5; }
.vc-bring-col__content li:last-child { margin-bottom: 0; }
.vc-bring-col__content ul li::before { content: '✓'; position: absolute; left: 0; top: 0; color: var(--green, #3a7d44); font-weight: 700; font-size: 13px; line-height: 1.5; }
.vc-bring-col__content ol { counter-reset: brli; }
.vc-bring-col__content ol li { counter-increment: brli; }
.vc-bring-col__content ol li::before { content: counter(brli) '.'; position: absolute; left: 0; top: 0; color: var(--green, #3a7d44); font-weight: 700; font-size: 13px; line-height: 1.5; }
@media (max-width: 1024px) { .vc-bring-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; } }
@media (max-width: 560px) { .vc-bring-grid { grid-template-columns: 1fr; gap: 12px; } }

/* CKEditor rich-text output — inherits color/font-size from parent, inline styles from editor take precedence */
.vc-rich-text { font-size: 17px; line-height: 1.7; }
.vc-rich-text p { margin-bottom: 14px; }
.vc-rich-text p:last-child { margin-bottom: 0; }
.vc-rich-text h2 { font-size: clamp(24px, 4vw, 36px); font-weight: 700; margin: 30px 0 14px; }
.vc-rich-text h3 { font-size: clamp(20px, 3vw, 28px); font-weight: 600; margin: 24px 0 10px; }
.vc-rich-text h4 { font-size: 20px; font-weight: 600; margin: 20px 0 8px; }
.vc-rich-text ul,
.vc-rich-text ol { margin: 0 0 16px 24px; padding-left: 20px; }
.vc-rich-text ul { list-style: disc; }
.vc-rich-text ol { list-style: decimal; }
.vc-rich-text li { margin-bottom: 6px; line-height: 1.6; }
.vc-rich-text strong { font-weight: 700; }
.vc-rich-text a { text-decoration: underline; }

/* VC Edition dynamic content (CKEditor output) */
.vc-edition-content { max-width: 900px; margin: 0 auto; font-size: 17px; line-height: 1.7; color: var(--soft); }
.vc-edition-content h2 { font-size: clamp(28px, 5vw, 44px); font-weight: 700; color: var(--dark); margin: 40px 0 16px; letter-spacing: -.03em; }
.vc-edition-content h3 { font-size: clamp(22px, 3vw, 32px); font-weight: 600; color: var(--dark); margin: 30px 0 12px; }
.vc-edition-content p { margin-bottom: 16px; }
.vc-edition-content img { max-width: 100%; height: auto; border-radius: var(--r); display: block; margin: 20px 0; }
.vc-edition-content figure { margin: 20px 0; }
.vc-edition-content figure img { margin: 0; }
.vc-edition-content figcaption { font-size: 14px; color: var(--muted); margin-top: 8px; text-align: center; }

/* VC Registration Form */
.vc-reg-form { max-width: 600px; margin: 40px auto 0; background: rgba(0,0,0,0.04); border: 1px solid var(--line); border-radius: var(--r); padding: 32px; }
.vc-reg-form h3 { text-align: center; color: var(--dark); margin-bottom: 24px; font-size: 20px; font-weight: 600; }
.vc-form-row { display: flex; gap: 16px; margin-bottom: 16px; }
.vc-form-field { flex: 1; display: flex; flex-direction: column; }
.vc-form-field label { color: var(--soft); font-size: 13px; margin-bottom: 6px; font-weight: 500; }
.vc-form-field input[type="text"],
.vc-form-field input[type="email"],
.vc-form-field input[type="tel"] { padding: 10px 14px; border: 1px solid var(--line); border-radius: 12px; background: var(--bg); color: var(--dark); font-size: 15px; outline: none; transition: border-color 0.2s; font-family: var(--font); }
.vc-form-field input:focus { border-color: var(--dark); }
.vc-form-field input::placeholder { color: var(--muted); }
.vc-field-error input { border-color: #e53e3e !important; }
.vc-error { color: #e53e3e; font-size: 12px; margin-top: 4px; }
.vc-plan-field { margin-bottom: 24px; }
.vc-plan-options { display: flex; gap: 16px; }
.vc-plan-option { flex: 1; display: flex; align-items: center; gap: 8px; padding: 12px 16px; border: 1px solid var(--line); border-radius: 12px; cursor: pointer; transition: all 0.2s; color: var(--soft); font-size: 14px; }
.vc-plan-option:hover { border-color: var(--dark); }
.vc-plan-option input[type="radio"] { accent-color: var(--green); }
.vc-plan-option input[type="radio"]:checked + span { color: var(--dark); font-weight: 600; }
.vc-submit-btn { width: 100%; margin-top: 8px; }
.vc-form-success, .vc-form-closed { text-align: center; padding: 60px 20px; color: var(--dark); }
.vc-form-success i, .vc-form-closed i { font-size: 48px; margin-bottom: 16px; display: block; color: var(--green); }
.vc-form-success h3, .vc-form-closed h3 { font-size: 24px; font-weight: 600; margin-bottom: 12px; }
.vc-form-success p, .vc-form-closed p { font-size: 16px; color: var(--soft); }

/* VC Includes custom (CKEditor) */
.vc-includes-custom { color: #ccc; font-size: 16px; line-height: 1.7; }
.vc-includes-custom h3 { font-size: 24px; font-weight: 600; color: #fff; margin: 24px 0 8px; }
.vc-includes-custom h3:first-child { margin-top: 0; }
.vc-includes-custom p { margin-bottom: 12px; color: #bbb; }
.vc-includes-custom img { max-width: 100%; height: auto; border-radius: 8px; margin: 12px 0; }
.vc-includes-custom ul, .vc-includes-custom ol { padding-left: 24px; margin-bottom: 12px; color: #bbb; }
.vc-includes-custom li { margin-bottom: 6px; }

/* VC Section base — contained width with padding */
.vc-section { max-width: 1080px; margin: 0 auto; padding: 80px 24px; }

/* Full-width bg variants override max-width and use inner containment */
.vc-section.vc-section-dark,
.vc-section.vc-section-light,
.vc-section.vc-section-accent { max-width: none; padding: 80px 24px; }
.vc-section.vc-section-dark > *,
.vc-section.vc-section-light > *,
.vc-section.vc-section-accent > * { max-width: 1080px; margin-left: auto; margin-right: auto; }

/* Collapse vertical padding when two same-background sections touch */
.vc-section:not(.vc-section-dark):not(.vc-section-light):not(.vc-section-accent) + .vc-section:not(.vc-section-dark):not(.vc-section-light):not(.vc-section-accent) { padding-top: 0; }
.vc-section-dark + .vc-section-dark,
.vc-section-light + .vc-section-light,
.vc-section-accent + .vc-section-accent { padding-top: 0; }

/* VC Responsive */
@media (max-width: 768px) {
    .vc-hero { min-height: 80vh; height: auto; }
    .vc-hero-logo { width: 180px; }
    .vc-stats { gap: 30px; }
    .vc-stat-number { font-size: 52px; }
    .vc-two-col { flex-direction: column; gap: 30px; }
    .vc-gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 200px; }
    .vc-gallery-item--big { grid-column: span 1; }
    .vc-includes-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .vc-pricing { flex-direction: column; align-items: center; }
    .vc-price-featured { transform: none; }
    .vc-price-featured:hover { transform: translateY(-4px); }
    .vc-price-card { width: 100%; max-width: 320px; }
    .vc-cta-main-btn { margin-right: 0; margin-bottom: 12px; }
    .vc-form-row { flex-direction: column; gap: 12px; }
    .vc-reg-form { padding: 24px 16px; }
    .vc-plan-options { flex-direction: column; gap: 10px; }
}
@media (max-width: 480px) {
    .vc-hero { min-height: 70vh; }
    .vc-hero-logo { width: 140px; }
    .vc-hero .btn--reto { font-size: 15px; padding: 14px 32px; letter-spacing: 2px; }
    .btn--reto-date { font-size: 11px; letter-spacing: 2px; }
    .vc-stats { gap: 20px; }
    .vc-stat-number { font-size: 40px; }
    .vc-stat-label { font-size: 12px; }
    .vc-gallery { grid-template-columns: 1fr; }
    .vc-includes-grid { grid-template-columns: 1fr; }
    .vc-cta-banner { padding: 50px 0; }
    .vc-cta-banner .custom-button { display: flex; margin: 0 auto 12px; max-width: 280px; }
}

/* ============================================================
   BLOG PAGES
   ============================================================ */
.blog-container { max-width: 1080px; margin: 0 auto; padding: 0 0 40px; display: flex; flex-direction: column; gap: 30px; }

/* Category filter tags */
.blog-categories { display: flex; flex-wrap: wrap; gap: 10px; width: 100%; }
.blog-category-tag { display: inline-flex; align-items: center; padding: 8px 20px; border-radius: var(--pill); border: 1px solid var(--line); background: var(--bg); color: var(--soft); font-size: 14px; font-weight: 500; transition: all 0.2s ease; cursor: pointer; }
.blog-category-tag:hover { border-color: var(--green); color: var(--dark); }
.blog-category-tag.active { background: var(--green); color: #fff; border-color: var(--green); }

/* Hero post */
.blog-hero-post { display: flex; width: 100%; background: var(--bg); border-radius: var(--r); overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,0.06); transition: box-shadow 0.3s, transform 0.2s; color: var(--dark); }
.blog-hero-post:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.12); transform: translateY(-3px); }
.blog-hero-image { width: 55%; min-height: 340px; overflow: hidden; flex-shrink: 0; }
.blog-hero-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.blog-hero-post:hover .blog-hero-image img { transform: scale(1.05); }
.blog-hero-content { flex: 1; padding: 32px; display: flex; flex-direction: column; gap: 12px; justify-content: center; }
.blog-hero-content h2 { font-size: 32px; font-weight: 700; color: var(--dark); margin: 0; letter-spacing: -.03em; line-height: 1.1; }
.blog-hero-description { font-size: 15px; line-height: 1.6; color: var(--soft); }
.blog-hero-read { font-size: 15px; font-weight: 600; color: var(--green); margin-top: 8px; transition: color 0.2s; }
.blog-hero-post:hover .blog-hero-read { color: #2d6b35; }

/* Blog grid */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; width: 100%; }

/* Blog card */
.blog-card { display: flex; flex-direction: column; background: var(--bg); border-radius: var(--r-sm); overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.06); transition: box-shadow 0.3s, transform 0.2s; color: var(--dark); }
.blog-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.12); transform: translateY(-3px); }
.blog-card-image { width: 100%; height: 200px; overflow: hidden; }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.blog-card:hover .blog-card-image img { transform: scale(1.05); }
.blog-card-content { padding: 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.blog-card-category { display: inline-block; padding: 3px 10px; background: var(--green-soft); color: var(--green); border-radius: 6px; font-size: 11px; letter-spacing: 1px; text-transform: uppercase; font-weight: 600; align-self: flex-start; }
.blog-card-title { font-size: 20px; font-weight: 600; color: var(--dark); margin: 0; line-height: 1.2; }
.blog-card-description { font-size: 14px; line-height: 1.5; color: var(--soft); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; text-overflow: ellipsis; }
.blog-card-date { font-size: 12px; color: var(--muted); margin-top: auto; }

/* Blog post detail page */
.blog-post-article { max-width: 800px; width: 100%; margin: 0 auto; }
.blog-post-cover { width: 100%; border-radius: var(--r); overflow: hidden; margin-bottom: 24px; }
.blog-post-cover img { width: 100%; height: auto; display: block; }
.blog-post-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.blog-post-body { font-size: 16px; line-height: 1.8; color: var(--soft); }
.blog-post-body h2, .blog-post-body h3, .blog-post-body h4 { color: var(--dark); margin-top: 32px; margin-bottom: 12px; font-weight: 700; }
.blog-post-body p { margin-bottom: 16px; }
.blog-post-body img { max-width: 100%; height: auto; border-radius: var(--r-sm); margin: 16px 0; }
.blog-post-body iframe { max-width: 100%; border: 0; border-radius: var(--r-sm); margin: 16px auto; display: block; }
.blog-post-body .video-wrap { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; border-radius: var(--r-sm); margin: 16px 0; }
.blog-post-body .video-wrap iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.blog-cta-link { color: var(--green); font-weight: 600; text-decoration: none; cursor: pointer; transition: color .2s; }
.blog-cta-link:hover { color: var(--dark); }
.blog-lead-success { text-align: center; color: var(--green); font-weight: 600; padding: 12px 0; }
.blog-post-back { margin-top: 40px; padding-top: 20px; border-top: 1px solid var(--line); }
.blog-back-link { font-size: 15px; font-weight: 600; color: var(--green); transition: color 0.2s; }
.blog-back-link:hover { color: #2d6b35; }

/* Related posts */
.blog-related { width: 100%; margin-top: 40px; }
.blog-related h2 { font-size: 28px; font-weight: 700; color: var(--dark); margin-bottom: 20px; letter-spacing: -.03em; }

/* Pagination */
.pagination { display: flex; justify-content: center; align-items: center; gap: 8px; padding: 20px 0; }
.pagination-numbers { display: flex; align-items: center; gap: 4px; }
.pagination-btn { display: inline-flex; align-items: center; justify-content: center; min-width: 40px; height: 40px; padding: 0 12px; border-radius: 12px; font-size: 15px; color: var(--soft); background: var(--bg); border: 1px solid var(--line); transition: all 0.2s; cursor: pointer; font-weight: 500; }
.pagination-btn:hover { background: var(--sand); border-color: var(--muted); color: var(--dark); }
.pagination-current { background: var(--green); color: #fff; border-color: var(--green); font-weight: 600; cursor: default; }
.pagination-current:hover { background: var(--green); color: #fff; border-color: var(--green); }
.pagination-prev, .pagination-next { font-weight: 600; }
.pagination-dots { display: inline-flex; align-items: center; justify-content: center; min-width: 30px; height: 40px; color: var(--muted); font-size: 16px; }

/* Tracks empty */
.tracks-empty { text-align: center; padding: 60px 20px; color: var(--soft); font-size: 16px; }

/* Blog responsive */
@media (max-width: 1024px) {
    .blog-hero-image { width: 50%; min-height: 280px; }
    .blog-hero-content h2 { font-size: 28px; }
}
@media (max-width: 768px) {
    .blog-hero-post { flex-direction: column; }
    .blog-hero-image { width: 100%; min-height: 220px; height: 220px; }
    .blog-hero-content { padding: 20px; }
    .blog-hero-content h2 { font-size: 26px; }
    .blog-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .blog-card-image { height: 160px; }
    .blog-card-title { font-size: 18px; }
    .blog-post-article { max-width: 100%; }
    .pagination { flex-wrap: wrap; gap: 6px; }
    .pagination-btn { min-width: 36px; height: 36px; padding: 0 8px; font-size: 14px; }
}
@media (max-width: 480px) {
    .blog-grid { grid-template-columns: 1fr; gap: 16px; }
    .blog-hero-image { height: 180px; min-height: 180px; }
    .blog-hero-content h2 { font-size: 24px; }
    .blog-hero-content { padding: 16px; gap: 8px; }
    .blog-card-content { padding: 14px; }
    .blog-categories { gap: 8px; }
    .blog-category-tag { padding: 6px 14px; font-size: 13px; }
}

/* --- TRACK DETAILS V2 --- */

/* Hero */
.td-hero {
    position: relative; width: 100%; height: 60vh; min-height: 380px; max-height: 520px;
    overflow: hidden; display: flex; align-items: flex-end;
}
.td-hero__bg { position: absolute; inset: 0; }
.td-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.td-hero__bg::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.65) 0%, rgba(0,0,0,.15) 60%, rgba(0,0,0,.05) 100%);
}
.td-hero__content {
    position: relative; z-index: 1; padding: 40px 24px 48px;
    max-width: 1080px; width: 100%; margin: 0 auto;
}
.td-hero__content h1 {
    font-size: 48px; font-weight: 800; color: #fff; letter-spacing: -.04em;
    line-height: 1.05; margin-top: 10px; text-shadow: 0 2px 12px rgba(0,0,0,.3);
}
.td-hero__location { font-size: 15px; color: rgba(255,255,255,.8); margin-top: 8px; }
.chip--diff {
    font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
    padding: 5px 14px; border-radius: var(--pill); display: inline-block;
}
.chip--principiante { background: #e8f5e9; color: #2e7d32; }
.chip--intermedia { background: #fff3e0; color: #e65100; }
.chip--exigente { background: #fce4ec; color: #c62828; }
.chip--variable { background: rgba(255,255,255,.2); color: rgba(255,255,255,.7); }

/* Gallery */
.td-gallery { margin: -40px auto 0; position: relative; z-index: 2; max-width: 1080px; }
.td-swiper-main { border-radius: var(--r); overflow: hidden; }
.td-swiper-main img { width: 100%; height: 420px; object-fit: cover; display: block; }
.td-swiper-main .swiper-button-prev,
.td-swiper-main .swiper-button-next {
    color: #fff; width: 40px; height: 72px; margin: 0; top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,.5); border: 1.5px solid rgba(255,255,255,.35);
    backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
    transition: background .2s, border-color .2s;
}
.td-swiper-main .swiper-button-prev {
    left: 0; border-left: none;
    border-radius: 0 12px 12px 0;
}
.td-swiper-main .swiper-button-next {
    right: 0; border-right: none;
    border-radius: 12px 0 0 12px;
}
.td-swiper-main .swiper-button-prev:hover,
.td-swiper-main .swiper-button-next:hover { background: rgba(0,0,0,.7); border-color: rgba(255,255,255,.6); }
.td-swiper-main .swiper-button-prev::after,
.td-swiper-main .swiper-button-next::after { font-size: 22px; font-weight: 900; }
.td-swiper-thumbs { margin-top: 10px; }
.td-swiper-thumbs .swiper-slide {
    border-radius: var(--r-sm); overflow: hidden; opacity: .5;
    transition: opacity .2s; cursor: pointer; height: 72px;
}
.td-swiper-thumbs .swiper-slide-thumb-active { opacity: 1; }
.td-swiper-thumbs img { width: 100%; height: 100%; object-fit: cover; }

/* Sections */
.td-section {
    padding: 32px 0;
}
.td-section__title {
    font-size: clamp(24px, 3.5vw, 40px); font-weight: 700; letter-spacing: -.03em; color: var(--dark);
    line-height: 1.15; margin-bottom: 20px;
}
.td-section__sub { font-size: 17px; color: var(--soft); margin-bottom: 24px; }
.td-section--tight-top { padding-top: 12px; }
.td-section--tight-bottom { padding-bottom: 12px; }
.td-section--highlight {
    background: var(--sand); margin-left: -24px; margin-right: -24px;
    padding-left: 24px; padding-right: 24px; border-radius: var(--r);
}
.td-section--highlight + .td-section--highlight { margin-top: 16px; }
.td-section--topo {
    position: relative; overflow: hidden;
}
.td-section--topo::before {
    content: ''; position: absolute; inset: 0;
    background: url('../images/topo-pattern.svg') repeat;
    background-size: 600px 600px; opacity: .35; pointer-events: none;
}
.td-section--topo > * { position: relative; z-index: 1; }
.td-section--cta {
    text-align: center; color: #fff;
    margin-left: -24px; margin-right: -24px;
    padding: 48px 24px; border-radius: var(--r);
    background: var(--dark);
    position: relative; overflow: hidden;
}
.td-section--cta::before {
    content: ''; position: absolute; inset: 0;
    background: url('../images/frailejones-tile.svg') repeat;
    background-size: 300px 300px; opacity: .15; pointer-events: none;
}
.td-section--cta > * { position: relative; z-index: 1; }
.td-section--cta .td-section__title { color: #fff; }
.td-section--cta .td-section__sub { color: rgba(255,255,255,.7); }

/* Prose (CKEditor content) */
.td-prose { font-size: 17px; line-height: 1.75; color: var(--soft); }
.td-prose h2, .td-prose h3, .td-prose h4 { color: var(--dark); margin-top: 20px; margin-bottom: 8px; font-weight: 700; }
.td-prose p { margin-bottom: 12px; }
.td-prose ul, .td-prose ol { margin-bottom: 12px; padding-left: 20px; }
.td-prose li { margin-bottom: 4px; }
.td-prose img { max-width: 100%; border-radius: var(--r-sm); margin: 12px 0; }
.td-prose strong { color: var(--dark); }
.td-prose blockquote {
    border-left: 3px solid var(--green); margin: 16px 0; padding: 4px 0 4px 20px;
    font-style: italic; color: var(--dark);
}
.td-prose .td-highlight-phrase,
.td-highlight-phrase {
    font-size: clamp(22px, 3.5vw, 32px); font-style: italic; font-weight: 700;
    color: var(--green); line-height: 1.6; text-align: center;
    padding: 24px 0;
}
.td-prose .td-highlight-phrase-flush,
.td-highlight-phrase-flush {
    font-size: clamp(22px, 3.5vw, 32px); font-style: italic; font-weight: 700;
    color: var(--green); line-height: 1.6; text-align: center;
    padding: 24px 0 0 0;
}

/* Stats grid */
.td-stats {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 16px;
}
.td-stat {
    background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-sm);
    padding: 16px; display: flex; flex-direction: column; gap: 6px;
    text-align: center; align-items: center;
}
.td-stat__label { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); font-weight: 600; }
.td-stat__value { font-size: 20px; font-weight: 700; color: var(--dark); letter-spacing: -.02em; }
.td-stat__diff { font-size: 15px; font-weight: 700; padding: 4px 12px; border-radius: 8px; display: inline-block; width: fit-content; }
.td-stat__diff--principiante { background: #e8f5e9; color: #2e7d32; }
.td-stat__diff--intermedia { background: #fff3e0; color: #e65100; }
.td-stat__diff--exigente { background: #fce4ec; color: #c62828; }
.td-stat__diff--variable { background: #f0f0f0; color: #999; }

/* Weather (inside td-stats grid) */
.td-stat__label-sub { font-size: 6px; font-weight: 400; letter-spacing: 0; opacity: .7; display: inline; }
.td-stat--full { grid-column: 1 / -1; padding: 8px 0 0; }
.td-stat--full .td-stat__label { font-size: 12px; color: var(--muted); font-style: italic; }
.td-stat--weather { flex-direction: column; gap: 0; }
.td-stat--weather__body { display: flex; align-items: center; gap: 2px; }
.td-stat--weather__body img { width: 72px; height: 72px; flex-shrink: 0; margin: -8px -4px; }
.td-stat--weather .td-stat__value { font-size: 16px; }
.td-stat--weather__info { display: flex; flex-direction: column; }
.td-stat--weather__desc { font-size: 6px; font-weight: 400; letter-spacing: 0; opacity: .7; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 80px; }
.td-stat--weather__rain { font-size: 6px; font-weight: 400; letter-spacing: 0; opacity: .7; color: #1976d2; display: flex; align-items: center; gap: 2px; }

/* Map */
.td-map-row { display: flex; gap: 20px; }
.td-map-wrap { flex: 1; border-radius: var(--r); overflow: hidden; min-width: 0; position: relative; z-index: 0; }
.td-map { width: 100%; height: 340px; }
.td-chart-wrap { flex: 1; border-radius: var(--r-sm); overflow: hidden; background: var(--sand); padding: 16px; min-width: 0; display: flex; align-items: center; position: relative; }
.td-map-wrap.is-loading, .td-chart-wrap.is-loading { background: #e8e4df; }
.td-map-wrap.is-loading::before, .td-chart-wrap.is-loading::before {
    content: ''; position: absolute; top: 50%; left: 50%; z-index: 6; transform: translate(-50%, -50%);
    width: 32px; height: 32px; border-radius: 50%;
    border: 3px solid #ccc; border-top-color: var(--dark);
    animation: spin .8s linear infinite;
}
.td-map-wrap.is-loading::after, .td-chart-wrap.is-loading::after {
    content: 'Cargando...'; position: absolute; top: calc(50% + 28px); left: 50%; z-index: 6;
    transform: translateX(-50%); font-size: .8rem; color: var(--muted);
}
.td-map-wrap.is-loading .td-map { background: #e8e4df; }
@keyframes spin { to { transform: translate(-50%, -50%) rotate(360deg); } }
.td-chart-wrap canvas { width: 100% !important; height: auto !important; }

/* Pricing */
.td-pricing { display: flex; gap: 20px; flex-wrap: wrap; margin-bottom: 16px; }
.td-price-card {
    min-width: 200px; background: var(--bg); border: 1px solid var(--line);
    border-radius: var(--r-sm); padding: 20px; display: flex; flex-direction: column; gap: 6px;
}
.td-price-card__label { font-size: 13px; color: var(--muted); text-transform: uppercase; letter-spacing: .5px; font-weight: 600; }
.td-price-card__value { font-size: 28px; font-weight: 800; color: var(--green); letter-spacing: -.03em; }
.td-pricing__note { font-size: 14px; color: var(--soft); margin-bottom: 16px; }
.td-payment { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line); }

/* Form */
.td-form { max-width: 560px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.td-form__row { display: flex; gap: 12px; }
.td-form__input {
    flex: 1; padding: 12px 16px; border: 1px solid var(--line); border-radius: var(--r-sm);
    font-family: var(--font); font-size: 14px; color: var(--dark); background: var(--bg);
    transition: border-color .2s;
}
.td-form__input:focus { outline: none; border-color: var(--green); }
.td-form__textarea { resize: vertical; min-height: 80px; }
.td-form .btn { align-self: center; padding: 12px 32px; font-size: 15px; }
.td-section--cta .td-form__input {
    background: rgba(30,30,30,.85); border-color: rgba(255,255,255,.15);
    color: #fff;
}
.td-section--cta .td-form__input::placeholder { color: rgba(255,255,255,.45); }
.td-section--cta .td-form__input:focus { border-color: var(--green); background: rgba(30,30,30,.9); }

/* Back links */
.td-back {
    display: flex; justify-content: space-between; align-items: center;
    padding: 32px 0 60px; gap: 16px;
}
.td-back__link { font-size: 14px; font-weight: 600; color: var(--green); transition: color .15s; }
.td-back__link:hover { color: #2d6b35; }

/* Track details responsive */
@media (max-width: 768px) {
    .td-hero { height: 50vh; min-height: 300px; }
    .td-hero__content h1 { font-size: 32px; }
    .td-swiper-main img { height: 280px; }
    .td-stats { grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: 10px; }
    .td-stat { padding: 12px; }
    .td-stat__value { font-size: 18px; }
    .td-stat--weather__body img { width: 40px; height: 40px; }
    .td-map-row { flex-direction: column; }
    .td-map { height: 260px; }
    .td-pricing { flex-direction: column; }
    .td-form__row { flex-direction: column; }
    .td-section--highlight { margin-left: -24px; margin-right: -24px; padding-left: 24px; padding-right: 24px; }
    .td-section--cta { margin-left: -24px; margin-right: -24px; padding: 36px 24px; }
}
@media (max-width: 480px) {
    .td-hero { height: 45vh; min-height: 260px; }
    .td-hero__content h1 { font-size: 26px; }
    .td-hero__content { padding: 24px 16px 32px; }
    .td-gallery { margin-top: -24px; }
    .td-swiper-main img { height: 220px; }
    .td-swiper-thumbs .swiper-slide { height: 52px; }
    .td-section { padding: 28px 0; }
    .td-section__title { font-size: clamp(20px, 5vw, 28px); }
    .td-section--highlight { margin-left: -24px; margin-right: -24px; padding-left: 24px; padding-right: 24px; }
    .td-section--cta { margin-left: -24px; margin-right: -24px; padding: 36px 24px; border-radius: 0; }
    .td-price-card__value { font-size: 24px; }
    .td-back { flex-direction: column; align-items: flex-start; }
    .td-hero__next { font-size: 11px; padding: 7px 8px 7px 10px; gap: 6px; }
    .td-hero__next-icon { font-size: 13px; }
    .td-hero__next-text br { display: none; }
    .td-hero__next-date { display: block; line-height: 1.2; }
    .td-hero__next .btn--sm { font-size: 13px; padding: 10px 18px; }
}

/* --- TRACK LANDING NEW SECTIONS --- */

/* Hero subtitle + CTA */
.td-hero__subtitle {
    font-size: clamp(16px, 2.5vw, 22px); color: rgba(255,255,255,.85);
    margin-top: 10px; line-height: 1.4; max-width: 600px;
}
.td-hero__next {
    margin-top: 18px; display: inline-flex; align-items: center; gap: 14px;
    background: rgba(255,255,255,.2); backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.3);
    padding: 10px 12px 10px 24px; border-radius: var(--pill);
    font-size: 18px; font-weight: 600; color: #fff; letter-spacing: .01em;
}
.td-hero__next-label { display: inline-flex; align-items: center; gap: 8px; }
.td-hero__next-icon { font-size: 22px; }
.td-hero__next-text { line-height: 1.3; }
.td-hero__next-date { font-size: .7em; font-weight: 400; opacity: .85; }
.td-hero__next .btn--sm { white-space: nowrap; }
.td-hero__cta {
    margin-top: 20px; display: inline-block;
    font-size: 16px; padding: 14px 36px; font-weight: 700;
    border-radius: var(--pill); letter-spacing: .02em;
}

/* Attention grabber */
.td-attention {
    padding: 24px; text-align: center;
}
.td-attention p {
    font-size: clamp(22px, 3.5vw, 32px); font-style: italic; font-weight: 700;
    color: var(--green); line-height: 1.6; max-width: 720px; margin: 0 auto;
}

/* Narrative */
.td-narrative {
    border-bottom: 1px solid var(--line);
}
.td-narrative .td-prose {
    max-width: 720px;
}

/* CTA band */
.td-cta-band {
    display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap;
    background: var(--green); color: #fff;
    margin: 16px -24px; padding: 32px 24px; border-radius: var(--r);
    position: relative; overflow: hidden;
}
.td-cta-band::before {
    content: ''; position: absolute; inset: 0;
    background: url('../images/forest-pattern.svg') repeat;
    background-size: 120px 120px; opacity: .5; pointer-events: none;
}
.td-cta-band > * { position: relative; z-index: 1; }
.td-cta-band__text {
    font-size: clamp(18px, 2.5vw, 24px); font-weight: 700;
}
.btn--white {
    background: #fff; color: var(--green); border: none;
    padding: 12px 32px; border-radius: var(--pill); font-weight: 700; font-size: 15px;
    transition: background .2s, transform .15s;
}
.btn--white:hover { background: #f0f0f0; transform: translateY(-1px); }

/* FAQ */
.td-faq h2, .td-faq h3 {
    color: var(--dark); font-weight: 700; margin-top: 24px; margin-bottom: 6px;
    font-size: 18px;
}
.td-faq h2:first-child, .td-faq h3:first-child { margin-top: 0; }

/* Testimonials */
.td-testimonials {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}
.td-testimonial {
    background: var(--sand); border-radius: var(--r); padding: 28px;
    display: flex; flex-direction: column; gap: 16px;
}
.td-testimonial__photo {
    width: 56px; height: 56px; border-radius: 50%; object-fit: cover;
}
.td-testimonial__photo--placeholder {
    background: var(--line); display: flex; align-items: center; justify-content: center;
    color: var(--muted);
}
.td-testimonial__text {
    font-size: 16px; line-height: 1.65; color: var(--soft);
    font-style: italic; margin: 0; border: none; padding: 0;
}
.td-testimonial__author {
    display: flex; flex-direction: column; gap: 2px;
}
.td-testimonial__author strong { font-size: 15px; color: var(--dark); }
.td-testimonial__author span { font-size: 13px; color: var(--muted); }

/* Meeting point */
.td-meeting h2, .td-meeting h3 { font-size: 18px; margin-top: 16px; }
.td-meeting h2:first-child, .td-meeting h3:first-child { margin-top: 0; }

/* Landing responsive additions */
@media (max-width: 768px) {
    .td-cta-band { margin-left: -16px; margin-right: -16px; padding: 32px 16px; flex-direction: column; text-align: center; }
    .td-testimonials { grid-template-columns: 1fr; }
    .td-attention { padding: 20px 16px; }
}
@media (max-width: 480px) {
    .td-hero__cta { font-size: 14px; padding: 12px 28px; }
    .td-cta-band { padding: 24px 16px; }
    .td-testimonial { padding: 20px; }
}
