:root {
  color-scheme: light;
  --bg: #f7f7f6;
  --panel: #ffffff;
  --line: #dedede;
  --text: #202020;
  --muted: #6e7174;
  --soft: #f0f1f1;
  --accent: #5b6769;
  --accent-dark: #444d4f;
  --danger: #9d4d4d;
  --ok: #3f725e;
  font-family: "Hiragino Sans", "Yu Gothic", "Meiryo", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-weight: 400;
}

body[data-screen="age"] {
  background: #fff;
}

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

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

h1 {
  color: #fff;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(24px, 6vw, 34px);
  font-weight: 600;
  line-height: 1.35;
}

.app-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  background: rgba(78, 78, 78, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

body[data-screen="age"] .app-header {
  position: relative;
  min-height: 70px;
  padding: 0 26px;
  background: #505050;
}

.header-location {
  flex: 1;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}

.menu-toggle {
  display: grid;
  gap: 5px;
  width: 44px;
  height: 44px;
  place-content: center;
  border: 0;
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: #fff;
}

body[data-screen="age"] .menu-toggle {
  display: none;
}

body[data-screen="age"] .header-location {
  display: none;
}

nav {
  display: none;
}

.nav-button,
.secondary-action,
.primary-action {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 16px;
  cursor: pointer;
}

.nav-button {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.secondary-action {
  background: #fff;
  color: var(--text);
}

.nav-button.active {
  border-color: rgba(255, 255, 255, 0.72);
}

.primary-action {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
  font-weight: 500;
}

.primary-action:hover {
  background: var(--accent-dark);
}

.menu-panel {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: min(320px, 86vw);
  height: 100vh;
  padding: 18px;
  background: #fff;
  border-right: 1px solid var(--line);
  box-shadow: 18px 0 42px rgba(0, 0, 0, 0.14);
  transform: translateX(-105%);
  transition: transform 180ms ease;
}

.menu-panel.open {
  transform: translateX(0);
}

.menu-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.menu-panel button:not(.mini-action) {
  display: block;
  width: 100%;
  min-height: 48px;
  border: 0;
  border-bottom: 1px solid var(--soft);
  padding: 0;
  background: transparent;
  color: var(--text);
  text-align: left;
  cursor: pointer;
}

.mini-action {
  min-height: 34px;
  padding: 0 10px;
  font-size: 12px;
}

.menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: none;
  background: rgba(0, 0, 0, 0.28);
}

.menu-backdrop.open {
  display: block;
}

.danger {
  color: var(--danger);
}

main {
  width: min(980px, 100%);
  margin: 0 auto 64px;
}

.screen {
  display: none;
}

.screen.active {
  display: block;
}

.age-hero {
  min-height: 440px;
  display: grid;
  align-items: center;
  padding: 28px 18px;
  background:
    linear-gradient(90deg, rgba(31, 31, 28, 0.82) 0%, rgba(31, 31, 28, 0.62) 44%, rgba(31, 31, 28, 0.2) 76%, rgba(31, 31, 28, 0.08) 100%),
    url("./assets/age-background.png") 62% 42% / cover no-repeat;
  color: #fff;
}

.age-hero > div {
  width: min(430px, 100%);
  padding-top: 36px;
}

.age-hero h2 {
  margin-bottom: 10px;
  font-size: clamp(20px, 4.6vw, 28px);
  font-weight: 400;
  letter-spacing: 0;
}

.age-hero p {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  line-height: 1.8;
}

.age-note {
  margin-top: 12px;
}

.age-enter {
  min-width: 62px;
  min-height: 32px;
  margin-top: 18px;
  border: 0;
  border-radius: 3px;
  background: #222;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  z-index: 2;
}

.simple-page {
  min-height: calc(100vh - 70px);
  padding: 34px 40px 92px;
  background: #fff;
  color: #050505;
}

.simple-page > h2,
.simple-page > .section-lead,
.simple-page > .text-columns,
.simple-page > .text-page-body,
.simple-page > .faq-list,
.simple-page > .price-grid,
.simple-page > .cast-panel {
  margin-top: 18px;
}

.simple-page h2 {
  font-size: clamp(28px, 8vw, 42px);
  font-weight: 700;
  line-height: 1.2;
}

.text-page-body {
  display: grid;
  gap: 22px;
  max-width: 760px;
  font-size: clamp(16px, 4.7vw, 22px);
  font-weight: 700;
  line-height: 1.45;
}

.text-page-body h3 {
  margin: 14px 0 -10px;
  font-size: 1em;
  font-weight: 700;
}

.text-page-body p {
  margin: 0;
}

.compact-text {
  font-size: clamp(13px, 3.5vw, 18px);
  line-height: 1.35;
}

.price-detail-table {
  display: grid;
  border: 1px solid #cfcfcf;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.price-detail-row {
  display: grid;
  grid-template-columns: 0.8fr 1fr 1.4fr;
  gap: 10px;
  align-items: center;
  padding: 14px 12px;
  border-top: 1px solid #e1e1e1;
  font-size: clamp(14px, 3.6vw, 18px);
}

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

.price-detail-head {
  background: #555;
  color: #fff;
}

.price-detail-row.recommended {
  background: #f1f4f4;
}

.page-reserve-link {
  display: block;
  width: min(220px, 58vw);
  min-height: 58px;
  margin: 44px auto 0;
  border: 0;
  border-radius: 6px;
  background: #050505;
  color: #fff;
  font-weight: 500;
  cursor: pointer;
}

.cast-profile {
  min-height: calc(100vh - 70px);
  padding: 64px 24px 420px;
  background: #000;
  color: #fff;
}

.cast-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 66px;
  gap: 28px;
  align-items: start;
}

.cast-main-photo,
.cast-thumbs button {
  background-image: url("./assets/hero-source.png");
  background-size: cover;
  background-repeat: no-repeat;
}

.cast-main-photo {
  min-height: 560px;
  border-radius: 4px;
  background-position: 64% center;
}

.cast-main-photo.photo-1 {
  background-position: 58% center;
}

.cast-main-photo.photo-2 {
  background-position: 72% center;
}

.cast-thumbs {
  display: grid;
  gap: 16px;
}

.cast-thumbs button {
  width: 66px;
  aspect-ratio: 1 / 1.38;
  border: 2px solid transparent;
  border-radius: 6px;
  background-position: 64% center;
  cursor: pointer;
}

.cast-thumbs button:nth-child(2) {
  background-position: 58% center;
}

.cast-thumbs button:nth-child(3) {
  background-position: 72% center;
}

.cast-thumbs button.active {
  border-color: #fff;
}

.cast-profile-body {
  display: grid;
  gap: 26px;
  padding-top: 38px;
  max-width: 720px;
  font-weight: 700;
}

.cast-profile-body h2 {
  font-size: 32px;
}

.cast-spec {
  letter-spacing: 0.36em;
}

.cast-shift-box {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  min-height: 112px;
  border-radius: 4px;
  background: #fff;
  color: #111;
  padding: 22px;
  overflow: auto;
}

.cast-shift-box .available-day {
  display: grid;
  gap: 4px;
  border: 1px solid #e1e1e1;
  border-radius: 6px;
  background: #fff;
  padding: 8px 6px;
  font-size: 11px;
  text-align: center;
}

.cast-shift-box .available-day small {
  border-radius: 999px;
  padding: 2px 6px;
  font-size: 10px;
}

.cast-course-text,
.cast-caution-text {
  margin-top: 28px;
}

.cast-reserve-button {
  justify-self: center;
  min-width: 154px;
  min-height: 72px;
  border: 0;
  border-radius: 4px;
  background: #fff;
  color: #000;
  font-weight: 700;
  cursor: pointer;
}

.lp-cast {
  padding: 16px 18px 26px;
  background: #030303;
  color: #fff;
}

.lp-cast h2,
.lp-card h2 {
  font-size: 22px;
}

.lp-cast-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  align-items: start;
}

.lp-cast .cast-image {
  min-height: 240px;
  border-radius: 2px;
  background-image: url("./assets/hero-source.png");
  background-position: 64% center;
  background-size: cover;
}

.lp-cast-side {
  display: grid;
  gap: 18px;
  padding-top: 18px;
}

.lp-cast-side h3 {
  color: #fff;
  font-size: 20px;
  font-style: italic;
}

.lp-schedule {
  min-height: 100px;
  max-height: 148px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
  overflow: auto;
  border-radius: 4px;
  background: #fff;
  color: #111;
  padding: 12px;
  font-size: 10px;
}

.lp-schedule .available-day {
  display: grid;
  gap: 4px;
  border: 1px solid #e1e1e1;
  border-radius: 6px;
  background: #fff;
  padding: 7px 4px;
  font-size: 10px;
  font-weight: 600;
  text-align: center;
}

.lp-schedule .available-day small {
  border-radius: 999px;
  padding: 2px 5px;
  font-size: 9px;
}

.lp-cast-side button {
  width: 92px;
  min-height: 40px;
  border: 0;
  border-radius: 4px;
  background: #5d5d5d;
  color: #fff;
  cursor: pointer;
  justify-self: center;
}

.lp-card {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 28px 18px;
  line-height: 1.75;
}

.lp-first-card {
  background: #fff;
  color: #161616;
}

.lp-card h3 {
  margin-top: 12px;
  font-size: 17px;
}

.lp-price-card {
  min-height: 360px;
  background: #555;
  color: #fff;
}

.lp-price-card p,
.lp-faq-card p {
  color: #fff;
}

.lp-note {
  margin-top: 6px;
}

.lp-flow-card {
  background: #f0f1ef;
  color: #161616;
}

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

.lp-flow-list article {
  border-left: 3px solid #6d7778;
  padding-left: 12px;
}

.lp-flow-list h3 {
  margin-top: 0;
}

.lp-flow-list p {
  margin-top: 4px;
}

.lp-faq-card {
  min-height: 520px;
  background: #555;
  color: #fff;
}

.lp-reserve-preview {
  min-height: 260px;
  background: #fff;
  color: #161616;
}

.eyebrow {
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 500;
}

.site-hero {
  display: grid;
  gap: 22px;
  padding: 34px 18px 28px;
  background: #eceeee;
}

.site-hero-copy {
  display: grid;
  align-content: center;
  gap: 14px;
}

.site-hero-copy p:not(.eyebrow),
.cast-copy p,
.section-lead,
.reserve-cta p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
}

.site-hero-copy .primary-action,
.reserve-cta .primary-action {
  width: fit-content;
  min-width: 156px;
}

.site-hero-media,
.cast-image {
  min-height: 320px;
  border-radius: 8px;
  background: #d8dcdf url("./assets/hero-source.png") 64% center / cover no-repeat;
}

.content-band,
.available-days {
  display: grid;
  gap: 18px;
  padding: 34px 18px;
  border-top: 1px solid var(--line);
  background: var(--panel);
}

.content-band:nth-of-type(even) {
  background: #f2f3f3;
}

.cast-panel,
.text-columns,
.price-grid,
.faq-list {
  display: grid;
  gap: 14px;
}

.cast-copy {
  display: grid;
  gap: 14px;
}

.text-columns {
  color: var(--text);
  line-height: 1.9;
}

.available-day-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.available-day {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 10px 14px;
  font-weight: 600;
}

.available-day small {
  border-radius: 999px;
  background: #eef4f3;
  color: var(--accent);
  padding: 3px 8px;
  font-size: 12px;
}

.available-day.closed {
  background: var(--soft);
  color: var(--muted);
}

.available-day.closed small {
  background: #f2e8e8;
  color: var(--danger);
}

.available-day.open small {
  background: #e8f4ee;
  color: var(--ok);
}

.available-day.off {
  background: #f4f4f4;
  color: #8a8a8a;
}

.available-day.off small {
  background: #ededed;
  color: #666;
}

.price-grid article {
  display: grid;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 18px;
}

.price-grid article.recommended {
  border-color: var(--accent);
  background: #f7faf9;
}

.price-grid span,
.price-grid small,
.summary-grid span,
.time-panel-head small {
  color: var(--muted);
}

.price-grid strong,
.summary-grid strong {
  display: block;
  font-size: 28px;
  font-weight: 600;
}

.faq-list article {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.faq-list h3 {
  margin-bottom: 6px;
  font-size: 16px;
  font-weight: 600;
}

.faq-list p {
  color: var(--muted);
  line-height: 1.7;
}

.form-layout {
  display: grid;
  gap: 16px;
  padding: 24px 16px 120px;
}

.form-head,
.admin-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 8px;
}

fieldset {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 20px 16px;
}

legend {
  padding: 0 8px;
  font-weight: 600;
}

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

.summary-grid article,
.option-card {
  min-height: 58px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 16px;
}

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

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

.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.option-stack {
  display: grid;
  gap: 10px;
}

.option-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-weight: 400;
}

.option-card input {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  margin: 0;
  accent-color: var(--accent);
}

.option-card:has(input:checked),
.option-card.is-selected {
  border-color: var(--accent);
  background: #f3f7f6;
}

.course-card strong {
  margin-left: auto;
  font-size: 20px;
  font-weight: 600;
}

.note {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

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

.field {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 500;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--text);
  padding: 12px;
}

textarea {
  resize: vertical;
}

.time-panel {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.time-panel-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

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

.time-button {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  cursor: pointer;
}

.time-button.active {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
  font-weight: 500;
}

.time-note {
  grid-column: 1 / -1;
}

.checks,
.agreement-items {
  display: grid;
  gap: 10px;
}

.checks label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.6;
}

.checks .agreement-confirm {
  display: grid;
  gap: 8px;
  justify-items: start;
  margin-top: 12px;
}

.checks input {
  width: auto;
  margin-top: 4px;
  accent-color: var(--accent);
}

.checks .agreement-confirm input {
  width: 20px;
  height: 20px;
  margin-top: 0;
}

.agreement-items {
  margin: 0;
  padding-left: 22px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.submit-bar {
  position: sticky;
  bottom: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px 12px 0 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
}

.reservation-summary {
  min-width: 230px;
  color: var(--muted);
  line-height: 1.45;
}

.reservation-summary strong {
  display: block;
  color: var(--text);
  font-size: 18px;
  font-weight: 600;
}

.reservation-summary-details {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
  margin-top: 4px;
  color: var(--text);
  font-weight: 500;
}

.error {
  color: var(--danger);
  font-weight: 600;
}

.result-card {
  max-width: 720px;
  margin: 56px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: clamp(22px, 5vw, 42px);
}

.confirmed {
  border-top: 5px solid var(--ok);
}

.pending {
  border-top: 5px solid #9a7b3c;
}

.result-details {
  display: grid;
  gap: 8px;
  margin: 20px 0;
  padding: 16px;
  border-radius: 8px;
  background: var(--soft);
}

.result-details div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.email-recovery-panel {
  display: grid;
  gap: 10px;
  margin: 18px 0;
  padding: 16px;
  border: 1px solid rgba(178, 161, 125, 0.35);
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.72);
}

.email-recovery-panel h3 {
  margin: 0;
  color: var(--text);
  font-size: 17px;
  font-weight: 500;
}

.email-recovery-panel p {
  margin: 0;
}

.email-recovery-target,
.email-recovery-status {
  color: var(--muted);
  font-size: 13px;
}

.email-recovery-status.is-error {
  color: var(--danger);
}

.email-recovery-actions,
.email-recovery-form {
  display: grid;
  gap: 10px;
}

.email-recovery-form[hidden] {
  display: none;
}

.admin-table-wrap {
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.admin-shift {
  display: grid;
  gap: 16px;
  margin-bottom: 28px;
}

.shift-form,
.daily-limit-form {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr)) minmax(180px, 1.4fr) auto;
  align-items: end;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 16px;
}

.daily-limit-form {
  grid-template-columns: minmax(160px, 1fr) minmax(120px, 1fr) auto;
}

.shift-memo-field {
  min-width: 0;
}

.shift-area-field {
  grid-column: span 2;
}

.shift-area-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mini-action {
  min-height: 34px;
  padding: 0 12px;
}

.shift-area-checks {
  display: grid;
  gap: 8px;
  max-height: 150px;
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 10px;
}

.shift-area-checks label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-weight: 400;
}

.shift-area-checks input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--accent);
}

.shift-table,
.daily-limit-table {
  min-width: 900px;
}

.shift-table-wrap,
.daily-limit-table-wrap {
  max-height: 320px;
}

.table-action {
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--danger);
  cursor: pointer;
}

table {
  width: 100%;
  min-width: 1100px;
  border-collapse: collapse;
}

th,
td {
  padding: 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  font-size: 14px;
}

th {
  background: var(--soft);
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
}

.status-select {
  min-width: 140px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px;
}

.empty-row {
  color: var(--muted);
  text-align: center;
}

#admin {
  padding: 24px 16px;
}

@media (min-width: 760px) {
  .site-hero,
  .cast-panel {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .content-band,
  .available-days {
    padding: 48px 34px;
  }

  .price-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .form-layout {
    padding: 36px 34px 120px;
  }
}

@media (max-width: 760px) {
  .form-head,
  .admin-head,
  .submit-bar {
    align-items: stretch;
    flex-direction: column;
  }

  .app-header {
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }

  .header-location {
    font-size: 14px;
  }

  .summary-grid,
  .course-grid,
  .option-grid,
  .compact,
  .two,
  .three,
  .field-grid,
  .daily-limit-form,
  .shift-form {
    grid-template-columns: 1fr;
  }

  .time-panel-head {
    display: grid;
  }

  .age-hero {
    background-position: center center;
  }

  .lp-cast-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  }

  .lp-cast .cast-image {
    min-height: 240px;
  }
}

/* Visual polish pass: quiet, readable, mobile-first presentation. */
html {
  scroll-behavior: smooth;
}

body {
  background: #f4f4f2;
  color: #1d1d1b;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1 {
  font-size: 18px;
  font-weight: 700;
}

h2 {
  letter-spacing: 0;
}

p,
li,
td,
input,
select,
textarea,
button {
  letter-spacing: 0;
}

.app-header {
  min-height: 62px;
  padding: 0 18px;
  background: rgba(76, 76, 74, 0.98);
}

.menu-toggle {
  width: 38px;
  height: 38px;
  border-radius: 6px;
}

.menu-toggle:hover {
  background: rgba(255, 255, 255, 0.08);
}

.header-location {
  font-size: 15px;
  font-weight: 600;
}

.menu-panel {
  padding: 20px;
}

.menu-panel button:not(.mini-action) {
  min-height: 46px;
  color: #262626;
  font-size: 15px;
  font-weight: 600;
}

.menu-panel button:not(.mini-action):hover {
  color: var(--accent-dark);
}

.primary-action,
.secondary-action,
.page-reserve-link,
.cast-reserve-button,
.lp-cast-side button {
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.primary-action:hover,
.page-reserve-link:hover,
.cast-reserve-button:hover,
.lp-cast-side button:hover {
  transform: translateY(-1px);
}

#home {
  background: #eeeeec;
  padding-bottom: 18px;
}

.lp-cast {
  padding: 18px 18px 26px;
  background: #050505;
}

.lp-cast h2 {
  margin-bottom: 10px;
  font-size: 21px;
  font-weight: 700;
}

.lp-cast-grid {
  gap: 12px;
}

.lp-cast .cast-image {
  min-height: 265px;
  border-radius: 4px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
}

.lp-cast-side {
  gap: 14px;
  padding-top: 20px;
}

.lp-cast-side h3 {
  font-size: 21px;
  font-weight: 700;
}

.lp-schedule,
.cast-shift-box {
  border: 1px solid #ececec;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
}

.lp-schedule {
  max-height: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 12px;
}

.lp-schedule .available-day,
.cast-shift-box .available-day {
  align-content: center;
  min-height: 52px;
  border-color: #e5e5e3;
  font-size: 11px;
}

.lp-schedule .available-day small,
.cast-shift-box .available-day small {
  justify-self: center;
  font-weight: 700;
}

.lp-cast-side button {
  min-height: 42px;
  background: #666;
  font-weight: 700;
}

.lp-card {
  width: calc(100% - 28px);
  margin: 14px auto 0;
  padding: 28px 22px 30px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(20, 20, 18, 0.06);
}

.lp-card h2 {
  font-size: clamp(22px, 6vw, 30px);
  font-weight: 700;
  line-height: 1.28;
}

.lp-card h3 {
  margin-top: 10px;
  font-size: 16px;
  font-weight: 700;
}

.lp-card p {
  color: inherit;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.85;
}

.lp-first-card {
  background: #fff;
}

.lp-price-card,
.lp-faq-card {
  background: #555553;
}

.lp-flow-card {
  background: #f8f8f6;
}

