:root {
  --ivory: #f7f3ec;
  --cream: #fbf8f1;
  --white: #ffffff;
  --greige: #b8a99a;
  --greige-dark: #8d7f70;
  --sage: #8fa398;
  --sage-pale: #dfe8e2;
  --sage-soft: #eff4f0;
  --sage-deep: #566d63;
  --text: #333333;
  --muted: rgba(51, 51, 51, 0.68);
  --line: rgba(51, 51, 51, 0.13);
  --line-strong: rgba(51, 51, 51, 0.22);
  --shadow: 0 28px 70px rgba(78, 66, 55, 0.16);
  --shadow-soft: 0 16px 44px rgba(78, 66, 55, 0.1);
  --serif:
    "Times New Roman", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  --sans:
    -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "YuGothic",
    "Noto Sans JP", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.8;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 22px 48px;
  color: var(--text);
  transition:
    padding 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease,
    backdrop-filter 0.3s ease;
}

.site-header.is-scrolled,
body.nav-open .site-header {
  padding-block: 13px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 36px rgba(61, 52, 43, 0.1);
  backdrop-filter: blur(18px);
}

.brand {
  position: relative;
  z-index: 102;
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-logo {
  width: clamp(174px, 14vw, 214px);
  height: auto;
}

.global-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 13px;
}

.global-nav a {
  position: relative;
  line-height: 1.2;
}

.global-nav a:not(.nav-cta)::after {
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transition: width 0.25s ease;
}

.global-nav a:hover::after {
  width: 100%;
}

.global-nav a:not(.nav-cta):hover,
.footer-links a:hover {
  color: var(--sage-deep);
}

.nav-cta {
  padding: 13px 22px;
  border-radius: 999px;
  background: var(--text);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(51, 51, 51, 0.18);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.nav-cta:hover {
  background: #26302c;
  box-shadow:
    inset 0 3px 8px rgba(0, 0, 0, 0.14),
    0 8px 18px rgba(51, 51, 51, 0.16);
  transform: translateY(2px);
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--ivory);
  isolation: isolate;
}

.hero-media,
.hero-media img,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  z-index: 1;
  background: radial-gradient(
    ellipse at 42% 50%,
    rgba(247, 243, 236, 0.68) 0%,
    rgba(247, 243, 236, 0.4) 28%,
    rgba(247, 243, 236, 0.14) 48%,
    rgba(247, 243, 236, 0) 68%
  );
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 100svh;
  width: 100%;
  margin: 0 auto;
  padding: 150px clamp(24px, 5vw, 72px) 84px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-copy-block {
  width: min(780px, calc(100vw - 48px));
  margin-right: auto;
  margin-left: auto;
  padding: 36px 42px 38px;
  align-self: center;
  text-align: center;
  background: radial-gradient(
    ellipse at center,
    rgba(247, 243, 236, 0.5),
    rgba(247, 243, 236, 0.12) 64%,
    rgba(247, 243, 236, 0)
  );
  backdrop-filter: blur(2px);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--sage-deep);
  font-family: Georgia, var(--serif);
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.14;
}

h1 {
  font-size: 96px;
  line-height: 1.02;
  word-break: keep-all;
}

h1 span {
  white-space: nowrap;
}

h2 {
  font-size: 62px;
  line-height: 1.16;
}

h3 {
  line-height: 1.38;
}

.hero-lead {
  margin: 22px 0 0;
  color: var(--sage-deep);
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.35;
}

.hero-copy {
  max-width: 720px;
  margin: 24px 0 0;
  margin-inline: auto;
  color: rgba(51, 51, 51, 0.82);
  font-size: 16px;
  line-height: 1.9;
}

