
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@400;500;600;700&family=Noto+Serif+KR:wght@500;600;700&display=swap");

:root {
  --red: #0a6874;
  --red-deep: #082f43;
  --red-soft: #dff1f7;
  --charcoal: #1f1f1f;
  --ink: #262626;
  --muted: #6e6662;
  --line: rgba(38, 38, 38, 0.13);
  --paper: #f5f3ef;
  --paper-2: #fbfaf6;
  --white: #fff;
  --gold: #c7a45c;
  --shadow: 0 24px 70px rgba(27, 21, 20, 0.11);
  --radius: 6px;
  color-scheme: light;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Noto Sans KR", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--paper);
  word-break: keep-all;
  overflow-wrap: break-word;
  letter-spacing: 0;
}
body.promo-popup-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
img {
  max-width: 100%;
  display: block;
  -webkit-user-drag: none;
  user-select: none;
}
.page-shell {
  width: min(1440px, calc(100% - 48px));
  margin: 0 auto;
}
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 40;
  pointer-events: none;
  transition: top 220ms ease;
}
.site-header.is-scrolled { top: 0; }
.site-nav {
  width: 100%;
  min-height: 92px;
  margin: 0;
  padding: 0 clamp(34px, 4vw, 72px);
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,0.22);
  background: linear-gradient(90deg, rgba(12, 12, 12, 0.18), rgba(12, 12, 12, 0.08));
  color: #fff;
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(560px, 1.35fr) minmax(300px, auto);
  gap: clamp(28px, 3.8vw, 68px);
  align-items: center;
  box-shadow: none;
  backdrop-filter: blur(18px);
  border-radius: 0;
  pointer-events: auto;
  transition: background 240ms ease, color 240ms ease, min-height 240ms ease, border-radius 240ms ease, border-color 240ms ease;
}
.site-header.is-scrolled .site-nav {
  width: 100%;
  min-height: 72px;
  border-radius: 0;
  border-color: rgba(60, 45, 42, 0.11);
  background: rgba(255, 253, 249, 0.96);
  color: var(--ink);
  box-shadow: 0 10px 34px rgba(34, 28, 26, 0.12);
}
.nav-left, .nav-center, .nav-right {
  display: flex;
  align-items: center;
}
.nav-left { gap: 18px; min-width: 0; }
.nav-center { justify-content: center; gap: clamp(34px, 4.4vw, 84px); }
.nav-right { justify-content: flex-end; gap: 18px; }
.menu-chip {
  height: 50px;
  min-width: 110px;
  padding: 0 22px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 0;
  background: rgba(255,255,255,0.04);
  color: inherit;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}
