:root {
  --ivory: #FAF5EF;
  --blush: #F3DEDA;
  --blush-deep: #E7C3BC;
  --taupe: #C9BEB8;
  --mauve-ink: #7C6459;
  --gold: #AD8A63;
  --ink: #3E3530;
  --white: #FFFFFF;
  --peach: #FBECDD;
  --coral: #E28A78;
  --coral-deep: #D97561;

  --font-display: "EB Garamond", serif;
  --font-jp: "Shippori Mincho", serif;
  --font-body: "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", sans-serif;

  --badge-size: 162px;
  --badge-ring-font: 15px;
  --badge-center-font: 19px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { overflow-x: clip; max-width: 100%; }

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.9;
  font-weight: 400;
}

h1, h2, h3 {
  font-family: var(--font-jp);
  font-weight: 500;
  margin: 0;
  color: var(--mauve-ink);
}

p { margin: 0 0 1em; }
a { color: var(--mauve-ink); text-decoration: none; }

.eyebrow {
  display: block;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  color: var(--gold);
  margin-bottom: 10px;
}

.script-line {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--mauve-ink);
}

.display-serif {
  font-family: var(--font-jp);
  font-weight: 500;
  line-height: 1.4;
}

.link-more {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}
.link-more:hover { color: var(--mauve-ink); border-color: var(--mauve-ink); }
.access__map-link { text-transform: none; }

.hr-short {
  display: block;
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 28px auto;
}

/* ---------- placeholder blocks ---------- */
.placeholder-block {
  position: relative;
  width: 100%;
  min-height: 160px;
  background: linear-gradient(160deg, var(--blush) 0%, #EDE3DA 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.placeholder-block::after {
  content: attr(data-label);
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.5px;
  color: var(--mauve-ink);
  background: rgba(255,255,255,0.7);
  padding: 4px 12px;
  border-radius: 20px;
}
.placeholder-block.is-circle { border-radius: 50%; }

/* ---------- real photo (same sizing as placeholder-block) ---------- */
.photo {
  position: relative;
  width: 100%;
  min-height: 160px;
  overflow: hidden;
  background: var(--blush);
}
.photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.photo.is-circle { border-radius: 50%; }

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  background: var(--mauve-ink);
  color: var(--white);
  padding: 15px 40px;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: background 0.2s;
}
.btn:hover { background: var(--gold); }
.btn--light { background: var(--white); color: var(--mauve-ink); }
.btn--light:hover { background: var(--gold); color: var(--white); }
.btn--coral { background: var(--coral); color: var(--white); }
.btn--coral:hover { background: var(--coral-deep); }
.btn--outline-light { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.85); }
.btn--outline-light:hover { background: var(--white); color: var(--mauve-ink); }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 50px;
  padding: 22px 60px;
  background: var(--ivory);
  border-top: 1px solid rgba(124,100,89,0.25);
  border-bottom: 1px solid rgba(124,100,89,0.25);
}
.nav { display: flex; gap: 30px; list-style: none; margin: 0; padding: 0; }
.nav li { list-style: none; white-space: nowrap; }
.logo-badge { margin-right: auto; }
.nav a {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink);
}
.nav a:hover { color: var(--gold); }

.logo-badge { display: inline-flex; align-items: center; }
.logo-badge__img { height: 58px; width: auto; display: block; }
.nav-actions { display: flex; align-items: center; gap: 22px; }
.nav-icon {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
}
.nav-icon:hover { color: var(--gold); }

.mobile-menu { display: contents; }
.menu-toggle-input { display: none; }
.menu-toggle { display: none; }

.btn-trial {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--coral);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 1.5px;
  padding: 8px 8px 8px 20px;
  border-radius: 999px;
  transition: background 0.2s;
}
.btn-trial span:first-child { color: var(--white); }
.btn-trial__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--white);
  color: var(--coral);
  font-size: 13px;
  line-height: 1;
}
.btn-trial:hover { background: var(--coral-deep); color: var(--white); }

