@font-face {
  font-family: "Gowun Dodum";
  src: url("assets/fonts/GowunDodum-Regular.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Gowun Batang";
  src: url("assets/fonts/GowunBatang-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Gowun Batang";
  src: url("assets/fonts/GowunBatang-Bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Park Dahyun";
  src: url("assets/fonts/Ownglyph-ParkDahyun-v2.ttf") format("truetype"),
       url("assets/fonts/Ownglyph-ParkDahyun.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Sinsiu";
  src: url("assets/fonts/Ownglyph-Sinsiu.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Wissylist";
  src: url("assets/fonts/Ownglyph-Wissylist.ttf") format("truetype");
  font-display: swap;
}

:root {
  --cloud: #f0efea;
  --apricot: #f7d8c8;
  --peach: #eac9b7;
  --gray-blue: #9baec5;
  --indigo: #3a4f7a;
  --blue-fusion: #506c86;
  --baltic: #84b7d4;
  --ice: #c8dceb;
  --white: #ffffff;
  --ink: #23242a;
  --muted: rgba(35, 36, 42, 0.68);
  --line: rgba(58, 79, 122, 0.16);
  --shadow: 0 24px 64px rgba(58, 79, 122, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Gowun Dodum", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cloud);
  letter-spacing: 0;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 18px clamp(20px, 5vw, 64px);
  color: var(--ink);
  background: rgba(240, 239, 234, 0.9);
  box-shadow: 0 10px 32px rgba(58, 79, 122, 0.08);
  backdrop-filter: blur(16px);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(240, 239, 234, 0.94);
  box-shadow: 0 10px 32px rgba(58, 79, 122, 0.12);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 172px;
  height: 34px;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 26px);
  font-size: 14px;
  font-weight: 600;
}

.site-nav a {
  opacity: 0.86;
}

.site-nav a:hover {
  opacity: 1;
}

.site-nav a[aria-current="page"] {
  color: var(--indigo);
  opacity: 1;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  border-radius: 999px;
}

.hero {
  position: relative;
  min-height: 94vh;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 140px clamp(20px, 6vw, 86px) 84px;
  color: var(--white);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 164px clamp(20px, 6vw, 86px) clamp(76px, 10vw, 128px);
  background:
    linear-gradient(90deg, rgba(240, 239, 234, 0.96), rgba(240, 239, 234, 0.76)),
    url("assets/photo-studio-hero.png") center / cover;
}

.page-hero::after {
  content: "";
  position: absolute;
  right: clamp(12px, 5vw, 72px);
  bottom: -72px;
  width: min(310px, 40vw);
  aspect-ratio: 1;
  background: url("assets/page-studio-symbol.png") center / contain no-repeat;
  opacity: 0.06;
  pointer-events: none;
}

.page-hero h1 {
  max-width: 900px;
  color: var(--indigo);
  font-family: "Park Dahyun", "Gowun Dodum", sans-serif;
  font-size: clamp(38px, 5.5vw, 72px);
}

.page-hero p:last-child {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.85;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(110deg, rgba(22, 14, 8, 0.78) 0%, rgba(48, 36, 22, 0.52) 50%, rgba(58, 79, 122, 0.12) 100%),
    linear-gradient(0deg, rgba(22, 14, 8, 0.22), rgba(22, 14, 8, 0.03));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--blue-fusion);
  font-family: "Sinsiu", "Gowun Batang", serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hero .eyebrow {
  color: var(--apricot);
}

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

h1 {
  margin-bottom: 28px;
  font-family: "Wissylist", "Park Dahyun", "Gowun Dodum", sans-serif;
  font-size: clamp(50px, 8vw, 102px);
  line-height: 1.02;
  font-weight: 400;
}

h1 span {
  display: block;
}

h2 {
  margin-bottom: 0;
  color: var(--indigo);
  font-family: "Wissylist", "Gowun Dodum", sans-serif;
  font-size: clamp(32px, 4.3vw, 58px);
  line-height: 1.12;
  font-weight: 400;
}

h3 {
  color: var(--indigo);
  font-family: "Wissylist", "Gowun Dodum", sans-serif;
  font-size: 23px;
  line-height: 1.26;
  font-weight: 600;
}

.hero-copy {
  width: min(620px, 100%);
  margin-bottom: 34px;
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.88);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 23px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  font-weight: 600;
  font-size: 15px;
}

.button.primary {
  border-color: var(--white);
  background: var(--white);
  color: var(--indigo);
}

.button.ghost {
  color: var(--white);
}

.story,
.sessions,
.process,
.contact,
.values-band,
.tone {
  padding: clamp(76px, 10vw, 132px) clamp(20px, 6vw, 86px);
}

.page-section {
  padding-top: clamp(68px, 8vw, 104px);
}

.story {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: end;
  background:
    linear-gradient(0deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.34)),
    var(--cloud);
}

.story-symbol {
  position: absolute;
  right: clamp(8px, 5vw, 72px);
  top: 34px;
  width: min(250px, 34vw);
  opacity: 0.055;
  pointer-events: none;
}

.story p:last-child,
.contact p {
  margin-bottom: 0;
  font-size: 18px;
  line-height: 1.9;
  color: var(--muted);
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: end;
  margin-bottom: 38px;
}

.section-heading h2 {
  max-width: 800px;
}

.values-band {
  background: var(--indigo);
  color: var(--white);
}

.values-band h2,
.values-band h3 {
  color: var(--white);
}

.values-band .section-kicker,
.values-band .value-card span {
  color: var(--apricot);
}

.value-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 18px;
}

.value-card {
  min-height: 260px;
  padding: clamp(24px, 4vw, 42px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: var(--shadow);
}

.value-card.large {
  position: relative;
  overflow: hidden;
  grid-row: span 2;
  min-height: 540px;
  background:
    linear-gradient(145deg, rgba(247, 216, 200, 0.62), rgba(58, 79, 122, 0.74)),
    url("assets/photo-studio-hero.png") center / cover;
}

.value-card.large img {
  position: absolute;
  top: 34px;
  right: 34px;
  width: min(210px, 42%);
  opacity: 0.2;
}

.value-card span {
  margin-bottom: auto;
  font-family: "Gowun Batang", serif;
  font-weight: 700;
}

.value-card p,
.process-list span {
  margin-bottom: 0;
  line-height: 1.78;
}

.value-card p {
  color: rgba(255, 255, 255, 0.78);
}

.sessions {
  background: var(--cloud);
}

/* 상품안내 페이지 — 가로 2단 상세 레이아웃 */
.session-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.session-card {
  display: grid;
  grid-template-columns: 260px 1fr;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.58);
}

.session-card.featured {
  background: var(--apricot);
}

/* 홈 — 기존 4열 컴팩트 레이아웃 */
.session-grid.compact {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.session-grid.compact .session-card {
  display: flex;
  flex-direction: column;
  padding: clamp(20px, 3vw, 32px);
}

.session-card-header {
  padding: clamp(24px, 3vw, 36px);
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}

.session-card.featured .session-card-header {
  border-right-color: rgba(58, 79, 122, 0.14);
}

.session-card-body {
  padding: clamp(24px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.session-number {
  margin-bottom: 40px;
  color: var(--blue-fusion);
  font-family: "Gowun Batang", serif;
  font-weight: 700;
}

.session-card h3 {
  margin-bottom: 8px;
  font-size: 35px;
}

.session-name {
  margin-bottom: 28px;
  color: var(--blue-fusion);
  font-family: "Gowun Batang", serif;
}

.session-card strong {
  display: block;
  margin-bottom: 24px;
  color: var(--indigo);
  font-size: 27px;
  font-weight: 600;
}

.session-card p:not(.session-number):not(.session-name) {
  margin-bottom: 28px;
  color: var(--muted);
  line-height: 1.72;
}

.session-card span {
  margin-top: auto;
  color: var(--blue-fusion);
  font-size: 14px;
}

.tone {
  background: var(--white);
}

.tone-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.location-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1px;
  background: var(--line);
}

.location-grid article {
  min-height: 240px;
  padding: 30px;
  background: var(--white);
}

.location-grid p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.8;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: clamp(28px, 6vw, 88px);
  padding: clamp(76px, 10vw, 132px) clamp(20px, 6vw, 86px);
  background: var(--white);
}

.text-stack p {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.9;
}

.text-stack p:last-child {
  margin-bottom: 0;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(72px, 9vw, 112px) clamp(20px, 6vw, 86px);
  background: var(--apricot);
}

.cta-band h2 {
  max-width: 760px;
}

.reserve-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 18px;
  background: var(--cloud);
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.75fr);
  gap: 18px;
  background: var(--cloud);
}

.booking-form,
.booking-side article,
.admin-panel {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.68);
}

