@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+KR:wght@400;500;600;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Gowun+Batang:wght@400;700&family=Song+Myung&display=swap");

:root {
  --bg: #0d1418;
  --bg-2: #151f27;
  --deep: #111b20;
  --green: #173c2d;
  --green-2: #355f4b;
  --paper: #f5efe4;
  --paper-2: #fbf8f1;
  --white: #fffdf8;
  --ink: #14201a;
  --muted: #637066;
  --muted-2: rgba(246, 241, 232, 0.76);
  --gold: #d6b568;
  --gold-2: #efd487;
  --line: rgba(20, 32, 26, 0.12);
  --line-light: rgba(255, 255, 255, 0.12);
  --shadow: 0 26px 70px rgba(11, 18, 20, 0.13);
  --shadow-soft: 0 16px 45px rgba(11, 18, 20, 0.09);
  --shell: min(100% - 56px, 1320px);
  --radius-frame: 8px;
  --radius-card: 12px;
  --radius-panel: 14px;
  --serif: "Noto Serif KR", "Nanum Myeongjo", serif;
  --sans: "Pretendard", "Noto Sans KR", "Malgun Gothic", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  line-break: strict;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: var(--sans);
  line-height: 1.65;
  word-break: keep-all;
  overflow-wrap: normal;
  text-wrap: pretty;
  letter-spacing: 0;
  overflow-x: hidden;
}

p,
li,
dd,
dt,
figcaption,
small,
label {
  word-break: keep-all;
  overflow-wrap: normal;
  text-wrap: pretty;
}

h1,
h2,
h3,
strong {
  word-break: keep-all;
  overflow-wrap: normal;
  text-wrap: balance;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(239, 212, 135, 0.9);
  outline-offset: 3px;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

.page-shell {
  width: var(--shell);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  z-index: 40;
  inset: 20px 0 auto;
  pointer-events: none;
}

.site-nav {
  pointer-events: auto;
  width: min(100% - 64px, 1400px);
  min-height: 78px;
  margin: 0 auto;
  padding: 12px 18px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(18px, 2vw, 34px);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-frame);
  background:
    linear-gradient(110deg, rgba(47, 42, 35, 0.76), rgba(12, 17, 23, 0.78) 46%, rgba(17, 27, 32, 0.78)),
    rgba(12, 17, 23, 0.72);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(18px);
}

.nav-brand,
.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
}

.nav-brand {
  gap: 16px;
  min-width: 270px;
}

.menu-button {
  height: 48px;
  min-width: 92px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-frame);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.menu-button span {
  width: 4px;
  height: 22px;
  background:
    linear-gradient(var(--gold-2), var(--gold-2)) center top / 4px 4px no-repeat,
    linear-gradient(var(--gold-2), var(--gold-2)) center center / 4px 4px no-repeat,
    linear-gradient(var(--gold-2), var(--gold-2)) center bottom / 4px 4px no-repeat;
}

.menu-button b {
  font-size: 16px;
  font-weight: 900;
}

.brand-text {
  display: grid;
  gap: 2px;
  line-height: 1.16;
}

.brand-text strong {
  font-size: 18px;
  font-weight: 900;
}

.brand-text em {
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
}

.nav-links {
  justify-content: center;
  gap: clamp(18px, 2.4vw, 38px);
  font-size: 16px;
  font-weight: 850;
}

.nav-links a {
  position: relative;
  padding: 12px 0;
  color: rgba(255, 255, 255, 0.86);
  white-space: nowrap;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 6px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-actions {
  justify-content: flex-end;
  gap: 18px;
}

.phone-link {
  color: #fff;
  font-size: 19px;
  font-weight: 950;
  white-space: nowrap;
}

.phone-link::before {
  content: "☎";
  margin-right: 8px;
  color: var(--gold-2);
  font-size: 14px;
}

body.promo-popup-open {
  overflow: hidden;
}

.promo-popup {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.promo-popup.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.promo-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 8, 12, 0.76);
  backdrop-filter: blur(7px);
}

.promo-popup-panel,
.notice-popup-panel {
  position: relative;
  z-index: 1;
  width: min(400px, calc(100vw - 32px));
  height: min(628px, calc(100vh - 48px));
  min-height: 552px;
  display: grid;
  align-content: start;
  padding: 36px 36px 34px;
  border: 1px solid rgba(214, 181, 104, 0.42);
  border-radius: var(--radius-panel);
  color: #fff8ea;
  background:
    linear-gradient(180deg, rgba(13, 19, 22, 0.94), rgba(8, 15, 18, 0.96)),
    linear-gradient(135deg, rgba(214, 181, 104, 0.14), transparent 42%),
    url("assets/nike/generated/damyang-river-residence.jpg") center / cover no-repeat;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.44);
  overflow: hidden auto;
  transform: translateY(18px) scale(0.98);
  transition: transform 240ms ease;
}

.promo-popup.is-visible .promo-popup-panel,
.promo-popup.is-visible .notice-popup-panel {
  transform: translateY(0) scale(1);
}

.promo-popup-panel::before,
.notice-popup-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(214, 181, 104, 0.45), transparent 34%, transparent 66%, rgba(214, 181, 104, 0.28)) top / 100% 2px no-repeat,
    repeating-linear-gradient(105deg, rgba(214, 181, 104, 0.12) 0, rgba(214, 181, 104, 0.12) 1px, transparent 1px, transparent 28px);
  opacity: 0.58;
  pointer-events: none;
}

.promo-popup-panel::after,
.notice-popup-panel::after {
  content: "NIKE";
  position: absolute;
  right: 18px;
  bottom: 14px;
  color: rgba(255, 255, 255, 0.035);
  font-family: var(--serif);
  font-size: 86px;
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
}

.promo-popup-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  font-size: 27px;
  line-height: 1;
  cursor: pointer;
}

.promo-popup-brand,
.notice-popup-brand {
  position: relative;
  z-index: 1;
  margin: 0 0 24px;
  color: var(--gold-2);
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
}

.promo-popup-brand span,
.notice-popup-brand span {
  display: block;
  margin-top: 8px;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.promo-popup-panel h2,
.notice-popup-panel h2 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #e5c189;
  font-family: var(--serif);
  font-size: 58px;
  line-height: 1.1;
  text-align: center;
}

.promo-popup-panel p:not(.promo-popup-brand) {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 5px;
  margin: 30px 0 34px;
  color: rgba(255, 250, 240, 0.9);
  font-size: 17px;
  font-weight: 850;
  line-height: 1.65;
  text-align: center;
}

.promo-popup-button,
.notice-popup-button {
  position: relative;
  z-index: 1;
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding: 0 22px;
  border-radius: var(--radius-frame);
  color: #19140d;
  background: #fff9ef;
  font-weight: 950;
}

.notice-popup-button {
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
}

.promo-popup-arrow {
  width: 12px;
  height: 12px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
  transform: rotate(45deg);
  flex: 0 0 auto;
}

.notice-popup-panel {
  margin-left: 0;
}

.notice-popup-box {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 18px;
  margin: 28px 0 22px;
  padding: 24px 20px;
  border: 1px solid rgba(214, 181, 104, 0.34);
  border-radius: var(--radius-card);
  background: rgba(5, 10, 13, 0.72);
}

.notice-popup-icon {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  border: 5px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  color: #17140d;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  font-size: 39px;
  font-weight: 950;
  line-height: 1;
}

.notice-popup-box p {
  display: grid;
  gap: 4px;
  margin: 0;
  color: rgba(255, 250, 240, 0.9);
  font-size: 16px;
  font-weight: 850;
  line-height: 1.55;
  text-align: center;
}

.notice-popup-box strong,
.notice-domain-line {
  color: var(--gold-2);
}

.btn,
.gold-pill,
.ghost-link {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border-radius: var(--radius-frame);
  border: 1px solid transparent;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.btn:hover,
.gold-pill:hover,
.ghost-link:hover {
  transform: translateY(-2px);
}

.btn-gold,
.gold-pill {
  color: #18150f;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  box-shadow: 0 18px 40px rgba(214, 181, 104, 0.26);
}

.ghost-link {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.07);
}

.ghost-link.dark {
  color: var(--ink);
  border-color: rgba(20, 32, 26, 0.18);
  background: rgba(255, 255, 255, 0.48);
}

.home-hero {
  position: relative;
  min-height: 910px;
  display: grid;
  align-content: end;
  padding: 160px 0 48px;
  color: #fff;
  overflow: hidden;
  background: var(--bg);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 13, 17, 0.9), rgba(9, 13, 17, 0.54) 48%, rgba(9, 13, 17, 0.78)),
    linear-gradient(0deg, rgba(9, 13, 17, 0.96), rgba(9, 13, 17, 0.14) 46%, rgba(9, 13, 17, 0.58)),
    url("assets/nike/generated/damyang-river-residence.jpg") center / cover no-repeat;
  transform: scale(1.018);
}

.hero-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: clamp(28px, 4vw, 70px);
  align-items: end;
}

.hero-copy {
  padding-bottom: 74px;
}

.hero-kicker,
.section-kicker,
.summary-overline {
  margin: 0 0 14px;
  color: var(--gold-2);
  font-size: 14px;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 0;
  max-width: 840px;
  font-family: var(--serif);
  font-size: clamp(50px, 6.3vw, 92px);
  line-height: 1.1;
  letter-spacing: 0;
  text-shadow: 0 18px 44px rgba(0, 0, 0, 0.36);
}

.hero-lead {
  max-width: 720px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 1.4vw, 21px);
  font-weight: 750;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-brief-card {
  position: relative;
  isolation: isolate;
  padding: 30px;
  border: 1px solid rgba(214, 181, 104, 0.34);
  border-radius: var(--radius-panel);
  background: linear-gradient(145deg, rgba(12, 18, 22, 0.84), rgba(24, 46, 36, 0.82));
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(12px);
}

.hero-brief-card::after {
  content: "NIKE";
  position: absolute;
  right: 18px;
  bottom: -16px;
  z-index: -1;
  color: rgba(255, 255, 255, 0.05);
  font-family: var(--serif);
  font-size: 88px;
  font-weight: 900;
  line-height: 1;
}

.hero-brief-card p {
  margin: 0 0 8px;
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 950;
}

.hero-brief-card > strong {
  display: block;
  color: #fffaf0;
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1.16;
}

.hero-brief-card dl {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
}

.hero-brief-card dl div {
  display: grid;
  grid-template-columns: 94px 1fr;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-brief-card dt {
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  font-weight: 900;
}

.hero-brief-card dd {
  margin: 0;
  color: #fff;
  font-weight: 900;
  line-height: 1.45;
}

.hero-statbar {
  position: relative;
  margin-top: 20px;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.stat-card {
  min-height: 126px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-left-color: rgba(214, 181, 104, 0.5);
  border-radius: var(--radius-card);
  background: rgba(9, 14, 19, 0.78);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
}

.stat-card span,
.summary-chip span,
.quick-card span,
.visual-card span,
.flow-card span,
.value-card span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.02em;
}

.stat-card strong {
  color: #fff;
  font-size: 24px;
  line-height: 1.22;
}

.stat-card small {
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
  font-weight: 750;
}

.section-band {
  padding: 96px 0;
}

.tone-paper {
  background: linear-gradient(180deg, var(--paper), var(--paper-2));
}

.tone-white {
  background: #fffaf2;
}

.tone-dark {
  color: #fff;
  background:
    linear-gradient(125deg, rgba(12, 18, 24, 0.96), rgba(22, 44, 34, 0.94)),
    url("assets/nike/generated/damyang-river-residence.jpg") center / cover fixed;
}

.summary-stage {
  display: grid;
  gap: 26px;
}

.summary-stage-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  color: var(--muted);
  font-weight: 900;
}

.summary-stage-head p {
  margin: 0;
  color: var(--green);
  font-size: 13px;
  font-weight: 950;
}

.summary-stage-head span {
  color: #81907f;
  font-size: 14px;
}

.summary-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(390px, 0.94fr);
  gap: 24px;
  align-items: stretch;
}

.summary-media,
.visual-card,
.data-board {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-panel);
  background: #111;
  box-shadow: var(--shadow);
}

.summary-media {
  min-height: 470px;
}

.summary-media img,
.visual-card img,
.data-board img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.summary-media::after,
.visual-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.78), transparent 58%);
}

.summary-media figcaption,
.visual-card figcaption {
  position: absolute;
  z-index: 2;
  left: 30px;
  right: 30px;
  bottom: 28px;
  color: #fff;
}

.summary-media strong,
.visual-card strong {
  display: block;
  margin-top: 8px;
  max-width: 560px;
  font-size: clamp(28px, 2.7vw, 42px);
  line-height: 1.22;
  letter-spacing: -0.01em;
}

.summary-text-panel,
.summary-story,
.summary-chip,
.copy-panel,
.value-card,
.quick-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-panel);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.summary-text-panel {
  display: grid;
  align-content: center;
  padding: clamp(34px, 4vw, 54px);
}

.summary-text-panel h2,
.summary-story h2,
.copy-panel h2,
.section-head h2,
.sales-head h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.2;
  letter-spacing: 0;
}

.summary-prose {
  display: grid;
  gap: 8px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 17px;
  font-weight: 750;
}

.summary-mark {
  margin: 28px 0 0;
  color: var(--green);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 950;
}

.summary-bottom {
  display: grid;
  grid-template-columns: minmax(420px, 0.84fr) minmax(0, 1.16fr);
  gap: 18px;
}

.summary-story {
  min-height: 158px;
  display: grid;
  grid-template-columns: auto auto;
  grid-template-areas:
    "title actions"
    "copy actions";
  column-gap: 24px;
  row-gap: 8px;
  align-items: center;
  padding: 28px 32px;
  background:
    radial-gradient(circle at 95% 10%, rgba(214, 181, 104, 0.16), transparent 30%),
    linear-gradient(135deg, #fffdf8, #f7efe2);
}

.summary-story h2 {
  grid-area: title;
  font-size: clamp(36px, 3.2vw, 50px);
}

.summary-story p {
  grid-area: copy;
  margin: 0;
  color: var(--muted);
  font-weight: 750;
}

.summary-action-row {
  grid-area: actions;
  display: flex;
  gap: 10px;
}

.summary-chip-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.summary-chip {
  min-height: 158px;
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 24px 20px;
  border-left: 3px solid rgba(214, 181, 104, 0.62);
}

.summary-chip strong {
  font-size: clamp(18px, 1.35vw, 22px);
  line-height: 1.34;
}

.summary-reservation-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(30px, 3vw, 42px);
  border: 1px solid rgba(214, 181, 104, 0.28);
  border-radius: var(--radius-panel);
  background:
    linear-gradient(120deg, rgba(9, 15, 23, 0.98), rgba(17, 25, 35, 0.95) 52%, rgba(34, 50, 39, 0.93)),
    url("assets/nike/generated/damyang-river-residence.jpg") center / cover no-repeat;
  box-shadow: 0 30px 78px rgba(10, 16, 22, 0.2);
  color: #fff;
}

.summary-reservation-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: inherit;
  background:
    linear-gradient(90deg, rgba(214, 181, 104, 0.6), transparent 36%, transparent 68%, rgba(214, 181, 104, 0.28)) top / 100% 3px no-repeat,
    radial-gradient(circle at 88% 8%, rgba(214, 181, 104, 0.18), transparent 24%);
}

.summary-reservation-card::after {
  content: "NIKE";
  position: absolute;
  right: 28px;
  bottom: -8px;
  z-index: -1;
  color: rgba(255, 255, 255, 0.035);
  font-family: var(--serif);
  font-size: clamp(70px, 10vw, 140px);
  font-weight: 900;
  line-height: 1;
}

.reservation-card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 26px;
}

.reservation-card-head h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.2;
}

.reservation-card-head p:not(.section-kicker) {
  margin: 12px 0 0;
  color: var(--muted-2);
  font-weight: 750;
}

.reservation-call {
  flex: 0 0 auto;
  min-width: 220px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 4px;
  padding: 18px 22px;
  border: 1px solid rgba(214, 181, 104, 0.38);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.07);
  text-align: center;
}

.reservation-call span {
  color: rgba(246, 241, 232, 0.66);
  font-size: 13px;
  font-weight: 900;
}

.reservation-call strong {
  color: var(--gold-2);
  font-size: 26px;
  line-height: 1;
}

.inquiry-form {
  display: grid;
  gap: 16px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.form-field {
  display: grid;
  gap: 9px;
  color: rgba(246, 241, 232, 0.88);
  font-weight: 900;
}

.form-field.wide {
  grid-column: span 2;
}

.form-field.full {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  min-height: 56px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-frame);
  color: #fffaf0;
  background: rgba(255, 255, 255, 0.08);
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
}

textarea {
  min-height: 112px;
  resize: vertical;
}

select option {
  color: #111;
}

input::placeholder,
textarea::placeholder {
  color: rgba(246, 241, 232, 0.42);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(214, 181, 104, 0.16);
}

.privacy-check {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 18px;
  border: 1px solid rgba(214, 181, 104, 0.32);
  border-radius: var(--radius-frame);
  background: rgba(255, 255, 255, 0.065);
  color: rgba(246, 241, 232, 0.9);
  font-weight: 850;
}

.privacy-check input {
  width: 18px;
  min-height: 18px;
  flex: 0 0 auto;
  accent-color: var(--gold);
}

.privacy-check a {
  color: var(--gold-2);
  border-bottom: 1px solid currentColor;
}

.reservation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.form-status {
  margin: 0;
  min-height: 24px;
  color: var(--gold-2);
  font-weight: 850;
}

