:root {
  --surface: #fbf9f1;
  --surface-low: #f5f4ec;
  --surface-container: #f0eee6;
  --surface-high: #eae8e0;
  --outline: rgba(190, 202, 185, 0.5);
  --text: #1b1c17;
  --text-soft: #3f4a3c;
  --primary: #006e1c;
  --primary-soft: #4caf50;
  --secondary: #496800;
  --secondary-soft: #c8f17a;
  --tertiary: #974730;
  --shadow-soft: 0 14px 42px rgba(27, 28, 23, 0.06);
  --shadow-strong: 0 18px 54px rgba(27, 28, 23, 0.1);
  --frame-width: min(100vw, 430px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(251, 249, 241, 0.96)),
    var(--surface);
  color: var(--text);
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}

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

button,
input,
textarea {
  font: inherit;
  color: inherit;
}

button {
  border: 0;
  background: none;
  padding: 0;
  cursor: pointer;
}

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

textarea {
  resize: vertical;
}

.page-body {
  display: flex;
  justify-content: center;
  padding: 0;
}

.page-frame {
  position: relative;
  width: var(--frame-width);
  min-height: 100vh;
  background: var(--surface);
  overflow: hidden;
}

.grain-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-repeat: repeat;
}

.grain-overlay--overlay {
  background-image: url("./assets/illustrations/shared/noise-texture-overlay.svg");
  opacity: 0.03;
}

.grain-overlay--soft {
  background-image: url("./assets/illustrations/shared/noise-texture-soft.svg");
  opacity: 0.72;
}

.page-topbar {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 30;
  width: var(--frame-width);
  transform: translateX(-50%);
  background: rgba(251, 249, 241, 0.94);
  border-bottom: 1px solid rgba(190, 202, 185, 0.32);
  backdrop-filter: blur(16px);
}

.page-topbar__inner {
  min-height: 72px;
  padding: 18px 22px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-width: 0;
}

.brand-block,
.detail-topbar__left,
.booking-topbar__left {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-title {
  flex: 1;
  min-width: 0;
  margin: 0;
  font-size: 26px;
  line-height: 1.2;
  font-weight: 800;
  color: var(--primary);
}

.avatar {
  border-radius: 999px;
  overflow: hidden;
  background: var(--surface-container);
  flex-shrink: 0;
}

.avatar--sm {
  width: 44px;
  height: 44px;
}

.avatar--lg {
  width: 120px;
  height: 120px;
}

.circle-button {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 244, 236, 0.94);
  color: var(--primary);
  flex-shrink: 0;
}

.circle-button--soft {
  color: var(--text-soft);
}