.lp-flow-list {
  gap: 10px;
}

.lp-flow-list article {
  border: 1px solid #e3e3df;
  border-left: 4px solid #6a7474;
  border-radius: 6px;
  background: #fff;
  padding: 14px 14px 14px 16px;
}

.lp-reserve-preview {
  background: #fff;
  text-align: left;
}

.page-reserve-link {
  width: min(210px, 62vw);
  min-height: 56px;
  border-radius: 6px;
  font-weight: 700;
}

.simple-page {
  padding: 40px 28px 96px;
}

.simple-page h2 {
  max-width: 780px;
  font-size: clamp(28px, 7vw, 40px);
  line-height: 1.22;
}

.text-page-body {
  gap: 18px;
  max-width: 780px;
  font-size: clamp(15px, 4.1vw, 19px);
  font-weight: 600;
  line-height: 1.78;
}

.text-page-body h3 {
  margin: 18px 0 -8px;
  color: #151515;
  font-size: 1.02em;
}

.compact-text {
  gap: 16px;
  font-size: clamp(13px, 3.6vw, 16px);
  line-height: 1.65;
}

.price-detail-table {
  border-color: #ddddda;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.06);
}

.price-detail-row {
  grid-template-columns: 0.75fr 1fr 1.4fr;
  padding: 16px 14px;
  font-weight: 600;
}

.price-detail-row strong {
  font-size: 1.08em;
}

.price-detail-head {
  background: #555553;
  font-weight: 700;
}

.price-detail-row.recommended {
  background: #edf3f1;
}

.cast-profile {
  padding: 58px 24px 360px;
}

.cast-main-photo {
  min-height: clamp(430px, 94vw, 650px);
  border-radius: 4px;
}

.cast-profile-body {
  gap: 22px;
}

.cast-profile-body h2 {
  font-size: clamp(32px, 8vw, 42px);
  line-height: 1;
}

.cast-profile-body p {
  font-size: 16px;
  line-height: 1.75;
}

.cast-shift-box {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 16px;
}

fieldset,
.admin-shift,
.admin-table-wrap,
.complete-panel,
.pending-panel {
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(20, 20, 18, 0.05);
}

legend,
.time-panel-head span,
.summary-card span {
  font-weight: 700;
}

.option-grid label,
.option-stack label,
.course-grid label {
  border-radius: 8px;
  transition: border-color 160ms ease, background 160ms ease;
}

input:focus,
select:focus,
textarea:focus,
button:focus-visible {
  outline: 2px solid rgba(91, 103, 105, 0.38);
  outline-offset: 2px;
}

@media (min-width: 760px) {
  .lp-card {
    width: calc(100% - 56px);
    padding: 38px 42px 42px;
  }

  .lp-schedule {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .cast-shift-box {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .lp-card {
    width: calc(100% - 20px);
    padding: 24px 18px 28px;
  }

  .price-detail-row {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .price-detail-head {
    display: none;
  }

  .cast-gallery {
    grid-template-columns: minmax(0, 1fr) 58px;
    gap: 14px;
  }

  .cast-thumbs button {
    width: 58px;
  }
}

/* Typography system: quiet, clean, and consistent across pages. */
:root {
  --type-display: clamp(24px, 6.2vw, 34px);
  --type-title: clamp(21px, 5.4vw, 28px);
  --type-subtitle: clamp(16px, 4vw, 19px);
  --type-body: clamp(14px, 3.7vw, 16px);
  --type-small: clamp(12px, 3.2vw, 13px);
  --type-caption: 12px;
  --leading-body: 1.82;
  --leading-title: 1.42;
  --color-body: #3d3d3a;
  --color-heading: #242421;
  --color-muted-text: #7c7c78;
  --color-faint-text: #969690;
  --button-quiet: #575f60;
  --button-quiet-dark: #495151;
}

body {
  color: var(--color-body);
  font-size: var(--type-body);
  font-weight: 400;
  line-height: var(--leading-body);
}

h1,
h2,
h3,
strong,
legend,
.summary-card strong {
  color: var(--color-heading);
}

h1 {
  color: #f7f7f4;
  font-size: 18px;
  font-weight: 500;
}

h2,
.simple-page h2,
.lp-card h2 {
  color: var(--color-heading);
  font-size: var(--type-title);
  font-weight: 500;
  line-height: var(--leading-title);
}

h3,
.lp-card h3,
.text-page-body h3,
legend,
.time-panel-head span {
  color: #30302d;
  font-size: var(--type-subtitle);
  font-weight: 500;
  line-height: 1.55;
}

p,
.lp-card p,
.text-page-body,
.cast-profile-body p,
.section-lead,
.reserve-cta p,
.cast-copy p {
  color: var(--color-body);
  font-size: var(--type-body);
  font-weight: 400;
  line-height: var(--leading-body);
}

strong {
  font-weight: 500;
}

.note,
.eyebrow,
.caption,
.form-help,
small,
.time-panel-head small,
.summary-card span,
.field,
.form-head p,
.available-day small,
.lp-note {
  color: var(--color-muted-text);
  font-size: var(--type-small);
  font-weight: 400;
  line-height: 1.7;
}

.form-label,
legend {
  color: #30302d;
  font-size: var(--type-subtitle);
  font-weight: 500;
  line-height: 1.55;
}

.eyebrow {
  letter-spacing: 0;
  text-transform: none;
}

.app-header {
  background: rgba(78, 78, 75, 0.97);
}

.header-location,
.menu-panel button:not(.mini-action) {
  font-weight: 400;
}

button,
.primary-action,
.secondary-action,
.page-reserve-link,
.cast-reserve-button,
.lp-cast-side button,
.time-button,
.table-action {
  font-size: 14px;
  font-weight: 400;
}

.primary-action,
.page-reserve-link {
  border-color: var(--button-quiet);
  background: var(--button-quiet);
  color: #fff;
}

.primary-action:hover,
.page-reserve-link:hover {
  background: var(--button-quiet-dark);
}

.secondary-action {
  color: #41413e;
}

.lp-cast-side button {
  width: auto;
  min-width: 132px;
  padding: 0 16px;
  background: #666b6b;
}

.age-hero h2 {
  color: #f4f4f1;
  font-size: clamp(20px, 5vw, 27px);
  font-weight: 400;
}

.age-hero p,
.age-note {
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 400;
}

.age-enter {
  background: rgba(30, 31, 31, 0.9);
  font-weight: 400;
}

.lp-card {
  gap: 16px;
}

.lp-card h2 {
  margin-bottom: 2px;
}

.lp-card h3 {
  margin-top: 12px;
}

.lp-price-card,
.lp-faq-card {
  background: #5c5c58;
}

.lp-price-card h2,
.lp-price-card h3,
.lp-price-card p,
.lp-faq-card h2,
.lp-faq-card h3,
.lp-faq-card p,
.cast-profile h2,
.cast-profile h3,
.cast-profile p {
  color: #f4f4ef;
}

.lp-flow-list article {
  border-left-color: #818b89;
}

.price-detail-row {
  color: #42423f;
  font-size: var(--type-body);
  font-weight: 400;
}

.price-text,
.price-detail-row strong {
  color: #30302d;
  font-size: clamp(16px, 4vw, 19px);
  font-weight: 500;
}

.price-detail-row em {
  display: inline-block;
  margin-right: 6px;
  border: 1px solid #aeb8b4;
  border-radius: 999px;
  padding: 1px 8px;
  color: #53605d;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
}

.price-detail-head {
  background: #5c5c58;
}

.price-detail-head span {
  color: #f5f5f1;
  font-weight: 400;
}

.price-detail-row.recommended {
  background: #eef3f1;
}

.simple-page {
  color: var(--color-body);
}

.text-page-body {
  gap: 17px;
  max-width: 740px;
}

.text-page-body h3 {
  margin-top: 22px;
  margin-bottom: -6px;
}

.compact-text {
  color: #4c4c49;
  font-size: clamp(13px, 3.45vw, 15px);
  font-weight: 400;
  line-height: 1.75;
}

.compact-text h3 {
  font-size: clamp(15px, 3.7vw, 17px);
}

.cast-profile-body {
  font-weight: 400;
}

.cast-profile-body h2 {
  font-weight: 500;
}

.cast-spec {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 400;
}

.cast-shift-box,
.lp-schedule {
  box-shadow: none;
}

.cast-shift-box .available-day,
.lp-schedule .available-day {
  color: #454542;
  font-weight: 400;
}

.cast-reserve-button {
  color: #2f302e;
  font-weight: 400;
}

.form-head h2 {
  font-size: var(--type-title);
  font-weight: 500;
}

fieldset {
  padding: 22px 18px;
}

legend {
  margin-bottom: 12px;
}

.field,
.option-grid label,
.option-stack label,
.course-grid label,
.checks label {
  color: #444441;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.72;
}

.option-grid,
.option-stack,
.course-grid,
.checks {
  gap: 12px;
}

.option-grid label,
.option-stack label,
.course-grid label {
  padding: 14px 13px;
}

.summary-card strong,
.time-button.active {
  font-weight: 500;
}

input,
select,
textarea {
  color: #3f3f3c;
  font-size: 14px;
  font-weight: 400;
}

th {
  color: var(--color-muted-text);
  font-weight: 400;
}

td {
  color: #444441;
  font-weight: 400;
}

@media (max-width: 520px) {
  .simple-page {
    padding: 34px 24px 88px;
  }

  .lp-card p,
  .text-page-body,
  .field,
  .option-grid label,
  .option-stack label,
  .course-grid label {
    font-size: 14px;
  }
}

/* Quiet product polish: lighter cards, calmer buttons, more deliberate spacing. */
:root {
  --line-subtle: #eeeeec;
  --line-soft: #e7e7e3;
  --surface-subtle: #fbfbfa;
  --surface-muted: #f4f4f1;
  --surface-tint: #eef3f1;
  --shadow-hairline: 0 1px 2px rgba(20, 20, 18, 0.025);
  --button-soft: #525b5b;
}

body {
  background: #f8f8f7;
  color: #41413e;
  letter-spacing: 0;
}

main {
  margin-bottom: 84px;
}

.app-header {
  border-bottom-color: rgba(255, 255, 255, 0.08);
  background: rgba(77, 77, 74, 0.96);
}

.menu-panel {
  border-right-color: var(--line-subtle);
  box-shadow: 10px 0 28px rgba(32, 32, 28, 0.08);
}

.menu-panel-head {
  border-bottom-color: var(--line-subtle);
}

.menu-panel button:not(.mini-action) {
  min-height: 46px;
  border-bottom-color: var(--line-subtle);
  color: #464642;
  font-size: 14px;
}

.lp-card,
fieldset,
.result-card,
.summary-grid article,
.option-card,
.admin-table-wrap,
.shift-form,
.daily-limit-form,
.complete-panel,
.pending-panel,
.price-detail-table,
.cast-shift-box,
.lp-schedule {
  border-color: var(--line-subtle);
  border-radius: 5px;
  box-shadow: var(--shadow-hairline);
}

.lp-card {
  width: calc(100% - 32px);
  margin-top: 18px;
  padding: 30px 22px 34px;
  background: #fff;
}

.lp-card + .lp-card {
  margin-top: 20px;
}

.lp-card h2,
.simple-page h2,
.form-head h2 {
  color: #2f2f2c;
  font-weight: 500;
  letter-spacing: 0;
}

.lp-card h3,
.text-page-body h3,
legend,
.time-panel-head span {
  color: #383834;
  font-weight: 500;
}

.lp-card p,
.text-page-body p,
.compact-text p {
  color: #4b4b47;
  line-height: 1.9;
}

.lp-first-card,
.lp-reserve-preview {
  background: #fff;
}

.lp-flow-card,
.lp-price-card,
.lp-faq-card {
  background: var(--surface-subtle);
}

.lp-price-card h2,
.lp-price-card h3,
.lp-price-card p,
.lp-faq-card h2,
.lp-faq-card h3,
.lp-faq-card p {
  color: inherit;
}

.lp-mini-price-list {
  display: grid;
  gap: 0;
  margin: 6px 0 12px;
  overflow: hidden;
  border: 1px solid var(--line-subtle);
  border-radius: 4px;
  background: #fff;
}

.lp-mini-price-list div {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 2px 12px;
  padding: 14px 14px 13px;
  border-bottom: 1px solid var(--line-subtle);
}

.lp-mini-price-list div:last-child {
  border-bottom: 0;
}

.lp-mini-price-list .standard {
  background: var(--surface-tint);
}

.lp-mini-price-list span,
.lp-mini-price-list strong {
  color: #333330;
  font-weight: 500;
}

.lp-mini-price-list strong {
  font-size: 16px;
}

.lp-mini-price-list small {
  grid-column: 2;
  color: #85857f;
  font-size: 12px;
  line-height: 1.55;
}

.lp-note,
.note,
.form-head p,
.time-panel-head small,
.available-day small,
.summary-card span,
.agreement-items,
small {
  color: #8b8b85;
  font-size: 12px;
}

.lp-flow-list {
  gap: 12px;
}

.lp-flow-list article {
  border-color: var(--line-subtle);
  border-left: 1px solid var(--line-subtle);
  border-radius: 4px;
  padding: 16px 15px;
  background: #fff;
}

.lp-flow-list article h3 {
  margin-top: 0;
}

.primary-action,
.secondary-action,
.page-reserve-link,
.cast-reserve-button,
.lp-cast-side button,
.time-button,
.table-action {
  min-height: 40px;
  border-radius: 4px;
  padding: 0 15px;
  font-size: 13px;
  font-weight: 400;
}

.primary-action,
.page-reserve-link {
  border-color: var(--button-soft);
  background: var(--button-soft);
}

.primary-action:hover,
.page-reserve-link:hover {
  background: #475050;
}

.secondary-action,
.time-button {
  border-color: var(--line-soft);
  background: #fff;
  color: #51514d;
}

.page-reserve-link {
  width: auto;
  min-width: 164px;
  min-height: 46px;
}

.lp-cast-side button {
  min-height: 38px;
  background: #5b6262;
}

.simple-page {
  padding-top: 48px;
}

.text-page-body {
  gap: 20px;
}

.text-page-body h3 {
  margin-top: 26px;
  margin-bottom: -8px;
}

.price-detail-table {
  overflow: hidden;
  background: #fff;
}

.price-detail-head {
  background: var(--surface-muted);
}

.price-detail-head span {
  color: #6e6e68;
  font-size: 12px;
}

.price-detail-row {
  min-height: 58px;
  border-bottom-color: var(--line-subtle);
  padding: 17px 14px;
  color: #454541;
}

.price-detail-row strong {
  color: #30302d;
  font-size: 17px;
}

.price-detail-row.recommended {
  background: #f1f6f4;
}

.price-detail-row em {
  border-color: #cbd4d0;
  background: #fff;
  color: #65706c;
}

fieldset {
  gap: 18px;
  padding: 24px 18px;
  background: #fff;
}

.option-grid,
.option-stack,
.course-grid,
.checks {
  gap: 13px;
}

.option-grid label,
.option-stack label,
.course-grid label,
input,
select,
textarea {
  border-color: var(--line-soft);
  border-radius: 4px;
  background: #fff;
}

.option-grid label,
.option-stack label,
.course-grid label {
  padding: 15px 14px;
}

.option-card:has(input:checked),
.time-button.active {
  border-color: #9aa8a3;
  background: #f2f7f5;
  color: #333330;
}

.time-button.active {
  font-weight: 500;
}

.submit-bar {
  border-color: var(--line-subtle);
  border-radius: 6px 6px 0 0;
  box-shadow: 0 -6px 18px rgba(20, 20, 18, 0.035);
}

.reservation-summary {
  line-height: 1.6;
}

.reservation-summary strong {
  color: #333330;
  font-size: 15px;
  font-weight: 500;
}

.reservation-summary-details {
  color: #595955;
  font-weight: 400;
}

.cast-reserve-button {
  background: #f7f7f4;
}

@media (min-width: 760px) {
  .lp-card {
    width: calc(100% - 64px);
    padding: 42px 46px 46px;
  }
}

@media (max-width: 520px) {
  main {
    margin-bottom: 72px;
  }

  .lp-card {
    width: calc(100% - 28px);
    padding: 28px 20px 32px;
  }

  .lp-mini-price-list div {
    grid-template-columns: 52px 1fr;
    padding: 13px 12px;
  }

  .simple-page {
    padding: 42px 24px 92px;
  }

  fieldset {
    padding: 23px 16px;
  }

  .submit-bar {
    align-items: stretch;
  }
}

/* LP readability fixes: keep light cards readable and remove forced green emphasis. */
.lp-first-card,
.lp-price-card,
.lp-flow-card,
.lp-faq-card,
.lp-reserve-preview {
  background: #fff;
  color: #42423f;
}

.lp-price-card,
.lp-faq-card {
  background: #fafafa;
}

.lp-first-card :where(h2, h3, p, strong),
.lp-price-card :where(h2, h3, p, strong),
.lp-flow-card :where(h2, h3, p, strong),
.lp-faq-card :where(h2, h3, p, strong),
.lp-reserve-preview :where(h2, h3, p, strong) {
  color: inherit;
}

.lp-card :where(p, small) {
  color: #555550;
}

.lp-card .lp-note,
.lp-mini-price-list small {
  color: #85857f;
}

.lp-mini-price-list .standard,
.price-detail-row.recommended {
  background: #fff;
}

.price-detail-row.recommended {
  border-top: 1px solid var(--line-subtle);
  border-bottom: 1px solid var(--line-subtle);
}

.lp-mini-price-list .standard strong,
.price-detail-row.recommended strong {
  color: #30302d;
}

.price-detail-row em {
  border-color: #ddddda;
  background: transparent;
  color: #73736d;
}

/* LP cast block: stable portrait ratio and one-week schedule pager. */
.lp-cast {
  padding: 16px 16px 24px;
  background: #050505;
  color: #f7f7f4;
}

.lp-cast h2 {
  margin-bottom: 10px;
  color: #f7f7f4;
  font-size: 20px;
  font-weight: 500;
}

.lp-cast-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  gap: 12px;
  align-items: start;
}

.lp-cast .cast-image {
  width: 100%;
  min-height: 0;
  aspect-ratio: 0.72;
  border-radius: 3px;
  background-image: url("./assets/hero-source.png");
  background-position: 64% center;
  background-size: cover;
  box-shadow: none;
}

.lp-cast-side {
  display: grid;
  gap: 16px;
  align-content: start;
  padding-top: 16px;
}

.lp-cast-side h3 {
  color: #f7f7f4;
  font-size: 20px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.2;
}

.lp-schedule,
.cast-shift-box {
  position: relative;
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr) 22px;
  gap: 0;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid #eeeeec;
  border-radius: 4px;
  background: #fff;
  color: #333330;
  box-shadow: none;
}

.lp-schedule {
  min-height: 92px;
  padding: 0;
}

.shift-week-days {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  min-width: 0;
}

.lp-schedule .available-day,
.cast-shift-box .available-day {
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 86px;
  gap: 6px;
  border: 0;
  border-right: 1px solid #eeeeec;
  border-radius: 0;
  background: #fff;
  padding: 8px 3px;
  color: #333330;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.25;
  text-align: center;
}

.lp-schedule .available-day:last-child,
.cast-shift-box .available-day:last-child {
  border-right: 0;
}

.lp-schedule .available-day small,
.cast-shift-box .available-day small {
  color: #777771;
  font-size: 10px;
  font-weight: 400;
}

.lp-schedule .available-day.open small,
.cast-shift-box .available-day.open small,
.lp-schedule .available-day.closed small,
.cast-shift-box .available-day.closed small,
.lp-schedule .available-day.off small,
.cast-shift-box .available-day.off small {
  background: transparent;
  color: #777771;
}

.shift-week-button {
  width: 22px;
  min-width: 22px;
  min-height: 100%;
  border: 0;
  border-radius: 0;
  background: #f4f4f1;
  color: #585852;
  font-size: 20px;
  font-weight: 400;
  cursor: pointer;
}

.shift-week-button:disabled {
  color: #c7c7c1;
  cursor: default;
}

.lp-cast-side > button {
  justify-self: center;
  min-width: 116px;
  min-height: 38px;
  border: 0;
  border-radius: 4px;
  background: #5f6260;
  color: #fff;
  font-size: 12px;
  font-weight: 400;
}

.cast-shift-box {
  width: 100%;
  min-height: 106px;
  padding: 0;
}

.cast-shift-box .available-day {
  min-height: 104px;
  font-size: 12px;
}

@media (min-width: 760px) {
  .lp-cast {
    padding: 22px 28px 34px;
  }

  .lp-cast-grid {
    grid-template-columns: minmax(260px, 0.95fr) minmax(300px, 1.05fr);
    gap: 28px;
  }

  .lp-cast .cast-image {
    aspect-ratio: 0.78;
  }

  .lp-schedule .available-day {
    font-size: 11px;
  }
}

@media (max-width: 420px) {
  .lp-cast {
    padding-inline: 16px;
  }

  .lp-cast-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 10px;
  }

  .lp-cast-side {
    gap: 14px;
    padding-top: 12px;
  }

  .lp-schedule {
    grid-template-columns: 18px minmax(0, 1fr) 18px;
    min-height: 82px;
  }

  .shift-week-button {
    width: 18px;
    min-width: 18px;
    font-size: 18px;
  }

  .lp-schedule .available-day {
    min-height: 82px;
    padding-inline: 1px;
    font-size: 8px;
  }

  .lp-schedule .available-day small {
    font-size: 8px;
  }
}

