/*
 * 画像・参加型UI・工程線・FAQ・予約CTAなどの見た目を担当する。
 * 配置CSSの後、モーションCSSの前に読み込む。
 */
.skip-link {
  background: var(--color-text);
  color: var(--color-surface);
  left: 16px;
  padding: 10px 16px;
  position: fixed;
  top: 16px;
  transform: translateY(-200%);
  transition: outline-color var(--transition-ui), transform var(--transition-ui);
  z-index: 1100;
}

.skip-link:focus {
  transform: translateY(0);
}

.brand {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .06em;
  line-height: 1.5;
}

.brand-mark {
  /* ロゴマークの視認性を保つ意図的な固定寸法。 */
  color: var(--color-accent);
  flex: 0 0 auto;
  height: 34px;
  width: 34px;
}

.site-nav a {
  color: var(--color-soft-text);
  font-size: 14px;
  letter-spacing: .04em;
}

.button,
.quiet-button {
  align-items: center;
  border: 1px solid var(--color-text);
  display: inline-flex;
  font-size: 15px;
  justify-content: center;
  letter-spacing: .06em;
  line-height: 1.5;
  padding: 14px 24px;
}

.button {
  background: var(--color-text);
  color: var(--color-surface);
  transition: background-color var(--transition-ui), color var(--transition-ui), outline-color var(--transition-ui), transform var(--transition-ui);
}

.button-small {
  font-size: 14px;
  padding: 10px 18px;
}

.quiet-button {
  background: transparent;
  color: var(--color-soft-text);
  transition: border-color var(--transition-ui), color var(--transition-ui), outline-color var(--transition-ui), transform var(--transition-ui);
}

.section-kicker {
  color: var(--color-accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .16em;
  line-height: 1.5;
  text-transform: uppercase;
}

.chapter-label {
  align-items: center;
  color: var(--color-soft-text);
  display: flex;
  font-size: 11px;
  font-weight: 500;
  gap: 16px;
  letter-spacing: .13em;
  line-height: 1.6;
}

.chapter-label::after {
  background: currentColor;
  content: "";
  flex: 1;
  height: 1px;
  opacity: .32;
  transform-origin: left center;
  transition: transform .9s var(--ease-calm);
}

html.js .chapter-label::after {
  transform: scaleX(0);
}

html.js .chapter-label.is-line-visible::after {
  transform: scaleX(1);
}

.hero-lead,
.section-closing,
.breath-copy > p,
.value-list p,
.counselor-copy > p,
.faq-heading > p,
.reservation-lead,
.reservation-sample,
.emergency-note p {
  color: var(--color-soft-text);
}

.hero .section-kicker,
.hero .hero-lead {
  color: var(--color-text);
}

.image-frame {
  overflow: hidden;
  position: relative;
}

.image-treatment {
  position: relative;
}

.image-treatment-frame {
  isolation: isolate;
  position: relative;
  transition: transform var(--transition-ui);
}

.image-treatment-frame::before,
.image-treatment-frame::after {
  content: "";
  pointer-events: none;
  position: absolute;
}

.image-treatment-frame::before {
  border: 1px solid rgba(124, 153, 180, .7);
  inset: -10px 10px 10px -10px;
  transition: transform var(--transition-ui);
  z-index: 2;
}

.image-treatment-frame::after {
  background: #edf0ef;
  inset: 10px -12px -12px 12px;
  z-index: 0;
}

.image-treatment-frame > .image-frame {
  position: relative;
  z-index: 1;
}

.image-treatment-caption {
  color: var(--color-accent);
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .16em;
  line-height: 1.5;
  margin-top: 16px;
  text-align: right;
  text-transform: uppercase;
}

.image-frame img {
  position: relative;
  transform-origin: center;
  z-index: 1;
}

.image-wash {
  background: var(--color-base);
  inset: 0;
  pointer-events: none;
  position: absolute;
  transform: scaleY(0);
  transform-origin: bottom;
  z-index: 5;
}

.hero {
  isolation: isolate;
  overflow: hidden;
  position: relative;
}

.hero-media {
  display: block;
  inset: 0;
  position: absolute;
  z-index: -3;
}

.hero-media img {
  /* フルブリードの媒体面を満たす画像の内在サイズ制御。 */
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .96) 0%, rgba(255, 255, 255, .89) 42%, rgba(255, 255, 255, .56) 72%, rgba(255, 255, 255, .3) 100%),
    linear-gradient(0deg, rgba(244, 246, 248, .5), rgba(244, 246, 248, .06) 58%);
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: -2;
}

