:root {
  color-scheme: light;
  --ink: #241b16;
  --muted: #7b6b5b;
  --paper: #fff8ed;
  --wash: #eee3d3;
  --line: rgba(83, 60, 41, 0.14);
  --green: #2f665b;
  --gold: #a87332;
  --red: #9d3d2b;
  --dark: #17130f;
  --shadow: 0 24px 70px rgba(54, 38, 24, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(47, 102, 91, 0.12), transparent 34%),
    linear-gradient(315deg, rgba(157, 61, 43, 0.12), transparent 38%),
    var(--wash);
  font-family: "Songti SC", "STSong", "PingFang SC", "Microsoft YaHei", serif;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.shell {
  width: min(1360px, calc(100% - 28px));
  margin: 0 auto;
  padding: 26px 0 48px;
  font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
}

.topbar {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
  margin-bottom: 18px;
}

.app-title-block {
  display: grid;
  gap: 5px;
}

.app-title-block h1 {
  margin-top: 2px;
  max-width: 520px;
  font-size: clamp(28px, 3.7vw, 46px);
  line-height: 1.05;
  font-weight: 900;
}

.app-title-block p {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.eyebrow {
  display: inline-flex;
  color: #8d5735;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  margin-top: 6px;
  font-size: clamp(30px, 5vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(24px, 3vw, 42px);
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  font-size: 21px;
  line-height: 1.2;
}

.view-tabs {
  display: inline-grid;
  grid-template-columns: repeat(auto-fit, minmax(88px, 1fr));
  gap: 8px;
  width: min(820px, 100%);
  padding: 7px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 248, 237, 0.72);
  backdrop-filter: blur(16px);
}

.view-tabs button,
.view-tabs a,
.meal-tabs button,
.theme-grid button,
.action-grid button,
.admin-sidebar button {
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  padding: 10px 14px;
  font-weight: 900;
}

.view-tabs button,
.view-tabs a {
  min-height: 42px;
  white-space: nowrap;
}

.view-tabs a {
  display: grid;
  place-items: center;
  text-decoration: none;
}

.view-tabs button.active,
.meal-tabs button.active,
.admin-sidebar button.active {
  background: var(--dark);
  color: #fff5e6;
}

.site-surface {
  background: #15120e;
  color: #f8efe0;
}

.site-page {
  min-height: 100vh;
  overflow-x: hidden;
  background: #15120e;
  color: #f8efe0;
  font-family: "Songti SC", "STSong", "PingFang SC", "Microsoft YaHei", serif;
}

.site-nav {
  position: fixed;
  z-index: 20;
  top: 18px;
  right: max(18px, calc((100vw - 1180px) / 2));
  width: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  border: 1px solid rgba(248, 239, 224, 0.22);
  border-radius: 999px;
  background: rgba(21, 18, 14, 0.72);
  padding: 10px 12px;
  backdrop-filter: blur(18px);
}

.site-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.site-brand img {
  display: block;
  width: 118px;
  height: auto;
}

.site-nav nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav nav a {
  border-radius: 999px;
  color: rgba(248, 239, 224, 0.78);
  padding: 10px 13px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 900;
}

.site-nav nav a:hover,
.site-nav .nav-admin {
  background: #f8efe0;
  color: #211812;
}

.site-hero {
  --hero-edge: max(28px, calc((100vw - 1180px) / 2 + 64px));
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 112px var(--hero-edge) 68px;
}

.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: url("/assets/site/hero-lobby.jpg") center / cover no-repeat;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(12, 9, 7, 0.82), rgba(12, 9, 7, 0.28) 48%, rgba(12, 9, 7, 0.08)),
    linear-gradient(180deg, rgba(12, 9, 7, 0.26), rgba(12, 9, 7, 0.58));
}

.hero-copy {
  position: relative;
  z-index: 3;
  width: min(540px, 100%);
  max-width: 100%;
  min-width: 0;
  display: grid;
  gap: 18px;
}

.hero-copy span,
.site-kicker {
  color: #d9b477;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-copy h1 {
  color: #fff8ed;
  font-size: clamp(54px, 10vw, 140px);
  line-height: 0.88;
  text-shadow: 0 18px 58px rgba(0, 0, 0, 0.38);
}

.hero-logo-title {
  margin: 0;
  line-height: 1;
}

.hero-logo-title img {
  display: block;
  width: auto;
  max-width: min(260px, 100%);
  max-height: min(41vh, 370px);
  height: auto;
  filter: drop-shadow(0 18px 42px rgba(0, 0, 0, 0.38));
}

.hero-copy p {
  max-width: 560px;
  color: rgba(248, 239, 224, 0.86);
  font-size: clamp(17px, 2vw, 24px);
  line-height: 1.7;
  overflow-wrap: anywhere;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions a,
.contact-actions a {
  border-radius: 999px;
  background: #f8efe0;
  color: #211812;
  padding: 14px 20px;
  text-decoration: none;
  font-weight: 900;
}

.hero-actions a + a {
  border: 1px solid rgba(248, 239, 224, 0.36);
  background: rgba(248, 239, 224, 0.08);
  color: #f8efe0;
}

.hero-note {
  position: absolute;
  right: var(--hero-edge);
  bottom: 68px;
  z-index: 3;
  display: grid;
  gap: 5px;
  min-width: 168px;
  border-left: 1px solid rgba(248, 239, 224, 0.28);
  padding-left: 16px;
}

.hero-note strong {
  font-size: 26px;
  line-height: 1.05;
}

.hero-note span {
  color: rgba(248, 239, 224, 0.68);
}

.site-intro,
.space-section,
.occasion-section,
.contact-section {
  width: min(1180px, calc(100% - 28px));
  margin: 0 auto;
}

.site-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.88fr);
  gap: 34px;
  padding: 64px 0 56px;
  border-bottom: 1px solid rgba(248, 239, 224, 0.16);
}

.site-intro h2,
.section-title h2,
.occasion-copy h2,
.contact-section h2 {
  margin-top: 8px;
  color: #fff8ed;
  font-size: clamp(31px, 4.4vw, 62px);
  line-height: 1.04;
}

.site-intro p,
.space-card p,
.occasion-card p,
.occasion-copy p,
.contact-section p,
.contact-actions span {
  color: rgba(248, 239, 224, 0.7);
  line-height: 1.78;
}

.space-section {
  padding: 58px 0 74px;
}

.space-section,
.occasion-section,
.contact-section {
  scroll-margin-top: 104px;
}

.section-title {
  margin-bottom: 24px;
}

.space-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 16px;
}

.space-card {
  position: relative;
  grid-column: span 6;
  min-height: 340px;
  overflow: hidden;
  border: 1px solid rgba(248, 239, 224, 0.14);
  border-radius: 8px;
  background: #211812;
}

.space-card.featured {
  grid-column: span 7;
  grid-row: span 2;
  min-height: 696px;
}

.space-card:nth-child(2),
.space-card:nth-child(3) {
  grid-column: span 5;
}

.space-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.space-card:hover img {
  transform: scale(1.035);
}

.space-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(12, 9, 7, 0.86));
}

.space-card div {
  position: absolute;
  z-index: 1;
  left: 22px;
  right: 22px;
  bottom: 22px;
}

.space-card span {
  color: #d9b477;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.space-card h3 {
  margin: 8px 0;
  color: #fff8ed;
  font-size: 32px;
}

.occasion-section {
  padding: 20px 0 96px;
}

.occasion-section .section-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}

.occasion-section .section-title h2 {
  max-width: 760px;
}

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

.occasion-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(248, 239, 224, 0.14);
  border-radius: 8px;
  background: #211812;
}

.occasion-card:nth-child(2) {
  margin-top: 34px;
}

.occasion-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.occasion-card:hover img {
  transform: scale(1.032);
}

.occasion-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12, 9, 7, 0.04) 26%, rgba(12, 9, 7, 0.88)),
    linear-gradient(90deg, rgba(12, 9, 7, 0.35), transparent 48%);
}

.occasion-card div {
  position: absolute;
  z-index: 1;
  left: 22px;
  right: 22px;
  bottom: 22px;
}

.occasion-card span {
  color: #d9b477;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.occasion-card h3 {
  margin: 9px 0 8px;
  color: #fff8ed;
  font-size: 28px;
}

.contact-section {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  border-top: 1px solid rgba(248, 239, 224, 0.16);
  padding: 58px 0 72px;
}

.contact-section > div:first-child {
  max-width: 680px;
}

.contact-actions {
  justify-content: flex-end;
  max-width: 430px;
}

.contact-actions span {
  font-size: 13px;
}

.site-footer {
  width: min(1180px, calc(100% - 28px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-top: 1px solid rgba(248, 239, 224, 0.12);
  padding: 0 0 34px;
  color: rgba(248, 239, 224, 0.54);
  font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
  font-size: 13px;
}

.site-footer a {
  color: rgba(248, 239, 224, 0.74);
  text-decoration: none;
}

.site-footer a:hover {
  color: #fff8ed;
}

.access-stage,
.ops-shell,
.media-shell {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 248, 237, 0.76);
  box-shadow: var(--shadow);
}

.access-stage {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  gap: 20px;
  padding: 24px;
}

.access-card,
.access-policy,
.ops-status-grid article,
.ops-entry-grid a,
.media-grid article {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff8ed;
  padding: 18px;
}

.access-card {
  display: grid;
  gap: 16px;
}

.access-card p,
.access-policy li,
.ops-shell p,
.ops-status-grid small,
.media-shell p,
.media-grid small {
  color: var(--muted);
  line-height: 1.65;
}

.access-note {
  display: grid;
  gap: 6px;
  border-left: 3px solid var(--green);
  border-radius: 12px;
  background: #eef4ee;
  padding: 13px;
}

.access-note span {
  color: var(--muted);
  line-height: 1.55;
}

.access-form {
  display: grid;
  gap: 12px;
}

.access-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.access-form input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fffaf2;
  color: var(--ink);
  padding: 13px;
}

.access-form button {
  border: 0;
  border-radius: 12px;
  background: var(--green);
  color: #fff;
  padding: 13px 15px;
  font-weight: 900;
}

.access-form button:disabled {
  cursor: not-allowed;
  opacity: 0.56;
}

.access-error {
  border-radius: 10px;
  background: #fff0ec;
  color: var(--red);
  padding: 10px 12px;
  font-weight: 900;
}

.access-policy {
  align-self: start;
}

.access-policy h3 {
  margin: 8px 0 14px;
}

.access-policy ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
}

.ops-shell,
.media-shell {
  padding: 24px;
}

.media-hero {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.media-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  min-width: 250px;
}

.media-toolbar button {
  border: 0;
  border-radius: 12px;
  background: var(--green);
  color: #fff;
  padding: 12px 14px;
  font-weight: 900;
}

.media-toolbar .secondary {
  border: 1px solid var(--line);
  background: #fff8ed;
  color: var(--ink);
}

.media-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 14px;
}

.media-stats article {
  display: grid;
  gap: 5px;
  border: 1px solid rgba(47, 102, 91, 0.16);
  border-radius: 14px;
  background: #f4f0e7;
  padding: 14px;
}