.menu-chip:hover { transform: translateY(-1px); border-color: rgba(238,43,36,0.85); background: rgba(238,43,36,0.1); }
.menu-dots {
  width: 4px;
  height: 22px;
  border-radius: 4px;
  background: repeating-linear-gradient(to bottom, var(--gold), var(--gold) 4px, transparent 4px, transparent 8px);
}
.brand-mark {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 16px;
}
.brand-symbol {
  position: relative;
  width: 122px;
  height: 52px;
  display: inline-grid !important;
  border-left: 0 !important;
  padding-left: 0 !important;
}
.brand-symbol img {
  position: absolute;
  inset: 0;
  width: 122px;
  height: 52px;
  object-fit: contain;
  transition: opacity 180ms ease;
}
.logo-on-light { opacity: 0; }
.site-header.is-scrolled .logo-on-dark { opacity: 0; }
.site-header.is-scrolled .logo-on-light { opacity: 1; }
.brand-mark > span:not(.brand-symbol) {
  display: grid;
  gap: 3px;
  border-left: 1px solid rgba(238,43,36,0.75);
  padding-left: 16px;
}
.brand-mark em {
  font-style: normal;
  color: var(--red);
  font-size: 13px;
  font-weight: 700;
}
.brand-mark strong {
  font-size: 21px;
  line-height: 1.18;
  letter-spacing: -0.01em;
}
.nav-link {
  position: relative;
  font-size: 18px;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0.92;
  transition: color 180ms ease, opacity 180ms ease;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -12px;
  width: 0;
  height: 2px;
  background: var(--red);
  transform: translateX(-50%);
  transition: width 180ms ease;
}
.nav-link:hover, .nav-link.is-active { color: #ff5a52; opacity: 1; }
.nav-link:hover::after, .nav-link.is-active::after { width: 100%; }
.phone-link {
  font-size: 22px;
  font-weight: 800;
  white-space: nowrap;
}
.phone-link::before { content: "☎"; margin-right: 8px; color: var(--red); font-size: 15px; }
.open-pill, .btn, .ghost-link, .mini-cta {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
  border-radius: 2px;
  font-weight: 800;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}
.open-pill, .btn-red {
  background: linear-gradient(135deg, #ff463f, var(--red) 58%, #bd171d);
  color: #fff;
  box-shadow: 0 14px 34px rgba(199,25,37,0.3);
}
.open-pill:hover, .btn:hover, .ghost-link:hover, .mini-cta:hover {
  transform: translateY(-2px);
}
.ghost-link, .mini-cta {
  border: 1px solid rgba(255,255,255,0.32);
  color: #fff;
  background: rgba(255,255,255,0.06);
}
.ghost-link.dark, .mini-cta {
  color: var(--ink);
  border-color: rgba(26,20,18,0.16);
  background: rgba(255,255,255,0.65);
}
.section-band {
  position: relative;
  padding: 96px 0;
}
.tone-paper { background: linear-gradient(180deg, #f5f3ef 0%, #eee9e2 100%); }
.tone-white { background: var(--white); }
.tone-deep {
  background:
    linear-gradient(135deg, rgba(30, 30, 30, 0.96), rgba(112, 16, 20, 0.92)),
    radial-gradient(circle at 20% 10%, rgba(238,43,36,0.22), transparent 34%);
  color: #fff;
}
.home-hero {
  position: relative;
  min-height: 920px;
  color: #fff;
  overflow: hidden;
  background: #252525;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.84), rgba(30, 30, 30, 0.44) 50%, rgba(10, 10, 10, 0.34)),
    linear-gradient(0deg, rgba(10, 10, 10, 0.88), transparent 46%),
    var(--hero-image) center / cover no-repeat;
  transform: scale(1.02);
}
.home-hero::before {
  content: "";
  position: absolute;
  z-index: 1;
  right: 8vw;
  top: 17%;
  width: 2px;
  height: min(520px, 54vh);
  background: linear-gradient(180deg, transparent, rgba(238,43,36,0.9), transparent);
  transform: rotate(18deg);
  opacity: 0.9;
}
.home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(115deg, rgba(238,43,36,0.12) 1px, transparent 1px),
    linear-gradient(90deg, transparent 0%, rgba(238,43,36,0.16) 46%, transparent 47%);
  background-size: 62px 62px, 100% 100%;
  opacity: 0.24;
}
.hero-official-mark {
  position: absolute;
  z-index: 1;
  right: -1.2vw;
  bottom: 104px;
  transform: none;
  width: auto;
  aspect-ratio: auto;
  border: 0;
  border-radius: 0;
  display: block;
  color: rgba(255,255,255,0.13);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(72px, 11vw, 178px);
  letter-spacing: 0.2em;
  text-indent: 0.2em;
  white-space: nowrap;
}
.hero-shell {
  position: relative;
  z-index: 2;
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
  align-items: center;
  gap: clamp(48px, 6vw, 96px);
  padding-top: 150px;
}
.hero-copy { max-width: 960px; }
.hero-kicker, .section-kicker {
  margin: 0 0 18px;
  color: var(--red);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: none;
}
.hero-copy h1 {
  margin: 0;
  font-family: "Noto Serif KR", serif;
  font-size: clamp(54px, 5.6vw, 88px);
  line-height: 1.12;
  letter-spacing: 0;
  font-weight: 500;
  text-shadow: 0 12px 34px rgba(0,0,0,0.36);
}
.hero-lead {
  margin: 28px 0 0;
  max-width: 760px;
  color: rgba(255,255,255,0.86);
  font-size: 22px;
  line-height: 1.76;
  font-weight: 500;
}
.hero-actions {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.hero-side-card {
  min-height: 390px;
  padding: 42px 34px;
  border: 1px solid rgba(255,255,255,0.18);
  border-top: 5px solid var(--red);
  background: linear-gradient(180deg, rgba(28,28,28,0.76), rgba(28,28,28,0.42));
  backdrop-filter: blur(18px);
  box-shadow: 0 26px 80px rgba(0,0,0,0.24);
  border-radius: 0;
  display: grid;
  align-content: center;
  gap: 26px;
}
.hero-side-card img {
  width: 190px;
  margin: 0 auto;
  filter: brightness(1.12);
}
.hero-side-card span {
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
.hero-side-card strong {
  font-family: "Noto Serif KR", serif;
  font-size: 30px;
  line-height: 1.4;
  font-weight: 500;
}
.hero-statbar {
  position: relative;
  z-index: 3;
  padding-bottom: 54px;
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.18);
  border-bottom: 1px solid rgba(255,255,255,0.18);
}
.stat-card {
  min-height: 142px;
  padding: 30px 34px;
  border-right: 1px solid rgba(255,255,255,0.18);
  background: rgba(30, 30, 30, 0.58);
  backdrop-filter: blur(14px);
  display: grid;
  align-content: center;
  gap: 8px;
}
.stat-card:last-child { border-right: 0; }
.stat-card span, .summary-chip span, .info-card-grid span {
  color: var(--red);
  font-size: 14px;
  font-weight: 800;
}
.stat-card strong {
  font-size: 21px;
  line-height: 1.4;
}
.stat-card small {
  color: rgba(255,255,255,0.62);
  font-size: 14px;
  line-height: 1.55;
}
.brand-identity-band {
  position: relative;
  padding: 54px 0;
  background: #fff;
  border-bottom: 1px solid rgba(38,38,38,0.1);
}
.brand-identity {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(360px, 0.9fr) minmax(360px, 1fr);
  gap: 34px;
  align-items: center;
}
.brand-identity-word {
  min-height: 160px;
  display: grid;
  align-content: center;
  gap: 6px;
  border-right: 1px solid rgba(238,43,36,0.18);
}
.brand-identity-word img {
  width: min(300px, 100%);
  height: 92px;
  object-fit: contain;
  object-position: left center;
}
.brand-identity-word span {
  color: rgba(38,38,38,0.34);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5em;
}
.brand-identity-copy h2 {
  margin: 0;
  font-family: "Noto Serif KR", serif;
  font-size: clamp(32px, 3vw, 46px);
  line-height: 1.26;
  font-weight: 500;
}
.brand-identity-copy p:not(.section-kicker) {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
  font-weight: 500;
}
.brand-axis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.brand-axis span {
  min-height: 104px;
  padding: 22px 18px;
  border-left: 3px solid var(--red);
  background: linear-gradient(180deg, #fbfaf6, #f2ede6);
  display: flex;
  align-items: center;
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: none;
}
.summary-layout {
  display: grid;
  grid-template-columns: minmax(380px, 0.78fr) 1.22fr;
  gap: 22px;
  align-items: stretch;
}
.summary-lead, .summary-chip, .copy-panel, .data-board, .story-image, .reservation-card, .map-board {
  border: 1px solid var(--line);
  border-radius: 2px;
  background: rgba(255,255,255,0.9);
  box-shadow: var(--shadow);
}
.summary-lead {
  min-height: 250px;
  padding: 38px;
  background:
    linear-gradient(135deg, rgba(31,31,31,0.98), rgba(86,18,20,0.94)),
    radial-gradient(circle at 100% 0%, rgba(238,43,36,0.23), transparent 34%);
  color: #fff;
}
.summary-lead h2, .copy-panel h2, .section-title, .reservation-card-head h2 {
  margin: 0;
  font-family: "Noto Serif KR", serif;
  font-size: clamp(34px, 3.7vw, 54px);
  line-height: 1.28;
  letter-spacing: 0;
  font-weight: 500;
}
.summary-lead p:not(.section-kicker) {
  margin: 18px 0 0;
  color: rgba(255,255,255,0.72);
  font-size: 19px;
  font-weight: 500;
}
.summary-action-row {
  margin-top: 30px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.summary-chip-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.summary-chip {
  min-height: 250px;
  padding: 30px 24px;
  display: grid;
  align-content: center;
  gap: 16px;
  border-left: 4px solid rgba(238,43,36,0.62);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}
.summary-chip:hover {
  transform: translateY(-4px);
  border-left-color: var(--red);
  box-shadow: 0 28px 72px rgba(62, 42, 38, 0.16);
}
.summary-chip strong {
  font-size: 22px;
  line-height: 1.42;
  letter-spacing: 0;
  font-weight: 800;
}
.main-story-grid {
  margin-top: 82px;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(420px, 1.06fr);
  gap: 28px;
  align-items: stretch;
}
.copy-panel {
  padding: 62px;
  display: grid;
  align-content: center;
  gap: 22px;
}
.copy-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.84;
  font-weight: 500;
}
.story-lines span { display: block; }
.summary-mark {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 52px;
  padding: 0 22px;
  background: linear-gradient(90deg, rgba(238,43,36,0.1), rgba(238,43,36,0.03));
  border-left: 4px solid var(--red);
  color: var(--red-deep) !important;
  font-size: 19px !important;
  font-weight: 800 !important;
}
.story-image, .data-board, .map-board {
  overflow: hidden;
}
.story-image img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}
.sochon-business-overview {
  display: grid;
  gap: 26px;
  width: min(1560px, calc(100% - 48px));
}
.sochon-overview-lead {
  padding: 34px 38px;
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(8,77,88,0.14);
  box-shadow: 0 22px 55px rgba(11,36,48,0.08);
}
.sochon-overview-lead h2 {
  margin: 10px 0 12px;
  color: var(--navy);
  font-size: clamp(32px, 3.2vw, 52px);
  line-height: 1.22;
}
.sochon-overview-lead p:last-child {
  margin: 0;
  color: #435560;
  font-size: 18px;
  line-height: 1.75;
  font-weight: 600;
}
.sochon-overview-board {
  margin: 0;
  overflow: hidden;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.sochon-overview-board img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
}

.songjeong-business-overview .sochon-overview-board {
  max-width: 1180px;
  margin: 0 auto;
}

.songjeong-premium-location-board {
  max-width: 1500px;
}

.songjeong-unit-board-full,
.songjeong-unit-plan-gallery {
  width: min(1320px, calc(100% - 48px));
  max-width: 1320px;
}

.songjeong-unit-plan-gallery {
  margin-top: 34px;
}

.site-songjeong-daelasoo .visual-card.is-board-card {
  background: #fff;
}

.site-songjeong-daelasoo .visual-card.is-board-card img {
  padding: 12px;
  object-fit: contain;
  object-position: center top;
  background: #fff;
}

.site-songjeong-daelasoo .visual-card.is-board-card:hover img {
  transform: scale(1.012);
}

.site-songjeong-daelasoo .home-premium-card.is-board-card img {
  object-fit: contain;
  object-position: center top;
  padding: 8px;
  background: #fff;
}

.site-songjeong-daelasoo .home-premium-card.is-board-card figure {
  background: #fff;
}

.site-songjeong-daelasoo .home-premium-card.is-board-card:hover img {
  transform: scale(1.018);
}
figcaption {
  padding: 16px 20px;
  color: var(--muted);
  font-size: 14px;
  background: rgba(255,253,249,0.92);
}
.visual-mosaic {
  margin-top: 72px;
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 22px;
}
.visual-card {
  position: relative;
  min-height: 420px;
  margin: 0;
  border-radius: 2px;
  overflow: hidden;
  background: #252525;
  box-shadow: var(--shadow);
}
.visual-card img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  transition: transform 500ms ease, filter 500ms ease;
}
.visual-card:hover img {
  transform: scale(1.04);
  filter: saturate(1.05) contrast(1.02);
}
.visual-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(12,12,12,0.88), transparent 62%),
    linear-gradient(115deg, rgba(238,43,36,0.18) 1px, transparent 1px);
  background-size: auto, 54px 54px;
}
.visual-card figcaption {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 30px;
  background: transparent;
  color: #fff;
}
.visual-card span {
  display: block;
  color: #ff554e;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 13px;
}
.visual-card strong {
  display: block;
  margin-top: 10px;
  font-size: 28px;
  line-height: 1.34;
  font-weight: 700;
}
.visual-card em {
  display: block;
  margin-top: 10px;
  color: rgba(255,255,255,0.72);
  font-style: normal;
  font-size: 15px;
  line-height: 1.6;
}
.official-service-grid {
  margin-top: 74px;
  padding: 0;
  border-top: 2px solid var(--ink);
  border-bottom: 1px solid rgba(38,38,38,0.18);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: rgba(255,255,255,0.62);
}
.official-service-grid article {
  min-height: 280px;
  padding: 42px 46px;
  display: grid;
  justify-items: start;
  align-content: center;
  gap: 16px;
  text-align: left;
  border-right: 1px solid rgba(38,38,38,0.16);
  transition: background 180ms ease, transform 180ms ease;
}
.official-service-grid article:last-child { border-right: 0; }
.official-service-grid article:hover {
  background: rgba(238,43,36,0.045);
  transform: translateY(-3px);
}
.service-icon {
  width: auto;
  height: auto;
  border-radius: 0;
  display: inline-flex;
  place-items: unset;
  background: transparent;
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.18em;
}
.official-service-grid h3 {
  margin: 0;
  color: #262626;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(27px, 2.3vw, 38px);
  line-height: 1.05;
  letter-spacing: 0.04em;
  font-weight: 600;
}
.official-service-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
  font-weight: 500;
}
.official-service-grid a {
  min-width: 170px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(38,38,38,0.28);
  color: #262626;
  font-weight: 800;
  background: #fff;
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}
.official-service-grid a:hover {
  transform: translateY(-2px);
  color: var(--red);
  border-color: var(--red);
}
.overview-grid, .location-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: 28px;
  align-items: stretch;
}
.data-board img, .map-board img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: contain;
  background: #fff;
}
.info-card-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.info-card-grid article {
  min-height: 112px;
  padding: 22px;
  border: 1px solid rgba(238,43,36,0.16);
  background: rgba(255,255,255,0.76);
  border-radius: 4px;
  display: grid;
  align-content: center;
  gap: 10px;
}
.info-card-grid strong {
  font-size: 18px;
  line-height: 1.45;
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 20px;
}
.gallery-item {
  min-height: 330px;
  margin: 0;
  overflow: hidden;
  border-radius: 4px;
  background: #fff;
  border: 1px solid rgba(255,255,255,0.14);
}
.gallery-item.wide { grid-row: span 2; min-height: 680px; }
.gallery-item img {
  width: 100%;
  height: calc(100% - 54px);
  min-height: 280px;
  object-fit: cover;
}
.gallery-item.wide img { min-height: 626px; }
.clean-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}
.clean-list li {
  padding: 18px 0 18px 24px;
  border-top: 1px solid rgba(37, 25, 23, 0.12);
  color: var(--muted);
  font-weight: 700;
  line-height: 1.7;
  position: relative;
}
.clean-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 31px;
  width: 7px;
  height: 7px;
  background: var(--red);
  border-radius: 50%;
}
.reservation-band {
  background:
    linear-gradient(135deg, rgba(24,24,24,0.96), rgba(120,18,20,0.92)),
    radial-gradient(circle at 100% 20%, rgba(238,43,36,0.24), transparent 40%);
}
.reservation-card {
  color: #fff;
  padding: 48px;
  background:
    linear-gradient(135deg, rgba(30,30,30,0.96), rgba(44,32,30,0.92)),
    radial-gradient(circle at 100% 100%, rgba(238,43,36,0.28), transparent 34%);
  border-color: rgba(255,255,255,0.14);
}
.reservation-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 26px;
}
.reservation-card-head p:not(.section-kicker) {
  margin: 16px 0 0;
  color: rgba(255,255,255,0.72);
  font-size: 18px;
  font-weight: 700;
}
.reservation-call {
  min-width: 230px;
  min-height: 92px;
  padding: 18px 24px;
  border: 1px solid rgba(238,43,36,0.42);
  background: rgba(255,255,255,0.07);
  border-radius: 4px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 6px;
}
.reservation-call span { color: rgba(255,255,255,0.62); font-weight: 800; font-size: 14px; }
.reservation-call strong { color: #ff5a52; font-size: 28px; }
.inquiry-form { margin-top: 34px; }
.form-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.form-field {
  display: grid;
  gap: 10px;
  color: rgba(255,255,255,0.82);
  font-weight: 800;
}
.form-field.wide { grid-column: span 2; }
.form-field.full { grid-column: 1 / -1; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-radius: 4px;
  min-height: 58px;
  padding: 0 18px;
  outline: none;
}
.form-field textarea {
  resize: vertical;
  padding: 18px;
  line-height: 1.65;
}
.form-field select option { color: var(--ink); }
.form-field input::placeholder, .form-field textarea::placeholder { color: rgba(255,255,255,0.42); }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  border-color: #ff5a52;
  box-shadow: 0 0 0 3px rgba(238,43,36,0.16);
}
.privacy-check {
  margin-top: 18px;
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 18px;
  border: 1px solid rgba(238,43,36,0.34);
  background: rgba(255,255,255,0.07);
  border-radius: 4px;
  color: rgba(255,255,255,0.86);
  font-weight: 800;
}
.privacy-check input {
  width: 20px;
  height: 20px;
  accent-color: var(--red);
}
.privacy-check a { color: #ff6a62; text-decoration: underline; text-underline-offset: 3px; }
.reservation-actions {
  margin-top: 24px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.form-status {
  margin: 18px 0 0;
  color: #ff6a62;
  font-weight: 700;
}
.site-footer {
  padding: 58px 0 66px;
  background: linear-gradient(180deg, #f7f3ec 0%, #fbfaf6 100%);
}
.footer-grid {
  display: grid;
  gap: 26px;
}
.footer-notice, .footer-official-card, .footer-disclaimer {
  border: 1px solid rgba(50, 43, 38, 0.1);
  border-radius: 24px;
  background: rgba(255, 254, 251, 0.94);
  box-shadow: 0 18px 46px rgba(47, 37, 30, 0.08);
}
.footer-notice {
  min-height: 86px;
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.footer-notice-badge {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 900;
}
.footer-notice p, .footer-disclaimer p {
  margin: 0;
  color: #4c4944;
  line-height: 1.85;
  font-size: 16px;
  font-weight: 500;
  word-break: keep-all;
}
.footer-official-card {
  padding: clamp(34px, 4.2vw, 52px) clamp(30px, 5vw, 68px);
  text-align: center;
}
.footer-wordmark {
  display: grid;
  justify-items: center;
  gap: 8px;
  width: min(500px, 100%);
  margin-inline: auto;
  padding: 12px 18px 16px;
  background: #fff;
}
.footer-wordmark img {
  width: min(330px, 100%);
  height: 72px;
  object-fit: contain;
}
.footer-wordmark span {
  color: #69777b;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.footer-wordmark strong {
  font-family: "Noto Serif KR", serif;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.16;
}
.footer-role-grid {
  margin: 26px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 30px;
}
.footer-role-grid div {
  min-height: 34px;
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}
.footer-role-grid dt {
  color: #8b7b64;
  font-size: 14px;
  font-weight: 800;
}
.footer-role-grid dd {
  margin: 0;
  color: #1f1d1a;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.42;
}
.footer-site-info {
  margin: 24px auto 0;
  display: grid;
  gap: 8px;
  max-width: 880px;
  color: #3f4646;
  font-weight: 700;
  line-height: 1.72;
}
.footer-site-info strong {
  color: #8b7b64;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
}
.footer-site-info p {
  margin: 0;
  word-break: keep-all;
}
.footer-company-meta {
  margin-top: 20px;
  display: grid;
  gap: 8px;
  color: #4c4944;
  font-weight: 700;
  line-height: 1.7;
}
.footer-company-meta p { margin: 0; }
.footer-admin-line span {
  color: rgba(67, 72, 72, 0.45);
  margin: 0 6px;
}
.footer-company-meta a {
  color: var(--red-deep);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.footer-disclaimer {
  padding: 26px 32px;
  display: grid;
  gap: 8px;
  text-align: center;
}
.footer-copyright {
  margin: 0;
  color: #2a2824;
  text-align: center;
  font-size: 15px;
  font-weight: 800;
}
.site-map-overlay, .promo-popup {
  position: fixed;
  inset: 0;
  z-index: 400;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 180ms ease, visibility 180ms ease;
}
body.menu-open .site-map-overlay,
.promo-popup.is-visible {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
}
.site-map-backdrop, .promo-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(9, 6, 6, 0.84);
  backdrop-filter: blur(12px);
}
.site-map-panel {
  position: absolute;
  inset: 46px;
  padding: 36px;
  background: #181211;
  color: #fff;
  border: 1px solid rgba(213,179,102,0.32);
  border-radius: 12px;
  overflow: auto;
}
.site-map-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}
.site-map-head p {
  margin: 0;
  color: var(--gold);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.site-map-close {
  border: 1px solid rgba(255,255,255,0.2);
  background: transparent;
  color: #fff;
  padding: 12px 16px;
  border-radius: 6px;
  cursor: pointer;
}
.site-map-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.site-map-group {
  min-height: 220px;
  padding: 26px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  border-radius: 4px;
  display: grid;
  align-content: start;
  gap: 12px;
}
.site-map-group span { color: #ff5a52; font-weight: 900; }
.site-map-group h3 { margin: 0; font-size: 26px; }
.site-map-group small { color: rgba(255,255,255,0.48); text-transform: uppercase; }
.site-map-group a { color: #fff; font-weight: 800; }
.site-map-group em { color: rgba(255,255,255,0.58); font-style: normal; }
.promo-popup {
  display: grid;
  place-items: center;
  padding: 28px;
}
.promo-popup.is-visible .promo-popup-panel,
.promo-popup.is-visible .notice-popup-panel {
  transform: translateY(0) scale(1);
}
.promo-popup-panel, .notice-popup-panel {
  position: relative;
  width: min(410px, calc(50vw - 40px));
  height: 620px;
  min-height: 0;
  padding: 42px 38px 36px;
  border: 1px solid rgba(238,43,36,0.32);
  border-radius: 4px;
  background:
    linear-gradient(160deg, rgba(28,28,28,0.99), rgba(80,10,14,0.96)),
    linear-gradient(115deg, rgba(238,43,36,0.12) 1px, transparent 1px);
  background-size: auto, 40px 40px;
  color: #fff;
  box-shadow: 0 30px 90px rgba(0,0,0,0.42);
  transform: translateY(18px) scale(0.98);
  transition: transform 240ms ease;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 20px;
}
.promo-popup {
  grid-template-columns: auto auto;
  gap: 24px;
}
.promo-popup-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.24);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 28px;
  cursor: pointer;
}
.promo-popup-brand, .notice-popup-brand {
  margin: 0;
  text-align: center;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.promo-popup-brand span, .notice-popup-brand span {
  display: block;
  margin-top: 4px;
  font-family: "Noto Sans KR", sans-serif;
  font-size: 12px;
  color: #ff5a52;
  letter-spacing: 0.06em;
}
.promo-popup-panel h2, .notice-popup-panel h2 {
  margin: 2px 0 0;
  color: #f4dfc4;
  text-align: center;
  font-family: "Noto Serif KR", serif;
  font-size: 54px;
  line-height: 1.12;
  letter-spacing: 0;
  font-weight: 500;
}
.promo-popup-panel p:not(.promo-popup-brand) {
  margin: 0;
  min-height: 148px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 10px;
  text-align: center;
  color: rgba(255,255,255,0.9);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 600;
}
.promo-popup-panel p:not(.promo-popup-brand) span { display: block; }
.notice-popup-box {
  min-height: 218px;
  padding: 26px 22px;
  border: 1px solid rgba(238,43,36,0.26);
  background: rgba(8, 8, 8, 0.74);
  border-radius: 4px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 18px;
}
.notice-popup-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, #ff5a52, var(--red));
  border: 5px solid rgba(255,255,255,0.36);
  font-size: 38px;
  font-weight: 900;
}
.notice-popup-box p {
  margin: 0;
  display: grid;
  gap: 6px;
  text-align: center;
  color: rgba(255,255,255,0.9);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 800;
}
.notice-popup-box strong { color: #ff817a; }
.notice-domain-line { color: #ff817a; }
.promo-popup-button, .notice-popup-button {
  align-self: end;
  min-height: 64px;
  padding: 0 24px;
  border-radius: 4px;
  background: #fffaf0;
  color: #171414;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.notice-popup-button {
  background: linear-gradient(135deg, #ff5a52, var(--red));
  color: #fff;
}
.promo-popup-arrow {
  width: 12px;
  height: 12px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
  transform: rotate(45deg);
}
/* Soft residence popup pass: pastel tone and Daebul Lexian-like panel spacing. */
.promo-popup {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: center;
  align-content: center;
  justify-items: center;
  gap: clamp(14px, 1.8vw, 26px);
  padding: 24px;
}
.promo-popup-backdrop {
  background:
    linear-gradient(135deg, rgba(236, 249, 255, 0.76), rgba(255, 247, 241, 0.72)),
    rgba(12, 24, 34, 0.34);
  backdrop-filter: blur(13px) saturate(1.08);
}
.promo-popup-panel, .notice-popup-panel {
  width: min(390px, calc(50vw - 24px));
  height: 590px;
  padding: 38px 34px 32px;
  border: 1px solid rgba(112, 171, 196, 0.36);
  border-radius: 16px;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.97), rgba(232, 246, 252, 0.96)),
    linear-gradient(115deg, rgba(206, 228, 238, 0.38) 1px, transparent 1px);
  background-size: auto, 38px 38px;
  color: #17242b;
  box-shadow: 0 30px 86px rgba(42, 83, 105, 0.22);
}
.notice-popup-panel {
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.98), rgba(241, 249, 252, 0.96)),
    linear-gradient(115deg, rgba(229, 89, 80, 0.06) 1px, transparent 1px);
  border-color: rgba(126, 182, 205, 0.4);
}
.promo-popup-close {
  border-color: rgba(34, 61, 72, 0.16);
  background: rgba(255, 255, 255, 0.72);
  color: #263841;
  box-shadow: 0 8px 20px rgba(42, 83, 105, 0.14);
}
.promo-popup-brand, .notice-popup-brand {
  color: #263841;
}
.promo-popup-brand span, .notice-popup-brand span {
  color: #d94a42;
}
.promo-popup-panel h2, .notice-popup-panel h2 {
  color: #31444d;
  text-shadow: none;
}
.promo-popup-panel p:not(.promo-popup-brand) {
  color: #3d4d55;
  font-weight: 700;
}
.notice-popup-box {
  min-height: 206px;
  border: 1px solid rgba(112, 171, 196, 0.3);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.9), rgba(235,248,253,0.78));
  border-radius: 12px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9);
}
.notice-popup-icon {
  color: #fff;
  background: linear-gradient(135deg, #7fb9d2, #3f8dad);
  border-color: rgba(255,255,255,0.72);
}
.notice-popup-box p {
  color: #324750;
  font-weight: 800;
}
.notice-popup-box strong {
  color: #c6453d;
}
.notice-domain-line {
  color: #2a7798;
}
.promo-popup-button, .notice-popup-button {
  min-height: 62px;
  border-radius: 10px;
  background: linear-gradient(135deg, #ffffff, #eef9fd);
  color: #15252d;
  border: 1px solid rgba(112, 171, 196, 0.28);
  box-shadow: 0 15px 30px rgba(42, 83, 105, 0.13);
}
.notice-popup-button {
  background: linear-gradient(135deg, #dceff8, #9fcde0);
  color: #10242c;
  border-color: rgba(63, 141, 173, 0.24);
}
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 520ms ease, transform 520ms ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.privacy-page {
  min-height: 100vh;
  padding: 78px 24px;
  background: var(--paper);
}
.privacy-hero, .privacy-card {
  width: min(960px, 100%);
  margin: 0 auto;
}
.privacy-hero {
  padding: 48px 0;
}
.privacy-back {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--red-deep);
  font-weight: 900;
}
.privacy-hero h1 {
  margin: 0;
  font-family: "Noto Serif KR", serif;
  font-size: 52px;
}
.privacy-hero p {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.8;
}
.privacy-card {
  display: grid;
  gap: 16px;
}
.privacy-card article {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.privacy-card h2 { margin: 0 0 8px; }
.privacy-card p { margin: 0; color: var(--muted); line-height: 1.8; }

@media (max-width: 1180px) {
  .site-nav {
    grid-template-columns: 1fr auto;
  }
  .nav-center {
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding: 0 8px 12px;
  }
  .hero-shell, .main-story-grid, .overview-grid, .location-grid {
    grid-template-columns: 1fr;
  }
  .brand-identity {
    grid-template-columns: 1fr;
  }
  .brand-identity-word {
    border-right: 0;
    border-bottom: 1px solid rgba(238,43,36,0.16);
    padding-bottom: 22px;
  }
  .hero-side-card { display: none; }
  .summary-layout { grid-template-columns: 1fr; }
  .summary-chip-grid, .stat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .visual-mosaic, .gallery-grid { grid-template-columns: 1fr 1fr; }
  .official-service-grid { grid-template-columns: 1fr; padding: 0; }
  .official-service-grid article { border-right: 0; border-bottom: 1px solid rgba(38,38,38,0.16); }
  .official-service-grid article:last-child { border-bottom: 0; }
  .visual-card:first-child, .gallery-item.wide { grid-column: 1 / -1; }
  .footer-role-grid {
    width: 100%;
    max-width: 720px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 18px;
  }
  .footer-role-grid div { justify-content: center; }
}

@media (max-width: 768px) {
  .page-shell { width: min(100% - 28px, 720px); }
  .site-header { top: 10px; }
  .site-nav {
    width: calc(100% - 20px);
    margin: 0 auto;
    min-height: auto;
    padding: 10px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
  }
  .site-header.is-scrolled .site-nav {
    width: 100%;
    padding-inline: 14px;
  }
  .menu-chip { min-width: 76px; height: 40px; padding: 0 12px; font-size: 15px; }
  .brand-symbol { width: 74px; height: 36px; }
  .brand-symbol img { width: 74px; height: 36px; }
  .brand-mark > span:not(.brand-symbol) { padding-left: 10px; }
  .brand-mark em { font-size: 10px; }
  .brand-mark strong { font-size: 14px; }
  .nav-right { grid-column: 1 / -1; justify-content: space-between; }
  .phone-link { font-size: 16px; }
  .open-pill { min-height: 42px; padding: 0 18px; }
  .nav-center { display: none; }
  .home-hero { min-height: 720px; }
  .home-hero::before { right: 12vw; height: 330px; opacity: 0.55; }
  .hero-official-mark {
    right: -16vw;
    bottom: 90px;
    width: auto;
    font-size: clamp(34px, 11vw, 58px);
    letter-spacing: 0.18em;
    text-indent: 0.18em;
  }
  .hero-shell {
    min-height: 570px;
    padding-top: 136px;
  }
  .hero-copy h1 { font-size: clamp(34px, 10.2vw, 46px); line-height: 1.18; }
  .hero-kicker { font-size: 13px; line-height: 1.5; letter-spacing: 0.13em; }
  .hero-lead { font-size: 16px; line-height: 1.72; font-weight: 500; }
  .hero-actions { gap: 10px; }
  .btn, .ghost-link, .mini-cta { min-height: 48px; padding: 0 20px; }
  .section-band { padding: 66px 0; }
  .brand-identity-band { padding: 42px 0; }
  .brand-identity-word { min-height: auto; }
  .brand-identity-copy h2 { font-size: 34px; }
  .brand-identity-copy p:not(.section-kicker) { font-size: 16px; line-height: 1.7; }
  .brand-axis { grid-template-columns: 1fr; }
  .brand-axis span { min-height: 74px; }
  .stat-grid, .summary-chip-grid, .visual-mosaic, .overview-grid, .location-grid, .gallery-grid, .form-grid, .info-card-grid {
    grid-template-columns: 1fr;
  }
  .official-service-grid article { min-height: 220px; padding: 32px 22px; }
  .stat-card { min-height: 124px; padding: 24px 26px; }
  .summary-chip { min-height: 150px; }
  .summary-lead, .copy-panel, .reservation-card, .footer-official-card { padding: 30px 24px; }
  .summary-lead h2, .copy-panel h2, .section-title, .reservation-card-head h2 { font-size: 34px; }
  .main-story-grid { margin-top: 48px; }
  .story-image img, .data-board img, .map-board img { min-height: 360px; }
  .visual-card, .visual-card img { min-height: 360px; }
  .visual-card strong { font-size: 25px; }
  .gallery-item, .gallery-item.wide { min-height: auto; }
  .gallery-item img, .gallery-item.wide img { min-height: 300px; }
  .reservation-card-head { display: grid; }
  .reservation-call { width: 100%; }
  .form-field.wide, .form-field.full { grid-column: auto; }
  .privacy-check { align-items: flex-start; padding: 16px; line-height: 1.55; }
  .footer-role-grid { grid-template-columns: 1fr; }
  .footer-role-grid div {
    display: grid;
    justify-items: center;
    gap: 4px;
  }
  .footer-notice { align-items: flex-start; }
  .site-map-panel { inset: 14px; padding: 22px; }
  .site-map-grid { grid-template-columns: 1fr; }
  .promo-popup {
    display: grid;
    grid-template-columns: 1fr;
    align-content: start;
    overflow: auto;
    padding: 14px;
  }
  .promo-popup-panel, .notice-popup-panel {
    width: min(calc(100vw - 28px), 400px);
    height: 560px;
    min-height: 0;
    padding: 34px 24px 28px;
    margin: 0 auto;
    gap: 16px;
  }
  .promo-popup-panel h2, .notice-popup-panel h2 { font-size: 44px; }
  .promo-popup-panel p:not(.promo-popup-brand) { min-height: 132px; gap: 8px; }
  .notice-popup-box { min-height: 188px; padding: 20px 18px; }
  .notice-popup-icon { width: 60px; height: 60px; font-size: 34px; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* Daelasoo Ocean inspired redesign: white header, pastel sky, red only as brand accent. */
:root {
  --ocean-ink: #071c37;
  --ocean-blue: #175a72;
  --ocean-sky: #dceff7;
  --ocean-sky-2: #f5fbff;
  --ocean-line: rgba(23, 90, 114, 0.16);
  --ocean-shadow: 0 24px 70px rgba(36, 81, 103, 0.14);
  --brown-tab: #3d2f24;
}
body {
  background: linear-gradient(180deg, #f7fcff 0%, #eef7fb 46%, #ffffff 100%);
  color: var(--ocean-ink);
  overflow-x: hidden;
}
.page-shell {
  width: min(1500px, calc(100% - 54px));
}
.site-header {
  top: 0;
}
.site-nav,
.site-header.is-scrolled .site-nav {
  width: 100%;
  min-height: 96px;
  margin: 0;
  padding: 0 clamp(38px, 4.4vw, 78px);
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid rgba(7, 28, 55, 0.1);
  background: rgba(255, 255, 255, 0.94);
  color: var(--ocean-ink);
  box-shadow: 0 8px 24px rgba(36, 81, 103, 0.08);
  backdrop-filter: blur(14px);
  grid-template-columns: minmax(320px, 0.82fr) minmax(520px, 1.36fr) minmax(300px, auto);
}
.brand-mark em {
  color: #d4312d;
}
.brand-mark strong {
  color: #0e3148;
  font-size: 23px;
  font-weight: 900;
}
.brand-mark > span:not(.brand-symbol) {
  border-left-color: rgba(212, 49, 45, 0.48);
}
.logo-on-dark {
  opacity: 0;
}
.logo-on-light,
.site-header.is-scrolled .logo-on-light {
  opacity: 1;
}
.menu-chip {
  color: #0e3148;
  border-color: rgba(23, 90, 114, 0.18);
  background: #f8fcff;
  border-radius: 4px;
}
.menu-chip:hover {
  background: #eef7fb;
  border-color: rgba(212, 49, 45, 0.48);
}
.nav-center {
  gap: clamp(42px, 5vw, 92px);
}
.nav-link {
  color: #0d2c42;
  font-size: 18px;
  font-weight: 800;
}
.nav-link:hover,
.nav-link.is-active {
  color: #d4312d;
}
.phone-link {
  color: #071c37;
  font-size: 28px;
  letter-spacing: 0.01em;
}
.phone-link::before {
  color: #d4312d;
}
.open-pill,
.btn-red {
  background: linear-gradient(135deg, #f2554f, #df302c);
  border-radius: 4px;
  box-shadow: 0 16px 32px rgba(223, 48, 44, 0.2);
}
.home-hero {
  min-height: 820px;
  background: #eaf7fc;
  color: #fff;
}
.hero-bg {
  background:
    linear-gradient(90deg, rgba(8, 30, 48, 0.66), rgba(18, 91, 119, 0.30) 48%, rgba(255,255,255,0.14)),
    linear-gradient(0deg, rgba(8, 30, 48, 0.56), transparent 54%),
    var(--hero-image) center / cover no-repeat;
  transform: none;
}
.home-hero::before,
.home-hero::after {
  display: none;
}
.hero-shell {
  min-height: 700px;
  padding-top: 132px;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 400px);
}
.hero-kicker,
.section-kicker {
  color: #d4312d;
  font-size: 16px;
  letter-spacing: 0.03em;
}
.hero-copy h1 {
  font-family: "Noto Sans KR", "Noto Serif KR", sans-serif;
  font-size: clamp(48px, 4.6vw, 72px);
  line-height: 1.08;
  font-weight: 850;
  letter-spacing: -0.045em;
  word-break: keep-all;
}
.hero-lead {
  max-width: 760px;
  font-size: 19px;
  line-height: 1.72;
  color: rgba(255,255,255,0.9);
}
.hero-point-list {
  margin-top: 24px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.hero-point-list span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid rgba(255,255,255,0.36);
  background: rgba(255,255,255,0.13);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.02em;
  backdrop-filter: blur(12px);
  transition: background 180ms ease, transform 180ms ease, border-color 180ms ease;
}
.hero-point-list span:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.58);
  background: rgba(255,255,255,0.2);
}
.hero-side-card {
  min-height: 300px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-top: 3px solid rgba(255,255,255,0.82);
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.22), rgba(255,255,255,0.11)),
    rgba(8, 30, 48, 0.12);
  box-shadow: 0 30px 70px rgba(7, 28, 55, 0.18);
  backdrop-filter: blur(18px) saturate(1.05);
  transition: transform 190ms ease, background 190ms ease, border-color 190ms ease;
}
.hero-side-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.62);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.27), rgba(255,255,255,0.14)),
    rgba(8, 30, 48, 0.1);
}
.hero-side-card span {
  color: #fff;
}
.hero-side-card strong {
  color: #fff;
  font-size: 25px;
  line-height: 1.48;
  word-break: keep-all;
}
.hero-official-mark {
  color: rgba(255,255,255,0.22);
}
.hero-statbar {
  padding-bottom: 44px;
}
.stat-grid {
  gap: 14px;
  border: 0;
}
.stat-card {
  border: 1px solid rgba(255,255,255,0.38);
  border-radius: 8px;
  background: rgba(255,255,255,0.86);
  color: #0c293e;
  box-shadow: 0 18px 45px rgba(7, 28, 55, 0.12);
}
.stat-card small {
  color: #5f7280;
}
.ocean-section-tabs {
  position: sticky;
  top: 96px;
  z-index: 20;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid rgba(7, 28, 55, 0.08);
  border-bottom: 1px solid rgba(7, 28, 55, 0.11);
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(12px);
}
.ocean-section-tabs a {
  min-height: 66px;
  display: grid;
  place-items: center;
  border-right: 1px solid rgba(7, 28, 55, 0.1);
  color: #0d2c42;
  font-size: 18px;
  font-weight: 800;
}
.ocean-section-tabs a:last-child {
  border-right: 0;
}
.ocean-section-tabs a:hover {
  color: #d4312d;
  background: #f4fbff;
}
.ocean-subtabs {
  margin: 0 auto 44px;
  width: min(720px, 100%);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(7, 28, 55, 0.1);
  background: #fff;
}
.ocean-subtabs a {
  min-height: 56px;
  display: grid;
  place-items: center;
  border-right: 1px solid rgba(7, 28, 55, 0.1);
  color: #0d2c42;
  font-weight: 800;
}
.ocean-subtabs a:last-child {
  border-right: 0;
}
.ocean-subtabs a.is-current {
  background: var(--brown-tab);
  color: #fff;
}
.ocean-subtabs.compact {
  margin-bottom: 30px;
}
.ocean-subtabs.dark {
  margin: 0 0 32px;
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.16);
}
.ocean-subtabs.dark a {
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.14);
}
.ocean-subtabs.dark a.is-current {
  background: #fff;
  color: #0c293e;
}
.brand-identity-band,
.tone-white,
.tone-paper {
  background: linear-gradient(180deg, #ffffff 0%, #f3faff 100%);
}
.brand-identity-band {
  padding: 68px 0;
}
.brand-identity {
  grid-template-columns: minmax(300px, 0.8fr) minmax(420px, 1fr) minmax(360px, 0.95fr);
}
.brand-identity-copy h2,
.summary-lead h2,
.copy-panel h2,
.section-title,
.reservation-card-head h2 {
  color: #082238;
  font-weight: 600;
  letter-spacing: 0;
}
.brand-identity-copy p:not(.section-kicker),
.copy-panel p {
  color: #536b7c;
}
.brand-axis span {
  border-left-color: #7bbbd3;
  background: linear-gradient(180deg, #f9fdff, #e9f6fb);
  color: #12354b;
}
.summary-layout {
  grid-template-columns: minmax(420px, 0.82fr) minmax(0, 1.18fr);
}
.summary-lead {
  background: linear-gradient(135deg, #0b2c44, #1e6c88);
  border-radius: 10px;
}
.summary-lead h2,
.summary-lead p:not(.section-kicker) {
  color: #fff;
}
.summary-chip,
.copy-panel,
.data-board,
.story-image,
.map-board,
.reservation-card {
  border-color: var(--ocean-line);
  border-radius: 10px;
  background: rgba(255,255,255,0.92);
  box-shadow: var(--ocean-shadow);
}
.summary-chip {
  border-left-color: #8cc6d9;
}
.summary-chip span,
.info-card-grid span,
.stat-card span {
  color: #197391;
}
.summary-chip strong,
.info-card-grid strong {
  color: #092235;
}
.summary-mark {
  color: #0d5f7a !important;
  background: linear-gradient(90deg, rgba(125, 188, 211, 0.2), rgba(255,255,255,0.7));
  border-left-color: #7bbbd3;
}
.main-story-grid {
  margin-top: 76px;
}
.story-image img {
  min-height: 500px;
}
.daelasoo-brand-message {
  margin: 72px auto 0;
  width: min(900px, 100%);
  padding: 58px 38px;
  text-align: center;
  border-top: 1px solid rgba(7, 28, 55, 0.12);
  border-bottom: 1px solid rgba(7, 28, 55, 0.12);
  background: rgba(255,255,255,0.62);
}
.daelasoo-brand-message span {
  display: block;
  color: #0c1f38;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 2.8vw, 40px);
  letter-spacing: 0.48em;
  text-indent: 0.48em;
  font-weight: 700;
}
.daelasoo-brand-message p {
  margin: 24px 0 10px;
  color: #516372;
  font-size: 20px;
  font-weight: 600;
}
.daelasoo-brand-message strong {
  display: block;
  color: #0c1f38;
  font-family: "Noto Serif KR", serif;
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.25;
  font-weight: 600;
}
.daelasoo-brand-official {
  margin: 72px auto 0;
  scroll-margin-top: 160px;
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(480px, 1.28fr);
  gap: 34px;
  align-items: center;
  padding: 34px;
  border: 1px solid rgba(22, 87, 104, 0.14);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(242, 250, 253, 0.92)),
    radial-gradient(circle at 0 0, rgba(210, 232, 241, 0.5), transparent 36%);
  box-shadow: 0 24px 70px rgba(23, 67, 91, 0.12);
}
.daelasoo-brand-image-only {
  width: min(1180px, calc(100% - 48px));
  grid-template-columns: 1fr;
  padding: 0;
  align-items: stretch;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.daelasoo-brand-copy {
  min-width: 0;
  padding-left: 2px;
}
.brand-source-logos {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 26px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(12, 31, 56, 0.1);
}
.brand-source-logos img:first-child {
  width: 58px;
  height: auto;
}
.brand-source-logos img:last-child {
  width: min(245px, 70%);
  height: auto;
}
.daelasoo-brand-copy h2 {
  margin: 12px 0 16px;
  color: #092235;
  font-family: "Noto Serif KR", serif;
  font-size: clamp(32px, 3.6vw, 54px);
  line-height: 1.18;
  font-weight: 600;
  letter-spacing: -0.04em;
}
.daelasoo-brand-copy > p:not(.section-kicker) {
  margin: 0 0 26px;
  color: #4e6270;
  font-size: 18px;
  line-height: 1.72;
  word-break: keep-all;
}
.daelasoo-brand-visual {
  margin: 0;
  padding: 16px;
  border: 1px solid rgba(12, 31, 56, 0.12);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(23, 67, 91, 0.08);
}
.daelasoo-brand-image-only .daelasoo-brand-visual {
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.daelasoo-brand-visual img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 4px;
}
.daelasoo-brand-image-only .daelasoo-brand-visual img {
  border-radius: 0;
}
.daelasoo-brand-visual figcaption {
  margin-top: 12px;
  color: #657785;
  font-size: 13px;
}
.ocean-section-head {
  margin-bottom: 20px;
}
.visual-mosaic {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 0;
}
.visual-card {
  border-radius: 10px;
  box-shadow: 0 20px 56px rgba(36, 81, 103, 0.13);
}
.visual-card::after {
  background: linear-gradient(0deg, rgba(7, 28, 55, 0.82), transparent 62%);
}
.visual-card span {
  color: #bfe5f4;
  letter-spacing: 0.04em;
  text-transform: none;
}
.visual-card strong {
  font-size: 28px;
}
.official-service-grid {
  border-top-color: #175a72;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--ocean-shadow);
}
.official-service-grid article:hover {
  background: #f3faff;
}
.service-icon {
  color: #197391;
}
.official-service-grid h3 {
  font-family: "Noto Serif KR", serif;
  color: #082238;
}
.official-service-grid a:hover {
  color: #d4312d;
  border-color: #d4312d;
}
.data-board img,
.map-board img {
  background: #fff;
}
.tone-deep,
.reservation-band {
  background:
    linear-gradient(135deg, rgba(8, 32, 50, 0.96), rgba(30, 104, 132, 0.9)),
    radial-gradient(circle at 84% 4%, rgba(207, 238, 249, 0.22), transparent 34%);
  color: #fff;
}
.tone-deep .section-title,
.reservation-card-head h2 {
  color: #fff;
}
.sales-head-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.mini-cta.filled {
  background: #fff;
  color: #0b2c44;
  border-color: #fff;
}
.sales-flow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.sales-flow-grid article {
  min-height: 228px;
  padding: 34px 30px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 10px;
  background: rgba(255,255,255,0.1);
  display: grid;
  align-content: start;
  gap: 14px;
}
.sales-flow-grid span {
  color: #bfe5f4;
  font-weight: 900;
}
.sales-flow-grid strong {
  color: #fff;
  font-size: 22px;
}
.sales-flow-grid p {
  margin: 0;
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
  font-weight: 600;
}
.reservation-card {
  background: rgba(255,255,255,0.1);
  box-shadow: none;
}
.reservation-call {
  border-color: rgba(255,255,255,0.24);
  background: rgba(255,255,255,0.13);
}
.reservation-call strong {
  color: #d5f1fb;
}
.form-field input,
.form-field select,
.form-field textarea,
.privacy-check {
  border-color: rgba(255,255,255,0.24);
  background: rgba(255,255,255,0.12);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: #bfe5f4;
  box-shadow: 0 0 0 3px rgba(191,229,244,0.18);
}
.privacy-check input {
  accent-color: #7bbbd3;
}
.privacy-check a,
.form-status {
  color: #d5f1fb;
}
.site-footer {
  background: linear-gradient(180deg, #f3faff 0%, #ffffff 100%);
}
.site-footer .footer-grid {
  width: min(1180px, calc(100% - 72px));
  margin-inline: auto;
}
.footer-notice,
.footer-official-card,
.footer-disclaimer {
  border-color: rgba(23, 90, 114, 0.12);
  box-shadow: 0 18px 48px rgba(36, 81, 103, 0.1);
}
.footer-role-grid dd,
.footer-wordmark strong {
  color: #082238;
}
.footer-site-info {
  color: #203849;
}
.footer-site-info strong {
  color: #607985;
}
.footer-company-meta a {
  color: #0d5f7a;
}
.site-map-backdrop {
  background: rgba(8, 32, 50, 0.62);
}
.site-map-panel {
  background: rgba(255,255,255,0.97);
  color: #082238;
  border-color: rgba(23, 90, 114, 0.18);
}
.site-map-head p,
.site-map-group span {
  color: #197391;
}
.site-map-close,
.site-map-group {
  border-color: rgba(23, 90, 114, 0.16);
  background: #f6fbff;
  color: #082238;
}
.site-map-group a {
  color: #082238;
}
.site-map-group small,
.site-map-group em {
  color: #5f7280;
}

@media (max-width: 1180px) {
  .site-nav,
  .site-header.is-scrolled .site-nav {
    grid-template-columns: 1fr auto;
    min-height: 86px;
    gap: 16px;
  }
  .ocean-section-tabs {
    top: 86px;
  }
  .visual-mosaic,
  .sales-flow-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .summary-layout,
  .overview-grid,
  .main-story-grid,
  .daelasoo-brand-official,
  .location-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-shell {
    width: min(100% - 28px, 720px);
  }
  .site-footer .footer-grid {
    width: min(100% - 28px, 720px);
  }
  .site-header {
    top: 0;
  }
  .site-nav,
  .site-header.is-scrolled .site-nav {
    width: 100%;
    min-height: 72px;
    margin: 0;
    padding: 10px 14px;
    border-radius: 0;
  }
  .nav-right {
    display: none;
  }
  .brand-symbol,
  .brand-symbol img {
    width: 86px;
    height: 38px;
  }
  .brand-mark em {
    font-size: 10px;
  }
  .brand-mark strong {
    font-size: 15px;
  }
  .home-hero {
    min-height: 680px;
    overflow: hidden;
  }
  .hero-shell {
    grid-template-columns: 1fr;
    min-height: 610px;
    padding-top: 106px;
    gap: 0;
  }
  .hero-side-card {
    display: none;
  }
  .hero-copy {
    width: 100%;
    max-width: none;
  }
  .hero-official-mark {
    display: none;
  }
  .hero-copy h1 {
    max-width: 360px;
    font-size: clamp(38px, 10.4vw, 46px);
    line-height: 1.18;
  }
  .hero-lead {
    font-size: 16px;
  }
  .ocean-section-tabs {
    position: relative;
    top: auto;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    overflow-x: hidden;
  }
  .ocean-section-tabs a {
    min-height: 54px;
    font-size: 13px;
    padding: 0 2px;
  }
  .ocean-subtabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .summary-chip-grid,
  .visual-mosaic,
  .sales-flow-grid,
  .stat-grid {
    grid-template-columns: 1fr;
  }
  .daelasoo-brand-official {
    margin-top: 46px;
    padding: 22px;
    gap: 24px;
  }
  .daelasoo-brand-image-only {
    width: min(100% - 28px, 720px);
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }
  .brand-source-logos {
    gap: 14px;
    margin-bottom: 20px;
    padding-bottom: 18px;
  }
  .brand-source-logos img:first-child {
    width: 48px;
  }
  .brand-source-logos img:last-child {
    width: min(220px, 76%);
  }
  .daelasoo-brand-copy h2 {
    font-size: clamp(28px, 8vw, 38px);
  }
  .daelasoo-brand-copy > p:not(.section-kicker) {
    font-size: 15.5px;
  }
  .daelasoo-brand-visual {
    padding: 10px;
  }
  .daelasoo-brand-image-only .daelasoo-brand-visual {
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }
  .summary-lead h2,
  .copy-panel h2,
  .section-title,
  .reservation-card-head h2 {
    font-size: 32px;
  }
  .daelasoo-brand-message {
    padding: 38px 18px;
  }
  .daelasoo-brand-message span {
    font-size: 22px;
    letter-spacing: 0.22em;
    text-indent: 0.22em;
  }
  .daelasoo-brand-message p {
    font-size: 16px;
  }
  .daelasoo-brand-message strong {
    font-size: 34px;
  }
  .brand-identity {
    grid-template-columns: 1fr;
  }
  .brand-identity-copy,
  .brand-axis {
    width: 100%;
  }
  .brand-identity-word {
    border-right: 0;
    border-bottom: 1px solid rgba(23, 90, 114, 0.14);
    padding-bottom: 20px;
  }
  .brand-axis {
    grid-template-columns: 1fr;
  }
  .brand-axis span {
    min-height: 70px;
  }
  .sales-head-actions {
    width: 100%;
  }
  .sales-head-actions .mini-cta {
    flex: 1 1 160px;
  }
  .promo-popup-panel,
  .notice-popup-panel {
    width: min(calc(100vw - 28px), 400px);
    height: auto;
    min-height: 520px;
  }
}

/* Popup notice fit polish: keep the icon and long official URL inside the notice box on narrow screens. */
.notice-domain-line {
  display: block;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: keep-all;
}

@media (max-width: 768px) {
  .notice-popup-panel {
    grid-template-rows: auto auto auto auto;
    gap: 14px;
    padding: 30px 22px 24px;
    min-height: 0;
  }
  .notice-popup-box {
    min-height: 0;
    padding: 16px 14px;
    gap: 10px;
    overflow: hidden;
  }
  .notice-popup-icon {
    width: 52px;
    height: 52px;
    border-width: 4px;
    font-size: 30px;
  }
  .notice-popup-box p {
    gap: 4px;
    font-size: 14.5px;
    line-height: 1.42;
  }
  .notice-popup-button {
    min-height: 58px;
  }
}

@media (max-width: 380px) {
  .notice-popup-panel {
    padding-inline: 18px;
  }
  .notice-popup-box {
    padding: 14px 12px;
  }
  .notice-popup-box p {
    font-size: 14px;
    line-height: 1.38;
  }
}

/* Final popup containment pass: keep the warning icon and official-domain copy fully inside the notice box. */
.promo-popup-panel,
.notice-popup-panel {
  height: 630px;
}
.notice-popup-box {
  position: relative;
  overflow: visible;
  min-height: 0 !important;
  padding: 20px 16px !important;
  align-content: center;
  gap: 10px;
}
.notice-popup-icon {
  position: static !important;
  inset: auto !important;
  transform: none !important;
  margin: 0 auto;
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
  border-width: 4px;
  font-size: 32px;
  line-height: 1;
}
.notice-popup-box p {
  max-width: 100%;
  margin: 0;
  gap: 4px;
  font-size: 15px;
  line-height: 1.4;
}
.notice-domain-line {
  display: block;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: keep-all;
  line-height: 1.32;
}

@media (max-width: 768px) {
  .promo-popup {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 18px;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 16px 14px 28px;
  }
  .promo-popup-backdrop {
    position: fixed;
    inset: 0;
  }
  .promo-popup-panel,
  .notice-popup-panel {
    position: relative;
    flex: 0 0 auto;
    width: min(calc(100vw - 28px), 400px);
    height: auto !important;
    min-height: 0 !important;
    margin: 0 auto !important;
  }
  .notice-popup-panel {
    max-height: calc(100vh - 34px);
    overflow: auto;
    padding: 28px 20px 22px;
    gap: 12px;
  }
  .notice-popup-panel h2 {
    font-size: clamp(38px, 10vw, 44px);
    line-height: 1.04;
  }
  .notice-popup-box {
    padding: 18px 14px 18px !important;
    gap: 9px;
  }
  .notice-popup-icon {
    width: 48px;
    height: 48px;
    font-size: 28px;
  }
  .notice-popup-box p {
    font-size: 14px;
    line-height: 1.45;
    gap: 4px;
  }
  .notice-popup-button {
    min-height: 58px;
  }
}

@media (max-width: 380px) {
  .notice-popup-panel {
    padding: 26px 18px 20px;
  }
  .notice-popup-box {
    padding: 16px 12px 16px !important;
  }
  .notice-popup-icon {
    width: 44px;
    height: 44px;
    font-size: 26px;
  }
  .notice-popup-box p {
    font-size: 13.5px;
    line-height: 1.42;
  }
}

/* Header fit polish for ordinary laptop widths. */
.site-nav,
.site-header.is-scrolled .site-nav {
  grid-template-columns: minmax(300px, 0.78fr) minmax(430px, 1.18fr) minmax(282px, auto);
  gap: clamp(18px, 2.6vw, 42px);
}
.nav-left {
  gap: 12px;
}
.menu-chip {
  min-width: 92px;
  height: 48px;
  padding: 0 18px;
}
.brand-symbol,
.brand-symbol img {
  width: 96px;
  height: 44px;
}
.brand-mark > span:not(.brand-symbol) {
  width: 142px;
  gap: 2px;
  padding-left: 12px;
}
.brand-mark em,
.brand-mark strong {
  white-space: nowrap;
}
.brand-mark strong {
  font-size: 19px;
}
.brand-mark em {
  font-size: 12px;
}
.nav-center {
  gap: clamp(30px, 3.6vw, 62px);
}
.nav-link {
  font-size: 17px;
}
.nav-right {
  gap: 14px;
}
.phone-link {
  font-size: 25px;
}
.open-pill {
  padding: 0 24px;
}
.site-map-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
#overview,
#complex,
#unit,
#sales,
#reservation {
  scroll-margin-top: 178px;
}
.copy-panel h2 {
  font-size: clamp(34px, 3.05vw, 46px);
  line-height: 1.32;
}
.main-story-grid .copy-panel h2 {
  max-width: 620px;
}

@media (max-width: 1360px) {
  .site-nav,
  .site-header.is-scrolled .site-nav {
    padding-inline: 28px;
    grid-template-columns: minmax(286px, 0.78fr) minmax(390px, 1fr) minmax(260px, auto);
    gap: 22px;
  }
  .nav-center {
    gap: 34px;
  }
  .nav-link {
    font-size: 16px;
  }
  .phone-link {
    font-size: 22px;
  }
  .open-pill {
    min-height: 48px;
    padding-inline: 22px;
  }
  .copy-panel h2 {
    font-size: clamp(32px, 2.9vw, 42px);
  }
}

@media (max-width: 1180px) {
  .site-map-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .site-nav,
  .site-header.is-scrolled .site-nav {
    grid-template-columns: 1fr auto;
    padding-inline: 14px;
  }
  .brand-mark > span:not(.brand-symbol) {
    width: auto;
  }
  .site-map-grid {
    grid-template-columns: 1fr;
  }
  #overview,
  #complex,
  #unit,
  #sales,
  #reservation {
    scroll-margin-top: 90px;
  }
}

/* Official Daelasoo-style header: script logo, centered brand, phone, and menu rows. */
.site-header.daelasoo-official-header {
  top: 0 !important;
  z-index: 80;
  pointer-events: auto;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(15, 22, 29, 0.42), rgba(15, 22, 29, 0.16)),
    linear-gradient(90deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: none;
  backdrop-filter: blur(14px) saturate(1.08);
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease, color 220ms ease;
}

.site-header.daelasoo-official-header.is-scrolled {
  color: #071c37;
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: rgba(7, 28, 55, 0.11);
  box-shadow: 0 14px 34px rgba(7, 28, 55, 0.11);
}

.daelasoo-official-header .official-topbar {
  min-height: 78px;
  display: grid;
  grid-template-columns: minmax(148px, 260px) minmax(300px, 1fr) minmax(170px, 260px);
  align-items: center;
  gap: 24px;
  padding: 0 clamp(28px, 4vw, 64px);
  background: transparent;
}

.official-script-logo {
  justify-self: start;
  display: inline-flex;
  position: relative;
  align-items: center;
  width: 110px;
  height: 58px;
}

.official-script-logo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 180ms ease, transform 180ms ease;
}

.official-logo-on-light {
  opacity: 0;
  transform: translateY(2px);
}

.daelasoo-official-header.is-scrolled .official-logo-on-dark {
  opacity: 0;
  transform: translateY(-2px);
}

.daelasoo-official-header.is-scrolled .official-logo-on-light {
  opacity: 1;
  transform: translateY(0);
}

.official-brand-lockup {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-width: 0;
  color: currentColor;
}

.daelasoo-official-header.is-scrolled .official-brand-lockup {
  color: #075761;
}

.official-brand-title {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 7px;
  line-height: 1;
  white-space: nowrap;
}

.official-daelasoo-lockup {
  align-items: flex-end;
  gap: 0;
}

.official-daelasoo-word {
  position: relative;
  display: inline-flex;
  align-items: flex-end;
  padding-right: 11px;
  line-height: 1;
}

.official-brand-title strong,
.official-daelasoo-word strong {
  color: currentColor;
  font-family: "Noto Sans KR", "Noto Serif KR", sans-serif;
  font-size: clamp(34px, 2.45vw, 42px);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.95;
}

.official-brand-title em,
.official-daelasoo-word em {
  position: absolute;
  right: -7px;
  top: -14px;
  color: #f04b43;
  font-family: "Noto Serif KR", serif;
  font-size: 19px;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 1px 0 rgba(255,255,255,0.28);
  transform: rotate(5deg);
}

.official-brand-title small {
  margin-left: 4px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.daelasoo-official-header.is-scrolled .official-brand-title small {
  color: rgba(7, 28, 55, 0.56);
}

.official-product-word {
  color: currentColor;
  font-family: "Noto Sans KR", "Noto Serif KR", sans-serif;
  font-size: clamp(25px, 1.9vw, 32px);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.97;
  transform: translateY(1px);
}

.official-product-word:empty {
  display: none;
}

.official-region-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  height: 30px;
  padding: 0 15px 0 12px;
  border: 0;
  background: #075761;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: -0.03em;
  white-space: nowrap;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 100%, 0 100%);
  box-shadow: 0 10px 24px rgba(0,0,0,0.16);
}

