@charset "UTF-8";

/* ============================================================
   TSUNABeeeeee! — Hero Visual  (Split Layout)
   左80%：写真スライド  /  右20%：白パネル
   キャッチコピー帯が左右にまたがって上部に被さる
   ============================================================ */

/* ============================================================
   SECTION ROOT
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  height: calc((100vh - 86px) * 0.72);
  min-height: 336px;
  max-height: 648px;
  display: flex;
  overflow: hidden;
  background: #0a0f1e;
}

/* ============================================================
   左80%：写真エリア
   ============================================================ */
.hero__photo {
  position: absolute;
  inset: 0;
  right: var(--side-sync-width); /* 右パネル分だけ狭める */
  z-index: 0;
  overflow: hidden;
}

/* スライド背景（各スライドは絶対配置で重ねる） */
.hero__photo-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.06);
  transition:
    opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1),
    transform 7s ease-out;
}

.hero__photo-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero__photo-slide--1 {
  background-image: url('../img/pattern1_optimized_2800x1400.png');
  background-position: center center;
}
.hero__photo-slide--2 {
  background-image: url('../img/pattern1_optimized_2800x1400-2.jpg');
  background-position: center center;
}

/* 写真上のグラデオーバーレイ（右端→透明で白パネルへ自然接続） */
.hero__photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(8, 14, 35, 0.78) 0%,
    rgba(8, 14, 35, 0.48) 38%,
    rgba(8, 14, 35, 0.16) 74%,
    rgba(8, 14, 35, 0.04) 100%
  );
}

/* ============================================================
   キャッチコピー帯（左右にまたがる上部バナー）
   ============================================================ */
.hero__catch-band {
  position: absolute;
  top: 0;
  left: 0;
  right: var(--side-sync-width); /* 白パネルの手前まで */
  z-index: 10;
  padding: 28px 48px 0;
  display: flex;
  align-items: flex-end;
  height: 52%;
  pointer-events: none;
  background: none;
}

.hero__catch-inner {
  padding-bottom: 18px;
  transform: translateY(60px);
}

/* ラベル（OKINAWA FIRST） */
.hero__catch-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.35em;
  color: #f0c040;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.hero__catch-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: #f0c040;
  border-radius: 2px;
}

/* メインキャッチ */
.hero__catch-copy {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0 10px;
  line-height: 1.2;
  margin-bottom: 14px;
}

.hero__catch-copy-main {
  font-size: clamp(28px, 4.2vw, 58px);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.04em;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hero__catch-copy-accent {
  font-size: clamp(32px, 5vw, 65px);
  font-weight: 800;
  font-style: normal;
  /* グラデ文字 */
  background: linear-gradient(90deg, #5a9def 0%, #6b8ef5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.02em;
  text-shadow: none;
}

/* サブコピー */
.hero__catch-sub {
  font-size: clamp(12px, 1.3vw, 16px);
  font-weight: 500;
  color: rgba(255,255,255,0.78);
  letter-spacing: 0.1em;
  text-shadow: 0 1px 8px rgba(0,0,0,0.6);
}

/* ============================================================
   右20%：白パネル
   ============================================================ */
.hero__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: var(--side-sync-width);
  min-width: var(--side-sync-width);
  max-width: var(--side-sync-width);
  background: #ffffff;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 20px 24px 24px;  /* ロゴ削除分、上パディングを縮小 */
  gap: 0;
  overflow: hidden;

  /* 左端に細い影で奥行き感 */
  box-shadow: -8px 0 32px rgba(8, 14, 35, 0.18);
}

/* パネル上部アクセントバー（ブルーグラデ） */
.hero__panel-accent {
  display: none;
}

/* ---- ロゴ ---- */
.hero__panel-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
  padding-top: 12px;
  margin-bottom: 20px;
}

.hero__panel-logo-main {
  font-size: 15px;
  font-weight: 900;
  color: #1a2b5e;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.hero__panel-logo-main em {
  font-style: normal;
  color: #155BD9;
}