.hero-leaf-shadow {
  background-image: url("images/leaf-shadow.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  inset: -8%;
  opacity: .12;
  pointer-events: none;
  position: absolute;
  transform-origin: 68% 18%;
  z-index: -1;
}

.hero-leaf-shadow-two {
  inset: -13% -4% -4% 16%;
  opacity: .075;
  transform: scaleX(-1) rotate(-3deg);
  transform-origin: 30% 24%;
}

.hero-particles {
  /* canvasの描画領域をフルブリードのヒーロー面へ一致させる。 */
  height: 100%;
  inset: 0;
  pointer-events: none;
  position: absolute;
  width: 100%;
  z-index: -1;
}

.concerns-image img {
  /* 白地章の広幅ビジュアルを一定の媒体比率で見せる。 */
  aspect-ratio: 16 / 6;
  object-fit: cover;
  object-position: center 56%;
}

.concern-list li {
  border-top: 1px solid var(--color-line);
  overflow: hidden;
  padding: 22px 8px 22px 28px;
  position: relative;
}

.concern-list li::before {
  background: var(--color-sage);
  content: "";
  /* 箇条書きの小さな葉を同寸で揃える装飾サイズ。 */
  height: 8px;
  left: 4px;
  position: absolute;
  top: 34px;
  transform: rotate(35deg);
  transform-origin: left center;
  transition: opacity var(--transition-ui), transform var(--transition-ui);
  width: 13px;
}

.concern-list li::after {
  background: var(--color-accent);
  bottom: 0;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  right: 0;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--transition-ui);
}

.breath-section {
  background: var(--color-mist);
  overflow: hidden;
  position: relative;
}

.breath-light {
  background: rgba(255, 255, 255, .26);
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transition: opacity var(--transition-ui);
}

.breath-section.is-breath-bright .breath-light {
  opacity: 1;
}

.breath-controls label {
  color: var(--color-soft-text);
  font-size: 14px;
}

.breath-controls {
  display: none;
}

html.js .breath-controls {
  display: flex;
}

.breath-action-slot {
  display: grid;
}

.breath-action-slot > button {
  grid-area: 1 / 1;
  transition: background-color var(--transition-ui), border-color var(--transition-ui), color var(--transition-ui), opacity var(--transition-ui), outline-color var(--transition-ui), transform var(--transition-ui), visibility var(--transition-ui);
}