/* ---------- hero ---------- */
.hero { padding: 0 24px 24px; text-align: center; background: var(--ivory); }
.hero__slider {
  position: relative;
  width: 100%;
  height: 86vh;
  min-height: 560px;
  max-height: 880px;
  overflow: hidden;
}
.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: heroFade 20s infinite;
}
.hero__slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero__slide:nth-child(1) { animation-delay: 0s; }
.hero__slide:nth-child(2) { animation-delay: 5s; }
.hero__slide:nth-child(3) { animation-delay: 10s; }
.hero__slide:nth-child(4) { animation-delay: 15s; }
@keyframes heroFade {
  0% { opacity: 0; }
  4% { opacity: 1; }
  21% { opacity: 1; }
  27% { opacity: 0; }
  100% { opacity: 0; }
}
.hero__slider::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(45,36,32,0.18) 0%, rgba(45,36,32,0.22) 55%, rgba(45,36,32,0.5) 100%);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  padding: 0 24px;
  text-align: center;
}
.hero__overlay-eyebrow {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 18px;
  opacity: 0.9;
}
.hero__overlay-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(52px, 8vw, 96px);
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 20px;
}
.hero__overlay-tag {
  color: var(--white);
  font-size: clamp(14px, 1.6vw, 18px);
  margin-bottom: 36px;
}
.hero__overlay-actions { display: flex; gap: 18px; flex-wrap: wrap; justify-content: center; }
.hero__scroll {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  margin: 0;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.hero__scroll::after {
  content: "";
  width: 1px;
  height: 34px;
  background: rgba(255,255,255,0.7);
  animation: heroScrollLine 2s infinite;
}
@keyframes heroScrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
/* ---------- concept ---------- */
.concept {
  max-width: 1200px;
  margin: 0 auto;
  padding: 110px 60px 130px;
  text-align: left;
}
.concept__title { font-size: clamp(28px, 3.6vw, 40px); margin: 14px 0 22px; }
.concept__body { font-size: 15px; max-width: 480px; margin: 0 0 6px; }
.concept__text .hr-short { margin: 28px 0; }

/* ---------- floating trial badge ---------- */
.floating-badge {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: var(--badge-size);
  height: var(--badge-size);
  z-index: 50;
  display: block;
  filter: drop-shadow(0 8px 18px rgba(62,53,48,0.25));
  transition: transform 0.2s;
}
.floating-badge:hover { transform: scale(1.06); }
.floating-badge-svg {
  width: 100%;
  height: 100%;
  animation: conceptSpin 18s linear infinite;
}
.floating-badge-bg { fill: var(--coral); }
.floating-badge-text {
  font-family: var(--font-display);
  font-size: var(--badge-ring-font);
  letter-spacing: 3px;
  fill: var(--white);
}
@keyframes conceptSpin {
  to { transform: rotate(360deg); }
}
.floating-badge-center {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.floating-badge-brand {
  font-family: var(--font-jp);
  font-weight: 600;
  font-size: var(--badge-center-font);
  line-height: 1.4;
  text-align: center;
  color: var(--white);
}

/* ---------- photo marquee ---------- */
.marquee {
  overflow: hidden;
  background: var(--ivory);
  padding: 0 0 130px;
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 40s linear infinite;
}
.marquee__item {
  flex: 0 0 auto;
  width: 300px;
  height: 220px;
  margin-right: 20px;
  overflow: hidden;
}
.marquee__item img { width: 100%; height: 100%; object-fit: cover; display: block; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- instructor ---------- */
.instructor {
  background: var(--peach);
  padding: 30px 60px;
}
.instructor__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0 40px;
  align-items: center;
  padding: 120px 0;
  max-width: 1080px;
  margin: 0 auto;
}
.instructor__name { grid-column: 1; grid-row: 1; }
.instructor__body { grid-column: 1; grid-row: 2; }
.instructor__photos { grid-column: 2; grid-row: 1 / 3; }
.instructor__script {
  font-size: 30px;
  margin-bottom: 6px;
}
.instructor__jpname {
  font-family: var(--font-jp);
  font-size: 14px;
  letter-spacing: 2px;
  color: var(--mauve-ink);
  margin-bottom: 18px;
}
.instructor__title {
  font-family: var(--font-jp);
  font-weight: 600;
  color: var(--coral-deep);
  font-size: clamp(26px, 3.8vw, 42px);
  line-height: 1.3;
  margin: 10px 0 28px;
}
.instructor__body p { font-size: 15px; max-width: 440px; margin-bottom: 22px; }
.instructor__career { max-width: 440px; margin-bottom: 30px; }
.instructor__career-text {
  font-size: 14px;
  line-height: 1.9;
  padding: 18px 20px;
  border-left: 2px solid var(--gold);
  background: rgba(255,255,255,0.35);
}
.instructor__photos {
  position: relative;
  display: flex;
  justify-content: flex-start;
  padding: 0 0 40px 0;
}
.instructor__main { width: 82%; aspect-ratio: 1/1; }
.instructor__stack {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40%;
  aspect-ratio: 4/5;
  box-shadow: 0 14px 34px rgba(62,53,48,0.18);
  border: 6px solid var(--peach);
}

/* ---------- browse / classes ---------- */
.browse {
  background: var(--blush);
  padding: 140px 60px;
  text-align: center;
}
.browse__eyebrow { text-align: center; }
.browse__title { font-size: clamp(28px, 4vw, 40px); margin-bottom: 72px; }
.browse__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px;
  max-width: 1140px;
  margin: 0 auto;
}
.browse-card { text-align: center; flex: 0 1 320px; }
.browse-card__img { aspect-ratio: 4/5; margin-bottom: 28px; }
.browse-card h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 26px;
  margin-bottom: 14px;
}
.browse-card p { font-size: 13px; padding: 0; margin-bottom: 16px; }
.browse-card__target {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: 0.5px;
  color: var(--gold);
  margin-bottom: 0;
}

