/* ============================================
   Peter's Piano Lessons — stylesheet
   Color: navy / cream / gold
   Mobile-first, responsive
   ============================================ */

:root {
  --navy: #0d1d3f;
  --navy-2: #102348;
  --navy-soft: #16285a;
  --cream: #f6ede0;
  --cream-2: #fbf5ea;
  --cream-card: #fbf3e3;
  --gold: #c9a662;
  --gold-2: #d9b977;
  --gold-soft: #e4c98a;
  --text: #1f2a44;
  --text-soft: #4b5670;
  --text-on-dark: #f6ede0;
  --text-on-dark-soft: #c8c8d6;
  --line: #e6dccb;

  --radius: 14px;
  --shadow-sm: 0 4px 16px rgba(13,29,63,0.08);
  --shadow-md: 0 10px 30px rgba(13,29,63,0.12);

  --max: 1180px;
  --gutter: clamp(20px, 5vw, 48px);

  --font-jp-serif: "Noto Serif JP", "Hiragino Mincho ProN", "游明朝", serif;
  --font-jp-sans: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
  --font-en-serif: "Cormorant Garamond", "Noto Serif JP", serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-jp-sans);
  font-weight: 400;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.75;
  font-size: 15px;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; margin: 0; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* ===== Section wrappers ===== */
section { padding: clamp(64px, 9vw, 120px) 0; position: relative; overflow: hidden; }

.section-dark { background: var(--navy); color: var(--text-on-dark); }

.section-head { text-align: center; margin-bottom: clamp(40px, 5vw, 64px); }
.section-head h2 {
  font-family: var(--font-jp-serif);
  font-weight: 600;
  font-size: clamp(26px, 3.6vw, 38px);
  letter-spacing: 0.06em;
  margin: 0 0 14px;
  line-height: 1.4;
}
.section-head h2 .num,
.section-head h2 .accent { color: var(--gold); }
.section-head h2 .ornament {
  display: inline-flex;
  align-items: center;
  color: var(--gold);
  margin: 0 14px;
  font-size: 0.75em;
  font-style: italic;
  font-family: var(--font-en-serif);
  position: relative;
}
.section-head h2 .ornament img {
  height: 0.9em;
  width: auto;
  vertical-align: middle;
}
.section-head h2 .head-note {
  display: inline-block;
  height: 0.7em;
  width: auto;
  margin-left: 10px;
  vertical-align: middle;
}

/* Formal section head: small note above title, horizontal lines with diamonds beside */
.section-head-formal { position: relative; }
.section-head-formal > .head-note {
  display: block;
  margin: 0 auto 8px;
  height: 22px;
  width: auto;
  text-align: center;
}
.section-head-formal > .head-note img {
  height: 22px;
  width: auto;
  display: inline-block;
  opacity: 0.95;
}
.section-head-formal h2 {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-family: var(--font-jp-serif);
  font-weight: 600;
  font-size: clamp(26px, 3.6vw, 38px);
  letter-spacing: 0.1em;
  color: var(--navy);
}
.section-head-light.section-head-formal h2 { color: var(--cream); }
.section-head-formal h2 .rule {
  display: inline-block;
  width: clamp(60px, 8vw, 110px);
  height: 1px;
  background: var(--gold);
  position: relative;
}
.section-head-formal h2 .rule::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 6px;
  height: 6px;
  background: var(--gold);
  transform: translateY(-50%) rotate(45deg);
}
.section-head-formal h2 .rule:first-of-type::after { right: -3px; }
.section-head-formal h2 .rule:last-of-type::after { left: -3px; }
@media (max-width: 600px) {
  .section-head-formal h2 { gap: 10px; }
  .section-head-formal h2 .rule { width: 32px; }
}
.section-head h2 .ornament::before,
.section-head h2 .ornament::after {
  content: "";
  display: inline-block;
  width: clamp(28px, 6vw, 80px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  vertical-align: middle;
  margin: 0 8px;
}
@media (max-width: 600px) {
  .section-head h2 { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px; }
  .section-head h2 .ornament { font-size: 0.65em; }
  .section-head h2 .ornament::before,
  .section-head h2 .ornament::after { width: 24px; margin: 0 4px; }
}
.section-head h2 .note { color: var(--gold); margin-left: 8px; font-style: italic; }
.section-head p {
  margin: 0;
  color: var(--text-soft);
  font-size: 14px;
  letter-spacing: 0.04em;
}
.section-head-light p { color: var(--text-on-dark-soft); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--font-jp-serif);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.08em;
  transition: transform .2s, box-shadow .2s, background .2s, color .2s;
  text-align: center;
  white-space: nowrap;
}
.btn-pill { background: var(--cream); color: var(--navy); border: 1px solid var(--gold-soft); }
.btn-pill:hover { background: var(--gold-soft); }