.media-stats span,
.media-stats small {
  color: var(--muted);
}

.media-stats strong {
  color: var(--green);
  font-size: 28px;
  line-height: 1;
}

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

.ops-status-grid article,
.media-grid article {
  display: grid;
  gap: 7px;
}

.ops-status-grid span,
.ops-entry-grid span,
.media-grid span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
}

.ops-status-grid strong {
  font-size: 20px;
}

.ops-entry-grid,
.media-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.ops-entry-grid a {
  min-height: 178px;
  display: grid;
  align-content: start;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease;
}

.ops-entry-grid a:hover {
  border-color: rgba(47, 102, 91, 0.44);
  transform: translateY(-2px);
}

.ops-entry-grid strong {
  font-size: 24px;
}

.media-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 18px;
}

.media-card-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.media-card-head strong {
  min-width: 42px;
  border-radius: 999px;
  background: #efe7dc;
  color: var(--green);
  padding: 7px 10px;
  text-align: center;
  font-size: 16px;
}

.media-badges,
.field-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.media-badges em,
.field-chip-grid span {
  border-radius: 999px;
  background: #efe7dc;
  color: #5d4c3f;
  padding: 7px 9px;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.media-field-panel {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  border-left: 3px solid var(--green);
  border-radius: 12px;
  background: #eff4ee;
  padding: 14px 16px;
}

.media-field-panel h3 {
  margin: 6px 0;
}

.media-field-panel p {
  color: var(--muted);
  line-height: 1.62;
}

.public-invite-page {
  width: min(960px, calc(100% - 28px));
  margin: 0 auto;
  padding: 26px 0 48px;
}

.staff-booking-page {
  width: min(1180px, calc(100% - 24px));
  max-width: 100%;
  min-height: 100vh;
  margin: 0 auto;
  padding: 18px 0 42px;
}

.staff-booking-page,
.staff-booking-page * {
  min-width: 0;
}

.staff-booking-page .workspace,
.staff-access-stage {
  background: rgba(255, 248, 237, 0.84);
}

.staff-booking-page .phone-frame {
  max-width: 430px;
  border-width: 0;
  border-radius: 22px;
}

.staff-booking-page .phone-status {
  background: var(--green);
}

.workspace,
.invitation-stage,
.admin-shell {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 248, 237, 0.76);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.two-col {
  display: grid;
  grid-template-columns: 430px minmax(0, 1fr);
  gap: 24px;
  padding: 24px;
}

.phone-frame {
  width: 100%;
  max-width: 390px;
  margin: 0 auto;
  border: 10px solid var(--dark);
  border-radius: 34px;
  background: #f5efe5;
  overflow: hidden;
  box-shadow: 0 18px 55px rgba(23, 19, 15, 0.2);
}

.phone-status {
  height: 34px;
  display: grid;
  place-items: center;
  background: var(--dark);
  color: #fff5e6;
  font-size: 12px;
  letter-spacing: 0.06em;
}

.mini-hero {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 8px;
  padding: 18px;
  color: #fff8ed;
  background:
    linear-gradient(180deg, rgba(20, 13, 9, 0.08), rgba(20, 13, 9, 0.78)),
    url("../assets/photos/second-floor-08.jpg") center / cover;
}

.mini-hero span {
  font-weight: 900;
  letter-spacing: 0.08em;
}

.mini-hero strong {
  font-size: 28px;
  line-height: 1.05;
}

.date-selector {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  margin: 12px 12px 0;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff8ed;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.date-selector input {
  width: 100%;
  min-width: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  text-align: right;
}

.meal-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 12px;
}

.meal-tabs button {
  background: #fff8ed;
  border: 1px solid var(--line);
  padding: 9px 8px;
}

.room-list {
  display: grid;
  gap: 9px;
  padding: 0 12px 14px;
}

.room-card {
  width: 100%;
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff8ed;
  padding: 9px;
  color: var(--ink);
  text-align: left;
}

.room-card.selected {
  border-color: rgba(47, 102, 91, 0.7);
  box-shadow: inset 0 0 0 1px rgba(47, 102, 91, 0.45);
}

.room-card img {
  width: 62px;
  height: 54px;
  object-fit: cover;
  border-radius: 10px;
}

.room-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.room-copy strong {
  font-size: 14px;
}

.room-copy strong,
.room-copy small {
  overflow-wrap: anywhere;
}

.room-copy small {
  color: var(--muted);
  font-size: 12px;
}

.status-pill,
.status-summary strong {
  border-radius: 999px;
  padding: 7px 9px;
  color: white;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  white-space: nowrap;
}

.is-free {
  background: #2f7a58;
}

.is-booked {
  background: #a26b2d;
}

.is-arrived {
  background: #2d241d;
}

.is-off {
  background: #878178;
}

.detail-panel,
.theme-panel,
.admin-main {
  background: rgba(255, 250, 242, 0.86);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
}

.panel-head {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: flex-end;
}

.section-actions button {
  border: 0;
  border-radius: 10px;
  background: var(--green);
  color: #fff;
  padding: 10px 13px;
  font-weight: 900;
}

.section-actions button.secondary {
  border: 1px solid var(--line);
  background: #fff8ed;
  color: var(--ink);
}

.panel-head p,
.theme-panel p,
.arrival-copy {
  color: var(--muted);
  line-height: 1.65;
}

.room-feature {
  width: 100%;
  height: min(42vw, 330px);
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 13px;
}

.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.feature-tags span {
  border-radius: 999px;
  background: #efe4d5;
  color: #614e3e;
  padding: 8px 11px;
  font-size: 13px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.status-summary {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0;
  padding: 14px;
  border-radius: 14px;
  background: #f4ebdf;
}

.status-summary span {
  color: var(--muted);
  min-width: 0;
  overflow-wrap: anywhere;
}

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

.action-grid button {
  border-radius: 12px;
  background: var(--green);
  color: #fff;
  padding: 13px;
}

.action-grid .danger {
  background: #fff4f0;
  color: var(--red);
  border: 1px solid rgba(157, 61, 43, 0.26);
}

.invitation-stage {
  display: grid;
  grid-template-columns: 430px minmax(0, 1fr);
  gap: 26px;
  padding: 24px;
}

.invitation-card {
  width: 100%;
  max-width: 390px;
  margin: 0 auto;
  border-radius: 28px;
  overflow: hidden;
  background: #fff8ed;
  box-shadow: 0 24px 70px rgba(54, 38, 24, 0.18);
}

.invite-cover {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 12px;
  padding: 26px;
  color: #fff8ed;
  background-position: center;
  background-size: cover;
}

.invite-cover span {
  align-self: flex-start;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 999px;
  padding: 7px 11px;
  font-weight: 900;
}

.invite-cover h2 {
  max-width: 100%;
  overflow-wrap: anywhere;
  font-size: clamp(32px, 8vw, 42px);
}

.invite-section {
  padding: 24px;
  border-top: 1px solid #eadccd;
}

.invite-section h3 {
  margin: 7px 0 14px;
}

.invite-list {
  display: grid;
  gap: 9px;
  margin: 0;
}

.invite-list div {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 10px;
  padding: 11px 0;
  border-top: 1px solid #efe3d4;
}

.invite-list dt {
  color: var(--muted);
}

.invite-list dd {
  margin: 0;
  font-weight: 900;
}

.invite-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 12px;
}

.manager-card {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-radius: 14px;
  background: #edf1e9;
  background: color-mix(in srgb, var(--theme-accent), white 78%);
  padding: 14px;
  margin-top: 14px;
}

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

.theme-grid button {
  min-height: 110px;
  border-radius: 16px;
  border: 1px solid var(--line);
  border: 1px solid color-mix(in srgb, var(--theme-accent), white 55%);
  background: #fff8ed;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--theme-accent), white 72%), #fff8ed);
  color: var(--ink);
  text-align: left;
}

.theme-grid button.active {
  box-shadow: inset 0 0 0 2px var(--theme-accent);
}

.theme-grid strong,
.theme-grid span {
  display: block;
}

.theme-grid span {
  margin-top: 8px;
  color: var(--muted);
}

.admin-shell {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  min-height: 660px;
}

.admin-sidebar {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 24px;
  background: #201712;
  color: #fff8ed;
}

.admin-sidebar h2 {
  margin-bottom: 18px;
}

.admin-sidebar button {
  border-radius: 12px;
  text-align: left;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 248, 237, 0.74);
}

.admin-sidebar button.active {
  background: #fff8ed;
  color: var(--ink);
}

.admin-main {
  border: 0;
  border-radius: 0;
  padding: 26px;
}

.admin-work-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.admin-action-bar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0;
}

.admin-action-bar button {
  min-height: 92px;
  border: 1px solid rgba(47, 102, 91, 0.18);
  border-radius: 14px;
  background: #fff8ed;
  color: var(--ink);
  padding: 14px;
  text-align: left;
  box-shadow: 0 14px 36px rgba(54, 38, 24, 0.08);
}

.admin-action-bar strong,
.admin-action-bar span {
  display: block;
}

.admin-action-bar strong {
  font-size: 18px;
}

.admin-action-bar span {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.45;
}

.admin-table {
  display: grid;
  gap: 8px;
}

.admin-row {
  display: grid;
  grid-template-columns: 84px 1.25fr 0.82fr 0.82fr 80px 150px;
  gap: 12px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff8ed;
  padding: 10px;
}

.admin-row.header {
  background: transparent;
  border: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.admin-row img {
  width: 84px;
  height: 58px;
  object-fit: cover;
  border-radius: 10px;
}

.admin-row strong,
.admin-row small {
  display: block;
}

.admin-row small {
  color: var(--muted);
  margin-top: 4px;
}

.admin-row em {
  border-radius: 999px;
  background: #e6f0e9;
  color: var(--green);
  padding: 7px 9px;
  text-align: center;
  font-style: normal;
  font-weight: 900;
}

.row-actions,
.card-actions,
.panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.row-actions button,
.card-actions button,
.panel-actions button,
.secondary {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff8ed;
  color: var(--ink);
  padding: 9px 11px;
  font-weight: 900;
}

.card-actions {
  margin-top: 14px;
}

.admin-editor {
  display: grid;
  gap: 16px;
  margin: 18px 0;
  border: 1px solid rgba(47, 102, 91, 0.2);
  border-radius: 16px;
  background: rgba(255, 248, 237, 0.82);
  padding: 18px;
}

.admin-editor h3 {
  margin-top: 6px;
}

.admin-editor p {
  color: var(--muted);
  line-height: 1.65;
}

.admin-form.inline {
  margin-top: 0;
}

.media-editor {
  grid-template-columns: 180px minmax(0, 1fr);
  align-items: center;
}

.media-editor > img,
.theme-swatch {
  width: 180px;
  height: 124px;
  border-radius: 14px;
}

.media-editor > img {
  object-fit: cover;
}

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

.permission-grid label {
  display: flex;
  gap: 8px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff8ed;
  padding: 11px;
  font-weight: 900;
  color: var(--muted);
}

.result-editor {
  background:
    linear-gradient(135deg, rgba(47, 102, 91, 0.1), transparent 45%),
    #fff8ed;
}

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

.result-grid article {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fffaf2;
  padding: 14px;
}

.result-grid span,
.result-grid strong {
  display: block;
}

.result-grid span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.result-grid strong {
  margin-top: 7px;
  line-height: 1.45;
}

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

.admin-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.admin-form label.wide {
  grid-column: 1 / -1;
}

.admin-form input,
.admin-form select,
.admin-form textarea,
.entry-table input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff8ed;
  color: var(--ink);
  padding: 12px;
}