/* ---------- schedule ---------- */
.schedule { padding: 140px 60px; text-align: center; }
.schedule__eyebrow { text-align: center; }
.schedule__title { font-size: clamp(26px, 3.6vw, 36px); margin-bottom: 70px; }
.timetable {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  max-width: 1200px;
  margin: 0 auto;
  border: 1px solid rgba(124,100,89,0.25);
  border-radius: 4px;
  overflow: hidden;
}
.timetable__day {
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(124,100,89,0.2);
  background: var(--white);
}
.timetable__day:last-child { border-right: none; }
.timetable__day-name {
  background: var(--mauve-ink);
  color: var(--white);
  text-align: center;
  padding: 16px 4px;
  font-family: var(--font-display);
  letter-spacing: 1.5px;
  font-size: 12px;
  text-transform: uppercase;
  margin: 0;
}
.timetable__day-name span {
  display: block;
  font-family: var(--font-jp);
  font-size: 11px;
  letter-spacing: 0;
  margin-top: 2px;
  opacity: 0.8;
}
.class-block {
  padding: 18px 10px;
  text-align: center;
  border-bottom: 1px dashed rgba(124,100,89,0.2);
}
.timetable__day .class-block:last-child { border-bottom: none; }
.class-block--accent { background: var(--blush); }
.class-block__name {
  font-family: var(--font-jp);
  font-weight: 500;
  color: var(--mauve-ink);
  font-size: 13.5px;
  line-height: 1.4;
  margin: 0 0 6px;
}
.class-block__time {
  font-family: var(--font-body);
  color: var(--gold);
  font-size: 13px;
  margin: 0 0 6px;
}
.class-block__note {
  font-size: 11px;
  color: var(--ink);
  opacity: 0.7;
  margin: 0;
}
.schedule__note {
  margin-top: 34px;
  font-size: 12px;
  color: var(--mauve-ink);
  opacity: 0.85;
}

/* ---------- pricing ---------- */
.pricing { padding: 140px 60px; text-align: center; }
.pricing__eyebrow { text-align: center; }
.pricing__title { font-size: clamp(26px, 3.6vw, 36px); margin-bottom: 70px; }
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}
.price-card {
  position: relative;
  border: 1px solid rgba(124,100,89,0.25);
  padding: 48px 30px;
}
.price-card h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 24px;
}
.price-card__age { font-size: 13px; color: var(--mauve-ink); opacity: 0.8; margin: 8px 0 30px; }
.price-card__list { list-style: none; margin: 0; padding: 0; text-align: left; }
.price-card__list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 2px;
  border-bottom: 1px dashed rgba(124,100,89,0.3);
  font-size: 14px;
  color: var(--ink);
}
.price-card__list li:last-child { border-bottom: none; }
.price-card__list li span:first-child { font-family: var(--font-body); letter-spacing: 0.5px; }
.price-card__list li span:last-child { font-family: var(--font-body); font-size: 19px; color: var(--mauve-ink); }
.pricing__note { margin-top: 44px; font-size: 13px; color: var(--mauve-ink); }