.breath-action-slot .quiet-button {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.breath-action-slot.is-running .button {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.breath-action-slot.is-running .quiet-button {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.breath-controls select {
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  padding: 12px 34px 12px 14px;
}

.breath-reduced {
  display: none;
}

html:not(.js) .breath-reduced {
  display: block;
}

html.breath-static .breath-controls {
  display: none;
}

html.breath-static .breath-reduced {
  display: block;
}

.breath-guide {
  /* 3幅で開始・停止前後の次章topを不変にする、円の固定描画領域。 */
  --breath-diameter: 250px;
  isolation: isolate;
  padding-block: 138px;
  position: relative;
  text-align: center;
}

.breath-ring {
  /* 参加型サークルの主役を正円に保つ意図的な固定装飾寸法。 */
  border-radius: 50%;
  height: var(--breath-diameter);
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%) scale(.58);
  transform-origin: center;
  width: var(--breath-diameter);
}

.breath-ripple {
  /* 深呼吸ギミックの正円を揃える意図的な装飾寸法。 */
  border: 2px solid rgba(124, 153, 180, .42);
  border-radius: 50%;
  height: var(--breath-diameter);
  left: 50%;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%) scale(.62);
  width: var(--breath-diameter);
  z-index: -1;
}

.breath-particle-field {
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: -1;
}

.breath-particle-field i {
  /* 呼吸円の周囲へ置く小粒の意図的な装飾寸法。 */
  background: rgba(124, 153, 180, .62);
  border-radius: 50%;
  height: 7px;
  left: 50%;
  opacity: .54;
  position: absolute;
  top: 50%;
  width: 7px;
}

.breath-ring-tone {
  inset: 0;
  opacity: 0;
  position: absolute;
  transition: opacity .7s var(--ease-calm);
}

.breath-ring-tone::before,
.breath-ring-tone::after {
  background: linear-gradient(145deg, var(--ring-deep), var(--ring-light), var(--ring-mid)) border-box;
  border-radius: 50%;
  content: "";
  -webkit-mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  position: absolute;
}

.breath-ring-tone::before {
  border: 2px solid transparent;
  inset: 0;
}

.breath-ring-tone::after {
  border: 1px solid transparent;
  inset: 11px;
}

.breath-ring-inhale {
  --ring-deep: rgba(104, 143, 178, .88);
  --ring-light: rgba(235, 245, 250, .96);
  --ring-mid: rgba(145, 180, 207, .9);
}

.breath-ring-hold {
  --ring-deep: rgba(171, 187, 201, .8);
  --ring-light: rgba(255, 255, 255, 1);
  --ring-mid: rgba(224, 232, 238, .92);
}

.breath-ring-exhale {
  --ring-deep: rgba(145, 169, 151, .88);
  --ring-light: rgba(244, 248, 244, .98);
  --ring-mid: rgba(185, 200, 189, .96);
}

.breath-guide[data-state="idle"] .breath-ring-inhale,
.breath-guide[data-state="inhale"] .breath-ring-inhale,
.breath-guide[data-state="hold"] .breath-ring-hold,
.breath-guide[data-state="exhale"] .breath-ring-exhale,
.breath-guide[data-state="complete"] .breath-ring-exhale {
  opacity: 1;
}

.breath-status {
  display: grid;
  inset: 0;
  padding-inline: 12px;
  place-content: center;
  pointer-events: none;
  position: absolute;
  z-index: 2;
}

.breath-phase,
.breath-count {
  display: grid;
}

.breath-phase > span,
.breath-count > span {
  grid-area: 1 / 1;
  opacity: 0;
}

.breath-phase > span:first-child,
.breath-count > span:first-child {
  opacity: 1;
}

.breath-phase {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: .08em;
  line-height: 1.55;
}

.breath-count {
  color: var(--color-soft-text);
  font-size: 13px;
  margin-top: 8px;
}

.values-band {
  /* フルブリード画像をモバイルでも世界観の面として成立させる媒体比率。 */
  aspect-ratio: 16 / 7;
  background: var(--color-text);
  isolation: isolate;
}

.values-band picture,
.values-band img {
  height: 100%;
}

.values-band img {
  object-fit: cover;
}

.values-scrim {
  background: rgba(51, 71, 91, .68);
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 2;
}

.curtain-light {
  background: url("images/values-glow-band.webp") center / 100% 100% no-repeat;
  bottom: -22%;
  left: -14%;
  mix-blend-mode: screen;
  opacity: .42;
  pointer-events: none;
  position: absolute;
  top: -22%;
  transform: rotate(-9deg);
  /* 左端から左1/3へ差す静的な光シャフトを作る装飾幅。 */
  width: 58%;
  z-index: 3;
}

.curtain-light i {
  --dust-scale: 1;
  /* 光帯に含める微細な塵を同寸で揃える装飾サイズ。 */
  background: rgba(255, 255, 255, .9);
  border-radius: 50%;
  height: 4px;
  opacity: 0;
  position: absolute;
  width: 4px;
}

.curtain-light i:nth-child(1) {
  left: 24%;
  top: 29%;
}

.curtain-light i:nth-child(2) {
  --dust-scale: .72;
  left: 46%;
  top: 58%;
}

.curtain-light i:nth-child(3) {
  --dust-scale: 1.18;
  left: 63%;
  top: 36%;
}

.curtain-light i:nth-child(4) {
  --dust-scale: .82;
  left: 78%;
  top: 68%;
}

.values-band-copy {
  color: var(--color-surface);
}

.values-band-copy .section-kicker {
  color: #dce3e8;
}

.values-band-copy .chapter-label {
  color: rgba(255, 255, 255, .76);
}

.values-band-copy > p:last-child {
  margin-top: 22px;
}

.value-list article {
  border-top: 1px solid var(--color-line);
  isolation: isolate;
  padding: 24px;
  position: relative;
  transition: transform var(--transition-ui);
}

.value-list article::before {
  background: rgba(124, 153, 180, .1);
  content: "";
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transition: opacity var(--transition-ui);
  z-index: -1;
}

.value-list article:nth-child(3) {
  border-bottom: 1px solid var(--color-line);
}

.value-list p {
  margin-top: 8px;
}

.medical-note {
  border-left: 3px solid var(--color-sage);
  font-size: 14px;
  margin-top: 28px;
  padding: 10px 0 10px 18px;
}

.counselor-copy h2 + p {
  margin-top: 28px;
}

.counselor-main {
  position: relative;
  z-index: 3;
}

.counselor-caption {
  background: rgba(255, 255, 255, .96);
  display: inline-block;
  margin-left: -10%;
  margin-top: -58px;
  padding: 16px 24px 18px;
  position: relative;
  z-index: 4;
}

.counselor-caption-label {
  color: var(--color-accent);
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  line-height: 1.5;
  text-transform: uppercase;
}

.counselor-name {
  color: var(--color-text) !important;
  display: block;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: .05em;
  margin-top: 6px;
}

.counselor-name span {
  color: var(--color-soft-text);
  font-size: 15px;
  font-weight: 400;
}

.counselor-main-frame img {
  /* 縦長ポートレートの比率を保つ画像の内在サイズ制御。 */
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 24%;
}

.fees-image img {
  /* 静物写真の比率を保つ画像の内在サイズ制御。 */
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.values-image img {
  /* 静物写真の比率を統一する内在サイズ制御。 */
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.process-line {
  /* 工程を結ぶ装飾SVGを工程領域へ重ねる固定描画面。 */
  height: 100%;
  inset: 0;
  pointer-events: none;
  position: absolute;
  width: 100%;
}

.process-line path {
  fill: none;
  stroke: var(--color-accent);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
}

.process-line-cover {
  background: var(--color-base);
  inset: 0;
  pointer-events: none;
  position: absolute;
  transform: scaleX(0);
  transform-origin: right;
  z-index: 1;
}

.step-grid li {
  background: rgba(244, 246, 248, .92);
  border-top: 2px solid var(--color-sage);
  padding: 22px 18px 26px;
  position: relative;
}

.step-number {
  color: var(--color-accent);
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  position: relative;
}

.step-number::after {
  /* 工程番号の小さな点灯面として必要な装飾寸法。 */
  background: var(--color-sage);
  border-radius: 50%;
  content: "";
  height: 28px;
  left: 50%;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%) scale(.65);
  transition: opacity var(--transition-ui), transform var(--transition-ui);
  width: 28px;
  z-index: -1;
}

.step-grid li.is-lit .step-number::after {
  opacity: .44;
  transform: translate(-50%, -50%) scale(1);
}

.process-icon {
  /* 各工程を示す線画アイコンの意図的な固定寸法。 */
  display: block;
  height: 42px;
  margin-top: 18px;
  overflow: hidden;
  position: relative;
  width: 42px;
}

.process-icon svg {
  height: 100%;
  width: 100%;
}

.process-icon path {
  fill: none;
  stroke: var(--color-accent);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  vector-effect: non-scaling-stroke;
}

.process-icon i {
  background: rgba(244, 246, 248, .98);
  inset: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: right center;
}

.step-grid h3 {
  margin-top: 12px;
}

.step-grid p {
  color: var(--color-soft-text);
  font-size: 14px;
  margin-top: 8px;
}

.price-item {
  border-top: 1px solid var(--color-line);
  overflow: hidden;
  padding-block: 20px;
  position: relative;
  transition: transform var(--transition-ui);
}

.price-item::after {
  background: rgba(255, 255, 255, .68);
  bottom: 0;
  content: "";
  left: -36px;
  opacity: .65;
  pointer-events: none;
  position: absolute;
  top: 0;
  transform: translateX(-30px) skewX(-16deg);
  transition: transform .35s var(--ease-calm);
  /* 料金カードを横切る細い光沢の装飾寸法。 */
  width: 30px;
}

.price-item:last-child {
  border-bottom: 1px solid var(--color-line);
}

.price-item p {
  color: var(--color-soft-text);
}

.price-item strong {
  display: block;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: .04em;
  margin-top: 6px;
}

.faq-item {
  border-top: 1px solid var(--color-line);
}

.faq-item:last-child {
  border-bottom: 1px solid var(--color-line);
}

.faq-question {
  align-items: center;
  background: transparent;
  border: 0;
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr auto;
  padding: 24px 4px;
  text-align: left;
  /* 1440px実測で質問行全体をクリック領域にするための崩れ対策。 */
  width: 100%;
}

.faq-question > span:first-child {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: .03em;
}

.keep-inline {
  white-space: nowrap;
}

.faq-icon {
  /* 開閉状態を示す装飾アイコンの固定寸法。 */
  align-items: center;
  border: 1px solid var(--color-accent);
  border-radius: 50%;
  display: flex;
  font-size: 18px;
  height: 32px;
  justify-content: center;
  line-height: 1;
  transition: border-color var(--transition-ui), color var(--transition-ui), transform var(--transition-ui);
  width: 32px;
}

.faq-answer {
  display: grid;
  grid-template-rows: 1fr;
  opacity: 1;
}

html.js .faq-answer {
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows var(--transition-ui), opacity var(--transition-ui);
}

.faq-answer > div {
  overflow: hidden;
}

.faq-answer p {
  color: var(--color-soft-text);
  padding: 0 56px 24px 28px;
  position: relative;
}

.faq-answer p::before {
  /* FAQ回答の先頭に置く小さな葉の装飾寸法。 */
  background: var(--color-sage);
  content: "";
  height: 8px;
  left: 5px;
  opacity: 0;
  position: absolute;
  top: 11px;
  transform: translateY(5px) rotate(35deg);
  transition: opacity var(--transition-ui), transform var(--transition-ui);
  width: 13px;
}

html.js .faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
  opacity: 1;
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
}

.faq-item.is-open .faq-answer p::before {
  opacity: .9;
  transform: translateY(0) rotate(35deg);
}

.pointer-glow {
  /* fine pointerにだけ生成する小さな追従光の固定描画面。 */
  background: radial-gradient(circle, rgba(255, 255, 255, .22), rgba(185, 200, 189, .08) 42%, transparent 70%);
  border-radius: 50%;
  height: 180px;
  left: 0;
  mix-blend-mode: screen;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  top: 0;
  width: 180px;
  z-index: 18;
}

section[data-tone] {
  isolation: isolate;
  position: relative;
}

section[data-tone]::before {
  content: "";
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transition: opacity var(--transition-ui);
  z-index: -1;
}

section[data-tone="white"]::before {
  background: rgba(255, 255, 255, .32);
}

section[data-tone="blue"]::before {
  background: rgba(220, 227, 232, .25);
}

section[data-tone].is-tone-current::before {
  opacity: 1;
}

section[data-section-number]::after {
  color: rgba(124, 153, 180, .09);
  content: attr(data-section-number);
  font-size: clamp(136px, 16vw, 228px);
  font-weight: 300;
  letter-spacing: -.07em;
  line-height: .72;
  pointer-events: none;
  position: absolute;
  right: clamp(32px, 8vw, 120px);
  top: clamp(72px, 9vw, 112px);
  z-index: 3;
}

section[data-section-number] > .inner {
  position: relative;
  z-index: 4;
}

.values-section[data-section-number]::after {
  color: rgba(255, 255, 255, .1);
}

.reservation {
  isolation: isolate;
  overflow: hidden;
  position: relative;
}

.reservation-media {
  inset: 0;
  position: absolute;
  z-index: -3;
}

.reservation-media,
.reservation-media img {
  /* CTA全面を満たす背景画像の内在サイズ制御。 */
  height: 100%;
  width: 100%;
}

.reservation-media img {
  object-fit: cover;
  object-position: center;
  transform: scale(1.015);
}

.reservation-scrim {
  background: rgba(255, 255, 255, .84);
  inset: 0;
  position: absolute;
  z-index: -2;
}

.reservation-content {
  text-align: center;
}

.reservation-content h2 {
  margin-top: 16px;
}

.reservation-lead {
  margin-top: 26px;
}

.reservation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 36px;
}