.hero-copy span {
  display: block;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-actions {
  justify-content: center;
}

.hero-actions .button {
  width: 168px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 15px 26px;
  border: 1px solid rgba(51, 51, 51, 0.18);
  border-radius: 999px;
  font-size: 14px;
  line-height: 1.2;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}

.button:hover {
  transform: translateY(2px);
}

.button:active,
.nav-cta:active {
  transform: translateY(3px);
}

.button-primary {
  border-color: #2f3834;
  background: #2f3834;
  color: var(--white);
  box-shadow: 0 18px 36px rgba(47, 56, 52, 0.22);
}

.button-primary:hover {
  background: #26302c;
  box-shadow:
    inset 0 4px 10px rgba(0, 0, 0, 0.18),
    0 9px 20px rgba(47, 56, 52, 0.18);
}

.button-outline {
  border-color: rgba(51, 51, 51, 0.28);
  background: rgba(255, 255, 255, 0.68);
  color: var(--text);
  backdrop-filter: blur(10px);
}

.button-outline:hover,
.button-outline-light:hover {
  border-color: rgba(51, 51, 51, 0.34);
  background: rgba(255, 255, 255, 0.88);
  box-shadow:
    inset 0 3px 8px rgba(78, 66, 55, 0.08),
    0 8px 18px rgba(78, 66, 55, 0.12);
}

.button-outline-light:hover {
  border-color: rgba(255, 255, 255, 0.62);
  color: var(--text);
}

.button-outline-light {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.facility-list span,
.cta-assurance span {
  border: 1px solid rgba(51, 51, 51, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: rgba(51, 51, 51, 0.78);
  font-size: 13px;
}

.hero-scroll {
  position: absolute;
  right: 42px;
  bottom: 34px;
  z-index: 2;
  color: rgba(51, 51, 51, 0.48);
  font-family: Georgia, var(--serif);
  font-size: 12px;
  writing-mode: vertical-rl;
}

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

.section {
  padding: 120px 0;
}

.section-band {
  padding: 120px 0;
}

#concept,
#worries,
#reason,
#lesson,
#instructor,
#studio,
#price,
#voice,
#faq,
#reserve {
  scroll-margin-top: 92px;
}

.section-heading,
.section-heading.center,
.concept-heading,
.split-heading {
  display: block;
  max-width: none;
  margin: 0 0 48px;
  text-align: left;
}

.section-heading > div {
  display: block;
}

.section-heading .eyebrow,
.concept-heading .eyebrow,
.split-heading .eyebrow,
.lesson-intro .eyebrow,
.instructor-content .eyebrow,
.studio-copy .eyebrow,
.faq-heading .eyebrow,
.cta .eyebrow,
.reserve-info .eyebrow,
.reserve-form .eyebrow {
  margin: 0 0 10px;
  color: var(--sage-deep);
  font-size: 15px;
}

.section-heading h2,
.section-heading h1,
.concept-heading h2,
.split-heading h2,
.lesson-intro h2,
.instructor-content h2,
.studio-copy h2,
.faq-heading h2,
.cta h2 {
  margin: 0;
  overflow-wrap: normal;
  word-break: keep-all;
}

.section-heading.center p:not(.eyebrow),
.section-heading > p:not(.eyebrow),
.concept-heading p:not(.eyebrow),
.split-heading p:not(.eyebrow) {
  max-width: 760px;
  margin: 20px 0 0;
  color: var(--muted);
  font-weight: 400;
  line-height: 1.9;
}

.section-heading.center {
  max-width: none;
  margin-inline: 0;
  text-align: left;
}

.section-heading.center p:not(.eyebrow) {
  margin-inline: 0;
}

.concept {
  position: relative;
  padding-top: 112px;
  background: #fbf8f1;
  box-shadow: 0 0 0 100vmax #fbf8f1;
  clip-path: inset(0 -100vmax);
}

.concept-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 58px;
  align-items: center;
}

.concept-image {
  position: relative;
  padding: 0 0 34px 34px;
}

.concept-image::before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 62%;
  height: 48%;
  border: 1px solid var(--greige);
  content: "";
}

.concept-image img,
.instructor-image img,
.gallery-main,
.gallery-sub {
  width: 100%;
  border-radius: 3px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.concept-image img {
  position: relative;
  aspect-ratio: 4 / 5;
  object-position: center;
}

.concept-body {
  padding: 32px 0;
}

.concept-body p {
  margin: 0 0 22px;
}

.lead-text {
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.62;
}

.keyword-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 38px;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line);
}

.keyword-list article {
  padding: 26px 22px;
  border-left: 1px solid var(--line);
}

.keyword-list article:first-child {
  border-left: 0;
}

.keyword-list span,
.program-head span,
.price-plans span,
.reason-label {
  color: var(--sage-deep);
  font-family: Georgia, var(--serif);
  font-size: 12px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.keyword-list h3 {
  margin-top: 9px;
  font-size: 25px;
}

.keyword-list p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.worries-band {
  background:
    linear-gradient(
      135deg,
      rgba(143, 163, 152, 0.2),
      rgba(239, 244, 240, 0.82) 48%,
      rgba(255, 255, 255, 0.62)
    ),
    var(--sage-soft);
}

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

.worry-card {
  position: relative;
  min-height: 226px;
  padding: 30px;
  border: 1px solid rgba(86, 109, 99, 0.14);
  border-radius: 18px 18px 3px 18px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 38px rgba(82, 70, 58, 0.055);
}

.worry-number {
  position: absolute;
  top: 18px;
  right: 22px;
  color: rgba(86, 109, 99, 0.32);
  font-family: Georgia, var(--serif);
  font-size: 48px;
  line-height: 1;
}

.line-icon {
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  margin-bottom: 26px;
  border-radius: 50%;
  background-color: rgba(247, 243, 236, 0.86);
  box-shadow:
    inset 0 0 0 1px rgba(86, 109, 99, 0.08),
    0 12px 26px rgba(82, 70, 58, 0.06);
}

.illustration-icon {
  background-repeat: no-repeat;
  background-position: center;
  background-size: 62px 62px;
}

.icon-posture {
  background-image: url("images/lumea-icon-01.png");
}

.icon-shoulder {
  background-image: url("images/lumea-icon-02.png");
}

.icon-gentle-exercise {
  background-image: url("images/lumea-icon-03.png");
}

.icon-bodyline {
  background-image: url("images/lumea-icon-04.png");
}

.icon-photo-posture {
  background-image: url("images/lumea-icon-05.png");
}

.icon-support {
  background-image: url("images/lumea-icon-06.png");
}

.worry-card h3 {
  max-width: 260px;
  font-size: 23px;
  line-height: 1.5;
}

.reasons {
  width: 100%;
  padding-inline: max(20px, calc((100vw - 1180px) / 2));
  background:
    linear-gradient(180deg, rgba(237, 229, 217, 0.98), rgba(246, 241, 233, 0.96)),
    #ede5d9;
}

.reason-showcase {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 18px;
}

.reason-card {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  box-shadow: var(--shadow-soft);
  isolation: isolate;
}

.reason-card::before {
  position: absolute;
  inset: 0;
  background: center / cover;
  content: "";
  z-index: -2;
}

.reason-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.86),
    rgba(247, 243, 236, 0.78)
  );
  content: "";
  z-index: -1;
}

