:root {
  --ya-ink: #0e1418;
  --ya-soft-ink: #223039;
  --ya-muted: #667783;
  --ya-line: #d9e6ed;
  --ya-paper: #f7fbfd;
  --ya-surface: #ffffff;
  --ya-surface-2: #edf7fb;
  --ya-blue: #17b8e8;
  --ya-blue-dark: #087aa8;
  --ya-blue-soft: #d9f5ff;
  --ya-violet: #6d69ff;
  --ya-mint: #b8f3e6;
  --ya-charcoal: #10171c;
  --ya-radius: 8px;
  --ya-shell: min(1180px, calc(100vw - 40px));
}

body.yonaguni-landing-page .site-header,
body.yonaguni-landing-page .site-footer,
body.yonaguni-landing-page [data-elementor-type="header"],
body.yonaguni-landing-page [data-elementor-type="footer"],
body.yonaguni-landing-page .elementor-location-header,
body.yonaguni-landing-page .elementor-location-footer {
  display: none;
}

body.yonaguni-landing-page #content,
body.yonaguni-landing-page .site-content,
body.yonaguni-landing-page .ast-container,
body.yonaguni-landing-page #primary,
body.yonaguni-landing-page .content-area {
  display: block;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

body.yonaguni-landing-page {
  background: var(--ya-paper);
}

.yonaguni-landing {
  margin: 0;
  background: var(--ya-paper);
  color: var(--ya-ink);
  font-family: Inter, Poppins, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

.yonaguni-landing * {
  box-sizing: border-box;
}

.yonaguni-landing a {
  color: inherit;
  text-decoration: none;
}

.yonaguni-landing img {
  display: block;
  max-width: 100%;
}

.ya-shell {
  width: var(--ya-shell);
  margin: 0 auto;
}

.ya-topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 251, 253, .92);
  border-bottom: 1px solid rgba(8, 122, 168, .14);
  backdrop-filter: blur(18px);
}

.admin-bar .ya-topbar {
  top: 32px;
}

.ya-nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.ya-brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.ya-logo {
  width: 205px;
  height: auto;
}

.ya-logo.footer {
  width: 190px;
  margin-bottom: 16px;
}

.ya-links {
  display: flex;
  align-items: center;
  gap: 23px;
  color: var(--ya-soft-ink);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.ya-links a,
.ya-footer-links a,
.ya-login {
  transition: color .18s ease, opacity .18s ease;
}

.ya-links a:hover,
.ya-footer-links a:hover,
.ya-login:hover {
  color: var(--ya-blue-dark);
}

.ya-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ya-mobile-menu {
  display: none;
  position: relative;
}

.ya-menu-check {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.ya-menu-button {
  width: 48px;
  height: 48px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid var(--ya-line);
  border-radius: var(--ya-radius);
  background: #fff;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(11, 47, 66, .08);
  position: relative;
  z-index: 1005;
}

.ya-menu-button span {
  display: block;
  width: 25px;
  height: 3px;
  border-radius: 999px;
  background: var(--ya-ink);
  transition: transform .2s ease, opacity .2s ease;
}

.ya-menu-scrim {
  position: fixed;
  inset: 0;
  z-index: 997;
  background: rgba(12, 20, 25, .42);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}

.ya-mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1001;
  width: min(375px, 86vw);
  height: 100dvh;
  padding: 34px 18px 26px;
  background: #fff;
  box-shadow: 24px 0 60px rgba(11, 47, 66, .18);
  transform: translateX(-104%);
  transition: transform .24s ease;
  overflow-y: auto;
}

.admin-bar .ya-mobile-drawer {
  padding-top: 68px;
}

.ya-drawer-logo {
  width: 205px;
  height: auto;
  margin: 0 0 22px;
}

.ya-mobile-drawer nav {
  display: grid;
  gap: 8px;
}

.ya-mobile-drawer nav a {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 56px;
  padding: 13px 16px;
  border-radius: 6px;
  color: var(--ya-ink);
  font-weight: 950;
  font-size: 1.05rem;
}

.ya-mobile-drawer nav a span {
  width: 34px;
  color: var(--ya-blue-dark);
  font-size: .82rem;
  font-weight: 950;
}

.ya-mobile-drawer nav a:hover,
.ya-mobile-drawer nav a:focus {
  background: #eef4f7;
  color: var(--ya-blue-dark);
}

.ya-mobile-drawer nav a.is-dark {
  margin-top: 10px;
  background: var(--ya-ink);
  color: #fff;
}

.ya-mobile-drawer nav a.is-dark span {
  color: var(--ya-blue);
}

.ya-menu-check:checked + .ya-menu-button span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.ya-menu-check:checked + .ya-menu-button span:nth-child(2) {
  opacity: 0;
}

.ya-menu-check:checked + .ya-menu-button span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.ya-menu-check:checked ~ .ya-menu-scrim {
  opacity: 1;
  pointer-events: auto;
}

.ya-menu-check:checked ~ .ya-mobile-drawer {
  transform: translateX(0);
}

.ya-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 13px 19px;
  border: 1px solid var(--ya-blue);
  border-radius: var(--ya-radius);
  background: var(--ya-blue);
  color: #fff;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 14px 28px rgba(23, 184, 232, .26);
}