.btn-gold {
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--cream); }

.btn-outline-light {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--cream);
}
.btn-outline-light:hover { background: var(--cream); color: var(--navy); }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246,237,224,0.94);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid rgba(201,166,98,0.18);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--navy); }
.brand-icon { width: 40px; height: 32px; object-fit: contain; flex-shrink: 0; display: block; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-en { font-family: var(--font-en-serif); font-style: italic; font-weight: 600; font-size: 17px; letter-spacing: 0.03em; }
.brand-jp { font-family: var(--font-jp-serif); font-size: 11px; color: var(--text-soft); letter-spacing: 0.08em; margin-top: 2px; }

.primary-nav { display: flex; align-items: center; gap: 28px; }
.primary-nav ul { display: flex; align-items: center; gap: 22px; }
.primary-nav a {
  font-family: var(--font-jp-serif);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--navy);
  position: relative;
  padding: 6px 2px;
}
.primary-nav ul a::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .25s, left .25s;
}
.primary-nav ul a:hover::after { width: 100%; left: 0; }
.nav-cta { padding: 9px 18px; font-size: 12px; }

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--navy);
  transition: transform .25s, opacity .25s;
}

@media (max-width: 980px) {
  .nav-toggle { display: flex; }
  .primary-nav {
    position: fixed;
    top: 64px;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: calc(100vh - 64px);
    background: var(--cream);
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 32px var(--gutter) 40px;
    gap: 20px;
    transform: translateX(100%);
    transition: transform .35s ease;
    overflow-y: auto;
    z-index: 60;
  }
  .primary-nav.is-open { transform: translateX(0); }
  .primary-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-top: 1px solid var(--line);
  }
  .primary-nav ul li { border-bottom: 1px solid var(--line); }
  .primary-nav ul a { display: block; padding: 16px 4px; font-size: 15px; }
  .nav-cta { align-self: flex-start; margin-top: 8px; }
  body.nav-open { overflow: hidden; }
  .nav-toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav-toggle.is-open span:nth-child(2) { opacity: 0; }
  .nav-toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
}

