:root {
  --ink: #10211b;
  --muted: #66746e;
  --paper: #fbfcf8;
  --soft: #eef7ef;
  --petal: #fff4f5;
  --blush: #f7cbd3;
  --line: #e4eadf;
  --green: #00a66c;
  --deep: #043c2c;
  --lime: #d5f25f;
  --coral: #ff7c72;
  --gold: #f2b544;
  --white: #ffffff;
  --shadow: 0 20px 60px rgb(16 33 27 / 14%);
  --font-ja: "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-en: "Outfit", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, var(--paper) 0%, var(--petal) 42%, var(--paper) 100%);
  font-family: var(--font-ja);
  line-height: 1.75;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: rgb(4 24 18 / 46%);
  border-bottom: 1px solid rgb(255 255 255 / 18%);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 190px;
  font-family: var(--font-en);
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--deep);
  background: var(--lime);
  border-radius: 4px;
}

.brand-mark.logo-mark {
  overflow: hidden;
  background: var(--white);
  border-radius: 50%;
}

.brand-mark.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-text {
  font-size: 0.9rem;
  letter-spacing: 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 3vw, 32px);
  font-size: 0.88rem;
  font-weight: 700;
}

.header-cta,
.primary-btn,
.secondary-btn,
.floating-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.header-cta {
  padding: 0 18px;
  color: var(--deep);
  background: var(--lime);
}

.mobile-label {
  display: none;
}

.header-cta svg,
.primary-btn svg,
.secondary-btn svg,
.floating-cta svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.4;
}

.hero {
  position: relative;
  min-height: 78svh;
  overflow: hidden;
  color: var(--white);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgb(4 24 18 / 88%) 0%, rgb(4 24 18 / 62%) 38%, rgb(4 24 18 / 18%) 78%),
    rgb(4 24 18 / 18%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  width: min(1120px, calc(100% - 36px));
  min-height: 78svh;
  margin: 0 auto;
  padding: 96px 0 38px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--lime);
  font-family: var(--font-en);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 860px;
  margin: 0;
  font-family: var(--font-en);
  font-size: clamp(3.4rem, 8vw, 7.2rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.hero-place {
  margin: 10px 0 0;
  color: var(--lime);
  font-family: var(--font-en);
  font-size: clamp(1.1rem, 2.4vw, 1.8rem);
  font-weight: 800;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 680px;
  margin: 20px 0 0;
  font-size: clamp(1.02rem, 2vw, 1.3rem);
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.primary-btn,
.secondary-btn {
  padding: 0 24px;
}

.primary-btn {
  color: var(--deep);
  background: var(--lime);
  box-shadow: 0 18px 34px rgb(213 242 95 / 22%);
}

.secondary-btn {
  color: var(--white);
  border: 1px solid rgb(255 255 255 / 52%);
  background: rgb(255 255 255 / 10%);
}

.secondary-btn.light {
  color: var(--white);
  border-color: rgb(255 255 255 / 44%);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(820px, 100%);
  margin: 34px 0 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 24%);
  border-radius: 8px;
  background: rgb(255 255 255 / 14%);
  backdrop-filter: blur(18px);
}

.hero-stats div {
  padding: 18px;
  background: rgb(255 255 255 / 8%);
}

.hero-stats dt {
  font-family: var(--font-en);
  font-size: 1.2rem;
  font-weight: 800;
}

.hero-stats dd {
  margin: 4px 0 0;
  color: rgb(255 255 255 / 82%);
  font-size: 0.9rem;
}

.notice-band {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--deep);
  background: var(--lime);
}

.notice-band p,
.notice-band strong {
  margin: 0;
}

.notice-band p {
  padding: 5px 10px;
  color: var(--white);
  background: var(--coral);
  border-radius: 4px;
  font-size: 0.82rem;
  font-weight: 900;
}

.notice-band a {
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.quick-info {
  display: grid;
  grid-template-columns: 1.4fr 1fr auto;
  gap: 1px;
  color: var(--white);
  background: var(--deep);
}

.quick-info div {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 68px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgb(255 255 255 / 7%);
  font-weight: 800;
}

.quick-info svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  color: var(--lime);
  stroke-width: 2.4;
}