.ya-button:hover,
.ya-button:focus {
  color: #fff;
  transform: translateY(-1px);
}

.ya-button.dark {
  background: var(--ya-ink);
  border-color: var(--ya-ink);
  box-shadow: none;
}

.ya-button.ghost {
  background: rgba(255, 255, 255, .92);
  color: var(--ya-ink);
  border-color: rgba(255, 255, 255, .74);
  box-shadow: none;
}

.ya-hero-actions.compact .ya-button {
  min-height: 40px;
  padding: 11px 16px;
}

.ya-login {
  color: var(--ya-soft-ink);
  font-weight: 900;
}

.ya-hero {
  min-height: 760px;
  position: relative;
  display: grid;
  overflow: hidden;
  color: #fff;
  background: var(--ya-charcoal);
}

.ya-hero::before,
.image-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--ya-hero-image) center / cover no-repeat;
  transform: scale(1.01);
}

.ya-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 13, 17, .95) 0%, rgba(8, 13, 17, .74) 42%, rgba(8, 13, 17, .18) 100%),
    linear-gradient(0deg, rgba(8, 13, 17, .84), rgba(8, 13, 17, 0) 46%);
}

.ya-hero-content {
  position: relative;
  z-index: 1;
  align-self: center;
  padding: 96px 0 76px;
}

.ya-eyebrow {
  margin: 0 0 13px;
  color: var(--ya-blue-dark);
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.ya-hero .ya-eyebrow,
.ya-dark-section .ya-eyebrow,
.image-hero .ya-eyebrow {
  color: var(--ya-mint);
}

.yonaguni-landing h1,
.yonaguni-landing h2,
.yonaguni-landing h3 {
  margin: 0;
  color: inherit;
  letter-spacing: 0;
  line-height: 1;
}

.yonaguni-landing h1 {
  max-width: 790px;
  font-size: 76px;
  font-weight: 950;
}

.yonaguni-landing h2 {
  font-size: 52px;
  font-weight: 950;
}

.yonaguni-landing h3 {
  font-weight: 950;
}

.ya-hero p {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .84);
  font-size: 1.18rem;
}

.ya-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.ya-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 730px;
  margin-top: 56px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--ya-radius);
  background: rgba(255, 255, 255, .08);
}

.ya-stats span {
  min-height: 64px;
  display: flex;
  align-items: center;
  padding: 18px 20px;
  color: rgba(255, 255, 255, .92);
  font-weight: 950;
}

.ya-stats span + span {
  border-left: 1px solid rgba(255, 255, 255, .14);
}

.ya-reel-hero {
  min-height: 0;
  padding: 40px 0 64px;
  background: var(--ya-paper);
  color: #fff;
}

.ya-reel-hero::before,
.ya-reel-hero::after {
  display: none;
}

.ya-reel-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.34fr) minmax(390px, .86fr);
  min-height: 640px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 26px 70px rgba(11, 47, 66, .15);
}

.ya-reel-media {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  background: #090d10;
}