.reason-support::before {
  background-image: url("images/reason-support-trust.png");
}

.reason-posture::before {
  background-image: url("images/reason-posture-trust.png");
}

.reason-studio::before {
  background-image: url("images/reason-studio.png");
}

.reason-main {
  display: flex;
  min-height: 650px;
  padding: 54px;
  align-items: flex-end;
  border: 1px solid rgba(86, 109, 99, 0.2);
  color: var(--text);
}

.reason-main::after {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.9),
    rgba(247, 243, 236, 0.7) 54%,
    rgba(247, 243, 236, 0.18)
  );
}

.reason-main h3 {
  max-width: 570px;
  margin-top: 10px;
  font-size: 48px;
}

.reason-main p:not(.reason-label) {
  max-width: 560px;
  margin: 24px 0 0;
  color: var(--muted);
}

.reason-main .reason-label {
  color: var(--sage-deep);
}

.reason-number {
  display: block;
  color: inherit;
  font-family: Georgia, var(--serif);
  font-size: 88px;
  line-height: 0.9;
  opacity: 0.32;
}

.reason-main > .reason-number {
  position: absolute;
  top: 42px;
  left: 46px;
  color: var(--sage-deep);
}

.reason-stack {
  display: grid;
  gap: 18px;
}

.reason-stack article {
  min-height: 316px;
  padding: 38px;
  border: 1px solid rgba(51, 51, 51, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.reason-stack article:nth-child(2) {
  border-color: rgba(141, 127, 112, 0.22);
  color: var(--text);
}

.reason-stack .reason-number {
  margin-bottom: 34px;
  color: var(--sage-deep);
}

.reason-stack article:nth-child(2) .reason-number,
.reason-stack article:nth-child(2) .reason-label {
  color: var(--sage-deep);
}

.reason-stack h3 {
  margin-top: 8px;
  font-size: 31px;
}

.reason-stack p:not(.reason-label) {
  margin: 18px 0 0;
  color: var(--muted);
}

.reason-stack article:nth-child(2) p:not(.reason-label) {
  color: var(--muted);
}

.lesson {
  display: grid;
  grid-template-columns: 0.58fr 1fr;
  gap: 70px;
  align-items: start;
  background: #ffffff;
  box-shadow: 0 0 0 100vmax #ffffff;
  clip-path: inset(0 -100vmax);
}

.lesson-intro {
  position: relative;
}

.lesson-intro p:not(.eyebrow) {
  max-width: 420px;
  margin: 20px 0 0;
  color: var(--muted);
}

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

.program-card {
  position: relative;
  min-height: 334px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 3px 22px 3px 3px;
  background: var(--white);
}

.program-card.is-recommend {
  background: var(--sage-soft);
  border-color: rgba(86, 109, 99, 0.24);
  box-shadow: var(--shadow-soft);
}

.program-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 42px;
}

.program-head strong {
  color: var(--greige-dark);
  font-family: Georgia, var(--serif);
  font-size: 13px;
  font-weight: 400;
  white-space: nowrap;
}

.program-card h3 {
  font-size: 29px;
}

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

.program-detail {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.program-detail div {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
}

.program-detail dt {
  color: var(--sage-deep);
  font-size: 12px;
}

.program-detail dd {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--text);
  color: var(--white);
  font-family: Georgia, var(--serif);
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.program-card > .badge {
  position: absolute;
  top: 20px;
  right: 20px;
}

.instructor {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1fr);
  gap: 78px;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(239, 244, 240, 0.88), rgba(251, 248, 241, 0.72)),
    #eef3ef;
  width: 100%;
  padding-inline: max(20px, calc((100vw - 1180px) / 2));
}

.instructor-image-mobile {
  display: none;
}

.instructor-image {
  position: relative;
}

.instructor-image::after {
  position: absolute;
  left: -26px;
  bottom: -26px;
  width: 48%;
  height: 42%;
  border: 1px solid var(--greige);
  content: "";
  z-index: 0;
}