.daelasoo-official-header.is-scrolled .official-region-badge {
  background: #0a5b62;
  box-shadow: none;
}

.official-phone {
  justify-self: end;
  display: grid;
  justify-items: end;
  gap: 5px;
  color: currentColor;
  white-space: nowrap;
}

.official-phone span {
  color: rgba(255,255,255,0.64);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.official-phone strong {
  color: currentColor;
  font-size: clamp(26px, 2.2vw, 33px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.01em;
}

.daelasoo-official-header.is-scrolled .official-phone span {
  color: rgba(7, 28, 55, 0.55);
}

.official-main-menu {
  min-height: 46px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: center;
  padding: 0 max(48px, calc((100% - 980px) / 2));
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
}

.daelasoo-official-header.is-scrolled .official-main-menu {
  border-top-color: rgba(7, 28, 55, 0.08);
  border-bottom-color: rgba(7, 28, 55, 0.08);
  background: rgba(255, 255, 255, 0.98);
}

.official-main-menu a {
  position: relative;
  min-height: 46px;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.92);
  font-size: 17.5px;
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
  text-shadow: 0 2px 10px rgba(0,0,0,0.22);
  transition: color 180ms ease, background 180ms ease;
}

.official-main-menu a:hover,
.official-main-menu a.is-active {
  background: rgba(255,255,255,0.08);
}

.daelasoo-official-header.is-scrolled .official-main-menu a {
  color: #151a23;
  text-shadow: none;
}

.daelasoo-official-header.is-scrolled .official-main-menu a:hover,
.daelasoo-official-header.is-scrolled .official-main-menu a.is-active {
  background: rgba(7, 87, 97, 0.06);
}

.official-main-menu a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 3px;
  background: #d4312d;
  transform: translateX(-50%);
  transition: width 180ms ease;
}

