*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 17px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Serif JP', serif;
  font-weight: 300;
  color: #1a0a2e;
  background: #0a0612;
  overflow-x: hidden;
  line-height: 2;
}

a { color: #7b2d8e; text-decoration: underline; }
a:hover { color: #a855f7; }

strong { font-weight: 500; color: #4a1a6e; }

img { max-width: 100%; height: auto; }

.clear { clear: both; }

/* ── Container ── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 50px 40px;
}
.container-narrow {
  max-width: 900px;
  margin: 0 auto;
  padding: 50px 40px;
}

/* ── Row backgrounds ── */
.row {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.row::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(243, 239, 243, 0.88);
}

.row > .container,
.row > .container-narrow {
  position: relative;
  z-index: 1;
}

/* ── TOP HERO ── */
.row-top-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-attachment: fixed;
}
.row-top-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 6, 18, 0.45);
}

.top-hero-title {
  font-family: 'BJ Cree', 'Noto Serif JP', serif;
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: normal;
  letter-spacing: 0.2em;
  margin-bottom: 10px;
  color: #ffffff;
  text-shadow: 0 0 30px rgba(255,255,255,0.5), 0 0 60px rgba(200,180,255,0.3), 0 4px 20px rgba(0,0,0,0.5);
}
.top-hero-subtitle {
  font-size: 1.6rem;
  font-weight: 300;
  color: #f3eff3;
  letter-spacing: 0.4em;
  margin-bottom: 30px;
}
.top-hero-tagline {
  font-size: 1.1rem;
  color: #c9b8d8;
  line-height: 2.2;
  margin-bottom: 16px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.top-hero-role {
  font-size: 0.85rem;
  color: #a090b8;
  letter-spacing: 0.2em;
  margin-bottom: 35px;
}
.top-hero-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.top-hero-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  padding: 12px 30px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  transition: all 0.3s;
}
.top-hero-links a:hover {
  color: #ffe070;
  border-color: #ffe070;
  background: rgba(255, 224, 112, 0.1);
}

/* ── FEATURED VIDEO ── */
.row-video {
  background: #0a0612;
  padding: 30px 0;
}
.row-video::before {
  display: none;
}
.video-header {
  text-align: center;
  margin-bottom: 30px;
}
.video-diamond {
  width: 10px;
  height: 10px;
  border: 2px solid rgba(255, 224, 112, 0.6);
  transform: rotate(45deg);
  margin: 0 auto 16px;
}
.video-eyebrow {
  font-size: 0.75rem;
  color: #d4a020;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.video-title {
  font-size: 1.6rem;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0.2em;
  margin-bottom: 16px;
  text-shadow: 0 0 20px rgba(255,255,255,0.2);
}
.video-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,224,112,0.6), transparent);
  margin: 0 auto;
}
.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding-bottom: 50.625%;
  max-height: 506px;
  height: 0;
  overflow: hidden;
  box-shadow: 0 10px 50px rgba(0,0,0,0.5);
  border: 2px solid rgba(255, 224, 112, 0.25);
}
.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ── STORY ── */
.row-story {
  background-attachment: fixed;
}
.row-story::before {
  background: rgba(10, 6, 18, 0.78);
}