.admin-form select {
  min-height: 45px;
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--muted) 50%),
    linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 19px,
    calc(100% - 13px) 19px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 34px;
}

.admin-form textarea {
  min-height: 92px;
  resize: vertical;
  line-height: 1.55;
}

.admin-entry-page .settings-hero {
  align-items: stretch;
}

.admin-entry-layout {
  align-items: start;
}

.entry-table {
  display: grid;
  gap: 8px;
  overflow-x: auto;
}

.entry-row {
  display: grid;
  gap: 8px;
  min-width: 760px;
  align-items: center;
}

.room-entry-row {
  grid-template-columns: 0.55fr 1fr 0.7fr 1fr 0.8fr 1.8fr;
}

.manager-entry-row {
  grid-template-columns: 1fr 1fr 1fr 2.2fr;
}

.permission-entry-row {
  grid-template-columns: 140px minmax(0, 1fr) minmax(0, 1fr);
  min-width: 520px;
}

.permission-entry-row > span,
.permission-entry-row select {
  border-radius: 12px;
  border: 0;
  background: #efe7dc;
  color: var(--gold);
  padding: 12px;
  font-size: 12px;
  font-weight: 900;
}

.permission-entry-row select {
  width: 100%;
  min-height: 46px;
}

.entry-row.table-head {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.entry-row.table-head span {
  border-radius: 10px;
  background: #efe7dc;
  padding: 9px 11px;
}

.entry-table input,
.entry-table select {
  min-height: 44px;
}

.permission-entry-table input,
.permission-entry-table select {
  min-height: 46px;
}

.staff-permission-layout {
  display: grid;
  gap: 18px;
  margin-top: 16px;
}

.staff-create-area {
  display: grid;
  gap: 14px;
  border: 1px solid rgba(47, 102, 91, 0.16);
  border-radius: 14px;
  background: #fffaf2;
  padding: 16px;
}

.staff-create-head,
.staff-list-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.staff-create-head strong,
.staff-list-head strong {
  color: var(--ink);
  font-size: 16px;
  font-weight: 900;
}

.staff-create-head span,
.staff-list-head span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.5;
}

.staff-create-form {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) minmax(0, 1fr);
  gap: 10px;
}

.staff-create-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.staff-create-form input,
.staff-create-form select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff8ed;
  color: var(--ink);
  padding: 12px;
}

.staff-create-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--muted) 50%),
    linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 19px,
    calc(100% - 13px) 19px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 34px;
}

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

.staff-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
}

.staff-list-item {
  display: grid;
  gap: 8px;
  min-height: 108px;
  border: 1px solid rgba(168, 115, 50, 0.18);
  border-radius: 12px;
  background: rgba(255, 248, 237, 0.76);
  padding: 14px;
}

.staff-card-head {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}

.staff-delete-button {
  border: 1px solid rgba(157, 61, 43, 0.2);
  border-radius: 999px;
  background: #fff0ec;
  color: var(--red);
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 900;
}

.staff-delete-button:hover {
  border-color: rgba(157, 61, 43, 0.44);
  background: #ffe6df;
}

.staff-list-item strong {
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
}

.staff-list-item em {
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
}

.staff-role-pill {
  justify-self: start;
  border-radius: 999px;
  background: rgba(47, 102, 91, 0.1);
  color: var(--green);
  padding: 5px 9px;
  font-size: 12px;
  font-weight: 900;
}

.staff-empty {
  border: 1px dashed rgba(83, 60, 41, 0.22);
  border-radius: 12px;
  color: var(--muted);
  padding: 18px;
  font-size: 14px;
  font-weight: 800;
}

.store-info-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 16px;
}

.theme-entry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 14px;
}

.theme-entry-card {
  overflow: hidden;
  border: 1px solid rgba(47, 102, 91, 0.18);
  border-radius: 16px;
  background: #fffaf2;
  box-shadow: 0 18px 42px rgba(23, 19, 15, 0.06);
}

.theme-entry-preview {
  display: flex;
  min-height: 210px;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  background-color: var(--green);
  background-position: center;
  background-size: cover;
  color: #fff8ed;
  padding: 18px;
}

.theme-entry-preview span {
  width: max-content;
  max-width: 100%;
  border-radius: 999px;
  background: rgba(23, 19, 15, 0.72);
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 900;
}

.theme-entry-preview strong {
  max-width: 100%;
  font-size: 24px;
  line-height: 1.12;
  overflow-wrap: anywhere;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.28);
}

.theme-card-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  border-top: 4px solid var(--theme-accent, var(--green));
  padding: 14px;
}

.room-entry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 14px;
}

.room-entry-card,
.permission-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fffaf2;
}

.room-entry-card {
  overflow: hidden;
}

.room-entry-card.is-empty {
  background: rgba(255, 250, 242, 0.7);
}

.room-entry-photo {
  position: relative;
  min-height: 180px;
  background: #efe7dc;
}

.room-entry-photo img {
  width: 100%;
  height: 210px;
  display: block;
  object-fit: cover;
}

.room-entry-photo span {
  position: absolute;
  left: 12px;
  bottom: 12px;
  border-radius: 999px;
  background: rgba(23, 19, 15, 0.78);
  color: #fff8ed;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 900;
}

.placeholder-photo {
  display: grid;
  place-items: center;
  min-height: 210px;
}

.placeholder-photo span {
  position: static;
  background: var(--green);
}

.room-card-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  padding: 14px;
}

.image-path-field {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: end;
}

.image-path-field label {
  min-width: 0;
}

.image-pick-button {
  min-height: 45px;
  white-space: nowrap;
}

.native-image-input {
  display: none;
}

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

.permission-card {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.permission-card h4 {
  margin: 0;
  font-size: 18px;
}

.permission-card p {
  color: var(--muted);
  line-height: 1.6;
}

.permission-form {
  margin: 0;
}

.toast {
  position: fixed;
  z-index: 30;
  right: 22px;
  bottom: 22px;
  width: min(360px, calc(100vw - 32px));
  border: 1px solid rgba(47, 102, 91, 0.2);
  border-radius: 14px;
  background: #fff8ed;
  color: var(--ink);
  padding: 14px 16px;
  box-shadow: 0 18px 58px rgba(23, 19, 15, 0.18);
  font-weight: 900;
  line-height: 1.55;
}

.staff-booking-page .toast {
  top: 12px;
  bottom: auto;
  pointer-events: none;
}

.mini-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  border-top: 1px solid var(--line);
  padding: 12px;
  background: #efe5d8;
}

.mini-bottom button {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff8ed;
  color: var(--ink);
  padding: 10px 6px;
  font-size: 12px;
  font-weight: 900;
}

.staff-mini-bottom {
  grid-template-columns: repeat(2, 1fr);
}

.send-card-actions {
  display: grid;
  gap: 8px;
}

.wechat-share-preview {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  border: 1px solid rgba(47, 102, 91, 0.18);
  border-radius: 15px;
  background:
    linear-gradient(135deg, rgba(47, 102, 91, 0.11), rgba(168, 115, 50, 0.09)),
    #fffaf2;
  padding: 12px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.68);
}

.wechat-share-preview img {
  width: 104px;
  height: 78px;
  border-radius: 11px;
  object-fit: cover;
}

.wechat-share-preview div {
  display: grid;
  gap: 5px;
}

.wechat-share-preview span {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
}

.wechat-share-preview strong {
  overflow-wrap: anywhere;
  line-height: 1.35;
}

.wechat-share-preview small {
  color: var(--muted);
  line-height: 1.5;
}

.reservation-snapshot,
.operation-panel {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff8ed;
  padding: 16px;
}

.reservation-snapshot {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.reservation-snapshot h3 {
  font-size: 24px;
}

.reservation-snapshot dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  margin: 0;
}

.reservation-snapshot dl div {
  border-radius: 12px;
  background: #f3eadf;
  padding: 10px;
}

.reservation-snapshot dt,
.reservation-snapshot p {
  color: var(--muted);
}

.reservation-snapshot dd {
  margin: 4px 0 0;
  font-weight: 900;
}

.operation-panel {
  display: grid;
  gap: 16px;
}

.panel-title {
  display: grid;
  gap: 6px;
}

.operation-panel p,
.privacy-note {
  color: var(--muted);
  line-height: 1.68;
}

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

.form-grid label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.form-grid label.wide {
  grid-column: 1 / -1;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fffaf2;
  color: var(--ink);
  padding: 12px;
}

.form-grid select {
  appearance: auto;
}

.panel-actions,
.invite-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.panel-actions button,
.send-options button,
.invite-actions button,
.wide-action,
.admin-card button,
.form-submit,
.record-toolbar button,
.theme-panel > button {
  border: 0;
  border-radius: 12px;
  background: var(--green);
  color: #fff;
  padding: 12px 14px;
  font-weight: 900;
}

.panel-actions .secondary,
.theme-panel > button.secondary,
.record-toolbar button {
  border: 1px solid var(--line);
  background: #fff8ed;
  color: var(--ink);
}

.panel-actions .danger,
.danger-zone .danger {
  background: #fff4f0;
  color: var(--red);
  border: 1px solid rgba(157, 61, 43, 0.28);
}

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

.send-options article {
  display: grid;
  gap: 9px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #f5ece1;
  padding: 14px;
}

.send-options p {
  font-size: 14px;
}

.privacy-note {
  border-left: 3px solid var(--green);
  background: #eff4ee;
  border-radius: 10px;
  padding: 12px;
  font-weight: 800;
}

.room-switch-list {
  display: grid;
  gap: 10px;
}

.room-switch-list button {
  display: grid;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fffaf2;
  color: var(--ink);
  padding: 13px;
  text-align: left;
}

.room-switch-list span {
  color: var(--muted);
}

.timeline {
  display: grid;
  gap: 10px;
}

.timeline article {
  display: grid;
  grid-template-columns: 58px 140px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  border-top: 1px solid var(--line);
  padding-top: 11px;
}

.timeline time {
  color: var(--gold);
  font-weight: 900;
}

.timeline p {
  color: var(--muted);
}

.role-strip {
  display: grid;
  gap: 7px;
  background: #edf1e9;
  background: color-mix(in srgb, var(--theme-accent), white 82%);
}

.role-strip span {
  color: var(--muted);
  font-weight: 900;
}

.invite-actions {
  margin-top: 14px;
}

.invite-actions button {
  flex: 1;
  min-width: 108px;
}

.invite-actions button.active {
  background: var(--dark);
  color: #fff8ed;
}

.invite-tool-card {
  border-top: 1px solid rgba(83, 60, 41, 0.14);
}