.official-main-menu a:hover::after,
.official-main-menu a.is-active::after {
  width: 54px;
}

.official-sub-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: 126px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: start;
  min-height: 112px;
  padding: 16px max(48px, calc((100% - 980px) / 2)) 18px;
  border-top: 1px solid rgba(255,255,255,0.14);
  border-bottom: 1px solid rgba(255,255,255,0.16);
  background: rgba(13, 23, 30, 0.5);
  box-shadow: 0 16px 32px rgba(7, 28, 55, 0.14);
  backdrop-filter: blur(16px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 190ms ease, transform 190ms ease, visibility 190ms ease;
}

.daelasoo-official-header.is-scrolled .official-sub-menu {
  border-top-color: rgba(7, 28, 55, 0.06);
  border-bottom-color: rgba(7, 28, 55, 0.08);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 38px rgba(7, 28, 55, 0.08);
}

.daelasoo-official-header:hover .official-sub-menu,
.daelasoo-official-header:focus-within .official-sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.official-sub-menu div {
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 10px;
}

.official-sub-menu a {
  color: rgba(255,255,255,0.86);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.2;
  white-space: nowrap;
}

.daelasoo-official-header.is-scrolled .official-sub-menu a {
  color: #1f2834;
  font-weight: 600;
}

  .official-sub-menu a:hover {
  color: #d4312d;
}