.quick-info a {
  color: var(--lime);
}

.visual-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: min(1120px, calc(100% - 36px));
  margin: 34px auto 0;
}

.visual-strip figure {
  position: relative;
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 16px 34px rgb(16 33 27 / 10%);
}

.visual-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-strip figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 7px 11px;
  color: var(--deep);
  background: rgb(255 255 255 / 88%);
  border-radius: 6px;
  font-weight: 900;
  backdrop-filter: blur(10px);
}

.story-lead {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 0;
  width: min(1000px, calc(100% - 36px));
  margin: 84px auto 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.story-card {
  display: grid;
  align-content: center;
  padding: clamp(30px, 6vw, 64px);
  background: var(--petal);
}

.story-card .story-brand {
  margin: 0 0 8px;
  color: var(--muted);
  font-family: var(--font-en);
  font-size: 0.8rem;
  font-weight: 800;
}

.story-card span {
  color: var(--green);
  font-weight: 900;
}

.story-card h2 {
  margin: 8px 0;
  color: #a98572;
  font-family: var(--font-en);
  font-size: clamp(3.4rem, 8vw, 5.8rem);
  line-height: 0.9;
}

.story-card p:last-child {
  margin: 16px 0 0;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 800;
}

.story-lead img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.program-band {
  width: min(840px, calc(100% - 36px));
  margin: 48px auto;
  padding: 28px 18px;
  text-align: center;
  background: var(--white);
}

.program-band p,
.program-band h2,
.program-band span {
  margin: 0;
}

.program-band p {
  color: var(--coral);
  font-size: 2rem;
  font-weight: 900;
}

.program-band p strong {
  font-family: var(--font-en);
  font-size: 4.8rem;
  line-height: 0.9;
}

.program-band h2 {
  color: #a98572;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.1;
}

.program-band span {
  display: inline-flex;
  margin-top: 14px;
  padding: 8px 18px;
  color: var(--white);
  background: var(--coral);
  border-radius: 4px;
  font-weight: 900;
}

.indoor-story {
  width: 100%;
  padding: clamp(72px, 10vw, 120px) max(18px, calc((100vw - 1120px) / 2));
  background: var(--paper);
}

.story-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  width: min(1000px, 100%);
  margin: 42px auto 0;
}

.story-flow figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 18px 42px rgb(16 33 27 / 12%);
}

.story-flow img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.story-flow figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 12px 14px;
  color: var(--deep);
  background: rgb(255 255 255 / 88%);
  border-radius: 8px;
  font-weight: 900;
}

.story-flow svg {
  width: 42px;
  height: 42px;
  color: var(--coral);
  stroke-width: 2.4;
}

.concern-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  width: min(1040px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(72px, 10vw, 120px) 0;
}

.concern-photo {
  overflow: hidden;
  border-radius: 50% 50% 8px 8px;
  box-shadow: var(--shadow);
}

.concern-photo img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.concern-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.18;
}

.bubble-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.bubble-list p {
  display: grid;
  min-height: 112px;
  place-items: center;
  margin: 0;
  padding: 18px;
  color: var(--deep);
  background: var(--white);
  border-radius: 999px;
  text-align: center;
  font-weight: 900;
  box-shadow: 0 10px 26px rgb(16 33 27 / 7%);
}

.concern-copy strong {
  display: block;
  margin-top: 24px;
  color: #a98572;
  text-align: center;
}

.course-debut {
  position: relative;
  display: grid;
  min-height: 760px;
  place-items: center;
  overflow: hidden;
  color: var(--white);
}

.course-debut::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgb(4 24 18 / 10%), rgb(4 24 18 / 48%));
}

.course-debut img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.course-card {
  position: relative;
  z-index: 1;
  width: min(560px, calc(100% - 36px));
  padding: clamp(28px, 5vw, 52px);
  background: rgb(255 255 255 / 88%);
  border-radius: 8px;
  color: var(--deep);
  text-align: center;
  box-shadow: var(--shadow);
}

.course-card span {
  color: var(--coral);
  font-weight: 900;
}

.course-card h2 {
  margin: 8px 0 0;
  color: var(--coral);
  font-size: clamp(2.2rem, 6vw, 4.8rem);
  line-height: 1;
}

