:root {
  --ateneo-black: #050509;
  --ateneo-ink: #0f0f1e;
  --ateneo-navy: #111325;
  --ateneo-gold: #c9a961;
  --ateneo-gold-light: #e0c487;
  --ateneo-text: #ffffff;
  --ateneo-muted: rgba(255,255,255,.72);
  --ateneo-line: rgba(201,169,97,.28);
  --ateneo-max: 1180px;
  --ateneo-serif: "Playfair Display", Georgia, serif;
  --ateneo-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.ateneo-home {
  margin: 0;
  background: var(--ateneo-black);
  color: var(--ateneo-text);
  font-family: var(--ateneo-sans);
  overflow-x: hidden;
}
body.ateneo-home #wpadminbar { position: fixed; }
body.ateneo-home a { transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease; }
.ateneo-home-shell {
  min-height: 100vh;
  background: radial-gradient(circle at 82% 18%, rgba(201,169,97,.28), transparent 28rem), linear-gradient(145deg, var(--ateneo-black), var(--ateneo-navy) 54%, var(--ateneo-black));
}
.ateneo-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 54px);
  border-bottom: 1px solid transparent;
  transition: background .24s ease, border-color .24s ease, padding .24s ease;
}
.admin-bar .ateneo-header { top: 32px; }
.ateneo-header.is-scrolled,
.ateneo-header.is-open {
  background: rgba(5,5,9,.92);
  border-color: var(--ateneo-line);
  backdrop-filter: blur(18px);
  padding-top: 12px;
  padding-bottom: 12px;
}
.ateneo-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ateneo-text);
  text-decoration: none;
}
.ateneo-brand__mark {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #090909;
  background: linear-gradient(145deg, var(--ateneo-gold-light), var(--ateneo-gold));
  font-family: var(--ateneo-serif);
  font-weight: 800;
  box-shadow: 0 16px 40px rgba(201,169,97,.28);
}
.ateneo-brand__text strong {
  display: block;
  font-family: var(--ateneo-serif);
  font-size: 18px;
  letter-spacing: .08em;
  line-height: 1;
}
.ateneo-brand__text small {
  display: block;
  margin-top: 4px;
  color: var(--ateneo-gold);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.ateneo-nav { display: flex; align-items: center; gap: 22px; }
.ateneo-nav a {
  color: rgba(255,255,255,.82);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
}
.ateneo-nav a:hover { color: var(--ateneo-gold-light); }
.ateneo-nav__cta {
  padding: 11px 16px;
  border-radius: 999px;
  background: var(--ateneo-gold);
  color: #090909 !important;
}
.ateneo-menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--ateneo-line);
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  padding: 0;
}
.ateneo-menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ateneo-gold-light);
}
.ateneo-hero { position: relative; min-height: 100vh; display: grid; align-items: center; overflow: hidden; }
.ateneo-hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5,5,9,.96) 0%, rgba(5,5,9,.78) 48%, rgba(5,5,9,.35) 100%), url("https://ateneo.seorrano.com/wp-content/uploads/2025/03/IMG_8062_edited.jpg");
  background-size: cover;
  background-position: center;
  opacity: .95;
}
.ateneo-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, var(--ateneo-black) 0%, transparent 32%), radial-gradient(circle at 82% 24%, rgba(201,169,97,.28), transparent 20rem);
}
.ateneo-hero__content {
  position: relative;
  z-index: 2;
  width: min(var(--ateneo-max), calc(100% - 36px));
  margin: 0 auto;
  padding: 120px 0 56px;
}
.ateneo-kicker {
  margin: 0 0 18px;
  color: var(--ateneo-gold-light);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.ateneo-hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: var(--ateneo-serif);
  font-size: clamp(48px, 8vw, 104px);
  line-height: .94;
  letter-spacing: 0;
  color: var(--ateneo-text);
}
.ateneo-hero__lead {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--ateneo-muted);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.55;
}
.ateneo-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.ateneo-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
}
.ateneo-button--gold { background: var(--ateneo-gold); color: #090909; box-shadow: 0 18px 50px rgba(201,169,97,.24); }
.ateneo-button--ghost { color: var(--ateneo-text); border: 1px solid rgba(255,255,255,.28); background: rgba(255,255,255,.06); }
.ateneo-trust { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; max-width: 820px; margin-top: 54px; }
.ateneo-trust span { min-height: 86px; padding: 18px; border: 1px solid var(--ateneo-line); background: rgba(255,255,255,.07); backdrop-filter: blur(14px); }
.ateneo-trust strong { display: block; color: var(--ateneo-gold-light); font-size: 18px; }
.ateneo-trust small { display: block; margin-top: 6px; color: rgba(255,255,255,.64); font-size: 13px; line-height: 1.35; }
.ateneo-section { width: min(var(--ateneo-max), calc(100% - 36px)); margin: 0 auto; padding: clamp(72px, 9vw, 118px) 0; }
.ateneo-section__head { max-width: 760px; margin-bottom: 34px; }
.ateneo-section h2 { margin: 0; font-family: var(--ateneo-serif); font-size: clamp(34px, 5vw, 64px); line-height: 1.02; color: var(--ateneo-text); }
.ateneo-section__head p, .ateneo-section > div > p, .ateneo-method__panel p { color: var(--ateneo-muted); font-size: 17px; line-height: 1.65; }
.ateneo-card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.ateneo-course-card {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  border: 1px solid var(--ateneo-line);
  color: var(--ateneo-text);
  text-decoration: none;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.ateneo-course-card::before { content:""; position:absolute; inset:0; background: linear-gradient(0deg, rgba(5,5,9,.94), rgba(5,5,9,.2)); z-index:0; }
.ateneo-course-card > * { position: relative; z-index: 1; }
.ateneo-course-card--kids { background-image: url("https://ateneo.seorrano.com/wp-content/uploads/2026/08/ninos-caminos-ateneo.jpeg"); }
.ateneo-course-card--adults { background-image: url("https://ateneo.seorrano.com/wp-content/uploads/2025/03/Iniciacion-a-la-esgrima-deportiva.jpg"); }
.ateneo-course-card--club { background-image: url("https://ateneo.seorrano.com/wp-content/uploads/2026/08/competicion-caminos-ateneo.jpeg"); }
.ateneo-course-card:hover { transform: translateY(-4px); border-color: rgba(224,196,135,.65); }
.ateneo-course-card span { color: var(--ateneo-gold-light); font-size: 12px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.ateneo-course-card h3 { margin: 10px 0; font-family: var(--ateneo-serif); font-size: 34px; color: var(--ateneo-text); }
.ateneo-course-card p { margin: 0; color: rgba(255,255,255,.76); line-height: 1.55; }
.ateneo-proof { display: grid; grid-template-columns: .9fr 1.1fr; gap: 46px; align-items: start; border-top: 1px solid var(--ateneo-line); border-bottom: 1px solid var(--ateneo-line); }
.ateneo-proof__list { display: grid; gap: 14px; }
.ateneo-proof__list p { margin: 0; padding: 18px; background: rgba(255,255,255,.06); border-left: 4px solid var(--ateneo-gold); color: var(--ateneo-muted); line-height: 1.6; }
.ateneo-proof__list strong { color: var(--ateneo-text); }
.ateneo-method__panel { padding: clamp(28px, 5vw, 54px); border: 1px solid var(--ateneo-line); background: radial-gradient(circle at 88% 18%, rgba(201,169,97,.24), transparent 20rem), rgba(255,255,255,.055); }
.ateneo-method__panel .ateneo-button { margin-top: 14px; }
.ateneo-contact { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-bottom: 80px; }
.ateneo-contact__actions { display: flex; gap: 12px; flex-wrap: wrap; }
@media (max-width: 900px) {
  .admin-bar .ateneo-header { top: 46px; }
  .ateneo-header { padding: 14px 18px; }
  .ateneo-menu-button { display: block; }
  .ateneo-nav { position: fixed; top: 72px; left: 18px; right: 18px; display: grid; gap: 0; padding: 12px; border: 1px solid var(--ateneo-line); background: rgba(5,5,9,.96); transform: translateY(-12px); opacity: 0; pointer-events: none; transition: opacity .18s ease, transform .18s ease; }
  .admin-bar .ateneo-nav { top: 118px; }
  .ateneo-nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .ateneo-nav a { padding: 14px 12px; border-bottom: 1px solid rgba(255,255,255,.08); }
  .ateneo-nav a:last-child { border-bottom: 0; text-align: center; }
  .ateneo-brand__text small { letter-spacing: .14em; }
  .ateneo-hero__content { width: min(100% - 32px, var(--ateneo-max)); padding-top: 124px; }
  .ateneo-trust, .ateneo-card-grid, .ateneo-proof { grid-template-columns: 1fr; }
  .ateneo-trust { margin-top: 34px; }
  .ateneo-actions, .ateneo-contact__actions { display: grid; }
  .ateneo-button { width: 100%; }
  .ateneo-course-card { min-height: 230px; }
  .ateneo-contact { display: grid; }
}
@media (max-width: 430px) {
  .ateneo-brand__mark { width: 38px; height: 38px; }
  .ateneo-brand__text strong { font-size: 16px; }
  .ateneo-brand__text small { font-size: 9px; }
  .ateneo-kicker { letter-spacing: .16em; }
}

@media (max-width: 900px) {
  .ateneo-hero h1 {
    max-width: 100%;
    font-size: clamp(38px, 11vw, 44px) !important;
    line-height: 1.04 !important;
  }
  .ateneo-hero__lead {
    max-width: 100%;
    font-size: 16px !important;
    line-height: 1.5 !important;
    overflow-wrap: break-word;
  }
  .ateneo-hero__content,
  .ateneo-section {
    width: calc(100% - 32px) !important;
  }
}
@media (max-width: 430px) {
  .ateneo-hero h1 {
    font-size: 36px !important;
  }
}
@media (max-width: 380px) {
  .ateneo-hero h1 {
    font-size: 34px !important;
  }
}
@media (max-width: 900px) {
  html,
  body.ateneo-home,
  .ateneo-home-shell,
  .ateneo-hero {
    max-width: 100vw !important;
    overflow-x: hidden !important;
  }
  .ateneo-hero__content,
  .ateneo-section,
  .ateneo-hero h1,
  .ateneo-hero__lead {
    width: calc(100vw - 32px) !important;
    max-width: calc(100vw - 32px) !important;
  }
  .ateneo-hero h1 {
    white-space: normal !important;
    overflow-wrap: break-word !important;
    word-break: normal !important;
  }
}
.ateneo-hero__content,
.ateneo-section {
  width: min(var(--ateneo-max), calc(100vw - 36px)) !important;
}
.ateneo-hero h1,
.ateneo-hero__lead {
  max-width: min(760px, calc(100vw - 36px)) !important;
}
.ateneo-hero__lead {
  width: min(620px, calc(100vw - 36px)) !important;
}
.ateneo-hero h1 {
  font-size: clamp(36px, 7vw, 104px) !important;
}
.ateneo-hero__lead {
  font-size: clamp(16px, 1.6vw, 22px) !important;
}
.ateneo-scenic {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: stretch;
  min-height: 520px;
}
.ateneo-scenic__media {
  min-height: 420px;
  border: 1px solid var(--ateneo-line);
  background:
    linear-gradient(0deg, rgba(5,5,9,.22), rgba(5,5,9,.22)),
    url("https://ateneo.seorrano.com/wp-content/uploads/2025/02/Esgrima_Escenica.jpg");
  background-size: cover;
  background-position: center;
  box-shadow: 0 28px 90px rgba(0,0,0,.34);
}
.ateneo-scenic__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid var(--ateneo-line);
  background:
    radial-gradient(circle at 90% 10%, rgba(201,169,97,.26), transparent 18rem),
    linear-gradient(135deg, rgba(255,255,255,.075), rgba(255,255,255,.035));
}
.ateneo-scenic__content h2 {
  max-width: 720px;
}
.ateneo-scenic__content p:not(.ateneo-kicker) {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--ateneo-muted);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.55;
}
.ateneo-scenic__content .ateneo-button {
  width: max-content;
  margin-top: 30px;
}
.ateneo-footer {
  width: min(var(--ateneo-max), calc(100vw - 36px));
  margin: 0 auto;
  padding: 54px 0 34px;
  border-top: 1px solid var(--ateneo-line);
  color: var(--ateneo-muted);
}
.ateneo-footer a {
  color: rgba(255,255,255,.76);
  text-decoration: none;
}
.ateneo-footer a:hover {
  color: var(--ateneo-gold-light);
}
.ateneo-footer__brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 34px;
}
.ateneo-footer__brand p {
  margin: 0;
  color: var(--ateneo-gold-light);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 12px;
}
.ateneo-footer__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: clamp(24px, 6vw, 80px);
  padding: 34px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.ateneo-footer h3 {
  margin: 0 0 14px;
  color: var(--ateneo-gold-light);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.ateneo-footer p {
  margin: 0 0 14px;
  line-height: 1.7;
}
.ateneo-footer__grid div:nth-child(n+2) a {
  display: block;
  padding: 5px 0;
}
.ateneo-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 22px;
  font-size: 13px;
}
@media (max-width: 900px) {
  .ateneo-scenic {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .ateneo-scenic__media {
    min-height: 300px;
  }
  .ateneo-scenic__content .ateneo-button {
    width: 100%;
  }
  .ateneo-footer__brand,
  .ateneo-footer__bottom {
    display: grid;
  }
  .ateneo-footer__grid {
    grid-template-columns: 1fr;
  }
}
.ateneo-brand__logo {
  display: block;
  width: clamp(190px, 18vw, 285px);
  height: auto;
  max-height: 72px;
  object-fit: contain;
}
.ateneo-header .ateneo-brand__logo {
  filter: drop-shadow(0 16px 28px rgba(0,0,0,.34));
}
.ateneo-footer .ateneo-brand__logo {
  width: clamp(210px, 22vw, 330px);
}
@media (max-width: 900px) {
  .ateneo-brand__logo {
    width: min(220px, 62vw);
    max-height: 58px;
  }
  .ateneo-footer .ateneo-brand__logo {
    width: min(260px, 78vw);
  }
}
@media (max-width: 430px) {
  .ateneo-brand__logo {
    width: min(200px, 62vw);
    max-height: 52px;
  }
}
.ateneo-geo {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, .95fr);
  gap: clamp(22px, 5vw, 58px);
  align-items: start;
  padding-top: clamp(64px, 8vw, 96px);
}
.ateneo-geo__copy p:not(.ateneo-kicker) {
  max-width: 760px;
  color: var(--ateneo-muted);
  font-size: clamp(17px, 1.7vw, 22px);
  line-height: 1.65;
}
.ateneo-geo__facts { display: grid; gap: 12px; }
.ateneo-geo__facts span {
  display: block;
  padding: 18px;
  border: 1px solid var(--ateneo-line);
  background: rgba(255,255,255,.055);
  color: var(--ateneo-muted);
  line-height: 1.5;
}
.ateneo-geo__facts strong { display: block; color: var(--ateneo-gold-light); margin-bottom: 5px; }
.ateneo-faq { border-top: 1px solid var(--ateneo-line); }
.ateneo-faq__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.ateneo-faq article { padding: 22px; border: 1px solid rgba(201,169,97,.22); background: rgba(255,255,255,.045); }
.ateneo-faq h3 { margin: 0 0 10px; color: var(--ateneo-gold-light); font-family: var(--ateneo-serif); font-size: clamp(22px, 2.2vw, 30px); line-height: 1.1; }
.ateneo-faq p { margin: 0; color: var(--ateneo-muted); line-height: 1.65; }
@media (max-width: 900px) { .ateneo-geo, .ateneo-faq__grid { grid-template-columns: 1fr; } }
/* Home CTA system aligned with courses: red drives action, gold stays as accent. */
body.ateneo-home .ateneo-button--red,
body.ateneo-home .ateneo-nav__cta {
  background: #b3131b;
  border-color: #b3131b;
  color: #ffffff;
  box-shadow: 0 14px 36px rgba(179,19,27,.26);
}
body.ateneo-home .ateneo-button--red:hover,
body.ateneo-home .ateneo-nav__cta:hover {
  background: #d01b24;
  border-color: #d01b24;
  color: #ffffff;
  transform: translateY(-1px);
}
body.ateneo-home .ateneo-button--gold {
  background: #b3131b;
  border-color: #b3131b;
  color: #ffffff;
  box-shadow: 0 14px 36px rgba(179,19,27,.26);
}
body.ateneo-home .ateneo-button--gold:hover {
  background: #d01b24;
  border-color: #d01b24;
  color: #ffffff;
}
body.ateneo-home .ateneo-hero__proof strong,
body.ateneo-home .ateneo-stat strong {
  color: #ffffff;
}
body.ateneo-home .ateneo-card a,
body.ateneo-home .ateneo-inline-link {
  color: #ffffff;
}
body.ateneo-home .ateneo-card a::after,
body.ateneo-home .ateneo-inline-link::after {
  background: #b3131b;
}
body.ateneo-home .ateneo-kicker,
body.ateneo-home .ateneo-card__label {
  color: #c8a45d;
}
@media (max-width: 900px) {
  body.ateneo-home .ateneo-nav__cta {
    width: 100%;
    min-height: 46px;
  }
}
/* Dropdown nav aligned with courses menu language. */
body.ateneo-home .ateneo-nav--dropdown {
  gap: 18px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}