.daelasoo-official-header .site-nav,
.daelasoo-official-header .menu-chip,
.daelasoo-official-header .brand-mark,
.site-map-overlay {
  display: none !important;
}

.home-hero .hero-shell {
  padding-top: 156px;
}

.structured-site .home-hero .hero-shell {
  grid-template-columns: minmax(0, 900px);
  justify-content: start;
}

.structured-site .home-hero .hero-side-card {
  display: none;
}

.structured-site .home-hero .hero-lead {
  max-width: 680px;
}

.structured-site .home-hero .hero-official-mark {
  right: clamp(180px, 24vw, 460px);
  bottom: 92px;
  font-size: clamp(70px, 9vw, 150px);
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.18);
}

.ocean-section-tabs {
  top: 123px;
}

#overview,
#complex,
#unit,
#sales,
#reservation {
  scroll-margin-top: 150px;
}

@media (max-width: 1280px) {
  .daelasoo-official-header .official-topbar {
    grid-template-columns: 120px minmax(260px, 1fr) 160px;
    padding-inline: 24px;
  }

  .official-script-logo {
    width: 88px;
    height: 50px;
  }

  .official-brand-title strong {
    font-size: 31px;
  }

  .official-product-word {
    font-size: 25px;
  }

  .official-brand-title em,
  .official-daelasoo-word em {
    top: -12px;
    right: -6px;
    font-size: 17px;
  }

  .official-brand-title small {
    display: none;
  }

  .official-region-badge {
    min-width: 74px;
    height: 26px;
    font-size: 12px;
  }

  .official-main-menu,
  .official-sub-menu {
    padding-inline: max(36px, calc((100% - 920px) / 2));
  }
}