/* ===== Hero ===== */
.hero {
  background: var(--cream);
  padding: clamp(40px, 6vw, 70px) 0 clamp(48px, 7vw, 90px);
  position: relative;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
  position: relative;
}
@media (min-width: 900px) {
  .hero { padding-right: 0; }
  .hero > .container { max-width: none; padding-right: 0; }
  .hero-inner {
    grid-template-columns: minmax(420px, 1fr) minmax(0, 1.05fr);
    align-items: stretch;
    min-height: 560px;
  }
  .hero-inner > .hero-text {
    max-width: 580px;
    margin-left: auto;
    padding-left: clamp(20px, 5vw, 48px);
    padding-right: 24px;
    align-self: center;
  }
}
.hero-text { word-break: keep-all; line-break: strict; }
.hero-lead {
  font-family: var(--font-jp-serif);
  font-size: clamp(13px, 1.5vw, 15px);
  color: var(--navy);
  letter-spacing: 0.1em;
  margin: 0 0 22px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-align: center;
}
.hero-lead::before,
.hero-lead::after {
  content: ""; width: 36px; height: 1px; background: var(--gold);
}
.hero-title {
  font-family: var(--font-jp-serif);
  font-weight: 600;
  font-size: clamp(30px, 4.4vw, 52px);
  line-height: 1.36;
  letter-spacing: 0.03em;
  margin: 0 0 28px;
  color: var(--navy);
  word-break: keep-all;
  overflow-wrap: normal;
  line-break: strict;
}
.hero-title .line { display: block; }
.hero-title .accent {
  background: linear-gradient(transparent 60%, rgba(201,166,98,0.3) 60%, rgba(201,166,98,0.3) 92%, transparent 92%);
  padding: 0 4px;
}
.hero-sub {
  font-family: var(--font-jp-serif);
  font-size: clamp(14px, 1.6vw, 16px);
  color: var(--text-soft);
  margin: 0 0 36px;
  line-height: 2;
}

.badge-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 26px);
}
.badge-list li {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.badge-icon {
  width: clamp(64px, 7vw, 78px);
  height: clamp(64px, 7vw, 78px);
  border-radius: 50%;
  background: var(--cream-card);
  border: 1px solid rgba(201,166,98,0.45);
  box-shadow: 0 6px 18px rgba(13,29,63,0.08);
  display: inline-flex; align-items: center; justify-content: center;
  padding: 18px;
}
.badge-icon img { width: 100%; height: 100%; object-fit: contain; }
.badge-list strong {
  font-family: var(--font-jp-serif);
  font-weight: 600;
  font-size: clamp(13px, 1.4vw, 15px);
  color: var(--navy);
  letter-spacing: 0.06em;
  margin-top: 2px;
}
.badge-list small {
  font-size: 11px;
  color: var(--text-soft);
  letter-spacing: 0.04em;
  line-height: 1.5;
}

.hero-photo {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 320px;
}
.hero-photo picture { display: block; width: 100%; height: 100%; }
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
@media (max-width: 899px) {
  .hero-photo {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    aspect-ratio: 3 / 2;
  }
  .hero-photo img { aspect-ratio: 3 / 2; }
}
@media (min-width: 900px) {
  .hero-photo {
    aspect-ratio: auto;
    height: 100%;
    min-height: 560px;
  }
  /* Soft cream-to-photo blend on the left edge */
  .hero-photo::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 80px;
    background: linear-gradient(90deg, var(--cream) 0%, rgba(246,237,224,0) 100%);
    pointer-events: none;
    z-index: 2;
  }
}
.hero-stamp {
  position: absolute;
  top: clamp(20px, 3vw, 36px);
  right: clamp(20px, 3vw, 40px);
  width: clamp(90px, 10vw, 120px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--navy);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-jp-serif);
  font-weight: 600;
  font-size: clamp(11px, 1.2vw, 13px);
  line-height: 1.5;
  letter-spacing: 0.06em;
  box-shadow: 0 12px 28px rgba(13,29,63,0.28);
  border: 1px solid var(--gold);
  z-index: 3;
}
.hero-stamp::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(201,166,98,0.5);
  border-radius: 50%;
}

