/* ============================================================
   forme pilates studio — LP styles
   palette: 白 / グレージュ / くすんだグリーン
   ============================================================ */
:root {
  --white: #fdfdfb;
  --paper: #f6f3ee;      /* 明るいグレージュ */
  --greige: #e7e0d5;     /* グレージュ */
  --greige-deep: #cfc4b2;
  --sage: #7d8b74;       /* くすんだグリーン */
  --sage-deep: #5c6b54;  /* 濃いグリーン（CTA・見出し） */
  --sage-pale: #eef0ea;
  --ink: #3b3a35;        /* 本文 */
  --ink-soft: #6d6a61;
  --line: #ddd6c9;
  --serif: "Shippori Mincho", "Hiragino Mincho ProN", serif;
  --sans: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", sans-serif;
  --en: "Marcellus", serif;
  --shadow: 0 10px 40px rgba(59, 58, 53, 0.08);
  --radius: 6px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.9;
  font-size: 15.5px;
  letter-spacing: 0.04em;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--sage-deep); }
ul, ol { list-style: none; }

.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 780px; }
.sp { display: none; }
@media (max-width: 640px) { .sp { display: inline; } }

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.btn:hover { opacity: 0.85; transform: translateY(-2px); }
.btn--primary {
  background: var(--sage-deep);
  color: #fff;
  border-radius: 999px;
  padding: 18px 48px;
  font-size: 16px;
  letter-spacing: 0.08em;
  box-shadow: 0 8px 24px rgba(92, 107, 84, 0.35);
}
.btn--lg { display: inline-flex; flex-direction: column; gap: 2px; }
.btn--lg small { font-weight: 500; font-size: 12px; opacity: 0.9; letter-spacing: 0.06em; }
.btn--header {
  background: var(--sage-deep);
  color: #fff;
  border-radius: 999px;
  padding: 10px 26px;
  font-size: 13.5px;
  white-space: nowrap;
}