.booking-form {
  padding: clamp(28px, 5vw, 48px);
}

.form-heading {
  margin-bottom: 30px;
}

.form-heading h2 {
  margin-bottom: 16px;
}

.form-heading p:last-child,
.form-result {
  color: var(--muted);
  line-height: 1.75;
}

.booking-form label {
  display: grid;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--indigo);
  font-weight: 600;
}

.booking-form input,
.booking-form select,
.booking-form textarea,
.admin-actions select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  font: inherit;
  padding: 12px 14px;
}

.booking-form textarea {
  resize: vertical;
}

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

.form-result {
  margin: 18px 0 0;
  color: var(--indigo);
  font-weight: 600;
}

.booking-side {
  display: grid;
  align-content: start;
  gap: 18px;
}

.booking-side article {
  padding: clamp(24px, 4vw, 36px);
}

.booking-side h2 {
  margin-bottom: 18px;
}

.booking-side p,
.booking-side li {
  color: var(--muted);
  line-height: 1.8;
}

.booking-side ul {
  margin: 0;
  padding-left: 20px;
}

.admin-link {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  color: var(--indigo);
  font-weight: 600;
}

.admin-hero {
  background:
    linear-gradient(90deg, rgba(240, 239, 234, 0.98), rgba(240, 239, 234, 0.84)),
    url("assets/photo-studio-hero.png") center / cover;
}