.instructor-image img {
  position: relative;
  z-index: 1;
  aspect-ratio: 4 / 5;
  object-position: center top;
}

.instructor-content p:not(.eyebrow) {
  margin: 20px 0 0;
}

.instructor-name {
  color: var(--sage-deep);
  font-family: var(--serif);
  font-size: 24px;
}

.instructor-name span {
  display: inline-block;
  margin-left: 12px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 13px;
}

.profile-list {
  display: grid;
  gap: 0;
  margin: 34px 0 0;
  border-top: 1px solid var(--line-strong);
}

.profile-list div {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 20px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.profile-list dt {
  color: var(--sage-deep);
  font-size: 13px;
}

.profile-list dd {
  margin: 0;
}

.studio-band {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(250, 248, 243, 0.9)),
    var(--white);
  border-block: 1px solid rgba(86, 109, 99, 0.08);
}

.studio {
  display: grid;
  grid-template-columns: 0.48fr 1fr;
  gap: 64px;
  align-items: center;
}

.studio-copy p:not(.eyebrow) {
  margin: 20px 0 0;
  color: var(--muted);
}

.facility-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.facility-list span {
  padding: 9px 13px;
  background: var(--sage-soft);
}

.studio-gallery {
  display: grid;
  grid-template-columns: 1fr 0.44fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
}

.gallery-main {
  grid-row: 1 / 3;
  aspect-ratio: 4 / 5;
}

.gallery-sub {
  height: 100%;
  min-height: 0;
  box-shadow: var(--shadow-soft);
}

.gallery-sub-a {
  object-position: center;
}

.gallery-sub-b {
  object-position: center;
}

.price {
  width: min(1120px, calc(100% - 40px));
  background: #f3ece2;
  box-shadow: 0 0 0 100vmax #f3ece2;
  clip-path: inset(0 -100vmax);
}

.price-layout {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 20px;
  margin-top: 56px;
}

.price-trial {
  position: relative;
  display: flex;
  min-height: 500px;
  padding: 42px;
  flex-direction: column;
  justify-content: space-between;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.76),
      rgba(247, 243, 236, 0.62),
      rgba(143, 163, 152, 0.44)
    ),
    url("images/trial-preparation.png") center / cover;
  color: var(--text);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.price-trial::before {
  position: absolute;
  inset: 24px;
  background: rgba(255, 255, 255, 0.38);
  content: "";
  pointer-events: none;
}

.price-trial > * {
  position: relative;
  z-index: 1;
}

.price-trial .badge {
  width: max-content;
  background: rgba(47, 56, 52, 0.9);
  color: var(--white);
}

.price-trial h3 {
  margin-top: auto;
  font-size: 38px;
}

.price-trial p {
  max-width: 360px;
  margin: 18px 0 0;
  color: rgba(51, 51, 51, 0.78);
}

.price-trial strong {
  display: block;
  margin: 28px 0 22px;
  font-family: Georgia, var(--serif);
  font-size: 58px;
  font-weight: 400;
  line-height: 1;
}

.price-trial .button-primary {
  width: max-content;
  border-color: #2f3834;
  background: #2f3834;
  color: var(--white);
}

.price-plans {
  display: grid;
  gap: 14px;
}

.price-plans article {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 34px 31px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(78, 66, 55, 0.05);
}

.price-plans article.is-featured {
  padding-top: 54px;
  border-color: rgba(86, 109, 99, 0.28);
  background: var(--sage-soft);
}

.price-plans article.is-featured .badge {
  position: absolute;
  top: 18px;
  right: 22px;
  background: var(--sage-deep);
  color: var(--white);
}

.price-plans h3 {
  margin-top: 6px;
  font-size: 29px;
}

.price-plans p {
  margin: 10px 0 0;
  color: var(--muted);
}

.price-plans strong {
  font-family: Georgia, var(--serif);
  font-size: 42px;
  font-weight: 400;
  white-space: nowrap;
}

.voice {
  background:
    linear-gradient(180deg, rgba(239, 244, 240, 0.9), rgba(250, 248, 243, 0.72)),
    #edf3ee;
  width: 100%;
  padding-inline: max(20px, calc((100vw - 1180px) / 2));
}

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

.voice-card {
  min-height: 390px;
  padding: 32px;
  border: 1px solid rgba(51, 51, 51, 0.1);
  background: var(--white);
  box-shadow: 0 12px 34px rgba(78, 66, 55, 0.06);
}

.voice-avatar {
  width: 76px;
  height: 76px;
  margin: 0 auto 30px;
  border-radius: 50%;
  background-color: var(--sage-pale);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  box-shadow:
    inset 0 0 0 1px rgba(86, 109, 99, 0.12),
    0 14px 28px rgba(82, 70, 58, 0.08);
}

.avatar-m {
  background-image: url("images/lumea-voice-avatar-01.png");
}

.avatar-a {
  background-image: url("images/lumea-voice-avatar-02.png");
}

.avatar-y {
  background-image: url("images/lumea-voice-avatar-03.png");
}