.hero__panel-logo-sub {
  font-size: 9px;
  font-weight: 700;
  color: #6b7280;
  letter-spacing: 0.08em;
}

/* ---- 区切り線 ---- */
.hero__panel-divider {
  border: none;
  border-top: 1px solid #e5e8f0;
  margin: 16px 0;
}

/* ---- 講師エリア：大きな縦長写真カード ---- */
.hero__instructor {
 margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* 縦長写真コンテナ（300%大 → パネル幅フル活用） */
.hero__instructor-photo {
  position: relative;
  width: 100%;
  /* パネル幅の約3倍相当の高さ感を縦長で表現 */
  aspect-ratio: 3 / 4;
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 8px 28px rgba(21, 91, 217, 0.22),
    0 2px 8px rgba(0,0,0,0.15);
  border: none;
}

.hero__instructor-photo-img {
  width: 100%;
  height: 100%;
  background-image: url('../img/instructor.png');
  background-size: cover;
  background-position: center 5%;
  transition: transform 0.5s ease;
}

.hero__instructor-photo:hover .hero__instructor-photo-img {
  transform: scale(1.04);
}

/* 写真外の講師名ラベル */
.hero__instructor-photo-label {
  position: static;
  padding: 0;
  background: none;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.hero__instructor-role {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.20em;
  color: #155BD9;
  text-transform: uppercase;
  margin: 0;
}

.hero__instructor-name {
  font-size: 20px;
  font-weight: 900;
  color: #1a2b5e;
  letter-spacing: 0.06em;
  margin: 0;
  line-height: 1.15;
  text-shadow: none;
}

.hero__instructor-name span {
  font-size: 12px;
  font-weight: 600;
  color: #5b6b87;
  margin-left: 3px;
}

/* プロフィールテキスト */
.hero__instructor-profile {
  font-size: 13.2px;
  color: #4b5563;
  line-height: 1.75;
  letter-spacing: 0.04em;
  margin: 0;
}

/* パネル内CTAは削除（左側写真エリアに移動）*/

/* 補足テキスト */
.hero__panel-note {
  font-size: 9.5px;
  color: #9ca3af;
  text-align: center;
  letter-spacing: 0.06em;
  margin: 8px 0 0;
}

/* ---- スライドドット ---- */
.hero__panel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 16px;
}

.hero__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 2px solid #cbd5e1;
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, border-color 0.3s, width 0.3s;
}

.hero__dot.is-active {
  background: #155BD9;
  border-color: #155BD9;
  width: 22px;
  border-radius: 4px;
}

/* ============================================================
   無料体験会CTAバナー（写真エリア左下）
   ============================================================ */
.hero__photo-cta {
  position: absolute;
  bottom: 40px;
  left: 48px;
  z-index: 10;
}

.hero__photo-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 20px;              /* 14px × 140% */
  padding: 22px 34px 22px 28px;  /* 16/24/16/20 × 140% */
  background: linear-gradient(135deg, #0d1f4e 0%, #155BD9 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 20px;    /* 14px × 140% */
  box-shadow:
    0 6px 28px rgba(21, 91, 217, 0.50),
    0 1px 4px rgba(0,0,0,0.25);
  backdrop-filter: blur(4px);
  border: 1.5px solid rgba(255,255,255,0.18);
  position: relative;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

/* シマーエフェクト */
.hero__photo-cta-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 30%,
    rgba(255,255,255,0.18) 50%,
    transparent 70%
  );
  transform: translateX(-100%);
  transition: transform 0.65s ease;
}
.hero__photo-cta-btn:hover::before {
  transform: translateX(100%);
}
.hero__photo-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow:
    0 10px 36px rgba(21, 91, 217, 0.60),
    0 2px 8px rgba(0,0,0,0.3);
}