.admin-panel {
  padding: clamp(28px, 5vw, 48px);
}

.admin-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.admin-toolbar h2 {
  margin-bottom: 0;
}

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

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

.reservation-card {
  padding: 22px;
  border: 1px solid var(--line);
  background: var(--white);
}

.reservation-main {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.reservation-main h3 {
  margin-bottom: 8px;
}

.reservation-main p,
.reservation-card dd,
.reservation-card dt {
  margin: 0;
}

.reservation-id {
  color: var(--blue-fusion);
  font-family: "Gowun Batang", serif;
  font-size: 14px;
}

.status-pill {
  align-self: start;
  min-width: 78px;
  padding: 7px 12px;
  background: var(--apricot);
  color: var(--indigo);
  text-align: center;
  font-weight: 600;
}

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

.reservation-card dl div {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 14px;
}

.reservation-card dt {
  color: var(--blue-fusion);
  font-weight: 600;
}

.reservation-card dd {
  color: var(--muted);
  line-height: 1.7;
}

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

.reservation-actions button {
  min-height: 36px;
  border: 1px solid var(--line);
  background: var(--cloud);
  color: var(--indigo);
  font: inherit;
  font-weight: 600;
  padding: 0 12px;
  cursor: pointer;
}

.empty-state {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.reserve-card {
  min-height: 420px;
  padding: clamp(28px, 5vw, 48px);
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid var(--line);
}

.reserve-card.featured {
  background: var(--apricot);
}

.reserve-card h2 {
  margin-bottom: 22px;
}

.reserve-card p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.reserve-card ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 2;
  font-size: 18px;
}

.reserve-card .button {
  margin-top: 18px;
  margin-right: 10px;
}

.button.dark {
  border-color: var(--indigo);
}

.button.primary.dark {
  background: var(--indigo);
  color: var(--white);
}

.button.ghost.dark {
  color: var(--indigo);
}

.page-contact {
  min-height: calc(100vh - 88px);
  padding-top: 164px;
}

.tone-list article {
  min-height: 240px;
  padding: 30px;
  background: var(--white);
}

.tone-list p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.8;
}

.process {
  background: #e8e5dc;
}

.process-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  background: rgba(58, 79, 122, 0.18);
}

.process-list li {
  min-height: 250px;
  padding: 28px;
  background: var(--cloud);
}

.process-list strong {
  display: block;
  margin-bottom: 78px;
  color: var(--blue-fusion);
  font-family: "Gowun Batang", serif;
  font-size: 23px;
}

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

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 460px);
  gap: clamp(32px, 7vw, 96px);
  align-items: center;
  background: #252c3a;
  color: var(--white);
}

.contact h2 {
  margin-bottom: 24px;
  color: var(--white);
}