@media (max-width: 820px) {
  .daelasoo-official-header .official-topbar {
    min-height: 64px;
    grid-template-columns: 58px minmax(0, 1fr) auto;
    gap: 8px;
    padding-inline: 12px;
  }

  .official-script-logo {
    width: 52px;
    height: 40px;
  }

  .official-brand-lockup {
    gap: 7px;
  }

  .official-region-badge {
    min-width: auto;
    height: 22px;
    padding: 0 7px;
    font-size: 11px;
  }

  .official-brand-title {
    gap: 4px;
  }

  .official-daelasoo-lockup {
    gap: 5px;
  }

  .official-brand-title strong {
    font-size: clamp(20px, 6.2vw, 27px);
    letter-spacing: -0.065em;
  }

  .official-brand-title em,
  .official-daelasoo-word em {
    top: -8px;
    right: -5px;
    font-size: 14px;
  }

  .official-product-word {
    display: none;
  }

  .official-brand-title small {
    display: none;
  }

  .official-phone {
    gap: 2px;
  }

  .official-phone span {
    display: none;
  }

  .official-phone strong {
    font-size: 16px;
  }

  .official-main-menu {
    min-height: 46px;
    display: flex;
    justify-content: flex-start;
    gap: 22px;
    overflow-x: auto;
    padding: 0 14px;
    scrollbar-width: none;
  }

  .official-main-menu::-webkit-scrollbar {
    display: none;
  }

  .official-main-menu a {
    min-height: 46px;
    font-size: 14px;
  }

  .official-main-menu a::after {
    height: 2px;
  }

  .official-sub-menu {
    display: none;
  }

  .home-hero .hero-shell {
    padding-top: 126px;
  }

  .ocean-section-tabs {
    top: auto;
  }

  #overview,
  #complex,
  #unit,
  #sales,
  #reservation {
    scroll-margin-top: 112px;
  }
}

/* Final Daelasoo tone pass: keep the logo accent, but move UI text and actions toward
   the official Ocean site's teal, navy, white, and soft-sky palette. */
:root {
  --red: #0a6874;
  --red-deep: #082f43;
  --red-soft: #dff1f7;
  --ocean-ink: #071c37;
  --ocean-blue: #075761;
  --ocean-blue-2: #0d7383;
  --ocean-sky: #dff3fa;
  --ocean-sky-2: #f4fbff;
  --ocean-line: rgba(7, 87, 97, 0.16);
  --ocean-shadow: 0 24px 68px rgba(25, 73, 94, 0.13);
  --brown-tab: #102d3a;
}

body,
.structured-site {
  font-family: "Noto Sans KR", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: #10263a;
}

.hero-copy h1,
.summary-lead h2,
.copy-panel h2,
.section-title,
.reservation-card-head h2,
.structured-sub-hero h1,
.structured-home-summary .summary-lead h2 {
  font-family: "Noto Sans KR", system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: -0.035em;
}

.brand-mark em,
.official-brand-title em,
.official-daelasoo-word em {
  color: #bf3a32;
}

.brand-mark > span:not(.brand-symbol) {
  border-left-color: rgba(7, 87, 97, 0.45);
}

.nav-link::after,
.official-main-menu a::after {
  background: #0d7383;
}

.menu-chip:hover,
.nav-link:hover,
.nav-link.is-active,
.ocean-section-tabs a:hover,
.official-sub-menu a:hover,
.daelasoo-official-header.is-scrolled .official-main-menu a:hover,
.daelasoo-official-header.is-scrolled .official-main-menu a.is-active,
.official-service-grid a:hover,
.privacy-back,
.footer-company-meta a,
.site-map-head p,
.site-map-group span {
  color: #0d7383;
}

.menu-chip:hover,
.official-service-grid a:hover {
  border-color: rgba(13, 115, 131, 0.45);
}

.hero-kicker,
.section-kicker,
.promo-popup-brand span,
.notice-popup-brand span,
.summary-chip span,
.info-card-grid span,
.stat-card span,
.sales-flow-grid span {
  color: #0d7383;
}

.tone-deep .section-kicker,
.reservation-band .section-kicker,
.tone-deep .sales-flow-grid span {
  color: #bfeaf4;
}

.open-pill,
.btn-red,
.notice-popup-button {
  background: linear-gradient(135deg, #0a6674 0%, #0d7f91 58%, #0b5162 100%);
  color: #fff;
  border-color: rgba(255,255,255,0.18);
  box-shadow: 0 16px 34px rgba(7, 87, 97, 0.24);
}

.open-pill:hover,
.btn-red:hover,
.notice-popup-button:hover {
  box-shadow: 0 18px 38px rgba(7, 87, 97, 0.28);
}

.promo-popup-button {
  background: linear-gradient(135deg, #ffffff, #eef9fd);
  color: #0c2a3b;
  border-color: rgba(13, 115, 131, 0.24);
}

.notice-popup-panel {
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.98), rgba(239, 250, 254, 0.96)),
    linear-gradient(115deg, rgba(13, 115, 131, 0.055) 1px, transparent 1px);
}

.notice-popup-icon {
  background: linear-gradient(135deg, #9fd7e7, #4f9eb5);
}

.notice-popup-box strong,
.notice-domain-line,
.privacy-check a,
.form-status {
  color: #0d7383;
}

.privacy-check input {
  accent-color: #0d7383;
}

.footer-site-info strong {
  color: rgba(7, 28, 55, 0.58);
}

.official-phone span {
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.34);
}

.daelasoo-official-header.is-scrolled .official-phone span {
  color: rgba(7, 28, 55, 0.66);
  text-shadow: none;
}

.floating-quick-cta .quick-phone span,
.reservation-call span {
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.28);
}

.official-region-badge,
.daelasoo-official-header.is-scrolled .official-region-badge {
  background: #075761;
}

.official-main-menu a:hover,
.official-main-menu a.is-active {
  background: rgba(13, 115, 131, 0.08);
}

.daelasoo-official-header.is-scrolled .official-main-menu a:hover,
.daelasoo-official-header.is-scrolled .official-main-menu a.is-active {
  background: rgba(13, 115, 131, 0.07);
}

.ocean-subtabs a.is-current {
  background: #102d3a;
}

.summary-lead {
  background: linear-gradient(135deg, #092b43, #116f83);
}

.tone-deep,
.reservation-band {
  background:
    linear-gradient(135deg, rgba(8, 32, 50, 0.96), rgba(13, 104, 124, 0.91)),
    radial-gradient(circle at 84% 4%, rgba(207, 238, 249, 0.22), transparent 34%);
}

/* Readability and home conversion pass. */
.structured-home-summary .summary-lead .section-kicker,
.structured-site .summary-lead .section-kicker {
  color: #d9f7ff;
}

.structured-home-summary .summary-lead p:not(.section-kicker),
.structured-site .summary-lead p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.88);
}

.structured-main-hero .hero-kicker {
  color: #d9f7ff;
  text-shadow: 0 2px 14px rgba(0, 18, 28, 0.48);
}