/* アイコン丸 */
.hero__photo-cta-btn__icon {
  flex-shrink: 0;
  width: 50px;            /* 36px × 140% */
  height: 50px;
  background: rgba(255,255,255,0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.30);
}
.hero__photo-cta-btn__icon svg {
  width: 25px;            /* 18px × 140% */
  height: 25px;
}

/* テキスト */
.hero__photo-cta-btn__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero__photo-cta-btn__text-sub {
  font-size: 14px;        /* 10px × 140% */
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.08em;
}
.hero__photo-cta-btn__text-main {
  font-size: 21px;        /* 15px × 140% */
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

/* 矢印 */
.hero__photo-cta-btn__arrow {
  flex-shrink: 0;
  width: 39px;            /* 28px × 140% */
  height: 39px;
  background: rgba(255,255,255,0.14);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}
.hero__photo-cta-btn__arrow svg {
  width: 20px;            /* 14px × 140% */
  height: 20px;
}
.hero__photo-cta-btn:hover .hero__photo-cta-btn__arrow {
  transform: translateX(4px);
}

/* ============================================================
   前後矢印（写真エリア左下）
   ============================================================ */
.hero__arrows {
  position: absolute;
  right: calc(var(--side-sync-width) + 48px);
  bottom: 40px;
  z-index: 10;
  display: flex;
  gap: 10px;
}

.hero__arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.35);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.hero__arrow:hover {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.7);
  transform: scale(1.1);
}

.hero__arrow svg {
  width: 18px;
  height: 18px;
}

/* ============================================================
   スクロール促進インジケーター
   ============================================================ */
.hero__scroll {
  position: absolute;
  bottom: 36px;
  right: calc(var(--side-sync-width) + 28px);      /* 白パネルの左側 */
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.hero__scroll-line {
  display: block;
  width: 1.5px;
  height: 36px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.6));
  animation: scrollPulse 1.8s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.7); }
  50%       { opacity: 1;   transform: scaleY(1);   }
}

.hero__scroll-text {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* タブレット（〜900px）：パネル幅を広げてテキスト確保 */
@media (max-width: 900px) {
  .hero {
    height: calc((100vh - 68px) * 1.2);  /* 120%に拡大 */
    min-height: 480px;
    max-height: 936px;
  }

  .hero__photo {
    right: 30%;
  }

  .hero__catch-band {
    right: 30%;
    padding: 24px 28px 0;
    height: 56%;
  }

  .hero__panel {
    width: 30%;
    padding: 24px 18px 20px;
  }

  .hero__catch-copy-main  { font-size: clamp(20px, 3.5vw, 34px); }
  .hero__catch-copy-accent { font-size: clamp(24px, 4vw, 40px); }

  .hero__instructor-avatar { width: 48px; height: 48px; }
  .hero__instructor-name   { font-size: 16px; }

  .hero__scroll { right: calc(30% + 16px); }

  .hero__arrows { right: calc(30% + 24px); bottom: 20px; }
  .hero__photo-cta { left: 24px; bottom: 20px; }
  .hero__photo-cta-btn { gap: 14px; padding: 16px 22px 16px 18px; }
  .hero__photo-cta-btn__icon { width: 40px; height: 40px; }
  .hero__photo-cta-btn__icon svg { width: 20px; height: 20px; }
  .hero__photo-cta-btn__text-sub  { font-size: 11px; }
  .hero__photo-cta-btn__text-main { font-size: 16px; }
  .hero__photo-cta-btn__arrow { width: 32px; height: 32px; }
  .hero__photo-cta-btn__arrow svg { width: 16px; height: 16px; }
}

/* スマホ（〜600px）：スタック縦レイアウトに切替 */
@media (max-width: 600px) {
  .hero {
    flex-direction: column;
    height: auto;
    min-height: 100svh;
    max-height: none;
  }

  /* 写真を上部 60% */
  .hero__photo {
    position: relative;
    right: 0;
    height: 60svh;
    min-height: 280px;
    flex-shrink: 0;
  }

  /* キャッチは写真エリア内に */
  .hero__catch-band {
    position: absolute;
    right: 0;
    height: 68%;
    padding: 18px 20px 0;
  }

  /* 白パネルを下部 */
  .hero__panel {
    position: relative;
    width: 100%;
    height: auto;
    min-height: auto;
    box-shadow: 0 -4px 20px rgba(8,14,35,0.12);
    padding: 20px 20px 28px;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
    align-items: flex-start;
  }

  .hero__panel-logo    { flex: 0 0 100%; margin-bottom: 0; }
  .hero__panel-divider { flex: 0 0 100%; margin: 4px 0; }

  .hero__instructor        { flex: 0 0 auto; }
  .hero__instructor-profile { flex: 1; font-size: 13.2px; }

  .hero__panel-cta  { flex: 0 0 100%; margin-top: 0; }
  .hero__panel-note { flex: 0 0 100%; }
  .hero__panel-dots { flex: 0 0 100%; }

  .hero__arrows { display: none; }
  .hero__scroll { display: none; }
  .hero__photo-cta {
    position: relative;
    bottom: auto;
    left: auto;
    flex: 0 0 100%;
    order: 10;
  }
  .hero__photo-cta-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================================
   Hero tweak — catch copy refresh
   ============================================================ */
.hero__catch-label {
  letter-spacing: 0.28em;
}

.hero__catch-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.02;
  margin-bottom: 16px;
}

.hero__catch-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1.5px solid rgba(255,255,255,0.86);
  background: rgba(255,255,255,0.12);
  color: #ffffff;
  font-size: clamp(18px, 2.2vw, 30px);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-shadow: 0 1px 10px rgba(0,0,0,0.35);
  backdrop-filter: blur(6px);
}