.contact p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-panel {
  display: grid;
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-panel a,
.contact-panel span {
  display: block;
  padding: 22px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  font-size: clamp(17px, 1.7vw, 22px);
  font-weight: 600;
}

.contact-panel span {
  border-bottom: 0;
  color: var(--apricot);
  line-height: 1.55;
}

.map-wrap {
  margin-top: 32px;
}

.map-frame-wrap {
  position: relative;
  width: 100%;
  height: 420px;
  border: 1px solid var(--line);
  overflow: hidden;
}

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

.map-frame.hidden {
  display: none;
}

.map-tabs {
  display: flex;
  margin-top: 12px;
}

.map-tab {
  min-height: 42px;
  padding: 0 22px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--muted);
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 150ms, color 150ms;
}

.map-tab + .map-tab {
  border-left: none;
}

.map-tab.is-active {
  background: var(--indigo);
  border-color: var(--indigo);
  color: var(--white);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 6vw, 86px);
  background: var(--cloud);
  color: rgba(35, 36, 42, 0.62);
  font-size: 13px;
}

.site-footer img {
  width: 144px;
  height: auto;
  opacity: 0.8;
}

/* ── 어떤 순간 섹션 ───────────────────────────────────────────────────────── */

.for-whom {
  padding: clamp(76px, 10vw, 132px) clamp(20px, 6vw, 86px);
  background: var(--white);
}

.for-whom-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 46px;
}

.for-whom-card {
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line);
  background: var(--cloud);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 200ms, background 200ms;
}

.for-whom-card:hover {
  border-color: var(--gray-blue);
  background: rgba(247, 216, 200, 0.18);
}

.for-whom-tag {
  align-self: flex-start;
  padding: 5px 11px;
  background: var(--apricot);
  color: var(--indigo);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.for-whom-card h3 {
  font-family: "Gowun Dodum", sans-serif;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.55;
  margin-bottom: 0;
  color: var(--indigo);
}

.for-whom-card p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.78;
}

.for-whom-card .for-whom-link {
  margin-top: auto;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue-fusion);
}

/* ── 세션 카드 추천 대상 ──────────────────────────────────────────────────── */

.session-for {
  margin-bottom: 16px;
  font-size: 13px;
  color: var(--blue-fusion);
  font-family: "Gowun Batang", serif;
  line-height: 1.6;
}

.session-card.featured .session-for {
  color: var(--indigo);
}

/* ── tone-list 4열 → 2×2 ─────────────────────────────────────────────────── */

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

@media (max-width: 980px) {
  .story,
  .contact,
  .value-grid,
  .split-section,
  .reserve-grid,
  .booking-layout {
    grid-template-columns: 1fr;
  }

  .session-grid,
  .process-list,
  .location-grid,
  .for-whom-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .value-card.large {
    min-height: 420px;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 68px;
    padding: 14px 20px;
  }

  .brand {
    width: 134px;
    height: 28px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 20px 20px;
    background: rgba(240, 239, 234, 0.97);
    color: var(--ink);
    box-shadow: 0 20px 36px rgba(58, 79, 122, 0.13);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }

  .hero {
    min-height: 90vh;
    padding-top: 116px;
  }

  h1 {
    font-size: clamp(42px, 12vw, 58px);
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(20, 24, 31, 0.84), rgba(20, 24, 31, 0.48)),
      linear-gradient(0deg, rgba(20, 24, 31, 0.46), rgba(20, 24, 31, 0.04));
  }

  .section-heading {
    display: block;
  }

  .session-grid,
  .process-list,
  .tone-list,
  .location-grid,
  .for-whom-grid {
    grid-template-columns: 1fr;
  }

  .process-list li,
  .tone-list article {
    min-height: 210px;
  }

  .session-number {
    margin-bottom: 28px;
  }

  .process-list strong {
    margin-bottom: 52px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .page-hero {
    padding-top: 124px;
  }

  .cta-band {
    display: block;
  }

  .cta-band .button {
    margin-top: 24px;
  }

  .reserve-card .button {
    width: 100%;
    margin-right: 0;
  }

  .form-row,
  .reservation-card dl div {
    grid-template-columns: 1fr;
  }

  .admin-toolbar,
  .admin-actions,
  .reservation-main {
    display: grid;
  }
}