/* ---------- header ---------- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}
.header.is-scrolled {
  background: rgba(253, 253, 251, 0.94);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 var(--line);
  padding: 12px 0;
}
.header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.header__logo {
  font-family: var(--en);
  font-size: 26px;
  color: var(--ink);
  text-decoration: none;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.header__logo span { font-size: 11px; letter-spacing: 0.22em; color: var(--ink-soft); }
.header__nav { display: flex; gap: 22px; margin-left: auto; }
.header__nav a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.2s ease;
}
.header__nav a:hover { color: var(--sage-deep); }
.header__menu { display: none; }

@media (max-width: 900px) {
  .header__nav {
    position: fixed;
    inset: 0;
    background: var(--paper);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    font-size: 18px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  .header__nav.is-open { opacity: 1; pointer-events: auto; }
  .header__nav a { font-size: 17px; }
  .btn--header { margin-left: auto; padding: 9px 18px; font-size: 12.5px; }
  .header__menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    width: 40px; height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 110;
    padding: 8px;
  }
  .header__menu span { display: block; height: 2px; background: var(--ink); transition: transform 0.3s ease; }
  .header__menu.is-open span:first-child { transform: translateY(4.5px) rotate(45deg); }
  .header__menu.is-open span:last-child { transform: translateY(-4.5px) rotate(-45deg); }
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
}
.hero__bg { position: absolute; inset: 0; overflow: hidden; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(253, 253, 251, 0.92) 0%, rgba(253, 253, 251, 0.75) 38%, rgba(253, 253, 251, 0.12) 75%);
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
  padding: 120px 24px 80px;
}
.hero__kicker {
  font-family: var(--en);
  font-size: 13px;
  letter-spacing: 0.3em;
  color: var(--sage-deep);
  margin-bottom: 22px;
}
.hero__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(34px, 5.6vw, 58px);
  line-height: 1.55;
  letter-spacing: 0.1em;
  color: var(--ink);
  margin-bottom: 26px;
}
.hero__lead {
  font-size: clamp(14px, 1.6vw, 16.5px);
  line-height: 2.1;
  color: var(--ink-soft);
  margin-bottom: 40px;
}
.hero__scroll {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--en);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--ink-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero__scroll span {
  width: 1px; height: 44px;
  background: linear-gradient(var(--sage-deep), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

@media (max-width: 640px) {
  .hero { min-height: 88vh; }
  .hero__bg::after { background: linear-gradient(180deg, rgba(253,253,251,0.94) 0%, rgba(253,253,251,0.85) 55%, rgba(253,253,251,0.35) 100%); }
  .hero__lead { color: var(--ink); }
  .hero__content { padding-top: 110px; }
}

/* ---------- section head ---------- */
section { padding: 96px 0; }
.sec-head { text-align: center; margin-bottom: 56px; }
.sec-head__en {
  font-family: var(--en);
  font-size: 13px;
  letter-spacing: 0.32em;
  color: var(--sage);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.sec-head__ja {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(24px, 3.4vw, 34px);
  letter-spacing: 0.12em;
  line-height: 1.6;
}
.sec-head__lead { margin-top: 18px; color: var(--ink-soft); font-size: 14.5px; }
.sec-head--light .sec-head__ja, .sec-head--light .sec-head__lead { color: #fff; }
.sec-head--light .sec-head__en { color: #cdd8c5; }

/* ---------- worries ---------- */
.worries { background: var(--paper); }
.worries__list {
  max-width: 620px;
  margin: 0 auto 56px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.worries__list li {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 22px 16px 56px;
  position: relative;
  font-size: 15px;
}
.worries__list li::before {
  content: "";
  position: absolute;
  left: 22px; top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 8px; height: 14px;
  border-right: 2.5px solid var(--sage);
  border-bottom: 2.5px solid var(--sage);
  margin-top: -2px;
}
.worries__list strong { color: var(--sage-deep); }
.worries__answer { text-align: center; max-width: 680px; margin: 0 auto; }
.worries__copy {
  font-family: var(--serif);
  font-size: clamp(20px, 2.8vw, 26px);
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.8;
  margin-bottom: 22px;
}
.worries__copy em { font-style: normal; color: var(--sage-deep); }
.worries__text { text-align: left; color: var(--ink-soft); }

/* ---------- features ---------- */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 88px;
}
.feature:last-child { margin-bottom: 0; }
.feature--rev .feature__img { order: 2; }
.feature__img img {
  width: 100%;
  aspect-ratio: 4 / 3.4;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.feature__num {
  font-family: var(--en);
  font-size: 15px;
  letter-spacing: 0.2em;
  color: var(--sage);
  border-bottom: 1px solid var(--greige-deep);
  display: inline-block;
  padding-bottom: 4px;
  margin-bottom: 18px;
}
.feature__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(20px, 2.6vw, 25px);
  letter-spacing: 0.08em;
  line-height: 1.7;
  margin-bottom: 18px;
}
.feature__text { color: var(--ink-soft); }
.feature__note { margin-top: 12px; font-size: 12.5px; color: var(--ink-soft); }
.feature__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.feature__tags li {
  background: var(--sage-pale);
  color: var(--sage-deep);
  font-size: 12.5px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 999px;
}
@media (max-width: 800px) {
  .feature { grid-template-columns: 1fr; gap: 26px; margin-bottom: 64px; }
  .feature--rev .feature__img { order: 0; }
}

/* ---------- lessons ---------- */
.lessons { background: var(--paper); }
.lessons__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.lesson {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.lesson__img { position: relative; }
.lesson__img img { width: 100%; aspect-ratio: 16 / 9.5; object-fit: cover; }
.lesson__badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--sage-deep);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 999px;
  letter-spacing: 0.08em;
}
.lesson__body { padding: 26px 28px 30px; }
.lesson__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}
.lesson__spec { font-size: 12.5px; color: var(--sage-deep); font-weight: 700; margin-bottom: 12px; }
.lesson__text { font-size: 14px; color: var(--ink-soft); margin-bottom: 14px; }
.lesson__for {
  font-size: 12.5px;
  background: var(--sage-pale);
  color: var(--sage-deep);
  border-radius: var(--radius);
  padding: 8px 14px;
}
@media (max-width: 720px) { .lessons__grid { grid-template-columns: 1fr; } }

/* ---------- team ---------- */
.team__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  max-width: 920px;
  margin: 0 auto;
}
.member { display: flex; flex-direction: column; }
.member__img img {
  width: 100%;
  aspect-ratio: 4 / 4.6;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 22px;
}
.member__role { font-size: 12px; letter-spacing: 0.18em; color: var(--sage-deep); font-weight: 700; margin-bottom: 4px; }
.member__name {
  font-family: var(--en);
  font-size: 26px;
  letter-spacing: 0.12em;
  margin-bottom: 4px;
}
.member__name span { font-family: var(--sans); font-size: 12px; color: var(--ink-soft); margin-left: 10px; letter-spacing: 0.2em; }
.member__cert { font-size: 12.5px; color: var(--ink-soft); border-bottom: 1px solid var(--line); padding-bottom: 12px; margin-bottom: 14px; }
.member__text { font-size: 14px; color: var(--ink-soft); }
@media (max-width: 720px) { .team__grid { grid-template-columns: 1fr; gap: 40px; } }