/* ---------- access ---------- */
.access { padding: 140px 60px; text-align: center; background: var(--blush); }
.access__eyebrow { text-align: center; }
.access__title { font-size: clamp(26px, 3.6vw, 36px); margin-bottom: 70px; }
.access__media {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
}
.access__exterior { aspect-ratio: 4/3.4; }
.access__col { display: flex; flex-direction: column; }
.access__map { aspect-ratio: 16/9; margin-bottom: 24px; }
.access__info { max-width: 420px; }
.access__info h3 { font-size: 20px; margin-bottom: 14px; }
.access__info p { font-size: 14px; margin-bottom: 10px; }

/* ---------- testimonial ---------- */
.testimonial {
  position: relative;
  overflow: hidden;
  background: var(--taupe);
  color: var(--white);
  text-align: center;
  padding: 140px 60px 150px;
}
.testimonial__bg { position: absolute; inset: 0; z-index: 0; }
.testimonial__bg img { width: 100%; height: 100%; object-fit: cover; display: block; }
.testimonial__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(45,36,32,0.7), rgba(45,36,32,0.8));
}
.testimonial__eyebrow { position: relative; z-index: 1; text-align: center; color: rgba(255,255,255,0.85); }
.testimonial__title { position: relative; z-index: 1; color: var(--white); font-size: clamp(26px, 3.6vw, 36px); margin-bottom: 70px; }
.testimonial__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}
.testimonial-card { display: flex; flex-direction: column; }
.quote-mark {
  font-family: var(--font-display);
  font-size: 56px;
  color: rgba(255,255,255,0.5);
  line-height: 1;
  margin-bottom: 6px;
}
.testimonial-card__quote {
  color: var(--white);
  font-style: italic;
  font-weight: 400;
  font-family: var(--font-jp);
  font-size: 19px;
  line-height: 1.6;
  margin-bottom: 18px;
}
.testimonial-card__body {
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 22px;
}
.testimonial-card__attr {
  font-family: var(--font-display);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 11px;
  color: rgba(255,255,255,0.8);
  margin-top: auto;
}

/* ---------- news ---------- */
.news { padding: 150px 60px; max-width: 1200px; margin: 0 auto; }
.news__head { margin-bottom: 60px; }
.news__title { font-size: clamp(30px, 4vw, 44px); margin: 10px 0 12px; }
.news__subtitle { font-size: 14px; color: var(--mauve-ink); }
.news__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.news-card__img { aspect-ratio: 4/3; margin-bottom: 20px; display: block; }
.news-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.news-card__date {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.5px;
  color: var(--gold);
}
.news-card__cat {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  background: var(--coral);
  padding: 3px 10px;
  border-radius: 20px;
}
.news-card__title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 17px;
  line-height: 1.5;
  margin: 0;
}
.news-card__title a { color: var(--ink); }
.news-card__title a:hover { color: var(--gold); }
.news__footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 50px;
  padding-top: 40px;
  border-top: 1px solid rgba(124,100,89,0.25);
}
.news__viewall {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: var(--mauve-ink);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 1.5px;
  padding: 8px 8px 8px 22px;
  border-radius: 999px;
  transition: background 0.2s;
}
.news__viewall:hover { background: var(--ink); }
.news__viewall-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--white);
  color: var(--mauve-ink);
  font-size: 14px;
}

/* ---------- faq ---------- */
.faq {
  max-width: 860px;
  margin: 0 auto;
  padding: 140px 60px;
  text-align: center;
}
.faq__eyebrow { text-align: center; }
.faq__title { font-size: clamp(26px, 3.6vw, 36px); margin-bottom: 60px; }
.faq__list { text-align: left; }
.faq__list details {
  border-bottom: 1px solid rgba(124,100,89,0.25);
  padding: 22px 0;
}
.faq__list summary {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 34px;
  color: var(--ink);
}
.faq__list summary::-webkit-details-marker { display: none; }
.faq__list summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: -2px;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--gold);
}
.faq__list details[open] summary::after { content: "−"; }
.faq__list p { font-size: 14px; line-height: 1.8; margin: 14px 0 0; color: var(--ink); opacity: 0.85; }

/* ---------- blog ---------- */
.blog { padding: 150px 60px 140px; text-align: center; }
.blog__eyebrow { text-align: center; }
.blog__title { font-size: clamp(30px, 4vw, 44px); margin-bottom: 40px; }
.blog__filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 70px;
}
.blog__filter {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--mauve-ink);
  border: 1px solid rgba(124,100,89,0.3);
  padding: 8px 18px;
  border-radius: 20px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.blog__filter:hover { border-color: var(--gold); color: var(--gold); }