body.ateneo-home .ateneo-nav__group {
  position: relative;
  display: inline-flex;
  align-items: center;
}
body.ateneo-home .ateneo-nav__group > a::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 7px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}
body.ateneo-home .ateneo-nav__dropdown {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  z-index: 80;
  display: grid;
  min-width: 250px;
  padding: 10px;
  background: rgba(0,0,0,.96);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 24px 70px rgba(0,0,0,.38);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity .16s ease, transform .16s ease;
}
body.ateneo-home .ateneo-nav__group:hover .ateneo-nav__dropdown,
body.ateneo-home .ateneo-nav__group:focus-within .ateneo-nav__dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
body.ateneo-home .ateneo-nav__dropdown a {
  padding: 12px 11px;
  color: rgba(255,255,255,.78);
  border-bottom: 1px solid rgba(255,255,255,.08);
  white-space: nowrap;
}
body.ateneo-home .ateneo-nav__dropdown a:hover {
  color: #fff;
  background: rgba(179,19,27,.22);
}
body.ateneo-home .ateneo-nav__cta {
  min-height: 38px;
  padding: 10px 14px;
  border-radius: 0;
  text-align: center;
}
@media (max-width: 900px) {
  body.ateneo-home .ateneo-nav--dropdown {
    gap: 0;
  }
  body.ateneo-home .ateneo-nav__group {
    display: grid;
    width: 100%;
  }
  body.ateneo-home .ateneo-nav__group > a::after {
    display: none;
  }
  body.ateneo-home .ateneo-nav__dropdown {
    position: static;
    min-width: 0;
    padding: 0 0 0 12px;
    background: transparent;
    border: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }
  body.ateneo-home .ateneo-nav__dropdown a {
    padding: 11px 14px;
    font-size: 12px;
    color: rgba(255,255,255,.68);
    white-space: normal;
  }
}
/* Mobile dropdown menu panel polish. */
@media (max-width: 900px) {
  body.ateneo-home .ateneo-header.is-open {
    background: rgba(0,0,0,.96);
  }
  body.ateneo-home .ateneo-nav.is-open {
    left: 18px;
    right: 18px;
    top: calc(100% + 10px);
    max-height: min(72vh, 620px);
    overflow-y: auto;
    padding: 12px;
    background: rgba(0,0,0,.98);
    border: 1px solid rgba(255,255,255,.16);
    box-shadow: 0 28px 80px rgba(0,0,0,.55);
    backdrop-filter: blur(12px);
  }
  body.ateneo-home .ateneo-nav.is-open > a,
  body.ateneo-home .ateneo-nav.is-open .ateneo-nav__group > a {
    min-height: 42px;
    padding: 12px 14px;
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  body.ateneo-home .ateneo-nav__dropdown {
    margin: 0 0 8px;
    padding: 4px 0 4px 12px;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  body.ateneo-home .ateneo-nav__dropdown a {
    min-height: 34px;
    padding: 8px 12px;
    line-height: 1.2;
  }
  body.ateneo-home .ateneo-nav__cta {
    margin-top: 10px;
  }
}
/* Dropdown usability fix: no hover gap between parent and panel. */
body.ateneo-home .ateneo-nav__group,
body.ateneo-courses-page .courses-nav__group {
  padding: 18px 0;
  margin: -18px 0;
}
body.ateneo-home .ateneo-nav__dropdown,
body.ateneo-courses-page .courses-nav__dropdown {
  top: 100%;
  margin-top: 0;
}
body.ateneo-home .ateneo-nav__dropdown::before,
body.ateneo-courses-page .courses-nav__dropdown::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -18px;
  height: 18px;
}
@media (max-width: 980px) {
  body.ateneo-courses-page .courses-nav__group {
    padding: 0;
    margin: 0;
  }
}
@media (max-width: 900px) {
  body.ateneo-home .ateneo-nav__group {
    padding: 0;
    margin: 0;
  }
}
/* Touch menus: submenus open by tap, never by sticky mobile hover. */
@media (max-width: 900px) {
  body.ateneo-home .ateneo-nav__dropdown {
    display: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }
  body.ateneo-home .ateneo-nav__group.is-submenu-open .ateneo-nav__dropdown {
    display: grid;
  }
  body.ateneo-home .ateneo-nav__group > a::after {
    display: inline-block;
    margin-left: auto;
  }
  body.ateneo-home .ateneo-nav__group.is-submenu-open > a::after {
    transform: rotate(225deg);
  }
}
/* Courses-style pass: black/red, squared, conversion-first. */
body.ateneo-home {
  background: #050505;
}
body.ateneo-home .ateneo-header {
  min-height: 78px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: linear-gradient(180deg, rgba(0,0,0,.88), rgba(0,0,0,.34));
  border-bottom: 1px solid transparent;
}
body.ateneo-home .ateneo-header.is-scrolled,
body.ateneo-home .ateneo-header.is-open {
  background: rgba(0,0,0,.94);
  border-color: rgba(255,255,255,.15);
}
body.ateneo-home .ateneo-brand {
  width: min(236px, 56vw);
}
body.ateneo-home .ateneo-nav {
  gap: 22px;
  font-size: 14px;
  font-weight: 800;
}
body.ateneo-home .ateneo-nav a {
  color: rgba(255,255,255,.78);
}
body.ateneo-home .ateneo-nav a:hover,
body.ateneo-home .ateneo-nav__group:hover > a {
  color: #fff;
}
body.ateneo-home .ateneo-nav__cta,
body.ateneo-home .ateneo-button {
  border-radius: 0 !important;
  min-height: 48px;
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}
body.ateneo-home .ateneo-nav__cta {
  min-height: 38px;
  padding: 10px 14px;
  background: #b3131b;
  border-color: #b3131b;
  box-shadow: 0 12px 32px rgba(179,19,27,.26);
}
body.ateneo-home .ateneo-button--red {
  background: #b3131b;
  border-color: #b3131b;
  box-shadow: 0 16px 42px rgba(179,19,27,.24);
}
body.ateneo-home .ateneo-button--red:hover,
body.ateneo-home .ateneo-nav__cta:hover {
  background: #d01b24;
  border-color: #d01b24;
}
body.ateneo-home .ateneo-button--ghost {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.22);
  color: #fff;
}
body.ateneo-home .ateneo-hero {
  min-height: 100vh;
  background: #050505;
}
body.ateneo-home .ateneo-hero__bg::after {
  background: linear-gradient(90deg, rgba(0,0,0,.90) 0%, rgba(0,0,0,.62) 42%, rgba(0,0,0,.18) 100%);
}
body.ateneo-home .ateneo-hero__content {
  max-width: 1120px;
}
body.ateneo-home .ateneo-hero h1 {
  max-width: 960px;
  font-size: clamp(54px, 9vw, 118px);
  line-height: .9;
  text-shadow: 0 18px 56px rgba(0,0,0,.78);
}
body.ateneo-home .ateneo-hero__lead {
  max-width: 760px;
  font-size: clamp(18px, 2.1vw, 24px);
  color: rgba(255,255,255,.82);
}
body.ateneo-home .ateneo-trust,
body.ateneo-home .ateneo-geo__facts,
body.ateneo-home .ateneo-card-grid,
body.ateneo-home .ateneo-proof__list,
body.ateneo-home .ateneo-faq__grid {
  gap: 1px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.15);
}
body.ateneo-home .ateneo-trust > *,
body.ateneo-home .ateneo-geo__facts > *,
body.ateneo-home .ateneo-proof__list > *,
body.ateneo-home .ateneo-faq__grid > * {
  border-radius: 0 !important;
  border: 0 !important;
  background: rgba(8,8,8,.86) !important;
}
body.ateneo-home .ateneo-course-card,
body.ateneo-home .ateneo-method__panel,
body.ateneo-home .ateneo-contact,
body.ateneo-home .ateneo-scenic,
body.ateneo-home .ateneo-faq article {
  border-radius: 0 !important;
  border-color: rgba(255,255,255,.15) !important;
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03)) !important;
  box-shadow: none !important;
}
body.ateneo-home .ateneo-course-card::before {
  opacity: .72;
  filter: saturate(1.1) contrast(1.05);
}
body.ateneo-home .ateneo-course-card::after {
  background: linear-gradient(180deg, rgba(0,0,0,.24), rgba(0,0,0,.88));
}
body.ateneo-home .ateneo-course-card:hover::after {
  background: linear-gradient(180deg, rgba(179,19,27,.16), rgba(0,0,0,.88));
}
body.ateneo-home .ateneo-kicker,
body.ateneo-home .ateneo-card__label {
  color: #c8a45d;
  letter-spacing: 0;
}
body.ateneo-home .ateneo-section {
  background-color: #050505;
}
body.ateneo-home .ateneo-geo {
  background: #f5f0e8;
  color: #111;
}
body.ateneo-home .ateneo-geo .ateneo-kicker {
  color: #b3131b;
}
body.ateneo-home .ateneo-contact {
  background: linear-gradient(120deg, rgba(179,19,27,.42), rgba(255,255,255,.05)) !important;
  border-color: rgba(200,164,93,.30) !important;
}
body.ateneo-home .ateneo-footer {
  border-top: 1px solid rgba(255,255,255,.15);
  background: #020202;
}
body.ateneo-home .ateneo-nav__dropdown {
  border-radius: 0;
}
@media (max-width: 900px) {
  body.ateneo-home .ateneo-header {
    min-height: 70px;
    padding: 12px 16px;
  }
  body.ateneo-home .ateneo-brand {
    width: min(198px, 66vw);
  }
  body.ateneo-home .ateneo-hero h1 {
    font-size: clamp(46px, 15vw, 68px);
  }
  body.ateneo-home .ateneo-nav__cta,
  body.ateneo-home .ateneo-button {
    width: 100%;
  }
}
/* Light geo section readability after courses-style pass. */
body.ateneo-home .ateneo-geo,
body.ateneo-home .ateneo-geo p,
body.ateneo-home .ateneo-geo li,
body.ateneo-home .ateneo-geo span {
  color: rgba(17,17,17,.74) !important;
}
body.ateneo-home .ateneo-geo h2,
body.ateneo-home .ateneo-geo strong {
  color: #111111 !important;
}
body.ateneo-home .ateneo-geo .ateneo-kicker {
  color: #b3131b !important;
}
body.ateneo-home .ateneo-geo__facts {
  background: rgba(17,17,17,.14);
  border-color: rgba(17,17,17,.14);
}
body.ateneo-home .ateneo-geo__facts > * {
  background: #f5f0e8 !important;
}
/* Layout fix: remove boxed/iframe feel and stop long claims from overpowering sections. */
body.ateneo-home .ateneo-home-shell,
body.ateneo-home main,
body.ateneo-home .ateneo-section,
body.ateneo-home .ateneo-contact,
body.ateneo-home .ateneo-scenic {
  width: 100% !important;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  box-sizing: border-box;
}
body.ateneo-home .ateneo-section {
  padding: 86px clamp(20px, 6vw, 80px) !important;
}
body.ateneo-home .ateneo-geo {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .82fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}
body.ateneo-home .ateneo-courses,
body.ateneo-home .ateneo-proof,
body.ateneo-home .ateneo-method,
body.ateneo-home .ateneo-faq {
  background: #050505 !important;
}
body.ateneo-home .ateneo-contact {
  margin: 0 !important;
  padding: 56px clamp(20px, 6vw, 80px) !important;
}
body.ateneo-home .ateneo-scenic {
  padding: 86px clamp(20px, 6vw, 80px) !important;
  background: #11131b !important;
}
body.ateneo-home .ateneo-footer {
  width: 100% !important;
  max-width: none !important;
}
body.ateneo-home .ateneo-section h2,
body.ateneo-home .ateneo-contact h2,
body.ateneo-home .ateneo-scenic h2 {
  max-width: 980px;
  font-size: clamp(34px, 4.6vw, 62px) !important;
  line-height: 1.02 !important;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}