.hero__catch-copy-accent,
.hero__catch-copy-main {
  display: block;
}

.hero__catch-copy-accent {
  line-height: 0.96;
}

.hero__catch-copy-main {
  line-height: 1.06;
}

@media (max-width: 900px) {
  .hero__catch-badge {
    min-height: 34px;
    padding: 0 14px;
    font-size: clamp(16px, 2.6vw, 22px);
  }
}

@media (max-width: 600px) {
  .hero__catch-copy {
    gap: 6px;
  }

  .hero__catch-badge {
    min-height: 30px;
    padding: 0 12px;
    font-size: 15px;
  }
}

/* ============================================================
   Mobile optimization — hero
   ============================================================ */
@media (max-width: 768px) {
  .hero {
    border-radius: 0 0 22px 22px;
    min-height: auto;
  }
}

@media (max-width: 600px) {
  .hero {
    min-height: auto;
    background: #0a0f1e;
  }

  .hero__photo {
    height: 56svh;
    min-height: 260px;
  }

  .hero__catch-band {
    height: 100%;
    padding: 18px 16px 0;
    align-items: flex-end;
  }

  .hero__catch-inner {
    width: 100%;
    max-width: 100%;
    padding-bottom: 14px;
    transform: translateY(0);
  }

  .hero__catch-label {
    font-size: 9px;
    margin-bottom: 10px;
  }

  .hero__catch-label::before {
    width: 20px;
  }

  .hero__catch-copy-main {
    font-size: clamp(24px, 7.5vw, 34px);
  }

  .hero__catch-copy-accent {
    font-size: clamp(28px, 9vw, 42px);
  }

  .hero__catch-badge {
    min-height: 28px;
    padding: 0 11px;
    font-size: 14px;
    letter-spacing: 0.08em;
  }

  .hero__catch-sub {
    font-size: 11px;
    line-height: 1.7;
    letter-spacing: 0.04em;
    max-width: 24em;
  }

  .hero__panel {
    padding: 16px 16px 20px;
    gap: 12px;
  }

  .hero__instructor {
    width: 100%;
    margin-bottom: 0;
    gap: 10px;
  }

  .hero__instructor-photo {
    max-width: 164px;
    margin: 0 auto;
    border-radius: 12px;
  }

  .hero__instructor-photo-label {
    width: 100%;
    text-align: center;
    align-items: center;
  }

  .hero__instructor-role {
    font-size: 8px;
  }

  .hero__instructor-name {
    font-size: 17px;
  }

  .hero__instructor-name span {
    font-size: 10px;
  }

  .hero__instructor-profile {
    flex: 0 0 100%;
    font-size: 12.6px;
    line-height: 1.72;
  }

  .hero__panel-note {
    font-size: 9px;
    margin-top: 0;
  }

  .hero__panel-dots {
    padding-top: 10px;
  }

  .hero__dot {
    width: 7px;
    height: 7px;
  }

  .hero__dot.is-active {
    width: 18px;
  }

  .hero__photo-cta-btn {
    gap: 10px;
    padding: 13px 14px;
    border-radius: 14px;
  }

  .hero__photo-cta-btn__icon {
    width: 34px;
    height: 34px;
  }

  .hero__photo-cta-btn__icon svg {
    width: 17px;
    height: 17px;
  }

  .hero__photo-cta-btn__text-sub {
    font-size: 10px;
  }

  .hero__photo-cta-btn__text-main {
    font-size: 14px;
    letter-spacing: 0.02em;
  }

  .hero__photo-cta-btn__arrow {
    width: 28px;
    height: 28px;
  }

  .hero__photo-cta-btn__arrow svg {
    width: 14px;
    height: 14px;
  }
}