.structured-home-summary .summary-chip,
.structured-preview-card {
  text-align: center;
  justify-items: center;
}

.structured-home-summary .summary-chip {
  align-content: center;
}

.structured-preview-grid {
  align-items: stretch;
}

.structured-preview-card {
  min-height: 154px;
  align-content: center;
  padding: 28px 24px;
  border-color: rgba(7, 87, 97, 0.14);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(242,250,253,0.94)),
    radial-gradient(circle at 50% 0, rgba(190, 230, 242, 0.42), transparent 55%);
  box-shadow: 0 18px 48px rgba(28, 74, 96, 0.1);
}

.structured-preview-card:hover {
  border-color: rgba(13, 115, 131, 0.28);
  box-shadow: 0 24px 56px rgba(28, 74, 96, 0.15);
}

.structured-preview-card span {
  color: #0d7383;
  font-size: 15px;
  letter-spacing: 0.02em;
}

.structured-preview-card strong {
  max-width: 210px;
  margin-inline: auto;
  color: #10263a;
  font-size: 19px;
  line-height: 1.48;
}

.home-quick-reservation {
  padding: 34px 0 88px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f1f9fd 100%),
    radial-gradient(circle at 12% 10%, rgba(190, 230, 242, 0.45), transparent 34%);
}

.home-quick-reservation .structured-reservation-card {
  color: #10263a;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.98), rgba(241,250,253,0.95)),
    radial-gradient(circle at 100% 0, rgba(191, 234, 244, 0.32), transparent 34%);
  border: 1px solid rgba(7, 87, 97, 0.15);
  box-shadow: 0 24px 68px rgba(25, 73, 94, 0.13);
}

.home-quick-reservation .section-kicker {
  color: #0d7383;
}

.home-quick-reservation .reservation-card-head h2 {
  color: #10263a;
  text-shadow: none;
}

.home-quick-reservation .reservation-card-head p:not(.section-kicker) {
  color: #526b7a;
}

.home-quick-reservation .reservation-call {
  color: #10263a;
  border-color: rgba(13, 115, 131, 0.22);
  background: linear-gradient(180deg, #ffffff, #eef9fd);
}

.home-quick-reservation .reservation-call span {
  color: #5e7684;
}

.home-quick-reservation .reservation-call strong {
  color: #075761;
}

.home-quick-reservation .form-field {
  color: #10263a;
}

.home-quick-reservation .form-field input,
.home-quick-reservation .form-field select,
.home-quick-reservation .form-field textarea,
.home-quick-reservation .privacy-check {
  color: #10263a;
  border-color: rgba(7, 87, 97, 0.18);
  background: #fff;
}

.home-quick-reservation .form-field input::placeholder,
.home-quick-reservation .form-field textarea::placeholder {
  color: #8ca0aa;
}

.home-quick-reservation .ghost-link {
  color: #0d5f7a;
  border-color: rgba(13, 115, 131, 0.28);
  background: rgba(255, 255, 255, 0.78);
}

.home-quick-reservation .form-status {
  color: #526b7a;
}

.home-quick-reservation .privacy-check a {
  color: #0d7383;
}

.tone-deep .section-kicker,
.reservation-band .section-kicker,
.tone-deep .sales-flow-grid span,
.reservation-band .form-status,
.reservation-band .privacy-check a {
  color: #d9f7ff;
}

.tone-deep .sales-flow-grid article {
  background: rgba(255, 255, 255, 0.12);
}

.tone-deep .sales-flow-grid strong,
.tone-deep .sales-flow-grid p {
  color: #fff;
}

.sochon-premium-location-board {
  margin: 26px auto 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  width: min(1560px, calc(100% - 48px));
}

.sochon-premium-location-board img {
  display: block;
  width: 100%;
  border-radius: 0;
}

.sochon-unit-board-full {
  display: grid;
  gap: 24px;
  width: min(1560px, calc(100% - 48px));
}

.unit-board-head {
  max-width: 840px;
  margin: 0 auto;
  text-align: center;
}

.unit-board-head h2 {
  margin: 8px 0 10px;
  color: #10263a;
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.2;
  letter-spacing: -0.035em;
}

.unit-board-head p:not(.section-kicker) {
  margin: 0;
  color: #5a6e7b;
  font-size: 17px;
  line-height: 1.7;
  font-weight: 600;
}

.unit-board-image {
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.unit-board-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
  background: #fff;
}

.sochon-unit-type-gallery {
  margin-top: 54px;
}

.unit-type-heading {
  max-width: 760px;
  margin: 0 auto 26px;
  text-align: center;
}

.unit-type-heading h3 {
  margin: 8px 0 10px;
  color: #10263a;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.22;
  letter-spacing: -0.035em;
}

.unit-type-heading p:not(.section-kicker) {
  margin: 0;
  color: #5a6e7b;
  font-size: 17px;
  line-height: 1.7;
  font-weight: 600;
}

.unit-type-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.unit-type-grid figure {
  margin: 0;
  padding: 16px;
  border: 1px solid rgba(7, 87, 97, 0.14);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 22px 58px rgba(25, 73, 94, 0.1);
}

.unit-type-grid img {
  display: block;
  width: 100%;
  border-radius: 10px;
  background: #fff;
}

.unit-type-grid figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 4px 2px;
  color: #10263a;
}

.unit-type-grid figcaption span {
  color: #0d7383;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.unit-type-grid figcaption strong {
  font-size: 18px;
  letter-spacing: -0.02em;
}

/* Keep large finished-board images readable without forcing long desktop scrolls. */
.structured-page-section {
  padding-top: clamp(44px, 4.4vw, 62px);
  padding-bottom: clamp(62px, 5.6vw, 86px);
}

.page-business .structured-page-section {
  padding-top: clamp(22px, 2.6vw, 38px);
}

.page-business .sochon-business-overview {
  width: min(1360px, calc(100% - 48px));
}

.page-business .structured-card-grid {
  margin-top: clamp(20px, 2.4vw, 32px);
}

.page-business .daelasoo-brand-image-only {
  margin-top: clamp(34px, 5vw, 58px);
}

.page-complex .visual-mosaic {
  margin-top: clamp(24px, 3.4vw, 46px);
}

.page-complex .official-service-grid {
  margin-top: clamp(44px, 5vw, 64px);
}

.page-unit .sochon-unit-type-gallery {
  margin-top: clamp(34px, 4vw, 48px);
}

@media (min-width: 901px) {
  .page-business .sochon-overview-board,
  .page-business .daelasoo-brand-image-only .daelasoo-brand-visual,
  .page-complex .sochon-premium-location-board,
  .page-unit .unit-board-image {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .page-business .sochon-overview-board img,
  .page-business .daelasoo-brand-image-only .daelasoo-brand-visual img,
  .page-complex .sochon-premium-location-board img,
  .page-unit .unit-board-image img {
    width: auto;
    max-width: 100%;
    max-height: clamp(540px, 74vh, 760px);
    object-fit: contain;
    margin: 0 auto;
  }

  .page-business .songjeong-business-overview .sochon-overview-board {
    max-width: min(1180px, 100%);
  }

  .page-complex .sochon-premium-location-board,
  .page-unit .sochon-unit-board-full {
    width: min(1360px, calc(100% - 48px));
  }
}

@media (max-width: 768px) {
  .structured-preview-card {
    min-height: 132px;
    padding: 24px 20px;
  }

  .home-quick-reservation {
    padding: 28px 0 68px;
  }

  .home-quick-reservation .structured-reservation-card {
    padding: 28px 20px;
  }

  .sochon-premium-location-board {
    margin-top: 20px;
    padding: 0;
    border-radius: 0;
    width: min(100% - 28px, 720px);
  }

  .sochon-overview-lead {
    padding: 26px 22px;
  }

  .sochon-overview-board {
    overflow-x: auto;
  }

  .sochon-overview-board img {
    min-width: 760px;
  }

  .unit-type-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .unit-type-grid figure {
    padding: 12px;
  }

  .unit-type-grid figcaption {
    display: grid;
    justify-items: center;
    text-align: center;
    gap: 6px;
  }
}


/* Split-page Daelasoo structure */
.structured-site .structured-header {
  position: fixed;
}

.structured-site {
  overflow-x: hidden;
}

.structured-site .official-main-menu a[href="#overview"],
.structured-site .official-main-menu a[href="#complex"],
.structured-site .official-main-menu a[href="#unit"],
.structured-site .official-main-menu a[href="#sales"],
.structured-site .official-main-menu a[href="#reservation"] {
  pointer-events: auto;
}

.structured-main-hero {
  min-height: 720px;
}

.structured-main-hero .hero-shell {
  min-height: 640px;
}

.structured-home-summary {
  padding: 72px 0 34px;
  background: linear-gradient(180deg, #f7f4ef 0%, #fff 100%);
}

.structured-home-summary .summary-layout {
  grid-template-columns: 1fr;
  align-items: stretch;
  gap: 22px;
}

.structured-home-summary .summary-lead {
  min-height: 0;
  min-width: 0;
  overflow: hidden;
}

.structured-home-summary .summary-lead h2 {
  font-family: "Noto Sans KR", "Noto Serif KR", sans-serif;
  font-size: clamp(34px, 3.3vw, 46px);
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: -0.045em;
  word-break: keep-all;
}

.structured-home-summary .summary-lead h2,
.structured-home-summary .summary-lead p {
  max-width: 100%;
  white-space: normal;
  word-break: normal;
  overflow-wrap: break-word;
}

.home-summary-copy span {
  display: block;
}

.structured-home-summary .summary-chip-grid {
  gap: 16px;
}

.structured-home-summary .summary-chip {
  min-height: 122px;
  padding: 24px 24px;
  justify-content: center;
}

.structured-home-summary .summary-chip strong {
  font-size: 22px;
  line-height: 1.32;
}

.structured-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.structured-preview-card {
  min-height: 138px;
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 24px;
  border: 1px solid rgba(20, 34, 51, 0.12);
  background: rgba(255,255,255,0.84);
  box-shadow: 0 18px 46px rgba(17, 38, 58, 0.08);
  color: #182638;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.structured-preview-card:hover {
  transform: translateY(-4px);
  border-color: rgba(238, 43, 36, 0.26);
  box-shadow: 0 24px 56px rgba(17, 38, 58, 0.13);
}

.structured-preview-card span {
  color: #d4312d;
  font-weight: 900;
  font-size: 14px;
}

.structured-preview-card strong {
  font-size: 20px;
  line-height: 1.45;
}

.structured-sub-hero {
  min-height: 430px;
  display: grid;
  align-items: end;
  padding: 170px 0 74px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(7, 17, 28, 0.78), rgba(7, 17, 28, 0.44) 50%, rgba(7, 17, 28, 0.22)),
    linear-gradient(180deg, rgba(7, 17, 28, 0.34), rgba(7, 17, 28, 0.68)),
    var(--sub-hero-image) center/cover no-repeat;
}

.structured-sub-hero-inner {
  display: grid;
  gap: 18px;
}

.structured-sub-hero h1 {
  margin: 0;
  font-family: "Noto Serif KR", serif;
  font-size: clamp(48px, 6vw, 86px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
}

.structured-sub-hero p {
  max-width: 720px;
  margin: 0;
  color: rgba(255,255,255,0.88);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.7;
}

.structured-page-section {
  padding-top: 84px;
}

.split-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: stretch;
}

.split-page-grid .copy-panel,
.split-page-grid .story-image {
  min-height: 520px;
}

.structured-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.structured-card-grid .stat-card {
  background: #fff;
  color: #172434;
  border-color: rgba(20, 34, 51, 0.12);
}

.structured-card-grid .stat-card span,
.structured-card-grid .stat-card p {
  color: rgba(23, 36, 52, 0.68);
}

.structured-page-section .visual-mosaic {
  margin-top: 0;
}

.structured-reservation-card {
  max-width: 1180px;
  margin: 0 auto;
}

.structured-footer {
  padding-top: 62px;
}

/* Final desktop rhythm pass for large board-style images. */
.structured-site .structured-page-section {
  padding-top: clamp(42px, 4vw, 58px);
  padding-bottom: clamp(56px, 5vw, 78px);
}

.structured-site.page-business .structured-page-section {
  padding-top: clamp(18px, 2.2vw, 32px);
}

.structured-site.page-business .structured-card-grid {
  margin-top: clamp(18px, 2vw, 28px);
}

.structured-site.page-business .daelasoo-brand-image-only {
  margin-top: clamp(30px, 4vw, 48px);
}

.structured-site.page-complex .visual-mosaic {
  margin-top: clamp(18px, 2.6vw, 34px);
}

.structured-site.page-complex .official-service-grid {
  margin-top: clamp(36px, 4.2vw, 54px);
}

.structured-site.page-unit .sochon-unit-type-gallery {
  margin-top: clamp(28px, 3.4vw, 42px);
}

@media (min-width: 901px) {
  .structured-site.page-business .sochon-overview-board,
  .structured-site.page-business .daelasoo-brand-image-only .daelasoo-brand-visual,
  .structured-site.page-complex .sochon-premium-location-board,
  .structured-site.page-unit .unit-board-image,
  .structured-site.page-unit .unit-type-grid figure {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .structured-site.page-business .sochon-overview-board img,
  .structured-site.page-business .daelasoo-brand-image-only .daelasoo-brand-visual img,
  .structured-site.page-complex .sochon-premium-location-board img,
  .structured-site.page-unit .unit-board-image img {
    width: auto;
    max-width: 100%;
    max-height: clamp(520px, 72vh, 740px);
    object-fit: contain;
    margin: 0 auto;
  }

  .structured-site.page-unit .unit-type-grid img {
    width: auto;
    max-width: 100%;
    max-height: clamp(520px, 72vh, 720px);
    object-fit: contain;
    margin: 0 auto;
  }

  .structured-site.page-business .songjeong-business-overview .sochon-overview-board {
    max-width: min(1180px, 100%);
  }

  .structured-site.page-complex .sochon-premium-location-board,
  .structured-site.page-unit .sochon-unit-board-full {
    width: min(1360px, calc(100% - 48px));
  }
}

@media (max-width: 980px) {
  .structured-preview-grid,
  .structured-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .structured-home-summary .summary-layout {
    grid-template-columns: 1fr;
  }

  .split-page-grid {
    grid-template-columns: 1fr;
  }

  .split-page-grid .copy-panel,
  .split-page-grid .story-image {
    min-height: auto;
  }
}

@media (max-width: 768px) {
  .structured-main-hero {
    min-height: 620px;
  }

  .structured-main-hero .hero-shell {
    min-height: 520px;
  }

  .structured-home-summary {
    padding: 52px 0 28px;
  }

  .structured-preview-grid,
  .structured-card-grid {
    grid-template-columns: 1fr;
  }

  .structured-home-summary .summary-layout {
    grid-template-columns: 1fr;
  }

  .structured-home-summary .summary-lead {
    width: 100%;
    min-height: auto;
    padding: 30px 24px;
  }

  .structured-home-summary .summary-lead h2 {
    font-size: 32px;
    line-height: 1.28;
    word-break: keep-all;
    overflow-wrap: anywhere;
  }

  .structured-home-summary .summary-lead p:not(.section-kicker) {
    font-size: 16px;
  }

  .structured-sub-hero {
    min-height: 340px;
    padding: 130px 0 52px;
  }

  .structured-sub-hero h1 {
    font-size: 44px;
  }

  .structured-sub-hero p {
    font-size: 16px;
  }
}

.home-premium-section {
  padding: 84px 0 96px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f3faff 100%),
    radial-gradient(circle at 12% 0%, rgba(125, 188, 211, 0.14), transparent 34%);
}

.home-section-heading {
  max-width: 900px;
  margin: 0 auto 34px;
  text-align: center;
}

.home-section-heading h2 {
  margin: 8px 0 12px;
  color: #082238;
  font-family: "Noto Sans KR", "Noto Serif KR", sans-serif;
  font-size: clamp(34px, 3.5vw, 54px);
  line-height: 1.18;
  font-weight: 750;
  letter-spacing: -0.035em;
}

.home-section-heading p:not(.section-kicker) {
  margin: 0;
  color: #536b7c;
  font-size: 18px;
  line-height: 1.7;
  font-weight: 600;
}

.home-premium-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.home-premium-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(23, 90, 114, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 70px rgba(36, 81, 103, 0.12);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.home-premium-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 49, 45, 0.24);
  box-shadow: 0 34px 80px rgba(36, 81, 103, 0.18);
}