.ya-reel-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.04);
  animation: ya-reel-fade 18s infinite;
}

.ya-reel-frame.frame-2 {
  animation-delay: 6s;
}

.ya-reel-frame.frame-3 {
  animation-delay: 12s;
}

.ya-reel-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 13, 17, 0) 0%, rgba(8, 13, 17, .1) 68%, rgba(8, 13, 17, .52) 100%),
    linear-gradient(0deg, rgba(8, 13, 17, .5), rgba(8, 13, 17, 0) 42%);
  pointer-events: none;
}

.ya-reel-labels {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: rgba(255, 255, 255, .86);
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ya-reel-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 5vw, 72px);
  background: #0b0f12;
}

.ya-reel-copy h1 {
  max-width: 590px;
  font-size: clamp(46px, 5.6vw, 82px);
}

.ya-reel-copy p {
  max-width: 560px;
}

.ya-reel-copy .ya-stats {
  max-width: none;
  margin-top: 42px;
}

@keyframes ya-reel-fade {
  0% {
    opacity: 0;
    transform: scale(1.04) translateX(0);
  }
  5%,
  31% {
    opacity: 1;
  }
  36%,
  100% {
    opacity: 0;
    transform: scale(1.11) translateX(-1.8%);
  }
}

.yonaguni-landing section {
  padding: 90px 0;
}

.yonaguni-landing .ya-reel-hero {
  padding: 40px 0 64px;
}

.yonaguni-landing section.tight {
  padding-top: 42px;
}

.ya-light {
  background: var(--ya-surface-2);
}

.ya-dark-section {
  background: var(--ya-charcoal);
  color: #fff;
}

.ya-cta-section {
  background: linear-gradient(135deg, var(--ya-blue-dark), #123b54);
  color: #fff;
}

.ya-section-head {
  max-width: 780px;
  margin-bottom: 34px;
}

.ya-section-head p,
.ya-card-body p,
.ya-price-card p,
.ya-program-card p,
.ya-teacher-card p,
.ya-cta p,
.ya-content-card {
  color: var(--ya-muted);
  font-size: 1.02rem;
}

.ya-dark-section p,
.ya-cta p {
  color: rgba(255, 255, 255, .75);
}

.ya-split-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.ya-text-link {
  color: var(--ya-blue-dark);
  font-weight: 950;
}

.ya-text-link.light {
  color: var(--ya-mint);
}

.ya-style-grid.image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ya-style-card.image-card {
  min-height: 0;
  display: grid;
  gap: 10px;
  padding: 0;
  border-radius: var(--ya-radius);
  background: transparent;
  color: var(--ya-ink);
  box-shadow: none;
}

.ya-style-card.image-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--ya-radius);
  box-shadow: 0 16px 42px rgba(10, 39, 55, .14);
  transition: transform .18s ease, box-shadow .18s ease;
}

.ya-style-card.image-card:hover img {
  transform: translateY(-2px);
  box-shadow: 0 22px 54px rgba(10, 39, 55, .2);
}

.ya-style-card.image-card span {
  display: block;
  padding: 0 4px;
  color: var(--ya-ink);
  font-size: 1.38rem;
  font-weight: 950;
  line-height: 1.15;
}

.ya-style-card.image-card small {
  display: block;
  padding: 0 4px;
  color: var(--ya-muted);
  font-size: .78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.ya-class-grid,
.ya-instructor-grid,
.ya-price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ya-class-card,
.ya-price-card,
.ya-content-card {
  overflow: hidden;
  border: 1px solid var(--ya-line);
  border-radius: var(--ya-radius);
  background: #fff;
  box-shadow: 0 12px 34px rgba(11, 47, 66, .07);
}

.ya-content-card {
  overflow: visible;
}

.ya-content-card h1,
.ya-content-card h2,
.ya-content-card h3,
.ya-content-card h4 {
  color: var(--ya-ink);
  line-height: 1.08;
}

.ya-content-card a {
  color: var(--ya-blue-dark);
  font-weight: 900;
}

.ya-content-card ul,
.ya-content-card ol {
  margin: 18px 0 18px 1.2em;
}

.ya-content-card li + li {
  margin-top: 8px;
}

.ya-content-card input,
.ya-content-card select,
.ya-content-card textarea {
  max-width: 100%;
  min-height: 44px;
  border: 1px solid var(--ya-line);
  border-radius: var(--ya-radius);
  padding: 10px 12px;
}

.ya-content-card button,
.ya-content-card .button,
.ya-content-card input[type="submit"],
.ya-content-card .single_add_to_cart_button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ya-blue);
  border-radius: var(--ya-radius);
  background: var(--ya-blue);
  color: #fff;
  padding: 12px 18px;
  font-weight: 950;
  line-height: 1;
  text-decoration: none;
}