body.ateneo-home .ateneo-geo h2 {
  max-width: 760px;
  font-size: clamp(34px, 4.3vw, 58px) !important;
}
body.ateneo-home .ateneo-method__panel h2 {
  max-width: 1040px;
  font-size: clamp(34px, 4.2vw, 58px) !important;
}
body.ateneo-home .ateneo-course-card h3 {
  font-size: clamp(28px, 2.6vw, 38px) !important;
  line-height: 1.02 !important;
}
body.ateneo-home .ateneo-card-grid,
body.ateneo-home .ateneo-proof__list,
body.ateneo-home .ateneo-faq__grid,
body.ateneo-home .ateneo-trust {
  width: 100%;
  max-width: none;
}
@media (min-width: 1180px) {
  body.ateneo-home .ateneo-section__head,
  body.ateneo-home .ateneo-card-grid,
  body.ateneo-home .ateneo-proof__list,
  body.ateneo-home .ateneo-method__panel,
  body.ateneo-home .ateneo-faq__grid,
  body.ateneo-home .ateneo-footer__grid,
  body.ateneo-home .ateneo-footer__bottom {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 900px) {
  body.ateneo-home .ateneo-section,
  body.ateneo-home .ateneo-scenic {
    padding: 62px 20px !important;
  }
  body.ateneo-home .ateneo-geo {
    grid-template-columns: 1fr;
  }
  body.ateneo-home .ateneo-contact {
    padding: 36px 20px !important;
  }
  body.ateneo-home .ateneo-section h2,
  body.ateneo-home .ateneo-contact h2,
  body.ateneo-home .ateneo-scenic h2,
  body.ateneo-home .ateneo-geo h2,
  body.ateneo-home .ateneo-method__panel h2 {
    font-size: clamp(30px, 10vw, 44px) !important;
    line-height: 1.04 !important;
  }
}
/* Final claim scale correction after full-width layout fix. */
body.ateneo-home .ateneo-section h2,
body.ateneo-home .ateneo-contact h2,
body.ateneo-home .ateneo-scenic h2,
body.ateneo-home .ateneo-geo h2,
body.ateneo-home .ateneo-method__panel h2 {
  font-size: clamp(32px, 3.9vw, 54px) !important;
  line-height: 1.04 !important;
}
body.ateneo-home .ateneo-hero h1 {
  font-size: clamp(54px, 8.4vw, 108px) !important;
}
@media (max-width: 900px) {
  body.ateneo-home .ateneo-section h2,
  body.ateneo-home .ateneo-contact h2,
  body.ateneo-home .ateneo-scenic h2,
  body.ateneo-home .ateneo-geo h2,
  body.ateneo-home .ateneo-method__panel h2 {
    font-size: clamp(28px, 8.5vw, 40px) !important;
  }
  body.ateneo-home .ateneo-hero h1 {
    font-size: clamp(44px, 14vw, 64px) !important;
  }
}
/* Fix home nav reservation CTA text contrast. */
body.ateneo-home .ateneo-nav a.ateneo-nav__cta,
body.ateneo-home .ateneo-nav a.ateneo-nav__cta:visited,
body.ateneo-home .ateneo-nav a.ateneo-nav__cta:hover,
body.ateneo-home .ateneo-nav a.ateneo-nav__cta:focus-visible {
  color: #ffffff !important;
}
/* 20260721 home mobile menu fix */
@media(max-width:900px){
  html:has(body.ateneo-home){overflow-x:hidden}
  body.ateneo-home .ateneo-header{z-index:100000;gap:12px}
  body.ateneo-home .ateneo-menu-button{position:relative;z-index:2;flex:0 0 44px;border-radius:0;color:#fff}
  body.ateneo-home .ateneo-nav{position:fixed;left:12px!important;right:12px!important;top:calc(var(--wp-admin--admin-bar--height,0px) + 70px)!important;width:auto!important;max-width:calc(100vw - 24px)!important;max-height:calc(100dvh - 86px)!important;padding:8px!important;background:rgba(3,3,3,.98)!important;border:1px solid rgba(255,255,255,.16)!important;box-shadow:0 24px 80px rgba(0,0,0,.48)!important;overflow-x:hidden!important;overflow-y:auto!important;overscroll-behavior:contain;-webkit-overflow-scrolling:touch;gap:0!important}
  body.ateneo-home .ateneo-nav.is-open{display:flex!important}
  body.ateneo-home .ateneo-nav,body.ateneo-home .ateneo-nav *{box-sizing:border-box;min-width:0}
  body.ateneo-home .ateneo-nav a{display:flex!important;align-items:center;justify-content:space-between;gap:12px;width:100%;min-height:46px;padding:12px 14px!important;border-bottom:1px solid rgba(255,255,255,.08);white-space:normal!important;overflow-wrap:anywhere;word-break:normal;line-height:1.18;text-align:left;color:rgba(255,255,255,.82)!important}
  body.ateneo-home .ateneo-nav__group{display:grid!important;width:100%;padding:0!important;margin:0!important;border-bottom:1px solid rgba(255,255,255,.08)}
  body.ateneo-home .ateneo-nav__group>a{border-bottom:0!important}
  body.ateneo-home .ateneo-nav__group>a::after{flex:0 0 7px;margin-left:auto}
  body.ateneo-home .ateneo-nav__dropdown{position:static!important;left:auto!important;top:auto!important;display:none;min-width:0!important;width:100%!important;max-width:100%!important;padding:0 0 8px 0!important;margin:0!important;background:rgba(255,255,255,.035)!important;border:0!important;border-top:1px solid rgba(255,255,255,.08)!important;box-shadow:none!important;opacity:1!important;pointer-events:auto!important;transform:none!important;transition:none!important;overflow:hidden!important}
  body.ateneo-home .ateneo-nav__dropdown::before{display:none!important}
  body.ateneo-home .ateneo-nav__group.is-submenu-open .ateneo-nav__dropdown{display:grid!important}
  body.ateneo-home .ateneo-nav__dropdown a{min-height:38px;padding:10px 12px 10px 24px!important;border-bottom:1px solid rgba(255,255,255,.06);font-size:12px!important;line-height:1.22;color:rgba(255,255,255,.7)!important}
  body.ateneo-home .ateneo-nav a.ateneo-nav__cta{display:flex!important;justify-content:center;margin:8px 0 0;min-height:48px;background:#b3131b!important;border-color:#b3131b!important;color:#fff!important;text-align:center;box-shadow:none!important}
  body.ateneo-home .ateneo-brand{max-width:calc(100vw - 86px)}
}
/* 20260721 home mobile menu column override */
@media(max-width:900px){
  body.ateneo-home .ateneo-nav{flex-direction:column!important;align-items:stretch!important;justify-content:flex-start!important}
  body.ateneo-home .ateneo-nav__group:hover .ateneo-nav__dropdown,
  body.ateneo-home .ateneo-nav__group:focus-within .ateneo-nav__dropdown,
  body.ateneo-home .ateneo-nav__group.is-submenu-open .ateneo-nav__dropdown{left:auto!important;top:auto!important;transform:none!important;opacity:1!important;width:100%!important;max-width:100%!important}
  body.ateneo-home .ateneo-nav__dropdown a{left:auto!important;right:auto!important;transform:none!important;width:100%!important;max-width:100%!important}
}
/* 20260822 brand repositioning: method, results and voices */
body.ateneo-home .ateneo-proof__list{grid-template-columns:repeat(4,minmax(0,1fr))}
body.ateneo-home .ateneo-proof__list p{min-height:230px;padding:24px}
body.ateneo-home .ateneo-method-grid,body.ateneo-home .ateneo-results-grid,body.ateneo-home .ateneo-voices-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:1px;margin:30px 0;background:rgba(255,255,255,.15);border:1px solid rgba(255,255,255,.15)}
body.ateneo-home .ateneo-method-grid article,body.ateneo-home .ateneo-results-grid article,body.ateneo-home .ateneo-voices-grid article{min-height:230px;padding:24px;background:linear-gradient(180deg,rgba(255,255,255,.08),rgba(255,255,255,.035));border:0}
body.ateneo-home .ateneo-method-grid span,body.ateneo-home .ateneo-voices-grid span{display:inline-grid;place-items:center;min-width:44px;height:44px;padding:0 12px;background:#b3131b;color:#fff;font-size:13px;font-weight:900;text-transform:uppercase}
body.ateneo-home .ateneo-method-grid h3{margin:26px 0 10px;color:#fff;font-size:24px;line-height:1.05}
body.ateneo-home .ateneo-method-grid p,body.ateneo-home .ateneo-results-grid p,body.ateneo-home .ateneo-voices-grid p{margin:0;color:rgba(255,255,255,.72);line-height:1.6}
body.ateneo-home .ateneo-results{background:#0b0b0b!important}
body.ateneo-home .ateneo-results-grid article:nth-child(1){background:linear-gradient(140deg,rgba(179,19,27,.55),rgba(255,255,255,.055))}
body.ateneo-home .ateneo-results-grid strong{display:block;color:#fff;font-family:"Playfair Display",Georgia,serif;font-size:clamp(38px,4.8vw,68px);line-height:.95}
body.ateneo-home .ateneo-results-grid span{display:block;margin:12px 0 14px;color:#c8a45d;font-size:13px;font-weight:900;text-transform:uppercase}
body.ateneo-home .ateneo-voices-grid span{width:auto;margin-bottom:24px;background:rgba(179,19,27,.9)}
body.ateneo-home .ateneo-voices-grid article{min-height:210px}
body.ateneo-home .ateneo-contact h2{max-width:880px}
@media(max-width:980px){body.ateneo-home .ateneo-proof__list,body.ateneo-home .ateneo-method-grid,body.ateneo-home .ateneo-results-grid,body.ateneo-home .ateneo-voices-grid{grid-template-columns:1fr 1fr}body.ateneo-home .ateneo-proof__list p,body.ateneo-home .ateneo-method-grid article,body.ateneo-home .ateneo-results-grid article,body.ateneo-home .ateneo-voices-grid article{min-height:auto}}
@media(max-width:560px){body.ateneo-home .ateneo-proof__list,body.ateneo-home .ateneo-method-grid,body.ateneo-home .ateneo-results-grid,body.ateneo-home .ateneo-voices-grid{grid-template-columns:1fr}body.ateneo-home .ateneo-hero h1{font-size:clamp(42px,13vw,58px)!important}}

/* 20260822 premium course card backgrounds */
.ateneo-course-card {
  isolation: isolate;
  min-height: clamp(340px, 30vw, 430px);
  border-color: rgba(255,255,255,.22);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 24px 70px rgba(0,0,0,.34);
  transition: transform .25s ease, border-color .25s ease, filter .25s ease;
}
.ateneo-course-card::before {
  background:
    linear-gradient(180deg, rgba(4,4,6,.12) 0%, rgba(4,4,6,.46) 38%, rgba(4,4,6,.94) 100%),
    radial-gradient(circle at 18% 18%, rgba(224,196,135,.24), transparent 34%),
    linear-gradient(90deg, rgba(8,8,10,.92) 0%, rgba(8,8,10,.4) 42%, rgba(8,8,10,.2) 100%);
  z-index: 0;
}
.ateneo-course-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(135deg, transparent 0 58%, rgba(224,196,135,.36) 58.25%, transparent 59.25%),
    linear-gradient(90deg, rgba(255,255,255,.08) 0 1px, transparent 1px 100%);
  background-size: auto, 88px 100%;
  mix-blend-mode: screen;
  opacity: .58;
}
.ateneo-course-card > * { z-index: 2; }
.ateneo-course-card--kids { background-position: 50% 74%; }
.ateneo-course-card--adults { background-position: 54% 34%; }
.ateneo-course-card--club { background-position: 58% 24%; }
.ateneo-course-card--kids::before {
  background:
    linear-gradient(180deg, rgba(4,4,6,.08) 0%, rgba(4,4,6,.42) 42%, rgba(4,4,6,.94) 100%),
    radial-gradient(circle at 18% 18%, rgba(224,196,135,.3), transparent 35%),
    linear-gradient(90deg, rgba(10,10,12,.86) 0%, rgba(10,10,12,.28) 54%, rgba(10,10,12,.1) 100%);
}
.ateneo-course-card--adults::before {
  background:
    linear-gradient(180deg, rgba(4,4,6,.08) 0%, rgba(4,4,6,.44) 40%, rgba(4,4,6,.95) 100%),
    radial-gradient(circle at 80% 18%, rgba(185,33,42,.34), transparent 36%),
    linear-gradient(90deg, rgba(10,10,12,.9) 0%, rgba(10,10,12,.34) 52%, rgba(10,10,12,.12) 100%);
}
.ateneo-course-card--club::before {
  background:
    linear-gradient(180deg, rgba(4,4,6,.06) 0%, rgba(4,4,6,.4) 36%, rgba(4,4,6,.95) 100%),
    radial-gradient(circle at 74% 20%, rgba(224,196,135,.32), transparent 32%),
    radial-gradient(circle at 18% 62%, rgba(185,33,42,.24), transparent 32%),
    linear-gradient(90deg, rgba(10,10,12,.88) 0%, rgba(10,10,12,.32) 50%, rgba(10,10,12,.12) 100%);
}
.ateneo-course-card:hover {
  transform: translateY(-6px);
  border-color: rgba(224,196,135,.72);
  filter: saturate(1.08) contrast(1.04);
}
.ateneo-course-card:hover::after { opacity: .78; }


/* 20260828 unified init footer */
.init-footer{background:#020202;border-top:1px solid var(--i-line)}.init-footer-main{display:grid;grid-template-columns:minmax(0,1.2fr) .8fr .8fr;gap:34px;padding:54px clamp(20px,6vw,80px)}.init-footer h2,.init-footer h3{margin:0 0 14px;color:#fff}.init-footer p{margin:0;color:rgba(255,255,255,.68);line-height:1.6}.init-footer a{color:#fff}.init-socials{display:flex;flex-wrap:wrap;gap:10px;margin-top:14px}.init-socials a{padding:8px 10px;border:1px solid var(--i-line);font-size:12px;text-transform:uppercase;font-weight:800}.init-footer-institutional{padding:28px clamp(20px,6vw,80px);border-top:1px solid var(--i-line);border-bottom:1px solid var(--i-line)}.init-footer-institutional p{max-width:1180px;margin-bottom:24px;font-size:12px}.init-footer-logos{display:flex;flex-wrap:wrap;gap:24px;align-items:center}.init-footer-logos img{max-height:54px;max-width:240px;object-fit:contain}.init-footer-legal{display:flex;justify-content:space-between;gap:20px;align-items:center;padding:22px clamp(20px,6vw,80px);font-size:13px}
@media(max-width:980px){.init-footer-main{grid-template-columns:1fr}.init-footer-legal{align-items:flex-start;flex-direction:column}}

/* 20260828 home video promo */
body.ateneo-home .ateneo-video-promo {
  position: fixed;
  top: 168px;
  right: 24px;
  bottom: auto;
  z-index: 80;
  width: min(360px, calc(100vw - 48px));
}
body.ateneo-home .ateneo-video-promo__button {
  width: 100%;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,.16);
  background:
    linear-gradient(135deg, rgba(179,19,27,.95), rgba(179,19,27,.6) 42%, rgba(9,9,11,.94) 100%),
    url("https://ateneo.seorrano.com/wp-content/uploads/2025/03/IMG_8062_edited.jpg") center/cover;
  box-shadow: 0 22px 60px rgba(0,0,0,.42);
  color: #fff;
  text-align: left;
  cursor: pointer;
  backdrop-filter: blur(10px);
}
body.ateneo-home .ateneo-video-promo__play {
  position: relative;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(0,0,0,.38);
}
body.ateneo-home .ateneo-video-promo__play::before {
  content: "";
  position: absolute;
  left: 21px;
  top: 16px;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 17px solid #ffffff;
}
body.ateneo-home .ateneo-video-promo__copy strong {
  display: block;
  margin: 0 0 4px;
  font-size: 17px;
  line-height: 1.05;
}
body.ateneo-home .ateneo-video-promo__copy small {
  display: block;
  color: rgba(255,255,255,.78);
  font-size: 13px;
  line-height: 1.45;
}
body.ateneo-home .ateneo-video-promo__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  background: #ffffff;
  color: #0b0b0d;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
body.ateneo-home .ateneo-video-modal[hidden] {
  display: none !important;
}
body.ateneo-home .ateneo-video-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 24px;
}
body.ateneo-home .ateneo-video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.8);
  backdrop-filter: blur(8px);
}
body.ateneo-home .ateneo-video-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr);
  gap: 0;
  border: 1px solid rgba(255,255,255,.14);
  background: #050505;
  box-shadow: 0 28px 90px rgba(0,0,0,.58);
  overflow: hidden;
}
body.ateneo-home .ateneo-video-modal__meta {
  padding: clamp(28px, 4vw, 48px);
  background:
    linear-gradient(180deg, rgba(179,19,27,.18), rgba(179,19,27,0) 28%),
    linear-gradient(135deg, #0c0c0e 0%, #050505 100%);
}
body.ateneo-home .ateneo-video-modal__meta h2 {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: clamp(34px, 4vw, 62px);
  line-height: .98;
}
body.ateneo-home .ateneo-video-modal__meta p:last-child {
  margin: 0;
  color: rgba(255,255,255,.74);
  line-height: 1.65;
}
body.ateneo-home .ateneo-video-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
body.ateneo-home .ateneo-video-modal__actions .ateneo-button {
  min-height: 48px;
  padding: 0 20px;
}
body.ateneo-home .ateneo-video-modal__frame {
  min-height: 100%;
  background: #000;
}
body.ateneo-home .ateneo-video-modal__frame video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  background: #000;
}
body.ateneo-home .ateneo-video-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(0,0,0,.52);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}
body.ateneo-home.has-video-open {
  overflow: hidden;
}
@media (max-width: 980px) {
  body.ateneo-home .ateneo-video-modal__dialog {
    grid-template-columns: 1fr;
  }
  body.ateneo-home .ateneo-video-modal__actions {
    flex-direction: column;
  }
  body.ateneo-home .ateneo-video-modal__actions .ateneo-button {
    width: 100%;
    justify-content: center;
  }
  body.ateneo-home .ateneo-video-modal__frame video {
    aspect-ratio: 16 / 9;
    height: auto;
  }
}
@media (max-width: 720px) {
  body.ateneo-home .ateneo-video-promo {
    display: none;
  }
  body.ateneo-home .ateneo-video-modal {
    align-items: center;
    padding: 14px;
  }
  body.ateneo-home .ateneo-video-modal__dialog {
    width: min(420px, 100%);
    max-height: 86dvh;
    overflow-y: auto;
    box-shadow: 0 18px 64px rgba(0,0,0,.62);
  }
  body.ateneo-home .ateneo-video-modal__meta {
    padding: 18px 16px 16px;
  }
  body.ateneo-home .ateneo-video-modal__meta h2 {
    margin-bottom: 10px;
    font-size: clamp(22px, 7vw, 30px);
    line-height: 1.02;
  }
  body.ateneo-home .ateneo-video-modal__meta p:last-child {
    font-size: 13px;
    line-height: 1.45;
  }
  body.ateneo-home .ateneo-video-modal__actions {
    margin-top: 16px;
  }
  body.ateneo-home .ateneo-video-modal__actions .ateneo-button {
    min-height: 42px;
    font-size: 12px;
  }
  body.ateneo-home .ateneo-video-modal__frame video {
    aspect-ratio: 16 / 9;
  }
  body.ateneo-home .ateneo-video-modal__close {
    top: 10px;
    right: 10px;
    min-height: 34px;
    padding: 0 10px;
    font-size: 10px;
  }
}