.course-card p {
  margin: 18px 0 0;
  color: var(--muted);
  font-weight: 800;
}

.section {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(76px, 10vw, 122px) 0;
}

.section-head {
  max-width: 780px;
}

.section-head.center {
  margin: 0 auto;
  text-align: center;
}

.section h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(2rem, 4.8vw, 4rem);
  line-height: 1.18;
  letter-spacing: 0;
}

.section-head p {
  margin: 18px 0 0;
  color: var(--muted);
}

.intro {
  padding-bottom: clamp(50px, 8vw, 92px);
}

.service-menu {
  width: 100%;
  max-width: none;
  padding-right: max(18px, calc((100vw - 1120px) / 2));
  padding-left: max(18px, calc((100vw - 1120px) / 2));
  background: var(--petal);
}

.service-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 34px;
  align-items: center;
  margin-top: 44px;
  padding: 18px;
  border: 1px solid rgb(255 255 255 / 74%);
  border-radius: 8px;
  background: rgb(255 255 255 / 72%);
  box-shadow: var(--shadow);
}

.service-feature img,
.service-grid img {
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.service-feature img {
  height: clamp(320px, 42vw, 520px);
}

.service-feature > div {
  padding: clamp(18px, 4vw, 42px);
}

.service-label {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 5px 10px;
  color: var(--deep);
  background: var(--blush);
  border-radius: 4px;
  font-family: var(--font-en);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.service-feature h3 {
  margin: 0;
  font-size: clamp(1.8rem, 3.8vw, 3.2rem);
  line-height: 1.18;
}

.service-feature p {
  margin: 18px 0 0;
  color: var(--muted);
}

.service-feature ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.service-feature li {
  display: flex;
  gap: 10px;
  align-items: center;
  font-weight: 800;
}

.service-feature li::before {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  background: var(--green);
  border-radius: 50%;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.service-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgb(16 33 27 / 8%);
}

.service-grid img {
  height: 230px;
  border-radius: 0;
}

.service-grid article > div {
  padding: 22px;
}

.service-grid h3 {
  margin-top: 0;
}

.service-grid p {
  margin: 12px 0 0;
  color: var(--muted);
}

.worry-grid,
.persona-row,
.price-grid,
.voice-grid {
  display: grid;
  gap: 18px;
  margin-top: 40px;
}

.worry-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.worry-grid article,
.persona-row article,
.price-grid article,
.voice-grid blockquote,
.reason-list article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgb(16 33 27 / 6%);
}

.worry-grid article {
  padding: 28px;
}

.worry-grid svg {
  width: 36px;
  height: 36px;
  color: var(--green);
}

h3 {
  margin: 14px 0 0;
  font-size: 1.22rem;
  line-height: 1.42;
}

.worry-grid p,
.persona-row p,
.reason-list p,
.flow-list p,
.voice-grid p {
  margin: 12px 0 0;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(34px, 7vw, 78px);
  align-items: start;
  width: 100%;
  max-width: none;
  padding-right: max(18px, calc((100vw - 1120px) / 2));
  padding-left: max(18px, calc((100vw - 1120px) / 2));
  background: var(--soft);
}

.split-copy {
  position: sticky;
  top: 110px;
}

.split-copy p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.03rem;
}

.reason-list {
  display: grid;
  gap: 14px;
}

.reason-list article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 20px;
  padding: 24px;
}

.reason-list span {
  grid-row: span 2;
  color: var(--green);
  font-family: var(--font-en);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.reason-list h3,
.reason-list p {
  margin-top: 0;
}

.experience {
  width: 100%;
  max-width: none;
  padding-right: max(18px, calc((100vw - 1120px) / 2));
  padding-left: max(18px, calc((100vw - 1120px) / 2));
  background: var(--deep);
  color: var(--white);
}

.charm {
  width: 100%;
  max-width: none;
  padding-right: max(18px, calc((100vw - 1120px) / 2));
  padding-left: max(18px, calc((100vw - 1120px) / 2));
  background: var(--paper);
}

.charm-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 40px;
}

.charm-grid article {
  min-height: 178px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 26px rgb(16 33 27 / 6%);
}