.ya-product-card .product,
.ya-course-card,
.ya-dashboard-card {
  color: var(--ya-soft-ink);
}

.ya-product-card .product {
  display: grid;
  grid-template-columns: minmax(260px, .82fr) minmax(320px, 1fr);
  gap: 34px;
  align-items: start;
}

.ya-product-card .woocommerce-product-gallery,
.ya-product-card .summary {
  width: auto !important;
  float: none !important;
}

.ya-product-card .summary {
  padding: 28px;
  border: 1px solid var(--ya-line);
  border-radius: var(--ya-radius);
  background: var(--ya-paper);
}

.ya-product-card .price {
  color: var(--ya-blue-dark);
  font-size: 1.8rem;
  font-weight: 950;
}

.ya-product-card .quantity {
  display: inline-flex;
  margin-right: 10px;
}

.ya-product-card .woocommerce-tabs,
.ya-product-card .related,
.ya-product-card .upsells {
  grid-column: 1 / -1;
}

.ya-dashboard-card img.avatar {
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(11, 47, 66, .12);
}

.ya-dashboard-card ul {
  display: grid;
  gap: 10px;
  margin-left: 0;
  padding-left: 0;
  list-style: none;
}

.ya-dashboard-card li a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  border-radius: var(--ya-radius);
  background: var(--ya-blue-soft);
  padding: 10px 14px;
}

.ya-class-media {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--ya-charcoal);
}

.ya-class-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform .2s ease;
}

.ya-class-card:hover .ya-class-media img {
  transform: scale(1.025);
}

.ya-class-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, .42), rgba(0, 0, 0, 0) 52%);
}

.ya-play,
.ya-video-play {
  position: absolute;
  left: 16px;
  bottom: 14px;
  z-index: 1;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: transparent;
  font-size: 0;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .24);
}

.ya-play::before,
.ya-video-play::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid var(--ya-blue-dark);
  margin-left: 4px;
}

.ya-duration {
  position: absolute;
  right: 14px;
  bottom: 16px;
  z-index: 1;
  padding: 7px 10px;
  border-radius: 6px;
  background: rgba(11, 17, 21, .86);
  color: #fff;
  font-size: .78rem;
  font-weight: 950;
}

.ya-card-body {
  padding: 20px;
}

.ya-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 11px;
}

.ya-meta span,
.ya-class-facts span,
.ya-filter-bar a {
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--ya-blue-dark);
  background: var(--ya-blue-soft);
  font-size: .72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.ya-class-card h3 {
  margin-bottom: 10px;
  color: var(--ya-ink);
  font-size: 1.22rem;
  line-height: 1.12;
}

.ya-instructor-mini {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  color: var(--ya-soft-ink);
  font-weight: 950;
}

.ya-instructor-mini img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
}

.ya-instructor-mini.large {
  width: 100%;
  padding: 14px;
  border: 1px solid var(--ya-line);
  border-radius: var(--ya-radius);
}

.ya-instructor-mini.large img {
  width: 58px;
  height: 58px;
}

.ya-instructor-mini small {
  display: block;
  color: var(--ya-muted);
  font-size: .82rem;
  font-weight: 800;
}

.ya-program-row,
.ya-program-grid {
  display: grid;
  gap: 24px;
}

.ya-program-row {
  grid-template-columns: repeat(3, 1fr);
}

.ya-program-grid {
  grid-template-columns: repeat(2, 1fr);
}

