:root {
  --black: #111111;
  --ink: #1b1b1b;
  --white: #ffffff;
  --gray: #e8e8e8;
  --gray-2: #d9d9d9;
  --line: #cfcfcf;
  --muted: #5c5c5c;
  --yellow: #ffe36e;
  --red: #ff4b58;
  --blue: #164b9d;
  --accent: #ff4b58;
  --error: #c5392e;
  --header: 92px;
  --label-size: 17px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header);
}

body {
  margin: 0;
  padding-bottom: 92px;
  background: var(--black);
  color: var(--ink);
  font-family:
    Roboto, "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo,
    sans-serif;
  letter-spacing: 0;
}

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: grid;
  grid-template-columns: 178px minmax(470px, 1fr) auto;
  align-items: center;
  min-height: var(--header);
  padding: 0 clamp(18px, 4vw, 68px);
  background: rgba(17, 17, 17, 0.9);
  color: var(--white);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: max-content;
}

.brand img {
  width: auto;
  height: 76px;
}

.primary-nav,
.utility-nav {
  display: flex;
  align-items: center;
}

.primary-nav {
  justify-content: center;
  gap: clamp(16px, 2.1vw, 30px);
}

.utility-nav {
  justify-content: flex-end;
  gap: 13px;
}

.primary-nav a,
.utility-nav a,
.utility-nav button {
  border: 0;
  background: transparent;
  color: inherit;
  font-family: Oswald, Roboto, sans-serif;
  font-size: 16px;
  font-weight: 900;
  white-space: nowrap;
}

.utility-nav .utility-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  transition:
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.utility-nav .utility-button:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--black);
}

.utility-nav .line-link {
  border-color: #06c755;
  background: #06c755;
  color: var(--white);
}

.utility-nav .reserve-link {
  border-color: transparent;
  background: linear-gradient(90deg, var(--yellow), #ff9b2f);
  color: var(--black);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.hero::after,
.booking-section::before,
.bottom-bar::before {
  position: absolute;
  right: 0;
  left: 0;
  height: 20px;
  background: linear-gradient(90deg, var(--yellow), #ff8e55 28%, var(--red) 52%, #7a3f86 74%, var(--blue));
  content: "";
}

.hero::after {
  bottom: 0;
  z-index: 5;
}

.hero-gallery {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: 66% 34%;
}

.hero-panel {
  position: relative;
  min-width: 0;
  overflow: hidden;
}

.hero-panel {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-panel-main {
  grid-column: 1 / 4;
  border-top: 0;
  border-left: 0;
}

.hero-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(1) contrast(1.06) brightness(1.32);
}

.hero-panel-main img {
  object-position: center 38%;
  filter: grayscale(1) contrast(1.06) brightness(1.3);
}

.hero-panel:nth-child(2) img {
  object-position: center;
  filter: grayscale(1) contrast(1.04) brightness(1.34);
}

.hero-panel:nth-child(3) img {
  object-position: center;
  filter: grayscale(1) contrast(1.06) brightness(1.32);
}

.hero-panel:nth-child(4) img {
  object-position: center;
  filter: grayscale(1) contrast(1.06) brightness(1.32);
}

.hero-gallery::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.08) 42%, rgba(0, 0, 0, 0.04) 72%, rgba(0, 0, 0, 0.34) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.34));
  content: "";
}

.hero-color {
  position: absolute;
  top: 35%;
  right: 36%;
  left: 0;
  z-index: 3;
  height: clamp(112px, 10vw, 150px);
  background: linear-gradient(90deg, rgba(255, 227, 110, 0.9), rgba(255, 75, 88, 0.76) 46%, rgba(22, 75, 157, 0.74));
  mix-blend-mode: screen;
  opacity: 0.94;
}

.hero-content {
  position: absolute;
  top: var(--header);
  left: clamp(22px, 5vw, 72px);
  z-index: 4;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: min(780px, 54vw);
  height: calc(66svh - var(--header));
  min-height: 0;
  padding: 0 0 clamp(28px, 4vh, 54px);
  margin-left: 0;
}

.hero-content h1 {
  display: grid;
  gap: 10px;
  margin: 0;
  font-family: "Noto Sans JP", Roboto, sans-serif;
  font-size: clamp(34px, 4vw, 64px);
  font-weight: 900;
  line-height: 1.08;
  text-transform: none;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.62);
}

.hero-content h1 span {
  display: block;
  white-space: nowrap;
}