/* ===== Decorative leaf images ===== */
.leaf {
  position: absolute;
  pointer-events: none;
  opacity: 0.7;
  width: clamp(120px, 14vw, 220px);
  height: auto;
  user-select: none;
}
.leaf-tl { top: 40px; left: -30px; transform: rotate(-8deg); }
.leaf-bl { bottom: 30px; left: -40px; transform: rotate(180deg); opacity: 0.55; }
.leaf-tr { top: 80px; right: -30px; transform: scaleX(-1) rotate(-6deg); }
.leaf-bl-2 { bottom: 40px; left: -20px; transform: rotate(165deg); opacity: 0.65; }
.leaf-tl-2 { top: 60px; left: -25px; transform: rotate(-15deg); opacity: 0.7; }
.leaf-t-l {
  top: 24px; left: -20px;
  width: clamp(120px, 14vw, 220px);
  transform: rotate(-8deg);
  opacity: 0.7;
}
.leaf-t-r {
  top: 24px; right: -20px;
  width: clamp(120px, 14vw, 220px);
  transform: scaleX(-1) rotate(-8deg);
  opacity: 0.7;
}
.leaf-pr-tl { top: 40px; left: -28px; transform: rotate(-12deg); opacity: 0.55; width: clamp(100px, 14vw, 220px); }
@media (max-width: 600px) {
  .leaf-pr-tl { width: 90px; opacity: 0.4; }
}

.hero-notes {
  position: absolute;
  top: 18%;
  left: 32%;
  width: clamp(140px, 22vw, 280px);
  height: auto;
  opacity: 0.55;
  pointer-events: none;
  z-index: 1;
}
@media (max-width: 900px) { .hero-notes { display: none; } }

/* ===== Features (3 cards) ===== */
.features { background: var(--navy); }
.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 3vw, 32px);
}
@media (min-width: 720px) { .feature-grid { grid-template-columns: repeat(3, 1fr); } }

.feature-card {
  background: var(--cream-card);
  color: var(--navy);
  border-radius: 18px;
  padding: clamp(28px, 4vw, 40px) clamp(20px, 3vw, 32px);
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(201,166,98,0.35);
  transition: transform .25s, box-shadow .25s;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(0,0,0,0.25); }
.feature-icon {
  width: 78px; height: 78px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-icon img { width: 100%; height: 100%; object-fit: contain; }
.feature-card h3 {
  font-family: var(--font-jp-serif);
  font-weight: 600;
  font-size: clamp(16px, 1.8vw, 19px);
  margin: 0 0 14px;
  letter-spacing: 0.06em;
  color: var(--navy);
}
.feature-card p {
  font-size: 13.5px;
  color: var(--text-soft);
  line-height: 1.95;
  margin: 0;
  letter-spacing: 0.03em;
}

/* ===== Teacher ===== */
.teacher { background: var(--cream-2); }
.teacher-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 5vw, 60px);
  align-items: center;
}
@media (min-width: 900px) {
  .teacher-inner { grid-template-columns: minmax(260px, 380px) 1fr; }
}

.teacher-photo { position: relative; }
.teacher-photo picture {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 50% 50% 12px 12px / 55% 55% 12px 12px;
  border: 1px solid var(--gold-soft);
  background: var(--cream);
  padding: 10px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.teacher-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: 50% 50% 8px 8px / 55% 55% 8px 8px;
  display: block;
}
.teacher-name {
  position: absolute;
  bottom: -18px; left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  color: var(--cream);
  padding: 10px 26px;
  border-radius: 4px;
  text-align: center;
  border: 1px solid var(--gold);
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
}
.teacher-name::before, .teacher-name::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0; width: 14px;
  background: var(--navy);
  border: 1px solid var(--gold);
}
.teacher-name::before { left: -10px; clip-path: polygon(0 50%, 100% 0, 100% 100%); }
.teacher-name::after { right: -10px; clip-path: polygon(100% 50%, 0 0, 0 100%); }
.name-jp { display: block; font-family: var(--font-jp-serif); font-weight: 600; font-size: 15px; letter-spacing: 0.1em; }
.name-en { display: block; font-family: var(--font-en-serif); font-style: italic; font-size: 12px; color: var(--gold-soft); margin-top: 2px; letter-spacing: 0.1em; }