@media (max-width: 520px) {
  .lp-cast-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    grid-template-areas:
      "photo name"
      "schedule schedule"
      "cta cta";
    align-items: start;
  }

  .lp-cast .cast-image {
    grid-area: photo;
  }

  .lp-cast-side {
    display: contents;
  }

  .lp-cast-side h3 {
    grid-area: name;
    align-self: start;
    margin-top: 18px;
  }

  .lp-cast-side .lp-schedule {
    grid-area: schedule;
    margin-top: 4px;
  }

  .lp-cast-side > button {
    grid-area: cta;
    justify-self: center;
    margin-top: 2px;
  }

  .lp-schedule {
    grid-template-columns: 24px minmax(0, 1fr) 24px;
  }

  .shift-week-button {
    width: 24px;
    min-width: 24px;
  }

  .lp-schedule .available-day {
    min-height: 74px;
    font-size: 10px;
  }

  .lp-schedule .available-day small {
    font-size: 10px;
  }
}

/* Final palette lock: quiet salon / hotel tone using only the requested colors. */
:root {
  --bg: #FAF9F6;
  --panel: #FFFFFF;
  --line: #E6E2DA;
  --text: #333333;
  --muted: #8A867D;
  --soft: #F3F1EC;
  --accent: #A89573;
  --accent-dark: #2F332F;
  --danger: #A89573;
  --ok: #A89573;
  --color-body: #333333;
  --color-heading: #1F1F1F;
  --color-muted-text: #8A867D;
  --color-faint-text: #8A867D;
  --button-quiet: #2F332F;
  --button-quiet-dark: #2F332F;
  --line-subtle: #E6E2DA;
  --line-soft: #E6E2DA;
  --surface-subtle: #F3F1EC;
  --surface-muted: #F3F1EC;
  --surface-tint: #F3F1EC;
  --shadow-hairline: none;
  --button-soft: #2F332F;
}

*,
*::before,
*::after {
  box-shadow: none !important;
  text-shadow: none !important;
}

body,
#home {
  background: #FAF9F6;
  color: #333333;
}

body[data-screen="age"] {
  background: #FAF9F6;
}

.app-header,
body[data-screen="age"] .app-header {
  background: #2F332F;
  border-bottom-color: #E6E2DA;
}

h1,
h2,
h3,
legend,
strong,
.form-label,
.summary-card strong,
.reservation-summary strong {
  color: #1F1F1F;
}

p,
.lp-card p,
.text-page-body,
.text-page-body p,
.cast-profile-body p,
.compact-text,
.field,
td,
.reservation-summary-details {
  color: #333333;
}

.note,
.eyebrow,
.caption,
.form-help,
small,
.lp-note,
.form-head p,
.time-panel-head small,
.available-day small,
.summary-card span,
.agreement-items,
th {
  color: #8A867D;
}

.simple-page,
.lp-cast,
.cast-profile,
.admin-shift,
.lp-price-card,
.lp-faq-card,
.lp-flow-card {
  background: #F3F1EC;
  color: #333333;
}

.lp-card,
fieldset,
.result-card,
.summary-grid article,
.option-card,
.admin-table-wrap,
.shift-form,
.daily-limit-form,
.price-detail-table,
.lp-mini-price-list,
.lp-schedule,
.cast-shift-box,
.menu-panel,
.result-details {
  border-color: #E6E2DA;
  background: #FFFFFF;
  color: #333333;
}

.lp-first-card,
.lp-reserve-preview {
  background: #FFFFFF;
}

.lp-cast h2,
.lp-cast-side h3,
.cast-profile h2,
.cast-profile h3,
.cast-profile p,
.lp-price-card :where(h2, h3, p, strong),
.lp-faq-card :where(h2, h3, p, strong),
.lp-flow-card :where(h2, h3, p, strong),
.lp-card :where(h2, h3, p, strong),
.simple-page :where(h2, h3, p, strong) {
  color: inherit;
}

.lp-cast .cast-image,
.cast-main-photo,
.cast-thumbs button {
  border: 1px solid #E6E2DA;
}

.lp-flow-list article,
.lp-mini-price-list div,
.price-detail-row,
.available-day,
.lp-schedule .available-day,
.cast-shift-box .available-day,
.menu-panel button:not(.mini-action) {
  border-color: #E6E2DA;
}

.price-detail-head,
.price-detail-row.recommended,
.lp-mini-price-list .standard,
.shift-week-button,
.secondary-action,
.time-button,
.result-details,
.option-card:has(input:checked),
.time-button.active {
  background: #F3F1EC;
}

.price-detail-head span,
.price-detail-row em,
.lp-mini-price-list small,
.shift-week-button,
.available-day small,
.lp-schedule .available-day small,
.cast-shift-box .available-day small {
  color: #8A867D;
}

.price-detail-row em {
  border-color: #E6E2DA;
}

.primary-action,
.page-reserve-link,
.cast-reserve-button,
.lp-cast-side > button,
.lp-cast-side button,
.table-action,
.age-enter,
.submit-bar .primary-action {
  border-color: #2F332F;
  background: #2F332F;
  color: #FFFFFF;
}

.primary-action:hover,
.page-reserve-link:hover,
.cast-reserve-button:hover,
.lp-cast-side button:hover,
.age-enter:hover {
  background: #2F332F;
  color: #FFFFFF;
}

.secondary-action,
.time-button {
  border-color: #E6E2DA;
  color: #333333;
}

.time-button.active {
  border-color: #A89573;
  color: #333333;
}

input,
select,
textarea,
.option-grid label,
.option-stack label,
.course-grid label {
  border-color: #E6E2DA;
  background: #FFFFFF;
  color: #333333;
}

input:focus,
select:focus,
textarea:focus,
button:focus-visible {
  outline-color: #A89573;
}

.submit-bar {
  border-color: #E6E2DA;
  background: #FFFFFF;
}

.menu-backdrop {
  background: rgba(47, 51, 47, 0.35);
}

.age-hero {
  background:
    linear-gradient(90deg, rgba(31, 31, 28, 0.82) 0%, rgba(31, 31, 28, 0.62) 44%, rgba(31, 31, 28, 0.2) 76%, rgba(31, 31, 28, 0.08) 100%),
    url("./assets/age-background.png") 62% 42% / cover no-repeat;
}

.age-hero h2,
.age-hero p,
.age-note,
h1,
.header-location,
.nav-button {
  color: #FFFFFF;
}

.header-location {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
  opacity: 0.92;
}

.nav-button {
  border-color: #E6E2DA;
  background: transparent;
}

/* Page surface refinements requested after palette lock. */
.app-header,
body[data-screen="age"] .app-header {
  background: #F3F1EC;
  border-bottom-color: #E6E2DA;
}

h1,
.header-location,
.nav-button {
  color: #1F1F1F;
}

.menu-toggle span {
  background: #1F1F1F;
}

.nav-button.active {
  border-color: #A89573;
}

.simple-page,
#first,
#flow,
#price,
#faq,
#terms,
#privacy,
#cancelPolicy,
#reserveInfo {
  background: #FFFFFF;
}

#reserve {
  background: #FAF9F6;
}

#reserve fieldset,
#reserve .option-grid label,
#reserve .option-stack label,
#reserve .course-grid label,
#reserve .checks label,
#reserve input,
#reserve select,
#reserve textarea,
#reserve .time-button,
#reserve .submit-bar {
  background: #FFFFFF;
}

#reserve .option-card:has(input:checked),
#reserve .time-button.active {
  background: #F3F1EC;
}

.cast-profile {
  background: #2F332F;
  color: #FFFFFF;
}

.cast-profile h2,
.cast-profile h3,
.cast-profile p,
.cast-spec {
  color: #FFFFFF;
}

.cast-shift-box {
  background: #FFFFFF;
  color: #333333;
}

.cast-shift-box .available-day,
.cast-shift-box .available-day small {
  color: #333333;
}

.cast-reserve-button {
  border-color: #FFFFFF;
  background: #FFFFFF;
  color: #2F332F;
}

/* Header and LP cast balance. */
.app-header,
body[data-screen="age"] .app-header {
  background: #E6E2DA;
  border-bottom-color: #A89573;
}

.lp-cast {
  background: #2F332F;
  color: #FFFFFF;
}

.lp-cast h2,
.lp-cast-side h3 {
  color: #FFFFFF;
}

/* Terms page: readable section bands and separated lists. */
#terms {
  background: #FFFFFF;
}

#terms .terms-body {
  gap: 18px;
  max-width: 860px;
}

#terms .terms-body h3 {
  margin: 30px 0 4px;
  border-radius: 0;
  background: #2F332F;
  color: #FFFFFF;
  padding: 13px 18px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
}

#terms .terms-body h3:first-of-type {
  margin-top: 18px;
}

#terms .terms-body p {
  color: #333333;
  line-height: 1.9;
}

#terms .terms-body ul {
  display: grid;
  gap: 8px;
  margin: 2px 0 8px;
  padding: 18px 20px 18px 34px;
  border: 1px solid #E6E2DA;
  background: #FFFFFF;
  color: #333333;
  line-height: 1.85;
}

#terms .terms-body li::marker {
  color: #A89573;
}

#terms .page-reserve-link {
  margin-top: 28px;
}

.lp-mini-price-list .standard,
.price-detail-row.recommended {
  background: #FFFFFF;
}

/* Detail pages: same readable rhythm as terms page. */
#flow,
#price,
#faq,
#cancelPolicy,
#reserveInfo {
  background: #FFFFFF;
}

#flow .detail-body,
#price .detail-body,
#faq .detail-body,
#cancelPolicy .detail-body,
#reserveInfo .detail-body {
  gap: 18px;
  max-width: 860px;
}

#flow .detail-body h3,
#price .detail-body h3,
#faq .detail-body h3,
#cancelPolicy .detail-body h3,
#reserveInfo .detail-body h3 {
  margin: 30px 0 4px;
  border-radius: 0;
  background: #2F332F;
  color: #FFFFFF;
  padding: 13px 18px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
}

#flow .detail-body h3:first-of-type,
#price .detail-body h3:first-of-type,
#faq .detail-body h3:first-of-type,
#cancelPolicy .detail-body h3:first-of-type,
#reserveInfo .detail-body h3:first-of-type {
  margin-top: 18px;
}

#flow .detail-body p,
#price .detail-body p,
#faq .detail-body p,
#cancelPolicy .detail-body p,
#reserveInfo .detail-body p {
  color: #333333;
  line-height: 1.9;
}

#flow .detail-body ul,
#price .detail-body ul,
#faq .detail-body ul,
#cancelPolicy .detail-body ul,
#reserveInfo .detail-body ul {
  display: grid;
  gap: 8px;
  margin: 2px 0 8px;
  padding: 18px 20px 18px 34px;
  border: 1px solid #E6E2DA;
  background: #FFFFFF;
  color: #333333;
  line-height: 1.85;
}

#flow .detail-body li::marker,
#price .detail-body li::marker,
#faq .detail-body li::marker,
#cancelPolicy .detail-body li::marker,
#reserveInfo .detail-body li::marker {
  color: #A89573;
}

#flow .detail-body h3 + p,
#price .detail-body h3 + p,
#cancelPolicy .detail-body h3 + p,
#reserveInfo .detail-body h3 + p {
  border: 1px solid #E6E2DA;
  background: #FFFFFF;
  padding: 16px 18px;
}

#price .price-detail-table {
  margin: 8px 0 10px;
}

#faq .faq-body p:has(strong),
#reserveInfo .reserve-info-body p:has(strong) {
  border: 1px solid #E6E2DA;
  background: #FFFFFF;
  padding: 16px 18px;
}

#faq .faq-body p strong,
#reserveInfo .reserve-info-body p strong {
  display: block;
  margin-bottom: 6px;
  color: #1F1F1F;
  font-weight: 500;
}

#reserveInfo .reserve-info-body p:first-child,
#price .detail-body > p:first-child,
#flow .detail-body > p:first-child {
  border-left: 3px solid #A89573;
  background: #F3F1EC;
  padding: 16px 18px;
}

#reserveInfo .reserve-info-body .reserve-caution-lead {
  margin: -2px 0 6px;
  border: 0;
  background: transparent;
  padding: 0;
  color: #8A8176;
  font-size: 13px;
}

#reserveInfo .reserve-info-body .reserve-caution-list {
  list-style: none;
  gap: 0;
  margin-top: 8px;
  padding: 4px 0;
  border: 1px solid #E2DCD2;
  background: #FFFDF9;
}

#reserveInfo .reserve-info-body .reserve-caution-list li {
  position: relative;
  padding: 11px 16px 11px 31px;
  border-bottom: 1px solid #F0ECE4;
  color: #4A4640;
  font-size: 13px;
  line-height: 1.75;
}

#reserveInfo .reserve-info-body .reserve-caution-list li:last-child {
  border-bottom: 0;
}

#reserveInfo .reserve-info-body .reserve-caution-list li::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 1.55em;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: #B2A17D;
}

#faq .faq-body h3 + p {
  margin-top: 0;
}

#faq .faq-body p + p:has(strong) {
  margin-top: -4px;
}

/* Reservation confirmation screen. */
.confirm-card {
  max-width: 780px;
}

.confirm-details {
  gap: 0;
  overflow: hidden;
  border: 1px solid #E6E2DA;
  background: #FFFFFF;
  padding: 0;
}

.confirm-details div {
  display: grid;
  grid-template-columns: minmax(98px, 0.42fr) minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 13px 16px;
  border-bottom: 1px solid #E6E2DA;
}

.confirm-details div:last-child {
  border-bottom: 0;
}

.confirm-details span {
  color: #8A867D;
  font-size: 12px;
}

.confirm-details strong {
  color: #333333;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
  overflow-wrap: anywhere;
}

.confirm-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 20px;
}

@media (max-width: 520px) {
  .confirm-details div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .confirm-actions {
    display: grid;
  }
}

/* AWAI wordmark and slightly deeper header tone. */
.app-header,
body[data-screen="age"] .app-header {
  background: #A89573;
  border-bottom-color: #E6E2DA;
}

.brand-logo {
  display: block;
  width: 96px;
  height: auto;
}

h1 {
  display: grid;
  place-items: center;
  line-height: 1;
}

.header-location,
.nav-button {
  color: #FFFFFF;
}

.menu-toggle span {
  background: #FFFFFF;
}

.nav-button {
  border-color: rgba(255, 255, 255, 0.48);
}

.nav-button.active {
  border-color: #FFFFFF;
}

@media (max-width: 520px) {
  .brand-logo {
    width: 86px;
  }
}

/* Admin cast image manager. */
.cast-image-admin-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.cast-image-admin-card {
  display: grid;
  gap: 14px;
  border: 1px solid #E6E2DA;
  background: #FFFFFF;
  padding: 14px;
}

.cast-image-preview {
  width: 100%;
  aspect-ratio: 0.78;
  border: 1px solid #E6E2DA;
  background-position: center;
  background-size: cover;
}

.cast-image-admin-card h3 {
  margin: 0 0 4px;
  color: #1F1F1F;
  font-size: 14px;
  font-weight: 500;
}

.cast-image-admin-card p {
  margin: 0 0 12px;
  color: #8A867D;
  font-size: 12px;
  line-height: 1.7;
}

.image-upload-button {
  display: inline-grid;
  place-items: center;
  margin-right: 8px;
}

.image-upload-button input {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 760px) {
  .cast-image-admin-grid {
    grid-template-columns: 1fr;
  }

  .cast-image-admin-card {
    grid-template-columns: 120px minmax(0, 1fr);
    align-items: start;
  }
}

@media (max-width: 420px) {
  .cast-image-admin-card {
    grid-template-columns: 1fr;
  }
}

/* Shift status visibility. */
.lp-schedule .available-day.open,
.cast-shift-box .available-day.open {
  background: #2F332F;
  color: #FFFFFF;
}

.lp-schedule .available-day.open small,
.cast-shift-box .available-day.open small {
  color: #FFFFFF;
}

.lp-schedule .available-day.off,
.cast-shift-box .available-day.off {
  background: #F3F1EC;
  color: #8A867D;
}

.lp-schedule .available-day.off small,
.cast-shift-box .available-day.off small {
  color: #8A867D;
}

.lp-schedule .available-day.closed,
.cast-shift-box .available-day.closed {
  background: #FFFFFF;
  color: #333333;
  box-shadow: inset 0 0 0 1px #A89573 !important;
}

.lp-schedule .available-day.closed small,
.cast-shift-box .available-day.closed small {
  color: #A89573;
}

/* LP first-time points. */
.lp-first-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 8px;
}

.lp-first-points article {
  display: grid;
  gap: 6px;
  border: 1px solid #E6E2DA;
  background: #FFFFFF;
  padding: 16px 15px;
}

.lp-first-points span {
  color: #A89573;
  font-size: 11px;
  letter-spacing: 0.08em;
}

.lp-first-points h3 {
  margin: 0;
  color: #1F1F1F;
  font-size: 15px;
  font-weight: 500;
}

.lp-first-points p {
  color: #333333;
  font-size: 13px;
  line-height: 1.75;
}

@media (max-width: 420px) {
  .lp-first-points {
    grid-template-columns: 1fr;
  }
}

/* Subtle emphasis for the form entry in the hamburger menu. */
.menu-panel button.menu-reserve-entry:not(.mini-action) {
  display: grid;
  gap: 4px;
  margin: 10px 0 4px;
  border: 1px solid #E6E2DA;
  border-left: 3px solid #A89573;
  background: #F3F1EC;
  padding: 14px 16px;
  text-align: left;
}

.menu-panel button.menu-reserve-entry span {
  color: #1F1F1F;
  font-size: 15px;
  font-weight: 500;
}

.menu-panel button.menu-reserve-entry small {
  color: #8A867D;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
}

.menu-panel button.menu-reserve-entry:hover {
  background: #FFFFFF;
}

/* Compact weekly shift tables. */
.lp-schedule,
.cast-shift-box {
  min-height: 0;
  height: auto;
  display: block;
  position: relative;
  overflow: hidden;
  border-color: #E6E2DA;
  background: #FFFFFF;
  padding: 0;
}

.lp-schedule .shift-week-days,
.cast-shift-box .shift-week-days {
  grid-template-columns: repeat(7, minmax(44px, 1fr));
  overflow-x: auto;
  scrollbar-width: thin;
}

.lp-schedule .available-day,
.lp-schedule .available-day.open,
.lp-schedule .available-day.off,
.lp-schedule .available-day.closed,
.cast-shift-box .available-day,
.cast-shift-box .available-day.open,
.cast-shift-box .available-day.off,
.cast-shift-box .available-day.closed {
  display: grid;
  grid-template-rows: 30px 28px;
  min-height: 58px;
  gap: 0;
  padding: 0;
  border-right: 1px solid #E6E2DA;
  background: #FFFFFF;
  box-shadow: none !important;
  color: #333333;
  white-space: nowrap;
}

.lp-schedule .available-day-date,
.cast-shift-box .available-day-date {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-bottom: 1px solid #E6E2DA;
  background: #F3F1EC;
  color: #333333;
  padding: 0 2px;
  font-size: 9px;
  font-weight: 500;
  line-height: 1;
}