.hero-eyebrow {
  width: max-content;
  margin: 0 0 24px;
  padding: 9px 12px;
  background: var(--white);
  color: var(--black);
  font-family: Oswald, Roboto, sans-serif;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-cta {
  width: max-content;
  min-width: 210px;
  margin-top: 30px;
  padding: 18px 28px;
  background: linear-gradient(90deg, var(--yellow), #ff9b2f);
  color: var(--black);
  font-family: Oswald, Roboto, sans-serif;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.image-reveal {
  clip-path: inset(0 0 100% 0);
  transition: clip-path 1000ms cubic-bezier(0.16, 1, 0.3, 1);
}

.image-reveal.is-visible,
.hero .image-reveal {
  clip-path: inset(0);
}

.booking-section,
.method-section,
.fun-section,
.team-section,
.voice-section {
  position: relative;
  background: var(--gray);
}

.booking-section {
  padding: 46px clamp(20px, 6vw, 96px) 46px;
}

.booking-section .section-head {
  margin-bottom: 20px;
}

.booking-section .section-head h2 {
  font-size: clamp(42px, 5vw, 76px);
}

.booking-section::before {
  top: 0;
}

.section-head {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--ink);
  font-family: Oswald, Roboto, sans-serif;
  font-size: clamp(16px, 1.2vw, 20px);
  font-weight: 900;
  text-transform: uppercase;
}

.section-head h2 {
  position: relative;
  display: inline-block;
  margin: 0;
  font-family: "Noto Sans JP", Roboto, sans-serif;
  font-size: clamp(44px, 6vw, 86px);
  font-weight: 900;
  line-height: 1.05;
  text-wrap: balance;
}

.balanced-title span {
  display: block;
  white-space: nowrap;
}

.section-head h2::after {
  position: absolute;
  right: 8%;
  bottom: -16px;
  left: 20%;
  z-index: -1;
  height: 32px;
  background: linear-gradient(90deg, var(--yellow), var(--red), var(--blue));
  content: "";
}

.section-head p {
  max-width: 680px;
  margin: 34px auto 0;
  color: var(--ink);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.7;
}

.booking-form {
  display: grid;
  grid-template-columns: 172px minmax(520px, 1fr) 270px;
  max-width: 1060px;
  margin: 0 auto;
  background: var(--white);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.booking-field,
.booking-submit {
  min-width: 0;
  padding: 10px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.booking-menu {
  grid-column: 1;
  grid-row: 1;
}

.booking-date {
  grid-column: 2;
  grid-row: 1 / 3;
  max-height: 390px;
  overflow: hidden;
}

.booking-time {
  min-width: 0;
  padding-left: 8px;
  border-left: 1px solid var(--line);
  max-height: 322px;
  overflow-y: auto;
}

.contact-field {
  grid-column: 3;
  grid-row: 1;
  display: grid;
  grid-template-columns: 1fr;
}

.booking-submit {
  grid-column: 3;
  grid-row: 2;
  display: grid;
  align-content: center;
  gap: 8px;
  min-height: 132px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--black);
  color: var(--white);
}

.field-label,
.field-row strong,
.choice-stack span,
.date-row span,
.time-row span {
  color: var(--muted);
  font-family: Oswald, Roboto, sans-serif;
  font-size: var(--label-size);
  font-weight: 900;
  text-transform: uppercase;
}

.field-label-with-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.input-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  min-height: 18px;
  padding: 1px 5px 2px;
  border: 1px solid var(--black);
  color: var(--black);
  font-family: "Noto Sans JP", Roboto, sans-serif;
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
}

.input-badge.is-required {
  background: var(--black);
  color: var(--white);
}

.input-badge.is-optional {
  background: transparent;
  color: var(--muted);
  border-color: var(--line);
}

.choice-stack,
.date-row,
.time-row {
  display: grid;
  gap: 4px;
  margin-top: 8px;
}

.date-time-grid {
  display: grid;
  grid-template-columns: minmax(360px, 1fr) 150px;
  gap: 8px;
  align-items: start;
}

.choice-stack button,
.date-row button,
.time-row button {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--black);
  text-align: left;
  transition:
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.choice-stack button {
  display: grid;
  gap: 4px;
  min-height: 50px;
  padding: 8px;
}

.choice-stack strong {
  display: block;
  font-size: 17px;
  font-weight: 900;
}

.choice-stack button.is-selected,
.date-row button.is-selected,
.time-row button.is-selected {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
}

.choice-stack button.is-selected span,
.date-row button.is-selected span,
.time-row button.is-selected span {
  color: var(--yellow);
}

.field-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.booking-date .field-row {
  margin-bottom: 6px;
}

.week-buttons {
  display: flex;
  gap: 10px;
}

#month-label {
  flex: 1;
  color: var(--black);
  font-family: Oswald, Roboto, sans-serif;
  font-size: 18px;
  font-weight: 900;
  text-align: center;
}

.week-buttons button {
  border: 0;
  background: none;
  color: var(--black);
  font-family: Oswald, Roboto, sans-serif;
  font-weight: 900;
  text-decoration: underline;
}

.week-buttons button:disabled {
  cursor: not-allowed;
  color: var(--muted);
  text-decoration: none;
  opacity: 0.35;
}

.booking-month-controls {
  display: none;
}

.date-row {
  display: block;
  max-height: 322px;
  overflow-y: auto;
  padding-right: 4px;
}

.booking-month + .booking-month {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.booking-month h3 {
  position: sticky;
  top: 0;
  z-index: 2;
  margin: 0 0 6px;
  padding: 4px 0;
  background: var(--white);
  color: var(--black);
  font-family: Oswald, Roboto, sans-serif;
  font-size: 17px;
  font-weight: 900;
}

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

.date-row button {
  display: grid;
  place-items: center;
  min-height: 32px;
  padding: 2px 3px;
  text-align: center;
}

.calendar-weekday {
  display: grid;
  place-items: center;
  min-height: 22px;
  color: var(--muted);
  font-family: Oswald, Roboto, sans-serif;
  font-size: var(--label-size);
  font-weight: 900;
}

.calendar-empty {
  min-height: 32px;
  border: 1px solid transparent;
}

.date-row button:disabled {
  cursor: not-allowed;
  background: #d9d5cb;
  color: #8d877c;
}

.date-row strong {
  display: block;
  align-self: center;
  font-family: "Bebas Neue", Anton, Impact, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 0.8;
}

.time-row {
  grid-template-columns: 1fr;
}

.time-row button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 34px;
  padding: 5px 7px;
}

.time-row strong {
  font-size: 16px;
  font-weight: 900;
}

.time-row button:disabled {
  cursor: not-allowed;
  background: #d9d5cb;
  color: #8d877c;
}

#slot-count {
  display: none;
}

.contact-field label {
  display: grid;
  gap: 5px;
}

.contact-field label + label {
  margin-top: 7px;
}

.contact-field input {
  width: 100%;
  min-height: 38px;
  border: 0;
  border-bottom: 2px solid var(--black);
  border-radius: 0;
  background: transparent;
  color: var(--black);
  outline: none;
  font-size: 17px;
}

.line-warning {
  min-height: 0;
  margin: 8px 0 0;
  color: var(--error);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.55;
}

.booking-submit p {
  margin: 0;
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
  text-align: center;
}

.booking-submit button,
.success-dialog button {
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  background: var(--white);
  color: var(--black);
  font-family: Oswald, Roboto, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
}

.booking-submit button {
  background: linear-gradient(90deg, var(--yellow), #ff9b2f);
}

.reservation-check-anchor {
  display: inline-grid;
  place-items: center;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.9);
  color: var(--black);
  font-weight: 900;
  text-align: center;
  text-transform: none;
}

.form-error {
  grid-column: 1 / 4;
  min-height: 22px;
  margin: 0;
  padding: 8px 14px;
  background: var(--white);
  color: var(--error);
  font-size: 14px;
  font-weight: 900;
}

.fun-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  background: var(--black);
  color: var(--white);
}

.fun-image {
  min-height: 650px;
  overflow: hidden;
}

.fun-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: none;
}

.fun-section .image-reveal {
  clip-path: inset(0);
}

.fun-copy {
  display: grid;
  align-content: center;
  padding: clamp(42px, 7vw, 104px);
}

.fun-copy .eyebrow {
  color: var(--yellow);
}

.fun-copy h2 {
  max-width: 720px;
  margin: 0;
  font-family: "Noto Sans JP", Roboto, sans-serif;
  font-size: clamp(38px, 5vw, 76px);
  font-weight: 900;
  line-height: 1.08;
  text-wrap: balance;
}

.fun-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 28px;
  margin-top: 46px;
}

.fun-points article {
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.fun-points article.is-featured {
  grid-column: auto;
  margin-top: 0;
  padding: 22px 0;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  background: transparent;
}

.fun-points span {
  color: var(--yellow);
  font-family: Oswald, Roboto, sans-serif;
  font-size: clamp(17px, 1.35vw, 22px);
  font-weight: 900;
}

.fun-points h3 {
  margin: 8px 0 10px;
  font-size: clamp(21px, 2vw, 30px);
  font-weight: 900;
  line-height: 1.2;
}

.fun-points article.is-featured h3 {
  max-width: none;
  font-size: clamp(21px, 2vw, 30px);
}

.fun-points p {
  margin: 0;
  color: #d8d8d8;
  font-weight: 700;
  line-height: 1.75;
}

.fun-points article.is-featured p {
  max-width: none;
  font-size: inherit;
}

.method-section {
  padding: 80px 24px 72px;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 0 clamp(20px, 7vw, 118px) 52px;
  background: var(--gray);
}

.program-card {
  position: relative;
  display: grid;
  grid-template-rows: 300px 1fr;
  min-height: 0;
  overflow: hidden;
  background: var(--white);
  color: var(--black);
}

.program-media {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  background: var(--black);
}

.program-media img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  filter: grayscale(1) contrast(1.06) brightness(1.28);
  transition: transform 800ms cubic-bezier(0.16, 1, 0.3, 1);
}