.ya-program-card {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--ya-radius);
  background: rgba(255, 255, 255, .08);
  color: #fff;
}

.ya-program-card.large {
  border-color: var(--ya-line);
  background: #fff;
  color: var(--ya-ink);
  box-shadow: 0 12px 34px rgba(11, 47, 66, .07);
}

.ya-program-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.ya-program-card div {
  padding: 22px;
}

.ya-program-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--ya-blue);
  font-size: .78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.ya-program-card h3,
.ya-program-card h2 {
  margin-bottom: 10px;
  font-size: 1.4rem;
}

.ya-program-card.large h2 {
  font-size: 2rem;
}

.ya-teacher-card {
  display: grid;
  gap: 10px;
  border-radius: var(--ya-radius);
  color: var(--ya-ink);
}

.ya-teacher-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--ya-radius);
  box-shadow: 0 14px 34px rgba(11, 47, 66, .1);
}

.ya-teacher-card strong {
  padding: 0 4px;
  font-size: 1.3rem;
  font-weight: 950;
}

.ya-teacher-card span {
  padding: 0 4px;
  color: var(--ya-blue-dark);
  font-weight: 950;
}

.ya-teacher-card p {
  padding: 0 4px;
  margin: 0;
}

.ya-page-hero {
  position: relative;
  overflow: hidden;
  padding: 104px 0;
  background: var(--ya-charcoal);
  color: #fff;
}

.ya-page-hero.compact-hero {
  background:
    linear-gradient(135deg, rgba(13, 53, 72, .98), rgba(13, 18, 24, .98)),
    linear-gradient(135deg, var(--ya-blue), var(--ya-violet));
}

.image-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 11, 15, .92), rgba(7, 11, 15, .55), rgba(7, 11, 15, .28)),
    linear-gradient(0deg, rgba(7, 11, 15, .76), rgba(7, 11, 15, 0) 55%);
}

.ya-page-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 360px;
  align-items: center;
  gap: 44px;
}

.ya-page-hero p {
  max-width: 660px;
  color: rgba(255, 255, 255, .78);
  font-size: 1.08rem;
}

.ya-hero-plaque {
  min-height: 190px;
  display: grid;
  align-content: end;
  gap: 10px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--ya-radius);
  background: rgba(255, 255, 255, .1);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .05);
}

.ya-hero-plaque span {
  color: var(--ya-mint);
  font-weight: 950;
  text-transform: uppercase;
}

.ya-hero-plaque strong {
  font-size: 1.7rem;
  line-height: 1.1;
}

.ya-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.ya-filter-bar.levels {
  margin-bottom: 30px;
}

.ya-filter-bar a {
  border: 1px solid var(--ya-line);
  background: #fff;
  color: var(--ya-soft-ink);
}

.ya-filter-bar a.active,
.ya-filter-bar a:hover {
  border-color: var(--ya-blue);
  background: var(--ya-blue);
  color: #fff;
}

.ya-level-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.ya-level-card {
  min-height: 180px;
  display: grid;
  align-content: end;
  gap: 8px;
  padding: 22px;
  border-radius: var(--ya-radius);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(23, 184, 232, .94), rgba(16, 23, 28, .92)),
    linear-gradient(135deg, var(--ya-blue), var(--ya-violet));
}

.ya-level-card:nth-child(2) {
  background:
    linear-gradient(135deg, rgba(109, 105, 255, .88), rgba(16, 23, 28, .93)),
    linear-gradient(135deg, var(--ya-violet), var(--ya-blue));
}

.ya-level-card:nth-child(3) {
  background:
    linear-gradient(135deg, rgba(16, 23, 28, .95), rgba(23, 184, 232, .82)),
    linear-gradient(135deg, var(--ya-charcoal), var(--ya-blue));
}

.ya-level-card span,
.ya-level-card small {
  color: rgba(255, 255, 255, .76);
  font-weight: 950;
  text-transform: uppercase;
}

.ya-level-card strong {
  font-size: 1.65rem;
}

.ya-class-detail {
  padding: 48px 0 72px;
  background: #080d11;
  color: #fff;
}