.blog__filter.is-active { background: var(--mauve-ink); border-color: var(--mauve-ink); color: var(--white); }
.blog__empty { font-size: 14px; color: var(--ink); opacity: 0.7; padding: 40px 0 0; }
.blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}
.blog-card__img { aspect-ratio: 4/3; margin-bottom: 20px; }
.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.blog-card__cat {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  background: var(--coral);
  padding: 3px 10px;
  border-radius: 20px;
  transition: background 0.2s;
}
.blog-card__cat:hover { background: var(--coral-deep); }
.blog-card__date {
  font-family: var(--font-display);
  font-size: 12px;
  color: var(--gold);
}
.blog-card__title {
  font-family: var(--font-jp);
  font-weight: 600;
  font-size: 18px;
  line-height: 1.5;
  color: var(--ink);
  margin: 0 0 10px;
}
.blog-card__excerpt { font-size: 13.5px; line-height: 1.8; margin-bottom: 14px; }

/* ---------- cta ---------- */
.cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--blush-deep);
}
.cta__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 80px;
}
.cta__title { font-size: clamp(26px, 3.6vw, 36px); margin-bottom: 22px; }
.cta__text p:not(.eyebrow) { font-size: 15px; max-width: 380px; margin-bottom: 28px; }
.cta__text p.cta__contact-alt {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(62,53,48,0.75);
  margin-top: -14px;
}
.cta__photo { height: 100%; min-height: 420px; }
.cta__form { display: flex; flex-direction: column; gap: 16px; max-width: 420px; }
.cta__form-row { display: flex; gap: 14px; }
.cta__form-row label,
.cta__form-full {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cta__form span {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--mauve-ink);
}
.cta__form input,
.cta__form select,
.cta__form textarea {
  font-family: var(--font-body);
  font-size: 14px;
  padding: 10px 12px;
  border: none;
  border-radius: 2px;
  background: rgba(255,255,255,0.88);
  color: var(--ink);
}
.cta__form textarea { resize: vertical; }
.cta__form button { align-self: flex-start; margin-top: 6px; border: none; cursor: pointer; }
.cta__form-legal {
  font-size: 11px;
  line-height: 1.7;
  color: rgba(62,53,48,0.65);
  margin: 4px 0 0;
}
.cta__form-legal a { color: inherit; text-decoration: underline; }