/* 20260828 final real-image override for Caminos Ateneo cards */
body.ateneo-home .ateneo-course-card--kids {
  background:
    linear-gradient(180deg, rgba(0,0,0,.08) 0%, rgba(0,0,0,.38) 42%, rgba(0,0,0,.92) 100%),
    url("https://ateneo.seorrano.com/wp-content/uploads/2026/08/ninos-caminos-ateneo.jpeg") 50% 74% / cover no-repeat !important;
}
body.ateneo-home .ateneo-course-card--adults {
  background:
    linear-gradient(180deg, rgba(0,0,0,.08) 0%, rgba(0,0,0,.42) 44%, rgba(0,0,0,.92) 100%),
    url("https://ateneo.seorrano.com/wp-content/uploads/2025/03/Iniciacion-a-la-esgrima-deportiva.jpg") 54% 34% / cover no-repeat !important;
}
body.ateneo-home .ateneo-course-card--club {
  background:
    linear-gradient(180deg, rgba(0,0,0,.04) 0%, rgba(0,0,0,.36) 42%, rgba(0,0,0,.94) 100%),
    url("https://ateneo.seorrano.com/wp-content/uploads/2026/08/competicion-caminos-ateneo.jpeg") 58% 24% / cover no-repeat !important;
}

/* 20260828 video testimonials */
body.ateneo-home .ateneo-voices {
  background: #050505 !important;
  border-top: 1px solid rgba(255,255,255,.12);
  border-bottom: 1px solid rgba(255,255,255,.12);
}
body.ateneo-home .ateneo-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 24px);
  background: transparent;
  border: 0;
}
body.ateneo-home .ateneo-video-testimonial {
  display: grid;
  grid-template-rows: minmax(0, auto) 1fr;
  background: #0a0a0b;
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 20px 56px rgba(0,0,0,.28);
  min-width: 0;
  overflow: hidden;
}
body.ateneo-home .ateneo-video-testimonial video {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: #000;
}
body.ateneo-home .ateneo-video-testimonial div {
  padding: 16px;
}
body.ateneo-home .ateneo-video-testimonial span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 10px;
  margin-bottom: 16px;
  background: #b3131b;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
body.ateneo-home .ateneo-video-testimonial h3 {
  margin: 0 0 10px;
  color: #fff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(24px, 2vw, 32px);
  line-height: 1;
}
body.ateneo-home .ateneo-video-testimonial p {
  margin: 0;
  color: rgba(255,255,255,.72);
  line-height: 1.55;
}
@media(max-width:980px) {
  body.ateneo-home .ateneo-testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media(max-width:560px) {
  body.ateneo-home .ateneo-testimonials-grid {
    grid-template-columns: 1fr;
  }
  body.ateneo-home .ateneo-video-testimonial video {
    aspect-ratio: 16 / 10;
  }
}










/* 20260830 home hero familia staging */
body.ateneo-home .ateneo-hero__bg {
  background: linear-gradient(90deg, rgba(5,5,9,.96) 0%, rgba(5,5,9,.76) 46%, rgba(5,5,9,.28) 100%), url("https://ateneo.seorrano.com/wp-content/uploads/2023/02/familia-ateneo-home-20260830.jpeg") center 48% / cover no-repeat !important;
}
@media (max-width: 760px) {
  body.ateneo-home .ateneo-hero__bg {
    background-position: center 42% !important;
  }
}