.visual-mosaic {
  display: grid;
  grid-template-columns: 1.22fr 0.89fr 0.89fr;
  gap: 22px;
}

.visual-card {
  min-height: 430px;
}

.visual-card.large {
  min-height: 500px;
}

.visual-card img {
  transition: transform 520ms ease;
}

.visual-card:hover img {
  transform: scale(1.035);
}

.visual-card strong {
  font-size: clamp(25px, 2vw, 34px);
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.quick-card {
  display: grid;
  align-content: center;
  min-height: 142px;
  padding: 24px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.quick-card:hover {
  transform: translateY(-3px);
  border-color: rgba(214, 181, 104, 0.42);
  box-shadow: var(--shadow);
}

.quick-card strong {
  margin-top: 10px;
  font-size: 25px;
}

.quick-card em {
  margin-top: 4px;
  color: var(--muted);
  font-style: normal;
  font-weight: 750;
}

.overview-grid,
.unit-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 38px;
  align-items: center;
}

.unit-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.copy-panel {
  padding: clamp(34px, 4vw, 56px);
}

.copy-panel p:not(.section-kicker) {
  color: var(--muted);
  font-size: 17px;
  font-weight: 750;
}

.fact-grid,
.type-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.fact-grid span,
.type-cards span {
  display: grid;
  gap: 5px;
  min-height: 104px;
  align-content: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-left: 3px solid rgba(214, 181, 104, 0.58);
  border-radius: var(--radius-frame);
  background: linear-gradient(180deg, #fff, #fbf5eb);
}

.fact-grid b,
.type-cards b {
  color: #846f37;
  font-size: 13px;
}

.fact-grid em,
.type-cards em {
  color: var(--ink);
  font-style: normal;
  font-weight: 950;
}

.data-board {
  background: #fff;
}

.data-board img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #fff;
}

.unit-board img {
  aspect-ratio: 16 / 9.5;
  object-fit: contain;
  padding: 18px;
}

.data-board figcaption {
  padding: 16px 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  background: #fff;
}

.value-grid {
  display: grid;
  grid-template-columns: 1.12fr repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}

.section-head {
  min-height: 250px;
  display: grid;
  align-content: center;
  padding: 40px;
  color: #fff;
  border: 1px solid rgba(214, 181, 104, 0.28);
  border-radius: var(--radius-panel);
  background:
    radial-gradient(circle at 95% 10%, rgba(214, 181, 104, 0.17), transparent 28%),
    linear-gradient(135deg, #101a20, #173c2d);
  box-shadow: var(--shadow);
}

.section-head h2 {
  color: #fffaf0;
  font-size: clamp(36px, 3.4vw, 52px);
}

.value-card {
  min-height: 250px;
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 30px;
}

.value-card strong {
  font-size: 27px;
}

.value-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 750;
}

.sales-flow {
  display: grid;
  gap: 28px;
}

.sales-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
}

.sales-head h2 {
  color: #fffaf0;
  font-size: clamp(42px, 4.6vw, 68px);
}

.sales-head-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.flow-card {
  min-height: 210px;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
}

.flow-card strong {
  color: #fff;
  font-size: 24px;
}

.flow-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 750;
}

.site-footer {
  padding: 46px 0;
  color: rgba(255, 255, 255, 0.72);
  background: #0a1014;
}

.footer-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 34px;
}

.footer-brand strong {
  display: block;
  color: #fff;
  font-family: var(--serif);
  font-size: 28px;
}

.footer-brand p,
.footer-meta p {
  margin: 6px 0;
}

.footer-meta a {
  color: var(--gold-2);
  border-bottom: 1px solid currentColor;
}

.privacy-main {
  min-height: 100vh;
  padding: 170px 0 90px;
  background: linear-gradient(180deg, var(--paper), var(--paper-2));
}

.privacy-card {
  max-width: 920px;
  padding: 54px;
  border: 1px solid var(--line);
  border-radius: var(--radius-panel);
  background: var(--white);
  box-shadow: var(--shadow);
}

.privacy-card h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: 48px;
  line-height: 1.16;
}

.privacy-card > p {
  color: var(--muted);
  font-weight: 750;
}

.privacy-list {
  display: grid;
  gap: 14px;
  margin: 34px 0;
}

.privacy-list article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-frame);
  background: linear-gradient(180deg, #fff, #fbf6ec);
}

.privacy-list h2 {
  margin: 0 0 6px;
  font-size: 18px;
}

.privacy-list p {
  margin: 0;
  color: var(--muted);
  font-weight: 750;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 560ms ease, transform 560ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .site-nav {
    grid-template-columns: auto auto;
  }

  .nav-brand {
    min-width: 0;
  }

  .nav-links {
    display: none;
    grid-column: 1 / -1;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 12px 24px;
    padding: 10px 4px 4px;
  }

  .nav-links.is-open {
    display: flex;
  }

  .hero-shell,
  .summary-hero,
  .overview-grid,
  .unit-grid,
  .value-grid,
  .flow-grid {
    grid-template-columns: 1fr 1fr;
  }

  .summary-bottom,
  .visual-mosaic,
  .quick-grid {
    grid-template-columns: 1fr 1fr;
  }

  .summary-story,
  .section-head,
  .visual-card.large {
    grid-column: 1 / -1;
  }

  .summary-chip-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .form-field.wide,
  .form-field.full {
    grid-column: 1 / -1;
  }
}

/* Forest heritage pass: muted pine, bamboo green, pavilion wood, and clearer information layers. */
:root {
  --bg: #3b4f52;
  --bg-2: #3b4e3f;
  --deep: #20342c;
  --green: #577146;
  --green-2: #738e57;
  --bamboo: #b8c991;
  --water: #5c786c;
  --wood: #553f33;
  --paper: #f3f2ea;
  --paper-2: #faf8ef;
  --white: #fffdf4;
  --ink: #17251e;
  --muted: #59695f;
  --gold: #c9ab61;
  --gold-2: #ead895;
  --line: rgba(59, 79, 82, 0.18);
  --line-light: rgba(245, 244, 233, 0.18);
  --serif: "Gowun Batang", "Noto Serif KR", "Nanum Myeongjo", serif;
  --display: "Song Myung", "Gowun Batang", "Noto Serif KR", serif;
}

body {
  color: var(--ink);
  background:
    linear-gradient(180deg, #eef1e8 0, #fbfaf1 44%, #eff2e8 100%),
    repeating-linear-gradient(90deg, rgba(59, 79, 82, 0.035) 0, rgba(59, 79, 82, 0.035) 1px, transparent 1px, transparent 54px);
}

.site-nav {
  position: relative;
  overflow: hidden;
  border-color: rgba(234, 216, 149, 0.24);
  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(85, 63, 51, 0.2), transparent 18%, transparent 82%, rgba(85, 63, 51, 0.22)),
    repeating-linear-gradient(90deg, rgba(234, 216, 149, 0.055) 0, rgba(234, 216, 149, 0.055) 1px, transparent 1px, transparent 28px),
    linear-gradient(115deg, rgba(32, 52, 44, 0.94), rgba(59, 78, 63, 0.92) 48%, rgba(87, 113, 70, 0.86)),
    rgba(32, 52, 44, 0.88);
  box-shadow: 0 22px 52px rgba(23, 37, 30, 0.24);
  backdrop-filter: blur(16px);
}

.site-nav::before,
.site-nav::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  height: 1px;
  pointer-events: none;
}

.site-nav::before {
  top: 9px;
  background: linear-gradient(90deg, transparent, rgba(234, 216, 149, 0.5), transparent);
}

.site-nav::after {
  bottom: 9px;
  background: linear-gradient(90deg, transparent, rgba(184, 201, 145, 0.32), transparent);
}

.menu-chip {
  border-radius: 8px;
  border-color: rgba(234, 216, 149, 0.28);
  background:
    linear-gradient(135deg, rgba(245, 244, 233, 0.1), rgba(245, 244, 233, 0.035)),
    rgba(32, 52, 44, 0.44);
  box-shadow: inset 0 0 0 1px rgba(245, 244, 233, 0.04);
}

.menu-dots {
  background:
    linear-gradient(var(--gold-2), var(--gold-2)) center top / 4px 4px no-repeat,
    linear-gradient(var(--gold-2), var(--gold-2)) center center / 4px 4px no-repeat,
    linear-gradient(var(--gold-2), var(--gold-2)) center bottom / 4px 4px no-repeat;
}

.brand-mark {
  gap: 0;
  padding-left: 18px;
  border-left: 1px solid rgba(234, 216, 149, 0.42);
}

.brand-mark::before {
  display: none;
}

.brand-mark strong {
  color: #fffdf4;
  font-family: var(--serif);
  font-size: 1.12rem;
  font-weight: 900;
  line-height: 1.18;
}

.brand-mark span {
  order: 2;
  color: rgba(234, 216, 149, 0.84);
  font-family: var(--serif);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.2;
}

.nav-link {
  color: rgba(255, 253, 244, 0.86);
  font-size: 1rem;
}

.nav-link::after {
  background: linear-gradient(90deg, var(--gold-2), var(--bamboo));
}

.phone-link {
  color: #fffdf4;
}

.phone-link::before {
  color: var(--gold-2);
}

.open-pill,
.btn-gold,
.notice-popup-button {
  border-color: rgba(234, 216, 149, 0.62);
  color: #1c2118;
  background: linear-gradient(135deg, #f0de9a 0%, #c9ab61 54%, #96763f 100%);
}

.home-hero,
.hero-bg,
.sub-hero,
.tone-dark {
  background-color: #20342c;
}

.hero-bg {
  background:
    linear-gradient(90deg, rgba(32, 52, 44, 0.94), rgba(59, 79, 82, 0.58) 42%, rgba(59, 79, 82, 0.18) 70%, rgba(32, 52, 44, 0.72)),
    linear-gradient(0deg, rgba(32, 52, 44, 0.96), rgba(32, 52, 44, 0.12) 50%, rgba(32, 52, 44, 0.45)),
    url("assets/nike/generated/juknokwon-green-hero.jpg") center / cover no-repeat;
}

.sub-hero {
  min-height: 330px;
  background:
    linear-gradient(180deg, rgba(32, 52, 44, 0.42), rgba(243, 242, 234, 0.94) 96%),
    linear-gradient(90deg, rgba(32, 52, 44, 0.9), rgba(59, 79, 82, 0.42), rgba(32, 52, 44, 0.78)),
    url("assets/nike/generated/juknokwon-green-hero.jpg") center / cover no-repeat;
}

.sub-hero::after {
  background: linear-gradient(180deg, transparent, rgba(243, 242, 234, 0.98));
}

.hero-copy h1,
.page-title,
.summary-text-panel h2,
.summary-story h2,
.copy-panel h2,
.section-head h2,
.sales-head h2,
.feature-banner-copy h3,
.company-copy h2,
.footer-wordmark strong {
  font-family: var(--display);
  letter-spacing: 0;
}

.hero-copy h1,
.page-title {
  text-shadow: 0 18px 42px rgba(10, 24, 18, 0.42);
}

.summary-text-panel,
.summary-story,
.summary-chip,
.quick-card,
.copy-panel,
.value-card,
.check-card,
.detail-summary-card,
.privacy-card,
.company-profile,
.footer-official-card {
  border-color: rgba(59, 79, 82, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 253, 244, 0.98), rgba(243, 242, 234, 0.98));
  box-shadow: 0 22px 58px rgba(32, 52, 44, 0.1);
}

.summary-text-panel::before {
  background: linear-gradient(180deg, var(--water), var(--green), var(--wood));
}

.tone-paper {
  background:
    linear-gradient(180deg, rgba(243, 242, 234, 0.98), rgba(250, 248, 239, 0.99)),
    repeating-linear-gradient(90deg, rgba(59, 79, 82, 0.03) 0, rgba(59, 79, 82, 0.03) 1px, transparent 1px, transparent 52px);
}

.tone-white,
.company-band {
  background: linear-gradient(180deg, #fffdf4, #f3f2ea);
}

.tone-dark {
  background:
    linear-gradient(125deg, rgba(32, 52, 44, 0.98), rgba(59, 78, 63, 0.95)),
    url("assets/nike/generated/juknokwon-green-hero.jpg") center / cover fixed;
}

.sales-flow {
  position: relative;
  padding: clamp(34px, 4vw, 54px);
  border: 1px solid rgba(234, 216, 149, 0.18);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(32, 52, 44, 0.92), rgba(59, 79, 82, 0.88)),
    repeating-linear-gradient(90deg, rgba(234, 216, 149, 0.04) 0, rgba(234, 216, 149, 0.04) 1px, transparent 1px, transparent 34px);
  box-shadow: 0 30px 70px rgba(15, 28, 22, 0.18);
}

.sales-head h2 {
  color: #fffdf4;
}

.flow-card {
  border-color: rgba(234, 216, 149, 0.18);
  background: linear-gradient(180deg, rgba(255, 253, 244, 0.1), rgba(255, 253, 244, 0.055));
  backdrop-filter: none;
}

.flow-card strong {
  color: #fffdf4;
}

.flow-card p {
  color: rgba(255, 253, 244, 0.76);
}

.company-band {
  padding-top: 70px;
}

.company-profile {
  border-radius: 12px;
}