.reservation-actions .button {
  /* CTAをマウス・タッチ双方で押しやすくするタップ領域。 */
  isolation: isolate;
  min-height: 52px;
  overflow: hidden;
  position: relative;
}

.reservation-actions .button::after {
  animation: cta-light-breath 4s ease-in-out infinite;
  animation-play-state: paused;
  background: radial-gradient(circle, rgba(255, 255, 255, .76), rgba(185, 200, 189, .22) 44%, transparent 72%);
  content: "";
  inset: -80% -22%;
  mix-blend-mode: screen;
  opacity: .12;
  pointer-events: none;
  position: absolute;
  transform: scale(.88);
  z-index: 0;
}

.reservation.is-ambient-active .reservation-actions .button::after {
  animation-play-state: running;
}

.falling-leaf {
  animation: falling-leaf var(--leaf-duration) var(--ease-calm) forwards;
  background: rgba(124, 153, 180, .46);
  border-radius: 90% 0 90% 0;
  height: 8px;
  left: var(--leaf-left);
  opacity: 0;
  pointer-events: none;
  position: fixed;
  top: -18px;
  transform-origin: center;
  width: 13px;
  z-index: 15;
}

.falling-leaf::after {
  background: rgba(51, 71, 91, .34);
  content: "";
  height: 1px;
  inset: 4px 1px auto 2px;
  position: absolute;
  transform: rotate(-32deg);
}