.map-preview,
.share-preview {
  border: 1px solid rgba(47, 102, 91, 0.18);
  border-radius: 14px;
  background: rgba(47, 102, 91, 0.08);
  padding: 14px;
}

.map-preview {
  display: grid;
  gap: 6px;
}

.share-preview {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 13px;
  align-items: center;
}

.share-preview img {
  width: 96px;
  height: 72px;
  object-fit: cover;
  border-radius: 10px;
}

.share-preview strong,
.share-preview span,
.share-preview small {
  display: block;
}

.share-preview span,
.share-preview small,
.map-preview span {
  color: var(--muted);
  line-height: 1.5;
}

.manager-only {
  background: #fff4ea;
}

.invite-locked .invite-cover h2 {
  font-size: clamp(30px, 7vw, 36px);
}

.secure-steps {
  display: grid;
  gap: 9px;
  margin: 0 0 16px;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.65;
}

.wide-action,
.theme-panel > button.full {
  width: 100%;
  margin-top: 12px;
}

.role-grid {
  display: grid;
  gap: 10px;
  margin: 16px 0;
}

.role-grid button {
  display: grid;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff8ed;
  color: var(--ink);
  padding: 14px;
  text-align: left;
}

.role-grid button.active {
  border-color: rgba(47, 102, 91, 0.62);
  background: #edf5ef;
  box-shadow: inset 0 0 0 1px rgba(47, 102, 91, 0.28);
}

.role-grid span {
  color: var(--muted);
  line-height: 1.5;
}

.admin-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.admin-card {
  display: grid;
  gap: 10px;
  min-height: 160px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff8ed;
  padding: 16px;
}

.admin-card span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
}

.admin-card p {
  color: var(--muted);
  line-height: 1.65;
}

.admin-card strong {
  align-self: end;
  color: var(--green);
}

.theme-admin-grid .admin-card {
  background: #fff8ed;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--theme-accent), white 76%), #fff8ed);
}

.form-submit {
  align-self: end;
}

.store-config {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.store-config article {
  display: grid;
  gap: 7px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff8ed;
  padding: 16px;
}

.store-config span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.store-config strong {
  line-height: 1.55;
}

.record-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.record-toolbar button.active {
  background: var(--dark);
  color: #fff8ed;
}

.record-table {
  display: grid;
  gap: 10px;
}

.record-table article {
  display: grid;
  grid-template-columns: 1.05fr 0.78fr 1.1fr 92px 184px;
  gap: 12px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff8ed;
  padding: 13px;
}

.record-table .empty-record {
  grid-template-columns: 1fr;
}

.record-table span {
  color: var(--muted);
}

.record-table em {
  border-radius: 999px;
  background: #efe7dc;
  color: var(--ink);
  padding: 7px 9px;
  text-align: center;
  font-style: normal;
  font-weight: 900;
}

.admin-settings-page {
  display: grid;
  gap: 18px;
}

.settings-hero,
.settings-panel,
.settings-status-grid article,
.setting-card,
.share-channel-list article,
.material-table {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 248, 237, 0.86);
  box-shadow: 0 16px 42px rgba(54, 38, 24, 0.08);
}

.settings-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: start;
  padding: 24px;
}

.settings-hero h2 {
  margin: 8px 0 10px;
}

.settings-hero p,
.settings-panel p,
.setting-card p,
.share-channel-list p,
.settings-steps,
.material-row span,
.material-row small {
  color: var(--muted);
  line-height: 1.65;
}

.settings-status-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.settings-status-grid article {
  display: grid;
  gap: 8px;
  padding: 16px;
}

.settings-status-grid span,
.setting-card span,
.share-channel-list em,
.material-row mark {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
}

.settings-status-grid strong {
  line-height: 1.35;
}

.settings-status-grid em,
.setting-card em,
.launch-check-list em,
.material-row em {
  justify-self: start;
  border-radius: 999px;
  background: #efe7dc;
  color: #5d4c3f;
  padding: 7px 9px;
  font-style: normal;
  font-size: 12px;
  font-weight: 900;
}

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

.settings-panel {
  padding: 20px;
}

.settings-panel.full {
  grid-column: 1 / -1;
}

.invite-content-admin-panel {
  background:
    linear-gradient(135deg, rgba(47, 102, 91, 0.08), transparent 42%),
    rgba(255, 248, 237, 0.9);
}

.content-module-grid {
  display: grid;
  gap: 16px;
}

.content-module-card {
  display: grid;
  gap: 16px;
  border: 1px solid rgba(83, 60, 41, 0.13);
  border-radius: 14px;
  background: rgba(255, 252, 246, 0.72);
  padding: 16px;
}

.content-module-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.36fr);
  gap: 16px;
  align-items: start;
}

.content-module-head h4 {
  margin: 6px 0;
  font-size: 24px;
}

.content-module-controls,
.content-section-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.content-section-form {
  grid-template-columns: 1fr 1fr 1fr;
}

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

.content-module-item {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 14px;
  border-top: 1px solid rgba(83, 60, 41, 0.12);
  padding-top: 14px;
}

.content-module-preview {
  position: relative;
  min-height: 170px;
  overflow: hidden;
  border-radius: 14px;
  background: #1b241f;
}

.content-module-preview img {
  width: 100%;
  height: 100%;
  min-height: 170px;
  object-fit: cover;
}