.program-card:hover .program-media img {
  transform: scale(1.04);
}

.program-card::after {
  content: none;
}

.program-card span {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 7px 10px;
  background: var(--white);
  color: var(--black);
  font-family: Oswald, Roboto, sans-serif;
  font-size: var(--label-size);
  font-weight: 900;
}

.program-card h3 {
  margin: 0;
  font-family: "Noto Sans JP", Roboto, sans-serif;
  font-size: clamp(26px, 2.5vw, 36px);
  font-weight: 900;
  line-height: 1.12;
  text-wrap: balance;
}

.program-card p {
  margin: 14px 0 0;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.72;
  text-align: left;
}

.program-copy {
  display: grid;
  grid-template-rows: minmax(84px, auto) 1fr;
  padding: 22px 22px 26px;
}

.program-body {
  display: grid;
  align-content: start;
}

.community-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  background: var(--black);
  color: var(--white);
}

.community-image {
  overflow: hidden;
}

.community-image img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  filter: grayscale(1) contrast(1.25) brightness(0.72);
}

.community-copy {
  display: grid;
  align-content: center;
  padding: clamp(36px, 6vw, 92px);
}

.community-copy .eyebrow {
  color: var(--yellow);
}

.community-copy h2 {
  margin: 0;
  font-family: "Noto Sans JP", Roboto, sans-serif;
  font-size: clamp(42px, 5.6vw, 82px);
  font-weight: 900;
  line-height: 1.08;
}

.community-copy p:not(.eyebrow) {
  max-width: 560px;
  margin: 28px 0 0;
  color: #dadada;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.8;
}

.team-section {
  padding: 62px clamp(20px, 7vw, 118px) 70px;
}

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

.trainer-card {
  position: relative;
  display: grid;
  align-content: start;
  overflow: hidden;
  background: var(--white);
}

.trainer-card img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
  background: var(--white);
  filter: none;
}

.trainer-card span {
  display: none;
}

.trainer-card h3 {
  margin: 16px 14px 6px;
  font-family: Oswald, "Noto Sans JP", sans-serif;
  font-size: clamp(25px, 2vw, 32px);
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
  text-wrap: balance;
}

.trainer-card p {
  margin: 0 14px 14px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
}

.trainer-card blockquote {
  margin: 0 14px 20px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.7;
}

.voice-section {
  padding: 70px clamp(20px, 7vw, 118px) 82px;
  background: var(--black);
  color: var(--white);
}

.voice-section .eyebrow,
.voice-section .section-head p {
  color: var(--yellow);
}

.voice-section .section-head h2 {
  color: var(--white);
}

.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  align-items: start;
  max-width: 1120px;
  margin: 0 auto;
  padding: 18px 0 34px;
}

.voice-card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  transform: rotate(-2deg);
}

.voice-card:nth-child(even) {
  margin-top: 24px;
}

.voice-card:nth-child(2) {
  z-index: 2;
  margin: 34px -24px 0;
  transform: rotate(2.5deg);
}

.voice-card:nth-child(3) {
  margin-top: -8px;
  transform: rotate(-1deg);
}

.voice-card:nth-child(4) {
  z-index: 3;
  margin: -18px -18px 0 28px;
  transform: rotate(3deg);
}

.voice-card:nth-child(5) {
  margin-top: 28px;
  transform: rotate(-3deg);
}

.voice-card:nth-child(6) {
  z-index: 2;
  margin: -10px 20px 0 -18px;
  transform: rotate(1.5deg);
}

.voice-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: top center;
  filter: brightness(1.08);
}

.price-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: var(--black);
  color: var(--white);
}

.price-strip div {
  display: grid;
  gap: 8px;
  min-height: 124px;
  padding: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.price-strip div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.price-strip span {
  color: #bdbdbd;
  font-family: Oswald, Roboto, sans-serif;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.price-strip strong {
  font-size: clamp(26px, 3vw, 44px);
  font-weight: 900;
  line-height: 1.1;
}

.faq-access {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--gray);
}

.faq,
.access {
  min-height: auto;
  padding: clamp(36px, 5vw, 72px) clamp(18px, 5vw, 72px);
}

.faq {
  border-right: 1px solid var(--black);
}

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

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

.faq-item h3 {
  margin: 0;
  padding: 18px 0 8px;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 900;
}

.faq p,
.access p {
  max-width: 560px;
  margin: 0 0 18px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.75;
}

.access h2 {
  margin: 0 0 16px;
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 900;
  line-height: 1.1;
}

.map-card {
  position: relative;
  width: 100%;
  height: 310px;
  margin: 20px 0 10px;
  border: 1px solid var(--black);
  overflow: hidden;
  background: var(--white);
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.map-card:hover {
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.14);
  transform: translateY(-2px);
}

.map-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  opacity: 1;
  pointer-events: none;
}

.map-card-label {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  padding: 10px 12px;
  background: var(--black);
  color: var(--white);
  font-family: Oswald, Roboto, sans-serif;
  font-size: 13px;
  font-weight: 900;
}

.map-dialog {
  width: min(980px, calc(100% - 28px));
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--black);
}

.map-dialog::backdrop {
  background: rgba(0, 0, 0, 0.78);
}

.map-dialog-shell {
  position: relative;
  display: grid;
  gap: 0;
  background: var(--white);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
}

.map-stage {
  position: relative;
  width: 100%;
  height: min(68vh, 620px);
  min-height: 380px;
  overflow: hidden;
  background: var(--white);
}

.map-dialog-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  opacity: 1;
}

.map-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 0;
  background: var(--black);
  color: var(--white);
  font-size: 28px;
  line-height: 1;
}

.map-external {
  display: block;
  padding: 16px 20px;
  background: var(--black);
  color: var(--white);
  font-family: Oswald, Roboto, sans-serif;
  font-weight: 900;
  text-align: center;
}

.bottom-bar {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 110;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  min-height: 94px;
  padding: 12px 12px 12px clamp(12px, 3vw, 38px);
  background: var(--black);
  color: var(--white);
}

.bottom-bar::before {
  top: -8px;
  height: 8px;
}

.bottom-bar.is-hidden {
  display: none;
}

.bottom-bar a,
.bottom-bar button {
  display: grid;
  place-items: center;
  min-height: 70px;
}