.button-secondary {
  background: rgba(255, 255, 255, .68);
  color: var(--color-text);
}

.reservation-sample {
  font-size: 13px;
  margin-top: 18px;
}

.emergency-note {
  border-top: 1px solid rgba(124, 153, 180, .62);
  margin-top: 54px;
  padding-top: 24px;
}

.emergency-note h3 {
  margin-top: 12px;
}

.emergency-note p:last-child {
  font-size: 13px;
  margin-top: 16px;
}

.site-footer {
  background: var(--color-text);
  color: var(--color-surface);
  padding-block: 52px;
}

.site-footer p {
  font-size: 13px;
  line-height: 1.8;
}

.footer-name {
  font-size: 15px !important;
  font-weight: 600;
  letter-spacing: .05em;
  margin-bottom: 8px;
}

.footer-meta {
  color: #dce3e8;
  text-align: right;
}

@keyframes cta-light-breath {
  0%, 100% {
    opacity: .1;
    transform: scale(.88);
  }
  50% {
    opacity: .34;
    transform: scale(1.08);
  }
}

@keyframes falling-leaf {
  0% {
    opacity: 0;
    transform: translate3d(0, -16px, 0) rotate(var(--leaf-rotate-start));
  }
  12% {
    opacity: .58;
  }
  42% {
    transform: translate3d(var(--leaf-drift-one), 38vh, 0) rotate(var(--leaf-rotate-mid));
  }
  72% {
    opacity: .5;
    transform: translate3d(var(--leaf-drift-two), 71vh, 0) rotate(var(--leaf-rotate-late));
  }
  100% {
    opacity: 0;
    transform: translate3d(var(--leaf-drift-end), calc(100vh + 52px), 0) rotate(var(--leaf-rotate-end));
  }
}