/* ---------- footer ---------- */
.site-footer { background: var(--ivory); padding-top: 0; }
.footer__strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.footer__strip .placeholder-block { min-height: 160px; }
.footer__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  align-items: center;
  gap: 30px;
  padding: 70px 60px 40px;
  border-top: 1px dashed rgba(124,100,89,0.4);
  margin-top: 0;
  text-align: center;
}
.footer__brand { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.footer__mono { height: 48px; width: auto; }
.footer__name { font-family: var(--font-display); font-style: italic; font-size: 18px; color: var(--mauve-ink); margin: 0; }
.footer__tagline { font-size: 11px; letter-spacing: 1px; color: var(--gold); margin: 0; }
.footer__nav { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; text-align: left; list-style: none; margin: 0; padding: 0; }
.footer__nav li { list-style: none; }
.footer__nav a { font-family: var(--font-display); font-size: 12px; letter-spacing: 1px; text-transform: uppercase; }
.footer__address { font-size: 13px; color: var(--ink); }
.footer__address p { margin: 0 0 4px; }
.footer__copy {
  text-align: center;
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--gold);
  padding: 18px 24px 30px;
  border-top: 1px dashed rgba(124,100,89,0.4);
  margin: 0 60px;
}

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .site-header { padding: 18px 20px; }
  .nav { gap: 14px; }
  .nav a { font-size: 10px; }
  .hero { padding: 0 16px 16px; }
  .hero__slider { height: 70vh; min-height: 440px; }
  .concept { padding: 70px 24px 90px; }
  .floating-badge { width: min(var(--badge-size), 126px); height: min(var(--badge-size), 126px); right: 18px; bottom: 18px; }
  .floating-badge-brand { font-size: min(var(--badge-center-font), 15px); }
  .marquee { padding: 0 0 70px; }
  .marquee__item { width: 200px; height: 150px; margin-right: 14px; }
  .browse__grid { gap: 24px; }
  .browse-card { flex-basis: 28%; }
  .browse-card__img { margin-bottom: 16px; }
  .browse-card h3 { font-size: 21px; }
  .browse-card p { font-size: 12.5px; }
  .blog { padding: 100px 24px 90px; }
  .blog__grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
}
@media (max-width: 520px) {
  .site-header { position: relative; padding: 16px 16px; justify-content: flex-end; min-height: 76px; }
  .logo-badge {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin-right: 0;
  }
  .logo-badge__img { height: 44px; }
  .menu-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    cursor: pointer;
    position: fixed;
    top: 18px;
    right: 16px;
    z-index: 60;
  }
  .menu-toggle__bars {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    width: 30px;
  }
  .menu-toggle__bars span {
    display: block;
    height: 2px;
    background: var(--ink);
    transition: opacity 0.2s ease;
  }
  .menu-toggle__bars span:nth-child(1) { width: 100%; }
  .menu-toggle__bars span:nth-child(2) { width: 72%; }
  .menu-toggle__bars span:nth-child(3) { width: 44%; }
  .menu-toggle__label {
    font-family: var(--font-display);
    font-size: 11px;
    letter-spacing: 1px;
    color: var(--ink);
    text-transform: lowercase;
  }
  .menu-toggle__label-close { display: none; }
  .menu-toggle-input:checked ~ .menu-toggle .menu-toggle__label-menu { display: none; }
  .menu-toggle-input:checked ~ .menu-toggle .menu-toggle__label-close { display: inline; }
  .mobile-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 55;
    background: rgba(250,245,239,0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-bottom: 1px solid rgba(124,100,89,0.25);
    padding: 0 16px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: max-height 0.3s ease, opacity 0.25s ease, padding 0.3s ease;
  }
  .menu-toggle-input:checked ~ .mobile-menu {
    max-height: 520px;
    opacity: 1;
    pointer-events: auto;
    padding: 90px 16px 36px;
  }
  .nav--center { flex-direction: column; align-items: center; gap: 22px; }
  .nav-actions { flex-direction: column; gap: 18px; }
  .mobile-menu .nav a { font-size: 16px; letter-spacing: 1px; }
  .mobile-menu .btn-trial { font-size: 12px; padding: 11px 11px 11px 22px; }
  .mobile-menu .btn-trial__arrow { width: 28px; height: 28px; font-size: 14px; }
  .hero__slider { height: 62vh; min-height: 380px; }
  .hero__overlay-title { font-size: clamp(32px, 11vw, 48px); }
  .hero__overlay-tag { font-size: 13px; }
  .hero__overlay-actions { flex-direction: column; gap: 12px; width: 100%; max-width: 260px; }
  .hero__overlay-actions .btn { width: 100%; }
  .hero__scroll { display: none; }
  .instructor { padding: 20px 24px; }
  .instructor__inner { grid-template-columns: 1fr; padding: 60px 0; text-align: center; }
  .instructor__name { grid-column: 1; grid-row: 1; }
  .instructor__photos { grid-column: 1; grid-row: 2; }
  .instructor__body { grid-column: 1; grid-row: 3; }
  .instructor__body p { margin-left: auto; margin-right: auto; }
  .instructor__career { margin-left: auto; margin-right: auto; }
  .instructor__photos { margin-top: 30px; margin-bottom: 30px; padding: 0 0 40px 0; justify-content: center; }
  .instructor__main { width: 94%; }
  .instructor__stack { width: 46%; }
  .browse { padding: 70px 24px; }
  .schedule { padding: 70px 24px; }
  .timetable {
    display: flex;
    grid-template-columns: unset;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    border-radius: 0;
    margin: 0 -24px;
    max-width: none;
    border-left: none;
    border-right: none;
    -webkit-overflow-scrolling: touch;
    -webkit-mask-image: linear-gradient(to right, black 88%, transparent 100%);
    mask-image: linear-gradient(to right, black 88%, transparent 100%);
  }
  .timetable__day {
    flex: 0 0 34%;
    min-width: 140px;
    scroll-snap-align: start;
    border-right: 1px solid rgba(124,100,89,0.2);
  }
  .timetable__day:first-child { border-left: 1px solid rgba(124,100,89,0.2); margin-left: 24px; }
  .timetable__day:last-child { margin-right: 24px; }
  .pricing { padding: 70px 24px; }
  .pricing__grid { grid-template-columns: 1fr; gap: 50px; max-width: 360px; }
  .price-card__list li { font-size: 14px; padding: 11px 2px; }
  .price-card__list li span:last-child { font-size: 16px; }
  .access { padding: 70px 24px; }
  .access__media { grid-template-columns: 1fr; gap: 24px; }
  .access__info p { font-size: 15px; }
  .testimonial { padding: 70px 24px; }
  .testimonial__grid {
    display: flex;
    grid-template-columns: unset;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    margin: 0 -24px;
    padding: 0 24px 12px;
    -webkit-overflow-scrolling: touch;
    -webkit-mask-image: linear-gradient(to right, black 85%, transparent 100%);
    mask-image: linear-gradient(to right, black 85%, transparent 100%);
  }
  .testimonial-card { flex: 0 0 82%; scroll-snap-align: start; }
  .testimonial-card__body { font-size: 14px; }
  .news { padding: 70px 24px; }
  .news__grid { grid-template-columns: 1fr; gap: 40px; }
  .news__footer { justify-content: center; }
  .browse__grid { flex-direction: column; gap: 0; }
  .browse-card {
    position: relative;
    flex-basis: auto;
    width: 100%;
    min-width: 0;
    text-align: left;
    border-top: 1px solid rgba(124,100,89,0.25);
    padding-top: 44px;
    margin-top: 16px;
  }
  .browse-card:first-child { border-top: none; padding-top: 0; margin-top: 0; }
  .browse-card__img { aspect-ratio: 16/11; margin-bottom: 20px; }
  .browse-card h3 { font-size: 24px; }
  .browse-card p { font-size: 14px; }
  .browse-card__target { margin-top: 2px; }
  .footer__address { font-size: 14px; }
  .cta { grid-template-columns: 1fr; }
  .cta__text { padding: 60px 30px; align-items: center; text-align: center; }
  .cta__text p:not(.eyebrow) { text-align: left; }
  .cta__form { width: 100%; max-width: 360px; }
  .cta__form-row { flex-direction: column; gap: 16px; }
  .faq { padding: 70px 24px; }
  .faq__title { margin-bottom: 40px; }
  .faq__list summary { font-size: 14px; padding-right: 28px; }
  .blog { padding: 90px 24px 70px; }
  .blog__grid { grid-template-columns: 1fr; gap: 44px; }
  .footer__inner { grid-template-columns: 1fr; }

  /* body copy reads better left-aligned on narrow screens; headings/eyebrows stay centered */
  .concept__body,
  .instructor__body p,
  .browse-card p,
  .schedule__note,
  .pricing__note,
  .access__info p {
    text-align: left;
  }
}