.story-block-left {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
.story-photo {
  width: 240px;
  min-height: 320px;
  object-fit: cover;
  object-position: top;
  border: 2px solid rgba(255, 224, 112, 0.3);
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
  flex-shrink: 0;
  position: sticky;
  top: 80px;
}
.story-content {
  max-width: 45em;
}
.story-content p {
  font-size: 1.05rem;
  line-height: 2.2;
  margin-bottom: 14px;
  color: #d0c8e0;
}
.story-content strong {
  color: #ffe070;
}
.story-section-title {
  font-size: 1.3rem;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 16px;
  margin-top: 8px;
  text-shadow: 0 0 15px rgba(255,255,255,0.2);
}
.story-divider {
  width: 40px;
  height: 1px;
  background: linear-gradient(to right, rgba(255,224,112,0.5), transparent);
  margin: 30px 0;
}
.story-video-link {
  margin: 10px 0 0;
}
.story-video-link a {
  color: #ffe070;
  text-decoration: none;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(255,224,112,0.3);
  padding-bottom: 2px;
  transition: border-color 0.3s;
}
.story-video-link a:hover {
  border-color: #ffe070;
}

@media (max-width: 768px) {
  .story-block-left {
    flex-direction: column;
    align-items: center;
  }
  .story-photo {
    width: 200px;
    min-height: auto;
    height: 260px;
    position: static;
  }
  .row-story {
    background-attachment: scroll;
  }
}

/* Workshop hero dark navy */
.row-hero {
  background-size: cover;
  background-position: center;
}
.hero-title-white {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  background: none !important;
  text-shadow: 0 0 30px rgba(100,150,255,0.3), 0 4px 20px rgba(0,0,0,0.5);
}

.capacity-note {
  margin-top: 16px;
  padding: 16px 20px;
  background: rgba(123, 45, 142, 0.08);
  border-left: 3px solid #7b2d8e;
  font-size: 0.9rem;
  line-height: 1.9;
  color: #4a1a6e;
}

@media (max-width: 768px) {
  .row-top-hero {
    background-attachment: scroll;
  }
}

/* ── HERO ── */
.row-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-attachment: fixed;
}
.row-hero::before {
  background: rgba(10, 15, 35, 0.4);
}
.row-hero-navy {
  background: radial-gradient(ellipse at 50% 70%, #162040 0%, #0a1228 40%, #060d1e 100%) !important;
}
.row-hero-navy::before {
  display: none;
}

.hero-container {
  color: #f3eff3;
}

.hero-badge {
  display: inline-block;
  border: 2px solid #d4a020;
  color: #d4a020;
  padding: 8px 30px;
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  margin-bottom: 20px;
}

.certificate-image {
  margin-bottom: 30px;
}
.certificate-img {
  max-width: 360px;
  border: 3px solid rgba(212, 160, 32, 0.4);
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
}

/* Target & Effects section */
.row-target {
  background: #f3eff3;
  text-align: center;
}
.row-target::before {
  display: none;
}
.certificate-section {
  margin-bottom: 40px;
}
.certificate-img-light {
  max-width: 400px;
  width: 100%;
  border: 3px solid #c9b8d8;
  box-shadow: 0 6px 30px rgba(0,0,0,0.12);
}
.certificate-caption {
  font-size: 0.85rem;
  color: #7b2d8e;
  letter-spacing: 0.15em;
  margin-top: 12px;
}
.target-list {
  max-width: 500px;
  margin: 0 auto 30px;
  text-align: left;
}
.row-target .benefit-item {
  color: #3a2a4a;
}
.row-target .highlight-box {
  text-align: left;
}

.row-final-cta {
  background: #f3eff3;
  text-align: center;
  padding: 20px 0;
}
.row-final-cta::before {
  display: none;
}
.final-cta-note {
  color: #666;
  font-size: 0.9rem;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #d4a020, #ffe070, #d4a020);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.3rem;
  font-weight: 300;
  color: #c9b8d8;
  letter-spacing: 0.2em;
  margin-bottom: 30px;
}

.hero-lead {
  font-size: 1.4rem;
  font-weight: 400;
  color: #f3eff3;
  line-height: 2.2;
  margin-bottom: 30px;
}

.hero-enrollment {
  margin-bottom: 35px;
}
.enrollment-closed {
  font-size: 1rem;
  color: #a090b8;
  letter-spacing: 0.15em;
  margin-bottom: 6px;
  text-decoration: line-through;
}
.enrollment-open {
  font-size: 1.2rem;
  color: #ffe070;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.hero-benefits {
  text-align: left;
  max-width: 500px;
  margin: 0 auto 40px;
}

.benefit-item {
  font-size: 1.05rem;
  color: #e8e0f0;
  padding: 6px 0;
  padding-left: 30px;
  position: relative;
  line-height: 1.8;
}
.benefit-item::before {
  content: '\2726';
  position: absolute;
  left: 0;
  color: #d4a020;
  font-size: 1.1rem;
}

/* ── CTA ── */
.cta-button {
  display: inline-block;
  padding: 18px 50px;
  background: linear-gradient(135deg, #7b2d8e, #a855f7);
  color: #fff;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(123, 45, 142, 0.4);
}
.cta-button:hover {
  background: linear-gradient(135deg, #9333ea, #c084fc);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(123, 45, 142, 0.6);
}
.cta-large {
  font-size: 1.4rem;
  padding: 22px 60px;
}

/* ── MESSAGE SECTION ── */
.row-message::before {
  background: rgba(243, 239, 243, 0.92);
}

.float-photo {
  float: right;
  max-width: 45%;
  margin: 0 0 20px 30px;
  border: 4px solid #d9d2e9;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.float-left {
  float: left;
  margin: 0 30px 20px 0;
}

.message-block h2 {
  font-size: 1.75rem;
  font-weight: 500;
  color: #4a1a6e;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.message-block p {
  font-size: 1.1rem;
  margin-bottom: 16px;
  line-height: 2.2;
}

.image-break {
  margin: 40px 0;
  text-align: center;
}
.full-image {
  width: 100%;
  border: 4px solid #d9d2e9;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* ── LEARN SECTION ── */
.row-learn {
  background-attachment: fixed;
}
.row-learn::before {
  background: rgba(217, 210, 233, 0.90);
}

.section-title {
  font-size: 2.1rem;
  font-weight: 700;
  color: #4a1a6e;
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: 0.08em;
}

.learn-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.learn-item {
  background: rgba(255,255,255,0.7);
  padding: 25px;
  border-left: 4px solid #7b2d8e;
}
.learn-item h4 {
  font-size: 1.15rem;
  font-weight: 500;
  color: #4a1a6e;
  margin-bottom: 8px;
}
.learn-item p {
  font-size: 0.95rem;
  color: #3a2a4a;
  line-height: 1.8;
}

/* ── RESONANCE SECTION ── */
.row-resonance {
  background-attachment: fixed;
}
.row-resonance::before {
  background: rgba(243, 239, 243, 0.90);
}

.resonance-text {
  margin-bottom: 30px;
}
.resonance-text p {
  font-size: 1.15rem;
  line-height: 2.2;
  margin-bottom: 16px;
}

.highlight-box {
  background: #d9d2e9;
  padding: 30px 35px;
  border-left: 6px solid #7b2d8e;
  margin: 30px 0;
}
.highlight-box h3 {
  font-size: 1.5rem;
  font-weight: 500;
  color: #4a1a6e;
  margin-bottom: 12px;
}
.highlight-box p {
  font-size: 1.05rem;
  line-height: 2;
  margin-bottom: 10px;
}

/* ── SCHEDULE SECTION ── */
.row-schedule {
  background-attachment: fixed;
  text-align: center;
}
.row-schedule .details-table,
.row-schedule .schedule-card {
  text-align: left;
}
.row-schedule::before {
  background: rgba(217, 210, 233, 0.88);
}

.schedule-note {
  font-size: 1.2rem;
  text-align: center;
  color: #4a1a6e;
  font-weight: 400;
  margin-bottom: 40px;
  line-height: 2;
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.schedule-card {
  background: rgba(255,255,255,0.85);
  padding: 30px;
  border-top: 5px solid #7b2d8e;
  box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}
.schedule-day {
  display: inline-block;
  background: #7b2d8e;
  color: #fff;
  padding: 4px 16px;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.schedule-card h3 {
  font-size: 1.4rem;
  font-weight: 500;
  color: #4a1a6e;
  margin-bottom: 10px;
}
.schedule-date {
  font-size: 1.1rem;
  font-weight: 400;
  color: #1a0a2e;
  margin-bottom: 4px;
}
.schedule-time {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 4px;
  line-height: 1.6;
}
.schedule-duration {
  font-size: 0.85rem;
  color: #7b2d8e;
  font-weight: 500;
  margin-bottom: 15px;
}
.schedule-card ul {
  list-style: none;
  padding: 0;
}
.schedule-card li {
  font-size: 0.95rem;
  padding: 5px 0 5px 20px;
  position: relative;
  color: #3a2a4a;
}
.schedule-card li::before {
  content: '\2022';
  position: absolute;
  left: 0;
  color: #7b2d8e;
  font-size: 1.2rem;
}

/* Details Table */
.details-table {
  background: rgba(255,255,255,0.85);
  padding: 30px;
  margin: 30px 0;
  box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}
.details-table h3 {
  font-size: 1.5rem;
  font-weight: 500;
  color: #4a1a6e;
  margin-bottom: 20px;
  text-align: center;
}
.details-table table {
  width: 100%;
  border-collapse: collapse;
}
.details-table th {
  text-align: left;
  vertical-align: top;
  padding: 12px 15px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #4a1a6e;
  background: #ece4f0;
  width: 120px;
  border-bottom: 1px solid #d9d2e9;
}
.details-table td {
  padding: 12px 15px;
  font-size: 0.95rem;
  line-height: 1.8;
  border-bottom: 1px solid #ece4f0;
}
.price {
  font-size: 1.6rem;
  color: #7b2d8e;
}
.price-note {
  font-size: 0.8rem;
  color: #888;
}

/* Soldout Banner */
.soldout-banner {
  background: #b22222;
  color: #fff;
  text-align: center;
  padding: 15px;
  margin: 30px 0 10px;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.3em;
}

.next-term {
  text-align: center;
  padding: 20px;
  font-size: 1.3rem;
  color: #4a1a6e;
  margin-bottom: 30px;
}
.next-term strong {
  font-size: 1.6rem;
  color: #7b2d8e;
}

/* ── FIRST COHORT TESTIMONIALS ── */
.row-first-cohort {
  background: #f8f5fb;
}
.row-first-cohort::before {
  display: none;
}
.cohort-intro {
  text-align: center;
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 36px;
  line-height: 1.8;
}
.cohort-card {
  background: #fff;
  border-radius: 8px;
  padding: 24px 28px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(74, 26, 110, 0.07);
  border: 1px solid #ece5f2;
}
.cohort-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f0ecf5;
}
.cohort-name {
  font-weight: 700;
  font-size: 1.05rem;
  color: #4a1a6e;
}
.cohort-date {
  font-size: 0.8rem;
  color: #aaa;
}
.cohort-photo-wrap {
  margin-bottom: 16px;
  text-align: center;
}
.cohort-photo {
  max-width: 100%;
  max-height: 320px;
  border-radius: 6px;
  display: inline-block;
  border: 1px solid #eee;
}
.cohort-text {
  font-size: 0.95rem;
  line-height: 1.95;
  color: #444;
  white-space: pre-line;
  margin: 0;
}
.cohort-more {
  text-align: center;
  margin-top: 30px;
  font-size: 0.9rem;
}
.cohort-more a {
  color: #7b2d8e;
  text-decoration: none;
  border-bottom: 1px solid #d9c6e3;
  padding-bottom: 2px;
}
.cohort-more a:hover {
  color: #4a1a6e;
  border-bottom-color: #7b2d8e;
}
@media (max-width: 600px) {
  .cohort-card {
    padding: 20px 18px;
  }
  .cohort-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}

/* ── PROFILE SECTION ── */
.row-profile {
  background: #f3eff3;
}
.row-profile::before {
  display: none;
}

.profile-block {
  text-align: center;
}
.profile-photo {
  width: 300px;
  height: 300px;
  object-fit: cover;
  object-position: top;
  border: 5px solid #d9d2e9;
  box-shadow: 0 4px 30px rgba(0,0,0,0.1);
  margin-bottom: 20px;
}
.profile-block h3 {
  font-size: 1.75rem;
  font-weight: 500;
  color: #4a1a6e;
  margin-bottom: 5px;
}
.profile-title {
  font-size: 0.95rem;
  color: #7b2d8e;
  letter-spacing: 0.15em;
  margin-bottom: 20px;
}
.profile-block p {
  font-size: 1.05rem;
  text-align: left;
  margin-bottom: 14px;
  line-height: 2;
}
.profile-services {
  list-style: none;
  padding: 20px 0;
  text-align: left;
}
.profile-services li {
  padding: 6px 0;
  font-size: 1.05rem;
}
.profile-services a {
  color: #7b2d8e;
  font-weight: 400;
}

/* ── CLOSING SECTION ── */
.row-closing {
  text-align: center;
  background-attachment: fixed;
}
.row-closing::before {
  background: rgba(10, 6, 18, 0.70);
}
.row-closing .container-narrow {
  color: #f3eff3;
}

.closing-text {
  margin-bottom: 40px;
}
.closing-text p {
  font-size: 1.3rem;
  line-height: 2.4;
  margin-bottom: 20px;
}
.closing-highlight {
  font-size: 1.8rem !important;
  color: #d4a020;
  font-weight: 500;
  margin: 30px 0 !important;
}
.closing-text strong {
  color: #ffe070;
}
.closing-note {
  color: #c9b8d8;
  font-size: 0.9rem;
  margin-top: 15px;
}

/* ── FOOTER ── */
.footer {
  background: #1a0a2e;
  color: #c9b8d8;
  text-align: center;
  padding: 40px 20px;
}
.footer-contact {
  margin-bottom: 20px;
}
.footer-contact p {
  font-size: 0.9rem;
  margin-bottom: 5px;
}
.footer-contact a {
  color: #c084fc;
}
.footer-contact strong {
  color: #f3eff3;
  font-weight: 500;
}
.footer-copy {
  font-size: 0.8rem;
  color: #6a5a7e;
  margin-top: 20px;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  html { font-size: 15px; }

  .container, .container-narrow {
    padding: 30px 20px;
  }

  .hero-title { letter-spacing: 0.05em; }

  .float-photo, .float-left {
    float: none;
    display: block;
    max-width: 100%;
    margin: 0 auto 20px;
  }

  .learn-grid, .schedule-grid {
    grid-template-columns: 1fr;
  }

  .details-table th {
    display: block;
    width: 100%;
    border-bottom: none;
    padding-bottom: 4px;
  }
  .details-table td {
    display: block;
    padding-top: 0;
    padding-left: 15px;
  }

  .profile-photo {
    width: 200px;
    height: 200px;
  }

  .cta-large {
    font-size: 1.1rem;
    padding: 18px 40px;
  }

  .row-hero, .row-learn, .row-resonance, .row-schedule, .row-closing {
    background-attachment: scroll;
  }
}

@media (max-width: 480px) {
  html { font-size: 14px; }

  .hero-badge {
    font-size: 0.75rem;
    padding: 6px 20px;
  }

  .hero-lead {
    font-size: 1.2rem;
  }

  .cta-button {
    padding: 14px 30px;
    font-size: 1rem;
  }
}