.site-footer {
  color: #26362f;
  background:
    linear-gradient(180deg, #f3f2ea, #fffdf4);
}

.site-footer .footer-grid {
  gap: 24px;
}

.footer-notice,
.footer-official-card {
  border: 1px solid rgba(59, 79, 82, 0.16);
  background: rgba(255, 253, 244, 0.9);
  box-shadow: 0 18px 46px rgba(32, 52, 44, 0.08);
}

.footer-notice-badge {
  background: #3b4f52;
  color: #fffdf4;
}

.footer-wordmark {
  color: #3b4f52;
}

.footer-wordmark span,
.footer-wordmark em {
  color: #3b4f52;
}

.footer-wordmark strong {
  color: #3b4f52;
  opacity: 0.96;
  text-shadow: none;
}

.footer-role-grid div {
  min-height: 72px;
  border-color: rgba(59, 79, 82, 0.16);
  background: linear-gradient(180deg, rgba(243, 242, 234, 0.92), rgba(255, 253, 244, 0.94));
}

.footer-role-grid dt {
  color: #577146;
}

.footer-role-grid dd,
.footer-role-grid div:last-child dd,
.footer-company-meta p,
.footer-disclaimer p,
.footer-copyright {
  color: #26362f;
}

.footer-company-meta a {
  color: #17251e;
  border-bottom-color: currentColor;
}

@media (max-width: 1180px) {
  .site-nav {
    grid-template-columns: auto 1fr auto;
  }

  .nav-center {
    gap: 18px;
  }

  .sales-head {
    align-items: start;
  }
}

@media (max-width: 760px) {
  .site-nav {
    border-radius: 12px;
    background:
      repeating-linear-gradient(90deg, rgba(234, 216, 149, 0.055) 0, rgba(234, 216, 149, 0.055) 1px, transparent 1px, transparent 28px),
      linear-gradient(115deg, rgba(32, 52, 44, 0.94), rgba(59, 78, 63, 0.9));
  }

  .brand-mark {
    padding-left: 12px;
  }

  .brand-mark span {
    display: block;
    max-width: 36vw;
    overflow: hidden;
    color: rgba(234, 216, 149, 0.82);
    font-size: 0.68rem;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand-mark strong {
    max-width: 38vw;
    font-size: 0.9rem;
  }

  .sub-hero {
    min-height: 300px;
  }

  .sales-flow {
    padding: 24px 18px;
  }

  .sales-head {
    display: grid;
    gap: 18px;
  }

  .footer-wordmark strong {
    font-size: 34px;
  }
}

@media (max-width: 760px) {
  :root {
    --shell: min(100% - 28px, 640px);
  }

  .site-header {
    inset: 12px 0 auto;
  }

  .site-nav {
    width: calc(100% - 20px);
    min-height: 64px;
    padding: 8px;
    gap: 10px;
  }

  .menu-button {
    width: 48px;
    min-width: 48px;
    padding: 0;
  }

  .menu-button b {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
  }

  .brand-text strong {
    font-size: 15px;
  }

  .brand-text em {
    font-size: 11px;
  }

  .phone-link {
    display: none;
  }

  .promo-popup {
    align-items: start;
    flex-direction: column;
    padding: 82px 14px 20px;
    overflow-y: auto;
  }

  .promo-popup-panel,
  .notice-popup-panel {
    width: 100%;
    height: auto;
    min-height: 0;
    padding: 28px 24px 24px;
    overflow: hidden;
  }

  .notice-popup-panel {
    margin: 14px 0 0;
  }

  .promo-popup-brand,
  .notice-popup-brand {
    margin-bottom: 18px;
    font-size: 24px;
  }

  .promo-popup-panel h2,
  .notice-popup-panel h2 {
    font-size: 42px;
  }

  .promo-popup-panel p:not(.promo-popup-brand) {
    margin: 22px 0 26px;
    font-size: 15px;
  }

  .notice-popup-box {
    margin: 20px 0 18px;
    padding: 20px 16px;
  }

  .notice-popup-box p {
    font-size: 14px;
  }

  .notice-popup-icon {
    width: 56px;
    height: 56px;
    font-size: 32px;
  }

  .promo-popup-button,
  .notice-popup-button {
    min-height: 56px;
  }

  .gold-pill {
    min-height: 44px;
    padding: 0 16px;
    font-size: 14px;
  }

  .nav-links {
    font-size: 14px;
  }

  .home-hero {
    min-height: 810px;
    padding: 124px 0 28px;
  }

  .hero-shell,
  .summary-hero,
  .summary-bottom,
  .summary-chip-grid,
  .visual-mosaic,
  .quick-grid,
  .overview-grid,
  .unit-grid,
  .value-grid,
  .flow-grid,
  .form-grid,
  .footer-grid,
  .fact-grid,
  .type-cards {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-bottom: 18px;
  }

  .hero-copy h1 {
    font-size: 41px;
    line-height: 1.16;
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions,
  .summary-action-row,
  .reservation-actions,
  .sales-head-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-brief-card {
    padding: 22px;
  }

  .hero-brief-card > strong {
    font-size: 28px;
  }

  .hero-brief-card dl div {
    grid-template-columns: 82px 1fr;
  }

  .stat-card {
    min-height: 108px;
    padding: 18px 16px;
  }

  .stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .stat-card strong {
    font-size: 20px;
  }

  .stat-card small {
    font-size: 12px;
  }

  .section-band {
    padding: 62px 0;
  }

  .summary-stage {
    gap: 20px;
  }

  .summary-stage-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .summary-media {
    min-height: 390px;
  }

  .summary-media figcaption,
  .visual-card figcaption {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }

  .summary-media strong,
  .visual-card strong {
    font-size: 27px;
  }

  .summary-text-panel,
  .summary-story,
  .copy-panel,
  .section-head,
  .value-card,
  .summary-reservation-card,
  .privacy-card {
    padding: 26px 22px;
  }

  .summary-story {
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "copy"
      "actions";
  }

  .summary-text-panel h2,
  .summary-story h2,
  .copy-panel h2,
  .section-head h2,
  .sales-head h2,
  .reservation-card-head h2 {
    font-size: 32px;
  }

  .summary-chip,
  .quick-card,
  .value-card,
  .flow-card {
    min-height: 138px;
  }

  .reservation-card-head {
    display: grid;
  }

  .reservation-call {
    width: 100%;
  }

  .privacy-check {
    align-items: flex-start;
  }

  .visual-card,
  .visual-card.large {
    min-height: 360px;
  }

  .data-board img,
  .unit-board img {
    aspect-ratio: 4 / 3;
  }

  .sales-head {
    display: grid;
    align-items: start;
  }

  .tone-dark {
    background-attachment: scroll;
  }

  .privacy-main {
    padding-top: 120px;
  }

  .privacy-card h1 {
    font-size: 34px;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 390px) {
  .hero-copy h1 {
    font-size: 36px;
  }

  .brand-text strong {
    font-size: 14px;
  }

  .gold-pill {
    padding: 0 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Rexian-style navigation and page structure refinements. */
.hero-bg {
  background:
    linear-gradient(90deg, rgba(9, 13, 17, 0.88), rgba(9, 13, 17, 0.45) 48%, rgba(9, 13, 17, 0.76)),
    linear-gradient(0deg, rgba(9, 13, 17, 0.95), rgba(9, 13, 17, 0.08) 46%, rgba(9, 13, 17, 0.52)),
    url("assets/nike/generated/damyang-river-residence.jpg") center / cover no-repeat;
}

.nav-left,
.nav-center,
.nav-right {
  display: flex;
  align-items: center;
}

.nav-left {
  gap: 16px;
  min-width: 300px;
}

.nav-center {
  justify-content: center;
  gap: clamp(18px, 2.25vw, 36px);
}

.nav-right {
  justify-content: flex-end;
  gap: 18px;
}

.menu-chip {
  min-width: 92px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-frame);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.menu-chip:hover {
  transform: translateY(-1px);
  border-color: rgba(214, 181, 104, 0.5);
  background: rgba(214, 181, 104, 0.14);
}

.menu-dots {
  width: 4px;
  height: 22px;
  background:
    linear-gradient(var(--gold-2), var(--gold-2)) center top / 4px 4px no-repeat,
    linear-gradient(var(--gold-2), var(--gold-2)) center center / 4px 4px no-repeat,
    linear-gradient(var(--gold-2), var(--gold-2)) center bottom / 4px 4px no-repeat;
}

.menu-chip span:last-child {
  font-size: 16px;
  font-weight: 950;
}

.brand-mark {
  display: grid;
  gap: 3px;
  line-height: 1.15;
}

.brand-mark strong {
  color: #fff;
  font-size: 18px;
  font-weight: 950;
}

.brand-mark span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  font-weight: 750;
}

.nav-link {
  position: relative;
  padding: 12px 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 16px;
  font-weight: 850;
  white-space: nowrap;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 6px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.nav-link:hover::after,
.nav-link.is-active::after {
  transform: scaleX(1);
}

.nav-link.is-active {
  color: #fffaf0;
}

.open-pill {
  min-width: 150px;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border: 1px solid rgba(245, 222, 154, 0.72);
  border-radius: var(--radius-frame);
  color: #111812;
  background: linear-gradient(180deg, #f0d584, #cfab58);
  box-shadow: 0 16px 34px rgba(214, 181, 104, 0.22);
  font-weight: 950;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.open-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(214, 181, 104, 0.28);
}

body.menu-open {
  overflow: hidden;
}

.site-map-overlay {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  place-items: center;
  padding: 28px;
  opacity: 1;
  visibility: visible;
  transition: opacity 200ms ease, visibility 200ms ease;
}

.site-map-overlay[aria-hidden="true"] {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.site-map-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 10, 13, 0.66);
  backdrop-filter: blur(10px);
}

.site-map-panel {
  position: relative;
  width: min(100%, 1180px);
  max-height: min(760px, calc(100vh - 56px));
  overflow: auto;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(214, 181, 104, 0.34);
  border-radius: var(--radius-panel);
  background:
    radial-gradient(circle at 90% 10%, rgba(214, 181, 104, 0.12), transparent 30%),
    linear-gradient(135deg, rgba(14, 22, 28, 0.98), rgba(19, 50, 38, 0.96));
  color: #fff;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.38);
}

.site-map-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.site-map-head p {
  margin: 0;
  color: var(--gold-2);
  font-size: 14px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-map-close {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-frame);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  font-weight: 900;
}

.site-map-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-top: 24px;
}

.site-map-group {
  min-height: 230px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-left-color: rgba(214, 181, 104, 0.64);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.075);
}

.site-map-group span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 950;
}

.site-map-group h3 {
  margin: 10px 0 0;
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1.18;
}

.site-map-group small {
  display: block;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.52);
  font-weight: 800;
  text-transform: uppercase;
}

.site-map-group ul {
  display: grid;
  gap: 8px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.site-map-group a {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.site-map-group a:hover {
  color: var(--gold-2);
}

.sub-hero {
  position: relative;
  min-height: 470px;
  display: grid;
  align-items: end;
  padding: 150px 0 84px;
  color: #fff;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(8, 14, 18, 0.88), rgba(8, 14, 18, 0.48), rgba(8, 14, 18, 0.84)),
    url("assets/nike/generated/damyang-river-residence.jpg") center / cover no-repeat;
}

.sub-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(0deg, var(--paper), transparent);
}

.sub-hero-shell {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  text-align: center;
}

.page-kicker {
  margin: 0 0 12px;
  color: var(--gold-2);
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(58px, 8vw, 116px);
  line-height: 1;
  text-shadow: 0 20px 48px rgba(0, 0, 0, 0.34);
}

.page-lead {
  max-width: 760px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  font-weight: 800;
}

.page-two-col {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  gap: 36px;
  align-items: center;
}

.sub-mosaic,
.gallery-grid {
  grid-template-columns: 1.12fr 0.94fr 0.94fr;
}

.page-value-grid {
  grid-template-columns: 1.12fr repeat(3, 1fr);
}

.clean-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.clean-list li {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-left: 3px solid rgba(214, 181, 104, 0.58);
  border-radius: var(--radius-frame);
  background: #fff;
  color: var(--muted);
  font-weight: 850;
}

.check-grid,
.detail-summary-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.detail-summary-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.check-card,
.detail-summary-card {
  min-height: 220px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 14px;
  padding: 34px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-panel);
  background:
    radial-gradient(circle at 90% 10%, rgba(214, 181, 104, 0.12), transparent 28%),
    #fffdf8;
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.check-card span,
.detail-summary-card span {
  color: #93783a;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.check-card strong,
.detail-summary-card strong {
  color: var(--ink);
  font-size: clamp(25px, 2vw, 34px);
  line-height: 1.22;
}

.check-card p,
.detail-summary-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 750;
}

.reservation-page-band {
  background:
    linear-gradient(125deg, rgba(12, 18, 24, 0.96), rgba(22, 44, 34, 0.94)),
    url("assets/nike/generated/official-consulting-desk.jpg") center / cover fixed;
}

.company-band {
  background: linear-gradient(180deg, #fffaf2, var(--paper));
}

.company-profile {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 32px;
  align-items: stretch;
  padding: clamp(18px, 2vw, 24px);
  border: 1px solid var(--line);
  border-radius: var(--radius-panel);
  background: #fffdf8;
  box-shadow: var(--shadow);
}

.company-media {
  min-height: 420px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-card);
  background: #111;
}

.company-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.company-copy {
  display: grid;
  align-content: center;
  padding: clamp(28px, 4vw, 52px);
}

.company-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.2;
}

.company-copy p:not(.section-kicker) {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 17px;
  font-weight: 750;
}

.company-points {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.company-points span {
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.company-points b {
  color: #92783a;
  font-size: 13px;
}

.company-points em {
  color: var(--ink);
  font-style: normal;
  font-weight: 900;
}

.site-footer .footer-grid {
  grid-template-columns: 1fr;
  gap: 22px;
}

.footer-notice {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: center;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-frame);
  background: rgba(255, 255, 255, 0.06);
}

.footer-notice-badge {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #111812;
  background: var(--gold);
  font-weight: 950;
}

.footer-notice p,
.footer-disclaimer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 750;
}

.footer-company-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
  margin-top: 14px;
}

.footer-company-line span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 13px;
  font-weight: 900;
}

.footer-company-line strong {
  color: #fffaf0;
  font-size: 16px;
}

.footer-company-meta p,
.footer-copyright {
  margin: 8px 0 0;
}

.footer-disclaimer {
  display: grid;
  gap: 6px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 1180px) {
  .site-nav {
    grid-template-columns: 1fr auto;
  }

  .nav-center {
    grid-column: 1 / -1;
    order: 3;
    justify-content: flex-start;
    overflow-x: auto;
    padding: 2px 4px 0;
  }

  .nav-left {
    min-width: 0;
  }

  .site-map-grid,
  .check-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-two-col,
  .company-profile {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-nav {
    width: min(100% - 24px, 1400px);
    min-height: 0;
    padding: 10px;
    gap: 10px;
  }

  .nav-left {
    gap: 10px;
  }

  .menu-chip {
    min-width: 72px;
    height: 42px;
  }

  .brand-mark strong {
    font-size: 14px;
  }

  .brand-mark span,
  .phone-link {
    display: none;
  }

  .open-pill {
    min-width: 96px;
    min-height: 42px;
    padding: 0 14px;
    font-size: 14px;
  }

  .nav-center {
    gap: 18px;
    font-size: 14px;
  }

  .site-map-overlay {
    padding: 14px;
  }

  .site-map-panel {
    max-height: calc(100vh - 28px);
    padding: 22px;
  }

  .site-map-grid,
  .check-grid,
  .detail-summary-grid,
  .page-value-grid {
    grid-template-columns: 1fr;
  }

  .site-map-group {
    min-height: 0;
  }

  .sub-hero {
    min-height: 390px;
    padding: 136px 0 62px;
  }

  .page-title {
    font-size: clamp(48px, 17vw, 70px);
  }

  .page-lead {
    font-size: 16px;
  }

  .company-profile {
    padding: 12px;
  }

  .company-media {
    min-height: 260px;
  }

  .company-copy {
    padding: 24px 16px 28px;
  }

  .company-points span {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .footer-notice {
    grid-template-columns: 1fr;
  }
}

/* Damyang Nike content enrichment pass. */
.hero-bg {
  background:
    linear-gradient(90deg, rgba(9, 13, 17, 0.88), rgba(9, 13, 17, 0.42) 48%, rgba(9, 13, 17, 0.76)),
    linear-gradient(0deg, rgba(9, 13, 17, 0.95), rgba(9, 13, 17, 0.08) 48%, rgba(9, 13, 17, 0.52)),
    url("assets/nike/generated/damyang-evening-riverside.jpg") center / cover no-repeat;
}

.sub-hero {
  background:
    linear-gradient(90deg, rgba(8, 14, 18, 0.88), rgba(8, 14, 18, 0.46), rgba(8, 14, 18, 0.84)),
    url("assets/nike/generated/damyang-evening-riverside.jpg") center / cover no-repeat;
}

.summary-media,
.visual-card,
.data-board,
.support-guide-image {
  margin: 0;
}

.hero-copy h1 {
  max-width: 780px;
  font-size: clamp(50px, 5.7vw, 84px);
}

.summary-text-panel h2,
.copy-panel h2,
.company-copy h2 {
  font-size: clamp(34px, 3.5vw, 52px);
}

.summary-prose {
  font-size: clamp(16px, 1.15vw, 18px);
}

.summary-chip {
  justify-items: start;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(251, 247, 239, 0.98)),
    radial-gradient(circle at 90% 10%, rgba(214, 181, 104, 0.13), transparent 26%);
}

.summary-chip span {
  color: #806b37;
  font-size: 13px;
  font-weight: 950;
}

.support-guide-row {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.04fr) minmax(0, 1.04fr);
  gap: 18px;
}

.support-guide-copy,
.support-guide-image {
  min-height: 280px;
  border: 1px solid var(--line);
  border-radius: var(--radius-panel);
  background: #fffdf8;
  box-shadow: var(--shadow-soft);
}

.support-guide-copy {
  display: grid;
  align-content: center;
  padding: clamp(28px, 3vw, 42px);
}

.support-guide-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(32px, 3vw, 46px);
  line-height: 1.2;
}

.support-guide-copy p:not(.section-kicker) {
  margin: 16px 0 0;
  color: var(--muted);
  font-weight: 800;
}

.support-guide-image {
  position: relative;
  overflow: hidden;
  background: #111;
}

.support-guide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms ease;
}

.support-guide-image:hover img {
  transform: scale(1.035);
}

.support-guide-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.58), transparent 52%);
}

.support-guide-image figcaption {
  position: absolute;
  z-index: 2;
  left: 22px;
  right: 22px;
  bottom: 20px;
  color: #fff;
  font-size: 19px;
  font-weight: 950;
}

.guide-visual-stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.guide-visual-stack .data-board {
  min-height: 0;
  box-shadow: var(--shadow-soft);
}

.guide-visual-stack .data-board img {
  aspect-ratio: 16 / 8.2;
}

.company-band {
  background:
    linear-gradient(180deg, #fffaf2 0%, #f1eadf 100%);
}

.company-profile {
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
}

.company-media img {
  object-position: center;
}

.site-footer {
  padding: 46px 0 54px;
  color: var(--ink);
  background: linear-gradient(180deg, #f1eadf, #faf7ef);
}

.site-footer .footer-grid {
  grid-template-columns: 1fr;
  gap: 22px;
}

.footer-notice {
  grid-template-columns: 46px 1fr;
  padding: 18px 26px;
  border: 1px solid rgba(20, 32, 26, 0.12);
  border-radius: var(--radius-panel);
  background: rgba(255, 253, 248, 0.84);
  box-shadow: var(--shadow-soft);
}

.footer-notice-badge {
  width: 46px;
  height: 46px;
  color: #fff;
  background: #0d1418;
}

.footer-notice p,
.footer-disclaimer p {
  color: #314039;
}

.footer-official-card {
  display: grid;
  justify-items: center;
  gap: 22px;
  padding: clamp(34px, 4vw, 54px);
  border: 1px solid rgba(20, 32, 26, 0.1);
  border-radius: var(--radius-panel);
  background:
    radial-gradient(circle at 50% 0%, rgba(214, 181, 104, 0.1), transparent 34%),
    #fffdf8;
  box-shadow: var(--shadow);
  text-align: center;
}

.footer-wordmark {
  display: grid;
  justify-items: center;
  gap: 4px;
  padding: 12px 22px;
  background: #fff;
}

.footer-wordmark span,
.footer-wordmark em {
  color: #29342e;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.34em;
}

.footer-wordmark strong {
  color: #151b18;
  font-size: clamp(28px, 4.1vw, 52px);
  font-weight: 950;
  line-height: 0.98;
  letter-spacing: 0.08em;
}

.footer-role-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 28px;
  margin: 0;
}

.footer-role-grid div {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.footer-role-grid dt {
  color: #6d766f;
  font-weight: 950;
}

.footer-role-grid dd {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 950;
}

.footer-role-grid div:last-child dd {
  color: #121a16;
  font-size: 22px;
}

.footer-company-meta {
  display: grid;
  gap: 8px;
}

.footer-company-meta p {
  margin: 0;
  color: #516058;
  font-weight: 750;
}

.footer-company-meta a {
  color: var(--ink);
  border-bottom: 1px solid currentColor;
  font-weight: 950;
}

.footer-disclaimer {
  padding: 22px 0 0;
  border-top: 1px solid rgba(20, 32, 26, 0.1);
}

.footer-copyright {
  margin: 0;
  color: #7a847d;
  text-align: center;
  font-weight: 800;
}

@media (max-width: 1180px) {
  .company-profile {
    grid-template-columns: 1fr;
  }

  .support-guide-row {
    grid-template-columns: 1fr 1fr;
  }

  .support-guide-copy {
    grid-column: 1 / -1;
  }

  .footer-role-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    max-width: 820px;
  }

  .footer-role-grid div {
    justify-content: center;
  }
}

@media (max-width: 760px) {
  .promo-popup {
    gap: 12px;
    padding: 64px 14px 20px;
  }

  .promo-popup-panel,
  .notice-popup-panel {
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  .notice-popup-panel {
    padding-bottom: 58px;
  }

  .promo-popup-panel h2,
  .notice-popup-panel h2 {
    font-size: 38px;
  }

  .promo-popup-panel p:not(.promo-popup-brand) {
    margin: 18px 0 20px;
    font-size: 14px;
  }

  .notice-popup-box {
    gap: 12px;
    margin: 16px 0 14px;
    padding: 16px 14px;
  }

  .notice-popup-icon {
    width: 48px;
    height: 48px;
    border-width: 4px;
    font-size: 28px;
  }

  .notice-popup-box p {
    font-size: 13px;
    line-height: 1.48;
  }

  .promo-popup-button,
  .notice-popup-button {
    min-height: 52px;
    margin-top: 0;
  }

  .notice-popup-button {
    transform: translateY(-18px);
  }

  .hero-copy h1 {
    font-size: clamp(38px, 11vw, 50px);
  }

  .support-guide-row,
  .guide-visual-stack {
    grid-template-columns: 1fr;
  }

  .support-guide-copy,
  .support-guide-image {
    min-height: 230px;
  }

  .support-guide-copy h2 {
    font-size: 31px;
  }

  .summary-text-panel h2,
  .copy-panel h2,
  .company-copy h2 {
    font-size: clamp(30px, 9vw, 40px);
  }

  .footer-notice,
  .footer-role-grid {
    grid-template-columns: 1fr;
  }

  .footer-official-card {
    padding: 28px 18px;
  }

  .footer-wordmark strong {
    font-size: clamp(26px, 9vw, 34px);
  }

  .footer-wordmark span,
  .footer-wordmark em {
    letter-spacing: 0.22em;
  }

  .footer-role-grid div {
    display: grid;
    gap: 2px;
  }
}

/* Rexian composition baseline for reusable promotion pages. */
.page-home .hero-shell {
  grid-template-columns: 1fr;
  align-items: end;
}

.page-home .hero-copy {
  max-width: 840px;
  padding-bottom: 84px;
}

.home-mosaic {
  grid-template-columns: 1.18fr 0.91fr 0.91fr;
}

.home-mosaic .visual-card {
  min-height: 390px;
}

.home-mosaic .visual-card.large {
  min-height: 460px;
}

.feature-banner {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  margin-top: 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-panel);
  background: #111;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.26);
}

.feature-banner img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  filter: saturate(1.03) contrast(1.03);
}