.voice-quote {
  margin: 0;
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.5;
}

.voice-card p:not(.voice-quote) {
  margin: 20px 0 0;
  color: var(--muted);
}

.voice-card span {
  color: inherit;
}

.voice-meta {
  display: grid;
  gap: 8px;
  margin: 26px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.voice-meta div {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 12px;
}

.voice-meta dt {
  color: var(--sage-deep);
  font-size: 12px;
}

.voice-meta dd {
  margin: 0;
  color: rgba(51, 51, 51, 0.7);
  font-size: 13px;
  line-height: 1.65;
}

.faq {
  display: grid;
  grid-template-columns: 0.44fr 1fr;
  gap: 72px;
  align-items: start;
  background: #fbf8f1;
  box-shadow: 0 0 0 100vmax #fbf8f1;
  clip-path: inset(0 -100vmax);
}

.faq-heading {
  position: sticky;
  top: 112px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: 3px 18px 3px 3px;
  background: rgba(255, 255, 255, 0.78);
  overflow: hidden;
  transition:
    background 0.25s ease,
    box-shadow 0.25s ease;
}

details[open] {
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

summary {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  min-height: 86px;
  padding: 24px 66px 24px 28px;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.45;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  position: absolute;
  top: 28px;
  right: 26px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(86, 109, 99, 0.32);
  border-radius: 50%;
  color: var(--sage-deep);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1;
  content: "+";
  transition:
    transform 0.25s ease,
    background 0.25s ease;
}

details[open] summary::after {
  transform: rotate(45deg);
  background: var(--sage-soft);
}

summary span,
details p span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--sage-soft);
  color: var(--sage-deep);
  font-family: Georgia, var(--serif);
  font-size: 14px;
}

details p {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  margin: 0;
  padding: 0 66px 30px 28px;
  color: var(--muted);
  line-height: 1.9;
}

details p span {
  background: var(--ivory);
}

.cta {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto 120px;
}

.cta-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 60px;
  overflow: hidden;
  padding: 72px;
  align-items: end;
  background:
    linear-gradient(120deg, rgba(51, 51, 51, 0.72), rgba(86, 109, 99, 0.52)),
    url("images/cta-studio-lounge.png") center / cover;
  color: var(--white);
  box-shadow: var(--shadow);
}

.cta-inner::after {
  position: absolute;
  right: -160px;
  bottom: -210px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  content: "";
}

.cta-inner > * {
  position: relative;
  z-index: 1;
}

.cta .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.cta h2 {
  font-size: 68px;
}

.cta p:not(.eyebrow) {
  max-width: 610px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.cta .button-primary {
  border-color: var(--white);
  background: var(--white);
  color: var(--text);
}

.cta .button-primary:hover {
  border-color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.88);
  color: var(--text);
}

.trial-flow {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.trial-flow p {
  margin: 0 0 18px;
  color: var(--white);
  font-family: var(--serif);
  font-size: 22px;
}

.trial-flow ol {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0 0 22px;
  list-style: none;
}

.trial-flow li {
  display: flex;
  gap: 12px;
  align-items: center;
  color: var(--white);
  font-size: 14px;
}

.trial-flow li span {
  color: rgba(255, 255, 255, 0.62);
  font-family: Georgia, var(--serif);
}

.cta-assurance {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.cta-assurance span {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 12px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  padding: 58px max(20px, calc((100vw - 1180px) / 2));
  border-top: 1px solid var(--line);
  background: var(--white);
}

.footer-main p,
.site-footer small {
  margin: 16px 0 0;
  color: rgba(51, 51, 51, 0.62);
  font-size: 13px;
}

.footer-links {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  justify-content: flex-end;
  font-size: 13px;
}

.footer-links a {
  position: relative;
  display: inline-flex;
  padding-bottom: 5px;
  line-height: 1.2;
}

.footer-links a::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transition: width 0.25s ease;
}

.footer-links a:hover::after {
  width: 100%;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.sns-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--sage-deep);
  font-size: 13px;
}

.sns-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 13px 8px 8px;
  border: 1px solid rgba(86, 109, 99, 0.14);
  border-radius: 999px;
  background: rgba(247, 243, 236, 0.82);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}

.sns-links a:hover {
  transform: translateY(2px);
  border-color: rgba(86, 109, 99, 0.32);
  background: var(--sage-soft);
  box-shadow:
    inset 0 3px 8px rgba(86, 109, 99, 0.08),
    0 8px 18px rgba(78, 66, 55, 0.08);
}

.sns-icon {
  display: block;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  box-shadow: 0 8px 16px rgba(78, 66, 55, 0.11);
}

.sns-instagram {
  background-image: url("images/lumea-sns-instagram.png");
}

.sns-line {
  background-image: url("images/lumea-sns-line.png");
}

.sns-youtube {
  background-image: url("images/lumea-sns-youtube.png");
}

.reserve-main {
  padding-top: 118px;
}

.reserve-hero {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 82px 0 54px;
}

.reserve-hero .section-heading {
  margin-bottom: 0;
}