.bottom-bar a,
.bottom-bar button {
  position: relative;
  grid-auto-flow: column;
  justify-content: center;
  gap: clamp(12px, 2.4vw, 34px);
  padding: 0 clamp(16px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  font-family: "Noto Sans JP", Roboto, sans-serif;
  font-size: clamp(16px, 2vw, 27px);
  font-weight: 900;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.bottom-bar > * + * {
  border-left: 1px solid rgba(255, 255, 255, 0.34);
}

.bottom-bar > :first-child {
  border-color: transparent;
  background: linear-gradient(90deg, var(--yellow), #ff9b2f);
  color: var(--black);
}

.bottom-bar > :nth-child(2) {
  border-color: #06c755;
  background: #06c755;
  color: var(--white);
}

.bottom-bar > :hover {
  transform: translateY(-2px);
}

.bottom-bar > *::after {
  content: "→";
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--white);
  color: var(--black);
  font-family: Roboto, sans-serif;
  font-size: 22px;
  line-height: 1;
}

.bottom-bar > * span,
.bottom-bar > * strong {
  display: block;
  line-height: 1;
}

.bottom-bar > * span {
  color: var(--yellow);
}

.bottom-bar > :first-child span {
  color: var(--black);
}

.bottom-bar > :nth-child(2) span {
  color: #e7ffe7;
}

.member-floating-link {
  position: fixed;
  right: clamp(12px, 2.4vw, 30px);
  bottom: 112px;
  z-index: 112;
  display: grid;
  gap: 6px;
  width: max-content;
  max-width: calc(100vw - 24px);
  min-width: 0;
  padding: 18px 22px 19px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(17, 17, 17, 0.94);
  color: var(--white);
  justify-items: end;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.3);
  text-align: right;
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.diary-floating-link {
  position: fixed;
  top: calc(var(--header) + 16px);
  right: clamp(12px, 2.4vw, 30px);
  z-index: 111;
  display: grid;
  place-items: center;
  width: clamp(118px, 10vw, 154px);
  min-height: clamp(118px, 10vw, 154px);
  border: 2px solid var(--black);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--yellow), #ff9b2f);
  color: var(--black);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.24);
  text-align: center;
  transform: rotate(6deg);
  overflow: hidden;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.diary-faces {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.36;
}

.diary-faces img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.2);
}

.diary-floating-link::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, rgba(255, 227, 110, 0.82), rgba(255, 155, 47, 0.9));
  content: "";
}

.diary-floating-link:hover {
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
  transform: rotate(0deg) translateY(-2px);
}

.diary-floating-link span,
.diary-floating-link strong {
  display: block;
  line-height: 1.05;
}

.diary-floating-link span {
  font-size: 13px;
  font-weight: 900;
}

.diary-floating-link strong {
  font-family: Oswald, "Noto Sans JP", sans-serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 900;
}

.member-floating-link:hover {
  background: var(--black);
  transform: translateY(-2px);
}

.member-floating-link span,
.member-floating-link strong {
  display: block;
  line-height: 1.1;
}

.member-floating-link span {
  color: var(--yellow);
  font-size: clamp(18px, 1.55vw, 24px);
  font-weight: 900;
}

.member-floating-link strong {
  font-family: Oswald, Roboto, sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.success-dialog,
.phone-dialog,
.line-dialog,
.qr-dialog,
.reservation-check-dialog {
  width: min(470px, calc(100% - 28px));
  padding: 28px;
  border: 0;
  border-radius: 0;
  background: var(--white);
  color: var(--black);
}

.phone-dialog {
  width: min(620px, calc(100% - 28px));
  text-align: center;
}

.line-dialog {
  width: min(560px, calc(100% - 28px));
}

.reservation-check-dialog {
  width: min(720px, calc(100% - 28px));
  max-height: min(760px, calc(100svh - 28px));
  overflow-y: auto;
}

.qr-dialog {
  width: min(420px, calc(100% - 28px));
  text-align: center;
}

.success-dialog::before,
.phone-dialog::before,
.line-dialog::before,
.qr-dialog::before,
.reservation-check-dialog::before {
  display: block;
  height: 9px;
  margin: -28px -28px 22px;
  background: linear-gradient(90deg, var(--yellow), #ff9b2f, var(--blue));
  content: "";
}

.success-dialog::backdrop,
.phone-dialog::backdrop,
.line-dialog::backdrop,
.qr-dialog::backdrop,
.reservation-check-dialog::backdrop {
  background: rgba(0, 0, 0, 0.72);
}

.success-dialog h2,
.phone-dialog h2,
.line-dialog h2,
.qr-dialog h2,
.reservation-check-dialog h2 {
  margin: 8px 0 14px;
  font-size: 34px;
  font-weight: 900;
  line-height: 1.2;
}

.success-dialog p:not(.eyebrow),
.phone-dialog p:not(.eyebrow),
.line-dialog p:not(.eyebrow),
.qr-dialog p:not(.eyebrow),
.reservation-check-dialog p:not(.eyebrow) {
  color: var(--muted);
  font-weight: 700;
  line-height: 1.7;
}

.qr-dialog img {
  width: min(260px, 74vw);
  margin: 20px auto;
  border: 8px solid var(--white);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.18);
}

.phone-number {
  display: block;
  margin: 22px 0;
  font-family: Oswald, Roboto, sans-serif;
  font-size: clamp(44px, 8vw, 74px);
  font-weight: 900;
  line-height: 1;
}

.dialog-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 22px;
}

.success-dialog button,
.phone-dialog button,
.line-dialog button,
.qr-dialog button,
.reservation-check-dialog button {
  margin-top: 4px;
  min-height: 50px;
  border: 0;
  background: var(--black);
  color: var(--white);
  font-family: Oswald, "Noto Sans JP", sans-serif;
  font-weight: 900;
}

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

.modal-check-form label {
  display: grid;
  gap: 6px;
  font-weight: 900;
}

.modal-check-form input,
.modal-check-form select {
  min-height: 46px;
  border: 0;
  border-bottom: 2px solid var(--black);
  border-radius: 0;
  background: transparent;
  color: var(--black);
  font: inherit;
  outline: none;
}

.modal-check-form button {
  margin-top: 0;
}

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

.dialog-link,
.member-check-link {
  display: inline-grid;
  place-items: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid var(--black);
  background: var(--white);
  color: var(--black);
  font-weight: 900;
  text-align: center;
}

.dialog-link {
  width: 100%;
  margin: 12px 0 8px;
}

.member-check-link {
  border-color: rgba(255, 255, 255, 0.42);
  background: transparent;
  color: var(--white);
}

.line-dialog #line-continue {
  background: linear-gradient(90deg, var(--yellow), #ff9b2f);
  color: var(--black);
}

.member-page {
  background: var(--gray);
}

.member-clean-page {
  padding-bottom: 0;
}

