@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css");

:root {
  --bg: #0b1017;
  --bg-2: #141a24;
  --bg-3: #1c2431;
  --paper: #f7f3eb;
  --paper-2: #fcfaf6;
  --paper-3: #f1e9dc;
  --line: rgba(255, 255, 255, 0.08);
  --line-dark: rgba(18, 24, 28, 0.09);
  --ink: #f6f1e8;
  --ink-dark: #172019;
  --muted: rgba(246, 241, 232, 0.78);
  --muted-dark: #5c685c;
  --accent: #d0b06b;
  --accent-2: #83937c;
  --shell: min(100% - 56px, 1380px);
  --shadow: 0 28px 70px rgba(10, 15, 22, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  line-break: strict;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: "Pretendard Variable", "Pretendard", "Noto Sans KR", sans-serif;
  color: var(--ink);
  background: var(--bg);
  word-break: keep-all;
  overflow-wrap: normal;
  text-wrap: pretty;
  letter-spacing: -0.01em;
}

p,
li,
dd,
dt,
figcaption,
small,
label,
th,
td {
  word-break: keep-all;
  overflow-wrap: normal;
  text-wrap: pretty;
}

h1,
h2,
h3,
h4,
h5,
h6,
strong {
  word-break: keep-all;
  overflow-wrap: normal;
  text-wrap: balance;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
select,
textarea {
  font: inherit;
}

.page-shell {
  width: var(--shell);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  padding: 16px 0;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: var(--shell);
  margin: 0 auto;
  padding: 18px 32px;
  border-radius: 999px;
  background: rgba(19, 18, 24, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(20px);
  box-shadow: 0 18px 46px rgba(4, 8, 12, 0.24);
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand-mark {
  display: grid;
  gap: 2px;
}

.brand-mark strong {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-mark span {
  font-size: 0.78rem;
  color: rgba(246, 241, 232, 0.74);
}

.menu-chip {
  border: 0;
  background: transparent;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0;
  font-family: "Pretendard Variable", "Pretendard", "Noto Sans KR", sans-serif;
  font-size: 0.94rem;
  font-weight: 700;
  cursor: pointer;
}

.menu-dots {
  position: relative;
  width: 12px;
  height: 18px;
  background:
    radial-gradient(circle, #f6f1e8 2px, transparent 3px) center top/4px 6px no-repeat,
    radial-gradient(circle, #f6f1e8 2px, transparent 3px) center center/4px 6px no-repeat,
    radial-gradient(circle, #f6f1e8 2px, transparent 3px) center bottom/4px 6px no-repeat;
}

.nav-center {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: center;
}

.nav-link {
  position: relative;
  padding: 8px 0;
  font-size: 0.92rem;
  color: rgba(246, 241, 232, 0.82);
  transition: color 180ms ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: #fff;
}

.nav-link:hover::after,
.nav-link.is-active::after {
  transform: scaleX(1);
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Pretendard Variable", "Pretendard", "Noto Sans KR", sans-serif;
  font-size: 1rem;
  font-weight: 800;
}

.phone-link::before {
  content: "☎";
  color: rgba(246, 241, 232, 0.82);
  font-size: 0.88rem;
  line-height: 1;
}

.open-pill,
.btn,
.ghost-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.open-pill {
  min-width: 164px;
  border: 1px solid rgba(246, 241, 232, 0.58);
  font-family: "Pretendard Variable", "Pretendard", "Noto Sans KR", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.open-pill:hover,
.btn:hover,
.ghost-link:hover {
  transform: translateY(-1px);
}

.site-map-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  opacity: 1;
  transition: opacity 220ms ease;
}

.site-map-overlay[aria-hidden="true"] {
  opacity: 0;
  pointer-events: none;
}

.site-map-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 10, 16, 0.78);
  backdrop-filter: blur(12px);
}

.site-map-panel {
  position: relative;
  width: var(--shell);
  margin: 92px auto 0;
  margin-bottom: 28px;
  padding: 32px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(13, 20, 30, 0.98), rgba(18, 27, 39, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 90px rgba(3, 7, 12, 0.36);
}

.site-map-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 26px;
}

.site-map-head p {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 0.84rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(246, 241, 232, 0.54);
  font-weight: 800;
}

.site-map-close {
  border: 0;
  background: transparent;
  color: rgba(246, 241, 232, 0.84);
  font-family: "Manrope", sans-serif;
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  cursor: pointer;
}

.site-map-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.site-map-group {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.site-map-group span {
  display: block;
  color: var(--accent);
  font-family: "Manrope", sans-serif;
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 800;
}

.site-map-group h3 {
  margin: 16px 0 6px;
  font-family: "Noto Serif KR", "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 1.1;
  font-weight: 600;
}

.site-map-group small {
  display: block;
  color: rgba(246, 241, 232, 0.4);
  font-family: "Manrope", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: lowercase;
}

.site-map-group ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.site-map-group li a {
  color: rgba(246, 241, 232, 0.88);
}

.home-hero,
.sub-hero {
  position: relative;
  overflow: hidden;
}

.home-hero {
  min-height: 100vh;
  background: #0b131e;
}

.home-hero::before,
.sub-hero::before {
  content: "";
  position: absolute;
  inset: 0;
}

.home-hero::before {
  background:
    linear-gradient(180deg, rgba(7, 10, 16, 0.18), rgba(7, 10, 16, 0.8)),
    radial-gradient(circle at 86% 30%, rgba(237, 168, 92, 0.18), transparent 22%),
    url("assets/client/hero-main-reference.png?v=20260606newhero") center/cover no-repeat;
  transform: scale(1.03);
}

.hero-shell {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  padding: 138px 0 88px;
}

.hero-main {
  max-width: 720px;
}

.hero-main-composed {
  max-width: 980px;
}

.hero-kicker,
.page-kicker,
.section-kicker {
  margin: 0 0 22px;
  color: rgba(246, 241, 232, 0.92);
  font-family: "Pretendard Variable", "Pretendard", "Noto Sans KR", sans-serif;
  font-size: clamp(1.02rem, 1.08vw, 1.18rem);
  letter-spacing: 0.055em;
  text-transform: uppercase;
  font-weight: 850;
  line-height: 1.35;
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
}

.hero-title,
.hero-title-display {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  line-height: 0.92;
  letter-spacing: -0.035em;
  font-weight: 600;
  text-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

.page-title,
.section-title,
.display-title {
  margin: 0;
  font-family: "Noto Serif KR", "Cormorant Garamond", serif;
  line-height: 1.16;
  letter-spacing: -0.04em;
  font-weight: 600;
}

.hero-title {
  font-size: clamp(4rem, 8vw, 7rem);
}

.hero-title-display {
  font-family: "Noto Serif KR", "Cormorant Garamond", serif;
  font-size: clamp(3.55rem, 5.6vw, 5.95rem);
  line-height: 1.08;
  letter-spacing: -0.075em;
  word-break: keep-all;
  text-wrap: balance;
}

.hero-title span {
  display: block;
}

.hero-title-display span {
  white-space: nowrap;
}

.hero-script {
  margin: 24px 0 0;
  color: rgba(229, 202, 126, 0.98);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.22rem, 1.7vw, 1.72rem);
  font-style: italic;
  font-weight: 600;
  letter-spacing: 0.045em;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.32);
}

.hero-tagline {
  margin: 22px 0 0;
  color: #ebd54e;
  font-family: "Manrope", sans-serif;
  font-size: 0.98rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 800;
}

.hero-lead,
.page-lead {
  margin: 28px 0 0;
  color: rgba(246, 241, 232, 0.84);
  line-height: 1.95;
  max-width: 64ch;
  font-size: 1.03rem;
}

.hero-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.hero-actions .btn,
.hero-actions .ghost-link {
  min-height: 62px;
  padding: 0 34px;
  font-size: 1.08rem;
  font-weight: 850;
  letter-spacing: -0.01em;
}

.hero-actions .ghost-link {
  border-color: rgba(246, 241, 232, 0.32);
  background: rgba(8, 13, 20, 0.38);
  color: rgba(255, 255, 255, 0.96);
}

.hero-side-story {
  position: relative;
  min-height: 520px;
}

.hero-side-ring {
  display: none;
}

.hero-side-copy {
  position: absolute;
  right: 10px;
  bottom: 42px;
  max-width: 350px;
  padding: 22px 26px 24px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(14, 20, 30, 0.74), rgba(10, 15, 22, 0.88));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 40px rgba(4, 8, 14, 0.18);
  display: grid;
  gap: 8px;
  text-align: left;
}

.hero-side-copy strong {
  color: rgba(246, 241, 232, 0.72);
  font-family: "Pretendard Variable", "Pretendard", "Noto Sans KR", sans-serif;
  font-size: 0.82rem;
  line-height: 1;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 800;
}

.hero-side-copy span {
  color: rgba(255, 255, 255, 0.92);
  font-family: "Noto Serif KR", "Cormorant Garamond", serif;
  font-size: clamp(1.34rem, 1.9vw, 2rem);
  line-height: 1.5;
  letter-spacing: -0.025em;
  font-weight: 600;
}

.btn {
  border: 1px solid transparent;
  font-family: "Pretendard Variable", "Pretendard", "Noto Sans KR", sans-serif;
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0;
}

.btn-gold {
  background: var(--accent);
  color: #16191a;
}

.btn-dark {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--ink);
}

.btn-light {
  background: #151d24;
  color: #fff;
}

.ghost-link {
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(246, 241, 232, 0.92);
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-booking {
  justify-self: end;
  width: min(100%, 430px);
  padding: 34px 32px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(10, 16, 23, 0.76), rgba(12, 19, 28, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 70px rgba(5, 10, 15, 0.28);
  backdrop-filter: blur(18px);
}

.booking-label {
  margin: 0 0 18px;
  font-family: "Manrope", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 800;
}

.booking-title {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.booking-copy {
  margin: 18px 0 0;
  color: rgba(246, 241, 232, 0.76);
  line-height: 1.85;
}

.booking-points {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.booking-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(246, 241, 232, 0.88);
}

.booking-points li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.booking-actions {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.hero-statbar {
  position: relative;
  z-index: 1;
  padding-bottom: 48px;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.stat-card {
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(10, 16, 23, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.stat-card span {
  display: block;
  color: rgba(246, 241, 232, 0.56);
  font-family: "Manrope", sans-serif;
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 800;
}

.stat-card strong {
  display: block;
  margin-top: 10px;
  font-size: 1.18rem;
  line-height: 1.45;
  font-weight: 800;
}

.section-band {
  width: 100%;
  padding: 108px 0;
}

.tone-paper {
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%);
  color: var(--ink-dark);
}

.tone-paper-alt {
  background: linear-gradient(180deg, var(--paper-3) 0%, var(--paper) 100%);
  color: var(--ink-dark);
}

.tone-dark {
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg-3) 100%);
  color: var(--ink);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 34px;
}

.section-head-copy {
  max-width: 780px;
}

.section-head-copy p:last-child {
  margin: 18px 0 0;
  line-height: 1.9;
  max-width: 64ch;
}

.section-title {
  font-size: clamp(2.8rem, 5vw, 5rem);
}

.poetic-composition {
  display: grid;
  gap: 42px;
}

.poetic-header {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  display: grid;
  gap: 16px;
}

.poetic-kicker {
  margin: 0;
  color: #88744b;
  font-family: "Pretendard Variable", "Pretendard", "Noto Sans KR", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
}

.poetic-header h2 {
  margin: 0;
  color: #1b231d;
  font-family: "Noto Serif KR", "Cormorant Garamond", serif;
  font-size: clamp(2.15rem, 4vw, 3.3rem);
  line-height: 1.34;
  letter-spacing: -0.03em;
  font-weight: 600;
  text-wrap: balance;
}

.poetic-header p:last-child {
  margin: 0;
  color: #667062;
  line-height: 1.95;
  max-width: 62ch;
  margin-inline: auto;
}

.poetic-panel {
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(9, 12, 22, 0.18);
}

.poetic-panel-stage {
  position: relative;
  min-height: 468px;
  padding: 66px 48px 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  background:
    radial-gradient(circle at 7% 18%, rgba(255, 168, 120, 0.72), transparent 8%),
    radial-gradient(circle at 91% 22%, rgba(255, 174, 120, 0.56), transparent 7%),
    linear-gradient(135deg, rgba(255,255,255,0.18) 8%, transparent 9% 25%, rgba(255,255,255,0.14) 26%, transparent 27% 46%, rgba(255,255,255,0.12) 47%, transparent 48% 66%, rgba(255,255,255,0.14) 67%, transparent 68% 86%, rgba(255,255,255,0.1) 87%),
    linear-gradient(180deg, rgba(14, 18, 42, 0.12), rgba(9, 13, 30, 0.24)),
    repeating-linear-gradient(-35deg, #2e335f 0 86px, #161a39 86px 172px);
}

.poetic-panel-stage::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 33%;
  background: rgba(6, 9, 18, 0.22);
}

.poetic-panel-copy,
.poetic-panel-caption {
  position: relative;
  z-index: 1;
}

.poetic-panel-copy p {
  margin: 0;
  color: #fff8ef;
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.1rem, 7vw, 5.6rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
  font-style: italic;
  font-weight: 600;
}

.poetic-panel-divider {
  position: relative;
  z-index: 1;
  width: 1px;
  height: 92px;
  background: rgba(255, 255, 255, 0.34);
}

.poetic-panel-caption {
  text-align: center;
  display: grid;
  gap: 8px;
}

.poetic-panel-caption strong,
.poetic-panel-caption span {
  display: block;
}

.poetic-panel-caption strong {
  color: #ffffff;
  font-size: 1.95rem;
  line-height: 1.45;
  font-weight: 800;
}

.poetic-panel-caption span {
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.5rem;
  line-height: 1.4;
  font-weight: 700;
}

.poetic-storyline {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) 180px;
  align-items: center;
  gap: 46px;
}

.poetic-story-copy {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
  display: grid;
  gap: 14px;
}

.poetic-story-copy p {
  margin: 0;
  color: #737d73;
  line-height: 2;
  max-width: 36ch;
  margin-inline: auto;
}

.poetic-block-stack {
  position: relative;
  min-height: 220px;
}

.poetic-block-stack .block {
  position: absolute;
  display: block;
  background: linear-gradient(180deg, #44484f 0%, #2b2f35 100%);
  box-shadow: 0 18px 38px rgba(13, 18, 26, 0.16);
}

.poetic-block-stack-left .large {
  left: 22px;
  top: 24px;
  width: 92px;
  height: 92px;
}

.poetic-block-stack-left .medium {
  left: 0;
  top: 60px;
  width: 66px;
  height: 66px;
}

.poetic-block-stack-left .small {
  left: 74px;
  top: 142px;
  width: 80px;
  height: 44px;
}

.poetic-block-stack-right .gold {
  right: 14px;
  top: 92px;
  width: 102px;
  height: 52px;
  background: linear-gradient(180deg, #d9b66a 0%, #b68a31 100%);
}

.poetic-block-stack-right .medium {
  right: 82px;
  top: 170px;
  width: 76px;
  height: 76px;
}

.poetic-block-stack-right .tall {
  right: 0;
  top: 140px;
  width: 56px;
  height: 86px;
  background: linear-gradient(180deg, #8f9094 0%, #696b70 100%);
}

.poetic-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.poetic-fact-card {
  padding: 28px;
  border-radius: 30px;
  background: #fffdf8;
  border: 1px solid rgba(18, 24, 28, 0.08);
  box-shadow: 0 18px 38px rgba(13, 18, 26, 0.08);
}

.poetic-fact-card span {
  display: block;
  margin-bottom: 12px;
  color: #7d906c;
  font-family: "Pretendard Variable", "Pretendard", "Noto Sans KR", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 800;
}

.poetic-fact-card strong {
  display: block;
  color: #202a22;
  font-size: 1.18rem;
  line-height: 1.6;
  font-weight: 800;
}

.poetic-fact-card p {
  margin: 12px 0 0;
  color: #677268;
  line-height: 1.85;
}

.quick-grid,
.overview-grid,
.split-grid,
.card-grid,
.info-grid,
.contact-grid,
.media-grid,
.faq-grid {
  display: grid;
  gap: 18px;
}

.quick-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.summary-stage {
  display: grid;
  gap: 28px;
}

.summary-stage-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.summary-stage-head p,
.summary-stage-head span {
  margin: 0;
  font-family: "Pretendard Variable", "Pretendard", "Noto Sans KR", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
}

.summary-stage-head p {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.6rem, 8vw, 5.6rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: #17211a;
  font-weight: 600;
}

.summary-stage-head span {
  font-size: 0.78rem;
  color: #7f897f;
}

.summary-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: 24px;
  align-items: stretch;
}

.summary-media {
  position: relative;
  min-height: 560px;
  border-radius: 36px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(7, 12, 18, 0.12), rgba(7, 12, 18, 0.62)),
    url("assets/client/hero-render-day.png") center/cover no-repeat;
  box-shadow: var(--shadow);
}

body.page-home .summary-media {
  background:
    linear-gradient(180deg, rgba(7, 12, 18, 0.16), rgba(7, 12, 18, 0.66)),
    url("assets/client/hero-render-day.png") center/cover no-repeat;
}

.summary-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9, 15, 22, 0.02), rgba(9, 15, 22, 0.34)),
    radial-gradient(circle at 78% 22%, rgba(223, 176, 92, 0.16), transparent 26%);
}

.summary-media-copy {
  position: absolute;
  left: 34px;
  bottom: 30px;
  z-index: 1;
  display: grid;
  gap: 12px;
  max-width: 70%;
}

.summary-media-copy p,
.summary-media-copy h4 {
  margin: 0;
}

.summary-media-copy p {
  font-family: "Pretendard Variable", "Pretendard", "Noto Sans KR", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(246, 241, 232, 0.84);
  font-weight: 800;
}

.summary-media-copy h4 {
  font-family: "Noto Serif KR", "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3.25vw, 3.05rem);
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: #fff8ee;
  font-weight: 600;
}

.summary-text-panel,
.summary-story,
.summary-chip {
  border-radius: 32px;
  border: 1px solid rgba(18, 24, 28, 0.08);
  box-shadow: var(--shadow);
}

.summary-text-panel {
  padding: 30px;
  background: #fffdf8;
  display: grid;
  gap: 16px;
  align-content: start;
}

.summary-text-panel h3,
.summary-story h3 {
  margin: 0;
  font-family: "Noto Serif KR", "Cormorant Garamond", serif;
  font-size: clamp(1.95rem, 3.25vw, 2.8rem);
  line-height: 1.34;
  letter-spacing: -0.03em;
  font-weight: 600;
  color: #1b241e;
}

.summary-overline,
.summary-mark {
  margin: 0;
  font-family: "Pretendard Variable", "Pretendard", "Noto Sans KR", sans-serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 800;
}

.summary-overline {
  font-size: 0.78rem;
  color: #7d906c;
}

.summary-mark {
  font-size: 0.82rem;
  color: #1f2a20;
}

.summary-prose,
.summary-text-panel li,
.summary-story p {
  margin: 0;
  color: #5b665d;
  line-height: 1.78;
}

.summary-divider {
  width: 100%;
  height: 1px;
  background: rgba(18, 24, 28, 0.1);
}

.summary-points {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
}

.summary-bottom {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 24px;
}

.summary-story {
  position: relative;
  overflow: hidden;
  padding: 32px;
  background:
    radial-gradient(circle at 16% 8%, rgba(222, 187, 111, 0.24), transparent 32%),
    radial-gradient(circle at 92% 16%, rgba(83, 116, 94, 0.28), transparent 34%),
    linear-gradient(135deg, #101a28 0%, #142033 42%, #0d1723 100%);
  border-color: rgba(223, 191, 124, 0.22);
  box-shadow: 0 30px 74px rgba(7, 12, 20, 0.24);
  color: var(--ink);
}

.summary-story::after {
  content: "";
  position: absolute;
  inset: 1px;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255, 248, 232, 0.12), transparent 36%),
    linear-gradient(315deg, rgba(255, 255, 255, 0.06), transparent 42%);
  mix-blend-mode: screen;
}

.summary-story > * {
  position: relative;
  z-index: 1;
}

.summary-story h3 {
  color: #f7f1e8;
}

.summary-story p {
  color: rgba(246, 241, 232, 0.82);
}

.summary-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.summary-action-row .btn,
.summary-action-row .ghost-link {
  min-height: 54px;
  padding: 0 24px;
  font-size: 0.98rem;
  font-weight: 850;
}

.summary-action-row .ghost-link {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(246, 241, 232, 0.28);
  color: rgba(255, 255, 255, 0.94);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.summary-chip-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.summary-chip {
  min-height: 124px;
  padding: 22px 18px;
  background: #fffdf8;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.summary-chip span,
.summary-chip strong {
  display: block;
}

.summary-chip span {
  margin-bottom: 10px;
  color: #6d7a6d;
  font-family: "Pretendard Variable", "Pretendard", "Noto Sans KR", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 800;
}

.summary-chip strong {
  color: #1f2921;
  font-size: 0.98rem;
  line-height: 1.48;
  font-weight: 800;
}

.summary-links {
  display: grid;
  gap: 18px;
}

.quick-card,
.content-card,
.panel-card,
.contact-card,
.faq-card {
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.reservation-card {
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.quick-card {
  min-height: 206px;
  padding: 26px;
  display: grid;
  grid-template-rows: auto 1fr;
  align-content: start;
  gap: 22px;
  background:
    linear-gradient(180deg, rgba(7, 12, 18, 0.24), rgba(7, 12, 18, 0.72)),
    linear-gradient(135deg, #243548 0%, #516272 100%);
  color: #fff;
}

.quick-card:nth-child(2n) {
  background:
    linear-gradient(180deg, rgba(7, 12, 18, 0.24), rgba(7, 12, 18, 0.72)),
    linear-gradient(135deg, #29362b 0%, #5f6f57 100%);
}

.quick-card:nth-child(3n) {
  background:
    linear-gradient(180deg, rgba(7, 12, 18, 0.24), rgba(7, 12, 18, 0.72)),
    linear-gradient(135deg, #45302e 0%, #876964 100%);
}

.card-label {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-family: "Pretendard Variable", "Pretendard", "Noto Sans KR", sans-serif;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 800;
}

.quick-card h3,
.content-card h3,
.panel-card h3,
.contact-card h3,
.faq-card h3 {
  margin: 0;
  font-family: "Noto Serif KR", "Cormorant Garamond", serif;
  font-size: 1.68rem;
  line-height: 1.3;
  letter-spacing: -0.02em;
  font-weight: 600;
  color: #18211b;
}

.quick-card h3 {
  color: #fff8ef;
}

.quick-card p,
.content-card p,
.panel-card p,
.contact-card p,
.faq-card p,
.content-table dd,
.content-list li,
.media-card p {
  margin: 0;
  line-height: 1.85;
}

.quick-card p,
.overview-spec-card p,
.premium-six-card p,
.sales-condition-card p,
.detail-summary-card p,
.board-card figcaption p,
.press-card figcaption p {
  max-width: 36ch;
}

.content-card strong,
.panel-card strong,
.contact-card strong,
.faq-card strong,
.form-panel strong {
  color: #202922;
}

.quick-meta {
  display: grid;
  gap: 16px;
  align-content: start;
  min-height: 126px;
}

.quick-meta strong {
  font-size: 1.1rem;
  font-weight: 800;
}

.sub-hero {
  padding: 190px 0 92px;
  background: #101823;
}

.sub-hero::before {
  background:
    linear-gradient(180deg, rgba(12, 13, 20, 0.7), rgba(12, 13, 20, 0.74)),
    radial-gradient(circle at 84% 28%, rgba(220, 167, 92, 0.16), transparent 18%),
    url("assets/client/hero-night.png?v=20260606newhero") center/cover no-repeat;
}

body.page-business .sub-hero::before {
  background:
    linear-gradient(180deg, rgba(18, 17, 22, 0.68), rgba(18, 17, 22, 0.76)),
    radial-gradient(circle at 84% 28%, rgba(220, 167, 92, 0.14), transparent 18%),
    url("assets/client/port-aerial-blue-bay.png") center/cover no-repeat;
}

body.page-complex .sub-hero::before {
  background:
    linear-gradient(180deg, rgba(18, 17, 22, 0.68), rgba(18, 17, 22, 0.76)),
    radial-gradient(circle at 84% 28%, rgba(220, 167, 92, 0.12), transparent 18%),
    url("assets/client/hero-render-day.png") center/cover no-repeat;
}

body.page-unit .sub-hero::before {
  background:
    linear-gradient(180deg, rgba(18, 17, 22, 0.7), rgba(18, 17, 22, 0.78)),
    radial-gradient(circle at 84% 28%, rgba(220, 167, 92, 0.14), transparent 18%),
    url("assets/client/street-sunset.png") center/cover no-repeat;
}

body.page-subscription .sub-hero::before,
body.page-sales .sub-hero::before {
  background:
    linear-gradient(180deg, rgba(18, 17, 22, 0.68), rgba(18, 17, 22, 0.78)),
    radial-gradient(circle at 84% 28%, rgba(220, 167, 92, 0.14), transparent 18%),
    url("assets/client/port-aerial-blue-bay.png") center/cover no-repeat;
}

body.page-pr .sub-hero::before {
  background:
    linear-gradient(180deg, rgba(18, 17, 22, 0.68), rgba(18, 17, 22, 0.76)),
    radial-gradient(circle at 84% 28%, rgba(220, 167, 92, 0.14), transparent 18%),
    url("assets/client/street-sunset.png") center/cover no-repeat;
}

body.page-inquiry .sub-hero::before {
  background:
    linear-gradient(180deg, rgba(18, 17, 22, 0.68), rgba(18, 17, 22, 0.76)),
    radial-gradient(circle at 84% 28%, rgba(220, 167, 92, 0.14), transparent 18%),
    url("assets/client/street-sunset.png") center/cover no-repeat;
}

.sub-hero-shell {
  position: relative;
  z-index: 1;
  max-width: 920px;
  display: grid;
  gap: 18px;
  justify-items: center;
  text-align: center;
}

.page-title {
  font-size: clamp(3.7rem, 7vw, 6.2rem);
  line-height: 1.08;
  color: #fbf8f1;
  text-shadow: 0 16px 32px rgba(0, 0, 0, 0.16);
}

.page-main {
  background: var(--paper-2);
}

.split-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.content-card,
.panel-card,
.contact-card,
.faq-card,
.reservation-card,
.form-panel {
  padding: 34px;
  background: #fffdf8;
  border: 1px solid rgba(18, 24, 28, 0.08);
}

.content-card,
.panel-card,
.contact-card,
.faq-card,
.form-panel {
  color: #18211b;
}

.content-card .section-kicker,
.panel-card .section-kicker,
.contact-card .section-kicker,
.faq-card .section-kicker,
.form-panel .section-kicker {
  color: #7a846f;
}

.content-table {
  margin: 0;
  display: grid;
  gap: 18px;
}

.content-table .row {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(18, 24, 28, 0.08);
}

.content-table .row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.content-table dt {
  margin: 0 0 8px;
  color: #627261;
  font-family: "Manrope", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 800;
}

.content-table dd {
  margin: 0;
  color: #202923;
}

.content-list {
  margin: 20px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
  color: var(--muted-dark);
}

.band-visual {
  min-height: 520px;
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(7, 12, 18, 0.16), rgba(7, 12, 18, 0.48)),
    url("assets/hero-bg.png?v=20260606newhero") center/cover no-repeat;
  box-shadow: var(--shadow);
}

.band-visual.compact {
  min-height: 420px;
}

.band-visual.copy-over {
  position: relative;
  overflow: hidden;
}

.band-visual.copy-over .overlay-copy {
  position: absolute;
  inset: auto 36px 36px auto;
  max-width: 360px;
  padding: 26px;
  border-radius: 24px;
  background: rgba(10, 16, 23, 0.64);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  color: var(--ink);
}

.overlay-copy h3 {
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 1;
}

.overlay-copy p {
  margin: 0;
  line-height: 1.8;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.feature-item {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-item.light {
  background: #fffdf8;
  border: 1px solid rgba(18, 24, 28, 0.08);
}

.feature-item span {
  display: block;
  color: var(--accent);
  font-family: "Pretendard Variable", "Pretendard", "Noto Sans KR", sans-serif;
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 800;
}

.feature-item strong {
  display: block;
  margin-top: 12px;
  font-size: 1.1rem;
  line-height: 1.48;
}

.feature-item p {
  margin: 12px 0 0;
  color: inherit;
  opacity: 0.78;
  line-height: 1.68;
}

.media-grid {
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
}

.chapter-intro {
  display: grid;
  gap: 16px;
  max-width: 840px;
  margin: 0 auto 42px;
  text-align: center;
}

.chapter-intro h2 {
  margin: 0;
  color: #18211b;
  font-family: "Noto Serif KR", "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3.55vw, 3rem);
  line-height: 1.36;
  letter-spacing: -0.03em;
  font-weight: 600;
  text-wrap: balance;
}

.chapter-intro p:last-child {
  margin: 0;
  max-width: 60ch;
  margin-inline: auto;
  color: #616b61;
  line-height: 1.78;
}

.detail-summary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
}

.complex-summary-under-panel {
  margin-top: 24px;
  margin-bottom: 6px;
}

.detail-summary-card {
  min-height: 176px;
  padding: 26px 24px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,244,237,0.98));
  border: 1px solid rgba(18, 24, 28, 0.09);
  box-shadow: 0 20px 42px rgba(13, 18, 26, 0.06);
  display: flex;
  flex-direction: column;
}

.detail-summary-card span {
  display: block;
  margin-bottom: 12px;
  color: #88744b;
  font-family: "Pretendard Variable", "Pretendard", "Noto Sans KR", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 800;
}

.detail-summary-card strong {
  display: block;
  color: #1c241f;
  font-size: 1.12rem;
  line-height: 1.5;
  letter-spacing: -0.02em;
  font-weight: 800;
}

.detail-summary-card p {
  margin: 12px 0 0;
  color: #5b655b;
  line-height: 1.68;
}

.detail-hero-frame {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 24px;
  align-items: stretch;
}

.figure-frame {
  min-height: 520px;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background:
    linear-gradient(180deg, rgba(7, 12, 18, 0.2), rgba(7, 12, 18, 0.62)),
    url("assets/hero-bg.png?v=20260606newhero") center/cover no-repeat;
}

.figure-frame img,
.plan-canvas img,
.plan-hero-visual img,
.poster-frame-asset img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.board-figure {
  background: #fffaf2;
}

.board-figure img {
  object-fit: contain;
}

.figure-frame.secondary {
  background:
    linear-gradient(180deg, rgba(7, 12, 18, 0.26), rgba(7, 12, 18, 0.68)),
    linear-gradient(135deg, #212843 0%, #4d6483 100%);
}

.chapter-panel {
  padding: 34px;
  border-radius: 32px;
  background: #fffdf8;
  border: 1px solid rgba(18, 24, 28, 0.08);
  box-shadow: var(--shadow);
  display: grid;
  gap: 18px;
  align-content: start;
}

.chapter-panel h3 {
  margin: 0;
  color: #1a231d;
  font-family: "Pretendard Variable", "Pretendard", "Noto Sans KR", sans-serif;
  font-size: clamp(2.3rem, 4vw, 3.4rem);
  line-height: 1.14;
  font-weight: 800;
  text-wrap: balance;
}

.chapter-panel p {
  margin: 0;
  color: #617061;
  line-height: 1.9;
  max-width: 38ch;
}

.chapter-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.chapter-list li {
  padding: 14px 0 0 18px;
  border-top: 1px solid rgba(18, 24, 28, 0.08);
  position: relative;
  color: #243025;
  line-height: 1.8;
}

.chapter-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.schedule-board {
  display: grid;
  gap: 18px;
}

.schedule-row {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 20px;
  padding: 24px 28px;
  border-radius: 24px;
  background: #fffdf8;
  border: 1px solid rgba(18, 24, 28, 0.08);
  box-shadow: 0 18px 38px rgba(13, 18, 26, 0.08);
}

.schedule-row strong {
  color: #1b251e;
  font-family: "Manrope", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 800;
}

.schedule-row p {
  margin: 0;
  color: #5f6a60;
  line-height: 1.9;
}

.logo-rail {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px 30px;
  color: #181f1a;
  font-size: 1rem;
  font-weight: 800;
}

.logo-rail span {
  color: #6c766d;
  font-size: 0.92rem;
  font-weight: 600;
}

.poster-stage {
  width: min(100%, 1120px);
  margin: 0 auto;
  display: grid;
  gap: 26px;
}

.poster-head {
  display: grid;
  gap: 10px;
  justify-items: center;
  text-align: center;
}

.poster-head h3 {
  margin: 0;
  color: #1b231d;
  font-size: 2.1rem;
  line-height: 1.4;
  font-weight: 800;
}

.poster-divider {
  width: 1px;
  height: 34px;
  background: rgba(27, 35, 29, 0.22);
}

.poster-frame {
  padding: 34px 36px;
  border-radius: 0;
  background: #fffdf8;
  border: 1px solid rgba(18, 24, 28, 0.08);
  box-shadow: 0 18px 42px rgba(13, 18, 26, 0.08);
}

.poster-frame-asset {
  overflow: hidden;
}

.poster-frame.navy {
  background: #171f56;
  color: #fff;
}

.poster-frame.navy .poster-title,
.poster-frame.navy .poster-label,
.poster-frame.navy .poster-grid-label,
.poster-frame.navy .poster-grid-value {
  color: #fff;
}

.poster-title {
  margin: 0 0 22px;
  text-align: center;
  font-family: "Manrope", sans-serif;
  font-size: 2rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 800;
}

.poster-bullet-grid {
  display: grid;
  gap: 10px;
}

.poster-bullet-row {
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: stretch;
}

.poster-bullet-row em {
  display: grid;
  place-items: center;
  margin: 0;
  background: #1c9eb9;
  color: #fff;
  font-style: normal;
  font-weight: 900;
}

.poster-bullet-row:nth-child(2) em {
  background: #209cc2;
}

.poster-bullet-row:nth-child(3) em {
  background: #2c88a6;
}

.poster-bullet-row:nth-child(4) em {
  background: #3e7498;
}

.poster-bullet-row:nth-child(5) em {
  background: #4d6186;
}

.poster-bullet-row span {
  padding: 14px 16px;
  background: #f1f3f7;
  color: #1f252d;
  line-height: 1.7;
  font-size: 0.95rem;
}

.poster-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.poster-grid-card {
  padding: 18px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.poster-grid-card.light {
  background: #ffffff;
  border-color: rgba(18, 24, 28, 0.08);
}

.poster-grid-label {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.68);
  font-family: "Manrope", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 800;
}

.poster-grid-card.light .poster-grid-label {
  color: #7a857b;
}

.poster-grid-value {
  display: block;
  color: #fff;
  line-height: 1.7;
  font-weight: 800;
}

.poster-grid-card.light .poster-grid-value {
  color: #1d2620;
}

.plan-tabs {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 18px;
}

.plan-tabs-single {
  grid-template-columns: minmax(0, 160px);
}

.plan-tab {
  padding: 10px 12px;
  border: 1px solid rgba(18, 24, 28, 0.1);
  background: #f2f1ee;
  color: #6f776f;
  text-align: center;
  font-size: 0.84rem;
  font-weight: 800;
}

.plan-tab.active {
  background: #1c1d27;
  border-color: #1c1d27;
  color: #fff;
}

.plan-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 0;
  min-height: 170px;
  background: linear-gradient(135deg, #b39f82 0%, #f4ebdd 100%);
}

.plan-hero-copy {
  padding: 36px;
  display: grid;
  align-content: center;
  gap: 10px;
}

.plan-hero-copy h3 {
  margin: 0;
  color: #fff;
  font-size: 4rem;
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 900;
}

.plan-hero-copy p {
  margin: 0;
  color: #fff;
  font-weight: 700;
}

.plan-hero-visual {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(0,0,0,0.08)),
    linear-gradient(135deg, #f1e3cf 0%, #d7c2a5 100%);
}

.plan-specs {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(18, 24, 28, 0.08);
}

.plan-specs span {
  padding: 14px 10px;
  color: #666f68;
  text-align: center;
  font-size: 0.82rem;
  line-height: 1.6;
  border-right: 1px solid rgba(18, 24, 28, 0.08);
}

.plan-specs span:last-child {
  border-right: 0;
}

.plan-canvas {
  min-height: 380px;
  margin-top: 18px;
  border: 1px solid rgba(18, 24, 28, 0.08);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.2), rgba(0,0,0,0.02)),
    linear-gradient(135deg, #faf9f6 0%, #e5e0d8 100%);
}

.plan-canvas-3d {
  display: grid;
  place-items: center;
  padding: 18px;
  background: #fffdf8;
}

.plan-canvas-3d img {
  object-fit: contain;
  border-radius: 18px;
}

.plan-detail-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 0;
  margin-top: 18px;
  border-top: 1px solid rgba(18, 24, 28, 0.08);
}

.plan-detail-card {
  min-height: 210px;
  padding: 18px;
  border-right: 1px solid rgba(18, 24, 28, 0.08);
  border-bottom: 1px solid rgba(18, 24, 28, 0.08);
}

.plan-detail-card:last-child {
  border-right: 0;
}

.plan-detail-card strong {
  display: inline-block;
  padding: 7px 12px;
  background: #111318;
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.plan-detail-card p {
  margin: 18px 0 0;
  color: #69736b;
  line-height: 1.8;
}

.media-card {
  min-height: 320px;
  padding: 30px;
  border-radius: 30px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: var(--shadow);
  background:
    linear-gradient(180deg, rgba(7, 12, 18, 0.14), rgba(7, 12, 18, 0.68)),
    linear-gradient(135deg, #1f2b39 0%, #4f6071 100%);
}

.pr-brochure-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
  gap: 24px;
  margin-top: 26px;
  align-items: stretch;
}

.pr-brochure-stack {
  display: grid;
  gap: 24px;
}

.board-card.featured {
  padding: 18px;
  display: grid;
  grid-template-rows: auto 1fr;
}

.board-card.featured img {
  min-height: 448px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.pr-brochure-stack .board-card,
.press-card {
  display: grid;
  grid-template-rows: auto 1fr;
}

.pr-brochure-stack .board-card img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.pr-brochure-stack .board-card figcaption,
.press-card figcaption {
  min-height: 170px;
  align-content: start;
}

.media-card:nth-child(2) {
  background:
    linear-gradient(180deg, rgba(7, 12, 18, 0.14), rgba(7, 12, 18, 0.68)),
    linear-gradient(135deg, #403330 0%, #806963 100%);
}

.media-card:nth-child(3) {
  background:
    linear-gradient(180deg, rgba(7, 12, 18, 0.14), rgba(7, 12, 18, 0.68)),
    linear-gradient(135deg, #24352a 0%, #607264 100%);
}

.media-card span {
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 800;
}

.media-card strong {
  display: block;
  margin-top: 12px;
  font-size: 1.4rem;
  line-height: 1.4;
}

.contact-grid {
  grid-template-columns: 1fr 0.9fr;
}

.contact-card strong {
  display: block;
  margin: 12px 0 0;
  color: #18211b;
  font-size: 1.5rem;
  line-height: 1.4;
  font-weight: 800;
}

.contact-card p {
  margin-top: 14px;
  color: #3f4d44;
}

.content-card .ghost-link,
.panel-card .ghost-link,
.contact-card .ghost-link,
.faq-card .ghost-link,
.form-panel .ghost-link {
  border-color: rgba(18, 24, 28, 0.12);
  color: #223027;
  background: rgba(18, 24, 28, 0.02);
}

.content-card .ghost-link:hover,
.panel-card .ghost-link:hover,
.contact-card .ghost-link:hover,
.faq-card .ghost-link:hover,
.form-panel .ghost-link:hover {
  background: rgba(18, 24, 28, 0.06);
  color: #172019;
}

.reservation-card {
  color: var(--ink);
  background: linear-gradient(180deg, rgba(10, 16, 23, 0.94), rgba(13, 20, 30, 0.98));
  border-color: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.home-reservation-section {
  padding-top: 84px;
}

.home-reservation-card {
  max-width: 980px;
  margin: 0 auto;
}

.reservation-card h3,
.reservation-card p,
.reservation-card label {
  color: var(--ink);
}

.form-grid {
  display: grid;
  gap: 14px;
}

.form-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-field {
  display: grid;
  gap: 8px;
  font-weight: 700;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 15px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: var(--ink);
}

.form-field select option {
  background: #fffdf8;
  color: #151d18;
}

.form-field select:focus,
.form-field select:active {
  background: rgba(255, 255, 255, 0.92);
  color: #151d18;
}

.form-field textarea {
  min-height: 140px;
  resize: vertical;
}

.inquiry-form {
  display: grid;
  gap: 18px;
}

.form-status {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.7;
  color: rgba(246, 241, 232, 0.82);
  white-space: pre-line;
}

.form-status.is-success {
  color: #d9c27d;
}

.form-status.is-error {
  color: #f2b2a9;
}

.privacy-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  border: 1px solid rgba(217, 194, 125, 0.28);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(246, 241, 232, 0.88);
  font-size: 0.92rem;
  line-height: 1.7;
}

.privacy-consent input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 4px;
  accent-color: #d9c27d;
}

.privacy-consent a {
  color: #f0d88b;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.btn[disabled] {
  opacity: 0.74;
  cursor: wait;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  color: #efe0b0;
  font-weight: 700;
}

.contact-email::before {
  content: "@";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(208, 176, 107, 0.18);
  color: #f4ddb0;
  font-size: 0.85rem;
}

.map-panel {
  min-height: 360px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.12), rgba(0,0,0,0.08)),
    linear-gradient(135deg, #d0c6b6 0%, #efe8dd 50%, #d6cfbe 100%);
  border: 1px solid rgba(18, 24, 28, 0.08);
  box-shadow: var(--shadow);
}

.site-footer {
  padding: 56px 0 78px;
  background: #fdfaf5;
  color: #171d18;
  border-top: 1px solid rgba(18, 24, 28, 0.08);
}

.footer-grid {
  display: grid;
  gap: 24px;
}

.footer-notice {
  display: flex;
  align-items: center;
  gap: 16px;
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: 20px 28px;
  background: #f3f0ea;
  border: 1px solid rgba(18, 24, 28, 0.06);
  border-radius: 30px;
  box-shadow: 0 18px 36px rgba(12, 18, 24, 0.05);
}

.footer-notice-badge {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: #0e1114;
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  flex: 0 0 auto;
}

.footer-brand {
  display: grid;
  gap: 14px;
  justify-items: center;
  text-align: center;
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: 38px 40px;
  background: #fffdf9;
  border: 1px solid rgba(18, 24, 28, 0.07);
  border-radius: 34px;
  box-shadow: 0 22px 46px rgba(10, 15, 20, 0.06);
}

.footer-brand-image {
  width: min(100%, 460px);
  height: auto;
}

.footer-company-line {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 28px;
  color: #121916;
  font-size: 1rem;
}

.footer-company-line span {
  color: #68736c;
  font-weight: 700;
}

.footer-company-line strong {
  font-size: 1rem;
  font-weight: 900;
}

.footer-company-meta {
  display: grid;
  gap: 8px;
  text-align: center;
  color: #2d352f;
  max-width: 74ch;
}

.footer-company-meta p,
.footer-disclaimer p,
.footer-copyright,
.footer-notice p {
  margin: 0;
  line-height: 1.9;
}

.footer-company-meta a {
  color: inherit;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.privacy-shell {
  display: grid;
  gap: 24px;
  max-width: 980px;
}

.privacy-card {
  gap: 18px;
}

.privacy-card h2 {
  margin: 0;
  color: #18211b;
  font-family: "Noto Serif KR", "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.25;
  letter-spacing: 0;
}

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

.privacy-table {
  min-width: 720px;
}

.privacy-table th {
  width: 180px;
}

.footer-disclaimer {
  display: grid;
  gap: 4px;
  text-align: center;
  color: #4f5852;
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: 24px 30px;
  background: #f5f0e7;
  border: 1px solid rgba(18, 24, 28, 0.06);
  border-radius: 28px;
}

.footer-copyright {
  text-align: center;
  color: #222923;
  font-weight: 700;
}

@media (max-width: 1320px) {
  .site-map-grid,
  .quick-grid,
  .feature-grid,
  .media-grid,
  .detail-summary-grid,
  .poetic-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .summary-chip-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1100px) {
  .hero-shell,
  .split-grid,
  .contact-grid,
  .summary-hero,
  .summary-bottom,
  .detail-hero-frame,
  .poetic-storyline {
    grid-template-columns: 1fr;
  }

  .hero-side-story {
    min-height: 220px;
  }

  .hero-side-ring {
    left: auto;
    right: 34px;
    top: 48px;
    transform: none;
  }

  .hero-side-copy {
    right: 0;
    bottom: 0;
    text-align: left;
  }

  .stat-grid,
  .overview-grid,
  .info-grid,
  .faq-grid,
  .poetic-facts,
  .form-grid.two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .poetic-block-stack {
    display: none;
  }
}

@media (max-width: 980px) {
  :root {
    --shell: min(100% - 28px, 1380px);
  }

  .site-header {
    padding: 12px 0;
  }

  .site-nav {
    display: flex;
    gap: 12px;
    justify-content: space-between;
    padding: 10px 12px;
    border-radius: 22px;
  }

  .nav-left {
    flex: 1 1 auto;
    min-width: 0;
    justify-content: flex-start;
    gap: 12px;
  }

  .nav-center {
    display: none;
  }

  .nav-right {
    flex: 0 0 auto;
    gap: 8px;
    justify-content: flex-end;
  }

  .menu-chip {
    flex: 0 0 auto;
    min-height: 42px;
    padding: 0 2px;
    font-size: 0.92rem;
  }

  .brand-mark {
    min-width: 0;
  }

  .brand-mark strong {
    display: block;
    max-width: 34vw;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 0.96rem;
  }

  .brand-mark span {
    font-size: 0.72rem;
  }

  .phone-link {
    width: 42px;
    height: 42px;
    justify-content: center;
    gap: 0;
    border: 1px solid rgba(246, 241, 232, 0.22);
    border-radius: 999px;
    font-size: 0;
  }

  .phone-link::before {
    font-size: 1.02rem;
  }

  .open-pill {
    min-width: auto;
    min-height: 42px;
    padding: 0 14px;
    font-size: 0.86rem;
    letter-spacing: 0;
  }

  .site-map-panel {
    margin-top: 76px;
    padding: 22px;
  }

  .site-map-grid,
  .stat-grid,
  .quick-grid,
  .feature-grid,
  .media-grid,
  .overview-grid,
  .info-grid,
  .faq-grid,
  .form-grid.two,
  .detail-summary-grid,
  .summary-chip-grid,
  .poetic-facts {
    grid-template-columns: 1fr;
  }

  .hero-shell {
    padding-top: 118px;
  }
}

@media (max-width: 720px) {
  .hero-title {
    font-size: 3rem;
  }

  .hero-title-display {
    font-size: clamp(2.45rem, 10.5vw, 3.35rem);
    line-height: 1.12;
    letter-spacing: -0.08em;
  }

  .page-title,
  .section-title {
    font-size: 2.8rem;
  }

  .hero-actions,
  .booking-actions {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .btn,
  .hero-actions .ghost-link {
    min-height: 58px;
    padding: 0 26px;
    font-size: 1.04rem;
  }

  .section-band {
    padding: 78px 0;
  }

  .content-card,
  .panel-card,
  .contact-card,
  .faq-card,
  .reservation-card,
  .form-panel,
  .hero-booking,
  .summary-text-panel,
  .summary-story,
  .summary-chip,
  .poetic-fact-card {
    padding: 24px;
  }

  .footer-notice {
    align-items: flex-start;
    padding: 18px 16px;
  }

  .schedule-row {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 22px 20px;
  }

  .summary-stage-head {
    align-items: start;
    flex-direction: column;
  }

  .summary-media {
    min-height: 420px;
  }

  .summary-media-copy {
    max-width: 80%;
    left: 24px;
    bottom: 24px;
  }

  .band-visual,
  .band-visual.compact {
    min-height: 300px;
  }

  .poetic-header {
    gap: 14px;
  }

  .poetic-panel-stage {
    min-height: 360px;
    padding: 44px 26px 34px;
  }

  .poetic-panel-caption strong {
    font-size: 1.48rem;
  }

  .poetic-panel-caption span {
    font-size: 1.16rem;
  }

  .site-map-group h3,
  .quick-card h3,
  .content-card h3,
  .panel-card h3,
  .contact-card h3,
  .faq-card h3 {
    font-size: 1.7rem;
  }
}

@media (max-width: 420px) {
  :root {
    --shell: min(100% - 24px, 1380px);
  }

  .site-header {
    padding: 10px 0;
  }

  .site-nav {
    padding: 9px 10px;
    gap: 9px;
    border-radius: 18px;
  }

  .menu-chip {
    min-height: 40px;
    gap: 8px;
    font-size: 0.86rem;
  }

  .menu-dots {
    width: 10px;
    height: 16px;
  }

  .brand-mark strong {
    max-width: 38vw;
    font-size: 0.9rem;
  }

  .brand-mark span {
    display: none;
  }

  .phone-link {
    display: none;
  }

  .open-pill {
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.82rem;
  }

  .site-map-panel {
    margin-top: 66px;
  }

  .hero-shell {
    padding-top: 108px;
  }

  .hero-title-display {
    font-size: clamp(2.05rem, 10.3vw, 2.38rem);
    letter-spacing: -0.085em;
  }

  .hero-script {
    font-size: 1.08rem;
    letter-spacing: 0.02em;
  }
}

.overview-spec-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  margin-top: 30px;
}

.overview-spec-card,
.sales-condition-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(20, 28, 38, 0.08);
  border-radius: 28px;
  box-shadow: 0 20px 40px rgba(17, 24, 39, 0.06);
  padding: 24px 22px;
  min-height: 186px;
  display: flex;
  flex-direction: column;
}

body.page-sales .sales-condition-card {
  position: relative;
  isolation: isolate;
  align-items: center;
  justify-content: center;
  min-height: 176px;
  padding: 28px 22px 30px;
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(circle at 50% -18%, rgba(214, 178, 110, 0.26), transparent 44%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 246, 238, 0.94));
  border-color: rgba(176, 136, 55, 0.16);
  box-shadow: 0 24px 54px rgba(17, 24, 39, 0.08);
}

body.page-sales .sales-condition-card::after {
  content: "";
  position: absolute;
  inset: auto 50% 18px auto;
  width: 42px;
  height: 2px;
  transform: translateX(50%);
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(177, 137, 60, 0.72), transparent);
  z-index: -1;
}

.overview-spec-card span,
.sales-condition-card span {
  color: rgba(32, 55, 37, 0.68);
  display: block;
  font-size: 0.82rem;
  font-weight: 800;
  font-family: "Pretendard Variable", "Pretendard", "Noto Sans KR", sans-serif;
  letter-spacing: 0.16em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

body.page-sales .sales-condition-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 178px);
  min-height: 34px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: rgba(214, 178, 110, 0.16);
  color: #7c5a16;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
}

.overview-spec-card strong,
.sales-condition-card strong {
  color: #15211d;
  display: block;
  font-family: "Pretendard Variable", "Pretendard", "Noto Sans KR", sans-serif;
  font-size: 1.16rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.34;
  margin-bottom: 12px;
}

body.page-sales .sales-condition-card strong {
  max-width: 11em;
  margin-bottom: 14px;
  font-family: "Noto Serif KR", "Pretendard Variable", "Noto Sans KR", serif;
  font-size: clamp(1.32rem, 1.45vw, 1.68rem);
  line-height: 1.24;
  letter-spacing: -0.055em;
}

.overview-spec-card p,
.sales-condition-card p {
  color: rgba(24, 34, 32, 0.72);
  line-height: 1.62;
}

body.page-sales .sales-condition-card p {
  max-width: 15em;
  margin: 0 auto;
  color: rgba(35, 46, 41, 0.78);
  font-size: 0.94rem;
  line-height: 1.58;
}

.business-hero-frame {
  align-items: stretch;
  margin-top: 28px;
}

.business-overview-stage {
  display: grid;
  gap: 24px;
  margin-top: 32px;
}

.business-overview-board {
  min-height: auto;
  padding: 22px;
}

.business-overview-board img {
  aspect-ratio: 16 / 9;
  object-fit: contain;
  border-radius: 24px;
}

.business-overview-stage .chapter-panel {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.business-overview-stage .chapter-panel h3 {
  font-size: clamp(2rem, 3.2vw, 3rem);
}

.business-overview-stage .chapter-panel p {
  margin-inline: auto;
  max-width: 56ch;
}

.business-overview-stage .chapter-list {
  max-width: 760px;
  margin-inline: auto;
  text-align: left;
}

.business-copy-board {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 100%;
  padding: 44px;
}

.business-copy-board-inner {
  display: grid;
  gap: 18px;
  text-align: center;
}

.business-script {
  color: rgba(255, 244, 220, 0.72);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.6rem, 2vw, 2.2rem);
  font-style: italic;
  letter-spacing: 0.04em;
}

.business-copy-board-inner strong {
  color: #fffdf6;
  font-size: clamp(2rem, 2.8vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1.14;
}

.business-copy-board-inner span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  line-height: 1.7;
}

.premium-six-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.system-pill-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.system-pill-grid .premium-six-card {
  align-items: center;
  justify-content: center;
  min-height: 208px;
  padding: 28px 26px 30px;
  text-align: center;
  background:
    radial-gradient(circle at 50% -28%, rgba(212, 176, 92, 0.18), transparent 46%),
    linear-gradient(180deg, rgba(47, 56, 70, 0.96), rgba(39, 48, 62, 0.96));
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 26px 54px rgba(3, 8, 16, 0.24);
}

.system-pill-grid .premium-six-card span {
  width: min(100%, 190px);
  margin: 0 auto 18px;
  background: rgba(212, 176, 92, 0.18);
  color: #f0c866;
  font-size: 0.86rem;
}

.system-pill-grid .premium-six-card strong {
  margin: 0 auto 14px;
  color: #fff8e8;
  font-size: clamp(1.22rem, 1.36vw, 1.48rem);
  line-height: 1.34;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.2);
}

.system-pill-grid .premium-six-card p {
  max-width: 24em;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.98rem;
  line-height: 1.76;
  word-break: keep-all;
}

.premium-six-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  box-shadow: 0 24px 48px rgba(8, 12, 24, 0.18);
  padding: 24px 22px;
  min-height: 186px;
  display: flex;
  flex-direction: column;
}

.tone-paper .premium-six-card,
.tone-paper-alt .premium-six-card {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(22, 28, 36, 0.08);
  box-shadow: 0 24px 48px rgba(14, 22, 32, 0.08);
}

.premium-six-card span {
  align-items: center;
  background: rgba(212, 176, 92, 0.15);
  border-radius: 999px;
  color: #d4b05c;
  display: inline-flex;
  font-size: 0.88rem;
  font-weight: 800;
  height: 34px;
  justify-content: center;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  min-width: 66px;
  padding: 0 16px;
  text-transform: uppercase;
}

.premium-six-card strong {
  color: #fffdf6;
  display: block;
  font-family: "Pretendard Variable", "Pretendard", "Noto Sans KR", sans-serif;
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.32;
  margin-bottom: 10px;
}

.tone-paper .premium-six-card strong,
.tone-paper-alt .premium-six-card strong {
  color: #18211d;
}

.premium-six-card p {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.64;
}

.tone-paper .premium-six-card p,
.tone-paper-alt .premium-six-card p {
  color: rgba(24, 34, 32, 0.72);
}

.mini-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.mini-chip-row span {
  background: rgba(18, 27, 38, 0.06);
  border: 1px solid rgba(18, 27, 38, 0.08);
  border-radius: 999px;
  color: #233042;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  padding: 12px 16px;
}

.lease-benefit-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lease-benefit-grid .premium-six-card span {
  background: rgba(214, 178, 110, 0.18);
  color: #9d6c19;
}

.lease-compare-wrap {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(16, 24, 32, 0.08);
  border-radius: 30px;
  box-shadow: 0 26px 54px rgba(14, 22, 32, 0.06);
  margin-top: 18px;
  overflow: hidden;
}

.lease-compare-table {
  border-collapse: collapse;
  width: 100%;
}

.lease-compare-table th,
.lease-compare-table td {
  border-bottom: 1px solid rgba(18, 28, 36, 0.08);
  line-height: 1.65;
  padding: 20px 22px;
  text-align: left;
  vertical-align: top;
}

.lease-compare-table th {
  background: #111b4a;
  color: #fffdf6;
  font-size: 0.96rem;
  font-weight: 700;
}

.lease-compare-table td {
  color: #233042;
}

.lease-process-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.sales-flow-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  padding: 24px 22px;
}

.sales-flow-card span {
  color: #d4b05c;
  display: block;
  font-family: "Pretendard Variable", "Pretendard", "Noto Sans KR", sans-serif;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin-bottom: 14px;
}

.sales-flow-card strong {
  color: #fffdf8;
  display: block;
  font-family: "Pretendard Variable", "Pretendard", "Noto Sans KR", sans-serif;
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.34;
  margin-bottom: 12px;
}

.sales-flow-card p {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.64;
}

.qa-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sales-condition-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.visual-mosaic {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
}

.visual-card {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  min-height: 280px;
  box-shadow: 0 28px 64px rgba(10, 16, 22, 0.14);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.visual-card.large {
  grid-column: span 2;
  min-height: 340px;
}

.home-mosaic .visual-card.large {
  grid-column: auto;
  min-height: 280px;
}

.business-mosaic {
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.82fr) minmax(0, 0.82fr);
  align-items: stretch;
}

.business-mosaic .visual-card,
.business-mosaic .visual-card.large {
  grid-column: auto;
  min-height: 360px;
}

.business-mosaic .visual-card-copy {
  padding: 24px 24px 28px;
}

.business-mosaic .visual-card-copy strong {
  font-size: clamp(1.35rem, 1.55vw, 1.85rem);
}

.visual-card img,
.landscape-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-card.has-bg-image img {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}

.visual-card.home-mood-card {
  background-image: url("assets/client/street-sunset.png");
}

.visual-card.industry-card {
  background-image: url("assets/client/port-aerial-blue-bay.png");
}

.visual-card.complex-card {
  background-image: url("assets/client/hero-render-day.png");
}

.visual-card::after,
.landscape-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 12, 18, 0.08), rgba(7, 12, 18, 0.62));
}

.visual-card-copy,
.landscape-banner-copy {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  display: grid;
  gap: 10px;
  padding: 28px 28px 30px;
}

.visual-card-copy span,
.landscape-banner-copy p {
  color: rgba(255, 247, 235, 0.82);
  font-family: "Pretendard Variable", "Pretendard", "Noto Sans KR", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0;
}

.visual-card-copy strong,
.landscape-banner-copy h3 {
  color: #fffaf0;
  display: block;
  font-family: "Pretendard Variable", "Pretendard", "Noto Sans KR", sans-serif;
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1.22;
  margin: 0;
  text-wrap: balance;
}

.landscape-banner-copy span {
  color: rgba(255, 247, 235, 0.76);
  line-height: 1.75;
  max-width: 50ch;
}

.landscape-banner {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  min-height: 360px;
  margin-top: 34px;
  box-shadow: 0 30px 68px rgba(10, 16, 22, 0.14);
}

.landscape-banner.compact {
  min-height: 300px;
}

.landscape-banner.daebul-panorama img {
  object-position: center 56%;
}

.landscape-banner.daebul-panorama::after {
  background:
    linear-gradient(90deg, rgba(7, 12, 18, 0.7), rgba(7, 12, 18, 0.22) 48%, rgba(7, 12, 18, 0.42)),
    linear-gradient(180deg, rgba(7, 12, 18, 0.05), rgba(7, 12, 18, 0.58));
}

.board-gallery,
.press-gallery {
  display: grid;
  gap: 24px;
  margin-top: 28px;
}

.board-gallery {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.board-gallery-single {
  grid-template-columns: minmax(0, 1fr);
}

.press-gallery {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.board-card,
.press-card {
  overflow: hidden;
  border-radius: 30px;
  background: #fffdf8;
  border: 1px solid rgba(18, 24, 28, 0.08);
  box-shadow: 0 28px 64px rgba(10, 16, 22, 0.12);
}

.board-card {
  padding: 18px;
}

.board-card img,
.press-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}

.facility-visual-stack {
  display: grid;
  gap: 14px;
}

.facility-card .facility-scene {
  aspect-ratio: 4 / 5;
  object-fit: contain;
  object-position: center;
  background: linear-gradient(180deg, #f9f4ea, #efe7da);
  box-shadow:
    inset 0 0 0 1px rgba(22, 50, 41, 0.08),
    0 16px 32px rgba(19, 35, 28, 0.1);
  image-rendering: auto;
}

.facility-card .facility-collage-clear {
  border-radius: 24px;
}

.facility-card .facility-visual-stack img:not(.facility-scene) {
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(19, 35, 28, 0.08);
}

.press-card img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.board-card figcaption,
.press-card figcaption {
  display: grid;
  gap: 10px;
  padding: 18px 8px 4px;
}

.board-card figcaption span,
.press-card figcaption span {
  color: #7a846f;
  font-family: "Pretendard Variable", "Pretendard", "Noto Sans KR", sans-serif;
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 800;
}

.board-card figcaption strong,
.press-card figcaption strong {
  color: #18211b;
  font-family: "Noto Serif KR", "Cormorant Garamond", serif;
  font-size: 1.4rem;
  line-height: 1.34;
  letter-spacing: -0.03em;
  font-weight: 600;
}

.board-card figcaption p,
.press-card figcaption p {
  margin: 0;
  color: #4f5d53;
  line-height: 1.8;
}

.board-stack {
  display: grid;
  gap: 20px;
}

.security-stage,
.sales-visual-stage {
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  margin-top: 30px;
}

.brand-mark strong,
.brand-mark span,
.nav-link,
.site-map-group li a,
.site-map-group small,
.site-map-group span,
.mini-chip-row span,
.lease-compare-table,
.booking-copy,
.booking-points li,
.quick-card p,
.content-card p,
.panel-card p,
.contact-card p,
.faq-card p,
.feature-item p,
.detail-summary-card p,
.overview-spec-card p,
.sales-condition-card p,
.premium-six-card p,
.sales-flow-card p,
.footer-company-line,
.footer-company-meta,
.footer-disclaimer,
.footer-copyright {
  font-family: "Pretendard Variable", "Pretendard", "Noto Sans KR", sans-serif;
}

@media (max-width: 1080px) {
  .overview-spec-grid,
  .premium-six-grid,
  .sales-condition-grid,
  .lease-process-grid,
  .visual-mosaic,
  .board-gallery,
  .press-gallery,
  .pr-brochure-grid,
  .security-stage,
  .sales-visual-stage {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .visual-card.large {
    grid-column: auto;
  }
}

@media (max-width: 720px) {
  .overview-spec-grid,
  .premium-six-grid,
  .sales-condition-grid,
  .lease-process-grid,
  .qa-grid,
  .visual-mosaic,
  .board-gallery,
  .press-gallery,
  .pr-brochure-grid,
  .security-stage,
  .sales-visual-stage {
    grid-template-columns: 1fr;
  }

  .lease-compare-wrap {
    overflow-x: auto;
  }

  .lease-compare-table {
    min-width: 700px;
  }

  .landscape-banner,
  .landscape-banner.compact {
    min-height: 260px;
  }
}
  font-family: "Pretendard Variable", "Pretendard", "Noto Sans KR", sans-serif;
