:root {
  --ink: #2d2a24;
  --muted: #6f6a5f;
  --paper: #fffdf8;
  --cream: #f7f0e3;
  --mist: #eaf3ef;
  --green: #587361;
  --green-dark: #334a3a;
  --sky: #b9d9e8;
  --gold: #b99856;
  --pink: #e8b4ac;
  --line: rgba(51, 74, 58, 0.15);
  --shadow: 0 26px 70px rgba(48, 58, 46, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    "Hiragino Sans", "Yu Gothic", "YuGothic", "Noto Sans JP", system-ui,
    -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.85;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 70px;
  padding: 12px clamp(18px, 4vw, 54px);
  background: rgba(255, 253, 248, 0.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(20px);
}

.brand {
  color: var(--green-dark);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", Georgia, serif;
  font-size: 1.36rem;
  font-weight: 700;
  text-decoration: none;
}

.nav-links {
  grid-column: 2;
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 28px);
  color: var(--muted);
  font-size: 0.9rem;
}

.header-cta {
  grid-column: 3;
  justify-self: end;
}

.nav-links a,
.site-footer a {
  text-decoration: none;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
}

.header-cta,
.button.primary {
  color: #fff;
  background: var(--green-dark);
  box-shadow: 0 14px 34px rgba(51, 74, 58, 0.23);
}

.button.ghost {
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.66);
  border-color: rgba(51, 74, 58, 0.24);
}

.button.large {
  min-height: 56px;
  padding-inline: 30px;
  font-size: 1rem;
}

.button:hover,
.header-cta:hover {
  transform: translateY(-1px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  min-height: calc(100svh - 70px);
  padding: clamp(28px, 4vw, 56px) clamp(20px, 5vw, 76px);
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.18), rgba(255, 253, 248, 0.92) 58%),
    linear-gradient(135deg, #eff7f6 0%, #fffdf8 44%, #f7f0e3 100%);
}

.hero-image {
  min-width: 0;
}

.hero-image img {
  height: min(70svh, 680px);
  min-height: 440px;
  object-fit: cover;
  object-position: 48% center;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-copy {
  max-width: 680px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", Georgia, serif;
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2.62rem, 4.2vw, 3.85rem);
  line-height: 1.15;
}

h2 {
  font-size: clamp(2.05rem, 4.4vw, 4rem);
  line-height: 1.18;
}

h3 {
  font-size: 1.36rem;
  line-height: 1.45;
}

p {
  overflow-wrap: anywhere;
}

.hero-copy p:not(.eyebrow),
.section-heading p,
.service-section p,
.program-section p,
.profile-section p,
.message-section p,
.final-box p {
  color: var(--muted);
}