.ya-class-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: start;
}

.ya-video-stage {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border-radius: var(--ya-radius);
  background: #000;
}

.ya-video-stage img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  opacity: .92;
}

.ya-video-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 18px;
  background: linear-gradient(0deg, rgba(0, 0, 0, .4), rgba(0, 0, 0, .08));
}

.ya-video-overlay p {
  color: #fff;
  font-weight: 950;
}

.ya-video-play {
  position: static;
  width: 76px;
  height: 76px;
}

.ya-lesson-panel {
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--ya-radius);
  background: rgba(255, 255, 255, .08);
}

.ya-lesson-panel h1 {
  font-size: 2.55rem;
}

.ya-lesson-panel p {
  margin: 0;
  color: rgba(255, 255, 255, .74);
}

.ya-class-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ya-class-facts span {
  color: #fff;
  background: rgba(255, 255, 255, .12);
}

.ya-teacher-hero {
  background: var(--ya-charcoal);
}

.ya-teacher-detail {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  align-items: center;
  gap: 44px;
}

.ya-teacher-detail img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--ya-radius);
}

.ya-teacher-detail p {
  max-width: 700px;
}

.ya-price-grid {
  grid-template-columns: repeat(4, 1fr);
}

.ya-price-card {
  padding: 24px;
}

.ya-price-card h2 {
  min-height: 76px;
  font-size: 1.75rem;
}

.ya-price-card > strong {
  display: block;
  margin: 18px 0 10px;
  color: var(--ya-blue-dark);
  font-size: 2.1rem;
}

.ya-price-card > strong span {
  font-size: .95rem;
}

.ya-price-card ul {
  display: grid;
  gap: 8px;
  margin: 20px 0;
  padding-left: 20px;
  color: var(--ya-muted);
}

.ya-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 48px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: var(--ya-radius);
  background: rgba(255, 255, 255, .1);
}

.ya-cta h2 {
  max-width: 760px;
}

.ya-auth-section {
  min-height: 720px;
  display: grid;
  align-items: center;
  padding: 80px 0;
  background:
    linear-gradient(90deg, rgba(247, 251, 253, .96) 0%, rgba(247, 251, 253, .92) 48%, rgba(13, 92, 126, .45) 100%),
    url("https://yonaguniacademy.com/wp-content/uploads/2026/06/hip-hop-1.jpg") center / cover no-repeat;
}

.ya-auth-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 46px;
  align-items: center;
}

.ya-auth-logo {
  width: 260px;
  margin-bottom: 28px;
}

.ya-auth-copy h1 {
  color: var(--ya-ink);
}

.ya-auth-copy p {
  max-width: 560px;
  color: var(--ya-muted);
  font-size: 1.08rem;
}

.ya-auth-card {
  padding: 28px;
  border: 1px solid var(--ya-line);
  border-radius: var(--ya-radius);
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 24px 70px rgba(11, 47, 66, .18);
}

.ya-auth-card label {
  color: var(--ya-soft-ink);
  font-weight: 900;
}

.ya-auth-card input[type="text"],
.ya-auth-card input[type="email"],
.ya-auth-card input[type="password"] {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--ya-line);
  border-radius: var(--ya-radius);
  background: #fff;
}

.ya-auth-card input[type="submit"],
.ya-auth-card button,
.ya-auth-card .button {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--ya-blue);
  border-radius: var(--ya-radius);
  background: var(--ya-blue);
  color: #fff;
  font-weight: 950;
}

.ya-content-card {
  padding: 32px;
}

.ya-legal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.ya-legal-card {
  padding: 28px;
  border: 1px solid var(--ya-line);
  border-radius: var(--ya-radius);
  background: #fff;
  box-shadow: 0 12px 34px rgba(11, 47, 66, .07);
}

.ya-legal-card h2 {
  margin-bottom: 14px;
  font-size: 1.7rem;
}

.ya-legal-card p {
  margin: 0;
  color: var(--ya-muted);
}

.ya-empty {
  color: var(--ya-muted);
  font-weight: 900;
}

.ya-footer {
  padding: 54px 0 24px;
  background: var(--ya-ink);
  color: #fff;
}