.home-premium-card figure {
  margin: 0;
  height: 260px;
  overflow: hidden;
  background: #edf6fa;
}

.home-premium-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms ease;
}

.home-premium-card.is-location-card figure {
  background: #fff;
}

.home-premium-card.is-location-card img {
  object-fit: contain;
  object-position: center top;
}

.home-premium-card:hover img {
  transform: scale(1.045);
}

.home-premium-card.is-location-card:hover img {
  transform: scale(1.02);
}

.home-premium-card div {
  min-height: 190px;
  display: grid;
  align-content: start;
  gap: 11px;
  padding: 28px 26px 30px;
}

.home-premium-card span {
  color: #197391;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.home-premium-card h3 {
  margin: 0;
  color: #082238;
  font-size: 26px;
  line-height: 1.28;
  font-weight: 850;
  letter-spacing: -0.035em;
}

.home-premium-card p {
  margin: 0;
  color: #4e6270;
  font-size: 16px;
  line-height: 1.72;
  font-weight: 600;
}

.home-consult-section {
  padding: 86px 0 98px;
  background:
    linear-gradient(135deg, rgba(8, 32, 50, 0.96), rgba(30, 104, 132, 0.9)),
    radial-gradient(circle at 85% 12%, rgba(207, 238, 249, 0.18), transparent 34%);
}

.home-consult-card {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(520px, 1fr) auto;
  align-items: center;
  gap: 26px;
  padding: 34px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 16px;
  background: rgba(255,255,255,0.08);
  box-shadow: 0 28px 80px rgba(0,0,0,0.18);
  backdrop-filter: blur(16px);
}

.home-consult-copy h2 {
  margin: 8px 0 12px;
  color: #fff;
  font-family: "Noto Sans KR", "Noto Serif KR", sans-serif;
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.2;
  font-weight: 750;
  letter-spacing: -0.035em;
}

.home-consult-copy p:not(.section-kicker) {
  margin: 0;
  color: rgba(255,255,255,0.78);
  font-size: 17px;
  line-height: 1.7;
  font-weight: 600;
}

.home-consult-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.home-consult-steps article {
  min-height: 138px;
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 22px 20px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 12px;
  background: rgba(255,255,255,0.1);
}

.home-consult-steps span {
  color: #bfe5f4;
  font-size: 13px;
  font-weight: 900;
}

.home-consult-steps strong {
  color: #fff;
  font-size: 20px;
  line-height: 1.28;
  font-weight: 850;
}

.home-consult-steps p {
  margin: 0;
  color: rgba(255,255,255,0.72);
  font-size: 14.5px;
  line-height: 1.55;
  font-weight: 600;
}

.home-consult-actions {
  display: grid;
  gap: 12px;
  min-width: 170px;
}

.floating-quick-cta {
  position: fixed;
  right: 24px;
  top: 50%;
  z-index: 70;
  transform: translateY(-50%);
  display: grid;
  gap: 10px;
  width: 156px;
  pointer-events: auto;
}

.floating-quick-cta a {
  min-height: 54px;
  display: grid;
  place-items: center;
  padding: 10px 12px;
  border: 1px solid rgba(23, 90, 114, 0.18);
  border-radius: 999px;
  background: rgba(255,255,255,0.94);
  color: #082238;
  box-shadow: 0 16px 40px rgba(36, 81, 103, 0.14);
  font-size: 14px;
  font-weight: 850;
  text-align: center;
  backdrop-filter: blur(14px);
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.floating-quick-cta a:hover {
  transform: translateX(-4px);
  background: #d4312d;
  color: #fff;
}

.floating-quick-cta .quick-phone {
  min-height: 72px;
  border-radius: 16px;
  background: linear-gradient(135deg, #0d5f7a, #0b2c44);
  color: #fff;
}

.floating-quick-cta .quick-phone span {
  color: rgba(255,255,255,0.92);
  font-size: 12px;
  font-weight: 700;
  text-shadow: 0 1px 8px rgba(0,0,0,0.28);
}

.floating-quick-cta .quick-phone strong {
  font-size: 19px;
  line-height: 1.1;
}

.mobile-bottom-cta {
  display: none;
}

@media (max-width: 1280px) {
  .floating-quick-cta {
    right: 14px;
    width: 138px;
  }
}

@media (max-width: 1100px) {
  .home-consult-card {
    grid-template-columns: 1fr;
  }

  .home-consult-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .home-premium-grid {
    grid-template-columns: 1fr;
  }

  .home-premium-card {
    display: grid;
    grid-template-columns: minmax(180px, 0.72fr) minmax(0, 1fr);
  }

  .home-premium-card figure,
  .home-premium-card div {
    min-height: 240px;
    height: auto;
  }
}

@media (max-width: 768px) {
  .structured-site {
    padding-bottom: 70px;
  }

  .home-premium-section {
    padding: 58px 0 68px;
  }

  .home-section-heading {
    text-align: left;
    margin-bottom: 22px;
  }

  .home-section-heading h2 {
    font-size: 31px;
    line-height: 1.26;
  }

  .home-section-heading p:not(.section-kicker) {
    font-size: 15.5px;
  }

  .home-premium-card {
    display: block;
  }

  .home-premium-card figure {
    height: 210px;
  }

  .home-premium-card div {
    min-height: 0;
    padding: 24px 22px 26px;
  }

  .home-premium-card h3 {
    font-size: 23px;
  }

  .home-consult-section {
    padding: 60px 0 70px;
  }

  .home-consult-card {
    padding: 24px 18px;
    border-radius: 14px;
  }

  .home-consult-copy h2 {
    font-size: 29px;
  }

  .home-consult-steps {
    grid-template-columns: 1fr;
  }

  .home-consult-actions {
    grid-template-columns: 1fr;
  }

  .floating-quick-cta {
    display: none;
  }

  .mobile-bottom-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 78;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 9px 12px calc(9px + env(safe-area-inset-bottom));
    gap: 8px;
    background: rgba(255,255,255,0.96);
    border-top: 1px solid rgba(23, 90, 114, 0.14);
    box-shadow: 0 -12px 36px rgba(36, 81, 103, 0.16);
    backdrop-filter: blur(16px);
  }

  .mobile-bottom-cta a {
    min-height: 48px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: #0d5f7a;
    color: #fff;
    font-size: 15px;
    font-weight: 850;
  }

  .mobile-bottom-cta a:last-child {
    background: #0a7e94;
  }
}

/* Final structured-site polish: this block is appended after the base CSS, so it
   owns the last word for Daelasoo pages generated from this template. */
.mobile-bottom-cta a {
  background: #0d5f7a;
}

.mobile-bottom-cta a:last-child {
  background: #0a7e94;
}

.structured-site .hero-kicker,
.structured-site .section-kicker,
.structured-site .summary-chip span,
.structured-site .official-service-grid a:hover,
.structured-site .site-map-group span {
  color: #075761;
}

.structured-site .structured-main-hero .hero-kicker,
.structured-site .structured-sub-hero .hero-kicker,
.structured-site .summary-lead .section-kicker,
.structured-site .tone-deep .section-kicker,
.structured-site .reservation-band .section-kicker,
.structured-site .home-consult-card .section-kicker,
.structured-site .tone-deep .sales-flow-grid span,
.structured-site .reservation-band .form-status,
.structured-site .reservation-band .privacy-check a {
  color: #f4fbff;
  text-shadow: 0 2px 12px rgba(0, 18, 28, 0.48);
}

.structured-site .structured-main-hero .hero-kicker {
  color: #eaf9ff;
  font-weight: 800;
}

.structured-site .structured-sub-hero .hero-kicker {
  color: #dff6ff;
}

.structured-site .summary-lead .section-kicker,
.structured-site .tone-deep .section-kicker,
.structured-site .reservation-band .section-kicker {
  letter-spacing: 0.08em;
}

.structured-site .home-quick-reservation .section-kicker,
.structured-site .copy-panel .section-kicker,
.structured-site .home-section-heading .section-kicker,
.structured-site .unit-type-heading .section-kicker,
.structured-site .structured-preview-card span,
.structured-site .summary-chip span,
.structured-site .info-card-grid span,
.structured-site .stat-card span {
  color: #075761;
  text-shadow: none;
}

.structured-site .btn-red,
.structured-site .open-pill,
.structured-site .notice-popup-button {
  background: linear-gradient(135deg, #0a6674 0%, #0d7f91 58%, #0b5162 100%);
  color: #fff;
  border-color: rgba(7, 87, 97, 0.18);
  box-shadow: 0 16px 34px rgba(7, 87, 97, 0.24);
}

.structured-site .promo-popup-brand span,
.structured-site .notice-popup-brand span,
.structured-site .notice-popup-box strong,
.structured-site .notice-domain-line,
.structured-site .privacy-check a,
.structured-site .form-status {
  color: #0d7383;
}

.structured-site .notice-popup-button {
  color: #fff;
}

.structured-site .notice-popup-panel {
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.98), rgba(239, 250, 254, 0.96)),
    linear-gradient(115deg, rgba(13, 115, 131, 0.055) 1px, transparent 1px);
}

.structured-site .notice-popup-icon {
  background: linear-gradient(135deg, #9fd7e7, #4f9eb5);
}

@media (max-width: 768px) {
  .structured-site .promo-popup {
    overflow-x: hidden;
    padding-inline: 20px;
    align-items: center;
  }

  .structured-site .promo-popup-panel,
  .structured-site .notice-popup-panel {
    width: min(340px, calc(100% - 40px)) !important;
    max-width: min(340px, calc(100% - 40px)) !important;
  }

  .structured-site .promo-popup-close {
    top: 14px;
    right: 12px;
    width: 38px;
    height: 38px;
  }

  .structured-site .hero-point-list {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 360px;
  }

  .structured-site .hero-point-list span {
    width: 100%;
    justify-content: center;
  }
}