@media (max-width: 380px) {
  .hero__photo {
    height: 52svh;
    min-height: 236px;
  }

  .hero__catch-copy-main {
    font-size: 22px;
  }

  .hero__catch-copy-accent {
    font-size: 30px;
  }

  .hero__catch-sub {
    font-size: 10px;
  }
}

/* ============================================================
   Hero catch override — match provided reference layout
   ============================================================ */
.hero__photo-overlay {
  background: linear-gradient(
    to right,
    rgba(4, 12, 40, 0.30) 0%,
    rgba(4, 12, 40, 0.16) 36%,
    rgba(4, 12, 40, 0.05) 62%,
    rgba(4, 12, 40, 0.00) 82%
  );
}

.hero__catch-band {
  top: 0;
  left: 0;
  right: var(--side-sync-width);
  height: 100%;
  padding: 0 0 0 clamp(32px, 4vw, 56px);
  display: flex;
  align-items: center;
  pointer-events: none;
  overflow: hidden;
}

.hero__catch-band::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: min(58%, 700px);
  background: linear-gradient(
    90deg,
    rgba(2, 10, 36, 0.98) 0%,
    rgba(4, 19, 66, 0.94) 42%,
    rgba(6, 33, 100, 0.78) 68%,
    rgba(6, 33, 100, 0.00) 100%
  );
  clip-path: polygon(0 0, 82% 0, 60% 100%, 0 100%);
  z-index: 0;
}

.hero__catch-inner {
  position: relative;
  z-index: 1;
  width: min(520px, 62%);
  padding-bottom: 0;
  transform: none;
  pointer-events: auto;
}

.hero__catch-lead {
  margin: 0 0 2px;
  color: #ffffff;
  font-size: clamp(28px, 3vw, 46px);
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.05;
  text-shadow: 0 4px 22px rgba(0, 0, 0, 0.28);
}

.hero__catch-title {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  line-height: 0.9;
}

.hero__catch-title-accent,
.hero__catch-title-main {
  display: block;
  font-size: clamp(58px, 6.4vw, 96px);
  font-weight: 800;
  letter-spacing: -0.01em;
}

.hero__catch-title-accent {
  margin-top: 2px;
  color: #49a4ff;
  text-shadow: 0 6px 22px rgba(29, 122, 255, 0.22);
}

