:root {
  --black: #050505;
  --panel: #0b0c0d;
  --panel-2: #101112;
  --white: #f7f7f5;
  --muted: #b9b9b9;
  --line: #323436;
  --red: #f10c18;
  --max: 1448px;
  --sans: "Arial Narrow", "Roboto Condensed", Impact, Arial, sans-serif;
  --body: Arial, Helvetica, sans-serif;
  --script: "Segoe Print", "Bradley Hand", cursive;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--black); }
body {
  margin: 0;
  color: var(--white);
  background:
    radial-gradient(circle at 20% 15%, rgba(255,255,255,.035), transparent 28%),
    repeating-linear-gradient(135deg, rgba(255,255,255,.012) 0 1px, transparent 1px 7px),
    #050505;
  font-family: var(--body);
  line-height: 1.35;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }
.shell { width: min(100%, var(--max)); margin: 0 auto; overflow: hidden; background: #080909; }
.site-header {
  height: 72px;
  display: grid;
  grid-template-columns: 155px 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 0 42px;
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid #282828;
  background: rgba(4,5,6,.96);
  backdrop-filter: blur(12px);
}
.brand { display: inline-flex; flex-direction: column; width: max-content; font-family: var(--sans); }
.brand-kanji { font-size: 38px; font-weight: 900; letter-spacing: -5px; line-height: .82; }
.brand-name { color: var(--red); font-size: 9px; font-weight: 900; margin-top: 6px; }
.main-nav { display: flex; justify-content: center; gap: clamp(18px, 2.6vw, 42px); height: 100%; }
.main-nav a { display: grid; place-items: center; position: relative; font-size: 14px; white-space: nowrap; }
.main-nav a::after { content: ""; position: absolute; left: 50%; bottom: 17px; width: 0; height: 3px; background: var(--red); transform: translateX(-50%); transition: width .2s ease; }
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }
.header-cta, .btn-red, .btn-outline, .text-link {
  display: inline-flex; align-items: center; justify-content: center; gap: 11px;
  min-height: 42px; padding: 0 24px; text-transform: uppercase; font-family: var(--sans); font-weight: 800; letter-spacing: .02em;
}
.header-cta, .btn-red { background: var(--red); border: 1px solid var(--red); color: #fff; transition: transform .22s ease, filter .22s ease, box-shadow .22s ease; }
.btn-outline { border: 1px solid #b9b9b9; background: rgba(0,0,0,.35); transition: transform .22s ease, border-color .22s ease, background .22s ease; }
.text-link { color: var(--red); padding: 0; justify-content: flex-start; }
.header-cta:hover, .btn-red:hover { filter: brightness(1.1); transform: translateY(-2px); box-shadow: 0 8px 22px rgba(241,12,24,.22); }
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,.06); transform: translateY(-2px); }
.menu-toggle { display: none; border: 0; background: transparent; color: white; font-size: 28px; }
.language-switcher { display: flex; align-items: center; justify-content: flex-end; gap: 6px; }
.language-switcher button { display: grid; place-items: center; gap: 3px; min-width: 38px; padding: 5px 4px 4px; border: 1px solid transparent; border-radius: 3px; color: #ddd; background: transparent; cursor: pointer; transition: border-color .2s ease, background .2s ease, transform .2s ease; }
.language-switcher button:hover { transform: translateY(-2px); border-color: #555; background: #111; }
.language-switcher button.active { border-color: var(--red); background: rgba(241,12,24,.08); color: #fff; }
.language-switcher small { font: 800 8px/1 var(--sans); letter-spacing: .08em; }
.language-flag { position: relative; display: block; width: 25px; height: 16px; overflow: hidden; box-shadow: 0 0 0 1px rgba(255,255,255,.18); }
.flag-pt { background: #009b3a; }
.flag-pt::before { content: ""; position: absolute; inset: 16% 13%; background: #ffdf00; clip-path: polygon(50% 0,100% 50%,50% 100%,0 50%); }
.flag-pt::after { content: ""; position: absolute; left: 38%; top: 31%; width: 25%; aspect-ratio: 1; border-radius: 50%; background: #002776; }
.flag-en { background: linear-gradient(33deg,transparent 43%,#fff 43% 49%,#c8102e 49% 53%,#fff 53% 59%,transparent 59%),linear-gradient(-33deg,transparent 43%,#fff 43% 49%,#c8102e 49% 53%,#fff 53% 59%,transparent 59%),linear-gradient(90deg,transparent 40%,#fff 40% 46%,#c8102e 46% 54%,#fff 54% 60%,transparent 60%),linear-gradient(transparent 36%,#fff 36% 43%,#c8102e 43% 57%,#fff 57% 64%,transparent 64%),#012169; }
.flag-ca { background: repeating-linear-gradient(#f6c800 0 2px,#d40000 2px 4px); }
.flag-es { background: linear-gradient(#aa151b 0 25%,#f1bf00 25% 75%,#aa151b 75%); }

.hero {
  min-height: 405px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: url('../assets/images/derived/dojo-fundo.png') center/cover no-repeat;
  border-bottom: 1px solid #3a3a3a;
}
.hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(0,0,0,.92) 0%, rgba(0,0,0,.62) 36%, rgba(0,0,0,.06) 63%, rgba(0,0,0,.55) 100%); }
.hero-inner { min-height: inherit; position: relative; padding: 44px 44px 30px; display: flex; align-items: flex-start; }
.hero-copy { width: 42%; position: relative; z-index: 3; }
.hero-person { position: absolute; z-index: 2; height: 108%; width: auto; left: 44%; bottom: -16%; filter: drop-shadow(0 12px 24px #000); }
.eyebrow { color: var(--red); font-family: var(--sans); font-size: 16px; font-weight: 900; text-transform: uppercase; letter-spacing: .34em; margin: 0 0 8px; }
.display { margin: 0; font-family: var(--sans); font-weight: 950; text-transform: uppercase; font-size: clamp(48px, 5.7vw, 82px); line-height: .86; letter-spacing: -.035em; text-shadow: 0 2px 0 rgba(255,255,255,.12); }
.display .red, .red { color: var(--red); }
.hero-subtitle { max-width: 520px; margin: 16px 0 0; font-size: 19px; line-height: 1.22; }
.script-note { font-family: var(--script); font-style: italic; font-size: 28px; line-height: 1.25; transform: rotate(-4deg); }
.hero-note { position: absolute; right: 58px; top: 76px; width: 220px; z-index: 3; }
.hero-note::after, .red-slash { content: ""; display: block; width: 80px; height: 4px; background: var(--red); margin-top: 12px; transform: rotate(-10deg); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.hero-facts { display: flex; flex-wrap: wrap; gap: 28px; margin-top: 22px; font-family: var(--sans); font-size: 12px; text-transform: uppercase; letter-spacing: .04em; }
.fact { display: inline-flex; align-items: center; gap: 10px; }
.fact-icon { font-size: 27px; line-height: 1; }

.section { padding: 36px 44px; border-bottom: 1px solid #292929; }
main > section + section { margin-top: 20px; }
.section-tight { padding-block: 18px; }
.section-heading { margin: 0 0 10px; font-family: var(--sans); text-transform: uppercase; font-size: clamp(31px, 3vw, 48px); line-height: .95; letter-spacing: -.02em; }
.section-heading::after, .card-title::after, .underline::after { content: ""; display: block; width: 45px; height: 3px; background: var(--red); margin-top: 10px; }
.lead { color: #ddd; font-size: 17px; max-width: 680px; }
.muted { color: var(--muted); }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.panel { border: 1px solid #343638; background: linear-gradient(145deg, #111314, #070808); }
.info-panel { padding: 24px; }
.info-panel h3 { margin: 0 0 12px; font-family: var(--sans); text-transform: uppercase; font-size: 22px; }
.check-list { list-style: none; margin: 0; padding: 0; color: #d1d1d1; }
.check-list li { padding: 4px 0 4px 28px; position: relative; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: white; font-weight: 900; }
.photo-card { overflow: hidden; position: relative; min-height: 340px; }
.photo-card img { width: 100%; height: 100%; object-fit: cover; }
.photo-card::after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(transparent, rgba(0,0,0,.98)); }
.photo-card-copy { position: absolute; z-index: 2; left: 22px; right: 22px; bottom: 19px; }
.photo-card-copy h3 { margin: 0; font-family: var(--sans); font-size: 29px; line-height: .92; text-transform: uppercase; }
.photo-card-copy p { margin: 8px 0 0; color: #ddd; }
.mini-stripe { width: 55px; height: 4px; background: var(--red); margin-bottom: 12px; }
.quote-band { display: grid; grid-template-columns: 1.1fr 2fr; align-items: center; min-height: 160px; background: radial-gradient(circle at 45%, #17191a, #050505 70%); border-bottom: 1px solid #313131; }
.quote-band-image { height: 160px; object-fit: cover; width: 100%; filter: grayscale(1) contrast(1.1); }
.quote-band blockquote { font-family: var(--script); font-size: 31px; margin: 0; padding: 20px 45px; }

.site-footer { min-height: 98px; display: grid; grid-template-columns: 160px 1fr auto; align-items: center; gap: 26px; padding: 22px 42px; border-top: 1px solid #303030; background: #050606; }
.footer-info { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 34px; font-size: 13px; color: #e0e0e0; }
.footer-info span { display: inline-flex; align-items: center; gap: 9px; }
.footer-email { gap: 8px !important; }
.instagram-link { display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto; border-radius: 6px; transition: transform .2s ease, filter .2s ease; }
.instagram-link:hover { transform: translateY(-2px) scale(1.06); filter: brightness(1.12); }
.instagram-link svg { display: block; width: 24px; height: 24px; }
.footer-motto { border-left: 1px solid #555; padding-left: 20px; font-family: var(--sans); text-transform: uppercase; letter-spacing: .16em; font-size: 10px; line-height: 1.45; }

/* Home */
.home-hero { min-height: 300px; }
.home-hero .hero-inner { padding-top: 26px; }
.home-hero .display { font-size: clamp(50px, 5.4vw, 78px); }
.home-hero .hero-person { left: 39%; height: 120%; bottom: -29%; }
.home-benefits { display: grid; grid-template-columns: 300px 1fr 1fr 190px; gap: 14px; align-items: stretch; margin-top: 20px; }
.home-modalities { display: grid; grid-template-columns: 230px minmax(0, 1fr); gap: 13px; padding-right: 0; margin-top: 20px; }
.home-modalities > div { min-width: 0; }
.home-modalities .section-heading { font-size: clamp(29px, 2.7vw, 42px); }
.home-modalities-cards { width: 80%; justify-self: end; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 13px; }
.home-modalities .photo-card { min-height: 0; aspect-ratio: 1.6; transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.home-modalities .photo-card img { position: absolute; inset: 0; object-fit: cover; object-position: center center; transform: scale(1.002); transition: transform .35s ease; }
.home-modalities .photo-card:hover { transform: translateY(-5px); border-color: rgba(241,12,24,.75); box-shadow: 0 12px 28px rgba(0,0,0,.42); }
.home-modalities .photo-card:hover img { transform: scale(1.035); }
.home-benefits .info-panel { transition: transform .25s ease, border-color .25s ease, background .25s ease; }
.home-benefits .info-panel:hover { transform: translateY(-4px); border-color: rgba(241,12,24,.7); background: linear-gradient(145deg, #151718, #090a0a); }
.exchange-band { height: clamp(96px, 9.4vw, 136px); min-height: 0; display: grid; grid-template-columns: 28% 47% 25%; margin-top: 20px; overflow: hidden; background: #0b0d0e; border-block: 1px solid #313131; }
.exchange-band > * { min-height: 0; min-width: 0; }
.exchange-band img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.002); transition: transform .45s ease, filter .45s ease; }
.exchange-landmark-rio { object-position: center center; }
.exchange-landmark-barcelona { object-position: center center; }
.exchange-band:hover img { transform: scale(1.025); filter: saturate(1.08); }
.exchange-band-copy { padding: clamp(8px, 1.2vw, 17px) clamp(13px, 1.7vw, 25px); align-self: stretch; display: flex; flex-direction: column; justify-content: center; text-align: center; background: radial-gradient(circle at 50% 45%, #181a1b, #080909 72%); }
.exchange-band-title { display: flex; align-items: center; justify-content: center; gap: clamp(10px, 1.5vw, 22px); }
.exchange-flags { flex: 0 0 auto; display: flex; gap: clamp(6px, .7vw, 10px); }
.exchange-flags i { position: relative; display: block; width: clamp(36px, 4vw, 58px); aspect-ratio: 1.42; overflow: hidden; box-shadow: 0 4px 13px rgba(0,0,0,.45); }
.flag-brazil { background: #009b3a; }
.flag-brazil::before { content: ""; position: absolute; inset: 17% 13%; background: #ffdf00; clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%); }
.flag-brazil::after { content: ""; position: absolute; left: 36%; top: 30%; width: 28%; aspect-ratio: 1; border-radius: 50%; background: #002776; }
.flag-spain { background: linear-gradient(#aa151b 0 25%, #f1bf00 25% 75%, #aa151b 75%); }
.exchange-band-copy h2 { margin: 0; font-family: var(--sans); font-size: clamp(18px, 2vw, 29px); line-height: .95; text-align: left; text-transform: uppercase; }
.exchange-band-copy p { margin: clamp(4px, .7vw, 9px) 0 0; font-size: clamp(8px, .78vw, 11px); line-height: 1.25; }
.exchange-band-copy small { display: block; margin-top: clamp(4px, .55vw, 8px); font-family: var(--sans); font-size: clamp(6px, .62vw, 9px); white-space: nowrap; }
.sensei-band { display: grid; grid-template-columns: 30% 36% 34%; min-height: 210px; }
.sensei-band { margin-top: 20px; }
.sensei-band img { width: 100%; height: 100%; object-fit: cover; }
.sensei-band-copy { padding: 24px 30px; }

/* Shared spacing and hover language */
main :is(.panel, .modality-card, .benefit-column, .gallery-card, .stat, .bio-photo, .value, .contact-card, .journey-copy),
.contact-strip > div,
.principles > div,
.exchange-final > * {
  transition: transform .25s ease, border-color .25s ease, background-color .25s ease, box-shadow .25s ease;
}
main :is(.panel, .modality-card, .benefit-column, .gallery-card, .stat, .bio-photo, .value, .contact-card, .journey-copy):hover,
.contact-strip > div:hover,
.principles > div:hover,
.exchange-final > *:hover {
  transform: translateY(-4px);
  border-color: rgba(241,12,24,.68);
  box-shadow: 0 12px 28px rgba(0,0,0,.28);
}
main :is(.journey-photos, .benefit-column, .gallery-card, .contact-card, .bio-photo, .benefits-cta, .map-section) { overflow: hidden; }
main :is(.journey-photos, .benefit-column, .gallery-card, .contact-card, .bio-photo, .benefits-cta, .map-section) img {
  transition: transform .4s ease, filter .4s ease;
}
main :is(.journey-photos, .benefit-column, .gallery-card, .contact-card, .bio-photo, .benefits-cta, .map-section):hover img {
  transform: scale(1.025);
  filter: saturate(1.07) contrast(1.02);
}

/* Modalidades */
.modalities-hero .hero-copy { width: 48%; }
.modalities-hero .hero-person { left: 55%; }
.modality-card { min-height: 660px; display: flex; flex-direction: column; overflow: hidden; border-radius: 8px; }
.modality-card .card-photo { height: 345px; width: 100%; object-fit: cover; }
.modality-card .content { padding: 18px 22px 20px; display: flex; flex: 1; flex-direction: column; }
.card-title { margin: 0; font-family: var(--sans); text-transform: uppercase; font-size: 31px; line-height: .95; }
.modality-card .tagline { font-size: 18px; margin: 12px 0 8px; }
.modality-card .description { color: #ddd; margin: 0 0 18px; }
.modality-card .audience { margin-top: auto; padding: 16px 0; font-family: var(--sans); text-transform: uppercase; font-size: 13px; letter-spacing: .05em; }
.modality-card .btn-red { width: 82%; margin: 0 auto; }
.principles { min-height: 160px; display: grid; grid-template-columns: 1.5fr repeat(4, 1fr); align-items: center; background: linear-gradient(90deg, #111, #050505); }
.principles > * { padding: 22px; text-align: center; border-right: 1px solid #3a3a3a; }
.principles .script-note { font-size: 30px; }

/* Benefits */
.benefits-hero { min-height: 405px; }
.benefits-hero .hero-person { display: none; }
.benefits-hero::before { content: ""; position: absolute; inset: 0; background: url('../assets/images/derived/diego-com-criancas.jpg') 58% center/cover no-repeat; z-index: -2; }
.benefits-hero .hero-copy { width: 38%; }
.benefit-columns { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.benefit-column { border-right: 1px solid #333; padding: 0 24px 28px; }
.benefit-column:first-child { padding-left: 30px; }
.benefit-column img { width: 100%; height: 300px; object-fit: cover; }
.benefit-number { display: inline-block; color: var(--red); font-family: var(--sans); font-size: 48px; font-weight: 950; margin-right: 8px; }
.benefit-column h2 { display: inline; font-family: var(--sans); text-transform: uppercase; font-size: 27px; line-height: .95; }
.icon-list { list-style: none; padding: 0; margin: 16px 0 0; }
.icon-list li { position: relative; padding: 7px 0 7px 48px; font-size: 13px; }
.icon-list li::before { content: "✦"; position: absolute; left: 8px; top: 4px; font-size: 25px; }
.benefits-cta { display: grid; grid-template-columns: 32% 38% 30%; align-items: stretch; min-height: 138px; }
.benefits-cta img { width: 100%; height: 100%; object-fit: cover; }
.benefits-cta blockquote { margin: 0; padding: 28px; font-family: var(--sans); font-size: 29px; font-weight: 900; text-transform: uppercase; }
.benefits-cta .cta-box { padding: 24px; text-align: center; border-left: 1px solid #333; }

/* Exchange */
.exchange-hero .hero-copy { width: 44%; }
.exchange-map { position: absolute; right: 3%; top: 8%; width: 53%; height: 76%; object-fit: cover; object-position: center; opacity: .96; mix-blend-mode: normal; border: 1px solid rgba(255,255,255,.12); }
.journey { display: grid; grid-template-columns: 315px 1fr; border-bottom: 1px solid #363636; min-height: 300px; }
.journey-copy { padding: 25px 34px; background: #090a0a; }
.journey-copy .num { color: #999; font-family: var(--sans); font-size: 29px; }
.journey-copy h2 { margin: 8px 0 12px; font-family: var(--sans); text-transform: uppercase; font-size: 31px; line-height: .95; }
.journey-copy p { color: #ddd; font-size: 14px; }
.journey-copy .cities { margin: 17px 0; text-transform: uppercase; font-family: var(--sans); font-size: 12px; letter-spacing: .06em; }
.journey-photos { display: grid; grid-template-columns: 2fr .75fr .75fr; min-width: 0; }
.journey-photos.two { grid-template-columns: 1.25fr 1fr; }
.journey-photos img { width: 100%; height: 100%; min-height: 300px; object-fit: cover; border-left: 1px solid #333; }
.exchange-final { min-height: 95px; display: flex; align-items: center; justify-content: center; gap: 70px; padding: 20px 40px; }
.exchange-final h2 { margin: 0; font-family: var(--sans); text-transform: uppercase; }

/* Travel sales page */
.trip-hero { position: relative; min-height: 540px; overflow: hidden; }
.trip-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.trip-hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.96) 0%, rgba(0,0,0,.82) 28%, rgba(0,0,0,.2) 63%, rgba(0,0,0,.08)); }
.trip-hero-copy { position: relative; z-index: 1; width: 53%; padding: 58px 44px 42px; }
.trip-hero h1 { margin: 0; font-family: var(--sans); font-size: clamp(62px, 7vw, 104px); line-height: .83; text-transform: uppercase; letter-spacing: -.04em; }
.trip-date { display: flex; align-items: center; gap: 12px; margin: 24px 0 10px; font-family: var(--sans); text-transform: uppercase; }
.trip-date b { color: var(--red); font-size: 64px; line-height: .8; }
.trip-date span { padding-left: 12px; border-left: 1px solid #777; font-size: 20px; font-weight: 900; line-height: 1; }
.trip-summary { margin: 0 0 22px; text-transform: uppercase; font-family: var(--sans); font-size: 14px; letter-spacing: .06em; }
.trip-overview { display: grid; grid-template-columns: 1fr 1.05fr 1fr; gap: 20px; padding: 36px 44px; align-items: stretch; }
.trip-intro, .trip-calendar, .trip-includes { padding: 28px; border: 1px solid #343638; background: linear-gradient(145deg,#111314,#070808); }
.trip-intro > p:last-child { color: #ddd; line-height: 1.85; }
.calendar-head { display: flex; justify-content: space-between; align-items: baseline; padding-bottom: 12px; border-bottom: 1px solid #333; font-family: var(--sans); }
.calendar-head span { font-size: 25px; font-weight: 900; }
.calendar-head b { color: var(--red); font-size: 18px; }
.calendar-week, .calendar-days { display: grid; grid-template-columns: repeat(7,1fr); text-align: center; }
.calendar-week { color: #8f8f8f; font: 700 10px var(--sans); padding: 13px 0 7px; }
.calendar-days { gap: 5px 2px; font-size: 12px; }
.calendar-days span, .calendar-days strong { display: grid; place-items: center; aspect-ratio: 1; font-weight: 400; }
.calendar-days strong { border-radius: 50%; background: var(--red); color: #fff; font-weight: 900; box-shadow: 0 0 0 5px rgba(241,12,24,.16); }
.calendar-days .empty { visibility: hidden; }
.trip-calendar > p { margin: 14px 0 0; color: #ccc; font-size: 11px; text-align: center; }
.trip-calendar > p i { display: inline-block; width: 8px; height: 8px; margin-right: 6px; border-radius: 50%; background: var(--red); }
.trip-includes { display: grid; align-content: center; gap: 12px; }
.trip-includes > div { display: flex; align-items: center; gap: 17px; padding: 13px 0; border-bottom: 1px solid #333; }
.trip-includes > div:last-child { border-bottom: 0; }
.trip-includes b { width: 55px; color: var(--red); font: 900 31px var(--sans); text-align: center; }
.trip-includes span { text-transform: uppercase; font: 800 16px/1.05 var(--sans); }
.trip-route { display: grid; grid-template-columns: 280px 1fr; gap: 36px; padding: 42px 44px 48px; background: radial-gradient(circle at 70% 45%,#17191a,#060707 65%); }
.trip-route-heading > p:last-child { color: #ccc; font-size: 13px; }
.route-line { position: relative; display: grid; grid-template-columns: repeat(5,minmax(0,1fr)); gap: 13px; }
.route-line::before { content: ""; position: absolute; left: 4%; right: 4%; top: 31px; height: 2px; background: linear-gradient(90deg,var(--red),#777,var(--red)); }
.route-stop { position: relative; z-index: 1; min-height: 155px; padding: 18px 16px; border: 1px solid #37393a; background: #0c0d0e; transition: transform .25s ease,border-color .25s ease,box-shadow .25s ease; }
.route-stop:hover { transform: translateY(-5px); border-color: var(--red); box-shadow: 0 12px 25px rgba(0,0,0,.35); }
.route-stop span { display: grid; place-items: center; width: 28px; height: 28px; margin-bottom: 18px; border-radius: 50%; background: var(--red); font: 900 11px var(--sans); }
.route-stop small { color: #aaa; font: 700 9px var(--sans); letter-spacing: .12em; }
.route-stop h3 { margin: 7px 0 0; text-transform: uppercase; font: 900 18px/.95 var(--sans); }
.route-stop p { margin: 8px 0 0; color: #bbb; font-size: 11px; }
.route-stop.hub { border-style: dashed; background: #151617; }
.route-stop.hub span { background: #fff; color: #050505; box-shadow: 0 0 0 4px rgba(255,255,255,.12); }
.trip-cta { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 34px 44px; background: linear-gradient(90deg,#121314,#050505); }
.trip-cta h2 { margin: 0; text-transform: uppercase; font: 950 40px/.9 var(--sans); }
.trip-cta p:last-child { color: #ccc; }
.trip-cta .btn-red { min-width: 230px; }

/* Gallery */
.gallery-hero { min-height: 310px; }
.gallery-hero .hero-copy { width: 44%; }
.gallery-hero .hero-person { display: none; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.gallery-card { padding: 12px; border-radius: 10px; overflow: hidden; }
.gallery-main { width: 100%; height: 430px; object-fit: cover; border: 1px solid #333; }
.gallery-card h2 { font-family: var(--sans); text-transform: uppercase; margin: 17px 5px 6px; font-size: 24px; }
.gallery-card p { margin: 0 5px 18px; min-height: 54px; color: #ddd; font-size: 13px; }
.thumbs { display: grid; grid-template-columns: 28px repeat(3, 1fr) 28px; gap: 8px; align-items: center; }
.thumbs button { border: 0; background: transparent; color: white; font-size: 29px; cursor: pointer; }
.thumb { height: 72px; object-fit: cover; width: 100%; border: 2px solid #333; cursor: pointer; }
.thumb.active { border-color: var(--red); }

/* Sensei */
.sensei-hero { min-height: 410px; }
.sensei-hero .hero-copy { width: 50%; }
.sensei-hero .hero-person { left: 54%; height: 118%; bottom: -25%; }
.stats-bar { display: grid; grid-template-columns: repeat(6, 1fr); border-bottom: 1px solid #333; }
.stat { padding: 16px 10px; text-align: center; border-right: 1px solid #353535; font-family: var(--sans); text-transform: uppercase; font-size: 11px; }
.stat strong { display: block; font-size: 24px; margin-bottom: 5px; }
.bio-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
.bio-text { padding: 32px 36px; }
.bio-text p { font-size: 13px; color: #ddd; }
.philosophy-copy { padding: 32px 36px; border-left: 1px solid #333; background: linear-gradient(145deg, #101112, #070808); }
.philosophy-copy h2 { margin: 0; font-family: var(--sans); font-size: 30px; text-transform: uppercase; }
.philosophy-copy > p { color: #ddd; font-size: 13px; }
.philosophy-copy .script-note { margin: 24px 0 0; font-size: 22px; transform: none; text-align: right; }
.value-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px 0; margin-top: 18px; }
.value { text-align: center; font-family: var(--sans); text-transform: uppercase; font-size: 10px; border-right: 1px solid #333; padding: 0 6px; }
.value b { display: block; font-size: 25px; }
.champion { min-height: 120px; display: grid; grid-template-columns: 30% 1fr; align-items: center; padding: 20px 36px; background: linear-gradient(90deg,#080909,rgba(0,0,0,.2)), url('../assets/images/derived/mapa-almenar.jpg') center/cover; }
.champion h2 { margin: 0; font-family: var(--sans); text-transform: uppercase; }

/* Contact */
.contact-hero { min-height: 375px; }
.contact-hero .hero-person { left: 48%; height: 121%; bottom: -37%; }
.contact-hero .hero-copy { width: 45%; }
.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 13px; }
.contact-card { min-height: 395px; }
.contact-card img { width: 100%; height: 245px; object-fit: cover; }
.contact-card .content { padding: 18px 20px; }
.contact-card h2 { margin: 0; font-family: var(--sans); text-transform: uppercase; font-size: 23px; }
.contact-card p { color: #ddd; font-size: 13px; }
.contact-strip { display: grid; grid-template-columns: 28% repeat(3, 1fr); min-height: 150px; }
.contact-strip > div { padding: 26px 38px; border-right: 1px solid #373737; }
.contact-strip h2 { font-family: var(--sans); text-transform: uppercase; font-size: 32px; margin: 0; }
.contact-strip strong { display: block; font-size: 20px; margin: 8px 0; }
.map-section { display: grid; grid-template-columns: 28% 50% 22%; min-height: 245px; padding: 24px 42px; gap: 25px; align-items: center; }
.map-section img { width: 100%; height: 220px; object-fit: cover; border: 1px solid #444; }
.map-section .script-note { text-align: center; }
.team-photo { object-fit: cover !important; object-position: center top !important; filter: none !important; }

@media (max-width: 1050px) {
  .site-header { grid-template-columns: 135px 1fr auto; padding-inline: 24px; }
  .main-nav { gap: 15px; }
  .main-nav a { font-size: 12px; }
  .hero-copy { width: 50%; }
  .hero-person { left: 48%; }
  .hero-note { display: none; }
  .home-benefits { grid-template-columns: 1fr 1fr; }
  .home-benefits > :last-child { display: none; }
  .home-modalities { grid-template-columns: 1fr; padding-right: 0; }
  .home-modalities > :first-child { grid-column: auto; }
  .home-modalities-cards { width: 80%; }
  .home-modalities .photo-card { aspect-ratio: 1.6; }
  .exchange-band-copy small { white-space: normal; }
  .benefit-columns, .gallery-grid { grid-template-columns: 1fr; }
  .benefit-column { border-right: 0; border-bottom: 1px solid #333; padding: 24px; }
  .benefit-column img { height: 420px; }
  .journey { grid-template-columns: 270px 1fr; }
  .bio-grid { grid-template-columns: 1fr 1fr; }
  .bio-text { grid-column: auto; }
  .contact-strip { grid-template-columns: 1fr 1fr; }
  .map-section { grid-template-columns: 1fr 2fr; }
  .map-section > :last-child { display: none; }
  .trip-overview { grid-template-columns: 1fr 1fr; }
  .trip-includes { grid-column: 1/-1; grid-template-columns: repeat(3,1fr); }
  .trip-includes > p { grid-column: 1/-1; }
  .trip-includes > div { border-bottom: 0; border-right: 1px solid #333; }
  .trip-route { grid-template-columns: 1fr; }
  .route-line { grid-template-columns: repeat(3,1fr); }
  .route-line::before { display: none; }
}

@media (max-width: 780px) {
  .shell { width: 100%; }
  .site-header { height: 64px; grid-template-columns: 1fr auto auto; padding: 0 12px; gap: 8px; }
  .language-switcher { gap: 2px; }
  .language-switcher button { min-width: 30px; padding-inline: 2px; }
  .language-flag { width: 22px; height: 14px; }
  .language-switcher small { display: none; }
  .menu-toggle { display: block; }
  .main-nav { display: none; position: absolute; top: 64px; left: 0; right: 0; height: auto; background: #080808; padding: 12px 20px 20px; flex-direction: column; align-items: stretch; gap: 0; border-bottom: 1px solid #333; }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 13px 5px; justify-content: flex-start; font-size: 15px; }
  .main-nav a::after { left: 5px; bottom: 7px; transform: none; }
  .brand-kanji { font-size: 30px; }
  .brand-name { font-size: 8px; }
  .hero, .home-hero, .benefits-hero, .gallery-hero, .sensei-hero, .contact-hero { min-height: 650px; }
  .hero-inner { padding: 38px 22px 260px; }
  .hero-copy, .modalities-hero .hero-copy, .benefits-hero .hero-copy, .exchange-hero .hero-copy, .gallery-hero .hero-copy, .sensei-hero .hero-copy, .contact-hero .hero-copy { width: 100%; }
  .display, .home-hero .display { font-size: clamp(46px, 14vw, 70px); }
  .hero-person, .home-hero .hero-person, .modalities-hero .hero-person, .exchange-hero .hero-person, .sensei-hero .hero-person, .contact-hero .hero-person { left: 50%; transform: translateX(-50%); height: 58%; bottom: -4%; }
  .benefits-hero::before { background-position: 62% center; }
  .exchange-map { display: block; left: 20px; right: 20px; top: auto; bottom: 24px; width: calc(100% - 40px); height: 245px; }
  .section { padding: 28px 20px; }
  .grid-2, .grid-3, .grid-4, .home-benefits, .home-modalities, .contact-cards { grid-template-columns: 1fr; }
  .home-modalities { padding-right: 0; }
  .home-modalities-cards { grid-template-columns: 1fr; }
  .home-modalities-cards { width: 100%; }
  .exchange-band, .sensei-band, .quote-band, .benefits-cta, .journey, .philosophy, .champion, .map-section { grid-template-columns: 1fr; }
  .exchange-band { height: auto; }
  .exchange-band > *, .exchange-band img { min-height: 170px; }
  .exchange-band-copy { min-height: 190px; padding: 24px 20px; }
  .exchange-band-title { gap: 16px; }
  .exchange-band-copy h2 { font-size: 24px; }
  .exchange-band-copy p { font-size: 12px; }
  .exchange-band-copy small { font-size: 8px; line-height: 1.6; }
  .sensei-band img { min-height: 260px; }
  .journey-photos, .journey-photos.two { grid-template-columns: 1fr; }
  .journey-photos img { min-height: 250px; border-left: 0; border-top: 1px solid #333; }
  .principles { grid-template-columns: 1fr 1fr; }
  .principles > :first-child { grid-column: 1/-1; }
  .benefit-column img { height: 310px; }
  .gallery-main { height: 360px; }
  .stats-bar { grid-template-columns: repeat(2,1fr); }
  .bio-grid { grid-template-columns: 1fr; }
  .bio-text { grid-column: auto; }
  .philosophy-copy { border-left: 0; border-top: 1px solid #333; }
  .value-row { grid-template-columns: repeat(3,1fr); gap: 18px 0; }
  .contact-strip { grid-template-columns: 1fr; }
  .contact-strip > div { border-bottom: 1px solid #333; }
  .map-section { padding: 24px 20px; }
  .site-footer { grid-template-columns: 1fr; text-align: center; padding: 24px 20px; }
  .site-footer .brand { margin: 0 auto; }
  .footer-info { gap: 15px; }
  .footer-motto { border-left: 0; border-top: 1px solid #444; padding: 15px 0 0; }
  .trip-hero { min-height: 650px; }
  .trip-hero > img { object-position: 67% center; }
  .trip-hero-shade { background: linear-gradient(180deg,rgba(0,0,0,.9),rgba(0,0,0,.35) 55%,rgba(0,0,0,.88)); }
  .trip-hero-copy { width: 100%; padding: 44px 22px; }
  .trip-hero h1 { font-size: clamp(54px,17vw,76px); }
  .trip-overview { grid-template-columns: 1fr; padding: 28px 20px; }
  .trip-includes { grid-column: auto; grid-template-columns: 1fr; }
  .trip-includes > p { grid-column: auto; }
  .trip-includes > div { border-right: 0; border-bottom: 1px solid #333; }
  .trip-route { grid-template-columns: 1fr; padding: 34px 20px; }
  .route-line { grid-template-columns: 1fr; }
  .route-stop { min-height: 120px; }
  .trip-cta { align-items: flex-start; flex-direction: column; padding: 30px 20px; }
  .trip-cta h2 { font-size: 33px; }
  .trip-cta .btn-red { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .header-cta, .btn-red, .btn-outline, .home-modalities .photo-card, .home-modalities .photo-card img, .home-benefits .info-panel, .exchange-band img, main *, .contact-strip > div, .principles > div, .exchange-final > * { transition: none; }
}

@media (max-width: 430px) {
  .hero-subtitle { font-size: 16px; }
  .hero-actions > * { width: 100%; }
  .hero-facts { gap: 15px; }
  .gallery-main { height: 300px; }
  .thumbs { grid-template-columns: 25px repeat(3,1fr) 25px; gap: 4px; }
  .thumb { height: 55px; }
  .value-row { grid-template-columns: repeat(2,1fr); }
}