/* ---------- WordPress additions ---------- */
.access__map iframe { width: 100%; height: 100%; border: 0; display: block; }

.blog__pagination { display: flex; justify-content: center; gap: 10px; margin-top: 60px; }
.blog__pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--mauve-ink);
  border: 1px solid rgba(124,100,89,0.3);
  border-radius: 50%;
}
.blog__pagination .page-numbers.current { background: var(--mauve-ink); border-color: var(--mauve-ink); color: var(--white); }
.blog__pagination .page-numbers.dots { border: none; }

.cta__form-success,
.cta__form-error {
  font-size: 14px;
  padding: 12px 16px;
  border-radius: 4px;
  margin-bottom: 20px;
  max-width: 380px;
}
.cta__form-success { background: rgba(255,255,255,0.7); color: var(--mauve-ink); }
.cta__form-error { background: rgba(255,255,255,0.7); color: var(--coral-deep); }

/* single post / generic page */
.post { max-width: 780px; margin: 0 auto; padding: 150px 24px 140px; }
.post__header { text-align: center; margin-bottom: 40px; }
.post__meta { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 16px; }
.post__date { font-family: var(--font-display); font-size: 12px; color: var(--gold); }
.post__title { font-size: clamp(26px, 4vw, 38px); line-height: 1.5; }
.post__thumb { aspect-ratio: 16/9; margin-bottom: 50px; }
.post__body { font-size: 15.5px; line-height: 2; }
.post__body p { margin-bottom: 1.6em; }
.post__body img { max-width: 100%; height: auto; display: block; margin: 30px 0; }
.post__body h2 { font-size: 22px; margin: 2em 0 0.8em; color: var(--mauve-ink); }
.post__body h3 { font-size: 18px; margin: 1.8em 0 0.7em; color: var(--mauve-ink); }
.post__footer { margin-top: 60px; text-align: center; }
@media (max-width: 520px) {
  .post { padding: 90px 24px 90px; }
}