.hero__catch-title-main {
  color: #ffffff;
  text-shadow: 0 4px 22px rgba(0, 0, 0, 0.28);
}

.hero__catch-ribbon {
  margin: 14px 0 12px;
}

.hero__catch-ribbon span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 360px;
  min-height: 46px;
  padding: 0 28px;
  color: #ffffff;
  font-size: clamp(20px, 2.05vw, 30px);
  font-weight: 900;
  letter-spacing: 0.18em;
  background: linear-gradient(180deg, #0f47b7 0%, #093493 100%);
  clip-path: polygon(16px 0, 100% 0, calc(100% - 16px) 100%, 0 100%);
  box-shadow: 0 10px 24px rgba(10, 42, 122, 0.26);
}

.hero__catch-note {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(14px, 1.28vw, 21px);
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.30);
}

.hero__catch-cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-width: 346px;
  min-height: 70px;
  padding: 0 26px 0 32px;
  border-radius: 999px;
  color: #ffffff;
  text-decoration: none;
  background: linear-gradient(180deg, #4e8fff 0%, #2569eb 100%);
  border: 2px solid rgba(187, 236, 255, 0.92);
  box-shadow:
    0 0 0 1px rgba(153, 226, 255, 0.34) inset,
    0 0 22px rgba(96, 190, 255, 0.60),
    0 10px 26px rgba(18, 86, 204, 0.34);
}

.hero__catch-cta:hover {
  transform: translateY(-1px);
  box-shadow:
    0 0 0 1px rgba(153, 226, 255, 0.38) inset,
    0 0 28px rgba(96, 190, 255, 0.72),
    0 12px 28px rgba(18, 86, 204, 0.40);
}

.hero__catch-cta-text {
  display: block;
  color: #ffffff;
  font-size: clamp(18px, 1.8vw, 30px);
  font-weight: 900;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.hero__catch-cta-arrow {
  flex-shrink: 0;
  font-size: 34px;
  line-height: 1;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.96);
  transform: translateY(-1px);
}

.hero__photo-cta {
  display: none;
}

@media (max-width: 900px) {
  .hero__catch-band {
    padding-left: 26px;
  }

  .hero__catch-band::before {
    width: min(70%, 560px);
    clip-path: polygon(0 0, 84% 0, 62% 100%, 0 100%);
  }

  .hero__catch-inner {
    width: min(460px, 72%);
  }

  .hero__catch-ribbon span {
    min-width: 292px;
    min-height: 40px;
    font-size: 18px;
  }

  .hero__catch-cta {
    min-width: 292px;
    min-height: 60px;
    padding: 0 22px 0 26px;
  }

  .hero__catch-cta-text {
    font-size: 17px;
  }
}

@media (max-width: 600px) {
  .hero__catch-band {
    padding: 0 16px;
    align-items: center;
  }

  .hero__catch-band::before {
    width: 100%;
    clip-path: none;
    background: linear-gradient(
      90deg,
      rgba(2, 10, 36, 0.90) 0%,
      rgba(4, 19, 66, 0.78) 48%,
      rgba(6, 33, 100, 0.16) 100%
    );
  }

  .hero__catch-inner {
    width: 100%;
    max-width: 330px;
    transform: translateY(0);
  }

  .hero__catch-lead {
    font-size: 22px;
    margin-bottom: 4px;
  }

  .hero__catch-title-accent,
  .hero__catch-title-main {
    font-size: clamp(42px, 11vw, 54px);
  }

  .hero__catch-ribbon {
    margin: 12px 0 10px;
  }

  .hero__catch-ribbon span {
    min-width: 240px;
    min-height: 34px;
    padding: 0 18px;
    font-size: 15px;
    letter-spacing: 0.12em;
  }

  .hero__catch-note {
    margin-bottom: 16px;
    font-size: 11px;
    letter-spacing: 0.08em;
  }

  .hero__catch-cta {
    min-width: 248px;
    min-height: 48px;
    padding: 0 18px 0 20px;
  }

  .hero__catch-cta-text {
    font-size: 14px;
  }

  .hero__catch-cta-arrow {
    font-size: 26px;
  }
}