.lp-schedule .available-day-status,
.lp-schedule .available-day.open small.available-day-status,
.lp-schedule .available-day.off small.available-day-status,
.lp-schedule .available-day.closed small.available-day-status,
.cast-shift-box .available-day-status,
.cast-shift-box .available-day.open small.available-day-status,
.cast-shift-box .available-day.off small.available-day-status,
.cast-shift-box .available-day.closed small.available-day-status {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: #FFFFFF;
  padding: 0 2px;
  font-size: 9px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.lp-schedule .available-day.open small.available-day-status,
.cast-shift-box .available-day.open small.available-day-status {
  color: #2F332F;
}

.lp-schedule .available-day.off small.available-day-status,
.cast-shift-box .available-day.off small.available-day-status {
  color: #8A867D;
}

.lp-schedule .available-day.closed small.available-day-status,
.cast-shift-box .available-day.closed small.available-day-status {
  color: #A89573;
}

.lp-schedule .shift-week-button,
.cast-shift-box .shift-week-button {
  position: absolute;
  z-index: 2;
  top: 50%;
  width: 24px;
  min-width: 24px;
  min-height: 34px;
  height: 34px;
  border: 1px solid #E6E2DA;
  border-radius: 50%;
  background: #FFFFFF;
  color: #333333;
  padding: 0;
  font-size: 18px;
  line-height: 1;
  transform: translateY(-50%);
}

.lp-schedule .shift-week-button:first-child,
.cast-shift-box .shift-week-button:first-child {
  left: 4px;
}

.lp-schedule .shift-week-button:last-child,
.cast-shift-box .shift-week-button:last-child {
  right: 4px;
}

.lp-schedule .shift-week-button:disabled,
.cast-shift-box .shift-week-button:disabled {
  opacity: 0.28;
  pointer-events: none;
}

.lp-cast-side .lp-schedule .shift-week-button:hover,
.cast-shift-box .shift-week-button:hover {
  transform: translateY(-50%);
}

@media (min-width: 520px) {
  .lp-schedule .available-day-date,
  .cast-shift-box .available-day-date,
  .lp-schedule .available-day-status,
  .lp-schedule .available-day.open small.available-day-status,
  .lp-schedule .available-day.off small.available-day-status,
  .lp-schedule .available-day.closed small.available-day-status,
  .cast-shift-box .available-day-status,
  .cast-shift-box .available-day.open small.available-day-status,
  .cast-shift-box .available-day.off small.available-day-status,
  .cast-shift-box .available-day.closed small.available-day-status {
    font-size: 10px;
  }
}

/* Cast detail gallery: large portrait with overlaid thumbnails. */
#cast .cast-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 52px;
  gap: 10px;
  align-items: start;
  width: min(100%, 680px);
  margin: 0 auto;
  border: 1px solid #E6E2DA;
  background: #FFFFFF;
  padding: 12px;
}

#cast .cast-main-photo {
  width: 100%;
  min-height: 0;
  aspect-ratio: 3 / 4;
  border: 0;
  border-radius: 0;
  background-position: 64% center;
  background-size: cover;
}

#cast .cast-thumbs {
  display: grid;
  gap: 10px;
  align-content: start;
}

#cast .cast-thumbs button {
  width: 52px;
  min-width: 52px;
  aspect-ratio: 3 / 4;
  border: 2px solid #FFFFFF;
  border-radius: 2px;
  background-color: #FFFFFF;
  box-shadow: 0 0 0 1px #E6E2DA;
  opacity: 0.68;
}

#cast .cast-thumbs button.active {
  border-color: #A89573;
  box-shadow: 0 0 0 1px #FFFFFF;
  opacity: 1;
}

@media (max-width: 520px) {
  #cast .cast-gallery {
    grid-template-columns: minmax(0, 1fr) 44px;
    gap: 8px;
    width: 100%;
    padding: 8px;
  }

  #cast .cast-thumbs {
    gap: 8px;
  }

  #cast .cast-thumbs button {
    width: 44px;
    min-width: 44px;
  }
}

/* Keep the precheck explanation close to its choices. */
#reserve .precheck-fieldset {
  gap: 10px;
}

#reserve .precheck-fieldset > .note {
  margin: 0;
}

#reserve .precheck-fieldset > .note:first-of-type {
  margin-top: -8px;
}

#reserve .precheck-fieldset > .note:last-of-type {
  margin-top: 14px;
}

#reserve .precheck-fieldset > .option-grid {
  margin-top: 2px;
}

/* LP cast gallery and first-visit confirmation. */
.lp-cast .lp-cast-grid {
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
}

.lp-cast-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 48px;
  gap: 9px;
  width: min(100%, 680px);
  margin: 0 auto;
  border: 1px solid #E6E2DA;
  background: #FFFFFF;
  padding: 9px;
}

.lp-cast .lp-cast-gallery .cast-image {
  grid-area: auto;
  min-width: 0;
  width: 100%;
  min-height: 0;
  aspect-ratio: 3 / 4;
  border: 0;
  border-radius: 0;
  background-position: 64% center;
  background-size: cover;
}

.lp-cast-thumbs {
  display: grid;
  gap: 8px;
  align-content: start;
  justify-self: end;
}

.lp-cast-thumbs button {
  width: 48px;
  min-width: 48px;
  min-height: 0;
  aspect-ratio: 3 / 4;
  border: 2px solid #FFFFFF;
  border-radius: 2px;
  background-color: #FFFFFF;
  background-position: 64% center;
  background-size: cover;
  box-shadow: 0 0 0 1px #E6E2DA;
  opacity: 0.68;
}

.lp-cast-thumbs button.active {
  border-color: #A89573;
  opacity: 1;
}

.lp-cast .lp-cast-side {
  display: grid;
  gap: 14px;
  width: min(100%, 680px);
  margin: 0 auto;
  padding-top: 0;
}

.lp-cast-profile {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid #E6E2DA;
  padding: 2px 0 13px;
}

.lp-cast-profile h3 {
  margin: 0;
  color: #FFFFFF;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
}

.lp-cast-profile dl {
  display: flex;
  gap: 16px;
  margin: 0;
}

.lp-cast-profile dl div {
  display: grid;
  gap: 3px;
}

.lp-cast-profile dt {
  color: #A89573;
  font-size: 10px;
  font-weight: 400;
}

.lp-cast-profile dd {
  margin: 0;
  color: #F3F1EC;
  font-size: 13px;
  font-weight: 400;
  white-space: nowrap;
}

.lp-cast-confirmation {
  display: grid;
  gap: 7px;
  padding: 8px 0 2px;
}

.lp-cast-confirmation h4 {
  margin: 0;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 500;
}

.lp-cast-confirmation p {
  margin: 0;
  color: #F3F1EC;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.8;
}

@media (max-width: 520px) {
  .lp-cast .lp-cast-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas: none;
  }

  .lp-cast-gallery {
    grid-template-columns: minmax(0, 1fr) 42px;
    gap: 8px;
    padding: 8px;
  }

  .lp-cast .lp-cast-gallery .cast-image {
    grid-area: auto;
  }

  .lp-cast-thumbs button {
    width: 42px;
    min-width: 42px;
  }

  .lp-cast .lp-cast-side {
    display: grid;
  }

  .lp-cast-profile,
  .lp-cast-side .lp-schedule,
  .lp-cast-side > button {
    grid-area: auto;
    margin-top: 0;
  }

  .lp-cast-profile h3 {
    font-size: 22px;
  }
}

/* LP cast section title. */
.lp-cast > h2 {
  display: flex;
  align-items: center;
  gap: 12px;
  width: min(100%, 680px);
  margin: 0 auto 16px;
  color: #FFFFFF;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  font-style: italic;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.04em;
}

.lp-cast > h2::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #A89573;
  opacity: 0.7;
}

@media (max-width: 520px) {
  .lp-cast > h2 {
    margin-bottom: 13px;
    font-size: 20px;
  }
}

/* Cast detail title and profile, aligned with the LP. */
#cast .cast-detail-title {
  display: flex;
  align-items: center;
  gap: 12px;
  width: min(100%, 680px);
  margin: 0 auto 16px;
  color: #FFFFFF;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  font-style: italic;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.04em;
}

#cast .cast-detail-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #A89573;
  opacity: 0.7;
}

#cast .cast-profile-body {
  width: min(100%, 680px);
  margin: 0 auto;
}

.cast-detail-profile {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid #E6E2DA;
  padding-bottom: 13px;
}

#cast .cast-detail-profile h2 {
  margin: 0;
  color: #FFFFFF;
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
}

.cast-detail-profile dl {
  display: flex;
  gap: 16px;
  margin: 0;
}

.cast-detail-profile dl div {
  display: grid;
  gap: 3px;
}

.cast-detail-profile dt {
  color: #A89573;
  font-size: 10px;
  font-weight: 400;
}

.cast-detail-profile dd {
  margin: 0;
  color: #F3F1EC;
  font-size: 13px;
  font-weight: 400;
  white-space: nowrap;
}

@media (max-width: 520px) {
  #cast .cast-detail-title {
    margin-bottom: 13px;
    font-size: 20px;
  }

  #cast .cast-detail-profile h2 {
    font-size: 22px;
  }
}

/* First-time page: calm reassurance before action. */
#first {
  background: #FFFFFF;
}

#first > h2,
#first > .first-reassurance,
#first > .page-reserve-link {
  width: min(100%, 760px);
  margin-right: auto;
  margin-left: auto;
}

.first-reassurance {
  display: grid;
  gap: 38px;
  margin-top: 22px;
}

.first-intro {
  display: grid;
  gap: 14px;
  border-left: 2px solid #A89573;
  background: #FAF9F6;
  padding: 22px 22px 22px 24px;
}

.first-intro p {
  margin: 0;
  color: #555555;
  font-size: 15px;
  line-height: 1.9;
}

.first-intro .first-intro-label {
  color: #1F1F1F;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
}

.first-anxieties {
  display: grid;
  gap: 18px;
}

.first-anxieties h3,
.first-course-note h3 {
  margin: 0;
  color: #1F1F1F;
  font-size: 16px;
  font-weight: 500;
}

.first-anxiety-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid #E6E2DA;
}

.first-anxiety-list span {
  position: relative;
  border-bottom: 1px solid #E6E2DA;
  color: #555555;
  padding: 13px 10px 13px 24px;
  font-size: 13px;
  line-height: 1.65;
}

.first-anxiety-list span::before {
  content: "";
  position: absolute;
  top: 21px;
  left: 7px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #A89573;
}

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

.first-reassurance-grid article {
  display: grid;
  align-content: start;
  gap: 10px;
  border: 1px solid #E6E2DA;
  background: #FFFFFF;
  padding: 20px 18px;
}

.first-reassurance-grid span {
  color: #A89573;
  font-size: 11px;
  font-weight: 500;
}

.first-reassurance-grid h3 {
  margin: 0;
  color: #1F1F1F;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.65;
}

.first-reassurance-grid p,
.first-course-note p {
  margin: 0;
  color: #777777;
  font-size: 13px;
  line-height: 1.85;
}

.first-course-note {
  display: grid;
  gap: 8px;
  border-top: 1px solid #E6E2DA;
  border-bottom: 1px solid #E6E2DA;
  background: #F3F1EC;
  padding: 20px 22px;
}

#first > .page-reserve-link {
  margin-top: 38px;
}

@media (max-width: 640px) {
  .first-reassurance {
    gap: 30px;
  }

  .first-intro {
    padding: 19px 18px 19px 20px;
  }

  .first-intro .first-intro-label {
    font-size: 17px;
  }

  .first-anxiety-list,
  .first-reassurance-grid {
    grid-template-columns: 1fr;
  }

  .first-reassurance-grid {
    gap: 10px;
  }
}

/* Flow detail: six quiet steps with a generous reading rhythm. */
#flow > h2,
#flow > .flow-detail,
#flow > .page-reserve-link {
  width: min(100%, 860px);
  margin-right: auto;
  margin-left: auto;
}

.flow-detail {
  display: grid;
  gap: 34px;
  margin-top: 24px;
}

.flow-detail-intro {
  border-top: 1px solid #E6E2DA;
  border-bottom: 1px solid #E6E2DA;
  padding: 25px 0 27px;
}

.flow-detail-intro p {
  max-width: 620px;
  margin: 0;
  color: #555555;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.9;
}

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

.flow-detail-list article {
  display: grid;
  align-content: start;
  gap: 13px;
  border: 1px solid rgba(230, 226, 218, 0.82);
  background: #FFFFFF;
  padding: 28px 25px 30px;
  box-shadow: none;
}

.flow-detail-number {
  color: rgba(168, 149, 115, 0.72);
  font-size: 10px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.12em;
}

#flow .flow-detail-list h3 {
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #1F1F1F;
  padding: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.7;
}

#flow .flow-detail-list p {
  margin: 0;
  color: #555555;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.9;
}

#flow .flow-detail-list p + p {
  margin-top: 2px;
}

.flow-detail-emphasis {
  color: #74664E;
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: rgba(168, 149, 115, 0.48);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

#flow > .page-reserve-link {
  margin-top: 38px;
}

@media (max-width: 680px) {
  .flow-detail {
    gap: 28px;
    margin-top: 18px;
  }

  .flow-detail-intro {
    padding: 21px 0 23px;
  }

  .flow-detail-intro p {
    font-size: 14px;
  }

  .flow-detail-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .flow-detail-list article {
    padding: 23px 20px 25px;
  }
}

/* Small clarity additions without changing the established composition. */
.app-header .header-location {
  font-size: 13px;
  line-height: 1.2;
}

.app-header .header-location::before {
  color: #FFFFFF;
  opacity: 0.9;
}

.lp-service-description {
  width: min(100%, 680px);
  margin: -2px auto 20px;
  color: rgba(243, 241, 236, 0.82);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.9;
}

.lp-price-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 22px;
}

.lp-price-actions .lp-price-detail-link {
  margin-top: 0;
}

.section-reserve-link {
  justify-self: start;
  width: fit-content;
  min-height: 38px;
  border: 1px solid #CFC5B4;
  border-radius: 3px;
  background: transparent;
  color: #55514A;
  padding: 0 15px;
  font-size: 12px;
  font-weight: 400;
}

.section-reserve-link:hover {
  border-color: #A89573;
  background: #F3F1EC;
  color: #333333;
}

.lp-first-card > .section-reserve-link,
.lp-flow-card > .section-reserve-link,
.lp-faq-card > .section-reserve-link {
  margin-top: 4px;
}

@media (max-width: 600px) {
  .app-header .header-location {
    font-size: 12px;
  }

  .lp-service-description {
    margin-bottom: 16px;
    font-size: 12px;
  }

  .lp-price-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 17px;
  }
}

.result-course-time-note {
  margin: 2px 0 0;
  border-top: 1px solid #E6E2DA;
  padding-top: 15px;
  color: #77736C;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.85;
}

/* Price detail: clear first, restrained throughout. */
#price > h2,
#price > .price-page,
#price > .page-reserve-link {
  width: min(100%, 860px);
  margin-right: auto;
  margin-left: auto;
}

.price-page {
  display: grid;
  gap: 56px;
  margin-top: 20px;
}

.price-time-heading {
  margin: 0 0 -34px;
  color: #2B2925;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
}

.price-page-intro {
  display: grid;
  gap: 16px;
  border: 1px solid rgba(230, 226, 218, 0.82);
  background: #FAF9F6;
  padding: 30px 30px 32px;
}

.price-page-kicker {
  color: #1F1F1F;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
}

.price-page-intro p {
  max-width: 650px;
  margin: 0;
  color: #555555;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.9;
}

.price-page-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 6px;
  border-top: 1px solid #E6E2DA;
}

.price-page-summary div {
  display: grid;
  gap: 5px;
  border-right: 1px solid #E6E2DA;
  padding: 16px 18px 0;
}

.price-page-summary div:first-child {
  padding-left: 0;
}

.price-page-summary div:last-child {
  border-right: 0;
}

.price-page-summary span {
  color: #8A867D;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.6;
}

.price-page-summary strong {
  color: #333333;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.6;
}

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

.price-course-list article {
  position: relative;
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 210px;
  overflow: hidden;
  border: 1px solid rgba(230, 226, 218, 0.88);
  background: #FFFFFF;
  padding: 32px 27px 30px;
  box-shadow: none;
}

.price-course-list article::before {
  content: "";
  position: absolute;
  top: 0;
  right: 27px;
  left: 27px;
  height: 1px;
  background: rgba(168, 149, 115, 0.72);
}

.price-course-list span {
  color: #77736C;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
}

.price-course-list strong {
  color: #1F1F1F;
  font-family: inherit;
  font-size: 20px;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  line-height: 1.45;
  letter-spacing: 0;
}

.price-course-list p {
  margin: auto 0 0;
  border-top: 1px solid rgba(230, 226, 218, 0.72);
  padding-top: 14px;
  color: #8A867D;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.75;
}

.price-page-section {
  display: grid;
  gap: 22px;
}

.price-section-heading {
  display: flex;
  align-items: baseline;
  gap: 12px;
  border-bottom: 1px solid #E6E2DA;
  padding-bottom: 13px;
}

.price-section-heading > span {
  color: rgba(168, 149, 115, 0.74);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.12em;
}

.price-section-heading h3 {
  margin: 0;
  color: #1F1F1F;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.7;
}

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

.price-info-grid article,
.price-extra-list article {
  display: grid;
  align-content: start;
  gap: 12px;
  border: 1px solid rgba(230, 226, 218, 0.82);
  background: #FFFFFF;
  padding: 27px 24px 29px;
  box-shadow: none;
}

.price-page-section h4 {
  position: relative;
  margin: 0;
  color: #333333;
  padding-left: 13px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
}

.price-page-section h4::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(168, 149, 115, 0.76);
}

.price-page-section p {
  margin: 0;
  color: #555555;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.9;
}

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

.price-first-confirmation {
  gap: 15px;
  border: 1px solid rgba(230, 226, 218, 0.82);
  background: #FAF9F6;
  padding: 29px 28px 31px;
}

.price-first-confirmation span {
  color: #74664E;
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: rgba(168, 149, 115, 0.48);
  text-underline-offset: 3px;
}

#price > .page-reserve-link {
  margin-top: 38px;
}

@media (max-width: 680px) {
  .price-page {
    gap: 42px;
    margin-top: 18px;
  }

  .price-page-intro {
    gap: 15px;
    padding: 24px 20px 26px;
  }

  .price-page-intro p {
    font-size: 14px;
  }

  .price-course-list {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .price-course-list article {
    grid-template-columns: 64px 1fr;
    gap: 4px 14px;
    min-height: 0;
    border: 1px solid rgba(230, 226, 218, 0.88);
    padding: 23px 20px 22px;
  }

  .price-course-list article::before {
    right: 20px;
    left: 20px;
  }

  .price-course-list strong {
    justify-self: end;
    font-size: 18px;
  }

  .price-course-list p {
    grid-column: 1 / -1;
    margin-top: 12px;
  }

  .price-info-grid,
  .price-extra-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .price-info-grid article,
  .price-extra-list article {
    padding: 22px 20px 24px;
  }

  .price-first-confirmation {
    padding: 22px 20px 24px;
  }

  .price-page-summary {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .price-page-summary div,
  .price-page-summary div:first-child {
    grid-template-columns: 94px 1fr;
    gap: 10px;
    border-right: 0;
    border-bottom: 1px solid rgba(230, 226, 218, 0.72);
    padding: 12px 0;
  }

.price-page-summary div:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }
}

/* Public launch polish: quieter surfaces and lighter reading density. */
body[data-screen="age"] .age-hero h2 {
  max-width: 560px;
  font-size: clamp(25px, 5vw, 35px);
  line-height: 1.55;
}

.lp-cast,
.cast-profile {
  background: #3B443E;
}

.lp-cast-gallery,
#cast .cast-gallery {
  border-color: rgba(230, 226, 218, 0.72);
  background: #F7F5F0;
  padding: 11px;
}

.lp-cast .lp-cast-gallery .cast-image,
#cast .cast-main-photo {
  background-color: #F7F5F0;
}

.lp-cast-profile,
#cast .cast-detail-profile {
  border-bottom-color: rgba(230, 226, 218, 0.3);
}

.lp-cast-confirmation p,
.lp-cast-confirmation li span,
#cast .initial-confirmation p,
#cast .initial-confirmation li span {
  color: rgba(243, 241, 236, 0.82);
}

.lp-price-card .lp-mini-price-list .standard {
  position: relative;
  border-color: #D9D1C2;
  background: #FAF9F6;
}

.lp-price-card .lp-mini-price-list .standard::before {
  content: "";
  position: absolute;
  top: 11px;
  bottom: 11px;
  left: 0;
  width: 2px;
  background: rgba(168, 149, 115, 0.72);
}

.price-course-list .price-course-primary {
  border-color: #D9D1C2;
  background: #FAF9F6;
}

.price-course-list .price-course-primary::before {
  height: 2px;
  background: rgba(168, 149, 115, 0.82);
}

.price-info-grid {
  gap: 0;
  border-top: 1px solid #E6E2DA;
  border-bottom: 1px solid #E6E2DA;
}