.teacher-points { display: flex; flex-direction: column; gap: 22px; }
.teacher-points article {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: start;
}
.t-icon {
  width: 56px; height: 56px;
  background: var(--navy);
  color: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px;
  flex-shrink: 0;
}
.t-icon img { width: 100%; height: 100%; object-fit: contain; filter: brightness(0) invert(1); }
.t-icon-svg svg { width: 100%; height: 100%; }
.t-icon-svg { color: var(--cream); padding: 14px; }
.teacher-points h3 {
  font-family: var(--font-jp-serif);
  font-weight: 600;
  font-size: clamp(15px, 1.7vw, 18px);
  margin: 4px 0 8px;
  color: var(--navy);
  letter-spacing: 0.06em;
}
.teacher-points p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.95;
  color: var(--text-soft);
}
.teacher-points .btn { align-self: flex-start; margin-top: 8px; }

/* ===== Pricing ===== */
.pricing-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-bottom: 28px;
}
.pricing-aside { display: none; }
.pricing-aside img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 18px 0 0 18px;
}
@media (min-width: 980px) {
  .pricing-wrap {
    grid-template-columns: minmax(280px, 38%) 1fr;
    align-items: stretch;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
  }
  .pricing-aside {
    display: block;
    align-self: stretch;
    overflow: hidden;
    min-height: 480px;
  }
  .pricing-aside img { border-radius: 0; }
}

.pricing-table {
  background: var(--cream-card);
  color: var(--navy);
  padding: clamp(24px, 3vw, 36px) clamp(22px, 3.5vw, 38px);
  border: 1px solid rgba(201,166,98,0.4);
  border-radius: 18px;
  overflow: hidden;
}
@media (min-width: 980px) {
  .pricing-wrap > .pricing-table {
    border-radius: 0 18px 18px 0;
    border-left: 0;
    box-shadow: none;
  }
}
.pricing-head {
  display: none;
  font-family: var(--font-jp-serif);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--gold);
  padding: 0 0 12px;
  border-bottom: 1px solid rgba(201,166,98,0.4);
  margin-bottom: 8px;
}
.pricing-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 18px 4px;
  border-bottom: 1px solid rgba(13,29,63,0.1);
  align-items: center;
}
.pricing-row:last-child { border-bottom: 0; }
.pricing-row span {
  font-family: var(--font-jp-serif);
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
}
.pricing-row span small {
  font-size: 12px;
  color: var(--text-soft);
  font-weight: 400;
  margin-left: 2px;
}
.pricing-row span::before {
  content: attr(data-label);
  display: inline-block;
  min-width: 52px;
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.12em;
  font-family: var(--font-en-serif);
}
.pricing-row .pi {
  width: 28px;
  height: 28px;
  padding: 5px;
  background: var(--navy);
  border-radius: 7px;
  object-fit: contain;
  margin-right: 10px;
  vertical-align: middle;
  flex-shrink: 0;
  box-sizing: border-box;
}
.pricing-row .price {
  color: var(--navy);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.02em;
  justify-content: flex-end;
}

@media (min-width: 760px) {
  .pricing-head {
    display: grid;
    grid-template-columns: 2.4fr 1.1fr 1fr 1.2fr;
    gap: 12px;
    padding-left: 4px;
  }
  .pricing-row {
    grid-template-columns: 2.4fr 1.1fr 1fr 1.2fr;
    gap: 12px;
    padding: 18px 4px;
  }
  .pricing-row span { white-space: nowrap; }
  .pricing-row span::before { content: none; }
}

.pricing-note {
  margin-top: 26px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,166,98,0.3);
  border-radius: 12px;
  padding: 18px 22px;
  color: var(--text-on-dark-soft);
}
.pricing-note p {
  margin: 0 0 8px;
  font-family: var(--font-jp-serif);
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 0.08em;
}
.pricing-note .note-mark { color: var(--gold); margin-right: 6px; }
.pricing-note ul { display: flex; flex-direction: column; gap: 4px; }
.pricing-note li { font-size: 12.5px; line-height: 1.85; padding-left: 14px; position: relative; }
.pricing-note li::before {
  content: "・";
  position: absolute; left: 0;
  color: var(--gold);
}