.charm-grid span {
  color: var(--green);
  font-family: var(--font-en);
  font-size: 1.35rem;
  font-weight: 800;
}

.charm-grid h3 {
  margin-top: 10px;
  font-size: 1.02rem;
}

.charm-grid p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.persona-row {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.persona-row article {
  padding: 24px;
  color: var(--ink);
}

.persona-row svg {
  width: 34px;
  height: 34px;
  color: var(--green);
  stroke-width: 2.2;
}

.trial {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(30px, 6vw, 70px);
}

.flow-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.flow-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.flow-list span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
  font-family: var(--font-en);
  font-weight: 800;
}

.flow-list h3 {
  margin-top: 0;
}

.price {
  width: 100%;
  max-width: none;
  padding-right: max(18px, calc((100vw - 1120px) / 2));
  padding-left: max(18px, calc((100vw - 1120px) / 2));
  background: var(--soft);
}

.price-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.price-grid article {
  padding: 30px;
}

.price-grid article.featured {
  color: var(--white);
  background: var(--deep);
  transform: translateY(-12px);
}

.plan-label {
  display: inline-flex;
  margin: 0;
  padding: 4px 10px;
  color: var(--deep);
  background: var(--lime);
  border-radius: 4px;
  font-size: 0.82rem;
  font-weight: 900;
}

.price-text {
  margin: 18px 0;
  color: var(--green);
  font-family: var(--font-en);
  font-size: 2.3rem;
  font-weight: 800;
}

.featured .price-text {
  color: var(--lime);
}

.price-grid a {
  display: inline-flex;
  margin-top: 6px;
  color: var(--green);
  font-weight: 900;
}

.featured a {
  color: var(--lime);
}

.plan-list {
  display: grid;
  gap: 8px;
  margin: 18px 0 18px;
  padding: 0;
  list-style: none;
}

.plan-list li {
  display: flex;
  gap: 9px;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.55;
}

.plan-list li::before {
  content: "";
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  margin-top: 0.75em;
  background: var(--green);
  border-radius: 50%;
}

.featured .plan-list li {
  color: rgb(255 255 255 / 78%);
}

.featured .plan-list li::before {
  background: var(--lime);
}

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

.voice-grid blockquote {
  margin: 0;
  padding: 30px;
}

.voice-grid p {
  color: var(--ink);
  font-size: 1.06rem;
  font-weight: 700;
}

.voice-grid cite {
  display: block;
  margin-top: 18px;
  color: var(--muted);
  font-style: normal;
}

.access {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 30px;
  align-items: stretch;
}

.access dl {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
}

.access dl div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.access dt {
  color: var(--muted);
  font-weight: 800;
}

.access dd {
  margin: 0;
}

.access dd a {
  color: var(--green);
  font-weight: 900;
}

.hours-panel {
  margin-top: 22px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgb(16 33 27 / 6%);
}

.hours-panel h3 {
  margin: 0 0 14px;
  font-size: 1.05rem;
}

.hours-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.hours-grid div {
  display: grid;
  grid-template-rows: auto 1fr;
  border-right: 1px solid var(--line);
}

.hours-grid div:last-child {
  border-right: 0;
}

.hours-grid span,
.hours-grid strong {
  display: grid;
  min-height: 42px;
  place-items: center;
  padding: 8px 6px;
  text-align: center;
}

.hours-grid span {
  color: var(--deep);
  background: var(--soft);
  border-bottom: 1px solid var(--line);
  font-weight: 900;
}

.hours-grid strong {
  color: var(--muted);
  font-family: var(--font-en);
  font-size: 0.82rem;
  line-height: 1.15;
}