.member-simple-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: flex;
  align-items: center;
  min-height: var(--header);
  padding: 0 clamp(18px, 4vw, 68px);
  background: rgba(17, 17, 17, 0.94);
}

.member-simple-header img {
  width: auto;
  height: 76px;
}

.member-main {
  padding-top: var(--header);
  background: var(--gray);
}

.member-reserve-section {
  position: relative;
  min-height: calc(100svh - var(--header));
  padding: calc(var(--header) + clamp(28px, 3.2vw, 48px)) clamp(18px, 5vw, 76px) 120px;
  background: var(--gray);
}

.member-login-section {
  min-height: 100svh;
  padding: calc(var(--header) + 60px) clamp(18px, 5vw, 76px) 80px;
  background:
    linear-gradient(90deg, rgba(255, 227, 110, 0.92), rgba(255, 75, 88, 0.86) 54%, rgba(22, 75, 157, 0.78)),
    var(--black);
}

.member-login-section .member-reserve-head {
  color: var(--black);
}

.member-login-section .member-reserve-head p:not(.eyebrow) {
  color: rgba(17, 17, 17, 0.74);
}

.member-login-card {
  display: grid;
  gap: 16px;
  max-width: 520px;
  margin: 0 auto;
  padding: 24px;
  background: var(--white);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.member-login-card label {
  display: grid;
  gap: 6px;
  font-family: Oswald, Roboto, sans-serif;
  font-weight: 900;
}

.member-login-card input,
.member-panel-block select {
  width: 100%;
  min-height: 46px;
  border: 0;
  border-bottom: 2px solid var(--black);
  border-radius: 0;
  background: transparent;
  color: var(--black);
  font: inherit;
  outline: none;
}

.member-login-card button,
.member-logout {
  min-height: 52px;
  border: 0;
  background: var(--black);
  color: var(--white);
  font-weight: 900;
}

.member-login-note {
  margin: 0;
  color: var(--muted);
  font-weight: 900;
}

.member-logout {
  width: max-content;
  padding: 0 18px;
  background: linear-gradient(90deg, var(--yellow), #ff9b2f);
  color: var(--black);
}

.member-reserve-section::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 16px;
  background: linear-gradient(90deg, var(--yellow), #ff8e55 28%, var(--red) 52%, #7a3f86 74%, var(--blue));
  content: "";
}

.member-reserve-head {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto;
  gap: clamp(20px, 5vw, 76px);
  align-items: end;
  max-width: 1180px;
  margin: 0 auto 24px;
}

.member-reserve-head h1 {
  margin: 0;
  font-family: "Noto Sans JP", Roboto, sans-serif;
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 900;
  line-height: 1.04;
  text-wrap: balance;
}

.member-status-card {
  display: grid;
  justify-items: end;
  gap: 10px;
}

.member-status-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 900;
}

.member-upcoming-panel,
.member-form-guide,
.member-week-form {
  max-width: 1180px;
}

.member-upcoming-panel {
  margin: 0 auto 16px;
  padding: 18px;
  background: var(--white);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.member-upcoming-panel h2 {
  margin: 0;
  font-size: clamp(22px, 2.2vw, 30px);
}

.member-upcoming-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.member-upcoming-card {
  display: grid;
  gap: 8px;
  padding: 12px;
  border-left: 5px solid var(--blue);
  background: #f6f6f6;
}

.member-upcoming-card span {
  color: var(--red);
  font-weight: 900;
}

.member-upcoming-card h2 {
  margin: 0;
  font-size: 24px;
}

.member-upcoming-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 900;
}

.member-upcoming-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.member-upcoming-actions button {
  min-height: 38px;
  border: 0;
  background: var(--black);
  color: var(--white);
  font-weight: 900;
}

.member-upcoming-actions button:last-child {
  background: var(--white);
  color: var(--black);
  border: 1px solid var(--line);
}

.member-form-guide {
  margin: 0 auto 10px;
  color: var(--muted);
  font-weight: 900;
}

.member-form-guide p {
  margin: 0;
}

.member-reserve-head p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.5vw, 21px);
  font-weight: 700;
  line-height: 1.8;
}

.member-week-form {
  display: grid;
  grid-template-columns: minmax(250px, 300px) minmax(500px, 1fr) minmax(280px, 310px);
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}

.member-control-panel,
.member-week-panel {
  min-width: 0;
  background: var(--white);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.member-control-panel {
  display: grid;
  align-content: start;
}

.member-panel-block,
.member-submit-panel {
  padding: 16px;
  border-bottom: 1px solid var(--line);
}

.member-menu-options {
  gap: 7px;
}

.member-menu-options button {
  min-height: 58px;
}

.member-trainer-options {
  display: grid;
  gap: 7px;
  margin-top: 8px;
}

.member-trainer-options button {
  min-height: 44px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--black);
  font-weight: 900;
  text-align: left;
}

.member-trainer-options button.is-selected {
  border-color: var(--black);
  background: var(--black);
  color: var(--yellow);
}

.member-panel-block label {
  display: grid;
  gap: 6px;
}

.member-panel-block label + label {
  margin-top: 14px;
}

.member-panel-block input {
  width: 100%;
  min-height: 42px;
  border: 0;
  border-bottom: 2px solid var(--black);
  border-radius: 0;
  background: transparent;
  color: var(--black);
  font-size: 17px;
  outline: none;
}

.member-panel-block select {
  cursor: pointer;
}

.member-submit-panel {
  display: grid;
  gap: 12px;
  align-self: start;
  border-bottom: 0;
  background: var(--black);
  color: var(--white);
}

.member-submit-panel .field-label {
  color: var(--yellow);
}

.member-submit-panel p {
  margin: 0;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.6;
}

.member-submit-panel button {
  min-height: 56px;
  padding: 0 16px;
  border: 0;
  background: linear-gradient(90deg, var(--yellow), #ff9b2f);
  color: var(--black);
  font-family: Oswald, "Noto Sans JP", sans-serif;
  font-weight: 900;
  line-height: 1.25;
  white-space: normal;
  word-break: keep-all;
}

.member-submit-panel .form-error {
  min-height: 22px;
  padding: 0;
  background: transparent;
  color: #ffb3ad;
}

.member-week-panel {
  padding: 14px;
}

.member-week-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  padding: 0 0 9px;
  border-bottom: 1px solid var(--black);
}

.member-week-head strong {
  display: block;
  margin-top: 4px;
  font-family: Oswald, Roboto, sans-serif;
  font-size: clamp(26px, 2.6vw, 38px);
  font-weight: 900;
  line-height: 1;
}

.member-week-scroll {
  width: 100%;
  overflow-x: auto;
}

.member-week-grid {
  display: grid;
  grid-template-columns: 64px repeat(7, minmax(64px, 1fr));
  min-width: 610px;
  border-left: 1px solid var(--line);
}