.price-info-grid article {
  min-height: 180px;
  border: 0;
  border-right: 1px solid #E6E2DA;
  background: transparent;
  padding: 27px 25px 29px;
}

.price-info-grid article:last-child {
  border-right: 0;
}

.form-layout {
  width: min(100%, 860px);
  margin: 0 auto;
  gap: 13px;
  padding-top: 36px;
}

#reserve .form-head {
  margin-bottom: 22px;
}

.form-area-intro {
  display: grid;
  gap: 7px;
  border-top: 1px solid #E6E2DA;
  border-bottom: 1px solid #E6E2DA;
  background: #FAF9F6;
  padding: 19px 20px 20px;
}

.form-area-intro span {
  color: #8A867D;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.5;
}

.form-area-intro p {
  margin: 0;
  color: #444440;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.8;
}

.form-group-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 34px 0 5px;
  color: #77736C;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.08em;
}

.form-group-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #E6E2DA;
}

#reserve fieldset {
  border-color: rgba(230, 226, 218, 0.88);
  border-radius: 3px;
  padding: 27px 24px 29px;
  box-shadow: none;
}

#reserve legend {
  color: #333333;
  padding: 0 7px;
  font-size: 14px;
  font-weight: 500;
}

#reserve .option-card,
#reserve .time-button,
#reserve input,
#reserve select,
#reserve textarea {
  border-radius: 3px;
}

#reserve .option-card {
  min-height: 62px;
  border-color: rgba(230, 226, 218, 0.88);
  padding: 16px 15px;
  color: #444440;
  font-size: 13px;
  line-height: 1.65;
}

#reserve .course-card small {
  display: block;
  grid-column: 1 / -1;
  color: #8A8176;
  font-size: 11px;
  line-height: 1.6;
}

#reserve .course-card {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr) max-content;
  align-items: center;
  column-gap: 10px;
  row-gap: 5px;
}

#reserve .course-card input {
  grid-column: 1;
  grid-row: 1;
}

#reserve label.option-card input,
#reserve label.location-check input,
#reserve label.agreement-confirm input {
  pointer-events: none;
}

#reserve .course-card > span {
  grid-column: 2;
  grid-row: 1;
  white-space: nowrap;
}

#reserve .course-card > strong {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  margin-left: 0;
  color: #2b2925;
  font-size: 15px;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  line-height: 1.35;
  white-space: nowrap;
}

#reserve .course-card > small {
  grid-column: 2 / 4;
  grid-row: 2;
}

#reserve .option-card:has(input:checked),
#reserve .option-card.is-selected,
#reserve .location-check.is-selected,
#reserve .agreement-confirm.is-selected,
#reserve .time-button.active {
  border-color: #CFC5B4;
  background: #F3F1EC;
  color: #333333;
}

#reserve .note {
  margin-top: 16px;
  border-left: 1px solid rgba(168, 149, 115, 0.58);
  padding-left: 13px;
  color: #77736C;
  font-size: 12px;
  line-height: 1.95;
}

.station-selected-label {
  margin: 0 0 16px;
  padding: 12px 13px;
  border: 1px solid rgba(230, 226, 218, 0.9);
  background: #fffdf9;
  color: #4a4640;
  font-size: 13px;
  line-height: 1.7;
}

.station-kana-groups {
  display: grid;
  gap: 18px;
}

.station-kana-group {
  display: grid;
  gap: 9px;
}

.station-kana-group h4 {
  margin: 0;
  color: #8a8176;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

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

.station-chip {
  min-height: 40px;
  padding: 8px 11px;
  border: 1px solid rgba(230, 226, 218, 0.92);
  border-radius: 3px;
  background: #fffdf9;
  color: #4a4640;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.45;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.station-field-help {
  margin-bottom: 13px;
}

.station-chip.is-selected {
  border-color: #cfc5b4;
  background: #f3f1ec;
  color: #333333;
}

.station-chip:focus-visible {
  outline: 2px solid rgba(178, 161, 125, 0.35);
  outline-offset: 2px;
}

#reserve .form-help {
  display: block;
  margin-top: 7px;
  color: #8A867D;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.75;
}

#reserve .field .form-help + textarea {
  margin-top: 12px;
}

#reserve .precheck-fieldset > .note:first-of-type {
  margin-top: -4px;
}

#reserve .checks {
  gap: 14px;
}

#reserve .agreement-items {
  display: grid;
  gap: 9px;
  padding-left: 20px;
  color: #77736C;
  font-size: 12px;
  line-height: 1.85;
}

#reserve .checks .agreement-confirm {
  margin-top: 20px;
  border-top: 1px solid #E6E2DA;
  padding-top: 18px;
  color: #333333;
  font-size: 13px;
  line-height: 1.75;
}

#terms .terms-body h3,
#faq .detail-body h3,
#cancelPolicy .detail-body h3,
#reserveInfo .detail-body h3 {
  margin-top: 38px;
  border-bottom: 1px solid #E6E2DA;
  background: transparent;
  color: #1F1F1F;
  padding: 0 0 12px;
  font-size: 15px;
  font-weight: 500;
}

#terms .terms-body p,
#terms .terms-body li,
#faq .detail-body p,
#cancelPolicy .detail-body p,
#reserveInfo .detail-body p {
  font-size: 14px;
  line-height: 1.95;
}

#terms .terms-body ul {
  gap: 11px;
  padding-top: 21px;
  padding-bottom: 21px;
}

@media (max-width: 680px) {
  .lp-cast-gallery,
  #cast .cast-gallery {
    padding: 8px;
  }

  .price-info-grid {
    grid-template-columns: 1fr;
  }

  .price-info-grid article {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid #E6E2DA;
    padding: 23px 20px 25px;
  }

  .price-info-grid article:last-child {
    border-bottom: 0;
  }

  .form-layout {
    gap: 10px;
    padding: 26px 12px 118px;
  }

  #reserve .form-head {
    align-items: start;
    margin-bottom: 17px;
  }

  .form-area-intro {
    padding: 17px 16px 18px;
  }

  .form-group-label {
    margin-top: 30px;
  }

  #reserve fieldset {
    padding: 23px 16px 25px;
  }

  #reserve .option-card {
    min-height: 58px;
    padding: 15px 13px;
  }

  #terms .terms-body h3,
  #faq .detail-body h3,
  #cancelPolicy .detail-body h3,
  #reserveInfo .detail-body h3 {
    margin-top: 32px;
  }
}

/* Cast name signature shared by LP and detail. */
.lp-cast-profile h3,
#cast .cast-detail-profile h2 {
  position: relative;
  padding-left: 13px;
  color: #F7F4EE;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", "Times New Roman", serif;
  font-size: 27px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.12em;
}

.lp-cast-profile h3::after,
#cast .cast-detail-profile h2::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 1px;
  background: rgba(178, 161, 125, 0.72);
}

@media (max-width: 520px) {
  .lp-cast-profile h3,
  #cast .cast-detail-profile h2 {
    padding-left: 12px;
    font-size: 25px;
    letter-spacing: 0.1em;
  }
}

/* Stable LP cast reservation button. */
.lp-cast .lp-cast-side > button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  width: auto;
  min-width: 168px;
  min-height: 48px;
  border: 1px solid #A89573;
  border-radius: 3px;
  background: #FFFFFF;
  color: #2F332F;
  padding: 0 20px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  white-space: nowrap;
}

.lp-cast .lp-cast-side > button:hover {
  border-color: #FFFFFF;
  background: #F3F1EC;
  color: #2F332F;
}

@media (max-width: 520px) {
  .lp-cast .lp-cast-side > button {
    justify-self: stretch;
    width: 100%;
    min-width: 0;
  }
}

/* Finished header composition. */
.app-header,
body[data-screen="age"] .app-header {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  min-height: 68px;
  padding: 0 18px;
  background: #A89573;
}

.app-header > div {
  justify-self: end;
}

.app-header h1 {
  margin: 0;
}

.app-header .brand-logo {
  width: 82px;
}

.app-header .menu-toggle {
  justify-self: start;
  width: 40px;
  height: 40px;
  border-right: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 0;
  padding-right: 10px;
}

.app-header .menu-toggle span {
  width: 20px;
}

.app-header .header-location {
  display: grid;
  gap: 4px;
  justify-self: start;
  flex: none;
  margin: 0;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.04em;
  text-align: left;
}

.app-header .header-location::before {
  content: "AREA";
  color: #F3F1EC;
  font-size: 8px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.16em;
  opacity: 0.78;
}

body[data-screen="age"] .app-header {
  grid-template-columns: minmax(0, 1fr) auto;
}

body[data-screen="age"] .header-location {
  justify-self: start;
}

@media (max-width: 390px) {
  .app-header,
  body[data-screen="age"] .app-header {
    gap: 10px;
    padding: 0 14px;
  }

  .app-header .brand-logo {
    width: 74px;
  }

  .app-header .header-location {
    font-size: 11px;
  }
}

/* Separate, quiet header for the age confirmation screen. */
body[data-screen="age"] .app-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 76px;
  padding: 0 24px;
  border-bottom: 1px solid #E6E2DA;
  background: #2F332F;
}

body[data-screen="age"] .header-location,
body[data-screen="age"] .app-header nav {
  display: none;
}

body[data-screen="age"] .app-header > div {
  justify-self: auto;
}

body[data-screen="age"] .app-header h1 {
  display: block;
  margin: 0;
}

body[data-screen="age"] .app-header .brand-logo {
  width: 92px;
}

@media (max-width: 390px) {
  body[data-screen="age"] .app-header {
    min-height: 70px;
    padding: 0 20px;
  }

  body[data-screen="age"] .app-header .brand-logo {
    width: 84px;
  }
}

/* Readable first-visit confirmation details. */
.initial-confirmation {
  display: grid;
  gap: 12px;
  border-top: 1px solid rgba(168, 149, 115, 0.72);
  padding-top: 17px;
}

.initial-confirmation :where(h3, h4) {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: #F3F1EC;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}

.initial-confirmation :where(h3, h4)::before {
  content: "";
  width: 18px;
  height: 1px;
  background: #A89573;
  flex: 0 0 auto;
}

.initial-confirmation > p {
  margin: -3px 0 0 28px;
  color: #F3F1EC;
  font-size: 12px;
  line-height: 1.8;
}

.initial-confirmation ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.initial-confirmation li {
  display: grid;
  grid-template-columns: minmax(92px, 0.38fr) minmax(0, 1fr);
  gap: 12px;
  border-top: 1px solid rgba(230, 226, 218, 0.22);
  padding: 11px 0;
}

.initial-confirmation li:last-child {
  border-bottom: 1px solid rgba(230, 226, 218, 0.22);
}

.initial-confirmation li strong {
  color: #A89573;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.7;
}

.initial-confirmation li span {
  color: #F3F1EC;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.75;
}

@media (max-width: 420px) {
  .initial-confirmation li {
    grid-template-columns: 1fr;
    gap: 3px;
  }
}

/* Age confirmation page. */
body[data-screen="age"] #age {
  background: #FAF9F6;
}

body[data-screen="age"] .age-hero {
  min-height: calc(100svh - 76px);
  align-items: center;
  padding: 42px 24px;
  background:
    linear-gradient(90deg, rgba(24, 25, 23, 0.9) 0%, rgba(24, 25, 23, 0.7) 42%, rgba(24, 25, 23, 0.28) 72%, rgba(24, 25, 23, 0.12) 100%),
    url("./assets/age-background.png") 62% 42% / cover no-repeat;
}

body[data-screen="age"] .age-content {
  display: grid;
  gap: 20px;
  width: min(100%, 520px);
  padding: 0;
}

body[data-screen="age"] .age-eyebrow {
  margin: 0;
  color: #A89573;
  font-size: 9px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.18em;
}

body[data-screen="age"] .age-hero h2 {
  margin: 0;
  color: #FFFFFF;
  font-size: clamp(26px, 6vw, 38px);
  font-weight: 400;
  line-height: 1.55;
}

.age-eligibility {
  display: grid;
  gap: 8px;
  border-left: 1px solid #A89573;
  padding-left: 16px;
}

body[data-screen="age"] .age-eligibility p {
  margin: 0;
  color: #F3F1EC;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.85;
}

.age-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

body[data-screen="age"] .age-enter,
body[data-screen="age"] .age-exit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin: 0;
  border-radius: 3px;
  padding: 0 18px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
}

body[data-screen="age"] .age-enter {
  border: 1px solid #FFFFFF;
  background: #FFFFFF;
  color: #2F332F;
}

body[data-screen="age"] .age-exit {
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: transparent;
  color: #FFFFFF;
}

body[data-screen="age"] .age-enter:hover {
  background: #F3F1EC;
  color: #2F332F;
}

body[data-screen="age"] .age-exit:hover {
  border-color: #FFFFFF;
  background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 520px) {
  body[data-screen="age"] .age-hero {
    min-height: calc(100svh - 70px);
    align-items: end;
    padding: 38px 20px 46px;
    background:
      linear-gradient(0deg, rgba(24, 25, 23, 0.94) 0%, rgba(24, 25, 23, 0.68) 46%, rgba(24, 25, 23, 0.18) 78%, rgba(24, 25, 23, 0.08) 100%),
      url("./assets/age-background.png") 65% center / cover no-repeat;
  }

  body[data-screen="age"] .age-content {
    gap: 17px;
  }

  body[data-screen="age"] .age-hero h2 {
    font-size: 27px;
    line-height: 1.5;
  }

  .age-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  body[data-screen="age"] .age-enter,
  body[data-screen="age"] .age-exit {
    width: 100%;
  }
}

/* Quiet LP introduction for first-time guests. */
.lp-first-card {
  gap: 26px;
}

.lp-first-intro {
  display: grid;
  gap: 14px;
  max-width: 650px;
}

.lp-first-card .lp-first-intro p {
  margin: 0;
  color: #555555;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.95;
}

.lp-first-card .lp-first-points {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 2px;
}

.lp-first-card .lp-first-points article {
  gap: 12px;
  min-height: 190px;
  align-content: start;
  border: 1px solid rgba(230, 226, 218, 0.72);
  background: #FFFFFF;
  padding: 25px 23px;
  box-shadow: none;
}

.lp-first-card .lp-first-points span {
  color: rgba(168, 149, 115, 0.72);
  font-size: 10px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.12em;
}

.lp-first-card .lp-first-points h3 {
  margin: 0;
  color: #1F1F1F;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
}

.lp-first-card .lp-first-points p {
  margin: 0;
  color: #555555;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.9;
}

@media (max-width: 600px) {
  .lp-first-card {
    gap: 22px;
  }

  .lp-first-card .lp-first-intro p {
    font-size: 14px;
  }

  .lp-first-card .lp-first-points {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .lp-first-card .lp-first-points article {
    min-height: 0;
    padding: 22px 20px;
  }
}

/* Quiet LP FAQ cards. */
.lp-faq-card {
  gap: 28px;
  min-height: 0;
  padding-top: 42px;
  padding-bottom: 46px;
}

.lp-faq-card > h2 {
  margin: 0;
}

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

.lp-faq-list article {
  display: grid;
  align-content: start;
  gap: 11px;
  min-height: 190px;
  border: 1px solid rgba(230, 226, 218, 0.78);
  background: #FFFFFF;
  padding: 25px 23px 27px;
  box-shadow: none;
}

.lp-faq-list article:last-child {
  grid-column: 1 / -1;
  min-height: 0;
}

.lp-faq-list span {
  color: rgba(168, 149, 115, 0.72);
  font-size: 10px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.12em;
}

.lp-faq-card .lp-faq-list h3 {
  margin: 0;
  color: #1F1F1F;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.7;
}

.lp-faq-card .lp-faq-list p {
  margin: 0;
  color: #555555;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.9;
}

@media (max-width: 600px) {
  .lp-faq-card {
    gap: 22px;
    padding-top: 34px;
    padding-bottom: 38px;
  }

  .lp-faq-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .lp-faq-list article,
  .lp-faq-list article:last-child {
    grid-column: auto;
    min-height: 0;
    padding: 22px 20px 24px;
  }
}

/* Quiet LP booking flow. */
.lp-flow-card {
  gap: 28px;
  padding-top: 42px;
  padding-bottom: 46px;
}

.lp-flow-card > h2 {
  margin: 0;
}

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

.lp-flow-card .lp-flow-list article {
  display: grid;
  align-content: start;
  gap: 11px;
  min-height: 200px;
  border: 1px solid rgba(230, 226, 218, 0.78);
  border-radius: 0;
  background: #FFFFFF;
  padding: 25px 23px 27px;
  box-shadow: none;
}

.lp-flow-card .lp-flow-list article:last-child {
  grid-column: 1 / -1;
  min-height: 0;
}

.lp-flow-card .lp-flow-list > article > span {
  color: rgba(168, 149, 115, 0.72);
  font-size: 10px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.12em;
}

.lp-flow-card .lp-flow-list h3 {
  margin: 0;
  color: #1F1F1F;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.7;
}

.lp-flow-card .lp-flow-list p {
  margin: 0;
  color: #555555;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.9;
}

.lp-flow-card .flow-time {
  color: #74664E;
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: rgba(168, 149, 115, 0.48);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

@media (max-width: 600px) {
  .lp-flow-card {
    gap: 22px;
    padding-top: 34px;
    padding-bottom: 38px;
  }

  .lp-flow-card .lp-flow-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .lp-flow-card .lp-flow-list article,
  .lp-flow-card .lp-flow-list article:last-child {
    grid-column: auto;
    min-height: 0;
    padding: 22px 20px 24px;
  }
}

/* First-time detail: a quiet guide, not an emotional pitch. */
#first > h2,
#first > .first-reassurance,
#first > .page-reserve-link {
  width: min(100%, 820px);
}

.first-reassurance {
  gap: 44px;
  margin-top: 28px;
}

.first-intro {
  gap: 18px;
  border: 0;
  border-top: 1px solid #E6E2DA;
  border-bottom: 1px solid #E6E2DA;
  background: #FFFFFF;
  padding: 29px 0 31px;
}

.first-intro p {
  max-width: 650px;
  color: #555555;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.9;
}

.first-intro .first-intro-label {
  color: #333333;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.65;
}

.first-anxieties {
  gap: 20px;
}

.first-anxieties h3,
.first-preparation-note h3,
.first-course-note h3,
.first-booking-note h3 {
  color: #1F1F1F;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.7;
}

.first-anxiety-list {
  gap: 0 24px;
  border-color: rgba(230, 226, 218, 0.82);
}

.first-anxiety-list span {
  border-color: rgba(230, 226, 218, 0.82);
  color: #555555;
  padding-top: 15px;
  padding-bottom: 15px;
  font-size: 14px;
  line-height: 1.75;
}

.first-anxiety-list span::before {
  top: 24px;
  width: 4px;
  height: 4px;
  background: rgba(168, 149, 115, 0.74);
}

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

.first-reassurance-grid article {
  gap: 12px;
  min-height: 230px;
  border-color: rgba(230, 226, 218, 0.78);
  padding: 27px 24px 29px;
  box-shadow: none;
}

.first-reassurance-grid span {
  color: rgba(168, 149, 115, 0.72);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.12em;
}

.first-reassurance-grid h3 {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.7;
}

.first-reassurance-grid p,
.first-preparation-note p,
.first-course-note p,
.first-booking-note p {
  margin: 0;
  color: #555555;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.9;
}

.first-reassurance-grid article p + p {
  margin-top: 5px;
  color: #77736C;
  font-size: 13px;
}

.first-preparation-note {
  display: grid;
  gap: 8px;
  border: 1px solid rgba(230, 226, 218, 0.72);
  background: #FFFDF9;
  padding: 22px 24px 24px;
}

.first-preparation-note h3 {
  margin: 0 0 2px;
}

.first-course-note,
.first-booking-note {
  display: grid;
  gap: 10px;
  border: 0;
  border-top: 1px solid #E6E2DA;
  border-bottom: 1px solid #E6E2DA;
  background: #FAF9F6;
  padding: 25px 26px 27px;
}

.first-booking-note {
  gap: 14px;
  background: #FFFFFF;
}

.first-booking-note h3 {
  margin: 0 0 2px;
}

.first-booking-note span {
  color: #74664E;
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: rgba(168, 149, 115, 0.48);
  text-underline-offset: 3px;
}

@media (max-width: 640px) {
  .first-reassurance {
    gap: 34px;
    margin-top: 20px;
  }

  .first-intro {
    gap: 15px;
    padding: 23px 0 25px;
  }

  .first-intro p {
    font-size: 14px;
  }

  .first-intro .first-intro-label {
    font-size: 18px;
  }

  .first-anxiety-list,
  .first-reassurance-grid {
    grid-template-columns: 1fr;
  }

  .first-reassurance-grid article {
    min-height: 0;
    padding: 23px 20px 25px;
  }

  .first-course-note,
  .first-preparation-note,
  .first-booking-note {
    padding: 22px 20px 24px;
  }
}

/* Calm, comparison-first LP pricing. */
.lp-price-card {
  gap: 0;
  padding-top: 42px;
  padding-bottom: 42px;
}

.lp-price-intro {
  display: grid;
  gap: 12px;
  max-width: 620px;
  margin-bottom: 34px;
}

.lp-price-card .lp-price-intro h2,
.lp-price-card .lp-price-intro p {
  margin: 0;
}

.lp-price-card .lp-price-intro p {
  color: #555555;
  font-size: 14px;
  line-height: 1.9;
}

.lp-price-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
}