.page-content {
  position: relative;
  z-index: 1;
  padding: 102px 18px 116px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.surface-card {
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.surface-card--soft {
  background: var(--surface-low);
}

.surface-card--plain {
  background: var(--surface);
  border: 1px solid rgba(190, 202, 185, 0.45);
}

.shadow-soft {
  box-shadow: var(--shadow-soft);
}

.shadow-strong {
  box-shadow: var(--shadow-strong);
}

.font-headline,
.font-headline-italic {
  font-weight: 800;
}

.font-headline-italic {
  font-style: normal;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: 0.08em;
}

.section-title {
  display: block;
  margin: 0;
  font-size: 34px;
  line-height: 1.14;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.section-copy {
  display: block;
  margin: 0;
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.72;
}

.tag,
.pill {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.06em;
}

.pill--primary {
  background: rgba(0, 110, 28, 0.1);
  color: var(--primary);
}

.primary-button,
.secondary-button,
.text-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 20px;
  text-align: center;
  transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease;
}

.primary-button:hover,
.secondary-button:hover,
.text-button:hover,
.bottom-nav__item:hover {
  transform: translateY(-1px);
}

.primary-button {
  min-height: 54px;
  padding: 0 24px;
  background: linear-gradient(135deg, var(--primary), var(--primary-soft));
  color: #ffffff;
  font-size: 18px;
  font-weight: 800;
  box-shadow: 0 12px 34px rgba(0, 110, 28, 0.18);
}

.secondary-button {
  min-height: 50px;
  padding: 0 22px;
  background: var(--surface-high);
  color: var(--text);
  font-size: 17px;
  font-weight: 800;
}

.text-button {
  width: fit-content;
  color: var(--primary);
  font-size: 16px;
  font-weight: 800;
}

.bottom-nav {
  position: fixed;
  left: 50%;
  bottom: 0;
  z-index: 40;
  width: var(--frame-width);
  transform: translateX(-50%);
  padding: 0 18px 18px;
  background: linear-gradient(to top, rgba(251, 249, 241, 0.98), rgba(251, 249, 241, 0.9));
}

.bottom-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 8px;
  padding: 12px 14px;
  border-radius: 28px;
  background: rgba(251, 249, 241, 0.96);
  border-top: 1px solid rgba(190, 202, 185, 0.3);
  box-shadow: 0 -8px 28px rgba(27, 28, 23, 0.06);
}

.bottom-nav__item {
  min-width: 108px;
  min-height: 44px;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  color: rgba(63, 74, 60, 0.72);
  font-family: "Microsoft YaHei", "YouYuan", "PingFang SC", "Hiragino Sans GB", sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.bottom-nav__item--active {
  color: var(--primary);
  background: rgba(0, 110, 28, 0.08);
}

.web-toast {
  position: fixed;
  left: 50%;
  bottom: 104px;
  z-index: 80;
  max-width: calc(var(--frame-width) - 40px);
  padding: 12px 16px;
  border-radius: 16px;
  background: rgba(27, 28, 23, 0.9);
  color: #ffffff;
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
  transform: translate(-50%, 20px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.web-toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.text-primary {
  color: var(--primary);
}

.text-secondary {
  color: var(--secondary);
}

.text-tertiary {
  color: var(--tertiary);
}

.text-muted {
  color: var(--text-soft);
}

.home-content {
  gap: 20px;
}

.home-hero {
  position: relative;
  min-height: 520px;
}

.home-hero__image,
.home-hero__shade,
.home-season-card__image,
.home-season-card__shade,
.listing-feature__image,
.listing-feature__shade,
.detail-gallery__main-image,
.detail-gallery__main-shade,
.member-story__image,
.member-story__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-hero__shade {
  background: linear-gradient(180deg, rgba(251, 249, 241, 0.08) 8%, rgba(27, 28, 23, 0.08) 42%, rgba(251, 249, 241, 0.9) 100%);
}

.home-hero__content {
  position: relative;
  z-index: 1;
  min-height: 520px;
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 16px;
}

.home-hero__title {
  margin: 0;
  font-size: 52px;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.home-hero__copy {
  max-width: 100%;
  margin: 0;
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.7;
}

.home-hero__button {
  width: fit-content;
}

.home-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.home-section__header,
.home-section__text,
.home-plans__intro {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.home-link-button {
  width: fit-content;
  color: var(--secondary);
  font-size: 14px;
  font-weight: 800;
}

.home-benefit-list,
.home-plan-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.home-benefit-card {
  padding: 20px;
  display: flex;
  gap: 14px;
}

.home-benefit-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.76);
  flex-shrink: 0;
  color: var(--secondary);
  font-weight: 800;
}

.home-benefit-card__text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.home-benefit-card__title {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
}

.home-benefit-card__copy {
  margin: 0;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.65;
}

.home-promo-image img {
  height: 320px;
  object-fit: cover;
}

.home-season-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.home-season-card {
  position: relative;
  overflow: hidden;
  min-height: 320px;
}

.home-season-card--hero {
  min-height: 360px;
}

.home-season-card--feature {
  min-height: 340px;
}

.home-season-card__shade {
  background: linear-gradient(180deg, rgba(27, 28, 23, 0.04) 10%, rgba(27, 28, 23, 0.26) 58%, rgba(27, 28, 23, 0.82) 100%);
}

.home-season-card__shade--warm {
  background: linear-gradient(180deg, rgba(27, 28, 23, 0.08) 8%, rgba(90, 56, 21, 0.24) 52%, rgba(27, 28, 23, 0.84) 100%);
}

.home-season-card__body {
  position: relative;
  z-index: 1;
  min-height: 360px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
}

.home-season-card__body--compact {
  min-height: 340px;
}

.home-season-card__tag {
  background: rgba(0, 110, 28, 0.82);
  color: #ffffff;
}

.home-season-card__tag--warm {
  background: rgba(151, 71, 48, 0.9);
}

.home-season-card__title {
  margin: 0;
  color: #ffffff;
  font-size: 34px;
  line-height: 1.15;
}

.home-season-card__copy {
  margin: 0;
  max-width: 330px;
  color: rgba(243, 241, 233, 0.92);
  font-size: 15px;
  line-height: 1.6;
}

.home-product-grid {
  display: flex;
  flex-direction: column;
}

.home-tea-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.home-tea-card__image {
  height: 240px;
  object-fit: cover;
}

.home-tea-card__content {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.home-tea-card__tag {
  background: rgba(240, 238, 230, 0.92);
  color: var(--secondary);
}

.home-tea-card__title {
  margin: 0;
  font-size: 28px;
  line-height: 1.2;
}

.home-tea-card__copy {
  margin: 0;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.7;
}

.home-story {
  position: relative;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.home-story__glow {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 160px;
  height: 160px;
  border-radius: 999px;
  background: rgba(190, 202, 185, 0.35);
  filter: blur(18px);
}

.home-story__image {
  height: 360px;
  object-fit: cover;
  border-radius: 22px;
}

.home-story__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.home-story__quote {
  margin: 0;
  font-size: 34px;
  line-height: 1.18;
}

.home-story__copy {
  margin: 0;
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.72;
}

.home-story__copy--small {
  font-size: 14px;
}

.home-plan-card {
  position: relative;
  padding: 24px 22px;
  border-radius: 26px;
  border: 1px solid rgba(190, 202, 185, 0.34);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.home-plan-card--featured {
  background: linear-gradient(180deg, rgba(0, 110, 28, 0.08), rgba(255, 255, 255, 0.92));
  border-color: rgba(0, 110, 28, 0.18);
}

.home-plan-card__badge {
  position: absolute;
  top: 0;
  right: 0;
  padding: 8px 14px;
  border-radius: 0 26px 0 18px;
  background: var(--primary);
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
}

.home-plan-card__title {
  margin: 0;
  font-size: 30px;
  line-height: 1.16;
}

.home-plan-card__subtitle,
.home-plan-card__feature-text {
  margin: 0;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.65;
}

.home-plan-card__price-row,
.listing-card__price-row,
.listing-info__price-row,
.detail-booking__price-block {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}

.home-plan-card__price {
  font-size: 46px;
  line-height: 1;
  font-weight: 800;
}

.home-plan-card__cycle {
  color: var(--text-soft);
  font-size: 15px;
  padding-bottom: 6px;
}

.home-plan-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.feature-check {
  color: var(--secondary);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.4;
}

.home-plan-card__button {
  width: 100%;
  margin-top: 4px;
}

.listing-content,
.detail-content,
.booking-content,
.member-content {
  gap: 18px;
}

.listing-header,
.booking-header {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.listing-search,
.listing-info,
.detail-booking,
.booking-summary,
.booking-membership,
.booking-fare,
.member-gift,
.member-coupon,
.member-link {
  padding: 22px;
}

.listing-search {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.listing-search__field,
.booking-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.listing-search__label,
.booking-field__label,
.booking-summary__label,
.detail-booking__label,
.member-gift__status-label,
.detail-map__title {
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.listing-search__value,
.booking-field__input,
.booking-field__textarea {
  min-height: 50px;
  padding: 14px 16px;
  border-radius: 18px;
  background: var(--surface-container);
  border: 1px solid transparent;
  color: var(--text);
  font-size: 16px;
  line-height: 1.5;
}

.booking-field__textarea {
  min-height: 112px;
}

.listing-search__button,
.listing-info__button,
.listing-load-more,
.detail-booking__button,
.booking-submit,
.member-gift__status-button {
  width: 100%;
}

.listing-chip-row {
  padding-top: 14px;
  border-top: 1px solid rgba(190, 202, 185, 0.45);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.listing-chip,
.detail-booking__member-tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--surface-container);
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
}

.listing-chip--active {
  background: var(--secondary-soft);
  color: #4e6e00;
}

.listing-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.listing-section__title,
.detail-section-title,
.booking-section__title {
  margin: 0;
  font-size: 30px;
  line-height: 1.18;
  font-weight: 800;
}

.listing-feature,
.detail-gallery__main,
.member-story__card {
  position: relative;
  min-height: 340px;
  overflow: hidden;
}

.listing-feature__shade {
  background: linear-gradient(180deg, rgba(27, 28, 23, 0.08) 12%, rgba(27, 28, 23, 0.26) 58%, rgba(27, 28, 23, 0.82) 100%);
}

.listing-feature__content,
.detail-gallery__main-content,
.member-story__content {
  position: relative;
  z-index: 1;
  min-height: 340px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
}

.listing-feature__tag {
  background: var(--tertiary);
  color: #ffffff;
}

.listing-feature__title,
.detail-gallery__title,
.member-story__title {
  margin: 0;
  color: #ffffff;
  font-size: 34px;
  line-height: 1.12;
}

.listing-feature__location,
.listing-rating,
.listing-card__rating,
.listing-meta,
.member-gift__status-meta,
.member-coupon__header {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.listing-feature__location,
.member-story__copy {
  color: rgba(243, 241, 233, 0.92);
  font-size: 15px;
}

.listing-info__top,
.listing-card__title-row,
.listing-info__footer,
.detail-booking__total,
.booking-fare__row,
.booking-fare__total {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.listing-info__footer {
  flex-direction: column;
}

.listing-info__copy,
.listing-card__copy,
.detail-description__copy,
.detail-amenity__copy,
.booking-summary__meta,
.booking-membership__copy,
.member-profile__copy,
.member-bento__copy,
.member-link__copy {
  margin: 0;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.7;
}

.listing-info__origin,
.listing-card__origin,
.detail-booking__origin {
  color: rgba(63, 74, 60, 0.72);
  text-decoration: line-through;
}

.listing-info__price,
.detail-booking__price {
  font-size: 42px;
  color: var(--primary);
  line-height: 1;
  font-weight: 800;
}

.listing-info__badge,
.listing-card__extra {
  padding: 6px 10px;
  border-radius: 12px;
  background: var(--secondary-soft);
  color: #4e6e00;
  font-size: 12px;
  font-weight: 800;
}

.listing-card {
  overflow: hidden;
}

.listing-card__media {
  position: relative;
}

.listing-card__image {
  height: 250px;
  object-fit: cover;
}

.listing-card__badge,
.detail-gallery__button {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 1;
}

.listing-card__badge {
  padding: 8px 12px;
  border-radius: 12px;
  background: var(--tertiary);
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
}

.listing-card__favorite,
.detail-favorite {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(27, 28, 23, 0.24);
  color: #ffffff;
}

.listing-card__body {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.listing-card__title {
  margin: 0;
  font-size: 28px;
  line-height: 1.18;
}

.detail-gallery {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.detail-gallery__main {
  min-height: 360px;
}

.detail-gallery__main-shade {
  background: linear-gradient(180deg, rgba(27, 28, 23, 0.08) 12%, rgba(27, 28, 23, 0.36) 58%, rgba(27, 28, 23, 0.82) 100%);
}

.detail-gallery__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.detail-gallery__thumb {
  height: 160px;
  border-radius: 22px;
  overflow: hidden;
}

.detail-gallery__thumb img,
.detail-gallery__wide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-gallery__thumb--wide {
  grid-column: span 2;
  position: relative;
  height: 190px;
}

.detail-gallery__button {
  top: auto;
  right: 16px;
  left: auto;
  bottom: 16px;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  background: rgba(251, 249, 241, 0.92);
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
}

.detail-block,
.booking-section,
.member-story {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.detail-host {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.detail-host__avatar {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 999px;
  flex-shrink: 0;
}

.detail-host__meta,
.booking-summary__content,
.member-profile__text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.detail-host__name {
  margin: 0;
  font-size: 24px;
}

.detail-host__tag,
.detail-booking__unit,
.detail-booking__tip,
.booking-summary__eyebrow,
.member-coupon__unit {
  color: var(--secondary);
  font-size: 14px;
}

.detail-description {
  position: relative;
  padding: 22px;
}

.detail-description__glow {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 130px;
  height: 130px;
  border-radius: 999px;
  background: rgba(0, 110, 28, 0.12);
  filter: blur(18px);
}

.detail-description__copy {
  position: relative;
  z-index: 1;
}

.detail-amenities {
  display: grid;
  gap: 12px;
}

.detail-amenity {
  min-height: 118px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.detail-amenity__title {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
}

.detail-map {
  min-height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 22px;
}

.detail-booking__member-tag {
  background: var(--surface-low);
  color: var(--tertiary);
}

.detail-booking__summary {
  overflow: hidden;
  border-radius: 18px;
  background: var(--surface);
  border: 1px solid rgba(190, 202, 185, 0.5);
}

.detail-booking__dates {
  display: grid;
  grid-template-columns: 1fr;
}

.detail-booking__date-cell,
.detail-booking__guest {
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 15px;
}

.detail-booking__date-cell:first-child {
  border-bottom: 1px solid rgba(190, 202, 185, 0.5);
}

.detail-booking__guest {
  border-top: 1px solid rgba(190, 202, 185, 0.5);
}

.detail-booking__tip {
  margin: 0;
  text-align: center;
  color: var(--text-soft);
}

.booking-summary {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.booking-summary__glow {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: rgba(200, 241, 122, 0.24);
  filter: blur(30px);
}

.booking-summary__image {
  position: relative;
  z-index: 1;
  height: 220px;
  object-fit: cover;
  border-radius: 20px;
}

.booking-summary__content {
  position: relative;
  z-index: 1;
  gap: 16px;
}

.booking-summary__title,
.booking-membership__title,
.member-bento__title,
.member-link__title {
  margin: 0;
  font-size: 28px;
  line-height: 1.18;
  font-weight: 800;
}

.booking-summary__dates {
  display: grid;
  gap: 14px;
}

.booking-summary__date {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 15px;
}

.booking-membership {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.booking-membership__meta {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 14px;
}

.booking-membership__icon {
  width: 60px;
  height: 60px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-soft);
  color: #003c0b;
  font-weight: 800;
}

.booking-membership__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.switch {
  position: relative;
  width: 56px;
  height: 32px;
  display: inline-flex;
  align-items: center;
}

.switch input {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.switch__track {
  width: 100%;
  height: 100%;
  border-radius: 999px;
  background: #e4e3db;
  transition: background 0.2s ease;
}

.switch__thumb {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: #ffffff;
  transition: transform 0.2s ease;
}

.switch input:checked + .switch__track {
  background: var(--primary);
}

.switch input:checked ~ .switch__thumb {
  transform: translateX(24px);
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.booking-fare {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.booking-fare__row,
.booking-fare__total {
  font-size: 15px;
  color: var(--text-soft);
}

.booking-fare__row--primary {
  color: var(--primary);
  font-weight: 800;
}

.booking-fare__total {
  padding-top: 16px;
  border-top: 1px solid rgba(190, 202, 185, 0.5);
  color: var(--text);
}

.booking-fare__total-price {
  font-weight: 800;
}

.member-profile {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.member-profile__avatar {
  width: 120px;
  height: 120px;
  border-radius: 999px;
  border: 6px solid rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
  object-fit: cover;
}

.member-profile__badge {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--secondary-soft);
  color: #4e6e00;
  font-size: 12px;
  font-weight: 800;
}

.member-profile__pulse {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--primary);
  animation: memberPulse 1.8s infinite;
}

.member-profile__name {
  margin: 0;
  font-size: 44px;
  line-height: 1.04;
}

.member-bento,
.member-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.member-gift,
.member-coupon,
.member-link {
  position: relative;
}

.member-gift__glow {
  position: absolute;
  top: -52px;
  right: -52px;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: rgba(0, 110, 28, 0.12);
  filter: blur(32px);
}

.member-gift__header,
.member-coupon__header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.member-gift__status {
  position: relative;
  z-index: 1;
  margin-top: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.member-gift__status-icon,
.member-link__icon {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.92);
  color: var(--primary);
  font-weight: 800;
}

.member-gift__status-value,
.member-coupon__value {
  font-weight: 800;
}

.member-coupon__value-row {
  margin-top: 18px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.member-coupon__value {
  font-size: 66px;
  line-height: 0.9;
  color: var(--primary);
}

.member-coupon__progress {
  margin-top: 16px;
  width: 100%;
  height: 12px;
  border-radius: 999px;
  overflow: hidden;
  background: var(--surface-container);
}

.member-coupon__progress-bar {
  position: relative;
  width: 60%;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--primary-soft));
}

.member-coupon__progress-glow {
  position: absolute;
  top: 50%;
  right: 0;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: #94f990;
  filter: blur(6px);
  transform: translateY(-50%);
}

.member-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.member-story__shade {
  background: linear-gradient(180deg, rgba(27, 28, 23, 0.06) 12%, rgba(27, 28, 23, 0.32) 54%, rgba(27, 28, 23, 0.84) 100%);
}

.member-story__tag {
  background: rgba(255, 255, 255, 0.82);
  color: var(--text);
}

@keyframes memberPulse {
  0% {
    opacity: 0.4;
    transform: scale(0.9);
  }

  50% {
    opacity: 1;
    transform: scale(1.08);
  }

  100% {
    opacity: 0.4;
    transform: scale(0.9);
  }
}

@media (min-width: 720px) {
  body {
    padding: 24px 0;
  }

  .page-frame {
    border-radius: 34px;
    box-shadow: 0 26px 70px rgba(27, 28, 23, 0.12);
    min-height: calc(100vh - 48px);
  }

  .page-topbar,
  .bottom-nav {
    width: min(430px, calc(100vw - 48px));
  }

  .page-topbar {
    top: 24px;
  }

  .bottom-nav {
    bottom: 24px;
  }
}