.reserve-hero h1 {
  font-size: 72px;
  line-height: 1.12;
}

.reserve-panel {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 22px;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto 110px;
}

.reserve-info,
.reserve-form {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
}

.reserve-info {
  padding: 42px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(239, 244, 240, 0.72)),
    var(--sage-soft);
}

.reserve-info h3,
.reserve-form h3 {
  font-size: 32px;
}

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

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

.reserve-flow li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
  padding-top: 16px;
  border-top: 1px solid rgba(86, 109, 99, 0.18);
}

.reserve-flow span {
  color: var(--sage-deep);
  font-family: Georgia, var(--serif);
}

.reserve-assurance {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.reserve-assurance span {
  padding: 8px 12px;
  border: 1px solid rgba(86, 109, 99, 0.16);
  border-radius: 999px;
  background: var(--white);
  color: rgba(51, 51, 51, 0.72);
  font-size: 12px;
}

.reserve-form {
  padding: 42px;
}

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

.form-field {
  display: grid;
  gap: 8px;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label {
  color: var(--sage-deep);
  font-size: 13px;
  font-weight: 600;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(51, 51, 51, 0.16);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--text);
  font: inherit;
}

.form-field input,
.form-field select {
  height: 52px;
  padding: 0 14px;
}

.form-field textarea {
  min-height: 118px;
  padding: 13px 14px;
  resize: vertical;
}

.form-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.reserve-form .button {
  margin-top: 26px;
}

.section-observe {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}

.section-observe.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes luxeRise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes softScaleIn {
  from {
    opacity: 0;
    transform: scale(0.985);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.section-observe.is-visible .worry-card,
.section-observe.is-visible .program-card,
.section-observe.is-visible .voice-card,
.section-observe.is-visible details {
  animation: luxeRise 0.74s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.section-observe.is-visible .concept-image,
.section-observe.is-visible .reason-card,
.section-observe.is-visible .studio-gallery,
.section-observe.is-visible .price-trial,
.section-observe.is-visible .instructor-image {
  animation: softScaleIn 0.82s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.section-observe.is-visible .worry-card:nth-child(2),
.section-observe.is-visible .program-card:nth-child(2),
.section-observe.is-visible .voice-card:nth-child(2),
.section-observe.is-visible details:nth-child(2) {
  animation-delay: 0.08s;
}

.section-observe.is-visible .worry-card:nth-child(3),
.section-observe.is-visible .program-card:nth-child(3),
.section-observe.is-visible .voice-card:nth-child(3),
.section-observe.is-visible details:nth-child(3) {
  animation-delay: 0.16s;
}

.section-observe.is-visible .worry-card:nth-child(4),
.section-observe.is-visible .program-card:nth-child(4),
.section-observe.is-visible details:nth-child(4) {
  animation-delay: 0.24s;
}

.section-observe.is-visible .worry-card:nth-child(5),
.section-observe.is-visible details:nth-child(5) {
  animation-delay: 0.32s;
}

.section-observe.is-visible .worry-card:nth-child(6) {
  animation-delay: 0.4s;
}

@media (min-width: 641px) {
  .hero-copy span {
    white-space: nowrap;
  }
}

@media (max-width: 1080px) {
  h1 {
    font-size: 72px;
  }

  h2 {
    font-size: 52px;
  }

  .site-header {
    padding-inline: 28px;
  }

  .hero-media img {
    object-position: 58% center;
  }

  .hero-shade {
    background: radial-gradient(
      ellipse at 42% 50%,
      rgba(247, 243, 236, 0.68) 0%,
      rgba(247, 243, 236, 0.4) 28%,
      rgba(247, 243, 236, 0.14) 48%,
      rgba(247, 243, 236, 0) 68%
    );
  }

  .hero-copy-block {
    width: min(650px, calc(100vw - 48px));
    margin-right: auto;
    margin-left: auto;
    padding: 30px 30px 32px;
  }

  .concept-layout,
  .reason-showcase,
  .lesson,
  .instructor,
  .studio,
  .price-layout,
  .faq,
  .cta-inner {
    grid-template-columns: 1fr;
  }

  .concept-heading,
  .split-heading,
  .section-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .section-heading.center .eyebrow,
  .section-heading.center h2,
  .section-heading.center p:not(.eyebrow),
  .section-heading > p:not(.eyebrow),
  .section-heading:not(.center) > p:not(.eyebrow),
  .concept-heading .eyebrow,
  .concept-heading h2,
  .concept-heading p:not(.eyebrow),
  .split-heading .eyebrow,
  .split-heading h2,
  .split-heading p:not(.eyebrow) {
    grid-column: auto;
    grid-row: auto;
  }

  .section-heading.center p:not(.eyebrow),
  .section-heading > p:not(.eyebrow),
  .concept-heading p:not(.eyebrow),
  .split-heading p:not(.eyebrow) {
    margin-top: 18px;
  }

  .lesson-intro,
  .faq-heading {
    position: static;
  }

  .reason-main {
    min-height: 500px;
  }

  .instructor {
    width: min(1180px, calc(100% - 40px));
    padding-inline: 0;
    background: transparent;
  }

  .instructor > .instructor-image {
    display: none;
  }

  .instructor-image-mobile {
    display: block;
    margin: 26px 0 8px;
  }

  .voice {
    padding-inline: 20px;
  }

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

  .reserve-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 880px) {
  .global-nav {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: flex;
    min-height: 100dvh;
    padding: 110px 28px 40px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(247, 243, 236, 0.92)),
      var(--ivory);
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    font-family: var(--serif);
    font-size: 34px;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: none;
    box-shadow: inset 0 0 0 1px rgba(51, 51, 51, 0.06);
    backdrop-filter: blur(18px);
  }

  body.nav-open .global-nav {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    transition:
      opacity 0.3s ease,
      transform 0.3s ease;
  }

  .nav-cta {
    font-family: var(--sans);
    font-size: 16px;
  }

  h1 {
    font-size: 64px;
  }

  .nav-toggle {
    position: relative;
    z-index: 102;
    display: grid;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 13px 11px;
    border: 1px solid rgba(51, 51, 51, 0.18);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.72);
  }

  .nav-toggle span:not(.sr-only) {
    display: block;
    height: 1px;
    background: var(--text);
    transition:
      transform 0.25s ease,
      opacity 0.25s ease;
  }

  body.nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(35deg);
  }

  body.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  body.nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-35deg);
  }

  .hero-media img {
    object-position: 64% center;
  }

  .hero-shade {
    background:
      radial-gradient(
        ellipse at 42% 50%,
        rgba(247, 243, 236, 0.68) 0%,
        rgba(247, 243, 236, 0.4) 28%,
        rgba(247, 243, 236, 0.14) 48%,
        rgba(247, 243, 236, 0) 68%
      ),
      linear-gradient(
        180deg,
        rgba(247, 243, 236, 0.02) 0%,
        rgba(247, 243, 236, 0.08) 70%,
        rgba(247, 243, 236, 0.26) 100%
      );
  }

  .hero-inner {
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 86px;
  }

  .hero-copy-block {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-copy {
    max-width: 540px;
    margin-inline: auto;
    text-align: left;
  }

  .keyword-list,
  .worry-grid,
  .program-grid {
    grid-template-columns: 1fr;
  }

  .worry-grid {
    max-width: 460px;
    margin-inline: auto;
  }

  .keyword-list article,
  .keyword-list article:first-child {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .keyword-list article:first-child {
    border-top: 0;
  }

  .worry-card:nth-child(2),
  .worry-card:nth-child(5) {
    transform: none;
  }

  .studio-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-main {
    grid-column: 1 / -1;
    grid-row: auto;
    aspect-ratio: 16 / 10;
  }

  .site-footer,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .footer-links,
  .footer-bottom {
    justify-content: flex-start;
  }

  .footer-bottom {
    display: grid;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 16px 18px;
  }

  .brand-logo {
    width: 158px;
  }

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 34px;
    line-height: 1.24;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-media img {
    object-position: 76% top;
  }

  .hero-shade {
    background:
      radial-gradient(
        ellipse at 40% 58%,
        rgba(247, 243, 236, 0.42) 0%,
        rgba(247, 243, 236, 0.20) 38%,
        rgba(247, 243, 236, 0) 66%
      ),
      linear-gradient(
        180deg,
        rgba(247, 243, 236, 0.04) 0%,
        rgba(247, 243, 236, 0.03) 42%,
        rgba(247, 243, 236, 0.18) 70%,
        rgba(247, 243, 236, 0.56) 100%
      );
  }

  .hero-inner {
    width: 100%;
    min-height: 100svh;
    justify-content: flex-end;
    padding: 104px 17px 34px;
  }

  .hero-copy-block {
    width: 100%;
    max-width: 390px;
    padding: 22px 19px 20px;
    border: 0;
    border-radius: 18px;
    background:
      linear-gradient(
        135deg,
        rgba(247, 243, 236, 0.16),
        rgba(255, 255, 255, 0.06)
      );
    box-shadow: 0 14px 38px rgba(75, 63, 52, 0.045);
    backdrop-filter: blur(2px) saturate(108%);
    -webkit-backdrop-filter: blur(2px) saturate(108%);
    transform: translateY(18px);
  }

  .hero-lead {
    margin-top: 16px;
    font-size: 21px;
  }

  .hero-copy {
    margin-top: 16px;
    max-width: 100%;
    margin-inline: 0;
    font-size: 15px;
    line-height: 1.7;
    text-align: left;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
    margin-top: 22px;
  }

  .button {
    width: 100%;
  }

  .hero-scroll {
    display: none;
  }

  .section,
  .band-inner,
  .price,
  .cta {
    width: calc(100% - 34px);
  }

  .section,
  .section-band {
    padding: 78px 0;
  }

  .lead-text,
  .voice-quote {
    font-size: 22px;
  }

  .concept-image {
    padding: 0 0 20px 20px;
  }

  .split-heading .eyebrow {
    margin-bottom: 0;
  }

  .worry-card {
    width: 100%;
    max-width: 336px;
    margin-inline: auto;
    min-height: 190px;
    padding: 24px;
  }

  .worry-card h3 {
    font-size: 23px;
  }

  .reason-main,
  .reason-stack article {
    padding: 28px;
  }

  .reason-main {
    min-height: 460px;
  }

  .reason-main h3 {
    font-size: 35px;
  }

  .reason-number {
    font-size: 70px;
  }

  .reason-main > .reason-number {
    top: 28px;
    left: 28px;
  }

  .reason-stack h3,
  .program-card h3,
  .price-plans h3 {
    font-size: 25px;
  }

  .reason-stack article {
    min-height: 270px;
  }

  .program-card,
  .voice-card {
    min-height: auto;
    padding: 26px;
  }

  .instructor {
    width: calc(100% - 34px);
    gap: 42px;
  }

  .instructor-image-mobile {
    margin: 28px 0 30px;
  }

  .profile-list div,
  .price-plans article,
  details p {
    grid-template-columns: 1fr;
  }

  .studio-gallery {
    gap: 10px;
  }

  .gallery-main,
  .gallery-sub {
    aspect-ratio: 4 / 3;
  }

  .price-layout {
    gap: 14px;
  }

  .price-trial {
    min-height: 430px;
    padding: 30px;
  }

  .price-trial::before {
    inset: 16px;
  }

  .price-trial h3 {
    font-size: 31px;
  }

  .price-trial strong {
    font-size: 48px;
  }

  .price-plans article {
    padding: 28px 24px;
  }

  .price-plans article.is-featured {
    padding-top: 58px;
  }

  .price-plans article.is-featured .badge {
    right: auto;
    left: 24px;
  }

  .price-plans strong {
    font-size: 34px;
  }

  .faq {
    gap: 34px;
  }

  summary {
    min-height: 74px;
    padding: 20px 56px 20px 20px;
    font-size: 22px;
  }

  summary::after {
    right: 18px;
  }

  details p {
    padding: 0 20px 24px;
  }

  .cta {
    margin-bottom: 78px;
  }

  .cta-inner {
    padding: 40px 24px;
    gap: 38px;
  }

  .cta h2 {
    font-size: 42px;
  }

  .site-footer {
    padding: 42px 18px;
  }

  .footer-links,
  .sns-links {
    flex-wrap: wrap;
  }

  .footer-links {
    display: none;
  }

  .reserve-main {
    padding-top: 94px;
  }

  .reserve-hero {
    width: calc(100% - 34px);
    padding: 48px 0 30px;
  }

  .reserve-hero .section-heading > p:not(.eyebrow) {
    max-width: 28em;
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.9;
  }

  .reserve-hero h1 {
    max-width: 8.4em;
    font-size: clamp(38px, 11.6vw, 46px);
    line-height: 1.18;
    word-break: normal;
    overflow-wrap: normal;
  }

  .reserve-hero h1 span {
    display: block;
  }

  .reserve-panel {
    gap: 16px;
    width: calc(100% - 34px);
    margin-bottom: 78px;
  }

  .reserve-info,
  .reserve-form {
    padding: 28px 20px;
  }

  .reserve-info h3,
  .reserve-form h3 {
    font-size: 26px;
    line-height: 1.42;
  }

  .reserve-info p {
    font-size: 14px;
    line-height: 1.9;
  }

  .reserve-flow {
    gap: 0;
    margin-top: 28px;
  }

  .reserve-flow li {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 10px;
    padding-top: 14px;
  }

  .reserve-assurance {
    gap: 8px;
    margin-top: 26px;
  }

  .reserve-assurance span {
    padding: 8px 10px;
    font-size: 11px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 24px;
  }

  .form-field input,
  .form-field select,
  .form-field textarea {
    font-size: 16px;
  }

  .form-note {
    font-size: 12px;
    line-height: 1.8;
  }
}

@media (max-width: 460px) {
  .hero-media img {
    object-position: 82% top;
  }

  .hero-inner {
    padding: 96px 15px 30px;
  }

  .hero-copy-block {
    max-width: 360px;
    padding: 20px 17px 18px;
    transform: translateY(24px);
  }

  h1 {
    font-size: 43px;
    line-height: 1.05;
  }

  .reserve-hero h1 {
    max-width: 7.4em;
    font-size: 40px;
    line-height: 1.2;
  }

  .reserve-panel {
    width: calc(100% - 28px);
  }

  .reserve-info,
  .reserve-form {
    padding: 26px 18px;
  }

  .hero-lead {
    font-size: 19px;
  }

  .hero-copy {
    font-size: 14px;
    line-height: 1.65;
  }

  h2 {
    font-size: 32px;
  }

  .worry-card {
    max-width: 318px;
  }

  .hero-actions {
    margin-top: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }

  .section-observe {
    opacity: 1;
    transform: none;
  }
}