.lp-price-card .lp-price-heading h3 {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
}

.lp-price-heading span {
  color: #8A867D;
  font-size: 11px;
  font-weight: 400;
}

.lp-price-card .lp-mini-price-list {
  margin: 0;
  border-color: rgba(230, 226, 218, 0.9);
  border-radius: 3px;
  background: #FFFFFF;
}

.lp-price-card .lp-mini-price-list div,
.lp-price-card .lp-mini-price-list .standard {
  grid-template-columns: 70px minmax(110px, 0.8fr) minmax(180px, 1.5fr);
  align-items: center;
  gap: 18px;
  min-height: 78px;
  padding: 17px 20px;
  background: #FFFFFF;
  border-color: rgba(230, 226, 218, 0.9);
}

.lp-price-card .lp-mini-price-list span {
  color: #555555;
  font-size: 14px;
  font-weight: 400;
}

.lp-price-card .lp-mini-price-list strong {
  color: #1F1F1F;
  font-size: 18px;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}

.lp-price-card .lp-mini-price-list small {
  grid-column: auto;
  color: #8A867D;
  font-size: 12px;
  line-height: 1.7;
}

.lp-price-card .lp-price-note {
  margin: 18px 0 0;
  color: #77736C;
  font-size: 12px;
  line-height: 1.9;
}

.lp-price-detail-link {
  width: fit-content;
  margin-top: 22px;
  border: 0;
  border-bottom: 1px solid #A89573;
  border-radius: 0;
  background: transparent;
  padding: 3px 0 6px;
  color: #55514A;
  font-size: 12px;
  font-weight: 400;
}

.lp-price-detail-link:hover {
  color: #1F1F1F;
  border-bottom-color: #2F332F;
  background: transparent;
}

@media (max-width: 600px) {
  .lp-price-card {
    padding-top: 34px;
    padding-bottom: 36px;
  }

  .lp-price-intro {
    gap: 10px;
    margin-bottom: 28px;
  }

  .lp-price-card .lp-mini-price-list div,
  .lp-price-card .lp-mini-price-list .standard {
    grid-template-columns: 62px 1fr;
    gap: 3px 14px;
    min-height: 0;
    padding: 17px 16px 16px;
  }

  .lp-price-card .lp-mini-price-list strong {
    justify-self: end;
    font-size: 17px;
  }

  .lp-price-card .lp-mini-price-list small {
    grid-column: 1 / -1;
    margin-top: 5px;
  }
}

/* Quiet mobile navigation for the primary reservation path. */
.mobile-bottom-nav {
  display: none;
}

.availability-note {
  margin-top: 14px;
  max-width: 560px;
}

@media (max-width: 760px) {
  body:not([data-screen="age"]):not([data-screen="admin"]):not([data-screen="confirm"]):not([data-screen="complete"]):not([data-screen="pending"]) {
    padding-bottom: calc(62px + env(safe-area-inset-bottom));
  }

  .mobile-bottom-nav {
    position: fixed;
    z-index: 40;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    min-height: calc(58px + env(safe-area-inset-bottom));
    border-top: 1px solid #E6E2DA;
    background: rgba(250, 249, 246, 0.97);
    padding: 0 5px env(safe-area-inset-bottom);
  }

  .mobile-bottom-nav button {
    position: relative;
    min-width: 0;
    min-height: 58px;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #77736C;
    padding: 8px 3px 7px;
    font-size: 10px;
    font-weight: 400;
    line-height: 1.3;
    white-space: nowrap;
  }

  .mobile-bottom-nav button::before {
    content: "";
    position: absolute;
    top: 7px;
    left: 50%;
    width: 14px;
    height: 1px;
    background: transparent;
    transform: translateX(-50%);
  }

  .mobile-bottom-nav button.active {
    color: #2F332F;
  }

  .mobile-bottom-nav button.active::before {
    background: #A89573;
  }

  .mobile-bottom-nav .mobile-bottom-reserve {
    color: #2F332F;
    font-weight: 500;
  }

  body[data-screen="age"] .mobile-bottom-nav,
  body[data-screen="admin"] .mobile-bottom-nav,
  body[data-screen="confirm"] .mobile-bottom-nav,
  body[data-screen="complete"] .mobile-bottom-nav,
  body[data-screen="pending"] .mobile-bottom-nav {
    display: none;
  }

  #availabilitySelection {
    scroll-margin-top: 86px;
  }
}

@media (max-width: 360px) {
  .mobile-bottom-nav button {
    font-size: 9px;
  }
}

/* Compact two-week availability calendar for cast introductions. */
.lp-schedule,
.cast-shift-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
  width: 100%;
  overflow: visible;
  border: 0;
  background: transparent;
  padding: 0;
}

.mini-availability-head,
.mini-availability-calendar,
.mini-availability-legend,
.mini-availability-note,
.mini-availability-action {
  grid-column: 1;
  width: 100%;
}

.mini-availability-head {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(243, 241, 236, 0.9);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
}

.mini-availability-head::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(230, 226, 218, 0.2);
}

.mini-availability-calendar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
  width: 100%;
  padding: 0;
}

.mini-calendar-day {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  border: 1px solid rgba(230, 226, 218, 0.24);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.035);
  padding: 8px 10px;
  color: rgba(243, 241, 236, 0.9);
}

.mini-calendar-date,
.mini-calendar-status {
  color: inherit;
  font-weight: 400;
  line-height: 1.4;
  white-space: nowrap;
}

.mini-calendar-date {
  font-size: 10px;
}

.mini-calendar-status {
  color: rgba(243, 241, 236, 0.62);
  font-size: 9px;
  text-align: center;
}

.mini-calendar-day.open {
  border-color: rgba(181, 161, 117, 0.42);
  background: rgba(255, 253, 249, 0.055);
}

.mini-calendar-day.open .mini-calendar-status {
  color: #FFFDF9;
  font-weight: 500;
}

.mini-calendar-day.closed .mini-calendar-status {
  color: rgba(207, 197, 180, 0.9);
}

.mini-calendar-day.off .mini-calendar-status {
  color: rgba(243, 241, 236, 0.48);
}

.mini-availability-note {
  margin: 0;
  color: rgba(243, 241, 236, 0.68);
  font-size: 10px;
  font-weight: 400;
  line-height: 1.7;
  white-space: normal;
}

.mini-availability-empty {
  display: grid;
  gap: 4px;
  width: 100%;
  border: 1px solid rgba(226, 220, 210, 0.24);
  border-radius: 3px;
  background: rgba(255, 253, 249, 0.04);
  padding: 12px;
  color: rgba(247, 244, 238, 0.78);
}

.mini-availability-empty p {
  margin: 0;
  color: inherit;
  font-size: 10px;
  line-height: 1.7;
}

.mini-availability-legend {
  display: grid;
  gap: 4px;
  margin: 0;
  color: #B9B0A4;
  font-size: 9px;
  font-weight: 400;
  line-height: 1.6;
}

.mini-availability-legend span {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 7px;
}

.mini-availability-legend strong {
  color: #D8D0C4;
  font-size: inherit;
  font-weight: 500;
  white-space: nowrap;
}

.mini-availability-note {
  border-top: 1px solid rgba(230, 226, 218, 0.16);
  padding-top: 9px;
}

.mini-availability-action {
  display: block;
}

.lp-schedule .mini-availability-cta,
.cast-shift-box .mini-availability-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  flex: 0 0 auto;
  width: auto;
  min-width: 0;
  min-height: 32px;
  border: 1px solid rgba(243, 241, 236, 0.56);
  border-radius: 3px;
  background: transparent;
  color: #F3F1EC;
  padding: 0 11px;
  font-size: 9px;
  font-weight: 400;
  line-height: 1.3;
  white-space: nowrap;
}

.lp-schedule .mini-availability-cta:hover,
.cast-shift-box .mini-availability-cta:hover {
  border-color: rgba(243, 241, 236, 0.82);
  background: rgba(255, 255, 255, 0.06);
  color: #F3F1EC;
}

@media (max-width: 760px) {
  .lp-schedule,
  .cast-shift-box {
    margin-bottom: 14px;
  }

  .lp-schedule .mini-availability-cta,
  .cast-shift-box .mini-availability-cta {
    min-height: 32px;
  }
}

@media (max-width: 360px) {
  .mini-calendar-day {
    gap: 6px;
    padding-right: 8px;
    padding-left: 8px;
  }

  .mini-calendar-date {
    font-size: 9px;
  }
}

/* Short reassurance note beneath cast introductions. */
.cast-confirmation-brief {
  gap: 11px;
  border-top-color: rgba(230, 226, 218, 0.24);
  padding-top: 16px;
}

.cast-confirmation-brief > p {
  margin: 0;
  color: rgba(243, 241, 236, 0.74);
  font-size: 11px;
  font-weight: 400;
  line-height: 1.85;
}

.cast-confirmation-brief dl {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 18px;
  margin: 1px 0 0;
  border-top: 1px solid rgba(230, 226, 218, 0.18);
  padding-top: 10px;
}

.cast-confirmation-brief dl div {
  display: flex;
  align-items: baseline;
  gap: 7px;
}

.cast-confirmation-brief dt,
.cast-confirmation-brief dd {
  margin: 0;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.6;
}

.cast-confirmation-brief dt {
  color: rgba(168, 149, 115, 0.92);
}

.cast-confirmation-brief dd {
  color: rgba(243, 241, 236, 0.72);
}

/* Cast detail as a quiet final check before reservation. */
#cast .cast-profile-body {
  display: grid;
  gap: 24px;
  padding-bottom: 54px;
}

#cast .cast-detail-profile {
  align-items: start;
}

#cast .cast-detail-profile dl {
  flex-wrap: wrap;
  justify-content: flex-end;
}

#cast .cast-detail-profile .cast-detail-area {
  flex-basis: 100%;
  align-items: end;
  text-align: right;
}

.cast-detail-reserve {
  justify-self: start;
  min-height: 44px;
  border: 1px solid rgba(243, 241, 236, 0.58);
  border-radius: 3px;
  background: transparent;
  color: #F3F1EC;
  padding: 0 18px;
  font-size: 11px;
  font-weight: 400;
}

.cast-detail-reserve:hover {
  border-color: rgba(243, 241, 236, 0.84);
  background: rgba(255, 255, 255, 0.06);
}

.cast-detail-intro {
  display: grid;
  gap: 7px;
  border-top: 1px solid rgba(230, 226, 218, 0.2);
  border-bottom: 1px solid rgba(230, 226, 218, 0.2);
  padding: 19px 0 20px;
}

#cast .cast-detail-intro p {
  margin: 0;
  color: rgba(243, 241, 236, 0.76);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.85;
}

#cast .cast-detail-intro p:first-child {
  color: #F3F1EC;
  font-size: 13px;
}

.cast-detail-section {
  display: grid;
  gap: 14px;
  border-top: 1px solid rgba(230, 226, 218, 0.22);
  padding-top: 18px;
}

#cast .cast-detail-section h3 {
  margin: 0;
  color: rgba(243, 241, 236, 0.92);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
}

.cast-detail-price > div {
  display: grid;
  grid-template-columns: repeat(3, auto 1fr);
  gap: 8px 11px;
  align-items: baseline;
}

.cast-detail-price span,
.cast-detail-price strong {
  font-size: 11px;
  font-weight: 400;
  line-height: 1.6;
  white-space: nowrap;
}

.cast-detail-price span {
  color: rgba(168, 149, 115, 0.94);
}

.cast-detail-price strong {
  color: rgba(243, 241, 236, 0.78);
}

.cast-before-use ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cast-before-use li {
  position: relative;
  margin: 0;
  color: rgba(243, 241, 236, 0.68);
  padding-left: 12px;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.85;
}

.cast-before-use li::before {
  content: "";
  position: absolute;
  top: 0.82em;
  left: 0;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(168, 149, 115, 0.8);
}

@media (max-width: 520px) {
  #cast .cast-profile-body {
    gap: 21px;
    padding-bottom: 84px;
  }

  #cast .cast-detail-profile {
    display: grid;
    gap: 13px;
  }

  #cast .cast-detail-profile dl {
    justify-content: start;
  }

  #cast .cast-detail-profile .cast-detail-area {
    flex-basis: auto;
    align-items: start;
    text-align: left;
  }

  .cast-detail-reserve {
    justify-self: stretch;
    width: 100%;
  }

  .cast-detail-price > div {
    grid-template-columns: auto 1fr;
    gap: 7px 16px;
  }
}

/* Cast-only palette: softer, gray-leaning deep green. */
.lp-cast,
.cast-profile {
  background-color: #323D36;
}

.lp-cast :where(h2, h3, h4),
#cast :where(h2, h3, h4),
.lp-cast-profile dd,
.cast-detail-profile dd {
  color: #F7F4EE;
}

.lp-cast :where(p, li),
#cast :where(p, li),
.mini-availability-note,
.cast-before-use li,
.cast-confirmation-brief dd {
  color: #B9B2A5;
}

.lp-cast-profile dt,
.cast-detail-profile dt,
.cast-confirmation-brief dt,
.cast-detail-price span {
  color: #B5A175;
}

.lp-cast-gallery,
#cast .cast-gallery {
  border-color: rgba(111, 116, 104, 0.7);
  background-color: #2B342F;
}

.lp-cast .lp-cast-gallery .cast-image,
#cast .cast-main-photo {
  background-color: #2B342F;
}

.lp-cast-thumbs button,
#cast .cast-thumbs button {
  border-color: #2B342F;
  background-color: #2B342F;
  box-shadow: 0 0 0 1px rgba(111, 116, 104, 0.72);
}

.lp-cast-thumbs button.active,
#cast .cast-thumbs button.active {
  border-color: #B5A175;
  box-shadow: 0 0 0 1px #2B342F;
}

.lp-cast-profile,
#cast .cast-detail-profile,
.cast-detail-intro,
.cast-detail-section,
.cast-confirmation-brief,
.mini-availability-note {
  border-color: rgba(111, 116, 104, 0.58);
}

.mini-calendar-day {
  border-color: rgba(111, 116, 104, 0.66);
  background-color: rgba(43, 52, 47, 0.58);
  color: #F7F4EE;
}

.mini-calendar-day.open {
  border-color: rgba(181, 161, 117, 0.48);
  background-color: rgba(43, 52, 47, 0.82);
}

.mini-calendar-day.closed .mini-calendar-status,
.mini-calendar-day.off .mini-calendar-status,
.mini-availability-legend {
  color: #B9B2A5;
}

.lp-cast .mini-availability-cta,
#cast .mini-availability-cta,
.cast-detail-reserve {
  border-color: rgba(111, 116, 104, 0.94);
  background-color: #2B342F;
  color: #F7F4EE;
}

.lp-cast .mini-availability-cta:hover,
#cast .mini-availability-cta:hover,
.cast-detail-reserve:hover {
  border-color: #B5A175;
  background-color: #323D36;
  color: #FFFFFF;
}

/* Quiet cast photo framing: keep the image primary. */
.lp-cast-gallery,
#cast .cast-gallery {
  border: 1px solid rgba(247, 244, 238, 0.35);
  border-radius: 0;
  background: transparent;
  padding: 4px;
  box-shadow: none;
}

.lp-cast .lp-cast-gallery .cast-image,
#cast .cast-main-photo {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.lp-cast-thumbs,
#cast .cast-thumbs {
  gap: 6px;
}

.lp-cast-thumbs button,
#cast .cast-thumbs button {
  border: 1px solid rgba(247, 244, 238, 0.32);
  border-radius: 0;
  background-color: transparent;
  box-shadow: none;
  opacity: 0.72;
}

.lp-cast-thumbs button.active,
#cast .cast-thumbs button.active {
  border-color: rgba(181, 161, 117, 0.78);
  background-color: transparent;
  box-shadow: none;
  opacity: 1;
}

/* Low-saturation ink palette for the cast area. */
.lp-cast,
.cast-profile {
  background-color: #3A3832;
}

.lp-cast :where(h2, h3, h4),
#cast :where(h2, h3, h4),
.lp-cast-profile dd,
.cast-detail-profile dd,
.mini-calendar-day.open .mini-calendar-status {
  color: #FFFDF9;
}

.lp-cast :where(p, li),
#cast :where(p, li),
.mini-availability-note,
.mini-availability-legend,
.cast-before-use li,
.cast-confirmation-brief dd,
.mini-calendar-day.closed .mini-calendar-status,
.mini-calendar-day.off .mini-calendar-status {
  color: #B9B0A4;
}

.lp-cast-profile dt,
.cast-detail-profile dt,
.cast-confirmation-brief dt,
.cast-detail-price span {
  color: #B2A17D;
}

/* Quiet SEO introduction and area guide. */
.lp-seo-intro {
  padding: 42px 24px 38px;
  background: #FFFDF9;
  border-bottom: 1px solid #E2DCD2;
}

.lp-seo-intro > * {
  width: min(100%, 920px);
  margin-right: auto;
  margin-left: auto;
}

.lp-seo-eyebrow,
.lp-area-eyebrow {
  color: #8A8176;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.lp-seo-intro h1 {
  margin-top: 12px;
  color: #2B2925;
  font-size: clamp(21px, 4vw, 28px);
  font-weight: 500;
  line-height: 1.5;
}

.lp-seo-intro > p:not(.lp-seo-eyebrow),
.lp-seo-body {
  margin-top: 18px;
}

.lp-seo-body {
  display: grid;
  gap: 10px;
  max-width: 680px;
}

.lp-seo-body p {
  margin: 0;
  color: #4A4640;
  font-size: 14px;
  line-height: 1.85;
  text-wrap: pretty;
}

.lp-internal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 24px;
}

.lp-internal-links a {
  padding-bottom: 3px;
  border-bottom: 1px solid #E2DCD2;
  color: #4A4640;
  font-size: 12px;
  line-height: 1.5;
  text-decoration: none;
}

.lp-internal-links a:hover {
  border-color: #B2A17D;
  color: #2B2925;
}

.lp-area-card {
  scroll-margin-top: 84px;
}

.lp-area-card .lp-area-eyebrow {
  margin-bottom: 8px;
}

.lp-area-regions {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.lp-area-regions div {
  display: grid;
  gap: 7px;
  border: 1px solid rgba(226, 220, 210, 0.88);
  background: rgba(255, 253, 249, 0.58);
  padding: 13px 14px;
  border-radius: 3px;
}

.lp-area-regions strong {
  color: #2B2925;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
}

.lp-area-regions span {
  color: #4A4640;
  font-size: 12px;
  line-height: 1.85;
}

.lp-area-card .lp-note {
  margin-top: 14px;
  color: #8A8176;
  font-size: 12px;
}

@media (max-width: 600px) {
  .lp-seo-intro {
    padding: 34px 20px 30px;
  }

  .lp-seo-intro h1 {
    font-size: 20px;
  }

  .lp-internal-links {
    gap: 10px 16px;
  }
}

/* Give cast portraits more presence without turning them into promotional posters. */
.lp-cast-gallery,
#cast .cast-gallery {
  grid-template-columns: minmax(0, 1fr) 46px;
  gap: 8px;
  width: min(100%, 760px);
  padding: 3px;
}

.lp-cast-thumbs button,
#cast .cast-thumbs button {
  width: 46px;
  min-width: 46px;
}

.lp-cast .lp-cast-grid {
  gap: 22px;
}

.lp-cast .lp-cast-side,
#cast .cast-profile-body {
  width: min(100%, 760px);
  margin-right: auto;
  margin-left: auto;
}