.member-grid-corner,
.member-day-head,
.member-time-head,
.member-slot {
  min-height: 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.member-grid-corner,
.member-day-head,
.member-time-head {
  display: grid;
  place-items: center;
  background: #f5f5f5;
  font-family: Oswald, Roboto, sans-serif;
  font-weight: 900;
}

.member-grid-corner {
  position: sticky;
  left: 0;
  z-index: 3;
  color: var(--muted);
  font-size: var(--label-size);
}

.member-day-head {
  position: sticky;
  top: 0;
  z-index: 2;
  gap: 2px;
  padding: 4px;
  background: var(--white);
}

.member-day-head span,
.member-slot span {
  color: var(--muted);
  font-family: Oswald, Roboto, sans-serif;
  font-size: var(--label-size);
  font-weight: 900;
  text-transform: uppercase;
}

.member-day-head strong {
  font-size: 16px;
  line-height: 1;
}

.member-time-head {
  position: sticky;
  left: 0;
  z-index: 2;
  background: var(--black);
  color: var(--white);
  font-size: 16px;
}

.member-slot {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 3px;
  background: var(--white);
  color: var(--black);
  text-align: center;
  transition:
    background 160ms ease,
    color 160ms ease;
}

.member-slot strong {
  font-family: Oswald, Roboto, sans-serif;
  font-size: 17px;
  line-height: 1;
}

.member-slot span {
  line-height: 1;
}

.member-slot:not(:disabled):hover,
.member-slot.is-selected {
  background: var(--black);
  color: var(--white);
}

.member-slot.is-selected span,
.member-slot:not(:disabled):hover span {
  color: var(--yellow);
}

.member-slot:disabled {
  cursor: not-allowed;
  background: #dedbd4;
  color: #8c877e;
}

.member-slot:disabled strong,
.member-slot:disabled span {
  visibility: hidden;
}

.tool-page,
.blog-page,
.admin-page {
  min-height: 100svh;
  padding-bottom: 0;
  background: var(--gray);
}

.tool-main,
.blog-main,
.admin-shell {
  padding: calc(var(--header) + 58px) clamp(18px, 6vw, 86px) 80px;
}

.tool-hero,
.blog-hero,
.admin-head {
  max-width: 1180px;
  margin: 0 auto 30px;
}

.tool-hero h1,
.blog-hero h1,
.admin-head h1 {
  margin: 0;
  font-family: "Noto Sans JP", Roboto, sans-serif;
  font-size: clamp(38px, 5vw, 72px);
  font-weight: 900;
  line-height: 0.98;
}

.blog-hero h1 {
  max-width: 1120px;
  font-size: clamp(34px, 4.4vw, 62px);
  line-height: 1.08;
  text-wrap: balance;
}

.tool-hero p:not(.eyebrow),
.blog-hero p,
.admin-head p {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.8;
}

.tool-card,
.blog-list,
.admin-grid,
.admin-stats {
  max-width: 1180px;
  margin: 0 auto;
}

.tool-card {
  display: grid;
  grid-template-columns: minmax(280px, 380px) minmax(0, 1fr);
  gap: 16px;
}

.check-form,
.result-card,
.blog-post,
.admin-card,
.admin-stats article {
  background: var(--white);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.1);
}

.check-form,
.result-card,
.admin-card {
  padding: 20px;
}

.check-form label,
.admin-card label {
  display: grid;
  gap: 6px;
  margin-bottom: 14px;
  font-weight: 900;
}

.check-form input,
.admin-card input,
.admin-card textarea,
.admin-card select {
  width: 100%;
  min-height: 44px;
  border: 0;
  border-bottom: 2px solid var(--black);
  border-radius: 0;
  background: transparent;
  color: var(--black);
  font: inherit;
  outline: none;
}

.check-form button,
.admin-card button,
.admin-card-head button,
.admin-head a {
  min-height: 48px;
  border: 0;
  background: linear-gradient(90deg, var(--yellow), #ff9b2f);
  color: var(--black);
  font-weight: 900;
}

.check-form button,
.admin-card button,
.admin-head a {
  width: 100%;
}

.result-card span,
.blog-post .eyebrow {
  color: var(--red);
}

.result-card h2,
.blog-post h2,
.admin-card h2 {
  margin: 0 0 16px;
  font-size: clamp(28px, 3vw, 46px);
  font-weight: 900;
  line-height: 1.12;
}

.result-card dl {
  display: grid;
  gap: 10px;
  margin: 0 0 18px;
}

.result-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 8px;
}

.result-card dt,
.result-card dd {
  margin: 0;
  font-weight: 900;
}

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

.blog-post {
  padding: 22px;
}

.blog-post p:not(.eyebrow) {
  color: var(--ink);
  font-weight: 700;
  line-height: 1.8;
}

.admin-shell {
  max-width: 1480px;
  margin: 0 auto;
}

.admin-head a {
  display: inline-grid;
  place-items: center;
  width: max-content;
  padding: 0 18px;
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}

.admin-stats article {
  padding: 18px;
}

.admin-stats span {
  color: var(--muted);
  font-weight: 900;
}

.admin-stats strong {
  display: block;
  margin-top: 8px;
  font-size: 34px;
  font-weight: 900;
}

.admin-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 16px;
}

.admin-view-tabs {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  background: #eeeeee;
}

.admin-view-tabs button {
  width: auto;
  min-width: 96px;
  min-height: 40px;
  padding: 0 14px;
  background: transparent;
}

.admin-view-tabs button.is-active {
  background: var(--black);
  color: var(--white);
}

.admin-schedule-card {
  max-width: 1360px;
  margin: 0 auto 16px;
}

.admin-card-note {
  color: var(--muted);
  font-weight: 900;
}

.admin-schedule-wrap {
  overflow-x: auto;
}

.admin-schedule {
  display: grid;
  grid-template-columns: 70px repeat(7, minmax(132px, 1fr));
  min-width: 1030px;
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
}