.map-placeholder {
  display: grid;
  min-height: 360px;
  place-items: center;
  align-content: center;
  gap: 12px;
  color: var(--deep);
  background:
    linear-gradient(45deg, rgb(4 60 44 / 9%) 25%, transparent 25% 75%, rgb(4 60 44 / 9%) 75%),
    linear-gradient(45deg, rgb(4 60 44 / 9%) 25%, transparent 25% 75%, rgb(4 60 44 / 9%) 75%),
    var(--soft);
  background-position:
    0 0,
    18px 18px;
  background-size: 36px 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.map-placeholder svg {
  width: 54px;
  height: 54px;
  color: var(--green);
}

.map-placeholder p {
  margin: 0;
  font-weight: 900;
}

.map-placeholder span {
  max-width: 320px;
  color: var(--muted);
  text-align: center;
  font-size: 0.92rem;
  font-weight: 700;
}

.map-photo {
  position: relative;
  display: grid;
  min-height: 420px;
  overflow: hidden;
  color: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.map-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgb(4 24 18 / 8%), rgb(4 24 18 / 68%));
}

.map-photo div {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  align-content: end;
  gap: 12px;
  padding: 30px;
  text-align: center;
}

.map-photo svg {
  width: 54px;
  height: 54px;
  color: var(--lime);
}

.map-photo p {
  margin: 0;
  font-weight: 900;
}

.map-photo span {
  max-width: 320px;
  color: rgb(255 255 255 / 82%);
  font-size: 0.92rem;
  font-weight: 700;
}

.final-cta {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto 90px;
  padding: clamp(46px, 8vw, 78px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgb(4 24 18 / 94%), rgb(4 24 18 / 74%)),
    url("./assets/amp-entrance.png") center / cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.final-cta p {
  max-width: 680px;
  margin: 18px 0 0;
  color: rgb(255 255 255 / 78%);
}

.floating-cta {
  display: none;
  position: fixed;
  z-index: 30;
  right: 18px;
  bottom: 18px;
  padding: 0 18px;
  color: var(--deep);
  background: var(--lime);
  box-shadow: 0 14px 30px rgb(16 33 27 / 18%);
}

.site-footer {
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 34px 18px 96px;
  color: var(--white);
  background: var(--deep);
  text-align: center;
}

.site-footer p,
.site-footer small {
  margin: 0;
}

.site-footer p {
  font-family: var(--font-en);
  font-weight: 800;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  color: rgb(255 255 255 / 76%);
  font-size: 0.9rem;
  font-weight: 700;
}

.site-footer small {
  color: rgb(255 255 255 / 58%);
}

.subpage {
  background: var(--paper);
}

.sub-header {
  color: var(--white);
  background: rgb(4 60 44 / 96%);
}

.legal-page {
  width: min(980px, calc(100% - 36px));
  margin: 0 auto;
  padding: 130px 0 80px;
}

.legal-hero {
  padding: clamp(36px, 7vw, 68px);
  color: var(--white);
  background: var(--deep);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.legal-hero h1 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.18;
}

.legal-hero p {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgb(255 255 255 / 78%);
  font-weight: 700;
}

.legal-content {
  margin-top: 28px;
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 36px rgb(16 33 27 / 7%);
}

.legal-content h2 {
  margin: 34px 0 0;
  font-size: 1.35rem;
  line-height: 1.45;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
}

.legal-content ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding-left: 1.2em;
}