@media (max-width: 520px) {
  .lp-cast-gallery,
  #cast .cast-gallery {
    grid-template-columns: minmax(0, 1fr) 40px;
    gap: 7px;
    width: min(92vw, 360px);
    padding: 3px;
  }

  .lp-cast-thumbs,
  #cast .cast-thumbs {
    gap: 6px;
  }

  .lp-cast-thumbs button,
  #cast .cast-thumbs button {
    width: 40px;
    min-width: 40px;
  }

  .lp-cast .lp-cast-grid {
    gap: 20px;
  }
}

/* Keep the final form questions calm and easy to scan. */
#reserve .agreement-fieldset,
#reserve .optional-notes-fieldset {
  padding-top: 22px;
  padding-bottom: 23px;
}

#reserve .agreement-fieldset .checks {
  gap: 0;
}

#reserve .agreement-fieldset .agreement-items {
  gap: 7px;
  margin: 0;
  padding-left: 18px;
  color: #8A8176;
  font-size: 12px;
  line-height: 1.82;
}

#reserve .agreement-fieldset .agreement-items li::marker {
  color: #B2A17D;
  font-size: 0.72em;
}

#reserve .agreement-fieldset .agreement-confirm {
  margin-top: 14px;
  border-top-color: rgba(226, 220, 210, 0.72);
  padding-top: 14px;
  color: #4A4640;
  font-size: 12px;
  line-height: 1.7;
}

#reserve .agreement-fieldset .agreement-confirm input {
  width: 18px;
  height: 18px;
}

#reserve .optional-notes-fieldset .field {
  color: #4A4640;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.7;
}

#reserve .optional-notes-fieldset .form-help {
  margin-top: 5px;
  color: #8A8176;
  font-size: 11px;
  line-height: 1.75;
}

#reserve .optional-notes-fieldset .field .form-help + textarea {
  min-height: 88px;
  margin-top: 10px;
}

/* Detail-page closing action: keep it close to the calm LP reserve links. */
.simple-page > .page-reserve-link {
  width: fit-content;
  min-height: 38px;
  border: 1px solid #CFC5B4;
  border-radius: 3px;
  background: transparent;
  color: #55514A;
  padding: 0 15px;
  box-shadow: none;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.45;
}

.simple-page > .page-reserve-link:hover {
  border-color: #A89573;
  background: #F3F1EC;
  color: #333333;
  box-shadow: none;
}

@media (max-width: 520px) {
  #reserve .agreement-fieldset,
  #reserve .optional-notes-fieldset {
    padding: 20px 15px 21px;
  }

  #reserve .agreement-fieldset .agreement-items {
    padding-left: 16px;
    font-size: 11.5px;
  }
}

/* FAQ question and answer hierarchy. */
.lp-faq-card .lp-faq-list h3 {
  margin-bottom: 10px;
  color: #35322E;
  font-weight: 500;
}

.lp-faq-card .lp-faq-list p {
  color: #756F66;
}

#faq .faq-body p:has(strong) {
  color: #756F66;
  line-height: 2;
}

#faq .faq-body p strong {
  display: inline-block;
  margin-bottom: 8px;
  color: #35322E;
  font-weight: 500;
  line-height: 1.8;
}

.lp-cast-gallery,
#cast .cast-gallery {
  border-color: rgba(226, 220, 210, 0.42);
  background-color: transparent;
}

.lp-cast .lp-cast-gallery .cast-image,
#cast .cast-main-photo {
  background-color: #3A3832;
}

.lp-cast-thumbs button,
#cast .cast-thumbs button {
  border-color: rgba(226, 220, 210, 0.34);
  background-color: transparent;
}

.lp-cast-thumbs button.active,
#cast .cast-thumbs button.active {
  border-color: rgba(178, 161, 125, 0.78);
}

.lp-cast-profile,
#cast .cast-detail-profile,
.cast-detail-intro,
.cast-detail-section,
.cast-confirmation-brief,
.mini-availability-note {
  border-color: rgba(226, 220, 210, 0.28);
}

.mini-calendar-day {
  border-color: rgba(226, 220, 210, 0.3);
  background-color: rgba(52, 52, 47, 0.38);
  color: #FFFDF9;
}

.mini-calendar-day.open {
  border-color: rgba(178, 161, 125, 0.52);
  background-color: rgba(52, 52, 47, 0.72);
}

.lp-cast .mini-availability-cta,
#cast .mini-availability-cta,
.cast-detail-reserve {
  border-color: rgba(226, 220, 210, 0.44);
  background-color: #34342F;
  color: #FFFFFF;
}

.lp-cast .mini-availability-cta:hover,
#cast .mini-availability-cta:hover,
.cast-detail-reserve:hover {
  border-color: #B2A17D;
  background-color: #3A3832;
  color: #FFFFFF;
}

/* Quiet header mark. */
.app-header .brand-logo {
  width: 74px;
  opacity: 0.9;
}

body[data-screen="age"] .app-header .brand-logo {
  width: 82px;
  opacity: 0.92;
}

@media (max-width: 390px) {
  .app-header .brand-logo {
    width: 70px;
  }

  body[data-screen="age"] .app-header .brand-logo {
    width: 78px;
  }
}

/* Final cast ink-color adjustment. */
.lp-cast,
.cast-profile {
  background-color: #3A3832;
}

.lp-cast :where(h2, h3, h4),
#cast :where(h2, h3, h4),
.lp-cast-profile dd,
.cast-detail-profile dd,
.mini-calendar-day,
.mini-calendar-day.open .mini-calendar-status {
  color: #F7F4EE;
}

.lp-cast :where(p, li),
#cast :where(p, li),
.mini-availability-note,
.mini-availability-legend,
.cast-before-use li,
.cast-confirmation-brief dd,
.mini-calendar-day.closed .mini-calendar-status,
.mini-calendar-day.off .mini-calendar-status {
  color: #B9B2A5;
}

.lp-cast-profile,
#cast .cast-detail-profile,
.cast-detail-intro,
.cast-detail-section,
.cast-confirmation-brief,
.mini-availability-note,
.mini-calendar-day {
  border-color: rgba(111, 106, 95, 0.62);
}

.lp-cast-profile dt,
.cast-detail-profile dt,
.cast-confirmation-brief dt,
.cast-detail-price span {
  color: #B2A17D;
}

/* Final cast gallery proportions: portrait first, right thumbnails retained. */
.lp-cast-gallery,
#cast .cast-gallery {
  grid-template-columns: minmax(0, 86fr) minmax(38px, 11fr);
  gap: 9px;
  width: min(100%, 820px);
  padding: 3px;
}

.lp-cast-thumbs,
#cast .cast-thumbs {
  display: grid;
  align-content: start;
  gap: 7px;
  min-width: 0;
}

.lp-cast-thumbs button,
#cast .cast-thumbs button {
  width: 100%;
  min-width: 0;
  border-width: 1px;
  border-radius: 0;
  box-shadow: none;
}

.lp-cast-thumbs button:nth-child(n + 4),
#cast .cast-thumbs button:nth-child(n + 4) {
  display: none;
}

.lp-cast-thumbs button:not(.active),
#cast .cast-thumbs button:not(.active) {
  opacity: 0.56;
}

.lp-cast-thumbs button.active,
#cast .cast-thumbs button.active {
  border-color: rgba(178, 161, 125, 0.7);
  opacity: 0.92;
}

/* Slightly clearer cast availability states without adding strong colors. */
.mini-calendar-day.open {
  border-color: rgba(178, 161, 125, 0.68);
  background-color: rgba(255, 253, 249, 0.075);
}

.mini-calendar-day.open .mini-calendar-status {
  color: #F7F4EE;
  font-weight: 500;
}

.mini-calendar-day.closed {
  border-color: rgba(111, 106, 95, 0.56);
  background-color: rgba(255, 253, 249, 0.045);
}

.mini-calendar-day.closed .mini-calendar-status {
  color: rgba(217, 208, 191, 0.86);
  font-weight: 400;
}

.mini-calendar-day.off {
  border-color: rgba(111, 106, 95, 0.34);
  background-color: rgba(255, 253, 249, 0.025);
}

.mini-calendar-day.off .mini-calendar-date,
.mini-calendar-day.off .mini-calendar-status {
  color: rgba(185, 178, 165, 0.58);
}

@media (max-width: 520px) {
  .lp-cast-gallery,
  #cast .cast-gallery {
    grid-template-columns: minmax(0, 86fr) minmax(36px, 11fr);
    gap: 8px;
    width: min(96vw, 400px);
    padding: 2px;
  }

  .lp-cast-thumbs,
  #cast .cast-thumbs {
    gap: 6px;
  }
}

/* Cast detail reading order: introduction, portrait, essentials, then guidance. */
#cast .cast-detail-title {
  margin-bottom: 8px;
}

#cast .cast-detail-lead {
  width: min(100%, 820px);
  margin: 0 auto 22px;
  color: #B9B2A5;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.8;
}

#cast .cast-gallery {
  margin-bottom: 26px;
}

#cast .cast-profile-body {
  gap: 22px;
}

#cast .cast-detail-profile {
  margin-bottom: 0;
  padding-bottom: 17px;
}

.cast-detail-support {
  border: 0;
  padding: 0;
}

#cast .cast-detail-support p {
  margin: 0;
  color: #B9B2A5;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.9;
}

#cast .cast-detail-reserve {
  margin-top: -2px;
}

#cast .cast-shift-box {
  margin-top: 8px;
  border-top: 1px solid rgba(111, 106, 95, 0.62);
  padding-top: 20px;
}

#cast .cast-confirmation-brief,
#cast .cast-detail-section {
  margin-top: 2px;
}

#cast .cast-detail-section-label {
  margin: -7px 0 0;
  color: #B9B2A5;
  font-size: 9px;
  font-weight: 400;
  line-height: 1.6;
}

@media (max-width: 520px) {
  #cast .cast-detail-lead {
    width: min(96vw, 400px);
    margin-bottom: 18px;
    font-size: 11px;
  }

  #cast .cast-gallery {
    margin-bottom: 22px;
  }

  #cast .cast-profile-body {
    gap: 20px;
  }
}

/* Area guide: calm location information rather than a directory table. */
.area-detail-page {
  background: #FFFDF9;
}

.detail-page-kicker {
  margin: 0 0 8px;
  color: #8A8176;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.area-detail-body {
  display: grid;
  gap: 34px;
  margin-top: 28px;
}

.area-detail-intro,
.area-detail-note {
  display: grid;
  gap: 9px;
  color: #4A4640;
  font-size: 14px;
  line-height: 1.9;
}

.area-detail-section {
  display: grid;
  gap: 18px;
  border-top: 1px solid #E2DCD2;
  padding-top: 24px;
}

.area-detail-section h3 {
  margin: 0;
  color: #2B2925;
  font-size: 15px;
  font-weight: 500;
}

.area-section-note {
  margin: 0;
  color: #8A8176;
  font-size: 13px;
  line-height: 1.8;
}

.area-station-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.area-station-kana-groups {
  display: grid;
  gap: 18px;
}

.area-station-kana-group {
  display: grid;
  gap: 9px;
}

.area-kana-label {
  margin: 0;
  color: #8A8176;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.area-station-list span {
  border: 1px solid rgba(226, 220, 210, 0.95);
  background: rgba(255, 253, 249, 0.84);
  padding: 8px 12px;
  border-radius: 3px;
  color: #4A4640;
  font-size: 13px;
  line-height: 1.5;
  white-space: nowrap;
}

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

.area-place-list article {
  display: grid;
  gap: 8px;
  border: 1px solid #E2DCD2;
  padding: 17px 16px;
  background: #FFFDF9;
}

.area-place-list span {
  color: #B2A17D;
  font-size: 9px;
}

.area-place-list p {
  color: #4A4640;
  font-size: 13px;
  line-height: 1.7;
}

.area-detail-note {
  border-top: 1px solid #E2DCD2;
  padding-top: 22px;
  color: #8A8176;
  font-size: 12px;
}

.detail-page-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.detail-page-actions .page-reserve-link {
  margin-top: 0;
}

.page-reserve-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 38px;
  margin: 22px auto 0;
  border: 1px solid #CFC5B4;
  border-radius: 3px;
  background: transparent;
  color: #55514A;
  padding: 0 15px;
  box-shadow: none;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.45;
}

.page-reserve-link:hover {
  border-color: #A89573;
  background: #F3F1EC;
  color: #333333;
  box-shadow: none;
  transform: none;
}

.page-area-link,
.form-area-link {
  border: 0;
  border-bottom: 1px solid #B2A17D;
  background: transparent;
  color: #4A4640;
  padding: 5px 0;
  font-size: 11px;
  font-weight: 400;
  text-decoration: none;
  cursor: pointer;
}

.form-area-link {
  justify-self: start;
  margin-top: 3px;
}

.area-public-page {
  min-height: 100vh;
  background: #FAF9F6;
  color: #4A4640;
}

.area-public-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background: #A99A86;
  padding: 0 20px;
}

.area-public-header img {
  width: 74px;
}

.area-public-header span {
  color: #F7F4EE;
  font-size: 11px;
}

.area-public-main {
  width: min(100% - 32px, 760px);
  margin: 0 auto;
  padding: 48px 0 90px;
}

.area-public-main h1 {
  margin: 0;
  color: #2B2925;
  font-size: clamp(25px, 5vw, 34px);
  font-weight: 500;
  line-height: 1.45;
}

.area-public-main .area-detail-section h2 {
  margin: 0;
  color: #2B2925;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
}

.area-public-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 30px;
  border-top: 1px solid #E2DCD2;
  padding-top: 20px;
}

.area-public-nav a {
  color: #8A8176;
  font-size: 11px;
  text-decoration: none;
}

.area-public-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 32px;
  border-radius: 4px;
  background: #3A3832;
  color: #F7F4EE;
  padding: 0 22px;
  font-size: 13px;
  text-decoration: none;
}

@media (max-width: 520px) {
  .area-detail-body {
    gap: 28px;
  }

  .area-place-list {
    grid-template-columns: 1fr;
  }

  .detail-page-actions {
    display: grid;
    justify-items: center;
  }
}

/* Keep right-side cast thumbnails fully inside the gallery on every viewport. */
.lp-cast-gallery,
#cast .cast-gallery {
  box-sizing: border-box;
  grid-template-columns: minmax(0, 1fr) clamp(40px, 11%, 62px);
  width: 100%;
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
  overflow: visible;
}

.lp-cast .lp-cast-gallery .cast-image,
#cast .cast-main-photo {
  min-width: 0;
}

.lp-cast-thumbs,
#cast .cast-thumbs {
  width: 100%;
  min-width: 0;
  justify-self: stretch;
}

.lp-cast-thumbs button,
#cast .cast-thumbs button {
  box-sizing: border-box;
  max-width: 100%;
}

.area-seo-note {
  color: #8A8176;
  font-size: 12px;
}

@media (max-width: 520px) {
  .lp-cast-gallery,
  #cast .cast-gallery {
    grid-template-columns: minmax(0, 1fr) 38px;
    gap: 8px;
    width: 100%;
    max-width: 400px;
  }
}

/* Inset the gallery so the right thumbnail rail never touches or leaves the viewport. */
.lp-cast-gallery,
#cast .cast-gallery {
  grid-template-columns: minmax(0, 1fr) 42px;
  gap: 8px;
  width: calc(100% - 24px);
  max-width: 760px;
}

.lp-cast-thumbs button,
#cast .cast-thumbs button {
  width: 42px;
  min-width: 0;
}

@media (max-width: 520px) {
  .lp-cast-gallery,
  #cast .cast-gallery {
    grid-template-columns: minmax(0, 1fr) 34px;
    gap: 7px;
    width: calc(100% - 20px);
    max-width: 380px;
  }

  .lp-cast-thumbs button,
  #cast .cast-thumbs button {
    width: 34px;
  }
}

/* Mobile cast portrait: prominent, with calm site margins around the gallery. */
@media (max-width: 520px) {
  .lp-cast-gallery,
  #cast .cast-gallery {
    position: relative;
    left: 50%;
    grid-template-columns: minmax(0, 1fr) 34px;
    gap: 7px;
    width: calc(100vw - 36px);
    max-width: 400px;
    margin: 12px 0 24px;
    padding: 4px;
    transform: translateX(-50%);
  }

  .lp-cast .lp-cast-gallery .cast-image,
  #cast .cast-main-photo {
    width: 100%;
    height: min(62svh, 600px);
    min-height: 400px;
    aspect-ratio: auto;
  }

  .lp-cast-thumbs,
  #cast .cast-thumbs {
    width: 34px;
  }
}

/* Location confirmation MVP */
.location-page {
  min-height: 100vh;
  background: #faf9f6;
  color: #4a4640;
  font-family: "Hiragino Sans", "Yu Gothic", "Meiryo", system-ui, sans-serif;
  line-height: 1.8;
}

.location-page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px clamp(18px, 5vw, 44px);
  background: #a99a86;
  border-bottom: 1px solid rgba(255, 253, 249, 0.28);
}

.location-brand {
  display: inline-flex;
  align-items: center;
  width: 74px;
}

.location-brand img {
  display: block;
  width: 100%;
  height: auto;
}

.location-page-header p {
  color: #fffdf9;
  font-size: 13px;
  letter-spacing: 0.06em;
}

.location-main {
  display: grid;
  gap: 18px;
  width: min(100%, 760px);
  margin: 0 auto;
  padding: clamp(28px, 7vw, 58px) clamp(18px, 5vw, 34px) 72px;
}

.location-intro {
  display: grid;
  gap: 16px;
  padding: 6px 0 10px;
}

.location-page h1,
.location-page h2,
.location-page h3 {
  color: #2b2925;
  font-weight: 500;
  letter-spacing: 0;
}

.location-page [hidden] {
  display: none !important;
}

.location-page h1 {
  font-size: clamp(25px, 7vw, 34px);
  line-height: 1.35;
}

.location-page h2 {
  font-size: 18px;
  line-height: 1.5;
}

.location-page h3 {
  font-size: 13px;
}

.location-intro p:not(.detail-page-kicker),
.location-section-head p,
.location-small-note,
.location-note-box,
.location-copy-status,
.location-error {
  color: #8a8176;
  font-size: 13px;
}

.location-card {
  display: grid;
  gap: 18px;
  padding: clamp(18px, 5vw, 28px);
  background: #fffdf9;
  border: 1px solid #e2dcd2;
  border-radius: 4px;
  box-shadow: none;
}

.location-section-head {
  display: grid;
  gap: 10px;
}

.location-summary-list {
  display: grid;
  gap: 0;
  margin: 0;
  border-top: 1px solid #e2dcd2;
}

.location-summary-list div {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid #e2dcd2;
}

.location-summary-list dt {
  color: #8a8176;
  font-size: 12px;
}

.location-summary-list dd {
  margin: 0;
  color: #2b2925;
  font-size: 14px;
}

.location-map-shell {
  overflow: hidden;
  border: 1px solid #e2dcd2;
  border-radius: 3px;
  background: #f3f0ea;
}

.location-map {
  width: 100%;
  height: min(58vh, 420px);
  min-height: 320px;
}

.location-map .leaflet-control-attribution,
.location-map .leaflet-control-attribution a {
  color: #8a8176;
  font-size: 10px;
}

.awai-location-marker {
  display: grid;
  place-items: center;
}

.awai-location-marker span {
  display: block;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 253, 249, 0.9);
  border-radius: 999px;
  background: #3a3832;
  box-shadow: 0 0 0 4px rgba(178, 161, 125, 0.22);
}

.location-map-fallback {
  display: grid;
  min-height: 260px;
  place-items: center;
  padding: 28px;
  color: #8a8176;
  text-align: center;
}

.location-map-actions,
.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.location-page .primary-action,
.location-page .secondary-action {
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  box-shadow: none;
}

.location-page .primary-action {
  border: 1px solid #34342f;
  background: #34342f;
  color: #f7f4ee;
}

.location-page .secondary-action {
  border: 1px solid #e2dcd2;
  background: #fffdf9;
  color: #4a4640;
}

.location-selected {
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid #e2dcd2;
  background: #faf9f6;
}

.location-selected p,
.location-selected a {
  color: #4a4640;
  font-size: 13px;
}

.location-selected a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.location-note-box {
  padding: 14px;
  border: 1px solid #e2dcd2;
  background: #f4f1eb;
}

.location-fallback {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid #e2dcd2;
  background: #faf9f6;
}

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

.location-fields {
  display: grid;
  gap: 14px;
}

.location-current-place {
  display: grid;
  gap: 5px;
  margin: 0 0 18px;
  padding: 13px 14px;
  border: 1px solid #e2dcd2;
  background: #fffdf9;
  color: #8a8176;
  font-size: 12px;
  line-height: 1.6;
}