.admin-calendar-corner,
.admin-calendar-head,
.admin-calendar-time,
.admin-calendar-slot {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.admin-calendar-corner,
.admin-calendar-head {
  position: sticky;
  top: 0;
  z-index: 1;
  display: grid;
  gap: 2px;
  padding: 10px;
  background: var(--black);
  color: var(--white);
}

.admin-calendar-head span {
  color: var(--yellow);
  font-family: Oswald, Roboto, sans-serif;
  font-weight: 900;
}

.admin-calendar-head strong {
  font-size: 20px;
  font-weight: 900;
}

.admin-calendar-time {
  display: grid;
  place-items: start center;
  min-height: 58px;
  padding-top: 8px;
  background: var(--black);
  color: var(--white);
  font-family: Oswald, Roboto, sans-serif;
  font-weight: 900;
}

.admin-schedule .admin-calendar-slot {
  display: grid;
  align-content: start;
  gap: 4px;
  min-height: 58px;
  padding: 4px;
  border-top: 0;
  background: var(--white);
  color: var(--black);
  text-align: left;
}

.admin-schedule .admin-calendar-slot.is-dragging {
  background: #fff6c7;
  outline: 2px solid var(--yellow);
  outline-offset: -2px;
}

.admin-event {
  display: grid;
  gap: 3px;
  padding: 6px;
  border-left: 5px solid var(--red);
  background: var(--white);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.admin-event.is-member {
  border-left-color: var(--blue);
}

.admin-event.is-attendance {
  border-left-color: #06c755;
  background: #eefbf3;
}

.admin-event b,
.admin-event span,
.admin-event small {
  line-height: 1.35;
}

.admin-event b {
  font-family: Oswald, Roboto, sans-serif;
  font-size: 15px;
}

.admin-event span {
  font-weight: 900;
}

.admin-event small {
  color: var(--muted);
  font-weight: 800;
}

.admin-drag-hint {
  margin: 10px 0 0;
  color: var(--muted);
  font-weight: 900;
}

.attendance-dialog {
  width: min(560px, calc(100% - 28px));
  padding: 28px;
  border: 0;
  background: var(--white);
}

.attendance-dialog::backdrop {
  background: rgba(0, 0, 0, 0.72);
}

.attendance-time-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.admin-grid-wide {
  max-width: 1360px;
  grid-template-columns: 1fr;
}

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

.admin-card-head-wrap {
  align-items: flex-end;
  flex-wrap: wrap;
}

.admin-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.admin-actions input,
.admin-actions select {
  width: min(320px, 52vw);
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 0 12px;
  font-weight: 800;
}

.admin-actions select {
  width: min(220px, 42vw);
  background: var(--white);
}

.customer-summary {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  min-height: 42px;
  margin: 0;
  padding: 8px 12px;
  border: 1px solid var(--line);
  background: #f7f7f7;
  font-weight: 900;
}

.customer-summary strong {
  font-size: 22px;
}

.customer-summary span {
  color: var(--muted);
  font-size: 12px;
}

.admin-card-head button {
  width: auto;
  min-width: 128px;
  padding: 0 16px;
}

.admin-table-wrap {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.admin-table th,
.admin-table td {
  padding: 10px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  font-weight: 800;
}

.admin-table th {
  background: var(--black);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 1;
}

.admin-table select {
  min-height: 36px;
  border: 1px solid var(--line);
  font-weight: 900;
}

.admin-table input {
  min-width: 220px;
  min-height: 36px;
  border: 1px solid var(--line);
  padding: 0 10px;
  font-weight: 800;
}

.customer-table {
  min-width: 1120px;
}

.customer-table th,
.customer-table td {
  vertical-align: top;
}

.customer-table th:first-child,
.customer-table td:first-child {
  min-width: 180px;
}

.customer-table th:nth-child(2),
.customer-table td:nth-child(2) {
  min-width: 250px;
}

.customer-table th:nth-child(3),
.customer-table td:nth-child(3) {
  min-width: 260px;
}

.customer-name,
.customer-id,
.customer-lines,
.customer-tags {
  display: grid;
  gap: 6px;
}

.customer-name {
  font-size: 15px;
}

.customer-id,
.customer-lines span,
.customer-lines a {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
}

.customer-lines a {
  color: var(--black);
}

.customer-tags {
  display: flex;
  flex-wrap: wrap;
}

.customer-tags span {
  padding: 5px 8px;
  background: #f2f2f2;
  color: var(--black);
  font-size: 12px;
  font-weight: 900;
}

.admin-empty-row {
  padding: 22px 10px;
  color: var(--muted);
  text-align: center;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  background: #f2f2f2;
  font-size: 12px;
  font-weight: 900;
}

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

.admin-list article {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
}

.admin-list span {
  color: var(--muted);
  font-weight: 700;
}

.admin-list button {
  grid-row: 1 / 3;
  grid-column: 2;
  min-height: 38px;
  padding: 0 12px;
  border: 0;
  background: var(--black);
  color: var(--white);
  font-weight: 900;
}

.management-panel {
  max-width: 1180px;
  margin: 0 auto;
}

.management-user {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.management-user h2 {
  margin: 6px 0 0;
}

.management-user button {
  width: auto;
  min-width: 140px;
  padding: 0 18px;
}

.management-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
}

.management-links a {
  display: grid;
  gap: 10px;
  min-height: 150px;
  align-content: end;
  padding: 22px;
  background: var(--black);
  color: var(--white);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.12);
}

.management-links span {
  color: var(--yellow);
  font-weight: 900;
}

.management-links strong {
  font-family: Oswald, Roboto, sans-serif;
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 900;
  line-height: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 760ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 760ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible,
.booking-section .reveal {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
  }

  .reveal,
  .image-reveal {
    opacity: 1;
    transform: none;
    clip-path: inset(0);
  }
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .primary-nav {
    gap: 18px;
  }

  .utility-nav a[href^="tel"] {
    display: none;
  }

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

  .booking-menu {
    grid-row: auto;
  }

  .booking-date {
    grid-column: 1 / 3;
    grid-row: auto;
  }

  .date-time-grid {
    grid-template-columns: minmax(300px, 1fr) 136px;
  }

  .contact-field,
  .booking-submit,
  .form-error {
    grid-column: 1 / 3;
    grid-row: auto;
  }

  .program-grid,
  .voice-grid {
    grid-template-columns: 1fr;
  }

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

  .member-reserve-head,
  .member-week-form {
    grid-template-columns: 1fr;
  }

  .member-week-form {
    max-width: 960px;
  }

  .fun-section,
  .community-section,
  .faq-access {
    grid-template-columns: 1fr;
  }

  .faq {
    border-right: 0;
  }
}

@media (max-width: 760px) {
  :root {
    --header: 74px;
    --label-size: 15px;
  }

  body {
    padding-bottom: 96px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    padding: 0 10px;
  }

.brand img {
    width: auto;
    height: 54px;
  }

  .primary-nav {
    display: none;
  }

  .utility-nav {
    gap: 5px;
  }

  .utility-nav a[href^="tel"] {
    display: none;
  }

  .utility-nav .utility-button {
    min-height: 42px;
    padding: 0 8px;
    font-size: 11px;
  }

  .utility-nav .line-link {
    width: 74px;
    white-space: normal;
    line-height: 1.1;
    text-align: center;
  }

  .utility-nav .reserve-link {
    font-size: 12px;
  }

  .hero {
    min-height: 760px;
  }

  .hero::after {
    height: 18px;
  }

  .hero-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: 66% 34%;
  }

  .hero-panel img {
    filter: grayscale(1) contrast(1.08) brightness(1.18);
  }

  .hero-panel-main {
    grid-column: 1 / 4;
  }

  .hero-panel-main img {
    object-position: center 40%;
    object-fit: contain;
    background: var(--black);
  }

  .hero-color {
    top: 36%;
    right: 8%;
    left: 0;
    height: 104px;
  }

  .hero-content {
    top: var(--header);
    left: 16px;
    width: calc(100% - 32px);
    height: calc(66% - var(--header));
    min-height: 0;
    margin: 0;
    padding: 0 0 24px;
  }

  .hero-content h1 {
    gap: 5px;
    font-size: clamp(25px, 7.2vw, 29px);
    line-height: 1.05;
  }

  .hero-content h1 span {
    white-space: nowrap;
  }

  .hero-eyebrow {
    margin-bottom: 18px;
    font-size: 11px;
  }

  .hero-cta {
    min-width: 210px;
    margin-top: 18px;
    padding: 16px 24px;
  }

  .booking-section {
    padding: 56px 12px 40px;
  }

  .section-head {
    margin-bottom: 34px;
  }

  .section-head h2 {
    font-size: clamp(44px, 14vw, 68px);
  }

  .section-head h2::after {
    height: 24px;
  }

  .section-head p {
    margin-top: 32px;
    font-size: 15px;
  }

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

  .booking-menu .choice-stack {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .booking-menu .choice-stack button {
    min-height: 74px;
    text-align: center;
  }

  .booking-menu .choice-stack strong {
    font-size: 15px;
    line-height: 1.15;
  }

  .booking-menu .choice-stack span {
    font-size: 11px;
    line-height: 1.2;
  }

  .booking-field,
  .booking-submit,
  .booking-date,
    .contact-field,
    .form-error {
    grid-column: 1;
    grid-row: auto;
    border-right: 0;
  }

  .date-time-grid {
    grid-template-columns: 1fr;
  }

  .booking-time {
    padding-top: 9px;
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .booking-date .field-row {
    display: grid;
    grid-template-columns: 1fr auto;
  }

  #month-label {
    grid-column: 1;
    grid-row: 1;
    text-align: left;
  }

  .booking-date .field-label {
    grid-column: 1;
    grid-row: 2;
  }

  .week-buttons {
    grid-column: 2;
    grid-row: 1 / 3;
  }

  .date-row button {
    min-height: 48px;
    padding: 5px;
  }

  .date-row strong {
    font-size: 25px;
  }

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

  .booking-submit {
    display: grid;
    min-height: 108px;
  }

  .booking-submit p {
    font-size: 16px;
  }

  .booking-submit button {
    width: 100%;
  }

  .method-section {
    padding: 58px 12px 48px;
  }

  .method-section .section-head h2 {
    font-size: clamp(34px, 9.6vw, 40px);
  }

  .balanced-title span {
    white-space: normal;
  }

  .fun-image {
    min-height: 360px;
  }

  .fun-copy {
    padding: 44px 14px;
  }

  .fun-copy h2 {
    font-size: clamp(34px, 11vw, 48px);
  }

  .fun-points {
    grid-template-columns: 1fr;
    margin-top: 32px;
  }

  .fun-points article.is-featured {
    grid-column: 1;
    padding: 22px 16px;
  }

  .program-grid {
    gap: 12px;
    padding: 0 12px 56px;
  }

  .program-card {
    grid-template-rows: auto 1fr;
    min-height: 0;
  }

  .program-media,
  .program-media img {
    min-height: 300px;
  }

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

  .trainer-card p {
    font-size: 15px;
  }

  .trainer-card blockquote {
    margin: 0 8px 14px;
    font-size: 12px;
    line-height: 1.55;
  }

  .community-image img {
    min-height: 420px;
  }

  .community-copy {
    padding: 42px 12px;
  }

  .community-copy h2 {
    font-size: clamp(66px, 18vw, 86px);
  }

  .team-section {
    padding: 64px 12px;
  }

  .voice-section {
    padding: 62px 12px 72px;
  }

  .voice-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .voice-card:nth-child(even) {
    margin-top: 0;
  }

  .voice-card img {
    height: auto;
  }

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

  .price-strip div + div {
    border-left: 0;
  }

  .faq,
  .access {
    padding: 42px 12px;
  }

  .map-dialog-frame {
    height: 100%;
  }

  .map-stage {
    height: 68vh;
    min-height: 360px;
  }

  .bottom-bar {
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    min-height: 88px;
    padding: 9px 8px;
  }

  .bottom-bar a,
  .bottom-bar button {
    min-height: 70px;
  }

  .bottom-bar a,
  .bottom-bar button {
    grid-auto-flow: row;
    gap: 6px;
    padding: 8px 4px;
    font-size: 12px;
    text-align: center;
  }

  .bottom-bar > *::after {
    display: none;
  }

  .bottom-bar > * strong {
    font-size: 15px;
  }

  .member-floating-link {
    right: 8px;
    bottom: 100px;
    min-width: 0;
    max-width: calc(100vw - 16px);
    padding: 13px 14px;
  }

  .member-floating-link span {
    font-size: 15px;
  }

  .member-floating-link strong {
    font-size: 10px;
  }

  .diary-floating-link {
    top: calc(var(--header) + 8px);
    right: 10px;
    width: 78px;
  }

  .diary-floating-link span {
    font-size: 10px;
  }

  .diary-floating-link strong {
    font-size: 24px;
  }

  .member-simple-header img {
    height: 54px;
  }

  .member-login-section {
    padding: calc(var(--header) + 36px) 10px 48px;
  }

  .member-login-card {
    padding: 16px;
  }

  .member-reserve-section {
    padding: 38px 10px 108px;
  }

  .member-reserve-head {
    gap: 14px;
    margin-bottom: 18px;
  }

  .member-reserve-head h1 {
    font-size: clamp(54px, 19vw, 76px);
  }

  .member-reserve-head p:not(.eyebrow) {
    font-size: 15px;
  }

  .member-week-form {
    gap: 10px;
  }

  .member-week-panel {
    order: 1;
  }

  .member-control-panel {
    order: 2;
  }

  .member-panel-block,
  .member-submit-panel {
    padding: 12px;
  }

  .member-week-panel {
    padding: 8px;
  }

  .member-week-head {
    align-items: start;
    display: grid;
    grid-template-columns: 1fr auto;
  }

  .member-week-head strong {
    font-size: 28px;
  }

  .member-week-grid {
    grid-template-columns: 68px repeat(7, 82px);
    min-width: 642px;
  }

  .member-day-head,
  .member-time-head,
  .member-slot {
    min-height: 40px;
  }

  .member-slot strong {
    font-size: 22px;
  }

  .tool-main,
  .blog-main,
  .admin-shell {
    padding: calc(var(--header) + 38px) 10px 42px;
  }

  .tool-hero h1,
  .blog-hero h1,
  .admin-head h1 {
    font-size: clamp(32px, 11vw, 48px);
  }

  .tool-card,
  .blog-list,
  .admin-grid,
  .admin-stats {
    grid-template-columns: 1fr;
  }

  .management-links {
    grid-template-columns: 1fr;
  }

  .management-user {
    align-items: stretch;
    flex-direction: column;
  }

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

  .admin-list button {
    grid-row: auto;
    grid-column: auto;
  }
}