/* ============================================================
   Responsive fix — smartphone hero compact layout
   ============================================================ */
@media (max-width: 900px) {
  .hero__panel {
    padding: 18px 16px 18px;
  }

  .hero__instructor-profile {
    font-size: 12.5px;
    line-height: 1.7;
  }
}

@media (max-width: 768px) {
  .hero {
    display: block;
    height: auto;
    min-height: 0;
    max-height: none;
    background: #0a0f1e;
  }

  .hero__photo {
    position: relative;
    inset: auto;
    right: auto;
    width: 100%;
    height: clamp(180px, 33svh, 260px);
    min-height: 180px;
  }

  .hero__photo-slide,
  .hero__photo-slide--1,
  .hero__photo-slide--2 {
    background-position: left center;
  }

  .hero__photo-overlay {
    background: linear-gradient(
      90deg,
      rgba(2, 10, 36, 0.94) 0%,
      rgba(4, 19, 66, 0.84) 44%,
      rgba(6, 33, 100, 0.26) 78%,
      rgba(6, 33, 100, 0.00) 100%
    );
  }

  .hero__catch-band {
    inset: 0;
    right: 0;
    height: 100%;
    padding: 0 14px 10px;
    align-items: flex-end;
  }

  .hero__catch-band::before {
    width: 100%;
    clip-path: none;
    background: linear-gradient(
      90deg,
      rgba(2, 10, 36, 0.94) 0%,
      rgba(4, 19, 66, 0.86) 48%,
      rgba(6, 33, 100, 0.24) 82%,
      rgba(6, 33, 100, 0.00) 100%
    );
  }

  .hero__catch-inner {
    width: min(86vw, 300px);
    max-width: 300px;
    padding-bottom: 0;
  }

  .hero__catch-lead {
    font-size: 16px;
    margin-bottom: 2px;
  }

  .hero__catch-title-accent,
  .hero__catch-title-main {
    font-size: clamp(28px, 8.8vw, 40px);
    line-height: 0.96;
  }

  .hero__catch-ribbon {
    margin: 8px 0 8px;
  }

  .hero__catch-ribbon span {
    min-width: 0;
    min-height: 26px;
    padding: 0 12px;
    font-size: 12px;
    letter-spacing: 0.08em;
  }

  .hero__catch-note {
    margin-bottom: 10px;
    font-size: 9px;
    letter-spacing: 0.04em;
  }

  .hero__catch-cta {
    min-width: 0;
    width: min(100%, 220px);
    min-height: 38px;
    padding: 0 14px 0 16px;
  }

  .hero__catch-cta-text {
    font-size: 12px;
  }

  .hero__catch-cta-arrow {
    font-size: 20px;
  }

  .hero__panel,
  .hero__instructor,
  .hero__instructor-photo,
  .hero__instructor-photo-label,
  .hero__instructor-profile,
  .hero__panel-note,
  .hero__arrows,
  .hero__scroll,
  .hero__photo-cta {
    display: none !important;
  }
}

@media (max-width: 380px) {
  .hero__photo {
    height: clamp(160px, 30svh, 220px);
    min-height: 160px;
  }

  .hero__catch-inner {
    width: min(90vw, 280px);
  }

  .hero__catch-title-accent,
  .hero__catch-title-main {
    font-size: clamp(24px, 8.4vw, 34px);
  }
}

/* ============================================================
   Final responsive polish — hide Lise area on tablet too
   ============================================================ */