.ya-footer-grid {
  display: grid;
  grid-template-columns: 1fr auto .75fr;
  gap: 36px;
}

.ya-footer p,
.ya-foot-bottom {
  color: rgba(255, 255, 255, .68);
}

.ya-footer-links {
  display: grid;
  gap: 10px;
  color: rgba(255, 255, 255, .88);
  font-weight: 900;
}

.ya-footer-links strong {
  margin-bottom: 4px;
  color: #fff;
  font-size: 1.05rem;
}

.ya-foot-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 42px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  font-size: .88rem;
}

@media (max-width: 1080px) {
  .ya-links,
  .ya-actions {
    display: none;
  }

  .ya-mobile-menu {
    display: block;
    order: -1;
  }

  .ya-nav {
    justify-content: flex-start;
    gap: 18px;
  }

  .ya-nav > .ya-brand {
    margin-right: auto;
  }

  .ya-reel-layout {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .ya-reel-media {
    min-height: 470px;
  }

  .ya-reel-copy {
    padding: 42px 28px;
  }

  .yonaguni-landing h1 {
    font-size: 58px;
  }

  .yonaguni-landing h2 {
    font-size: 42px;
  }

  .ya-style-grid.image-grid,
  .ya-class-grid,
  .ya-instructor-grid,
  .ya-program-row,
  .ya-program-grid,
  .ya-price-grid,
  .ya-legal-grid,
  .ya-product-card .product,
  .ya-page-hero-grid,
  .ya-class-detail-grid,
  .ya-auth-grid,
  .ya-teacher-detail,
  .ya-footer-grid {
    grid-template-columns: 1fr;
  }

  .ya-page-hero-grid,
  .ya-class-detail-grid,
  .ya-auth-grid,
  .ya-teacher-detail {
    gap: 28px;
  }

  .ya-hero-plaque {
    min-height: 140px;
  }
}

@media (max-width: 782px) {
  .admin-bar .ya-topbar {
    top: 46px;
  }
}

@media (max-width: 680px) {
  :root {
    --ya-shell: min(100vw - 24px, 1180px);
  }

  .ya-logo {
    width: 170px;
  }

  .ya-reel-hero {
    min-height: 0;
  }

  .yonaguni-landing .ya-reel-hero {
    padding: 18px 0 38px;
  }

  .ya-reel-layout {
    border-radius: 14px;
  }

  .ya-reel-media {
    min-height: 330px;
  }

  .ya-reel-copy {
    padding: 32px 20px;
  }

  .ya-reel-copy h1 {
    font-size: 40px;
  }

  .ya-reel-copy .ya-stats {
    grid-template-columns: 1fr;
  }

  .ya-reel-copy .ya-stats span + span {
    border-top: 1px solid rgba(255, 255, 255, .14);
    border-left: 0;
  }

  .ya-hero {
    min-height: 700px;
  }

  .ya-reel-hero {
    min-height: 0;
  }

  .ya-hero-content {
    padding: 72px 0 60px;
  }

  .yonaguni-landing h1 {
    font-size: 40px;
  }

  .yonaguni-landing h2 {
    font-size: 32px;
  }

  .ya-hero p,
  .ya-page-hero p,
  .ya-auth-copy p {
    font-size: 1rem;
  }

  .ya-stats {
    grid-template-columns: 1fr;
  }

  .ya-stats span + span {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, .14);
  }

  .yonaguni-landing section {
    padding: 62px 0;
  }

  .yonaguni-landing .ya-reel-hero {
    padding: 18px 0 38px;
  }

  .ya-page-hero {
    padding: 76px 0;
  }

  .ya-split-head,
  .ya-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .ya-cta,
  .ya-auth-card,
  .ya-lesson-panel,
  .ya-content-card {
    padding: 22px;
  }

  .ya-level-grid {
    grid-template-columns: 1fr;
  }

  .ya-video-stage,
  .ya-video-stage img {
    min-height: 320px;
  }

  .ya-lesson-panel h1 {
    font-size: 2rem;
  }

  .ya-foot-bottom {
    flex-direction: column;
  }
}