.legal-table {
  display: grid;
  gap: 0;
  margin: 20px 0 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.legal-table div {
  display: grid;
  grid-template-columns: 180px 1fr;
  border-bottom: 1px solid var(--line);
}

.legal-table div:last-child {
  border-bottom: 0;
}

.legal-table dt,
.legal-table dd {
  margin: 0;
  padding: 16px 18px;
}

.legal-table dt {
  color: var(--deep);
  background: var(--soft);
  font-weight: 900;
}

.legal-table dd {
  color: var(--muted);
}

.legal-table a {
  color: var(--green);
  font-weight: 900;
}

@media (hover: hover) {
  a {
    transition:
      transform 180ms ease,
      opacity 180ms ease,
      background-color 180ms ease,
      color 180ms ease;
  }

  a:hover {
    opacity: 0.86;
  }

  .primary-btn:hover,
  .header-cta:hover,
  .floating-cta:hover {
    transform: translateY(-2px);
  }
}

@media (max-width: 920px) {
  .floating-cta {
    display: inline-flex;
  }

  .site-header {
    gap: 12px;
  }

  .nav {
    display: none;
  }

  .hero-stats,
  .quick-info,
  .visual-strip,
  .story-lead,
  .story-flow,
  .concern-section,
  .worry-grid,
  .service-feature,
  .service-grid,
  .persona-row,
  .charm-grid,
  .price-grid,
  .voice-grid,
  .access,
  .trial,
  .split {
    grid-template-columns: 1fr;
  }

  .split-copy {
    position: static;
  }

  .price-grid article.featured {
    transform: none;
  }

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

  .visual-strip figure {
    min-height: 220px;
  }

  .service-feature {
    padding: 12px;
  }

  .service-feature img {
    height: 360px;
  }

  .story-lead img,
  .story-flow img,
  .concern-photo img {
    min-height: 0;
    height: 340px;
  }

  .story-flow {
    gap: 18px;
  }

  .story-flow svg {
    margin: 0 auto;
  }

  .course-debut {
    min-height: 620px;
  }

  .quick-info div {
    min-height: auto;
    padding: 14px 18px;
  }

  .legal-table div {
    grid-template-columns: 1fr;
  }

  .legal-table dt {
    padding-bottom: 6px;
  }

  .legal-table dd {
    padding-top: 6px;
  }

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

  .hours-grid div,
  .hours-grid div:last-child {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 10px 12px;
    justify-content: flex-start;
  }

  .nav {
    display: none !important;
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand-text {
    display: none;
  }

  .header-cta {
    position: fixed;
    top: 10px;
    right: 12px;
    z-index: 50;
    margin-left: auto;
    min-height: 42px;
    padding: 0 12px;
    font-size: 0.82rem;
  }

  .desktop-label {
    display: none;
  }

  .mobile-label {
    display: inline;
  }

  .hero,
  .hero-inner {
    min-height: 78svh;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgb(4 24 18 / 84%) 0%, rgb(4 24 18 / 70%) 52%, rgb(4 24 18 / 38%) 100%),
      rgb(4 24 18 / 18%);
  }

  .hero-image {
    object-position: 68% center;
  }

  .hero-inner {
    padding-top: 86px;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 12vw, 3.35rem);
    line-height: 1;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .primary-btn,
  .secondary-btn {
    width: 100%;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    margin-top: 26px;
  }

  .hero-stats div {
    padding: 12px 14px;
  }

  .hero-stats dt {
    font-size: 1rem;
  }

  .hero-stats dd {
    font-size: 0.8rem;
    line-height: 1.42;
  }

  .notice-band {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .quick-info {
    font-size: 0.86rem;
  }

  .visual-strip {
    gap: 10px;
    margin-top: 18px;
  }

  .visual-strip figure {
    min-height: 210px;
  }

  .service-feature {
    gap: 8px;
    margin-top: 30px;
  }

  .story-lead {
    margin-top: 54px;
  }

  .story-card {
    padding: 28px 22px;
  }

  .program-band p {
    font-size: 1.5rem;
  }

  .program-band p strong {
    font-size: 3.6rem;
  }

  .program-band span {
    display: block;
  }

  .indoor-story {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .story-flow img {
    height: 260px;
  }

  .story-flow figcaption {
    left: 12px;
    right: 12px;
    bottom: 12px;
    font-size: 0.86rem;
  }

  .concern-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .concern-photo {
    border-radius: 8px;
  }

  .concern-photo img {
    height: 320px;
  }

  .bubble-list {
    grid-template-columns: 1fr;
  }

  .bubble-list p {
    min-height: 74px;
  }

  .course-debut {
    min-height: 560px;
  }

  .service-feature img {
    height: 300px;
  }

  .service-feature > div,
  .service-grid article > div {
    padding: 20px;
  }

  .service-grid img {
    height: 220px;
  }

  .worry-grid article,
  .persona-row article,
  .charm-grid article,
  .price-grid article,
  .voice-grid blockquote,
  .flow-list li,
  .reason-list article {
    padding: 22px;
  }

  .reason-list article,
  .flow-list li,
  .access dl div {
    grid-template-columns: 1fr;
  }

  .hours-grid {
    grid-template-columns: 1fr;
  }

  .charm-grid {
    grid-template-columns: 1fr;
  }

  .hours-grid div,
  .hours-grid div:last-child {
    border-right: 0;
  }

  .final-cta {
    margin-bottom: 80px;
    padding: 34px 22px;
  }
}