/* ── 예약 위저드 ─────────────────────────────────────────────────────────── */

.step-bar {
  display: flex;
  margin-bottom: 36px;
  border: 1px solid var(--line);
  overflow: hidden;
}

.step-bar-item {
  flex: 1;
  padding: 11px 6px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  background: var(--cloud);
  border-right: 1px solid var(--line);
  transition: background 200ms, color 200ms;
}

.step-bar-item:last-child {
  border-right: none;
}

.step-bar-item.is-active {
  background: var(--indigo);
  color: var(--white);
}

.step-bar-item.is-done {
  background: var(--ice);
  color: var(--indigo);
}

.step-panel {
  display: none;
}

.step-panel.is-active {
  display: block;
}

/* 서비스 선택 카드 */
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}

.service-card {
  padding: 22px 18px;
  border: 2px solid var(--line);
  background: var(--white);
  cursor: pointer;
  text-align: left;
  font: inherit;
  transition: border-color 150ms, background 150ms;
}

.service-card:hover {
  border-color: var(--gray-blue);
}

.service-card.is-selected {
  border-color: var(--indigo);
  background: rgba(58, 79, 122, 0.04);
}

.service-card-name {
  display: block;
  color: var(--indigo);
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 5px;
}

.service-card-price {
  display: block;
  color: var(--blue-fusion);
  font-size: 14px;
  font-family: "Gowun Batang", serif;
  font-weight: 700;
}

.service-card-desc {
  display: block;
  color: var(--muted);
  font-size: 13px;
  margin-top: 8px;
  line-height: 1.6;
}

/* 시간 슬롯 */
.time-status {
  margin: 10px 0 14px;
  color: var(--muted);
  font-size: 14px;
}

.time-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 4px 0 28px;
}

.time-slot {
  min-height: 46px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 150ms, background 150ms, color 150ms;
}

.time-slot:hover:not(:disabled) {
  border-color: var(--gray-blue);
}

.time-slot.is-selected {
  background: var(--indigo);
  border-color: var(--indigo);
  color: var(--white);
}

.time-slot:disabled {
  background: var(--cloud);
  color: rgba(35, 36, 42, 0.32);
  cursor: not-allowed;
  font-size: 12px;
}

/* 단계 이동 버튼 */
.step-nav {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 28px;
}

.step-nav .button {
  min-width: 120px;
}

/* 결제 요약 */
.booking-summary {
  margin: 0 0 24px;
  padding: 20px;
  border: 1px solid var(--line);
  background: var(--cloud);
  display: grid;
  gap: 12px;
}

.booking-summary-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 14px;
  font-size: 15px;
}

.booking-summary-row dt {
  color: var(--blue-fusion);
  font-weight: 600;
  margin: 0;
}

.booking-summary-row dd {
  margin: 0;
  color: var(--ink);
}

/* 완료 화면 */
.wizard-complete {
  padding: 52px 20px 40px;
  text-align: center;
}

.wizard-complete h3 {
  margin-bottom: 18px;
  font-size: 28px;
}

.wizard-complete p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 8px;
}

.complete-detail {
  color: var(--indigo) !important;
  font-weight: 600;
  font-family: "Gowun Batang", serif;
}

/* 무통장입금 계좌 안내 */
.bank-box {
  margin: 0 0 24px;
  padding: 24px;
  border: 2px solid var(--indigo);
  background: rgba(58, 79, 122, 0.04);
  text-align: left;
}

.bank-box-label {
  margin: 0 0 10px;
  color: var(--blue-fusion);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.bank-box-account {
  margin: 0 0 4px;
  color: var(--indigo);
  font-family: "Gowun Batang", serif;
  font-size: 22px;
  font-weight: 700;
}

.bank-box-holder,
.bank-box-deadline {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.bank-box-deadline {
  margin-top: 10px;
  color: var(--indigo);
  font-weight: 600;
}

/* 결제 실패 배너 */
.pay-fail-banner {
  margin-bottom: 20px;
  padding: 14px 16px;
  background: var(--apricot);
  color: var(--indigo);
}

/* 선택 항목 선택 사항 레이블 */
.label-opt {
  font-weight: 400;
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 520px) {
  .service-grid {
    grid-template-columns: 1fr;
  }

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

  .step-bar-item {
    font-size: 11px;
    padding: 10px 4px;
  }
}