/* ---------- trial ---------- */
.trial { background: var(--sage-pale); }
.trial__wrap {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 56px;
  align-items: start;
}
.trial__img { position: sticky; top: 110px; }
.trial__img img {
  width: 100%;
  aspect-ratio: 4 / 4.8;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.trial__steps { display: flex; flex-direction: column; }
.step {
  position: relative;
  padding: 0 0 40px 42px;
}
.step::before {
  content: "";
  position: absolute;
  left: 8px; top: 8px; bottom: 0;
  width: 1px;
  background: var(--greige-deep);
}
.step:last-child::before { display: none; }
.step::after {
  content: "";
  position: absolute;
  left: 2px; top: 6px;
  width: 13px; height: 13px;
  border-radius: 50%;
  background: var(--sage-deep);
  border: 3px solid var(--sage-pale);
}
.step__num { font-family: var(--en); font-size: 12.5px; letter-spacing: 0.24em; color: var(--sage-deep); margin-bottom: 4px; }
.step__title { font-family: var(--serif); font-weight: 600; font-size: 19px; letter-spacing: 0.08em; margin-bottom: 8px; }
.step__text { font-size: 14px; color: var(--ink-soft); }
.step__text strong { color: var(--sage-deep); }
@media (max-width: 800px) {
  .trial__wrap { grid-template-columns: 1fr; gap: 36px; }
  .trial__img { position: static; }
  .trial__img img { aspect-ratio: 16 / 9; }
}

/* ---------- price ---------- */
.price__trial {
  max-width: 720px;
  margin: 0 auto 64px;
  background: var(--white);
  border: 2px solid var(--sage-deep);
  border-radius: var(--radius);
  text-align: center;
  overflow: hidden;
}
.price__trial-label {
  background: var(--sage-deep);
  color: #fff;
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.14em;
  padding: 9px;
}
.price__trial-body { padding: 30px 24px 34px; }
.price__trial-body h3 { font-family: var(--serif); font-size: 21px; letter-spacing: 0.14em; margin-bottom: 6px; }
.price__trial-price {
  font-family: var(--en);
  font-size: 54px;
  line-height: 1.2;
  color: var(--sage-deep);
}
.price__trial-price span { font-family: var(--sans); font-size: 15px; font-weight: 700; }
.price__trial-note { font-size: 13.5px; color: var(--ink-soft); margin-top: 10px; }
.price__trial-note strong { color: var(--sage-deep); }

.price__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}
.plan {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 24px;
  text-align: center;
  position: relative;
}
.plan--featured { border: 2px solid var(--sage-deep); box-shadow: var(--shadow); }
.plan__badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--sage-deep);
  color: #fff;
  font-size: 11.5px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 999px;
  white-space: nowrap;
}
.plan__name { font-family: var(--serif); font-size: 17px; letter-spacing: 0.1em; margin-bottom: 12px; }
.plan__price { font-family: var(--en); font-size: 30px; line-height: 1.2; color: var(--ink); }
.plan__price span { font-family: var(--sans); font-size: 12.5px; font-weight: 700; color: var(--ink-soft); }
.plan__per { font-size: 12px; color: var(--sage-deep); font-weight: 700; margin: 6px 0 16px; }
.plan__list { text-align: left; font-size: 13px; color: var(--ink-soft); border-top: 1px solid var(--line); padding-top: 16px; display: flex; flex-direction: column; gap: 8px; }
.plan__list li { padding-left: 20px; position: relative; }
.plan__list li::before {
  content: "";
  position: absolute;
  left: 2px; top: 8px;
  width: 5px; height: 9px;
  border-right: 2px solid var(--sage);
  border-bottom: 2px solid var(--sage);
  transform: rotate(45deg);
}
@media (max-width: 960px) { .price__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .price__grid { grid-template-columns: 1fr; } .plan { padding: 26px 22px; } }