.location-current-place strong {
  color: #2b2925;
  font-size: 14px;
  font-weight: 500;
}

.location-place-change-card {
  gap: 16px;
}

.location-station-change-card {
  gap: 16px;
}

.location-place-change-summary {
  display: grid;
  gap: 0;
  margin: 0;
  border-top: 1px solid #e2dcd2;
}

.location-place-change-summary div {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid #e2dcd2;
}

.location-place-change-summary dt {
  color: #8a8176;
  font-size: 12px;
}

.location-place-change-summary dd {
  margin: 0;
  color: #2b2925;
  font-size: 14px;
  line-height: 1.7;
}

.location-place-change-notice {
  display: grid;
  gap: 6px;
  padding: 13px 14px;
  border: 1px solid rgba(178, 161, 125, 0.35);
  background: rgba(178, 161, 125, 0.09);
  color: #4a4640;
  font-size: 13px;
  line-height: 1.75;
}

.location-place-change-notice p {
  margin: 0;
}

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

.location-mode-option {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 9px;
  align-items: center;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid #e2dcd2;
  border-radius: 3px;
  background: #fffdf9;
  color: #4a4640;
  font-size: 13px;
  line-height: 1.5;
  cursor: pointer;
}

.location-mode-option input {
  width: 15px;
  height: 15px;
  accent-color: #3a3832;
}

.location-station-chip-panel {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid #e2dcd2;
  background: #faf9f6;
}

.location-station-chip-panel > p {
  margin: 0;
  color: #8a8176;
  font-size: 12px;
  line-height: 1.7;
}

.location-selected-station {
  color: #4a4640 !important;
}

.location-station-chip-groups {
  display: grid;
  gap: 13px;
}

.location-station-chip-group {
  display: grid;
  gap: 8px;
}

.location-station-chip-group h3 {
  margin: 0;
  color: #8a8176;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
}

.location-station-chip-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.location-station-chip {
  min-height: 38px;
  padding: 8px 10px;
  border: 1px solid #e2dcd2;
  border-radius: 3px;
  background: #fffdf9;
  color: #4a4640;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
  cursor: pointer;
  box-shadow: none;
}

.location-station-chip.is-selected {
  border-color: rgba(178, 161, 125, 0.7);
  background: rgba(178, 161, 125, 0.12);
  color: #2b2925;
}

.location-inline-error {
  margin: 0;
  color: #8b5f55 !important;
  font-size: 12px;
  line-height: 1.7;
}

.location-field,
.location-coordinate-inputs label {
  display: grid;
  gap: 7px;
  color: #4a4640;
  font-size: 13px;
}

.location-field-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.location-field-label span,
.location-field-label small {
  color: #8a8176;
  font-size: 11px;
  font-weight: 400;
}

.location-field input,
.location-field select,
.location-field textarea,
.location-coordinate-inputs input,
.copy-fallback-text {
  width: 100%;
  border: 1px solid #e2dcd2;
  border-radius: 3px;
  background: #fffdf9;
  color: #2b2925;
  font-size: 15px;
  line-height: 1.7;
  box-shadow: none;
}

.location-field input,
.location-field select,
.location-coordinate-inputs input {
  min-height: 44px;
  padding: 10px 12px;
}

.location-field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #8a8176 50%),
    linear-gradient(135deg, #8a8176 50%, transparent 50%);
  background-position: calc(100% - 18px) 20px, calc(100% - 13px) 20px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.location-field-help {
  margin: 0;
  color: #8a8176;
  font-size: 12px;
  line-height: 1.7;
}

.location-field textarea,
.copy-fallback-text {
  padding: 11px 12px;
  resize: vertical;
}

.location-check {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  margin-top: 6px;
  color: #4a4640;
  font-size: 13px;
  line-height: 1.7;
}

.location-check input {
  width: 16px;
  height: 16px;
  margin-top: 4px;
  accent-color: #3a3832;
}

.location-error {
  min-height: 1.6em;
  color: #8b5f55;
}

.location-copy-status {
  min-height: 1.6em;
}

.copy-fallback-text {
  min-height: 220px;
}

.location-confirmation-preview {
  display: grid;
  gap: 12px;
  margin: 6px 0 12px;
  padding: 14px;
  border: 1px solid #e2dcd2;
  background: #faf9f6;
}

.location-confirmation-link {
  width: fit-content;
  color: #34342f;
  font-size: 13px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.location-confirmation-preview summary {
  cursor: pointer;
  color: #8a8176;
  font-size: 12px;
}

.location-confirmation-preview p {
  color: #8a8176;
  font-size: 12px;
  line-height: 1.7;
}

.location-confirmation-preview pre {
  overflow: auto;
  max-height: 240px;
  margin: 10px 0 0;
  white-space: pre-wrap;
  color: #4a4640;
  font-size: 12px;
  line-height: 1.7;
}

.location-debug-panel {
  background: #f4f1eb;
}

.location-debug-switcher {
  border-style: dashed;
  background: #faf9f6;
}

.location-debug-button-grid,
.location-debug-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.location-debug-button-grid button,
.location-debug-links a {
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid #e2dcd2;
  border-radius: 4px;
  background: #fffdf9;
  color: #4a4640;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
  text-decoration: none;
}

.location-debug-button-grid button.is-active,
.location-debug-links a:hover {
  border-color: #b2a17d;
  background: #f4f1eb;
}

.location-debug-links {
  padding-top: 4px;
  border-top: 1px solid #e2dcd2;
}

.location-debug-links p {
  flex-basis: 100%;
  margin: 0;
  color: #8a8176;
  font-size: 12px;
}

.location-debug-panel summary {
  cursor: pointer;
  color: #4a4640;
  font-size: 13px;
}

.location-debug-panel p {
  margin-top: 10px;
  color: #8a8176;
  font-size: 12px;
}

.location-debug-panel pre {
  overflow: auto;
  max-height: 360px;
  margin: 12px 0 0;
  padding: 14px;
  border: 1px solid #e2dcd2;
  background: #fffdf9;
  color: #4a4640;
  font-size: 12px;
  line-height: 1.6;
  white-space: pre-wrap;
}

.form-section-help {
  margin: -8px 0 2px;
  color: #8a8176;
  font-size: 13px;
  line-height: 1.8;
}

.repeat-placeholder-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 1.4em;
  color: #4a4640;
  font-size: 14px;
  line-height: 1.8;
}

.repeat-main {
  max-width: 760px;
}

.repeat-page [hidden] {
  display: none !important;
}

.repeat-form {
  display: grid;
  gap: 18px;
}

.repeat-fieldset {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  border: 0;
}

.repeat-fieldset legend {
  margin-bottom: 2px;
  color: #2b2925;
  font-size: 14px;
  font-weight: 500;
}

.repeat-course-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.repeat-option-stack,
.repeat-option-grid {
  margin-top: 0;
}

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

.repeat-same-note {
  margin: 8px 0 0;
  color: #8a8176;
  font-size: 13px;
  line-height: 1.8;
}

.repeat-changed-panel {
  display: grid;
  gap: 16px;
  margin-top: 12px;
  padding: 16px;
  border: 1px solid rgba(226, 220, 210, 0.9);
  background: #fffdf9;
}

.repeat-subsection {
  display: grid;
  gap: 10px;
}

.repeat-sub-label {
  margin: 0;
  color: #2b2925;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.6;
}

.repeat-registered-email,
.repeat-changed-email {
  display: grid;
  gap: 9px;
  padding: 14px;
  border: 1px solid #e2dcd2;
  background: #faf9f6;
}

.repeat-registered-email span,
.repeat-changed-email p {
  color: #8a8176;
  font-size: 12px;
  line-height: 1.75;
}

.repeat-registered-email strong {
  color: #2b2925;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.repeat-email-toggle {
  margin-top: 12px;
}

.repeat-changed-email {
  margin-top: 12px;
}

.repeat-page .repeat-course-grid {
  grid-template-columns: 1fr;
  gap: 8px;
}

.repeat-page .repeat-course-grid .course-option {
  display: grid;
  grid-template-columns: 20px minmax(58px, 0.42fr) minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 12px 14px;
}

.repeat-page .repeat-course-grid .course-option input {
  grid-column: 1;
  justify-self: center;
  align-self: center;
  width: 16px;
  height: 16px;
  margin: 0;
}

.repeat-page .repeat-course-grid .course-option span,
.repeat-page .repeat-course-grid .course-option strong {
  align-self: center;
  line-height: 1.4;
}

.repeat-page .repeat-course-grid .course-option span {
  grid-column: 2;
}

.repeat-page .repeat-course-grid .course-option strong {
  grid-column: 3;
  justify-self: end;
  text-align: right;
  white-space: nowrap;
}

.repeat-agreement-items {
  margin-bottom: 16px;
  color: #4a4640;
  font-size: 13px;
  line-height: 1.75;
}

.repeat-submit-card,
.repeat-confirm-card,
.repeat-complete-card {
  background: #fffdf9;
}

.repeat-confirm-card h2,
.repeat-complete-card h2 {
  margin-bottom: 14px;
  color: #2b2925;
  font-size: 20px;
  font-weight: 500;
}

.repeat-complete-card p {
  color: #4a4640;
  font-size: 14px;
  line-height: 1.8;
}

.confirm-actions {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 10px;
  margin-top: 18px;
}

@media (max-width: 520px) {
  .location-main {
    padding-bottom: 54px;
  }

  .location-summary-list div {
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 12px;
  }

  .location-map {
    min-height: 300px;
    height: 48vh;
  }

  .location-map-actions,
  .location-actions,
  .location-coordinate-inputs {
    grid-template-columns: 1fr;
  }

  .location-map-actions,
  .location-actions {
    display: grid;
  }

  .repeat-course-grid,
  .repeat-mode-grid,
  .confirm-actions {
    grid-template-columns: 1fr;
  }

  .repeat-page .repeat-course-grid .course-option {
    grid-template-columns: 20px minmax(54px, 0.45fr) minmax(0, 1fr);
    gap: 10px;
  }
}

/* Final pre-release polish: keep the current tone, only soften reading flow. */
.lp-seo-intro + .lp-cast {
  margin-top: clamp(18px, 5vw, 34px);
}

#cast .cast-confirmation-brief,
#cast .cast-detail-section {
  border: 1px solid #E2DCD2;
  background: #FFFDF9;
  padding: 18px;
}

#cast .cast-confirmation-brief h3,
#cast .cast-detail-section h3 {
  color: #2B2925;
}

#cast .cast-confirmation-brief p,
#cast .cast-confirmation-brief dd,
#cast .cast-detail-section p,
#cast .cast-detail-section li,
#cast .cast-detail-price strong {
  color: #4A4640;
}

#cast .cast-confirmation-brief dt,
#cast .cast-detail-section-label,
#cast .cast-detail-price span {
  color: #8A8176;
}

#cast .cast-before-use li::before {
  background: #B2A17D;
}

#cast .cast-shift-box .mini-calendar-day.open {
  border-color: rgba(247, 244, 238, 0.5);
  background: rgba(255, 253, 249, 0.13);
}

#cast .cast-shift-box .mini-calendar-day.open .mini-calendar-date,
#cast .cast-shift-box .mini-calendar-day.open .mini-calendar-status {
  color: #FFFDF9;
}

#cast .cast-shift-box .mini-calendar-day.open .mini-calendar-status {
  font-weight: 500;
}

#cast .cast-shift-box .mini-calendar-day.closed {
  border-color: rgba(185, 178, 165, 0.48);
  background: rgba(255, 253, 249, 0.065);
}

#cast .cast-shift-box .mini-calendar-day.closed .mini-calendar-date,
#cast .cast-shift-box .mini-calendar-day.closed .mini-calendar-status {
  color: rgba(215, 207, 192, 0.78);
}

#cast .cast-shift-box .mini-calendar-day.off {
  border-color: rgba(111, 106, 95, 0.28);
  background: rgba(255, 253, 249, 0.022);
}

#cast .cast-shift-box .mini-calendar-day.off .mini-calendar-date,
#cast .cast-shift-box .mini-calendar-day.off .mini-calendar-status {
  color: rgba(185, 178, 165, 0.46);
}

@media (max-width: 520px) {
  .lp-seo-intro + .lp-cast {
    margin-top: 22px;
  }

  #cast .cast-confirmation-brief,
  #cast .cast-detail-section {
    padding: 16px;
  }
}

/* Cast detail split: keep only the portrait and availability in the dark area. */
#cast.cast-profile {
  padding: 0;
  background: #FAF9F6;
  color: #4A4640;
}

#cast .cast-dark-area {
  display: grid;
  gap: 24px;
  background: #3A3832;
  padding: 58px 24px 48px;
}

#cast .cast-dark-area .cast-profile-body {
  padding-bottom: 0;
}

#cast .cast-detail-common {
  display: grid;
  gap: 14px;
  width: min(720px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 112px;
  background: #FAF9F6;
}

#cast .cast-detail-common .section-reserve-link {
  margin-top: 10px;
  justify-self: center;
}

@media (max-width: 520px) {
  #cast .cast-dark-area {
    gap: 21px;
    padding: 42px 18px 34px;
  }

  #cast .cast-detail-common {
    width: calc(100% - 24px);
    padding-top: 24px;
    padding-bottom: 104px;
  }
}

/* LP cast split: match the detail page rhythm while keeping LP concise. */
.lp-cast {
  padding: 0;
  background: #FAF9F6;
  color: #4A4640;
}

.lp-cast-dark-area {
  display: grid;
  gap: 22px;
  background: #3A3832;
  padding: 42px 18px 34px;
}

.lp-cast-dark-area > h2 {
  width: min(720px, 100%);
  margin: 0 auto;
}

.lp-cast .lp-cast-grid,
.lp-cast .lp-cast-side {
  width: min(720px, 100%);
}

.lp-cast-common {
  display: grid;
  gap: 12px;
  width: min(720px, calc(100% - 24px));
  margin: 0 auto;
  padding: 22px 0 28px;
  background: #FAF9F6;
}

.lp-cast-common .lp-cast-confirmation,
.lp-cast-before-use {
  display: grid;
  gap: 11px;
  padding: 16px;
  border: 1px solid #E2DCD2;
  border-radius: 4px;
  background: #FFFDF9;
  box-shadow: none;
}

.lp-cast-common .lp-cast-confirmation h4,
.lp-cast-before-use h4 {
  margin: 0;
  color: #2B2925;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
}

.lp-cast-common .lp-cast-confirmation p,
.lp-cast-before-use li {
  margin: 0;
  color: #4A4640;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.8;
}

.lp-cast-common .lp-cast-confirmation dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding-top: 10px;
  border-top: 1px solid #E2DCD2;
}

.lp-cast-common .lp-cast-confirmation dl div {
  display: grid;
  gap: 2px;
}

.lp-cast-common .lp-cast-confirmation dt,
.lp-cast-common .lp-cast-confirmation dd {
  margin: 0;
  font-size: 12px;
  line-height: 1.6;
}

.lp-cast-common .lp-cast-confirmation dt {
  color: #8A8176;
}

.lp-cast-common .lp-cast-confirmation dd {
  color: #2B2925;
}

.lp-cast-before-use ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lp-cast-before-use li {
  position: relative;
  padding-left: 12px;
}

.lp-cast-before-use li::before {
  content: "";
  position: absolute;
  top: 0.86em;
  left: 0;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(178, 161, 125, 0.7);
}

.lp-cast-common .section-reserve-link {
  justify-self: center;
  margin-top: 4px;
}

/* LP reservation CTAs: keep the quiet style, but make the main path easy to find. */
#home .section-reserve-link,
#home .page-reserve-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  width: min(100%, 236px);
  min-width: 196px;
  text-align: center;
}

#home .lp-price-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 16px;
}

#home .lp-price-actions .lp-price-detail-link {
  justify-self: start;
}

#home .lp-price-actions .section-reserve-link {
  grid-column: 2;
}

#home .lp-reserve-preview .page-reserve-link {
  margin-right: auto;
  margin-left: auto;
}

@media (max-width: 600px) {
  #home .lp-price-actions {
    grid-template-columns: minmax(0, 1fr);
  }

  #home .lp-price-actions .lp-price-detail-link {
    justify-self: start;
  }

  #home .lp-price-actions .section-reserve-link {
    grid-column: auto;
    justify-self: center;
  }
}

/* Public-prelaunch micro adjustments: keep the cast detail quiet, but easier to scan. */
#cast .cast-detail-profile {
  padding-bottom: 17px;
}

#cast .cast-detail-profile h2 {
  padding-bottom: 4px;
}

#cast .cast-detail-profile dl {
  gap: 8px 18px;
  align-items: end;
}

#cast .cast-detail-profile dl div {
  gap: 4px;
}

#cast .cast-detail-profile dt,
#cast .cast-detail-profile dd {
  line-height: 1.45;
}

#cast .cast-detail-profile dd {
  color: rgba(247, 244, 238, 0.92);
}

#cast .cast-shift-box .mini-calendar-day.open {
  border-color: rgba(247, 244, 238, 0.64);
  background: rgba(255, 253, 249, 0.16);
}

#cast .cast-shift-box .mini-calendar-day.open .mini-calendar-date,
#cast .cast-shift-box .mini-calendar-day.open .mini-calendar-status {
  color: #FFFDF9;
}

#cast .cast-shift-box .mini-calendar-day.open .mini-calendar-status {
  font-weight: 500;
}

#cast .cast-shift-box .mini-calendar-day.closed {
  border-color: rgba(185, 178, 165, 0.42);
  background: rgba(255, 253, 249, 0.052);
}

#cast .cast-shift-box .mini-calendar-day.closed .mini-calendar-date,
#cast .cast-shift-box .mini-calendar-day.closed .mini-calendar-status {
  color: rgba(215, 207, 192, 0.72);
}

#cast .cast-shift-box .mini-calendar-day.off {
  border-color: rgba(111, 106, 95, 0.2);
  background: rgba(255, 253, 249, 0.014);
}

#cast .cast-shift-box .mini-calendar-day.off .mini-calendar-date,
#cast .cast-shift-box .mini-calendar-day.off .mini-calendar-status {
  color: rgba(185, 178, 165, 0.36);
}

/* LP first-view bridge: carry a little of the age gate mood into the practical LP. */
#home .lp-seo-intro {
  position: relative;
  padding-top: clamp(70px, 9vw, 112px);
  padding-bottom: clamp(50px, 7vw, 78px);
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 0%, rgba(178, 161, 125, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(47, 51, 47, 0.09), rgba(47, 51, 47, 0) 42%),
    linear-gradient(135deg, #F1EDE4 0%, #FAF9F6 56%, #EFE8DC 100%);
  border-bottom: 1px solid rgba(178, 161, 125, 0.28);
}

#home .lp-seo-intro::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(178, 161, 125, 0.5), transparent);
}

#home .lp-seo-intro > * {
  position: relative;
  width: min(100%, 880px);
}

#home .lp-seo-eyebrow {
  color: #A89573;
  font-size: 10px;
  letter-spacing: 0.18em;
}

#home .lp-seo-intro h1 {
  max-width: 760px;
  margin-top: 16px;
  color: #2F332F;
  line-height: 1.72;
}

#home .lp-seo-body {
  max-width: 720px;
  margin-top: 24px;
  padding: 18px 20px;
  border-left: 1px solid rgba(178, 161, 125, 0.42);
  border-radius: 3px;
  background: rgba(255, 253, 249, 0.58);
}

#home .lp-seo-body p {
  color: #4A4640;
}

#home .lp-internal-links {
  gap: 10px;
  margin-top: 26px;
}

#home .lp-internal-links a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid rgba(178, 161, 125, 0.38);
  border-radius: 3px;
  background: rgba(255, 253, 249, 0.72);
  color: #2F332F;
}

#home .lp-internal-links a:hover {
  border-color: #2F332F;
  background: #2F332F;
  color: #FFFDF9;
}

#home .lp-seo-intro + .lp-cast {
  margin-top: 0;
}

#home .lp-cast-dark-area {
  border-top: 1px solid rgba(178, 161, 125, 0.22);
  background:
    linear-gradient(180deg, rgba(178, 161, 125, 0.08), rgba(178, 161, 125, 0) 34%),
    #3A3832;
}

@media (max-width: 720px) {
  #home .lp-seo-intro {
    padding: 58px 18px 46px;
  }

  #home .lp-seo-intro h1 {
    margin-top: 14px;
    line-height: 1.64;
  }

  #home .lp-seo-body {
    padding: 15px 16px;
  }

  #home .lp-internal-links {
    gap: 8px;
  }

  #home .lp-internal-links a {
    min-height: 36px;
    padding: 8px 12px;
  }
}