/* ===== Voice ===== */
.voice { background: var(--cream-2); }
.voice-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(16px, 2.5vw, 24px);
}
@media (min-width: 760px) { .voice-grid { grid-template-columns: repeat(3, 1fr); } }

.voice-card {
  background: var(--cream-card);
  border: 1px solid rgba(201,166,98,0.35);
  border-radius: 14px;
  padding: 24px 22px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s;
}
.voice-card:hover { transform: translateY(-4px); }
.voice-card header { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; padding-bottom: 12px; border-bottom: 1px dashed rgba(13,29,63,0.15); }
.v-avatar {
  width: 36px; height: 36px;
  background: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  padding: 7px;
}
.v-avatar img { width: 100%; height: 100%; object-fit: contain; filter: brightness(0) invert(1); }
.voice-card h3 {
  font-family: var(--font-jp-serif);
  font-weight: 600;
  font-size: 14px;
  margin: 0;
  letter-spacing: 0.06em;
  color: var(--navy);
}
.voice-card h3 small { font-weight: 400; font-size: 11px; color: var(--text-soft); margin-left: 2px; }
.voice-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.95;
  color: var(--text-soft);
}

/* ===== CTA band ===== */
.cta-band { padding: clamp(48px, 7vw, 80px) 0; }
.cta-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 4vw, 40px);
  align-items: center;
}
@media (min-width: 820px) { .cta-inner { grid-template-columns: 1fr auto; } }

.cta-text { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; min-width: 0; }
.cta-piano { width: 64px; height: 48px; object-fit: contain; flex-shrink: 0; }
.cta-text h2 {
  font-family: var(--font-jp-serif);
  font-weight: 600;
  font-size: clamp(20px, 2.6vw, 30px);
  letter-spacing: 0.04em;
  margin: 0;
  line-height: 1.55;
  color: var(--cream);
  word-break: keep-all;
  line-break: strict;
  flex: 1 1 auto;
  min-width: 0;
}
.cta-text h2 .line { display: block; }
.accent-gold { color: var(--gold); }

.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
}
@media (min-width: 560px) {
  .cta-actions {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
}
@media (min-width: 820px) {
  .cta-actions { justify-self: end; }
}
.cta-note {
  width: 100%;
  text-align: right;
  margin: 4px 0 0;
  font-size: 12px;
  color: var(--text-on-dark-soft);
  letter-spacing: 0.06em;
}
@media (max-width: 559px) {
  .cta-note { text-align: center; }
}

/* ===== Footer ===== */
.site-footer { padding: 36px 0 24px; border-top: 1px solid rgba(201,166,98,0.2); }
.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: center;
}
@media (min-width: 820px) {
  .footer-inner {
    grid-template-columns: auto 1fr auto;
    gap: 32px;
  }
}
.brand-footer { color: var(--cream); }
.brand-footer .brand-en { color: var(--cream); }
.brand-footer .brand-jp { color: var(--text-on-dark-soft); }
.btn-ico { width: 18px; height: 18px; object-fit: contain; }

.footer-info { display: flex; flex-direction: column; gap: 8px; font-size: 12.5px; color: var(--text-on-dark-soft); }
.footer-info li, .footer-info a { display: inline-flex; align-items: center; gap: 10px; }
.footer-info a:hover { color: var(--gold); }
.fi-ico { width: 18px; height: 18px; object-fit: contain; flex-shrink: 0; }

.sns-link {
  width: 40px; height: 40px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  transition: background .2s, color .2s;
}
.sns-link:hover { background: var(--gold); color: var(--navy); }

.copyright {
  margin: 24px 0 0;
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--text-on-dark-soft);
  font-family: var(--font-en-serif);
}

/* ===== Pricing as image ===== */
.pricing-image { padding: clamp(48px, 8vw, 100px) 0; }
.pricing-image-wrap {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.pricing-image-wrap picture, .pricing-image-wrap img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
}

/* Screen reader only */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===== Reduced motion ===== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
}