.content-module-preview span {
  position: absolute;
  left: 12px;
  bottom: 12px;
  border-radius: 999px;
  background: rgba(20, 18, 12, 0.72);
  color: #f5d77e;
  padding: 7px 10px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.content-module-form {
  align-content: start;
}

@media (max-width: 760px) {
  .content-module-head,
  .content-module-item,
  .content-section-form {
    grid-template-columns: 1fr;
  }

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

.settings-steps {
  display: grid;
  gap: 9px;
  margin: 0 0 18px;
  padding-left: 20px;
}

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

.visibility-grid,
.setting-card-grid,
.share-channel-list,
.launch-check-list {
  display: grid;
  gap: 12px;
}

.visibility-grid article {
  display: grid;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fffaf2;
  padding: 14px;
}

.visibility-grid article > div,
.mini-list,
.theme-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.visibility-grid span,
.mini-list em {
  border-radius: 999px;
  background: #efe7dc;
  color: #5d4c3f;
  padding: 7px 9px;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

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

.setting-card {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.setting-card h4 {
  margin: 0;
  font-size: 20px;
  line-height: 1.25;
}

.setting-card dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

.setting-card dl div {
  display: grid;
  gap: 3px;
  border-top: 1px solid var(--line);
  padding-top: 8px;
}

.setting-card dt {
  color: var(--muted);
  font-size: 12px;
}

.setting-card dd {
  margin: 0;
  font-weight: 900;
  line-height: 1.45;
}

.theme-strip i {
  width: 34px;
  height: 34px;
  border: 3px solid #fff8ed;
  border-radius: 999px;
  box-shadow: 0 0 0 1px var(--line);
}

.share-channel-list article {
  display: grid;
  gap: 8px;
  padding: 14px;
}

.launch-check-list label {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fffaf2;
  padding: 12px;
}

.launch-check-list input {
  width: 16px;
  height: 16px;
}

.material-table {
  display: grid;
  gap: 0;
  margin: 0 0 18px;
  overflow: hidden;
}

.material-row {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 0.8fr 0.8fr 72px;
  gap: 12px;
  align-items: center;
  border-top: 1px solid var(--line);
  padding: 13px 14px;
}

.material-row:first-child {
  border-top: 0;
}

.material-row.header {
  background: #f1e7d8;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.material-row strong,
.material-row small {
  display: block;
}

.material-row mark {
  justify-self: start;
  border-radius: 999px;
  background: #eff4ee;
  color: var(--green);
  padding: 7px 9px;
}

@media (max-width: 980px) {
  .site-nav {
    top: 10px;
    width: min(100% - 18px, 1180px);
  }

  .site-intro {
    grid-template-columns: 1fr;
  }

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

  .space-card,
  .space-card.featured {
    grid-column: 1 / -1;
    min-height: 420px;
    grid-row: auto;
  }

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

  .occasion-card,
  .occasion-card:nth-child(2) {
    min-height: 420px;
    margin-top: 0;
  }

  .contact-section {
    display: grid;
    align-items: start;
  }

  .site-footer {
    width: min(100% - 28px, 1180px);
  }

  .contact-actions {
    justify-content: flex-start;
  }

  .topbar,
  .access-stage,
  .two-col,
  .invitation-stage,
  .admin-shell {
    grid-template-columns: 1fr;
  }

  .topbar {
    display: grid;
  }

  .view-tabs {
    width: 100%;
  }

  .admin-sidebar {
    border-radius: 0;
  }

  .admin-card-grid,
  .ops-entry-grid,
  .media-grid,
  .settings-hero,
  .settings-status-grid,
  .settings-layout,
  .staff-create-form,
  .setting-card-grid,
  .material-row,
  .record-table article {
    grid-template-columns: 1fr;
  }

  .settings-panel.full {
    grid-column: auto;
  }

  .store-config {
    grid-template-columns: 1fr;
  }

  .timeline article {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .site-nav {
    display: none;
  }

  .site-hero {
    --hero-edge: 18px;
    min-height: 92vh;
    padding: 62px 18px 34px;
  }

  .hero-copy {
    gap: 15px;
  }

  .hero-copy p {
    max-width: 352px;
    font-size: 16px;
  }

  .hero-logo-title img {
    max-width: min(190px, 64vw);
    max-height: 238px;
  }

  .hero-actions {
    max-width: 330px;
  }

  .hero-actions a,
  .contact-actions a {
    width: 100%;
    text-align: center;
  }

  .hero-actions a + a {
    width: auto;
    justify-self: start;
    border: 0;
    border-bottom: 1px solid rgba(248, 239, 224, 0.42);
    border-radius: 0;
    background: transparent;
    padding: 7px 0 5px;
  }

  .hero-note {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(320px, 100%);
    margin-top: 24px;
  }

  .hero-note strong {
    font-size: 25px;
  }

  .site-intro,
  .space-section,
  .occasion-section,
  .contact-section,
  .site-footer {
    width: min(100% - 20px, 1180px);
  }

  .site-footer {
    flex-direction: column;
    gap: 6px;
    padding-bottom: 26px;
    text-align: center;
  }

  .site-intro {
    padding-top: 44px;
  }

  .space-section,
  .occasion-section,
  .contact-section {
    scroll-margin-top: 88px;
  }

  .space-card,
  .space-card.featured,
  .occasion-card {
    min-height: 330px;
  }

  .shell {
    width: min(100% - 16px, 1360px);
    padding-top: 12px;
  }

  .topbar {
    gap: 10px;
    margin-bottom: 12px;
  }

  .app-title-block h1 {
    font-size: 28px;
  }

  .app-title-block p {
    font-size: 12px;
  }

  .action-grid,
  .send-options,
  .theme-grid,
  .ops-status-grid,
  .admin-form,
  .form-grid,
  .reservation-snapshot dl {
    grid-template-columns: 1fr;
    border-radius: 16px;
  }

  .view-tabs {
    display: flex;
    width: calc(100vw - 16px);
    margin-left: calc((100% - 100vw + 16px) / 2);
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    border-radius: 999px;
    padding: 6px;
    scrollbar-width: none;
  }

  .view-tabs::-webkit-scrollbar {
    display: none;
  }

  .view-tabs button,
  .view-tabs a {
    flex: 0 0 auto;
    min-height: 38px;
    min-width: max-content;
    padding: 8px 14px;
  }

  .workspace,
  .access-stage,
  .ops-shell,
  .media-shell,
  .invitation-stage,
  .admin-shell {
    border-radius: 14px;
  }

  .two-col,
  .access-stage,
  .ops-shell,
  .media-shell,
  .invitation-stage {
    padding: 12px;
  }

  .media-hero,
  .media-field-panel {
    grid-template-columns: 1fr;
  }

  .media-hero {
    display: grid;
    gap: 14px;
  }

  .media-toolbar {
    justify-content: stretch;
    min-width: 0;
  }

  .media-toolbar button {
    flex: 1 1 130px;
  }

  .media-stats {
    grid-template-columns: 1fr;
  }

  .phone-frame,
  .invitation-card {
    max-width: 100%;
  }

  .staff-booking-page {
    width: 100%;
    padding: 0;
  }

  .staff-booking-page .workspace {
    border: 0;
    border-radius: 0;
    box-shadow: none;
    width: 100%;
    max-width: 100%;
  }

  .staff-booking-page .two-col {
    gap: 0;
    padding: 0;
    width: 100%;
    max-width: 100%;
  }

  .staff-booking-page .phone-frame {
    width: 100%;
    max-width: none;
    border-radius: 0;
    box-shadow: none;
  }

  .staff-booking-page .detail-panel {
    width: 100%;
    max-width: 100%;
    padding: 12px;
  }

  .staff-booking-page .phone-status {
    min-height: 34px;
    padding: 0 10px;
    text-align: center;
  }

  .staff-booking-page .mini-hero {
    min-height: 136px;
    padding: 16px 14px;
  }

  .staff-booking-page .mini-hero strong {
    font-size: 26px;
  }

  .staff-booking-page .date-selector {
    margin: 10px 10px 0;
    padding: 9px 10px;
  }

  .staff-booking-page .meal-tabs {
    gap: 6px;
    padding: 10px;
  }

  .staff-booking-page .meal-tabs button {
    min-width: 0;
    padding: 8px 4px;
    font-size: 14px;
  }

  .staff-booking-page .room-list {
    padding: 0 10px 12px;
  }

  .staff-booking-page .room-card {
    grid-template-columns: 56px minmax(0, 1fr) minmax(44px, auto);
    gap: 8px;
    border-radius: 13px;
    padding: 8px;
  }

  .staff-booking-page .room-card img {
    width: 56px;
    height: 50px;
    border-radius: 9px;
  }

  .staff-booking-page .status-pill {
    justify-self: end;
    padding: 6px 8px;
    font-size: 11px;
  }

  .staff-booking-page .mini-bottom {
    gap: 8px;
    padding: 10px;
  }

  .staff-booking-page .mini-bottom button {
    min-width: 0;
  }

  .staff-booking-page .panel-head h2 {
    font-size: 24px;
    overflow-wrap: anywhere;
  }

  .staff-booking-page .room-feature {
    height: 220px;
    border-radius: 12px;
  }

  .staff-booking-page .feature-tags {
    gap: 6px;
  }

  .staff-booking-page .status-summary {
    align-items: flex-start;
    gap: 8px;
    padding: 12px;
  }

  .staff-booking-page .operation-panel,
  .staff-booking-page .reservation-snapshot {
    width: 100%;
    max-width: 100%;
    border-radius: 14px;
    padding: 14px;
  }

  .staff-booking-page .panel-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .staff-booking-page .panel-actions button,
  .staff-booking-page .send-options button {
    width: 100%;
  }

  .staff-booking-page .send-options article {
    padding: 12px;
  }

  .staff-booking-page .wechat-share-preview {
    grid-template-columns: 84px minmax(0, 1fr);
    padding: 10px;
  }

  .staff-booking-page .wechat-share-preview img {
    width: 84px;
    height: 70px;
  }

  .staff-booking-page .privacy-note {
    padding: 10px;
  }

  .staff-booking-page .access-stage {
    width: 100%;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .admin-row {
    grid-template-columns: 72px 1fr;
  }

  .admin-row .row-actions,
  .record-table .row-actions {
    grid-column: 1 / -1;
  }

  .media-editor,
  .permission-grid,
  .share-preview,
  .result-grid,
  .compact-form,
  .admin-action-bar {
    grid-template-columns: 1fr;
  }

  .settings-hero,
  .settings-panel {
    padding: 14px;
  }

  .staff-create-area {
    padding: 13px;
  }

  .staff-create-head,
  .staff-list-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .material-row.header {
    display: none;
  }

  .admin-row.header {
    display: none;
  }

  .form-grid label.wide {
    grid-column: auto;
  }

  .toast {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
  }

  .staff-booking-page .toast {
    top: 10px;
    bottom: auto;
  }
}

@media (max-width: 340px) {
  .staff-booking-page .mini-hero strong {
    font-size: 24px;
  }

  .staff-booking-page .room-card {
    grid-template-columns: 50px minmax(0, 1fr);
  }

  .staff-booking-page .room-card img {
    width: 50px;
    height: 46px;
  }

  .staff-booking-page .status-pill {
    grid-column: 2;
    justify-self: start;
  }
}

.public-invite-surface {
  background: #07120e;
  color: #f5ead7;
}

.public-invite-page {
  width: min(1080px, calc(100% - 22px));
}

.invitation-stage {
  grid-template-columns: minmax(360px, 430px) minmax(0, 1fr);
  gap: 30px;
  align-items: start;
  border: 1px solid rgba(214, 177, 105, 0.18);
  background:
    linear-gradient(135deg, rgba(14, 34, 27, 0.96), rgba(7, 18, 14, 0.98) 48%, rgba(13, 24, 18, 0.96)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 7px);
  box-shadow: 0 30px 90px rgba(8, 14, 12, 0.34);
}

.customer-invitation-stage {
  width: min(430px, 100%);
  margin: 0 auto;
  grid-template-columns: minmax(0, 430px);
  justify-content: center;
  border: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.customer-invitation-stage,
.customer-invitation-stage * {
  min-width: 0;
}

.invitation-card {
  max-width: 430px;
  border: 1px solid rgba(224, 194, 132, 0.28);
  border-radius: 34px;
  background: linear-gradient(180deg, #0c2119 0%, #071712 54%, #081f18 100%);
  color: #f5ead7;
  box-shadow: 0 28px 80px rgba(2, 6, 5, 0.48);
  position: relative;
  padding-bottom: 76px;
}

.invite-cover {
  min-height: 430px;
  justify-content: space-between;
  padding: 28px 26px 34px;
  background-position: center;
  position: relative;
}

.invite-cover::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(224, 194, 132, 0.22);
  border-radius: 22px;
  pointer-events: none;
}

.invite-cover-top,
.invite-cover-copy {
  position: relative;
  z-index: 1;
}

.invite-cover-top {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 18px;
}

.invite-cover-top img {
  width: 74px;
  height: auto;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.34));
}

.invite-cover-top span,
.invite-kicker {
  border: 1px solid rgba(231, 204, 143, 0.34);
  border-radius: 999px;
  color: #e8c982;
  background: rgba(7, 18, 14, 0.34);
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.invite-cover-copy {
  display: grid;
  gap: 13px;
}

.invite-cover-copy h2,
.invite-locked .invite-cover h2 {
  max-width: 330px;
  color: #fff6df;
  font-size: clamp(32px, 8vw, 45px);
  font-weight: 900;
  letter-spacing: 0;
  text-shadow: 0 12px 28px rgba(0, 0, 0, 0.42);
}

.invite-cover-copy p,
.invite-cover > p {
  max-width: 320px;
  color: rgba(249, 236, 203, 0.86);
  font-size: 15px;
  line-height: 1.75;
}

.invite-section {
  border-top: 1px solid rgba(224, 194, 132, 0.18);
  background: rgba(7, 18, 14, 0.34);
  padding: 24px 22px;
}

.invite-section .eyebrow,
.invitation-stage .eyebrow {
  color: #ddb86b;
}

.invite-section h3 {
  color: #f7e3b3;
  font-size: 23px;
  font-weight: 900;
}

.invite-reserve-card {
  margin: -28px 16px 0;
  border: 1px solid rgba(231, 204, 143, 0.3);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(247, 224, 168, 0.12), rgba(9, 31, 24, 0.94)),
    #0c2119;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.26);
  position: relative;
  z-index: 1;
}

.invite-list div {
  border-top: 1px solid rgba(224, 194, 132, 0.16);
}

.invite-list dt {
  color: rgba(245, 234, 215, 0.58);
}

.invite-list dd {
  color: #fff3d2;
  overflow-wrap: anywhere;
}

.invite-reserve-list {
  margin-bottom: 18px;
}

.invite-primary-button {
  width: 100%;
  min-height: 58px;
  border: 1px solid rgba(255, 244, 216, 0.42);
  border-radius: 16px;
  color: #4b351b;
  background: linear-gradient(180deg, #f4d992, #bf8b40);
  font-size: 20px;
  font-weight: 900;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.48), 0 14px 28px rgba(4, 9, 7, 0.24);
}

.invite-primary-button:active,
.invite-quick-actions button:active,
.invite-bottom-nav button:active {
  transform: translateY(1px);
}

.invite-quick-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.invite-quick-actions button,
.invite-bottom-nav button {
  border: 1px solid rgba(224, 194, 132, 0.22);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(249, 236, 203, 0.88);
  font-weight: 900;
}

.invite-quick-actions button {
  min-height: 52px;
  border-radius: 14px;
  padding: 10px 8px;
}

.invite-quick-actions button.active,
.invite-bottom-nav button.active {
  border-color: rgba(231, 204, 143, 0.58);
  color: #f8d889;
  background: rgba(231, 204, 143, 0.13);
}

.role-strip {
  margin: 18px 16px 0;
  border: 1px solid rgba(224, 194, 132, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
}

.role-strip span {
  color: rgba(245, 234, 215, 0.56);
}

.role-strip strong {
  color: #f6dfad;
}

.invite-highlight-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(132px, 1fr);
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}

.invite-highlight-grid::-webkit-scrollbar {
  display: none;
}

.invite-highlight-grid article {
  min-height: 238px;
  display: grid;
  grid-template-rows: 124px 1fr;
  overflow: hidden;
  border: 1px solid rgba(224, 194, 132, 0.24);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
}

.invite-highlight-grid img {
  width: 100%;
  height: 124px;
  object-fit: cover;
}

.invite-highlight-grid div {
  display: grid;
  gap: 6px;
  padding: 12px;
}

.invite-highlight-grid span {
  color: #d8b66d;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.invite-highlight-grid strong {
  color: #fff2cf;
  font-size: 18px;
}

.invite-highlight-grid small {
  color: rgba(245, 234, 215, 0.66);
  line-height: 1.52;
}

.invite-experience-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 12px;
}

.invite-experience-grid article {
  min-height: 142px;
  display: grid;
  align-content: end;
  gap: 7px;
  border: 1px solid rgba(224, 194, 132, 0.26);
  border-radius: 18px;
  background-position: center;
  background-size: cover;
  padding: 16px;
  color: #fff3d2;
}

.invite-experience-grid strong {
  font-size: 20px;
}

.invite-experience-grid span,
.arrival-copy,
.share-preview span,
.share-preview small,
.map-preview span {
  color: rgba(245, 234, 215, 0.66);
}

.manager-card,
.map-preview,
.share-preview {
  border-color: rgba(224, 194, 132, 0.22);
  background: rgba(255, 255, 255, 0.055);
  color: #f5ead7;
}

.manager-card {
  align-items: center;
  border: 1px solid rgba(224, 194, 132, 0.22);
}

.manager-card span {
  color: #d8b66d;
  font-weight: 900;
}

.invite-tool-card {
  margin: 16px;
  border: 1px solid rgba(224, 194, 132, 0.22);
  border-radius: 18px;
}

.invite-manager-card {
  margin: 16px;
  border: 1px solid rgba(157, 61, 43, 0.38);
  border-radius: 18px;
  background: rgba(157, 61, 43, 0.12);
}

.invite-bottom-nav {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  padding: 10px 14px 14px;
  border-top: 1px solid rgba(224, 194, 132, 0.2);
  background: rgba(7, 22, 17, 0.92);
  backdrop-filter: blur(18px);
}

.invite-bottom-nav button {
  min-height: 48px;
  border-radius: 999px;
}

.invitation-stage .theme-panel {
  border-color: rgba(224, 194, 132, 0.18);
  background: rgba(255, 248, 237, 0.08);
  color: #f5ead7;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.invitation-stage .theme-panel p,
.invitation-stage .privacy-note,
.invitation-stage .role-grid span,
.invitation-stage .theme-grid span {
  color: rgba(245, 234, 215, 0.66);
}

.invitation-stage .privacy-note {
  border-left-color: #d8b66d;
  background: rgba(216, 182, 109, 0.1);
}

.invitation-stage .role-grid button,
.invitation-stage .theme-grid button,
.invitation-stage .theme-panel > button.secondary {
  border-color: rgba(224, 194, 132, 0.2);
  background: rgba(255, 255, 255, 0.055);
  color: #f5ead7;
}

.invitation-stage .role-grid button.active,
.invitation-stage .theme-grid button.active {
  border-color: rgba(224, 194, 132, 0.58);
  background: rgba(216, 182, 109, 0.12);
  box-shadow: inset 0 0 0 1px rgba(224, 194, 132, 0.28);
}

.secure-steps {
  color: rgba(245, 234, 215, 0.7);
}

@media (max-width: 980px) {
  .invitation-stage {
    grid-template-columns: 1fr;
  }

  .customer-invitation-stage {
    width: min(430px, 100%);
  }

  .invitation-stage .theme-panel {
    max-width: 430px;
    width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 620px) {
  .public-invite-page {
    width: 100%;
    padding: 0;
  }

  .public-invite-page .invitation-stage {
    border: 0;
    border-radius: 0;
    padding: 0;
  }

  .public-invite-page .invitation-card {
    width: 100%;
    max-width: none;
    min-height: 100dvh;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
  }

  .invite-cover {
    min-height: 410px;
    padding: 24px 20px 32px;
  }

  .invite-cover-top img {
    width: 66px;
  }

  .invite-cover-copy h2,
  .invite-locked .invite-cover h2 {
    font-size: 35px;
    max-width: 100%;
  }

  .invite-section {
    padding: 22px 18px;
  }

  .invite-list div {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .invite-reserve-card,
  .role-strip,
  .invite-tool-card,
  .invite-manager-card {
    margin-left: 12px;
    margin-right: 12px;
  }

  .invite-quick-actions,
  .invite-experience-grid {
    grid-template-columns: 1fr;
  }

  .invite-highlight-grid {
    grid-auto-flow: row;
    grid-auto-columns: initial;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow-x: visible;
  }
}

@media (max-width: 340px) {
  .invite-cover {
    padding: 22px 16px 28px;
  }

  .invite-cover-copy h2,
  .invite-locked .invite-cover h2 {
    font-size: 32px;
  }

  .invite-section {
    padding: 20px 14px;
  }

  .invite-reserve-card,
  .role-strip,
  .invite-tool-card,
  .invite-manager-card {
    margin-left: 10px;
    margin-right: 10px;
  }

  .invite-highlight-grid {
    grid-template-columns: 1fr;
  }
}

.public-invite-surface {
  background:
    radial-gradient(circle at 18% 8%, rgba(157, 61, 43, 0.2), transparent 30%),
    radial-gradient(circle at 82% 16%, rgba(168, 115, 50, 0.18), transparent 28%),
    #efe2ce;
  color: #2c2017;
}

.public-invite-page {
  width: min(460px, 100%);
  margin: 0 auto;
}

.customer-invitation-stage {
  width: min(460px, 100%);
  padding: 0;
}

.invitation-card.invitation-letter {
  max-width: 460px;
  border: 0;
  border-radius: 0;
  background: #f6ecd9;
  color: #2c2017;
  box-shadow: 0 28px 90px rgba(57, 39, 24, 0.24);
  overflow: hidden;
  padding-bottom: 0;
}

.invitation-letter .invite-hero-scene {
  min-height: 760px;
  display: grid;
  align-content: space-between;
  overflow: hidden;
  border: 0;
  background: #07120e;
  padding: 28px 22px 24px;
}

.invite-hero-video,
.invite-hero-photo,
.invite-hero-shade {
  position: absolute;
  inset: 0;
}

.invite-hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  filter: saturate(1.12) contrast(1.03);
}

.invite-hero-photo {
  z-index: 0;
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.invite-hero-shade {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(3, 9, 7, 0.2), rgba(4, 12, 9, 0.28) 32%, rgba(6, 16, 12, 0.64) 68%, rgba(6, 16, 12, 0.9)),
    linear-gradient(90deg, rgba(3, 9, 7, 0.58), rgba(3, 9, 7, 0.1) 54%, rgba(3, 9, 7, 0.5));
}

.invitation-letter .invite-cover::after {
  inset: 16px;
  z-index: 2;
  border-color: rgba(246, 222, 166, 0.34);
  border-radius: 28px;
}

.invite-motion-ring {
  position: absolute;
  z-index: 2;
  right: -86px;
  top: 120px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(246, 222, 166, 0.28);
  border-radius: 50%;
  box-shadow:
    inset 0 0 42px rgba(246, 222, 166, 0.12),
    0 0 70px rgba(157, 61, 43, 0.2);
  animation: inviteFloat 7s ease-in-out infinite alternate;
}

.invitation-letter .invite-cover-top,
.invite-hero-copy,
.invite-hero-facts {
  position: relative;
  z-index: 3;
}

.invitation-letter .invite-cover-top {
  align-items: flex-start;
}

.invitation-letter .invite-cover-top img {
  width: 82px;
}

.invitation-letter .invite-cover-top span,
.invitation-letter .invite-kicker {
  border-color: rgba(246, 222, 166, 0.44);
  background: rgba(20, 18, 12, 0.24);
  color: #f5d77e;
  backdrop-filter: blur(10px);
}

.invite-hero-copy {
  display: grid;
  gap: 14px;
  margin-top: 180px;
  animation: inviteRise 780ms ease both;
}

.invite-hero-copy h2 {
  max-width: 360px;
  color: #fff4d4;
  font-size: 48px;
  line-height: 1.02;
  font-weight: 900;
  text-shadow: 0 16px 34px rgba(0, 0, 0, 0.42);
}

.invite-hero-copy p {
  max-width: 310px;
  color: rgba(255, 244, 216, 0.88);
  font-size: 16px;
  line-height: 1.75;
}

.invite-hero-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(246, 222, 166, 0.34);
  border-radius: 24px;
  background: rgba(6, 18, 14, 0.48);
  backdrop-filter: blur(18px);
  margin: 30px 0 0;
}

.invite-hero-facts div {
  display: grid;
  gap: 5px;
  min-height: 86px;
  padding: 15px 14px;
  background: rgba(255, 248, 229, 0.055);
}

.invite-hero-facts dt,
.invite-room-showcase span,
.invite-host-card span,
.map-copy small,
.invite-company-section span {
  color: rgba(77, 57, 39, 0.64);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.invite-hero-facts dt {
  color: rgba(246, 222, 166, 0.76);
}

.invite-hero-facts dd {
  margin: 0;
  color: #fff3d2;
  font-size: 18px;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.invitation-letter .invite-section {
  border-top: 0;
  background: transparent;
  padding: 34px 20px;
}

.invitation-letter .invite-section .eyebrow,
.invitation-letter .eyebrow {
  color: #9d3d2b;
  letter-spacing: 0.12em;
}

.invitation-letter .invite-section h3 {
  color: #2c2017;
  font-size: 28px;
  line-height: 1.12;
}

.invite-room-section,
.invite-story-section,
.invite-host-section,
.invite-navigation-section {
  border-bottom: 1px solid rgba(83, 60, 41, 0.13);
}

.invite-room-showcase {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 16px;
  align-items: stretch;
  margin-top: 18px;
}

.invite-room-showcase img {
  width: 100%;
  height: 168px;
  object-fit: cover;
  border-radius: 28px 10px 28px 10px;
  box-shadow: 0 18px 34px rgba(57, 39, 24, 0.18);
}

.invite-room-showcase div {
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(168, 115, 50, 0.2);
  border-radius: 10px 28px 10px 28px;
  background: rgba(255, 250, 240, 0.7);
}

.invite-room-showcase strong {
  color: #2c2017;
  font-size: 28px;
  line-height: 1.05;
}

.invite-room-showcase p {
  color: rgba(44, 32, 23, 0.68);
  line-height: 1.65;
}

.invite-story-section {
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.28), rgba(237, 221, 195, 0.48)),
    #f3e7d4;
}

.invite-story-grid {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.invite-story-grid article {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  min-height: 138px;
  overflow: hidden;
  border: 1px solid rgba(168, 115, 50, 0.18);
  border-radius: 26px;
  background: rgba(255, 250, 240, 0.74);
  box-shadow: 0 14px 34px rgba(57, 39, 24, 0.08);
}

.invite-story-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.invite-story-grid div {
  display: grid;
  align-content: center;
  gap: 7px;
  padding: 16px;
}

.invite-story-grid span {
  color: #9d3d2b;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.invite-story-grid strong {
  color: #2c2017;
  font-size: 22px;
}

.invite-story-grid small {
  color: rgba(44, 32, 23, 0.66);
  line-height: 1.58;
}

.invite-experience-story {
  background: #efe0ca;
}

.invite-experience-story-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 14px;
  margin-top: 20px;
}

.invite-experience-story-grid article {
  min-height: 176px;
  display: grid;
  align-content: end;
  gap: 8px;
  overflow: hidden;
  border: 1px solid rgba(168, 115, 50, 0.24);
  border-radius: 28px;
  background-position: center;
  background-size: cover;
  color: #fff4d4;
  padding: 18px;
  box-shadow: 0 18px 34px rgba(57, 39, 24, 0.16);
}

.invite-experience-story-grid strong {
  font-size: 24px;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.34);
}

.invite-experience-story-grid span {
  color: rgba(255, 244, 216, 0.84);
  line-height: 1.5;
}

.invite-host-card {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(157, 61, 43, 0.18);
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(157, 61, 43, 0.1), transparent 52%),
    rgba(255, 250, 240, 0.76);
}

.host-avatar {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  color: #fff4d4;
  background: linear-gradient(145deg, #9d3d2b, #a87332);
  font-size: 28px;
  font-weight: 900;
  box-shadow: 0 18px 34px rgba(157, 61, 43, 0.24);
}

.invite-host-card div:last-child {
  display: grid;
  gap: 6px;
}

.invite-host-card strong {
  color: #2c2017;
  font-size: 24px;
}

.invite-host-card a,
.invite-company-section a {
  color: #8d2f22;
  font-size: 18px;
  font-weight: 900;
  text-decoration: none;
}

.invite-map-card {
  display: grid;
  gap: 14px;
  margin-top: 18px;
  color: inherit;
  text-decoration: none;
}

.map-art {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  border: 1px solid rgba(47, 102, 91, 0.18);
  border-radius: 24px;
  background:
    radial-gradient(circle at 82% 18%, rgba(246, 222, 166, 0.18), transparent 24%),
    linear-gradient(135deg, rgba(246, 222, 166, 0.1), transparent 38%),
    linear-gradient(145deg, #173c33, #0a1d18 72%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 20px 44px rgba(57, 39, 24, 0.16);
}

.map-art::before {
  content: "PARKING ROUTE";
  position: absolute;
  left: 18px;
  top: 16px;
  z-index: 2;
  color: rgba(255, 232, 167, 0.72);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.map-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(246, 222, 166, 0.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(246, 222, 166, 0.075) 1px, transparent 1px),
    linear-gradient(135deg, transparent 0 47%, rgba(246, 222, 166, 0.06) 47% 53%, transparent 53% 100%);
  background-size: 34px 34px, 34px 34px, 76px 76px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.98), rgba(0, 0, 0, 0.42));
}

.map-route {
  position: absolute;
  left: 60px;
  top: 76px;
  width: 230px;
  height: 112px;
  border: 5px solid #f7ce6a;
  border-left: 0;
  border-bottom: 0;
  border-radius: 0 82px 0 0;
  transform: rotate(-6deg);
  filter: drop-shadow(0 10px 16px rgba(0, 0, 0, 0.28));
}

.map-route::after {
  content: "";
  position: absolute;
  right: -16px;
  top: 93px;
  width: 78px;
  height: 5px;
  border-radius: 999px;
  background: #f7ce6a;
  transform: rotate(40deg);
  transform-origin: left center;
}

.map-node {
  position: absolute;
  display: inline-grid;
  place-items: center;
  gap: 4px;
  min-width: 86px;
  min-height: 44px;
  border: 1px solid rgba(246, 222, 166, 0.34);
  border-radius: 12px;
  color: #ffe8a7;
  background: rgba(8, 25, 20, 0.8);
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.2);
  font-size: 12px;
  font-weight: 900;
}

.map-node::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 6px rgba(246, 222, 166, 0.08);
}

.map-node-start {
  left: 26px;
  top: 72px;
}

.map-node-parking {
  right: 28px;
  top: 92px;
}

.map-node-store {
  right: 126px;
  bottom: 28px;
  min-width: 106px;
  color: #3a2715;
  background: linear-gradient(180deg, #ffe39a, #c89443);
  animation: mapPulse 1.9s ease-in-out infinite;
}

.map-copy {
  display: grid;
  gap: 8px;
  padding: 15px 16px;
  border: 1px solid rgba(83, 60, 41, 0.12);
  border-radius: 18px;
  background: rgba(255, 250, 240, 0.74);
}

.map-copy strong {
  color: #2c2017;
  font-size: 24px;
}

.map-copy::after {
  content: "打开地图导航";
  display: inline-grid;
  place-items: center;
  justify-self: start;
  min-height: 36px;
  margin-top: 3px;
  padding: 0 14px;
  border-radius: 999px;
  color: #fff4d4;
  background: #2f665b;
  font-size: 13px;
  font-weight: 900;
}

.map-copy span,
.invite-route-steps,
.invite-company-section p {
  color: rgba(44, 32, 23, 0.7);
  line-height: 1.7;
}

.invite-route-steps {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.invite-route-steps li {
  position: relative;
  padding-left: 32px;
}

.invite-route-steps li::before {
  content: counter(route-step);
  counter-increment: route-step;
  position: absolute;
  left: 0;
  top: 1px;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  color: #fff4d4;
  background: #2f665b;
  font-size: 12px;
  font-weight: 900;
}

.invite-route-steps {
  counter-reset: route-step;
}

.brand-invitation-stage {
  width: min(430px, 100%);
  margin: 0 auto;
  grid-template-columns: 1fr;
  border: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.brand-invite-phone {
  position: relative;
  overflow: hidden;
  width: min(430px, 100%);
  min-height: 100dvh;
  padding-bottom: 92px;
  background:
    radial-gradient(circle at 20% 0%, rgba(246, 222, 166, 0.12), transparent 28%),
    linear-gradient(180deg, #07120e 0%, #07120e 50%, #10271f 100%);
  color: #f8edda;
  box-shadow: 0 28px 90px rgba(4, 9, 7, 0.36);
}

.brand-hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-content: end;
  gap: 18px;
  overflow: hidden;
  padding: 24px 20px 30px;
  background-position: center;
  background-size: cover;
}

.brand-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, #07120e 88%);
  pointer-events: none;
}

.brand-hero-top,
.brand-hero-copy,
.brand-primary-cta,
.brand-quick-actions {
  position: relative;
  z-index: 2;
}

.brand-hero-top {
  position: absolute;
  top: 22px;
  left: 20px;
  right: 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.brand-hero-top img {
  width: 74px;
  filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.42));
}

.brand-hero-top span {
  display: inline-grid;
  place-items: center;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid rgba(246, 222, 166, 0.34);
  border-radius: 999px;
  color: #f5d77e;
  background: rgba(7, 18, 14, 0.46);
  font-size: 12px;
  font-weight: 900;
  backdrop-filter: blur(12px);
}

.brand-hero-copy {
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
}

.brand-hero-copy img {
  width: 48px;
}

.brand-hero-copy h2 {
  color: #fff4d4;
  font-size: 29px;
  line-height: 1.08;
  text-shadow: 0 14px 28px rgba(0, 0, 0, 0.46);
}

.brand-hero-copy p,
.brand-hero-copy span {
  color: rgba(255, 244, 216, 0.78);
  line-height: 1.75;
}

.brand-hero-copy i {
  width: 148px;
  height: 1px;
  margin: 3px 0;
  background: linear-gradient(90deg, transparent, rgba(246, 222, 166, 0.78), transparent);
}

.brand-hero-copy strong {
  color: #f5d77e;
  font-size: 18px;
  letter-spacing: 0;
}

.brand-primary-cta {
  display: grid;
  place-items: center;
  min-height: 66px;
  border: 1px solid rgba(255, 235, 176, 0.66);
  border-radius: 16px;
  color: #fff7dd;
  background:
    linear-gradient(180deg, rgba(255, 231, 166, 0.94), rgba(170, 111, 41, 0.92)),
    #c99546;
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.36);
  font-size: 22px;
  font-weight: 900;
  text-decoration: none;
}

.brand-quick-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.brand-quick-actions a {
  display: grid;
  place-items: center;
  min-height: 58px;
  border: 1px solid rgba(246, 222, 166, 0.2);
  border-radius: 14px;
  color: #f8edda;
  background: rgba(11, 34, 28, 0.74);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  backdrop-filter: blur(14px);
}

.brand-section {
  padding: 34px 18px;
  border-top: 1px solid rgba(246, 222, 166, 0.12);
}

.brand-section-title {
  display: grid;
  justify-items: center;
  gap: 8px;
  margin-bottom: 18px;
  text-align: center;
}

.brand-section-kicker {
  color: #f5d77e;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.brand-section h3,
.brand-section-title h3 {
  color: #fff4d4;
  font-size: 28px;
  line-height: 1.15;
}

.brand-reservation-card {
  display: grid;
  gap: 16px;
  background:
    linear-gradient(180deg, rgba(11, 34, 28, 0.86), rgba(7, 18, 14, 0.94)),
    #07120e;
}

.brand-reservation-card dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(246, 222, 166, 0.14);
  border-radius: 18px;
  background: rgba(246, 222, 166, 0.12);
}

.brand-reservation-card dl div {
  display: grid;
  gap: 6px;
  min-height: 72px;
  padding: 13px;
  background: rgba(5, 17, 13, 0.76);
}

.brand-reservation-card dt {
  color: rgba(248, 237, 218, 0.56);
  font-size: 12px;
  font-weight: 900;
}

.brand-reservation-card dd {
  margin: 0;
  color: #fff4d4;
  font-size: 17px;
  font-weight: 900;
}

.brand-reservation-card figure {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 12px;
  margin: 0;
  padding: 12px;
  border: 1px solid rgba(246, 222, 166, 0.16);
  border-radius: 18px;
  background: rgba(255, 244, 216, 0.06);
}

.brand-reservation-card figure img {
  width: 100%;
  height: 118px;
  object-fit: cover;
  border-radius: 13px;
}

.brand-reservation-card figcaption {
  display: grid;
  align-content: center;
  gap: 8px;
}

.brand-reservation-card figcaption strong {
  color: #f5d77e;
  font-size: 22px;
}

.brand-reservation-card figcaption span {
  color: rgba(248, 237, 218, 0.66);
  line-height: 1.55;
}

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

.brand-highlight-grid article {
  overflow: hidden;
  border: 1px solid rgba(246, 222, 166, 0.2);
  border-radius: 16px;
  background: rgba(255, 244, 216, 0.06);
}

.brand-highlight-grid img {
  width: 100%;
  height: 126px;
  object-fit: cover;
}

.brand-highlight-grid div {
  display: grid;
  gap: 6px;
  padding: 11px;
}

.brand-highlight-grid span {
  color: #f5d77e;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.brand-highlight-grid strong {
  color: #fff4d4;
  font-size: 18px;
  line-height: 1.2;
}

.brand-highlight-grid small {
  color: rgba(248, 237, 218, 0.58);
  line-height: 1.5;
}

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

.brand-experience-grid article {
  min-height: 170px;
  display: grid;
  align-content: end;
  gap: 8px;
  border: 1px solid rgba(246, 222, 166, 0.24);
  border-radius: 18px;
  background-position: center;
  background-size: cover;
  padding: 16px;
}

.brand-experience-grid strong {
  color: #fff4d4;
  font-size: 23px;
}

.brand-experience-grid span {
  color: rgba(248, 237, 218, 0.72);
  line-height: 1.5;
}

.brand-host-card {
  background: #f6ead6;
}

.brand-host-card .brand-section-kicker,
.brand-host-card h3 {
  color: #8d2f22;
}

.brand-host-card > div {
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  margin-top: 16px;
  padding: 16px;
  border: 1px solid rgba(141, 47, 34, 0.16);
  border-radius: 18px;
  background: rgba(255, 250, 240, 0.76);
}

.brand-host-card b {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  border-radius: 16px;
  color: #fff4d4;
  background: linear-gradient(145deg, #8d2f22, #2f665b);
  font-size: 30px;
}

.brand-host-card p {
  display: grid;
  gap: 5px;
  margin: 0;
}

.brand-host-card p span {
  color: rgba(44, 32, 23, 0.58);
}

.brand-host-card p strong {
  color: #2c2017;
  font-size: 22px;
}

.brand-host-card p a {
  color: #8d2f22;
  font-size: 18px;
  font-weight: 900;
  text-decoration: none;
}

.brand-map-section {
  background: #efe1c7;
}

.brand-map-section .brand-section-kicker,
.brand-map-section h3 {
  color: #8d2f22;
}

.brand-bottom-nav {
  position: fixed;
  z-index: 40;
  left: 50%;
  bottom: 10px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  width: min(410px, calc(100% - 20px));
  padding: 8px;
  border: 1px solid rgba(246, 222, 166, 0.2);
  border-radius: 24px;
  background: rgba(7, 31, 25, 0.9);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.34);
  transform: translateX(-50%);
  backdrop-filter: blur(18px);
}

.brand-bottom-nav a {
  display: grid;
  place-items: center;
  min-height: 46px;
  border-radius: 16px;
  color: rgba(248, 237, 218, 0.72);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.brand-bottom-nav a.active {
  color: #fff4d4;
  background:
    radial-gradient(circle at 50% 0%, rgba(246, 222, 166, 0.3), transparent 60%),
    rgba(246, 222, 166, 0.12);
  box-shadow: inset 0 0 0 1px rgba(246, 222, 166, 0.18);
}

.invite-company-section {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  color: #f8eedb;
  background:
    linear-gradient(145deg, rgba(6, 18, 14, 0.96), rgba(35, 28, 20, 0.96)),
    #07120e;
}

.invitation-letter .invite-company-section {
  padding-top: 30px;
  padding-bottom: 34px;
  background:
    linear-gradient(145deg, rgba(6, 18, 14, 0.97), rgba(35, 28, 20, 0.97)),
    #07120e;
}

.invite-company-section img {
  width: 82px;
  height: auto;
}

.invite-company-section div {
  display: grid;
  gap: 6px;
}

.invite-company-section strong {
  color: #fff4d4;
  font-size: 20px;
}

.invite-company-section span,
.invite-company-section p {
  color: rgba(248, 238, 219, 0.68);
}

.invite-company-section a {
  color: #f5d77e;
  font-size: 16px;
}

.invite-style-book {
  background:
    linear-gradient(90deg, rgba(95, 65, 31, 0.08) 0 1px, transparent 1px 50%),
    linear-gradient(180deg, #fbf2df, #efe0c6);
  color: #312016;
}

.invite-style-book .invite-hero-scene {
  min-height: 690px;
  background: #ead9bd;
  padding: 30px 24px 26px;
}

.invite-style-book .invite-hero-photo {
  inset: 24px 18px auto;
  height: 380px;
  border-radius: 10px 10px 140px 10px;
  background-position: center;
  box-shadow: 0 22px 52px rgba(74, 48, 25, 0.22);
  transform: none;
}

.invite-style-book .invite-hero-video {
  display: none;
}

.invite-style-book .invite-hero-shade {
  background:
    linear-gradient(180deg, rgba(55, 34, 19, 0.08), rgba(55, 34, 19, 0.18) 44%, rgba(251, 242, 223, 0.96) 66%, #fbf2df),
    linear-gradient(90deg, rgba(55, 34, 19, 0.32), transparent 55%);
}

.invite-style-book .invite-cover::after {
  inset: 18px;
  border-color: rgba(95, 65, 31, 0.22);
  border-radius: 0;
}

.invite-style-book .invite-motion-ring {
  display: none;
}

.invite-style-book .invite-cover-top img {
  width: 88px;
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.34));
}

.invite-style-book .invite-cover-top span,
.invite-style-book .invite-kicker {
  border-color: rgba(95, 65, 31, 0.28);
  background: rgba(251, 242, 223, 0.72);
  color: #8f3828;
}

.invite-style-book .invite-hero-copy {
  align-self: end;
  margin-top: 400px;
  gap: 12px;
}

.invite-style-book .invite-hero-copy h2 {
  color: #2f1d13;
  font-size: 50px;
  text-shadow: none;
}

.invite-style-book .invite-hero-copy p {
  color: rgba(49, 32, 22, 0.72);
}

.invite-style-book .invite-hero-facts {
  border-color: rgba(95, 65, 31, 0.18);
  border-radius: 0;
  background: rgba(255, 252, 245, 0.86);
  backdrop-filter: none;
  box-shadow: 0 16px 40px rgba(74, 48, 25, 0.12);
}

.invite-style-book .invite-hero-facts div {
  background: transparent;
}

.invite-style-book .invite-hero-facts dt,
.invite-style-book .invite-hero-facts dd {
  color: #3b281a;
}

.invite-style-book .invite-section {
  background: rgba(251, 242, 223, 0.72);
}

.invite-style-book .invite-room-showcase div,
.invite-style-book .invite-host-card,
.invite-style-book .content-module-card {
  border-radius: 0;
}

.invite-style-book .invite-story-grid article {
  border-radius: 0 42px 0 42px;
}

.invite-style-book .invite-experience-story-grid article,
.invite-style-book .map-art {
  border-radius: 8px;
}

.invite-style-book .invite-company-section {
  background:
    linear-gradient(145deg, rgba(49, 32, 22, 0.98), rgba(18, 13, 9, 0.98)),
    #1f150f;
}

.invite-style-book .invite-company-section strong {
  color: #fff4d4;
}

.invite-style-book .invite-company-section span,
.invite-style-book .invite-company-section p {
  color: rgba(248, 238, 219, 0.72);
}

.invite-style-map {
  background:
    linear-gradient(180deg, #f8fbf4 0%, #e6efe6 54%, #102b24 54%, #102b24 100%);
  color: #10221d;
}

.invite-style-map .invite-hero-scene {
  min-height: 640px;
  background: #f8fbf4;
  padding: 24px 20px 22px;
}

.invite-style-map .invite-hero-photo {
  inset: 148px 20px auto;
  height: 210px;
  border-radius: 28px;
  background-position: center;
  box-shadow: 0 18px 42px rgba(16, 34, 29, 0.18);
  transform: none;
}

.invite-style-map .invite-hero-video {
  display: none;
}

.invite-style-map .invite-hero-shade {
  background:
    linear-gradient(180deg, rgba(248, 251, 244, 0.95), rgba(248, 251, 244, 0.8) 32%, rgba(248, 251, 244, 0.96) 74%, #f8fbf4);
}

.invite-style-map .invite-motion-ring {
  right: -24px;
  top: 34px;
  width: 188px;
  height: 188px;
  border-color: rgba(47, 102, 91, 0.2);
  box-shadow: inset 0 0 34px rgba(47, 102, 91, 0.1);
}

.invite-style-map .invite-cover::after {
  border-color: rgba(47, 102, 91, 0.22);
  border-radius: 30px;
}

.invite-style-map .invite-cover-top img {
  width: 86px;
  filter: invert(1) brightness(0.42) sepia(0.2) saturate(1.2);
}

.invite-style-map .invite-cover-top span,
.invite-style-map .invite-kicker {
  border-color: rgba(47, 102, 91, 0.28);
  background: #e8f0e6;
  color: #24584e;
}

.invite-style-map .invite-hero-copy {
  margin-top: 286px;
  gap: 12px;
}

.invite-style-map .invite-hero-copy h2 {
  color: #10221d;
  font-size: 42px;
  text-shadow: none;
}

.invite-style-map .invite-hero-copy p {
  color: rgba(16, 34, 29, 0.66);
}

.invite-style-map .invite-hero-facts {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-color: rgba(47, 102, 91, 0.18);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 18px 36px rgba(16, 34, 29, 0.13);
  backdrop-filter: none;
}

.invite-style-map .invite-hero-facts div {
  min-height: 78px;
  background: transparent;
}

.invite-style-map .invite-hero-facts dt {
  color: rgba(16, 34, 29, 0.54);
}

.invite-style-map .invite-hero-facts dd {
  color: #10221d;
  font-size: 15px;
}

.invite-style-map .invite-room-section,
.invite-style-map .invite-highlight-story,
.invite-style-map .invite-experience-story,
.invite-style-map .invite-host-section {
  background: #f8fbf4;
}

.invite-style-map .invite-navigation-section {
  color: #f7f4e8;
  background: #102b24;
}

.invite-style-map .invite-navigation-section .eyebrow,
.invite-style-map .invite-navigation-section h3,
.invite-style-map .map-copy strong,
.invite-style-map .map-copy span,
.invite-style-map .map-copy small,
.invite-style-map .invite-route-steps {
  color: #f7f4e8;
}

.invite-style-map .map-art {
  border-color: rgba(244, 217, 146, 0.28);
  background:
    linear-gradient(135deg, rgba(244, 217, 146, 0.12), transparent 42%),
    #173a32;
}

.invite-style-map .invite-company-section {
  background: #07120e;
}

@keyframes inviteFloat {
  from {
    transform: translate3d(0, -8px, 0) scale(0.98);
  }

  to {
    transform: translate3d(-18px, 18px, 0) scale(1.04);
  }
}

@keyframes inviteRise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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

@keyframes mapPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(246, 222, 166, 0.3);
  }

  50% {
    box-shadow: 0 0 0 12px rgba(246, 222, 166, 0);
  }
}

@media (max-width: 620px) {
  .public-invite-page,
  .customer-invitation-stage,
  .invitation-card.invitation-letter {
    width: 100%;
    max-width: none;
  }

  .invitation-card.invitation-letter {
    min-height: 100dvh;
  }

  .invitation-letter .invite-hero-scene {
    min-height: 100svh;
    padding: 24px 18px 22px;
  }

  .invite-hero-copy {
    margin-top: 164px;
  }

  .invite-hero-copy h2 {
    font-size: 44px;
  }

  .invite-room-showcase {
    grid-template-columns: 1fr;
  }

  .invite-room-showcase img {
    height: 220px;
  }

  .invite-story-grid article,
  .invite-experience-story-grid {
    grid-template-columns: 1fr;
  }

  .invite-story-grid article {
    grid-template-rows: 172px auto;
  }
}

@media (max-width: 360px) {
  .invite-hero-copy h2 {
    font-size: 38px;
  }

  .invite-hero-facts {
    grid-template-columns: 1fr;
  }

  .invite-host-card,
  .invite-company-section {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .invite-motion-ring,
  .map-node-store,
  .invite-hero-copy {
    animation: none;
  }
}