.hero-copy p:not(.eyebrow) {
  max-width: 620px;
  margin: 24px 0 0;
  font-size: clamp(1rem, 1.8vw, 1.16rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.hero-points span {
  color: var(--green-dark);
  background: rgba(234, 243, 239, 0.72);
  border: 1px solid rgba(51, 74, 58, 0.16);
  border-radius: var(--radius);
}

.hero-points span {
  padding: 7px 11px;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.35;
}

.cta-note {
  margin-top: 14px !important;
  font-size: 0.9rem !important;
}

.trust-strip {
  padding: 0 clamp(20px, 5vw, 76px) 30px;
  background: #fffdf8;
}

.trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  width: min(1140px, 100%);
  margin: 0 auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-strip p {
  margin: 0;
  padding: 18px 20px;
  color: var(--muted);
  font-size: 0.94rem;
}

.trust-strip p + p {
  border-left: 1px solid var(--line);
}

.trust-strip strong {
  color: var(--green-dark);
}

.section {
  padding: clamp(82px, 11vw, 146px) 0;
  scroll-margin-top: 92px;
}

.section-inner {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
}

.two-col,
.story-grid,
.service-layout,
.profile-layout,
.voice-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: clamp(34px, 6vw, 72px);
  align-items: center;
}

.lead {
  margin: 20px 0 0;
  color: var(--green-dark);
  font-weight: 800;
}

.check-list,
.mini-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.mini-list li {
  position: relative;
  padding-left: 24px;
}

.check-list li::before,
.mini-list li::before {
  position: absolute;
  top: 0.82em;
  left: 0;
  width: 9px;
  height: 9px;
  background: var(--gold);
  border-radius: 50%;
  content: "";
}

.intro-section,
.voices-section {
  background: #fffdf8;
}

.message-section,
.menu-guide,
.class-section,
.final-cta {
  background: linear-gradient(180deg, var(--cream), #fffdf8);
}

.image-stack {
  display: grid;
  grid-template-columns: 0.82fr 0.58fr;
  gap: 16px;
  align-items: end;
}

.image-stack img {
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-stack img:first-child {
  aspect-ratio: 4 / 5;
}

.image-stack img:last-child {
  aspect-ratio: 1 / 1.25;
  margin-bottom: 42px;
}

.values-section {
  background:
    linear-gradient(180deg, rgba(234, 243, 239, 0.82), rgba(255, 253, 248, 0.94)),
    #eaf3ef;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin-top: 42px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.values-grid article {
  min-height: 150px;
  padding: 24px 18px;
  border-right: 1px solid var(--line);
  color: var(--green-dark);
  font-weight: 800;
}

.values-grid article:last-child {
  border-right: 0;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 40px;
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.guide-grid a {
  display: grid;
  grid-template-rows: auto 1fr;
  align-content: start;
  gap: 18px;
  min-height: 174px;
  padding: 22px;
  background: rgba(255, 253, 248, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
}

.guide-grid span {
  color: var(--muted);
  font-size: 0.9rem;
}

.guide-grid strong {
  align-self: end;
  color: var(--green-dark);
  font-size: 1.12rem;
  line-height: 1.5;
}

.center-cta {
  margin-top: 34px;
  text-align: center;
}

.service-layout {
  align-items: start;
}

.service-layout.reverse {
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
}

.soft-band {
  background:
    linear-gradient(180deg, #fffdf8, rgba(234, 243, 239, 0.9)),
    var(--mist);
}

.service-photo {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.price-card {
  padding: clamp(24px, 4vw, 34px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.price {
  margin: 18px 0 0;
  color: var(--green-dark);
  font-size: 1.48rem;
  font-weight: 900;
}

.note,
.method {
  font-size: 0.9rem;
}

.method {
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--green-dark);
  font-weight: 800;
}

.before-after,
.price-inline,
.small-prices {
  display: grid;
  gap: 9px;
  margin: 24px 0;
}

.before-after span,
.price-inline span,
.small-prices span {
  color: var(--muted);
  font-size: 0.92rem;
}

.before-after span {
  padding: 12px 14px;
  background: rgba(234, 243, 239, 0.68);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.price-inline {
  padding: 20px;
  background: rgba(255, 253, 248, 0.74);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.price-inline h3 {
  margin: 0 0 6px;
  color: var(--green-dark);
  font-size: clamp(1.05rem, 3.2vw, 1.28rem);
}

.price-inline strong {
  color: var(--green-dark);
  line-height: 1.5;
}

.access-section {
  background: #fffdf8;
}

.photo-triptych {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 42px;
}

.photo-triptych img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.access-details {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.58fr);
}

.program-section {
  background:
    linear-gradient(90deg, rgba(185, 217, 232, 0.38), rgba(255, 253, 248, 0.92)),
    #fffdf8;
}

.voice-layout {
  align-items: start;
}

.voice-layout > img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.voice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

blockquote {
  position: relative;
  min-height: 230px;
  margin: 0;
  padding: 70px 22px 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

blockquote::before {
  position: absolute;
  top: 20px;
  left: 20px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #fff;
  background: var(--green);
  border-radius: 50%;
  content: attr(data-avatar);
  font-family: Georgia, serif;
  font-weight: 800;
}

blockquote cite {
  display: block;
  color: var(--green-dark);
  font-style: normal;
  font-weight: 900;
}

blockquote p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.profile-section {
  background: var(--cream);
}

.profile-layout {
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
}

.profile-layout img {
  max-height: 720px;
  object-fit: cover;
  object-position: center 18%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.profile-layout h3 {
  margin-top: 22px;
}

.final-box {
  max-width: 880px;
  text-align: center;
}

.final-box p {
  max-width: 720px;
  margin: 24px auto 0;
}

.final-message {
  color: var(--green-dark) !important;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", Georgia, serif;
  font-size: 1.28rem;
  font-weight: 700;
}

.final-box .button {
  margin-top: 30px;
}

.mobile-sticky-cta {
  display: none;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 34px clamp(18px, 4vw, 52px);
  color: rgba(255, 255, 255, 0.84);
  background: #2e3c33;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 1040px) {
  .hero,
  .two-col,
  .story-grid,
  .service-layout,
  .service-layout.reverse,
  .profile-layout,
  .voice-layout,
  .access-details {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy {
    order: 1;
  }

  .hero-image {
    order: 2;
  }

  .hero-image img {
    height: auto;
    min-height: 0;
    max-height: 720px;
    aspect-ratio: 4 / 5;
  }

  .values-grid,
  .guide-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-strip-inner {
    grid-template-columns: 1fr;
  }

  .trust-strip p + p {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .values-grid article:nth-child(2n),
  .values-grid article:last-child {
    border-right: 0;
  }

  .photo-triptych {
    grid-template-columns: 1fr 1fr;
  }

  .photo-triptych img:first-child {
    grid-column: 1 / -1;
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 76px;
  }

  body {
    padding-bottom: 0;
  }

  .site-header {
    display: flex;
    justify-content: flex-end;
    min-height: 62px;
  }

  .nav-links {
    display: none;
  }

  .brand {
    font-size: 1.16rem;
  }

  .header-cta {
    min-height: 40px;
    padding-inline: 15px;
    font-size: 0.86rem;
  }

  .hero {
    padding: 24px 18px 54px;
  }

  .trust-strip {
    padding: 0 17px 22px;
  }

  .hero-copy {
    order: 1;
  }

  .hero-image {
    order: 2;
  }

  h1 {
    font-size: 2.34rem;
  }

  h2 {
    font-size: 2.02rem;
  }

  .button,
  .header-cta {
    max-width: 100%;
  }

  .button-row .button,
  .price-card .button,
  .program-section .button,
  .final-box .button {
    width: 100%;
  }

  .section {
    padding: 72px 0;
    scroll-margin-top: 76px;
  }

  .section-inner {
    width: min(100% - 34px, 1140px);
  }

  .image-stack,
  .values-grid,
  .guide-grid,
  .photo-triptych,
  .voice-grid {
    grid-template-columns: 1fr;
  }

  .image-stack img:last-child {
    margin-bottom: 0;
  }

  .values-grid {
    border-bottom: 0;
  }

  .values-grid article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .guide-grid a {
    min-height: 138px;
  }

  .photo-triptych img:first-child,
  .photo-triptych img {
    grid-column: auto;
    aspect-ratio: 4 / 5;
  }

  .service-photo,
  .voice-layout > img,
  .profile-layout img {
    max-height: 620px;
  }

  .site-footer {
    display: block;
  }

  .mobile-sticky-cta {
    display: none;
  }
}