.price__table-wrap { overflow-x: auto; }
.price__table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  background: var(--white);
  font-size: 13.5px;
}
.price__table caption {
  font-family: var(--serif);
  font-size: 16px;
  letter-spacing: 0.14em;
  margin-bottom: 14px;
  text-align: left;
}
.price__table th, .price__table td {
  border: 1px solid var(--line);
  padding: 12px 14px;
  text-align: center;
}
.price__table thead th { background: var(--paper); font-family: var(--serif); letter-spacing: 0.08em; }
.price__table tbody th { background: var(--paper); font-weight: 500; text-align: left; white-space: nowrap; }
.price__table .is-featured { background: var(--sage-pale); font-weight: 700; }
.price__notes { font-size: 12.5px; color: var(--ink-soft); margin-top: 16px; }

/* ---------- faq ---------- */
.faq { background: var(--paper); }
.faq__list { display: flex; flex-direction: column; gap: 14px; }
.faq__item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 56px 18px 52px;
  font-weight: 700;
  font-size: 14.5px;
  position: relative;
  transition: background 0.2s ease;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { background: var(--sage-pale); }
.faq__item summary::before {
  content: "Q";
  position: absolute;
  left: 20px; top: 17px;
  font-family: var(--en);
  color: var(--sage-deep);
  font-size: 17px;
}
.faq__item summary::after {
  content: "";
  position: absolute;
  right: 22px; top: 50%;
  width: 9px; height: 9px;
  border-right: 2px solid var(--sage-deep);
  border-bottom: 2px solid var(--sage-deep);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.3s ease;
}
.faq__item[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq__item p {
  padding: 4px 24px 22px 52px;
  font-size: 14px;
  color: var(--ink-soft);
  position: relative;
}
.faq__item p::before {
  content: "A";
  position: absolute;
  left: 20px; top: 0;
  font-family: var(--en);
  color: var(--greige-deep);
  font-size: 17px;
}

/* ---------- reserve ---------- */
.reserve { position: relative; padding: 110px 0; }
.reserve__bg { position: absolute; inset: 0; overflow: hidden; }
.reserve__bg img { width: 100%; height: 100%; object-fit: cover; }
.reserve__bg::after { content: ""; position: absolute; inset: 0; background: rgba(66, 76, 60, 0.88); }
.reserve .container { position: relative; z-index: 1; }

.form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 44px 44px 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}
.form__row { margin-bottom: 22px; }
.form__row label { display: block; font-weight: 700; font-size: 13.5px; margin-bottom: 8px; }
.req {
  background: var(--sage-deep);
  color: #fff;
  font-size: 10.5px;
  padding: 2px 8px;
  border-radius: 3px;
  margin-left: 8px;
  vertical-align: 1px;
}
.form input, .form select, .form textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 15px;
  padding: 13px 16px;
  border: 1px solid var(--greige-deep);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none;
  border-color: var(--sage-deep);
  box-shadow: 0 0 0 3px rgba(125, 139, 116, 0.18);
}
.form input.is-error { border-color: #b0563f; background: #fdf6f4; }
.form__row--2col { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form__error { color: #b0563f; font-size: 13.5px; font-weight: 700; margin-bottom: 16px; }
.form__submit { width: 100%; }
.form__privacy { font-size: 12px; color: var(--ink-soft); text-align: center; margin-top: 16px; }

.form__done {
  background: var(--white);
  border-radius: var(--radius);
  padding: 56px 44px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}
.form__done-title {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: 0.14em;
  color: var(--sage-deep);
  margin-bottom: 16px;
}
.form__done p:not(.form__done-title) { font-size: 14.5px; color: var(--ink-soft); }
.form__done-note { margin-top: 18px; font-size: 12px !important; }
@media (max-width: 640px) {
  .form, .form__done { padding: 30px 22px; }
  .form__row--2col { grid-template-columns: 1fr; }
}

/* ---------- studio ---------- */
.studio { padding-bottom: 110px; }
.studio__grid {
  display: grid;
  grid-template-columns: 6fr 5fr;
  gap: 56px;
  align-items: stretch;
}
.studio__name { font-family: var(--en); font-size: 30px; letter-spacing: 0.08em; margin-bottom: 24px; }
.studio__dl { display: flex; flex-direction: column; }
.studio__dl > div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.studio__dl dt { font-weight: 700; color: var(--sage-deep); }
.studio__dl dd { color: var(--ink-soft); }
.studio__map {
  background: var(--paper);
  border: 1px dashed var(--greige-deep);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  text-align: center;
}
.studio__map-label { font-family: var(--en); letter-spacing: 0.3em; color: var(--sage); margin-bottom: 10px; }
.studio__map-inner { font-size: 14px; color: var(--ink-soft); padding: 24px; }
.studio__map-note { font-size: 11.5px; margin-top: 10px; }
@media (max-width: 800px) { .studio__grid { grid-template-columns: 1fr; gap: 32px; } }

/* ---------- footer ---------- */
.footer {
  background: #42463c;
  color: #d9d8d0;
  padding: 56px 0 40px;
  text-align: center;
}
.footer__logo { font-family: var(--en); font-size: 26px; color: #fff; }
.footer__logo span { font-size: 11px; letter-spacing: 0.22em; margin-left: 10px; color: #b9bfae; }
.footer__nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 26px; margin: 26px 0 30px; }
.footer__nav a { color: #d9d8d0; font-size: 13px; text-decoration: none; }
.footer__nav a:hover { color: #fff; }
.footer__disclaimer { font-size: 11.5px; color: #a8ad9e; max-width: 640px; margin: 0 auto 12px; line-height: 1.9; }
.footer__disclaimer a { color: #c4cab8; }
.footer__copy { font-family: var(--en); font-size: 12px; letter-spacing: 0.1em; color: #8f947f; }

/* ---------- fixed CTA (mobile) ---------- */
.fixed-cta {
  position: fixed;
  left: 16px; right: 16px; bottom: 14px;
  z-index: 90;
  background: var(--sage-deep);
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  padding: 13px 16px;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  display: none;
  flex-direction: column;
  line-height: 1.4;
  transform: translateY(120%);
  transition: transform 0.4s ease;
}
.fixed-cta small { font-weight: 500; font-size: 11px; opacity: 0.9; }
.fixed-cta.is-shown { transform: none; }
@media (max-width: 800px) {
  .fixed-cta { display: flex; }
  section { padding: 72px 0; }
  .reserve { padding: 84px 0; }
}