.feature-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 11, 14, 0.86), rgba(5, 11, 14, 0.34) 52%, rgba(5, 11, 14, 0.72)),
    linear-gradient(0deg, rgba(5, 11, 14, 0.72), transparent 50%);
}

.feature-banner-copy {
  position: absolute;
  z-index: 2;
  left: clamp(28px, 5vw, 70px);
  right: clamp(28px, 5vw, 70px);
  bottom: clamp(28px, 5vw, 64px);
  max-width: 680px;
}

.feature-banner-copy p {
  margin: 0 0 10px;
  color: var(--gold-2);
  font-size: 14px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-banner-copy h3 {
  margin: 0;
  color: #fffaf0;
  font-family: var(--serif);
  font-size: 38px;
  line-height: 1.28;
}

.feature-banner-copy span {
  display: block;
  margin-top: 18px;
  color: rgba(255, 250, 240, 0.78);
  font-weight: 850;
}

.hero-copy h1 {
  font-size: 68px;
  line-height: 1.14;
}

.page-title {
  font-size: 72px;
  line-height: 1.08;
}

.summary-text-panel h2,
.copy-panel h2,
.company-copy h2,
.section-head h2,
.sales-head h2 {
  font-size: 42px;
  line-height: 1.26;
}

.summary-story h2,
.reservation-card-head h2 {
  font-size: 40px;
  line-height: 1.24;
}

.summary-media strong,
.visual-card strong {
  font-size: 29px;
  line-height: 1.28;
}

.summary-chip strong {
  font-size: 20px;
  line-height: 1.38;
}

.quick-card strong,
.value-card strong,
.flow-card strong,
.check-card strong,
.detail-summary-card strong {
  font-size: 24px;
  line-height: 1.28;
}

.summary-mark {
  font-size: 24px;
}

@media (max-width: 1180px) {
  .page-home .hero-copy {
    padding-bottom: 48px;
  }

  .hero-copy h1 {
    font-size: 56px;
  }

  .page-title {
    font-size: 58px;
  }

  .summary-text-panel h2,
  .copy-panel h2,
  .company-copy h2,
  .section-head h2,
  .sales-head h2 {
    font-size: 36px;
  }

  .summary-story h2,
  .reservation-card-head h2 {
    font-size: 34px;
  }

  .home-mosaic {
    grid-template-columns: 1fr 1fr;
  }

  .home-mosaic .visual-card.large {
    grid-column: 1 / -1;
    min-height: 420px;
  }
}

@media (max-width: 760px) {
  .page-home .hero-copy {
    padding-bottom: 24px;
  }

  .hero-copy h1 {
    font-size: 38px;
    line-height: 1.18;
  }

  .hero-lead {
    font-size: 15px;
  }

  .page-title {
    font-size: 44px;
    line-height: 1.12;
  }

  .summary-text-panel h2,
  .copy-panel h2,
  .company-copy h2,
  .section-head h2,
  .sales-head h2 {
    font-size: 30px;
    line-height: 1.3;
  }

  .summary-story h2,
  .reservation-card-head h2 {
    font-size: 29px;
  }

  .summary-media strong,
  .visual-card strong {
    font-size: 24px;
  }

  .summary-chip strong,
  .quick-card strong,
  .value-card strong,
  .flow-card strong,
  .check-card strong,
  .detail-summary-card strong {
    font-size: 20px;
  }

  .summary-mark {
    font-size: 19px;
  }

  .home-mosaic,
  .home-mosaic .visual-card.large {
    grid-template-columns: 1fr;
  }

  .home-mosaic .visual-card,
  .home-mosaic .visual-card.large,
  .feature-banner,
  .feature-banner img {
    min-height: 300px;
  }

  .feature-banner-copy h3 {
    font-size: 27px;
    line-height: 1.34;
  }

  .feature-banner-copy span {
    font-size: 14px;
  }
}

/* Mobile top bar should stay calm: detailed links move into the menu panel. */
@media (max-width: 760px) {
  .site-nav {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    border-radius: 18px;
  }

  .nav-center {
    display: none;
  }

  .nav-left {
    min-width: 0;
  }

  .brand-mark {
    min-width: 0;
  }

  .brand-mark strong {
    max-width: 140px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

/* Juknokwon green concept pass: bamboo shade, water, and traditional wood accents. */
:root {
  --bg: #07130f;
  --bg-2: #10261c;
  --deep: #0b1c15;
  --green: #1f5a3f;
  --green-2: #5f8065;
  --paper: #eef2e7;
  --paper-2: #fbfaf2;
  --white: #fffef8;
  --ink: #102018;
  --muted: #617163;
  --muted-2: rgba(242, 247, 233, 0.78);
  --gold: #c6a75c;
  --gold-2: #e8d99a;
  --line: rgba(29, 69, 48, 0.14);
  --line-light: rgba(235, 246, 226, 0.14);
  --shadow: 0 26px 70px rgba(7, 22, 14, 0.15);
  --shadow-soft: 0 16px 45px rgba(7, 22, 14, 0.09);
}

body {
  background: #eef2e7;
}

.site-nav {
  border-color: rgba(220, 235, 206, 0.22);
  background:
    linear-gradient(115deg, rgba(17, 42, 30, 0.82), rgba(7, 19, 15, 0.8) 48%, rgba(33, 67, 48, 0.72)),
    rgba(7, 19, 15, 0.68);
  box-shadow: 0 22px 60px rgba(8, 26, 17, 0.28);
}

.menu-chip,
.site-map-close,
.ghost-link {
  border-color: rgba(224, 238, 210, 0.22);
  background: rgba(238, 247, 229, 0.08);
}

.menu-chip:hover {
  border-color: rgba(232, 217, 154, 0.52);
  background: rgba(79, 125, 83, 0.18);
}

.brand-mark strong,
.footer-brand strong {
  color: #f7f8ed;
}

.nav-link {
  color: rgba(244, 249, 238, 0.86);
}

.nav-link:hover,
.nav-link.is-active {
  color: #fffef2;
}

.nav-link::after,
.nav-links a::after {
  background: linear-gradient(90deg, #b8d092, #e8d99a);
}

.phone-link::before,
.menu-dots {
  color: var(--gold-2);
}

.menu-dots {
  background:
    linear-gradient(var(--gold-2), var(--gold-2)) center top / 4px 4px no-repeat,
    linear-gradient(var(--gold-2), var(--gold-2)) center center / 4px 4px no-repeat,
    linear-gradient(var(--gold-2), var(--gold-2)) center bottom / 4px 4px no-repeat;
}

.home-hero {
  background: #07130f;
}

.hero-bg {
  background:
    linear-gradient(90deg, rgba(5, 15, 10, 0.92), rgba(5, 15, 10, 0.52) 42%, rgba(5, 15, 10, 0.42) 66%, rgba(5, 15, 10, 0.74)),
    linear-gradient(0deg, rgba(5, 15, 10, 0.97), rgba(5, 15, 10, 0.12) 48%, rgba(5, 15, 10, 0.34)),
    url("assets/nike/generated/juknokwon-green-hero.jpg") center / cover no-repeat;
  filter: saturate(1.08) contrast(1.03);
}

.hero-kicker,
.section-kicker,
.summary-overline,
.page-kicker,
.site-map-head p,
.feature-banner-copy p {
  color: var(--gold-2);
}

.hero-copy h1,
.page-title {
  color: #fffef4;
  text-shadow: 0 20px 50px rgba(0, 0, 0, 0.42);
}

.btn-gold,
.gold-pill,
.open-pill,
.notice-popup-button {
  color: #102018;
  background: linear-gradient(135deg, #efe4aa, #c6a75c 54%, #9f7b36);
  box-shadow: 0 18px 42px rgba(137, 108, 45, 0.24);
}

.btn-gold:hover,
.gold-pill:hover,
.open-pill:hover,
.notice-popup-button:hover {
  box-shadow: 0 22px 50px rgba(75, 116, 71, 0.22);
}

.hero-statbar {
  background: linear-gradient(180deg, rgba(7, 19, 15, 0), rgba(7, 19, 15, 0.22));
}

.stat-card {
  border-color: rgba(229, 243, 216, 0.15);
  border-left-color: rgba(191, 214, 151, 0.74);
  background:
    linear-gradient(145deg, rgba(6, 18, 14, 0.82), rgba(20, 48, 34, 0.78)),
    rgba(10, 20, 16, 0.72);
}

.stat-card span,
.summary-chip span,
.quick-card span,
.visual-card span,
.flow-card span,
.value-card span,
.check-card span,
.detail-summary-card span {
  color: #b9d49b;
}

.tone-paper {
  background:
    linear-gradient(180deg, rgba(238, 242, 231, 0.96), rgba(251, 250, 242, 0.98)),
    repeating-linear-gradient(90deg, rgba(31, 90, 63, 0.035) 0, rgba(31, 90, 63, 0.035) 1px, transparent 1px, transparent 44px);
}

.tone-white,
.company-band {
  background:
    linear-gradient(180deg, #fffef8, #f4f5ea),
    repeating-linear-gradient(90deg, rgba(31, 90, 63, 0.025) 0, rgba(31, 90, 63, 0.025) 1px, transparent 1px, transparent 46px);
}

.tone-dark {
  color: #fffef4;
  background:
    linear-gradient(125deg, rgba(6, 17, 13, 0.96), rgba(18, 54, 38, 0.93)),
    url("assets/nike/generated/juknokwon-green-hero.jpg") center / cover fixed;
}

.summary-stage-head p,
.summary-mark {
  color: var(--green);
}

.summary-stage-head span {
  color: #6b806c;
}

.summary-text-panel,
.summary-story,
.summary-chip,
.quick-card,
.value-card,
.copy-panel,
.privacy-card,
.check-card,
.detail-summary-card,
.company-profile,
.footer-official-card {
  border-color: rgba(31, 90, 63, 0.15);
  background:
    linear-gradient(180deg, rgba(255, 254, 248, 0.98), rgba(248, 248, 239, 0.98));
  box-shadow: 0 22px 58px rgba(9, 30, 20, 0.09);
}

.summary-media,
.visual-card,
.data-board {
  border-color: rgba(31, 90, 63, 0.18);
  box-shadow: 0 24px 64px rgba(9, 30, 20, 0.14);
}

.summary-media::after,
.visual-card::after {
  background: linear-gradient(0deg, rgba(4, 14, 9, 0.86), rgba(4, 14, 9, 0.08) 66%, transparent);
}

.summary-chip,
.fact-grid span,
.type-cards span,
.clean-list li {
  border-left-color: rgba(81, 129, 77, 0.68);
}

.ghost-link.dark {
  color: var(--green);
  border-color: rgba(31, 90, 63, 0.2);
  background: rgba(255, 255, 255, 0.72);
}

.summary-reservation-card {
  border-color: rgba(188, 214, 152, 0.35);
  background:
    linear-gradient(120deg, rgba(5, 16, 12, 0.98), rgba(12, 34, 25, 0.96) 52%, rgba(37, 73, 50, 0.9)),
    url("assets/nike/generated/juknokwon-green-hero.jpg") center / cover no-repeat;
}

.summary-reservation-card::before {
  background:
    linear-gradient(90deg, rgba(232, 217, 154, 0.6), transparent 34%, transparent 68%, rgba(184, 208, 146, 0.36)) top / 100% 3px no-repeat,
    radial-gradient(circle at 86% 8%, rgba(184, 208, 146, 0.18), transparent 26%);
}

.reservation-call,
.privacy-check {
  border-color: rgba(232, 217, 154, 0.36);
  background: rgba(240, 248, 230, 0.075);
}

input,
select,
textarea {
  border-color: rgba(238, 248, 230, 0.16);
  background: rgba(240, 248, 230, 0.08);
}

input:focus,
select:focus,
textarea:focus {
  border-color: #b8d092;
  box-shadow: 0 0 0 3px rgba(184, 208, 146, 0.16);
}

.privacy-check input {
  accent-color: #b8d092;
}

.section-head {
  border-color: rgba(188, 214, 152, 0.32);
  background:
    radial-gradient(circle at 92% 12%, rgba(232, 217, 154, 0.14), transparent 28%),
    linear-gradient(135deg, #0a1a14, #1f5a3f);
}

.flow-card {
  border-color: rgba(229, 243, 216, 0.16);
  background: rgba(240, 248, 230, 0.085);
}

.fact-grid span,
.type-cards span,
.privacy-list article {
  background: linear-gradient(180deg, #fffef8, #f4f6eb);
}

.fact-grid b,
.type-cards b {
  color: #4e6e42;
}

.sub-hero {
  background:
    linear-gradient(90deg, rgba(5, 15, 10, 0.9), rgba(5, 15, 10, 0.46), rgba(5, 15, 10, 0.82)),
    url("assets/nike/generated/juknokwon-green-hero.jpg") center / cover no-repeat;
}

.sub-hero::after {
  background: linear-gradient(0deg, var(--paper), transparent);
}

.site-map-panel,
.promo-popup-panel,
.notice-popup-panel {
  border-color: rgba(188, 214, 152, 0.34);
  background:
    radial-gradient(circle at 88% 8%, rgba(184, 208, 146, 0.11), transparent 30%),
    linear-gradient(135deg, rgba(7, 18, 14, 0.98), rgba(19, 56, 39, 0.96));
}

.site-map-group {
  border-left-color: rgba(184, 208, 146, 0.68);
  background: rgba(240, 248, 230, 0.075);
}

.site-map-group a:hover {
  color: var(--gold-2);
}

.promo-popup-panel::before,
.notice-popup-panel::before {
  background:
    linear-gradient(90deg, rgba(232, 217, 154, 0.42), transparent 34%, transparent 66%, rgba(184, 208, 146, 0.3)) top / 100% 2px no-repeat,
    repeating-linear-gradient(105deg, rgba(184, 208, 146, 0.12) 0, rgba(184, 208, 146, 0.12) 1px, transparent 1px, transparent 28px);
}

.notice-popup-box {
  border-color: rgba(188, 214, 152, 0.34);
  background: rgba(5, 15, 10, 0.72);
}

.notice-popup-icon {
  background: linear-gradient(135deg, #e8d99a, #b8d092);
}

.feature-banner {
  border-color: rgba(188, 214, 152, 0.24);
}

.feature-banner::after {
  background:
    linear-gradient(90deg, rgba(5, 15, 10, 0.84), rgba(5, 15, 10, 0.46) 52%, rgba(5, 15, 10, 0.12)),
    linear-gradient(0deg, rgba(5, 15, 10, 0.62), transparent 52%);
}

.site-footer {
  background:
    linear-gradient(180deg, #07130f, #0b1c15);
}

.footer-notice,
.footer-official-card {
  border-color: rgba(224, 238, 210, 0.15);
}

.footer-wordmark strong,
.footer-role-grid dd {
  color: #f8f8ee;
}

.footer-notice-badge {
  background: #b8d092;
  color: #07130f;
}

@media (max-width: 760px) {
  .hero-copy h1 {
    font-size: 36px;
    line-height: 1.2;
  }

  .hero-lead {
    font-size: 14px;
    line-height: 1.7;
  }

  .site-nav {
    background:
      linear-gradient(115deg, rgba(15, 39, 28, 0.9), rgba(7, 19, 15, 0.86)),
      rgba(7, 19, 15, 0.74);
  }
}

/* Juknokwon final polish: green comfort, bamboo shade, waterline freshness. */
:root {
  --bg: #06110d;
  --bg-2: #0f261b;
  --deep: #0a1d14;
  --green: #1c5a3d;
  --green-2: #6f8e67;
  --bamboo: #bfd693;
  --water: #7fa8a2;
  --wood: #8a5f38;
  --paper: #eef3e8;
  --paper-2: #fbfaf1;
  --white: #fffef7;
  --ink: #102017;
  --muted: #607263;
  --gold: #c7a85e;
  --gold-2: #eadb9d;
  --line: rgba(28, 90, 61, 0.15);
  --line-light: rgba(232, 244, 218, 0.16);
}

body {
  background:
    linear-gradient(180deg, #eef3e8 0, #fbfaf1 52%, #eef3e8 100%),
    repeating-linear-gradient(90deg, rgba(28, 90, 61, 0.026) 0, rgba(28, 90, 61, 0.026) 1px, transparent 1px, transparent 48px);
}

.site-nav {
  border-color: rgba(232, 244, 218, 0.24);
  border-radius: 18px;
  background:
    linear-gradient(115deg, rgba(13, 39, 27, 0.86), rgba(6, 17, 13, 0.82) 48%, rgba(31, 74, 50, 0.76)),
    rgba(6, 17, 13, 0.72);
  box-shadow: 0 18px 56px rgba(6, 19, 12, 0.28);
}

.brand-mark strong {
  letter-spacing: 0;
}

.nav-link,
.brand-mark span,
.phone-link {
  color: rgba(249, 252, 242, 0.88);
}

.open-pill,
.btn-gold,
.gold-pill,
.notice-popup-button {
  border-color: rgba(234, 219, 157, 0.55);
  color: #0d1b13;
  background: linear-gradient(135deg, #f2e5ad 0%, #cfb366 54%, #9e7a39 100%);
  box-shadow: 0 16px 38px rgba(82, 119, 72, 0.22);
}

.open-pill:hover,
.btn-gold:hover,
.gold-pill:hover,
.notice-popup-button:hover {
  box-shadow: 0 20px 46px rgba(54, 104, 65, 0.26);
}

.ghost-link {
  border-color: rgba(232, 244, 218, 0.24);
  background: rgba(237, 248, 227, 0.08);
}

.ghost-link.dark {
  color: #17422e;
  border-color: rgba(28, 90, 61, 0.22);
  background: rgba(255, 254, 247, 0.82);
}

.home-hero {
  min-height: 900px;
  background: #06110d;
}

.hero-bg {
  background:
    linear-gradient(90deg, rgba(4, 14, 9, 0.93), rgba(4, 14, 9, 0.58) 38%, rgba(4, 14, 9, 0.28) 66%, rgba(4, 14, 9, 0.68)),
    linear-gradient(0deg, rgba(4, 14, 9, 0.96), rgba(4, 14, 9, 0.08) 48%, rgba(4, 14, 9, 0.32)),
    url("assets/nike/generated/juknokwon-green-hero.jpg") center / cover no-repeat;
  filter: saturate(1.12) contrast(1.03);
}

.hero-copy {
  max-width: 900px;
}

.hero-copy h1 {
  max-width: 840px;
  color: #fffdf1;
  font-size: 62px;
  line-height: 1.15;
  text-shadow: 0 18px 48px rgba(0, 0, 0, 0.42);
}

.hero-lead {
  max-width: 700px;
  color: rgba(247, 252, 238, 0.9);
}

.hero-kicker,
.section-kicker,
.summary-overline,
.page-kicker,
.summary-stage-head p,
.feature-banner-copy p {
  color: var(--bamboo);
}

.stat-card {
  border-color: rgba(232, 244, 218, 0.16);
  border-left-color: rgba(191, 214, 147, 0.82);
  background:
    linear-gradient(150deg, rgba(6, 19, 14, 0.86), rgba(19, 55, 37, 0.78)),
    rgba(6, 17, 13, 0.74);
}

.stat-card strong {
  color: #fffef4;
}

.stat-card small {
  color: rgba(237, 248, 227, 0.72);
}

.tone-paper {
  background:
    linear-gradient(180deg, rgba(238, 243, 232, 0.98), rgba(250, 249, 239, 0.99)),
    repeating-linear-gradient(90deg, rgba(28, 90, 61, 0.035) 0, rgba(28, 90, 61, 0.035) 1px, transparent 1px, transparent 46px);
}

.tone-white,
.company-band {
  background:
    linear-gradient(180deg, #fffef7, #f4f6ec),
    repeating-linear-gradient(90deg, rgba(127, 168, 162, 0.028) 0, rgba(127, 168, 162, 0.028) 1px, transparent 1px, transparent 52px);
}

.tone-dark {
  color: #fffef4;
  background:
    linear-gradient(125deg, rgba(5, 16, 11, 0.97), rgba(20, 67, 43, 0.94)),
    url("assets/nike/generated/juknokwon-green-hero.jpg") center / cover fixed;
}

.summary-stage-head {
  border-color: rgba(28, 90, 61, 0.16);
}

.summary-stage-head span {
  color: #637763;
}

.summary-text-panel,
.summary-story,
.summary-chip,
.quick-card,
.copy-panel,
.value-card,
.check-card,
.detail-summary-card,
.privacy-card,
.company-profile,
.footer-official-card {
  border-color: rgba(28, 90, 61, 0.15);
  background:
    linear-gradient(180deg, rgba(255, 254, 247, 0.99), rgba(246, 248, 238, 0.99));
  box-shadow: 0 22px 58px rgba(7, 28, 17, 0.09);
}

.summary-text-panel {
  position: relative;
  overflow: hidden;
}

.summary-text-panel::before {
  content: "";
  position: absolute;
  inset: 28px auto 28px 0;
  width: 5px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--bamboo), var(--green), var(--water));
}

.summary-text-panel h2,
.copy-panel h2,
.section-head h2,
.reservation-card-head h2 {
  color: #102017;
}

.summary-prose,
.summary-story p,
.quick-card em,
.copy-panel p {
  color: #5e6f61;
}

.summary-mark {
  color: #174c33;
  font-weight: 950;
}

.summary-chip,
.fact-grid span,
.type-cards span,
.clean-list li {
  border-left-color: rgba(111, 142, 103, 0.78);
}

.summary-chip strong,
.quick-card strong,
.value-card strong,
.flow-card strong,
.check-card strong,
.detail-summary-card strong {
  color: #102017;
}

.summary-chip span,
.quick-card span,
.visual-card span,
.flow-card span,
.value-card span,
.check-card span,
.detail-summary-card span {
  color: #587b4e;
}

.summary-media,
.visual-card,
.data-board {
  border-color: rgba(28, 90, 61, 0.18);
  box-shadow: 0 24px 64px rgba(7, 28, 17, 0.14);
}

.summary-media::after,
.visual-card::after {
  background:
    linear-gradient(0deg, rgba(4, 14, 9, 0.9), rgba(4, 14, 9, 0.1) 68%, transparent);
}

.summary-reservation-card {
  border-color: rgba(191, 214, 147, 0.38);
  background:
    linear-gradient(120deg, rgba(4, 15, 11, 0.98), rgba(12, 39, 27, 0.96) 52%, rgba(39, 84, 55, 0.88)),
    url("assets/nike/generated/juknokwon-green-hero.jpg") center / cover no-repeat;
}

.summary-reservation-card::before {
  background:
    linear-gradient(90deg, rgba(234, 219, 157, 0.58), transparent 34%, transparent 68%, rgba(191, 214, 147, 0.4)) top / 100% 3px no-repeat,
    radial-gradient(circle at 88% 12%, rgba(191, 214, 147, 0.16), transparent 30%);
}

.reservation-card-head p:not(.section-kicker),
.form-status {
  color: rgba(244, 250, 235, 0.78);
}

.reservation-call,
.privacy-check {
  border-color: rgba(234, 219, 157, 0.34);
  background: rgba(240, 248, 230, 0.078);
}

input,
select,
textarea {
  border-color: rgba(240, 248, 230, 0.17);
  background: rgba(240, 248, 230, 0.085);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--bamboo);
  box-shadow: 0 0 0 3px rgba(191, 214, 147, 0.16);
}

.privacy-check input {
  accent-color: var(--bamboo);
}

.home-mosaic .visual-card.large {
  min-height: 480px;
}

.feature-banner {
  border-color: rgba(191, 214, 147, 0.26);
}

.feature-banner::after {
  background:
    linear-gradient(90deg, rgba(4, 14, 9, 0.82), rgba(4, 14, 9, 0.48) 52%, rgba(4, 14, 9, 0.12)),
    linear-gradient(0deg, rgba(4, 14, 9, 0.62), transparent 54%);
}

.sub-hero {
  background:
    linear-gradient(90deg, rgba(4, 14, 9, 0.9), rgba(4, 14, 9, 0.48), rgba(4, 14, 9, 0.8)),
    url("assets/nike/generated/juknokwon-green-hero.jpg") center / cover no-repeat;
}

.section-head {
  border-color: rgba(191, 214, 147, 0.3);
  background:
    linear-gradient(135deg, #0a1d14, #1c5a3d);
}

.flow-card {
  border-color: rgba(232, 244, 218, 0.17);
  background: rgba(240, 248, 230, 0.088);
}

.site-map-panel,
.promo-popup-panel,
.notice-popup-panel {
  border-color: rgba(191, 214, 147, 0.34);
  background:
    radial-gradient(circle at 82% 10%, rgba(191, 214, 147, 0.10), transparent 30%),
    linear-gradient(135deg, rgba(6, 18, 13, 0.98), rgba(20, 67, 43, 0.96));
}

.promo-popup-panel h2,
.notice-popup-panel h2 {
  color: #dfc88d;
}

.promo-popup-panel::before,
.notice-popup-panel::before {
  background:
    linear-gradient(90deg, rgba(234, 219, 157, 0.42), transparent 34%, transparent 66%, rgba(191, 214, 147, 0.3)) top / 100% 2px no-repeat,
    repeating-linear-gradient(105deg, rgba(191, 214, 147, 0.12) 0, rgba(191, 214, 147, 0.12) 1px, transparent 1px, transparent 28px);
}

.site-footer {
  background: linear-gradient(180deg, #06110d, #0a1d14);
}

.footer-notice,
.footer-official-card {
  border-color: rgba(232, 244, 218, 0.15);
}

.footer-notice-badge {
  background: var(--bamboo);
  color: #06110d;
}

@media (max-width: 1180px) {
  .hero-copy h1 {
    font-size: 54px;
  }
}

@media (max-width: 760px) {
  .site-nav {
    border-radius: 18px;
    background:
      linear-gradient(115deg, rgba(13, 39, 27, 0.92), rgba(6, 17, 13, 0.88)),
      rgba(6, 17, 13, 0.76);
  }

  .home-hero {
    min-height: 805px;
  }

  .hero-bg {
    background-position: 55% center;
  }

  .hero-copy h1 {
    font-size: 35px;
    line-height: 1.22;
  }

  .hero-lead {
    font-size: 14px;
    line-height: 1.72;
  }

  .summary-text-panel::before {
    inset: 22px auto 22px 0;
    width: 4px;
  }

  .home-mosaic .visual-card.large {
    min-height: 330px;
  }

  .tone-dark {
    background:
      linear-gradient(125deg, rgba(5, 16, 11, 0.97), rgba(20, 67, 43, 0.94)),
      url("assets/nike/generated/juknokwon-green-hero.jpg") center / cover no-repeat;
  }
}

/* Damyang completion pass: compact popup, clearer reservation heading, calmer mobile type. */
.promo-popup {
  gap: 20px;
  padding: 18px;
}

.promo-popup-panel,
.notice-popup-panel {
  width: min(390px, calc(50vw - 30px));
  height: auto;
  min-height: 560px;
  max-height: calc(100vh - 44px);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: clamp(28px, 3vw, 36px);
}

.promo-popup-brand,
.notice-popup-brand {
  margin-bottom: 18px;
}

.promo-popup-panel h2,
.notice-popup-panel h2 {
  font-size: clamp(44px, 4.2vw, 54px);
  line-height: 1.12;
}

.promo-popup-panel p:not(.promo-popup-brand) {
  margin: 22px 0 26px;
  font-size: 16px;
  line-height: 1.68;
}

.notice-popup-box {
  margin: 18px 0 22px;
  padding: 22px 18px;
}

.notice-popup-box p {
  font-size: 15px;
  line-height: 1.64;
}

.promo-popup-button,
.notice-popup-button {
  flex: 0 0 auto;
}

.hero-copy h1 {
  max-width: 900px;
  font-size: clamp(48px, 5.4vw, 78px);
  line-height: 1.14;
}

.page-title {
  font-size: clamp(48px, 5.6vw, 78px);
  line-height: 1.14;
}

.summary-reservation-card .section-kicker {
  color: var(--gold-2);
}

#reservation {
  scroll-margin-top: 124px;
}

.summary-reservation-card .reservation-card-head h2,
.reservation-page-band .reservation-card-head h2 {
  color: #fffdf1;
  text-shadow: 0 18px 45px rgba(0, 0, 0, 0.34);
}

.summary-reservation-card .reservation-card-head p:not(.section-kicker),
.reservation-page-band .reservation-card-head p:not(.section-kicker) {
  color: rgba(249, 252, 242, 0.84);
}

.summary-reservation-card .form-field,
.reservation-page-band .form-field {
  color: rgba(249, 252, 242, 0.9);
}

.visual-card.reveal.is-visible,
.summary-media.reveal.is-visible,
.data-board.reveal.is-visible {
  opacity: 1;
}

.visual-card:hover,
.quick-card:hover,
.value-card:hover,
.summary-chip:hover,
.detail-summary-card:hover {
  border-color: rgba(188, 214, 152, 0.46);
  box-shadow: 0 26px 70px rgba(7, 28, 17, 0.14);
}

@media (max-width: 760px) {
  .promo-popup {
    align-items: start;
    justify-content: flex-start;
    flex-direction: column;
    gap: 14px;
    padding: 82px 14px 20px;
    overflow-y: auto;
  }

  .promo-popup-panel,
  .notice-popup-panel {
    width: 100%;
    min-height: 0;
    max-height: none;
    flex-shrink: 0;
    padding: 26px 22px 24px;
  }

  .promo-popup-panel h2,
  .notice-popup-panel h2 {
    font-size: 39px;
  }

  .promo-popup-panel p:not(.promo-popup-brand),
  .notice-popup-box p {
    font-size: 14px;
  }

  .home-hero {
    min-height: 790px;
  }

  .hero-copy h1 {
    max-width: 350px;
    font-size: 32px;
    line-height: 1.25;
  }

  .page-title {
    font-size: 40px;
    line-height: 1.18;
  }

  .summary-reservation-card .reservation-card-head h2,
  .reservation-page-band .reservation-card-head h2 {
    font-size: 33px;
  }

  #reservation {
    scroll-margin-top: 92px;
  }
}

/* Final forest polish: keep the bamboo concept readable across nav, sales flow, and footer. */
.page-sales .sub-hero {
  background:
    linear-gradient(180deg, rgba(4, 14, 9, 0.38) 0%, rgba(4, 14, 9, 0.70) 56%, rgba(244, 246, 237, 0.96) 100%),
    linear-gradient(90deg, rgba(4, 14, 9, 0.86), rgba(28, 62, 42, 0.36), rgba(4, 14, 9, 0.78)),
    url("assets/nike/generated/juknokwon-green-hero.jpg") center / cover no-repeat;
}

.page-sales .sub-hero::after {
  height: 92px;
  background: linear-gradient(180deg, transparent, #f4f6ed);
}

.page-sales .tone-dark {
  background:
    linear-gradient(180deg, #f4f6ed 0, #f4f6ed 74px, rgba(7, 20, 14, 0.98) 74px, rgba(21, 64, 42, 0.96) 100%),
    url("assets/nike/generated/juknokwon-green-hero.jpg") center / cover fixed;
}

.page-sales .sales-flow {
  border-color: rgba(224, 238, 210, 0.2);
  background:
    radial-gradient(circle at 84% 10%, rgba(191, 214, 147, 0.11), transparent 28%),
    linear-gradient(135deg, rgba(6, 17, 13, 0.98), rgba(25, 65, 43, 0.96));
  box-shadow: 0 32px 82px rgba(4, 14, 9, 0.22);
}

.page-sales .flow-card {
  background: rgba(246, 250, 238, 0.095);
  border-color: rgba(232, 244, 218, 0.18);
}

.site-footer {
  background:
    linear-gradient(180deg, #f7f7ef 0%, #eef2e7 100%),
    repeating-linear-gradient(90deg, rgba(59, 79, 82, 0.035) 0, rgba(59, 79, 82, 0.035) 1px, transparent 1px, transparent 56px);
  color: #102017;
}

.footer-notice {
  background: rgba(255, 253, 248, 0.92);
  border-color: rgba(59, 79, 82, 0.13);
  color: #102017;
}

.footer-official-card {
  border: 1px solid rgba(59, 79, 82, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 252, 0.99), rgba(247, 248, 239, 0.99));
  color: #102017;
  box-shadow: 0 24px 62px rgba(59, 79, 82, 0.10);
}

.footer-role-grid {
  gap: 20px 28px;
}

.footer-role-grid div {
  min-width: 132px;
  padding-inline: 18px;
}

.footer-role-grid dt,
.footer-company-meta,
.footer-disclaimer,
.footer-copyright {
  color: rgba(16, 32, 23, 0.72);
}

.footer-role-grid dd {
  color: #102017;
}

.footer-company-meta a {
  color: #31583f;
}

.footer-wordmark {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 248, 239, 0.94));
  border: 1px solid rgba(59, 79, 82, 0.10);
}

.footer-wordmark span,
.footer-wordmark em,
.footer-wordmark strong {
  color: #3b4f52;
  text-shadow: none;
}

@media (max-width: 760px) {
  .site-nav {
    min-height: 70px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    padding: 10px;
  }

  .nav-left {
    min-width: 0;
    gap: 9px;
  }

  .menu-chip {
    min-width: 74px;
    height: 42px;
    padding: 0 10px;
  }

  .brand-mark {
    min-width: 0;
    gap: 2px;
  }

  .brand-mark strong {
    max-width: 142px;
    font-size: 14px;
    line-height: 1.16;
  }

  .brand-mark span {
    display: block;
    max-width: 142px;
    overflow: hidden;
    color: rgba(234, 219, 157, 0.88);
    font-size: 10.5px;
    line-height: 1.18;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .open-pill {
    min-width: 88px;
    min-height: 42px;
    padding: 0 10px;
    font-size: 13px;
  }

  .page-sales .tone-dark {
    background:
      linear-gradient(180deg, #f4f6ed 0, #f4f6ed 42px, rgba(7, 20, 14, 0.98) 42px, rgba(21, 64, 42, 0.96) 100%),
      url("assets/nike/generated/juknokwon-green-hero.jpg") center / cover no-repeat;
  }

  .footer-role-grid div {
    min-width: 0;
    padding-inline: 14px;
  }
}

/* Scroll-reactive heritage header: transparent over the hero, white and crisp after scroll. */
.site-header {
  inset: 0 0 auto;
  transition: transform 220ms ease, filter 220ms ease;
}

.site-nav {
  width: 100%;
  max-width: none;
  min-height: 94px;
  padding: 16px clamp(30px, 3vw, 48px);
  border: 0;
  border-bottom: 1px solid rgba(232, 244, 218, 0.18);
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(7, 19, 15, 0.28), rgba(7, 19, 15, 0.06)),
    rgba(7, 19, 15, 0.02);
  box-shadow: none;
  backdrop-filter: blur(2px);
  transition:
    min-height 220ms ease,
    padding 220ms ease,
    background 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.site-nav::before,
.site-nav::after {
  opacity: 0;
}

.menu-chip {
  border-color: rgba(249, 252, 242, 0.28);
  background: rgba(249, 252, 242, 0.08);
}

.brand-mark {
  border-left-color: rgba(234, 219, 157, 0.48);
}

.brand-mark strong,
.nav-link,
.phone-link {
  color: #fffef4;
  text-shadow: 0 2px 18px rgba(4, 14, 9, 0.34);
}

.brand-mark span {
  color: rgba(234, 219, 157, 0.92);
}

.site-header.is-scrolled .site-nav {
  min-height: 82px;
  padding-block: 12px;
  border-color: rgba(59, 79, 82, 0.12);
  background: rgba(255, 255, 252, 0.96);
  box-shadow: 0 14px 34px rgba(25, 45, 36, 0.12);
  backdrop-filter: blur(16px);
}

.site-header.is-scrolled .menu-chip {
  border-color: rgba(59, 79, 82, 0.16);
  background: rgba(59, 79, 82, 0.045);
  color: #163b2c;
}

.site-header.is-scrolled .menu-dots,
.site-header.is-scrolled .phone-link::before {
  color: #9f7b36;
}

.site-header.is-scrolled .brand-mark {
  border-left-color: rgba(159, 123, 54, 0.34);
}

.site-header.is-scrolled .brand-mark strong,
.site-header.is-scrolled .nav-link,
.site-header.is-scrolled .phone-link {
  color: #0c3a2a;
  text-shadow: none;
}

.site-header.is-scrolled .brand-mark span {
  color: #577146;
}

.site-header.is-scrolled .nav-link:hover,
.site-header.is-scrolled .nav-link.is-active {
  color: #2f5d3f;
}

.site-header.is-scrolled .nav-link::after {
  background: linear-gradient(90deg, #577146, #c9ab61);
}

.site-header.is-scrolled .open-pill {
  border-color: rgba(201, 171, 97, 0.55);
  color: #102018;
  background: linear-gradient(135deg, #f1e2a3 0%, #d0b164 56%, #9e7a39 100%);
  box-shadow: 0 12px 28px rgba(159, 123, 54, 0.18);
}

@media (max-width: 760px) {
  .site-header {
    inset: 10px 0 auto;
  }

  .site-nav {
    width: calc(100% - 20px);
    min-height: 70px;
    padding: 10px;
    border: 1px solid rgba(232, 244, 218, 0.22);
    border-radius: 18px;
    background:
      linear-gradient(115deg, rgba(13, 39, 27, 0.74), rgba(6, 17, 13, 0.62)),
      rgba(6, 17, 13, 0.42);
    box-shadow: 0 18px 42px rgba(5, 16, 11, 0.18);
    backdrop-filter: blur(10px);
  }

  .site-header.is-scrolled .site-nav {
    min-height: 68px;
    padding: 9px;
    border-color: rgba(59, 79, 82, 0.13);
    background: rgba(255, 255, 252, 0.96);
    box-shadow: 0 14px 34px rgba(25, 45, 36, 0.13);
  }

  .site-header.is-scrolled .open-pill {
    box-shadow: none;
  }
}

/* Header typography adjustment: subtitle above brand, wider menu rhythm. */
.brand-mark {
  gap: 3px;
  min-width: 190px;
  padding-left: 22px;
}

.brand-mark span {
  order: 1;
  color: rgba(234, 219, 157, 0.94);
  font-family: var(--serif);
  font-size: 13.5px;
  font-weight: 800;
  line-height: 1.08;
}

.brand-mark strong {
  order: 2;
  color: #fffef4;
  font-family: var(--serif);
  font-size: 20.5px;
  font-weight: 900;
  line-height: 1.14;
}

.nav-center {
  gap: clamp(34px, 4.4vw, 66px);
}

.nav-link {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.2;
}

.site-header.is-scrolled .brand-mark span {
  color: #738e57;
}

.site-header.is-scrolled .brand-mark strong,
.site-header.is-scrolled .nav-link {
  color: #0c3a2a;
}

@media (max-width: 1180px) {
  .brand-mark {
    min-width: 170px;
    padding-left: 16px;
  }

  .brand-mark strong {
    font-size: 18px;
  }

  .brand-mark span {
    font-size: 12px;
  }

  .nav-center {
    gap: clamp(18px, 2.5vw, 34px);
  }

  .nav-link {
    font-size: 15.5px;
  }
}

@media (max-width: 760px) {
  .brand-mark {
    min-width: 0;
    padding-left: 10px;
    gap: 2px;
  }

  .brand-mark span {
    max-width: 150px;
    font-size: 11px;
    line-height: 1.1;
  }

  .brand-mark strong {
    max-width: 150px;
    font-size: 15px;
    line-height: 1.12;
  }

  .nav-link {
    font-size: 15px;
  }
}

/* Hero headline refinement: shorter copy with a softer traditional weight. */
.hero-copy h1 {
  max-width: 820px;
  font-family: "Gowun Batang", "Noto Serif KR", "Nanum Myeongjo", serif;
  font-size: clamp(50px, 4.8vw, 74px);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: 0;
  text-wrap: balance;
  text-shadow: 0 14px 38px rgba(4, 14, 9, 0.42);
}

.hero-copy .hero-lead {
  display: none;
}

@media (max-width: 760px) {
  .hero-copy h1 {
    max-width: 350px;
    font-size: 34px;
    font-weight: 700;
    line-height: 1.24;
  }
}

/* Summary label refinement: give the small section label clearer presence. */
.summary-stage-head p {
  font-family: var(--serif);
  font-size: clamp(17px, 1.25vw, 21px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.06em;
  color: #9fbd69;
  text-shadow: 0 8px 20px rgba(25, 61, 38, 0.12);
}

@media (max-width: 760px) {
  .summary-stage-head p {
    font-size: 16px;
    letter-spacing: 0.04em;
  }
}

/* Main story card refinement: keep scale, reduce visual heaviness. */
.summary-text-panel h2 {
  font-weight: 700;
  text-shadow: none;
}

.summary-text-panel .summary-prose {
  font-weight: 650;
}

.summary-text-panel .summary-mark {
  font-weight: 700;
  letter-spacing: 0;
}

/* Summary bottom headline refinement: lighter, cleaner section title. */
.summary-story h2 {
  font-weight: 700;
  text-shadow: none;
}

/* Site-wide typography softening: reduce heavy display weights across the Damyang theme. */
.hero-copy h1,
.page-title,
.summary-text-panel h2,
.summary-story h2,
.copy-panel h2,
.company-copy h2,
.section-head h2,
.sales-head h2,
.reservation-card-head h2,
.feature-banner-copy h3,
.promo-popup-panel h2,
.notice-popup-panel h2 {
  font-family: "Noto Serif KR", "Gowun Batang", "Nanum Myeongjo", serif;
  font-weight: 500;
  text-shadow: none;
}

.summary-media strong,
.visual-card strong,
.summary-chip strong,
.quick-card strong,
.value-card strong,
.check-card strong,
.flow-card strong,
.type-card strong,
.condition-row strong,
.stat-card strong,
.fact-grid em,
.type-cards em {
  font-weight: 650;
}

.summary-mark,
.summary-prose,
.feature-banner-copy span,
.data-board figcaption,
.footer-role dd {
  font-weight: 600;
}

.section-kicker,
.summary-overline,
.summary-stage-head p,
.summary-chip span,
.quick-card span,
.value-card span,
.fact-grid b,
.type-cards b,
.footer-role dt {
  font-weight: 700;
}

.brand-mark strong,
.brand-text strong,
.nav-link,
.nav-links,
.menu-button b,
.menu-chip span:last-child,
.phone-link,
.open-pill,
.btn,
.ghost-link {
  font-weight: 700;
}

.brand-mark span,
.brand-text em {
  font-weight: 500;
}

/* Overview note: keep the business guidance readable in three calm lines. */
.copy-panel p.overview-note {
  display: grid;
  gap: 6px;
  margin-top: 22px;
  max-width: 680px;
  color: #5e6f61;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.7;
}

.copy-panel p.overview-note span {
  display: block;
  font-weight: inherit;
}

@media (max-width: 760px) {
  .copy-panel p.overview-note {
    gap: 5px;
    font-size: 15px;
    line-height: 1.65;
  }
}

/* Final text rhythm pass: softer weights and calmer mobile wrapping. */
.copy-panel h2,
.section-head h2,
.company-copy h2,
.sales-head h2,
.reservation-card-head h2,
.summary-text-panel h2,
.summary-story h2 {
  max-width: 820px;
  font-weight: 400;
  line-height: 1.34;
  text-wrap: balance;
}

.copy-panel p:not(.section-kicker):not(.overview-note),
.value-card p,
.flow-card p,
.check-card p,
.quick-card em,
.clean-list li {
  font-weight: 500;
  line-height: 1.75;
}

.fact-grid em,
.type-cards em,
.summary-chip strong,
.quick-card strong,
.value-card strong,
.flow-card strong,
.check-card strong,
.detail-summary-card strong {
  font-weight: 600;
}

.summary-media strong,
.visual-card strong {
  font-weight: 600;
  line-height: 1.28;
}

@media (max-width: 760px) {
  .copy-panel h2,
  .section-head h2,
  .company-copy h2,
  .sales-head h2,
  .reservation-card-head h2,
  .summary-text-panel h2,
  .summary-story h2 {
    font-size: clamp(27px, 7.5vw, 30px);
    line-height: 1.36;
    font-weight: 400;
  }

  .copy-panel p:not(.section-kicker):not(.overview-note),
  .value-card p,
  .flow-card p,
  .check-card p,
  .quick-card em,
  .clean-list li {
    font-size: 15px;
    line-height: 1.74;
  }

  .fact-grid em,
  .type-cards em,
  .summary-chip strong,
  .quick-card strong,
  .value-card strong,
  .flow-card strong,
  .check-card strong,
  .detail-summary-card strong {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.45;
  }

  .summary-media strong,
  .visual-card strong {
    font-size: 23px;
    font-weight: 600;
    line-height: 1.32;
  }
}

/* Footer official info: remove framed-box feel and keep searchable text crisp. */
.footer-official-card {
  padding: clamp(28px, 4vw, 48px) 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.footer-wordmark {
  padding: 0;
  border: 0;
  background: transparent;
}

.footer-wordmark span,
.footer-wordmark em,
.footer-wordmark strong {
  color: #25332d;
}

.footer-role-grid {
  gap: 18px clamp(26px, 3vw, 42px);
  width: 100%;
  max-width: 1040px;
}

.footer-role-grid div {
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.footer-role-grid dt {
  color: #111;
  font-weight: 600;
}

.footer-role-grid dd,
.footer-role-grid div:last-child dd {
  color: #111;
  font-weight: 700;
}

.footer-company-meta p,
.footer-company-meta a,
.footer-disclaimer p,
.footer-copyright {
  color: #111;
}

.footer-company-meta p {
  font-weight: 600;
}

.footer-company-meta a {
  font-weight: 700;
  border-bottom-color: currentColor;
}

/* Location value: keep the dark title card readable after global heading polish. */
#location .section-head {
  color: #fffdf2;
  background:
    radial-gradient(circle at 92% 14%, rgba(191, 214, 147, 0.18), transparent 30%),
    linear-gradient(140deg, #123b27, #0d2d20 62%, #183f2e);
}

#location .section-head .section-kicker {
  color: #d7e79b;
}

#location .section-head h2 {
  color: #fffdf2;
  text-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
}

#location .value-card p {
  color: #526254;
  font-weight: 550;
  line-height: 1.72;
}

/* Complex landscape: align the copy and image panels after removing the caption. */
#landscape .overview-grid {
  align-items: stretch;
  --landscape-panel-height: clamp(420px, 36vw, 460px);
}

#landscape .copy-panel,
#landscape .data-board {
  height: 100%;
  min-height: var(--landscape-panel-height);
}

#landscape .data-board img {
  display: block;
  height: 100%;
  min-height: 100%;
  aspect-ratio: auto;
}

/* Complex parking flow: keep text bright and concise on the dark image band. */
#parking .flow-card {
  border-color: rgba(232, 244, 218, 0.22);
  background:
    linear-gradient(145deg, rgba(9, 31, 21, 0.74), rgba(32, 74, 45, 0.46)),
    rgba(255, 255, 255, 0.08);
}

#parking .flow-card span {
  color: #c9df89;
}

#parking .flow-card strong {
  color: #fffdf2;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
}

#parking .flow-card p {
  color: rgba(255, 253, 242, 0.9);
  font-weight: 600;
  line-height: 1.65;
}

/* Subscription guide: structured private-lease cards, comparison table, and Q&A. */
.subscription-section-head {
  display: grid;
  gap: 12px;
  max-width: 780px;
  margin-bottom: clamp(24px, 3vw, 36px);
}

.subscription-section-head h2 {
  margin: 0;
  color: #102017;
  font-family: "Noto Serif KR", "Gowun Batang", "Nanum Myeongjo", serif;
  font-size: clamp(34px, 3.6vw, 50px);
  font-weight: 500;
  line-height: 1.26;
}

.subscription-section-head p:not(.section-kicker) {
  margin: 0;
  color: #5e6f61;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.7;
}

.lease-guide-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.lease-guide-card,
.faq-card {
  min-height: 190px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: clamp(24px, 2.7vw, 34px);
  border: 1px solid rgba(28, 90, 61, 0.15);
  border-left: 3px solid rgba(111, 142, 103, 0.78);
  border-radius: var(--radius-panel);
  background:
    radial-gradient(circle at 90% 10%, rgba(184, 208, 146, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 254, 247, 0.99), rgba(246, 248, 238, 0.99));
  box-shadow: 0 22px 58px rgba(7, 28, 17, 0.08);
}

.lease-guide-card span {
  color: #587b4e;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.faq-card span {
  color: #587b4e;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.lease-guide-card strong,
.faq-card h3 {
  margin: 0;
  color: #102017;
  font-size: clamp(20px, 1.8vw, 25px);
  font-weight: 600;
  line-height: 1.35;
}

.lease-guide-card p,
.faq-card p {
  margin: 0;
  color: #5e6f61;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.68;
}

.lease-compare-wrap {
  overflow-x: auto;
  border: 1px solid rgba(28, 90, 61, 0.15);
  border-radius: var(--radius-panel);
  background: #fffef8;
  box-shadow: 0 22px 58px rgba(7, 28, 17, 0.08);
}

.lease-compare-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  color: #102017;
}

.lease-compare-table th,
.lease-compare-table td {
  padding: 20px 22px;
  border-bottom: 1px solid rgba(28, 90, 61, 0.12);
  text-align: left;
  vertical-align: top;
}

.lease-compare-table th {
  color: #fffdf2;
  font-weight: 700;
  background: linear-gradient(135deg, #123b27, #1f5a3f);
}

.lease-compare-table td:first-child {
  width: 22%;
  color: #4e6e42;
  font-weight: 700;
}

.lease-compare-table td:nth-child(2) {
  width: 28%;
  font-weight: 650;
}

.lease-compare-table tr:last-child td {
  border-bottom: 0;
}

.official-note {
  max-width: 720px;
  margin: 14px 0 0;
  color: rgba(255, 253, 242, 0.78);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
}

@media (max-width: 760px) {
  #landscape .overview-grid {
    --landscape-panel-height: auto;
  }

  #landscape .copy-panel,
  #landscape .data-board {
    min-height: 0;
  }

  #landscape .data-board img {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .subscription-section-head h2 {
    font-size: clamp(28px, 7.5vw, 32px);
    line-height: 1.34;
  }

  .lease-guide-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .lease-guide-card,
  .faq-card {
    min-height: 0;
  }
}

/* Footer final spacing: keep the official info compact and place privacy beside email. */
.footer-official-card {
  gap: clamp(10px, 1.25vw, 16px);
  padding-top: clamp(22px, 3vw, 34px);
  padding-bottom: clamp(24px, 3.2vw, 38px);
}

.footer-role-grid {
  margin-bottom: 2px;
}

.footer-company-meta {
  gap: 7px;
  margin-top: 0;
}

.footer-admin-line {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 0 6px;
}

.footer-privacy-inline {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  white-space: nowrap;
}

.footer-inline-sep {
  color: rgba(17, 17, 17, 0.46);
  font-weight: 500;
}

@media (max-width: 760px) {
  .footer-official-card {
    padding: 24px 0 26px;
    gap: 12px;
  }

  .footer-role-grid {
    gap: 14px;
  }

  .footer-role-grid div {
    justify-items: center;
    padding: 0;
  }

  .footer-company-meta {
    gap: 6px;
  }
}

/* Header text lift: keep the bar/control sizes, only make the labels clearer. */
.menu-chip span:last-child {
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0;
}

.brand-mark {
  gap: 3px;
}

.brand-mark span {
  font-size: 13px;
  line-height: 1.05;
  letter-spacing: 0;
}

.brand-mark strong {
  font-size: 19px;
  line-height: 1.08;
  letter-spacing: 0;
}

.nav-link {
  font-size: 17px;
  line-height: 1;
  letter-spacing: 0;
}

.phone-link {
  font-size: 19px;
  line-height: 1;
  letter-spacing: 0;
}

.open-pill {
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0;
}

@media (max-width: 760px) {
  .menu-chip span:last-child {
    font-size: 14px;
  }

  .brand-mark span {
    font-size: 11.5px;
  }

  .brand-mark strong {
    font-size: 15.5px;
  }
}

/* Popup final alignment: equal panel size and calmer vertical rhythm. */
.promo-popup {
  align-items: center;
  gap: 20px;
}

.promo-popup-panel,
.notice-popup-panel {
  width: min(390px, calc(50vw - 30px));
  height: min(590px, calc(100vh - 48px));
  min-height: 0;
  max-height: calc(100vh - 48px);
  padding: 34px 36px 36px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
}

.promo-popup-brand,
.notice-popup-brand {
  flex: 0 0 auto;
  margin: 0 0 20px;
}

.promo-popup-panel h2,
.notice-popup-panel h2 {
  flex: 0 0 auto;
  margin: 0;
  font-size: clamp(46px, 4vw, 54px);
  line-height: 1.1;
}

.promo-popup-panel p:not(.promo-popup-brand) {
  flex: 1 1 auto;
  min-height: 140px;
  display: grid;
  align-content: center;
  gap: 9px;
  margin: 14px 0 24px;
  font-size: 16px;
  line-height: 1.62;
}

.notice-popup-box {
  flex: 1 1 auto;
  min-height: 190px;
  align-content: center;
  margin: 18px 0 22px;
}

.promo-popup-button,
.notice-popup-button {
  flex: 0 0 auto;
  margin-top: 0;
}

@media (max-width: 760px) {
  .promo-popup {
    align-items: stretch;
    gap: 14px;
  }

  .promo-popup-panel,
  .notice-popup-panel {
    width: 100%;
    height: auto;
    min-height: 0;
    max-height: none;
    padding: 26px 22px 24px;
  }

  .promo-popup-panel h2,
  .notice-popup-panel h2 {
    font-size: 38px;
  }

  .promo-popup-panel p:not(.promo-popup-brand) {
    min-height: 0;
    margin: 18px 0 24px;
    align-content: start;
    gap: 6px;
  }

  .notice-popup-box {
    min-height: 0;
  }
}

/* Small text clarity pass: avoid jagged tiny serif text and cramped tracking. */
body {
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

.promo-popup-brand span,
.notice-popup-brand span,
.section-kicker,
.summary-overline,
.summary-stage-head p,
.summary-chip span,
.quick-card span,
.value-card span,
.stat-card span,
.visual-card span,
.flow-card span,
.lease-guide-card span,
.faq-card span {
  font-family: var(--sans);
  font-size: clamp(13px, 0.92vw, 14.5px);
  font-weight: 750;
  letter-spacing: 0.02em;
  line-height: 1.32;
}

.promo-popup-brand span,
.notice-popup-brand span {
  margin-top: 9px;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.promo-popup-panel p:not(.promo-popup-brand),
.notice-popup-box p {
  color: rgba(255, 250, 240, 0.94);
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.66;
}

.notice-popup-box strong,
.notice-domain-line {
  font-weight: 800;
}

.promo-popup-button,
.notice-popup-button {
  font-size: 16.5px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark span {
  font-family: var(--sans);
  font-weight: 650;
  letter-spacing: 0;
}

@media (max-width: 760px) {
  .promo-popup-brand span,
  .notice-popup-brand span,
  .section-kicker,
  .summary-overline,
  .summary-stage-head p,
  .summary-chip span,
  .quick-card span,
  .value-card span,
  .stat-card span,
  .visual-card span,
  .flow-card span,
  .lease-guide-card span,
  .faq-card span {
    font-size: 13px;
    letter-spacing: 0.01em;
  }

  .promo-popup-panel p:not(.promo-popup-brand),
  .notice-popup-box p {
    font-size: 15px;
    line-height: 1.65;
  }

  .brand-mark span {
    font-size: 12px;
  }
}

/* Official popup detail pass: prevent cramped copy and keep the guide card balanced. */
.notice-popup-panel {
  padding-top: 32px;
}

.notice-popup-panel h2 {
  font-size: clamp(43px, 3.8vw, 50px);
  line-height: 1.08;
}

.notice-popup-box {
  min-height: 218px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 14px;
  margin: 22px 0 20px;
  padding: 20px 18px 22px;
}

.notice-popup-icon {
  width: 58px;
  height: 58px;
  border-width: 4px;
  font-size: 34px;
}

.notice-popup-box p {
  gap: 6px;
  font-size: 16px;
  line-height: 1.55;
}

.notice-domain-line {
  display: block;
  max-width: 100%;
  margin-top: 2px;
  color: #f1d783;
  font-size: 15.5px;
  line-height: 1.48;
  overflow-wrap: anywhere;
}

.notice-popup-button {
  min-height: 64px;
}

@media (max-width: 760px) {
  .notice-popup-panel {
    padding-top: 26px;
  }

  .notice-popup-panel h2 {
    font-size: 37px;
    line-height: 1.1;
  }

  .notice-popup-box {
    margin: 18px 0 20px;
    padding: 18px 16px 20px;
    gap: 12px;
  }

  .notice-popup-icon {
    width: 54px;
    height: 54px;
    font-size: 31px;
  }

  .notice-domain-line {
    font-size: 14.5px;
  }

  .notice-popup-button {
    margin-top: 16px;
  }
}

/* General finish pass: crisper labels, steadier controls, and cleaner card rhythm. */
.btn,
.ghost-link,
.open-pill,
.phone-link,
.form-field,
.privacy-check,
.form-status,
.reservation-call span,
.footer-company-meta,
.footer-disclaimer {
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

.summary-chip,
.quick-card,
.value-card,
.lease-guide-card,
.faq-card,
.flow-card,
.stat-card {
  transform: translateZ(0);
}

.summary-chip strong,
.quick-card strong,
.value-card strong,
.lease-guide-card strong,
.faq-card h3,
.flow-card strong,
.stat-card strong {
  letter-spacing: -0.01em;
}

input,
select,
textarea {
  font-weight: 650;
  letter-spacing: 0;
}

input::placeholder,
textarea::placeholder {
  color: rgba(249, 252, 242, 0.56);
  font-weight: 600;
}

.privacy-check,
.form-status {
  font-size: 15px;
  line-height: 1.55;
}

@media (max-width: 760px) {
  .privacy-check,
  .form-status {
    font-size: 14px;
    line-height: 1.55;
  }

  .summary-chip,
  .quick-card,
  .value-card,
  .lease-guide-card,
  .faq-card,
  .flow-card,
  .stat-card {
    box-shadow: 0 14px 34px rgba(7, 28, 17, 0.08);
  }
}

/* Footer quality pass: match the Daebul Lexian information density while keeping Nike's forest tone. */
.site-footer {
  padding: 56px 0 62px;
  background: linear-gradient(180deg, #f3efe5 0%, #fbfaf4 100%);
  color: #18231d;
}

.site-footer .footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
}

.footer-notice,
.footer-official-card,
.footer-disclaimer {
  border: 1px solid rgba(32, 48, 38, 0.12);
  border-radius: 26px;
  background: rgba(255, 254, 248, 0.94);
  box-shadow: 0 18px 48px rgba(18, 35, 26, 0.08);
}

.footer-notice {
  min-height: 86px;
  padding: 20px 28px;
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 18px;
}

.footer-notice-badge {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #0d1418;
  color: #fff;
  font-size: 21px;
  font-weight: 850;
}

.footer-notice p,
.footer-disclaimer p {
  margin: 0;
  color: #3f4c43;
  font-size: 16px;
  line-height: 1.85;
  font-weight: 500;
  word-break: keep-all;
}

.footer-official-card {
  padding: clamp(38px, 4.8vw, 58px) clamp(28px, 5vw, 66px);
  display: grid;
  justify-items: center;
  gap: 26px;
  text-align: center;
}

.footer-wordmark {
  width: min(560px, 100%);
  padding: 16px 18px 18px;
  display: grid;
  justify-items: center;
  gap: 6px;
  background: #fff;
}

.footer-wordmark span,
.footer-wordmark em {
  color: #26342d;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.3em;
}

.footer-wordmark strong {
  color: #27342d;
  font-family: Georgia, "Times New Roman", "Noto Serif KR", serif;
  font-size: clamp(32px, 4.4vw, 54px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: 0.07em;
}

.footer-role-grid {
  width: min(980px, 100%);
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 32px;
}

.footer-role-grid div {
  min-height: 34px;
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  padding: 0;
  background: transparent;
  border: 0;
}

.footer-role-grid dt {
  color: #687569;
  font-size: 15px;
  font-weight: 800;
}

.footer-role-grid dd,
.footer-role-grid div:last-child dd {
  margin: 0;
  color: #17231c;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 850;
}

.footer-company-meta {
  display: grid;
  gap: 10px;
  color: #415047;
  font-weight: 650;
  line-height: 1.7;
}

.footer-company-meta p {
  margin: 0;
}

.footer-company-meta a {
  color: #173d2e;
  border-bottom: 1px solid currentColor;
  font-weight: 850;
  text-decoration: none;
}

.footer-disclaimer {
  padding: 26px 32px;
  display: grid;
  gap: 8px;
  text-align: center;
}

.footer-copyright {
  margin: 0;
  color: #1f2a22;
  text-align: center;
  font-size: 15px;
  font-weight: 800;
}

@media (max-width: 900px) {
  .footer-role-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 18px;
  }

  .footer-role-grid div {
    justify-content: center;
  }
}

@media (max-width: 620px) {
  .site-footer {
    padding: 42px 0 48px;
  }

  .footer-notice {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    padding: 22px 20px;
  }

  .footer-official-card {
    padding: 32px 20px;
  }

  .footer-wordmark strong {
    font-size: clamp(27px, 8.2vw, 36px);
  }

  .footer-role-grid {
    grid-template-columns: 1fr;
  }

  .footer-role-grid div {
    display: grid;
    justify-items: center;
    gap: 4px;
  }

  .footer-disclaimer {
    padding: 22px 20px;
  }

  .footer-notice p,
  .footer-disclaimer p,
  .footer-company-meta {
    font-size: 14.5px;
    line-height: 1.75;
  }
}

/* Contrast pass: keep dark forest sections readable on every page. */
.tone-dark,
.page-sales .tone-dark {
  color: #f8fbf1;
}

.tone-dark .section-kicker,
.tone-dark .eyebrow,
.page-sales .tone-dark .section-kicker,
.page-sales .flow-card span,
.flow-card span {
  color: #d5efa4;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.36);
}

.tone-dark .section-title,
.tone-dark h2,
.tone-dark h3,
.page-sales .sales-head h2,
.page-sales .tone-dark .section-title {
  color: #fffdf2;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.38);
}

.tone-dark p,
.tone-dark li,
.tone-dark small,
.page-sales .tone-dark p {
  color: rgba(249, 253, 241, 0.86);
}

.flow-card,
.page-sales .flow-card {
  background:
    linear-gradient(180deg, rgba(250, 255, 243, 0.14), rgba(250, 255, 243, 0.08));
  border-color: rgba(232, 244, 218, 0.28);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.22);
}

.flow-card strong,
.page-sales .flow-card strong {
  color: #fffbea;
  font-weight: 800;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.28);
}

.flow-card p,
.page-sales .flow-card p {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 650;
  line-height: 1.75;
}

.tone-dark .ghost-link,
.tone-dark .ghost-link.dark,
.page-sales .tone-dark .ghost-link,
.page-sales .tone-dark .ghost-link.dark {
  color: #fffdf2;
  border-color: rgba(255, 253, 242, 0.46);
  background: rgba(255, 255, 255, 0.08);
}

.tone-dark .ghost-link:hover,
.tone-dark .ghost-link.dark:hover,
.page-sales .tone-dark .ghost-link:hover,
.page-sales .tone-dark .ghost-link.dark:hover {
  color: #102017;
  background: #f6e0a4;
  border-color: #f6e0a4;
}

.feature-banner-copy {
  color: #fffdf2;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.42);
}

.feature-banner-copy p {
  color: #d5efa4;
}

.feature-banner-copy h3 {
  color: #fffdf2;
}

.feature-banner-copy span {
  color: rgba(255, 255, 255, 0.9);
}

.site-map-panel,
.promo-popup-panel,
.notice-popup-panel {
  color: #fffdf2;
}

@media (max-width: 760px) {
  .flow-card p,
  .page-sales .flow-card p {
    font-weight: 600;
  }
}

/* Footer compact pass: reduce the official information block to Lexian-like density. */
.site-footer {
  padding: 22px 0 28px !important;
}

.site-footer .footer-grid {
  gap: 12px !important;
}

.footer-notice {
  min-height: 58px !important;
  padding: 12px 22px !important;
  border-radius: 20px !important;
  grid-template-columns: 42px 1fr !important;
  gap: 16px !important;
}

.footer-notice-badge {
  width: 42px !important;
  height: 42px !important;
  font-size: 19px !important;
}

.footer-official-card {
  padding: 20px 30px 22px !important;
  gap: 11px !important;
  border-radius: 20px !important;
}

.footer-wordmark {
  width: min(380px, 100%) !important;
  padding: 5px 10px 7px !important;
  gap: 2px !important;
}

.footer-wordmark span,
.footer-wordmark em {
  font-size: 11px !important;
  letter-spacing: 0.26em !important;
}

.footer-wordmark strong {
  font-size: clamp(28px, 2.9vw, 38px) !important;
  line-height: 0.95 !important;
  letter-spacing: 0.05em !important;
}

.footer-role-grid {
  gap: 6px 24px !important;
}

.footer-role-grid div {
  min-height: 24px !important;
  gap: 8px !important;
}

.footer-role-grid dt {
  font-size: 14px !important;
}

.footer-role-grid dd,
.footer-role-grid div:last-child dd {
  font-size: 16px !important;
  line-height: 1.25 !important;
}

.footer-company-meta {
  gap: 4px !important;
  line-height: 1.44 !important;
}

.footer-company-meta p,
.footer-company-meta a {
  font-size: 14.5px !important;
}

.footer-disclaimer {
  padding: 14px 24px !important;
  gap: 4px !important;
  border-radius: 20px !important;
}

.footer-notice p,
.footer-disclaimer p {
  font-size: 14.5px !important;
  line-height: 1.5 !important;
}

.footer-copyright {
  font-size: 14px !important;
}

@media (max-width: 620px) {
  .site-footer {
    padding: 24px 0 30px !important;
  }

  .footer-notice {
    grid-template-columns: 1fr !important;
    padding: 16px 18px !important;
    gap: 10px !important;
  }

  .footer-official-card {
    padding: 22px 18px !important;
  }

  .footer-wordmark strong {
    font-size: clamp(25px, 7vw, 32px) !important;
  }

  .footer-role-grid {
    gap: 8px !important;
  }

  .footer-role-grid div {
    min-height: auto !important;
  }

  .footer-company-meta p,
  .footer-company-meta a,
  .footer-notice p,
  .footer-disclaimer p {
    font-size: 13.5px !important;
    line-height: 1.55 !important;
  }
}

/* Site map typography pass: make the table of contents calmer and more formal. */
.menu-chip,
.menu-chip span:last-child,
.site-map-head p,
.site-map-close,
.site-map-group span,
.site-map-group h3,
.site-map-group small,
.site-map-group a {
  font-family: "Noto Sans KR", system-ui, -apple-system, BlinkMacSystemFont, sans-serif !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.menu-chip {
  border-radius: 10px !important;
}

.menu-chip span:last-child {
  font-size: 16px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
}

.site-map-head p {
  color: #f5dfac !important;
  font-size: 20px !important;
  font-weight: 800 !important;
}

.site-map-close {
  font-size: 14px !important;
  font-weight: 700 !important;
}

.site-map-group span {
  color: #d8bf80 !important;
  font-size: 14px !important;
  font-weight: 800 !important;
}

.site-map-group h3 {
  color: #fffdf2 !important;
  font-size: clamp(22px, 1.8vw, 28px) !important;
  line-height: 1.25 !important;
  font-weight: 800 !important;
}

.site-map-group small {
  color: rgba(245, 223, 172, 0.86) !important;
  font-size: 13px !important;
  line-height: 1.35 !important;
  font-weight: 700 !important;
}

.site-map-group a {
  color: rgba(255, 253, 242, 0.9) !important;
  font-size: 15.5px !important;
  line-height: 1.45 !important;
  font-weight: 650 !important;
}

.site-map-group a:hover {
  color: #f5dfac !important;
}

@media (max-width: 760px) {
  .menu-chip span:last-child {
    font-size: 15px !important;
  }

  .site-map-head p {
    font-size: 18px !important;
  }

  .site-map-group h3 {
    font-size: 22px !important;
  }
}

/* Nike table-of-contents traditional typography pass. */
.menu-chip,
.menu-chip span:last-child,
.site-map-head p,
.site-map-close,
.site-map-group span,
.site-map-group h3,
.site-map-group small,
.site-map-group a {
  font-family: "Gowun Batang", "Noto Serif KR", "Malgun Gothic", serif !important;
  letter-spacing: -0.015em !important;
}

.menu-chip {
  min-width: 96px !important;
  border-color: rgba(214, 181, 104, 0.34) !important;
  background:
    linear-gradient(135deg, rgba(255, 253, 242, 0.08), rgba(23, 60, 45, 0.22)),
    rgba(8, 24, 17, 0.42) !important;
}

.menu-chip span:last-child {
  color: #fff6d8 !important;
  font-family: "Noto Serif KR", "Gowun Batang", serif !important;
  font-size: 16px !important;
  font-weight: 700 !important;
}

.site-map-head p {
  color: #efd487 !important;
  font-family: "Song Myung", "Noto Serif KR", serif !important;
  font-size: 24px !important;
  font-weight: 400 !important;
  letter-spacing: 0.02em !important;
}

.site-map-close {
  color: rgba(255, 253, 242, 0.78) !important;
  font-size: 14px !important;
  font-weight: 500 !important;
}

.site-map-group span {
  color: #d6b568 !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
}

.site-map-group h3 {
  color: #fffdf2 !important;
  font-family: "Song Myung", "Noto Serif KR", serif !important;
  font-size: clamp(24px, 2vw, 31px) !important;
  line-height: 1.18 !important;
  font-weight: 400 !important;
}

.site-map-group small {
  color: rgba(239, 212, 135, 0.82) !important;
  font-size: 13.5px !important;
  font-weight: 500 !important;
}

.site-map-group a {
  color: rgba(255, 253, 242, 0.9) !important;
  font-size: 16px !important;
  line-height: 1.5 !important;
  font-weight: 500 !important;
}

.site-map-group a:hover {
  color: #efd487 !important;
}

@media (max-width: 760px) {
  .menu-chip span:last-child {
    font-size: 14.5px !important;
  }

  .site-map-head p {
    font-size: 21px !important;
  }

  .site-map-group h3 {
    font-size: 24px !important;
  }

  .site-map-group a {
    font-size: 15.5px !important;
  }
}

/* Nike new image integration: place the user's updated visuals into the main page flow. */
.home-hero .hero-bg {
  background:
    linear-gradient(90deg, rgba(5, 16, 12, 0.78), rgba(5, 16, 12, 0.38) 48%, rgba(5, 16, 12, 0.68)),
    linear-gradient(0deg, rgba(5, 16, 12, 0.74), transparent 54%),
    url("assets/nike/new/aerial-main.png") center / cover no-repeat !important;
}

.summary-media img {
  object-position: center;
}

.summary-reservation-card {
  background:
    linear-gradient(120deg, rgba(9, 15, 23, 0.98), rgba(17, 25, 35, 0.94) 52%, rgba(34, 50, 39, 0.9)),
    url("assets/nike/new/aerial-river.png") center / cover no-repeat !important;
}

.nike-overview-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.18fr);
  gap: 24px;
  align-items: stretch;
}

.nike-overview-copy {
  min-height: 520px;
  display: grid;
  align-content: center;
}

.nike-overview-copy h2 {
  font-size: clamp(34px, 3.1vw, 48px);
  line-height: 1.28;
}

.nike-overview-board {
  display: grid;
  background: #fff;
}

.nike-overview-board img {
  aspect-ratio: 16 / 9.6;
  object-fit: contain;
  background: #fff;
}

.nike-unit-showcase {
  display: grid;
  gap: 22px;
  padding: clamp(28px, 3vw, 42px);
  border: 1px solid rgba(87, 113, 70, 0.2);
  border-radius: var(--radius-panel);
  background:
    radial-gradient(circle at 90% 8%, rgba(184, 208, 146, 0.14), transparent 26%),
    linear-gradient(180deg, rgba(255, 253, 248, 0.96), rgba(245, 250, 240, 0.92));
  box-shadow: var(--shadow-soft);
}

.nike-unit-head {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(320px, 1fr);
  gap: 20px 34px;
  align-items: end;
}

.nike-unit-head .section-kicker {
  grid-column: 1 / -1;
}

.nike-unit-head h2 {
  margin: 0;
  font-family: var(--serif);
  color: var(--green);
  font-size: clamp(32px, 3vw, 46px);
  line-height: 1.25;
  letter-spacing: 0;
}

.nike-unit-head p:not(.section-kicker) {
  margin: 0;
  color: #637763;
  font-size: 17px;
  line-height: 1.75;
  font-weight: 700;
}

.nike-unit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.nike-unit-card {
  border-color: rgba(87, 113, 70, 0.18);
  box-shadow: 0 20px 56px rgba(31, 56, 38, 0.11);
}

.nike-unit-card img {
  aspect-ratio: 1 / 1.08;
  min-height: 520px;
  padding: 18px;
  object-fit: contain;
}

.nike-unit-card figcaption {
  display: grid;
  gap: 5px;
  padding: 18px 20px 20px;
  border-top: 1px solid rgba(87, 113, 70, 0.14);
  color: #5e6e5c;
  background: #fff;
}

.nike-unit-card figcaption strong {
  color: var(--green);
  font-size: 20px;
}

.nike-unit-card figcaption span {
  font-size: 14px;
  line-height: 1.55;
  font-weight: 700;
}

.nike-full-visual {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border: 1px solid rgba(87, 113, 70, 0.18);
  border-radius: var(--radius-panel);
  background: #102018;
  box-shadow: var(--shadow);
}

.nike-full-visual img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.nike-full-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 16, 12, 0.76), transparent 58%);
}

.nike-full-visual figcaption {
  position: absolute;
  z-index: 2;
  left: clamp(22px, 4vw, 54px);
  right: clamp(22px, 4vw, 54px);
  bottom: clamp(22px, 3vw, 42px);
  color: #fffaf0;
}

.nike-full-visual span {
  display: block;
  color: #d8e4af;
  font-size: 14px;
  font-weight: 900;
}

.nike-full-visual strong {
  display: block;
  margin-top: 8px;
  max-width: 720px;
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 46px);
  line-height: 1.22;
  font-weight: 600;
  letter-spacing: 0;
}

.home-mosaic .visual-card img {
  object-position: center;
}

.home-mosaic .visual-card:nth-child(3) img {
  object-position: center top;
}

@media (max-width: 980px) {
  .nike-overview-layout,
  .nike-unit-grid {
    grid-template-columns: 1fr;
  }

  .nike-overview-copy {
    min-height: auto;
  }

  .nike-unit-head {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .nike-overview-layout {
    gap: 16px;
  }

  .nike-overview-copy h2,
  .nike-unit-head h2 {
    font-size: 31px;
  }

  .nike-overview-board img {
    aspect-ratio: 1.08 / 1;
  }

  .nike-unit-showcase {
    padding: 22px 16px;
  }

  .nike-unit-card img {
    min-height: 360px;
    padding: 10px;
  }

  .nike-full-visual,
  .nike-full-visual img {
    min-height: 370px;
  }
}

/* Mobile header guard: keep the first viewport clean after richer image sections. */
@media (max-width: 760px) {
  .site-nav,
  .site-header.is-scrolled .site-nav {
    grid-template-columns: auto minmax(0, 1fr) !important;
    gap: 10px !important;
    padding: 10px 12px !important;
    overflow: hidden !important;
  }

  .nav-left {
    min-width: 0 !important;
    gap: 10px !important;
  }

  .nav-right,
  .nav-center {
    display: none !important;
  }

  .menu-chip {
    flex: 0 0 auto !important;
    min-width: 74px !important;
    height: 42px !important;
    padding: 0 12px !important;
  }

  .brand-mark {
    min-width: 0 !important;
    overflow: hidden !important;
  }

  .brand-mark span,
  .brand-mark strong {
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
  }

  .home-hero,
  .hero-statbar,
  .stat-grid {
    max-width: 100% !important;
    overflow: hidden !important;
  }

  .stat-grid {
    width: var(--shell) !important;
    grid-template-columns: 1fr !important;
  }

  .stat-card {
    min-width: 0 !important;
  }

  .stat-card strong,
  .stat-card small {
    overflow-wrap: break-word !important;
    white-space: normal !important;
  }

  .summary-media strong,
  .visual-card strong {
    width: 100% !important;
    max-width: 100% !important;
    font-size: 22px !important;
    line-height: 1.35 !important;
    white-space: normal !important;
    overflow-wrap: break-word !important;
    text-wrap: pretty !important;
  }
}

/* BEGIN Nike structure pages */
.nike-main-links {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.sub-page-section + .sub-page-section {
  padding-top: 0;
}

.reservation-page-card {
  max-width: 1180px;
  margin: 0 auto;
}

.overview-note {
  display: grid;
  gap: 6px;
}

.nike-overview-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 26px;
  align-items: start;
}

.nike-overview-copy {
  width: 100%;
  max-width: none;
  min-height: 0;
  padding: 34px 38px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(61, 91, 76, 0.16);
  border-radius: 18px;
  box-shadow: 0 22px 56px rgba(43, 66, 48, 0.08);
}

.nike-overview-copy h2 {
  margin: 10px 0 12px;
  color: #1f332b;
  font-family: var(--serif);
  font-size: clamp(34px, 3.4vw, 56px);
  font-weight: 500;
  line-height: 1.22;
  letter-spacing: 0;
}

.nike-overview-copy p:last-child {
  margin: 0;
  color: #53685c;
  font-size: 18px;
  line-height: 1.75;
  font-weight: 600;
}

.nike-overview-board {
  margin: 0;
  padding: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(61, 91, 76, 0.16);
  border-radius: 18px;
  box-shadow: 0 28px 72px rgba(43, 66, 48, 0.12);
}

.nike-overview-board img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: auto;
  object-fit: contain;
  border-radius: 12px;
}

.visual-card em {
  display: block;
  margin-top: 8px;
  color: rgba(255, 250, 240, 0.76);
  font-style: normal;
  font-weight: 600;
  line-height: 1.6;
}

.page-subscription .sub-hero,
.page-inquiry .sub-hero {
  background:
    linear-gradient(90deg, rgba(8, 14, 18, 0.88), rgba(8, 14, 18, 0.46), rgba(8, 14, 18, 0.84)),
    url("assets/nike/new/aerial-river.png") center / cover no-repeat;
}

.page-complex .sub-hero {
  background:
    linear-gradient(90deg, rgba(8, 14, 18, 0.84), rgba(8, 14, 18, 0.38), rgba(8, 14, 18, 0.78)),
    url("assets/nike/new/aerial-main.png") center / cover no-repeat;
}

.page-unit .sub-hero {
  background:
    linear-gradient(90deg, rgba(8, 14, 18, 0.86), rgba(8, 14, 18, 0.42), rgba(8, 14, 18, 0.78)),
    url("assets/nike/new/aerial-day.png") center / cover no-repeat;
}

.page-sales .sub-hero {
  background:
    linear-gradient(90deg, rgba(8, 14, 18, 0.9), rgba(8, 14, 18, 0.48), rgba(8, 14, 18, 0.84)),
    url("assets/nike/generated/official-consulting-desk.jpg") center / cover no-repeat;
}

.page-inquiry .check-card strong {
  font-size: clamp(23px, 2vw, 30px);
}

@media (max-width: 1180px) {
  .nike-main-links,
  .check-grid,
  .lease-guide-grid,
  .faq-grid,
  .detail-summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .nike-main-links,
  .check-grid,
  .lease-guide-grid,
  .faq-grid,
  .detail-summary-grid {
    grid-template-columns: 1fr;
  }

  .overview-grid,
  .unit-grid,
  .value-grid,
  .support-guide-row {
    grid-template-columns: 1fr;
  }

  .nike-overview-copy {
    padding: 26px 22px;
    border-radius: 14px;
  }

  .nike-overview-board {
    padding: 10px;
    overflow-x: auto;
    border-radius: 14px;
  }

  .nike-overview-board img {
    min-width: 760px;
  }
}
/* END Nike structure pages */

/* Footer final compact pass: reduce vertical bulk to the Daebul Lexian footer rhythm. */
.site-footer {
  padding: 14px 0 18px !important;
}

.site-footer .footer-grid {
  width: min(1180px, calc(100% - 64px)) !important;
  gap: 10px !important;
}

.footer-notice,
.footer-official-card,
.footer-disclaimer {
  border-radius: 18px !important;
}

.footer-notice {
  min-height: 50px !important;
  padding: 10px 20px !important;
  grid-template-columns: 38px 1fr !important;
  gap: 14px !important;
}

.footer-notice-badge {
  width: 38px !important;
  height: 38px !important;
  font-size: 17px !important;
}

.footer-official-card {
  padding: 12px 24px 14px !important;
  gap: 7px !important;
}

.footer-wordmark {
  width: min(520px, 100%) !important;
  padding: 1px 8px 3px !important;
  gap: 1px !important;
}

.footer-wordmark span,
.footer-wordmark em {
  font-size: 9px !important;
  letter-spacing: 0.22em !important;
  line-height: 1.2 !important;
}

.footer-wordmark strong {
  font-size: clamp(23px, 2.05vw, 29px) !important;
  line-height: 0.94 !important;
  letter-spacing: 0.026em !important;
}

.footer-role-grid {
  width: min(860px, 100%) !important;
  gap: 4px 22px !important;
}

.footer-role-grid div {
  min-height: 21px !important;
  gap: 7px !important;
}

.footer-role-grid dt {
  font-size: 12.5px !important;
}

.footer-role-grid dd,
.footer-role-grid div:last-child dd {
  font-size: 14.5px !important;
  line-height: 1.2 !important;
}

.footer-company-meta {
  gap: 2px !important;
  line-height: 1.28 !important;
}

.footer-company-meta p,
.footer-company-meta a {
  font-size: 12.8px !important;
}

.footer-disclaimer {
  padding: 10px 20px !important;
  gap: 2px !important;
}

.footer-notice p,
.footer-disclaimer p {
  font-size: 13px !important;
  line-height: 1.42 !important;
}

.footer-copyright {
  margin-top: 0 !important;
  font-size: 13px !important;
  line-height: 1.35 !important;
}

@media (min-width: 761px) {
  .footer-official-card {
    grid-template-columns: minmax(280px, 360px) minmax(0, 1fr) !important;
    align-items: center !important;
    justify-items: stretch !important;
    text-align: left !important;
    gap: 7px 30px !important;
  }

  .footer-wordmark {
    grid-row: 1 / span 2 !important;
    justify-self: center !important;
    width: min(340px, 100%) !important;
  }

  .footer-role-grid {
    width: 100% !important;
    justify-content: flex-start !important;
  }

  .footer-company-meta {
    width: 100% !important;
    justify-self: stretch !important;
    text-align: left !important;
  }
}

@media (max-width: 620px) {
  .site-footer {
    padding: 18px 0 22px !important;
  }

  .site-footer .footer-grid {
    width: min(100% - 28px, 1180px) !important;
    gap: 9px !important;
  }

  .footer-notice {
    padding: 13px 16px !important;
    gap: 8px !important;
  }

  .footer-official-card {
    padding: 18px 15px !important;
  }

  .footer-wordmark {
    width: min(330px, 100%) !important;
  }

  .footer-wordmark strong {
    font-size: clamp(21px, 5.8vw, 26px) !important;
    line-height: 0.92 !important;
  }

  .footer-role-grid {
    gap: 4px !important;
  }

  .footer-role-grid div {
    min-height: auto !important;
    display: inline-flex !important;
    align-items: baseline !important;
    justify-content: center !important;
    gap: 6px !important;
    padding: 0 !important;
  }

  .footer-role-grid dt {
    font-size: 12px !important;
  }

  .footer-role-grid dd,
  .footer-role-grid div:last-child dd {
    font-size: 14px !important;
    line-height: 1.22 !important;
  }

  .footer-company-meta p,
  .footer-company-meta a,
  .footer-notice p,
  .footer-disclaimer p {
    font-size: 12.8px !important;
    line-height: 1.45 !important;
  }

  .footer-disclaimer {
    padding: 13px 15px !important;
  }
}