@media (max-width: 900px) {
  .hero {
    height: clamp(320px, 54vw, 520px);
    min-height: 320px;
    max-height: 520px;
  }

  .hero__photo {
    right: 0;
  }

  .hero__photo-slide,
  .hero__photo-slide--1,
  .hero__photo-slide--2 {
    background-position: left center;
  }

  .hero__catch-band {
    right: 0;
    padding: 0 0 0 clamp(24px, 3.8vw, 38px);
    align-items: center;
  }

  .hero__catch-band::before {
    width: min(66%, 560px);
    clip-path: polygon(0 0, 84% 0, 62% 100%, 0 100%);
    background: linear-gradient(
      90deg,
      rgba(2, 10, 36, 0.96) 0%,
      rgba(4, 19, 66, 0.88) 44%,
      rgba(6, 33, 100, 0.28) 100%
    );
  }

  .hero__catch-inner {
    width: min(430px, 68%);
    max-width: 430px;
  }

  .hero__catch-lead {
    font-size: clamp(20px, 2.6vw, 30px);
    margin-bottom: 3px;
  }

  .hero__catch-title-accent,
  .hero__catch-title-main {
    font-size: clamp(44px, 6vw, 72px);
  }

  .hero__catch-ribbon {
    margin: 10px 0 10px;
  }

  .hero__catch-ribbon span {
    min-width: 260px;
    min-height: 38px;
    padding: 0 20px;
    font-size: clamp(15px, 1.85vw, 20px);
    letter-spacing: 0.12em;
  }

  .hero__catch-note {
    margin-bottom: 14px;
    font-size: clamp(11px, 1.3vw, 14px);
    letter-spacing: 0.08em;
  }

  .hero__catch-cta {
    min-width: 260px;
    min-height: 54px;
    padding: 0 18px 0 22px;
  }

  .hero__catch-cta-text {
    font-size: clamp(14px, 1.7vw, 18px);
  }

  .hero__catch-cta-arrow {
    font-size: 28px;
  }

  .hero__panel,
  .hero__instructor,
  .hero__instructor-photo,
  .hero__instructor-photo-label,
  .hero__instructor-profile,
  .hero__panel-note {
    display: none !important;
  }

  .hero__scroll {
    right: 24px;
  }

  .hero__arrows {
    right: 24px;
    bottom: 20px;
  }
}

@media (max-width: 768px) {
  .hero__photo {
    background: #071633;
    overflow: hidden;
  }

  .hero__photo-slide {
    transition: none !important;
  }

  .hero__photo-slide--1 {
    background-image: url('../img/hero_mobile_2.jpg');
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-position: right center;
    opacity: 1 !important;
    transform: none !important;
    z-index: 1;
  }

  .hero__photo-slide--2 {
    display: none !important;
    background-image: none !important;
    opacity: 0 !important;
  }

  .hero__catch-band {
    inset: 0;
    right: 0;
    padding: 20px 14px 0;
    align-items: flex-start;
  }

  .hero__catch-band::before {
    width: 100%;
    clip-path: none;
    background: linear-gradient(
      90deg,
      rgba(2, 10, 36, 0.96) 0%,
      rgba(4, 19, 66, 0.90) 36%,
      rgba(6, 33, 100, 0.38) 64%,
      rgba(6, 33, 100, 0.08) 82%,
      rgba(6, 33, 100, 0.00) 100%
    );
  }

  .hero__catch-inner {
    width: min(82vw, 278px);
    max-width: 278px;
    padding-top: 0;
    margin-top: 10px;
  }

  .hero__catch-ribbon {
    margin: 7px 0 8px;
  }

  .hero__catch-ribbon span {
    min-height: 24px;
    padding: 0 11px;
    font-size: 11px;
  }

  .hero__catch-note {
    margin-bottom: 8px;
  }

  .hero__catch-cta {
    width: min(100%, 210px);
    min-height: 36px;
  }

  .hero__catch-cta-text {
    font-size: 11.5px;
  }
}

@media (max-width: 480px) {
  .hero__photo-slide--1 {
    background-size: auto 102%;
    background-position: right center;
  }

  .hero__catch-inner {
    width: min(80vw, 264px);
    max-width: 264px;
    margin-top: 10px;
  }
}


