:root {
    --dv-navy-950: #061d3f;
    --dv-navy-900: #082653;
    --dv-navy-800: #0d356d;
    --dv-blue-700: #0b5b9a;
    --dv-blue-600: #0875b8;
    --dv-teal-600: #079eae;
    --dv-teal-500: #24b8c4;
    --dv-copper-600: #a8733f;
    --dv-copper-500: #c4935d;
    --dv-sky-100: #eaf7fa;
    --dv-ivory: #f7f5f0;
    --dv-paper: #fbfaf7;
    --dv-text: #172337;
    --dv-muted: #687386;
    --dv-line: rgba(8, 38, 83, .12);
    --dv-line-strong: rgba(8, 38, 83, .22);
    --dv-shadow-sm: 0 12px 28px rgba(8, 38, 83, .09);
    --dv-shadow: 0 22px 52px rgba(8, 38, 83, .14);
    --dv-radius-sm: 14px;
    --dv-radius: 22px;
    --dv-radius-lg: 30px;
    --dv-font: "Pretendard Variable", Pretendard, system-ui, -apple-system, "Segoe UI", sans-serif;

    /* 기존 템플릿 호환용 별칭 */
    --firstone-navy: var(--dv-navy-900);
    --firstone-navy-2: var(--dv-navy-800);
    --firstone-blue: var(--dv-blue-700);
    --firstone-gold: var(--dv-copper-500);
    --firstone-gold-2: #dfbb8a;
    --firstone-ivory: var(--dv-ivory);
    --firstone-paper: var(--dv-paper);
    --firstone-text: var(--dv-text);
    --firstone-muted: var(--dv-muted);
    --firstone-line: var(--dv-line);
    --firstone-shadow: var(--dv-shadow);
    --firstone-font: var(--dv-font);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    margin: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    font-family: var(--dv-font);
    color: var(--dv-text);
    background: #fff;
    word-break: keep-all;
    overflow-x: hidden;
}

/* 상단 고정 메뉴 높이만큼 확보. 위 html/body 규칙과 합치지 않습니다. */
body {
    padding-top: 76px !important;
}

img {
    max-width: 100%;
}

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

button,
input,
select,
textarea {
    font: inherit;
}

.container-wide {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.container-narrow {
    width: min(900px, calc(100% - 40px));
    margin: 0 auto;
}

.skip-link {
    position: fixed;
    left: 16px;
    top: -100px;
    z-index: 99999;
    padding: 12px 16px;
    border-radius: 10px;
    background: var(--dv-navy-950);
    color: #fff;
    font-weight: 800;
}

.skip-link:focus {
    top: 12px;
}

/* =========================
   Shared Typography
========================= */

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 13px;
    color: var(--dv-teal-600);
    font-size: .78rem;
    font-weight: 850;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.section-kicker::before {
    content: "";
    width: 38px;
    height: 1px;
    background: currentColor;
}

.section-title {
    margin: 0;
    color: var(--dv-navy-900);
    font-size: clamp(1.68rem, 3.1vw, 2.58rem);
    font-weight: 900;
    line-height: 1.27;
    letter-spacing: -.055em;
}

.section-desc {
    margin: 15px 0 0;
    color: var(--dv-muted);
    font-size: 1rem;
    line-height: 1.75;
    letter-spacing: -.025em;
}

.text-note {
    color: var(--dv-muted);
    font-size: .85rem;
    line-height: 1.65;
    letter-spacing: -.02em;
}

.point-text {
    color: var(--dv-teal-600);
}

/* =========================
   Buttons
========================= */

.dv-btn,
.firstone-btn {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: .98rem;
    font-weight: 900;
    letter-spacing: -.035em;
    text-decoration: none !important;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

.dv-btn:hover,
.firstone-btn:hover {
    transform: translateY(-2px);
}

.dv-btn--primary,
.firstone-btn--gold {
    color: #fff !important;
    background: linear-gradient(180deg, #169db4 0%, #0875b8 100%);
    border-color: rgba(255,255,255,.35);
    box-shadow: 0 15px 30px rgba(8, 91, 154, .26);
}

.dv-btn--navy,
.firstone-btn--navy {
    color: #fff !important;
    background: linear-gradient(180deg, var(--dv-navy-800) 0%, var(--dv-navy-950) 100%);
    border-color: rgba(196,147,93,.42);
    box-shadow: 0 15px 30px rgba(6,29,63,.24);
}

.dv-btn--light,
.firstone-btn--line {
    color: var(--dv-navy-900) !important;
    background: rgba(255,255,255,.9);
    border-color: rgba(8,38,83,.16);
    box-shadow: var(--dv-shadow-sm);
}

.dv-btn--outline {
    color: var(--dv-navy-900) !important;
    background: transparent;
    border-color: rgba(8,38,83,.25);
}

/* =========================
   Home Hero
========================= */

.home-hero {
    position: relative;
    min-height: min(790px, calc(100vh - 76px));
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
    background: url('/assets/img/hero-main.webp') center center / cover no-repeat;
}

.home-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(90deg, rgba(4,25,56,.92) 0%, rgba(7,38,79,.74) 45%, rgba(7,38,79,.12) 100%),
        linear-gradient(180deg, rgba(0,0,0,.05) 0%, rgba(4,25,56,.32) 100%);
}

.home-hero::after {
    content: "";
    position: absolute;
    left: -7%;
    bottom: -230px;
    z-index: -1;
    width: 780px;
    height: 430px;
    border-radius: 50%;
    background: rgba(36,184,196,.16);
    filter: blur(8px);
}

.home-hero__inner {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    padding: 86px 0 82px;
}

.home-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    border: 1px solid rgba(255,255,255,.32);
    border-radius: 999px;
    background: rgba(255,255,255,.10);
    color: #fff;
    font-size: .9rem;
    font-weight: 800;
    backdrop-filter: blur(10px);
}

.home-hero__badge i {
    color: #67dce4;
}

.home-hero__title {
    max-width: 850px;
    margin: 24px 0 0;
    color: #fff;
    font-size: clamp(2.6rem, 6.4vw, 5.55rem);
    font-weight: 930;
    line-height: 1.05;
    letter-spacing: -.078em;
    text-shadow: 0 14px 38px rgba(0,0,0,.32);
}

.home-hero__title strong {
    color: #65d2dc;
}

.home-hero__subtitle {
    max-width: 700px;
    margin: 24px 0 0;
    color: rgba(255,255,255,.86);
    font-size: clamp(1rem, 1.55vw, 1.24rem);
    line-height: 1.72;
    letter-spacing: -.03em;
}

.home-hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.home-hero__cta .dv-btn--light {
    color: #fff !important;
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.36);
    box-shadow: none;
    backdrop-filter: blur(12px);
}

.home-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: 12px;
    max-width: 930px;
    margin-top: 48px;
}

.home-stat {
    min-height: 112px;
    padding: 19px 18px;
    border: 1px solid rgba(255,255,255,.17);
    border-radius: 18px;
    background: rgba(3,25,58,.52);
    box-shadow: 0 14px 28px rgba(0,0,0,.18);
    backdrop-filter: blur(12px);
}

.home-stat em {
    display: block;
    color: rgba(255,255,255,.65);
    font-size: .79rem;
    font-style: normal;
    font-weight: 750;
}

.home-stat strong {
    display: block;
    margin-top: 8px;
    color: #fff;
    font-size: clamp(1.28rem, 2.2vw, 1.85rem);
    font-weight: 950;
    letter-spacing: -.055em;
}

.home-stat span {
    display: block;
    margin-top: 7px;
    color: rgba(255,255,255,.69);
    font-size: .8rem;
    line-height: 1.42;
}

/* =========================
   Subpage Hero - Insignia-style
========================= */

.page-hero {
    position: relative;
    min-height: 440px;
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.page-hero--overview { background-image: url('/assets/img/hero-overview.webp'); }
.page-hero--location { background-image: url('/assets/img/hero-location.webp'); }
.page-hero--premium { background-image: url('/assets/img/hero-premium.webp'); }
.page-hero--complex { background-image: url('/assets/img/hero-complex.webp'); }
.page-hero--unit { background-image: url('/assets/img/hero-unit.webp'); }
.page-hero--contact,
.page-hero--reservation,
.page-hero--partnership { background-image: url('/assets/img/hero-contact.webp'); }

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background: linear-gradient(90deg, rgba(255,255,255,.97) 0%, rgba(255,255,255,.90) 44%, rgba(255,255,255,.36) 73%, rgba(255,255,255,.06) 100%);
}

.page-hero::after {
    content: "";
    position: absolute;
    left: -120px;
    bottom: -210px;
    z-index: -1;
    width: 500px;
    height: 350px;
    border-radius: 50%;
    background: rgba(36,184,196,.14);
}

.page-hero__inner {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: 70px 0 68px;
}

.page-hero__kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--dv-teal-600);
    font-size: .82rem;
    font-weight: 850;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.page-hero__title {
    max-width: 760px;
    margin: 18px 0 0;
    color: var(--dv-navy-900);
    font-size: clamp(2.15rem, 4.4vw, 3.75rem);
    font-weight: 930;
    line-height: 1.12;
    letter-spacing: -.07em;
}

.page-hero__desc {
    max-width: 690px;
    margin: 18px 0 0;
    color: #4e5d71;
    font-size: 1.04rem;
    line-height: 1.72;
    letter-spacing: -.028em;
}

.page-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

/* =========================
   Section / Layout Shared
========================= */

.section {
    padding: 84px 0 90px;
    background: #fff;
}

.section--paper {
    background: linear-gradient(180deg, var(--dv-paper) 0%, #fff 100%);
}

.section--navy {
    position: relative;
    overflow: hidden;
    color: #fff;
    background: linear-gradient(135deg, var(--dv-navy-950) 0%, var(--dv-navy-800) 58%, #0a557b 100%);
}

.section--navy::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 12% 18%, rgba(36,184,196,.17), transparent 31%),
        radial-gradient(circle at 86% 80%, rgba(196,147,93,.17), transparent 28%);
    pointer-events: none;
}

.section--navy > .container-wide,
.section--navy > .container-narrow {
    position: relative;
    z-index: 1;
}

.section-head {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: 42px;
    align-items: end;
    margin-bottom: 38px;
}

.section-head > * {
    min-width: 0;
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: stretch;
}

.split--wide-visual {
    grid-template-columns: 1.12fr .88fr;
}

.visual-card {
    position: relative;
    overflow: hidden;
    min-height: 430px;
    border: 1px solid var(--dv-line);
    border-radius: var(--dv-radius-lg);
    background: #e9eef2;
    box-shadow: var(--dv-shadow);
}

.visual-card img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    display: block;
    object-fit: cover;
}

.visual-card--contain {
    background: #fff;
}

.visual-card--contain img {
    object-fit: contain;
    padding: 16px;
}

.content-panel {
    position: relative;
    overflow: hidden;
    padding: 34px;
    border: 1px solid var(--dv-line);
    border-radius: var(--dv-radius-lg);
    background: #fff;
    box-shadow: var(--dv-shadow-sm);
}

.content-panel--navy {
    color: #fff;
    background: linear-gradient(145deg, var(--dv-navy-950), var(--dv-navy-800));
    border-color: rgba(255,255,255,.14);
    box-shadow: var(--dv-shadow);
}

.content-panel--navy::after {
    content: "";
    position: absolute;
    right: -95px;
    bottom: -110px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(36,184,196,.15);
}

.content-panel--navy > * {
    position: relative;
    z-index: 1;
}

.content-panel h2,
.content-panel h3 {
    margin: 0;
    color: var(--dv-navy-900);
    font-weight: 900;
    line-height: 1.3;
    letter-spacing: -.052em;
}

.content-panel h2 {
    font-size: clamp(1.55rem, 2.8vw, 2.28rem);
}

.content-panel h3 {
    font-size: 1.28rem;
}

.content-panel--navy h2,
.content-panel--navy h3 {
    color: #fff;
}

.content-panel p {
    margin: 15px 0 0;
    color: var(--dv-muted);
    font-size: .98rem;
    line-height: 1.75;
    letter-spacing: -.028em;
}

.content-panel--navy p {
    color: rgba(255,255,255,.78);
}

/* =========================
   Entity Summary / GEO
========================= */

.entity-summary {
    padding: 68px 0;
    color: #fff;
    background: linear-gradient(135deg, var(--dv-navy-950), var(--dv-navy-800));
}

.entity-summary__card {
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    gap: 30px;
    align-items: center;
    padding: 32px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 26px;
    background: rgba(255,255,255,.06);
    box-shadow: 0 22px 50px rgba(0,0,0,.16);
}

.entity-summary__card h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(1.55rem, 3vw, 2.36rem);
    font-weight: 900;
    line-height: 1.28;
    letter-spacing: -.055em;
}

.entity-summary__card p {
    margin: 15px 0 0;
    color: rgba(255,255,255,.78);
    font-size: .98rem;
    line-height: 1.76;
}

.entity-summary__list {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.entity-summary__list li {
    padding: 14px 16px;
    border: 1px solid rgba(255,255,255,.11);
    border-radius: 14px;
    background: rgba(255,255,255,.07);
    color: rgba(255,255,255,.9);
    font-size: .94rem;
    line-height: 1.58;
}

.entity-summary__list strong {
    color: #64d1dc;
}

/* =========================
   Quick Menu
========================= */

.quick-menu {
    padding: 70px 0 76px;
    background: var(--dv-paper);
}

.quick-menu__top {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 26px;
}

.quick-menu__top span {
    color: var(--dv-navy-900);
    font-size: .82rem;
    font-weight: 850;
    letter-spacing: .2em;
}

.quick-menu__top::after {
    content: "";
    width: 120px;
    height: 1px;
    background: var(--dv-teal-500);
}

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

.quick-menu__item {
    position: relative;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    padding: 21px 18px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 18px;
    color: #fff;
    background: linear-gradient(145deg, var(--dv-navy-950), var(--dv-navy-800));
    box-shadow: var(--dv-shadow-sm);
    transition: transform .22s ease, box-shadow .22s ease;
}

.quick-menu__item:hover {
    transform: translateY(-5px);
    box-shadow: var(--dv-shadow);
}

.quick-menu__item::after {
    content: "";
    position: absolute;
    right: -28px;
    bottom: -30px;
    width: 105px;
    height: 105px;
    border-radius: 50%;
    background: rgba(36,184,196,.18);
}

.quick-menu__icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 12px;
    color: #6ee0e7;
    background: rgba(255,255,255,.06);
}

.quick-menu__text {
    position: relative;
    z-index: 1;
    margin-top: auto;
}

.quick-menu__text strong {
    display: block;
    font-size: 1.15rem;
    font-weight: 900;
    letter-spacing: -.04em;
}

.quick-menu__text span {
    display: block;
    margin-top: 6px;
    color: rgba(255,255,255,.58);
    font-size: .68rem;
    letter-spacing: .09em;
    text-transform: uppercase;
}

/* =========================
   Cards / Lists
========================= */

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

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

.info-card {
    position: relative;
    min-height: 220px;
    overflow: hidden;
    padding: 25px 23px;
    border: 1px solid var(--dv-line);
    border-radius: var(--dv-radius);
    background: linear-gradient(180deg, #fff, var(--dv-paper));
    box-shadow: var(--dv-shadow-sm);
}

.info-card::after {
    content: "";
    position: absolute;
    left: 23px;
    bottom: 0;
    width: 78px;
    height: 3px;
    background: linear-gradient(90deg, var(--dv-teal-500), transparent);
}

.info-card--point {
    color: #fff;
    background: linear-gradient(145deg, var(--dv-navy-950), var(--dv-navy-800));
    border-color: rgba(36,184,196,.32);
}

.info-card__num,
.info-card__icon {
    width: 46px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 21px;
    border-radius: 999px;
    color: #fff;
    background: var(--dv-navy-900);
    font-size: .8rem;
    font-weight: 900;
}

.info-card__icon {
    height: 46px;
    border-radius: 14px;
    color: var(--dv-teal-600);
    background: var(--dv-sky-100);
    font-size: 1.1rem;
}

.info-card--point .info-card__num,
.info-card--point .info-card__icon {
    color: var(--dv-navy-900);
    background: #6cdae2;
}

.info-card h3 {
    margin: 0;
    color: var(--dv-navy-900);
    font-size: 1.28rem;
    font-weight: 900;
    line-height: 1.34;
    letter-spacing: -.05em;
}

.info-card p {
    margin: 13px 0 0;
    color: var(--dv-muted);
    font-size: .94rem;
    line-height: 1.68;
    letter-spacing: -.027em;
}

.info-card--point h3 {
    color: #fff;
}

.info-card--point p {
    color: rgba(255,255,255,.75);
}

.icon-list {
    display: grid;
    gap: 11px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.icon-list li {
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 13px;
    align-items: center;
    padding: 15px;
    border: 1px solid var(--dv-line);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(8,38,83,.06);
}

.icon-list i {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: var(--dv-teal-600);
    background: var(--dv-sky-100);
}

.icon-list strong {
    display: block;
    color: var(--dv-navy-900);
    font-size: 1.02rem;
    font-weight: 900;
    letter-spacing: -.04em;
}

.icon-list span {
    display: block;
    margin-top: 4px;
    color: var(--dv-muted);
    font-size: .88rem;
    line-height: 1.5;
    letter-spacing: -.024em;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
}

.tag-list li {
    padding: 8px 12px;
    border-radius: 999px;
    color: #0b6874;
    background: var(--dv-sky-100);
    font-size: .84rem;
    font-weight: 820;
}

/* =========================
   Tables
========================= */

.info-table-wrap {
    overflow: hidden;
    border: 1px solid var(--dv-line);
    border-radius: 18px;
    background: #fff;
}

.info-table-wrap--scroll {
    overflow-x: auto;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
}

.info-table--wide {
    min-width: 780px;
}

.info-table th,
.info-table td {
    padding: 14px 15px;
    border-bottom: 1px solid var(--dv-line);
    vertical-align: top;
    text-align: left;
    font-size: .93rem;
    line-height: 1.55;
    letter-spacing: -.025em;
}

.info-table tr:last-child th,
.info-table tr:last-child td {
    border-bottom: 0;
}

.info-table th {
    width: 28%;
    color: var(--dv-navy-900);
    background: var(--dv-sky-100);
    font-weight: 900;
}

.info-table td {
    color: #4e5a6c;
}

.info-table thead th {
    width: auto;
    color: #fff;
    background: var(--dv-navy-900);
}

/* =========================
   Image Feature Rows
========================= */

.feature-stack {
    display: grid;
    gap: 22px;
    margin-top: 38px;
}

.feature-row {
    display: grid;
    grid-template-columns: .96fr 1.04fr;
    gap: 22px;
    align-items: stretch;
}

.feature-row:nth-child(even) .feature-row__visual {
    order: 2;
}

.feature-row__visual {
    min-height: 330px;
    overflow: hidden;
    border: 1px solid var(--dv-line);
    border-radius: 25px;
    background: #eef3f5;
    box-shadow: var(--dv-shadow-sm);
}

.feature-row__visual img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    display: block;
    object-fit: cover;
}

.feature-row__content {
    padding: 32px;
    border: 1px solid var(--dv-line);
    border-radius: 25px;
    background: #fff;
    box-shadow: var(--dv-shadow-sm);
}

.feature-row__content em {
    display: block;
    margin-bottom: 12px;
    color: var(--dv-teal-600);
    font-size: .78rem;
    font-style: normal;
    font-weight: 900;
    letter-spacing: .16em;
}

.feature-row__content h3 {
    margin: 0;
    color: var(--dv-navy-900);
    font-size: clamp(1.4rem, 2.7vw, 2.08rem);
    font-weight: 900;
    line-height: 1.3;
    letter-spacing: -.055em;
}

.feature-row__content p {
    margin: 14px 0 0;
    color: var(--dv-muted);
    font-size: .97rem;
    line-height: 1.75;
}

/* =========================
   Overview / Complex Stats
========================= */

.stat-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: 12px;
    margin-top: 30px;
}

.stat-box {
    padding: 18px 17px;
    border: 1px solid var(--dv-line);
    border-radius: 17px;
    background: #fff;
    box-shadow: var(--dv-shadow-sm);
}

.stat-box em {
    display: block;
    color: var(--dv-muted);
    font-size: .78rem;
    font-style: normal;
    font-weight: 750;
}

.stat-box strong {
    display: block;
    margin-top: 7px;
    color: var(--dv-navy-900);
    font-size: 1.45rem;
    font-weight: 950;
    letter-spacing: -.05em;
}

.stat-box span {
    display: block;
    margin-top: 6px;
    color: var(--dv-muted);
    font-size: .78rem;
    line-height: 1.4;
}

.plan-card {
    padding: 20px;
    border: 1px solid var(--dv-line);
    border-radius: 28px;
    background: #fff;
    box-shadow: var(--dv-shadow);
}

.plan-card figure {
    margin: 0;
    overflow: hidden;
    border-radius: 21px;
    background: #f4f6f7;
}

.plan-card figure img {
    width: 100%;
    display: block;
}

.plan-card figcaption {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 18px 4px 2px;
    color: var(--dv-muted);
    font-size: .86rem;
    line-height: 1.6;
}

.plan-card figcaption strong {
    color: var(--dv-navy-900);
}

/* =========================
   Unit Page
========================= */

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

.unit-menu__link {
    position: relative;
    min-height: 130px;
    display: flex;
    flex-direction: column;
    padding: 19px 18px;
    overflow: hidden;
    border-radius: 18px;
    color: #fff;
    background: linear-gradient(145deg, var(--dv-navy-950), var(--dv-navy-800));
    box-shadow: var(--dv-shadow-sm);
}

.unit-menu__link::after {
    content: "";
    position: absolute;
    right: -30px;
    bottom: -35px;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: rgba(36,184,196,.18);
}

.unit-menu__link em {
    color: rgba(255,255,255,.58);
    font-size: .72rem;
    font-style: normal;
    font-weight: 850;
    letter-spacing: .11em;
}

.unit-menu__link strong {
    position: relative;
    z-index: 1;
    margin-top: auto;
    font-size: 1.65rem;
    font-weight: 950;
    letter-spacing: -.05em;
}

.unit-menu__link span {
    position: relative;
    z-index: 1;
    margin-top: 6px;
    color: rgba(255,255,255,.72);
    font-size: .86rem;
}

.unit-list {
    display: grid;
    gap: 24px;
}

.unit-card {
    display: grid;
    grid-template-columns: .98fr 1.02fr;
    gap: 28px;
    align-items: stretch;
    padding: 24px;
    border: 1px solid var(--dv-line);
    border-radius: 28px;
    background: linear-gradient(180deg, #fff, var(--dv-paper));
    box-shadow: var(--dv-shadow-sm);
}

.unit-card:nth-child(even) .unit-card__media {
    order: 2;
}

.unit-card__media {
    min-height: 370px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid var(--dv-line);
    border-radius: 22px;
    background: #fff;
}

.unit-card__media img {
    width: 100%;
    height: 100%;
    min-height: 370px;
    display: block;
    object-fit: contain;
    padding: 10px;
}

.unit-card__info {
    padding: 6px 2px;
}

.unit-card__type {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.unit-card__type strong {
    color: var(--dv-navy-900);
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 950;
    letter-spacing: -.07em;
}

.unit-card__type span {
    color: var(--dv-teal-600);
    font-size: .9rem;
    font-weight: 900;
}

.unit-card__info h3 {
    margin: 12px 0 0;
    color: var(--dv-navy-900);
    font-size: 1.45rem;
    font-weight: 900;
    line-height: 1.35;
    letter-spacing: -.05em;
}

.unit-card__info > p {
    margin: 13px 0 0;
    color: var(--dv-muted);
    font-size: .94rem;
    line-height: 1.7;
}

/* =========================
   Forms
========================= */

.form-section {
    padding: 82px 0 92px;
    background: linear-gradient(180deg, var(--dv-paper), #fff);
}

.form-layout {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: 26px;
    align-items: start;
}

.form-guide,
.form-card {
    border: 1px solid var(--dv-line);
    border-radius: 28px;
    background: #fff;
    box-shadow: var(--dv-shadow-sm);
}

.form-guide {
    position: sticky;
    top: 98px;
    padding: 30px;
}

.form-guide h2 {
    margin: 0;
    color: var(--dv-navy-900);
    font-size: clamp(1.45rem, 2.6vw, 2.08rem);
    font-weight: 900;
    line-height: 1.3;
    letter-spacing: -.055em;
}

.form-guide p {
    margin: 14px 0 0;
    color: var(--dv-muted);
    font-size: .96rem;
    line-height: 1.7;
}

.form-guide__list {
    display: grid;
    gap: 10px;
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}

.form-guide__list li {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 12px;
    align-items: center;
    padding: 13px;
    border-radius: 15px;
    background: var(--dv-paper);
}

.form-guide__list i,
.form-guide__num {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    color: var(--dv-teal-600);
    background: var(--dv-sky-100);
    font-style: normal;
    font-weight: 900;
}

.form-guide__list strong {
    display: block;
    color: var(--dv-navy-900);
    font-size: .96rem;
    font-weight: 900;
}

.form-guide__list span {
    display: block;
    margin-top: 3px;
    color: var(--dv-muted);
    font-size: .82rem;
    line-height: 1.45;
}

.form-card {
    overflow: hidden;
}

.form-card__head {
    padding: 28px 30px 24px;
    color: #fff;
    background: linear-gradient(135deg, var(--dv-navy-950), var(--dv-navy-800));
}

.form-card__head h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(1.4rem, 2.5vw, 2.02rem);
    font-weight: 900;
    letter-spacing: -.055em;
}

.form-card__head p {
    margin: 10px 0 0;
    color: rgba(255,255,255,.72);
    font-size: .93rem;
    line-height: 1.62;
}

.form-card__body {
    padding: 30px;
}

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

.form-field {
    display: grid;
    gap: 7px;
    min-width: 0;
}

.form-field--full {
    grid-column: 1 / -1;
}

.form-label,
.field-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    color: var(--dv-navy-900);
    font-size: .92rem;
    font-weight: 880;
    letter-spacing: -.03em;
}

.form-required,
.form-label em,
.field-label span {
    color: #b16c2b;
    font-size: .78rem;
    font-style: normal;
    font-weight: 850;
}

.form-control,
.form-select,
.form-textarea,
.contacts-input,
.contacts-select,
.contacts-textarea,
.form-control-firstone,
.form-select-firstone {
    width: 100%;
    min-height: 52px;
    padding: 0 15px;
    border: 1px solid rgba(8,38,83,.17);
    border-radius: 13px;
    background: #fff;
    color: var(--dv-text);
    font-size: .98rem;
    font-weight: 600;
    letter-spacing: -.025em;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.form-textarea,
.contacts-textarea {
    min-height: 112px;
    padding: 14px 15px;
    resize: vertical;
    line-height: 1.62;
}

.form-control:focus,
.form-select:focus,
.form-textarea:focus,
.contacts-input:focus,
.contacts-select:focus,
.contacts-textarea:focus,
.form-control-firstone:focus,
.form-select-firstone:focus {
    border-color: rgba(7,158,174,.75);
    box-shadow: 0 0 0 4px rgba(36,184,196,.14);
}

.form-message,
.clsMessage {
    min-height: 17px;
    color: #c2410c;
    font-size: .79rem;
    font-weight: 720;
    line-height: 1.4;
}

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

.radio-card {
    position: relative;
    margin: 0;
    cursor: pointer;
}

.radio-card input {
    position: absolute;
    inset: 0;
    opacity: 0;
}

.radio-card span,
.radio-card label {
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border: 1px solid var(--dv-line);
    border-radius: 14px;
    background: var(--dv-paper);
    color: #455267;
    text-align: center;
    font-size: .9rem;
    font-weight: 850;
    line-height: 1.3;
}

.radio-card input:checked + span,
.radio-card input:checked + label {
    color: #fff;
    background: var(--dv-navy-900);
    border-color: rgba(36,184,196,.56);
    box-shadow: var(--dv-shadow-sm);
}

.date-time-grid {
    display: grid;
    grid-template-columns: 1.15fr .9fr .9fr;
    gap: 10px;
    align-items: start;
}

.date-time-field {
    display: grid;
    gap: 6px;
    min-width: 0;
}

.privacy-box {
    padding: 18px;
    border: 1px solid var(--dv-line);
    border-radius: 16px;
    background: var(--dv-paper);
}

.privacy-scroll,
.contacts-privacy-box {
    max-height: 170px;
    overflow-y: auto;
    padding: 15px;
    border: 1px solid var(--dv-line);
    border-radius: 13px;
    background: #fff;
    color: #596679;
    font-size: .83rem;
    line-height: 1.65;
}

.privacy-check,
.contacts-check-row {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin-top: 12px;
    color: var(--dv-navy-900);
    font-size: .92rem;
    font-weight: 820;
    line-height: 1.5;
}

.privacy-check input,
.contacts-check-row input {
    width: 19px;
    height: 19px;
    margin-top: 1px;
    accent-color: var(--dv-teal-600);
}

.form-actions,
.contacts-submit-row,
.reservation-submit-area {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 13px;
    margin-top: 25px;
    padding-top: 22px;
    border-top: 1px solid var(--dv-line);
}

.form-submit,
.contacts-submit-btn,
.reservation-submit-btn {
    min-width: 180px;
    min-height: 54px;
    border: 0;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(180deg, var(--dv-teal-600), var(--dv-blue-700));
    font-size: 1rem;
    font-weight: 930;
    letter-spacing: -.035em;
    box-shadow: 0 15px 30px rgba(8,91,154,.24);
    cursor: pointer;
}

.form-submit:hover,
.contacts-submit-btn:hover,
.reservation-submit-btn:hover {
    transform: translateY(-2px);
}

.form-note,
.contacts-submit-note {
    margin: 0;
    color: var(--dv-muted);
    font-size: .83rem;
    line-height: 1.5;
}

#div_select_hope_date {
    display: none;
    margin-top: 12px;
    padding: 14px;
    border: 1px solid rgba(36,184,196,.22);
    border-radius: 15px;
    background: #f5fbfc;
}

.wrap-loading {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999998;
    background: rgba(6,29,63,.42);
    backdrop-filter: blur(4px);
}

.wrap-loading__box,
.wrap-loading .loading-box {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    min-width: 210px;
    padding: 24px;
    border-radius: 20px;
    background: #fff;
    color: var(--dv-navy-900);
    text-align: center;
    font-weight: 900;
    box-shadow: var(--dv-shadow);
}

/* =========================
   FAQ
========================= */

.faq-grid {
    display: grid;
    grid-template-columns: .78fr 1.22fr;
    gap: 42px;
    align-items: start;
}

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

.faq-item {
    overflow: hidden;
    border: 1px solid var(--dv-line);
    border-radius: 17px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(8,38,83,.05);
}

.faq-item summary {
    position: relative;
    padding: 20px 50px 20px 21px;
    color: var(--dv-navy-900);
    font-size: 1rem;
    font-weight: 900;
    line-height: 1.48;
    letter-spacing: -.035em;
    cursor: pointer;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--dv-teal-600);
    font-size: 1.4rem;
    font-weight: 500;
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-item p {
    margin: 0;
    padding: 0 21px 20px;
    color: var(--dv-muted);
    font-size: .93rem;
    line-height: 1.7;
    letter-spacing: -.024em;
}

/* =========================
   Small Utility Components
========================= */

.notice-box {
    margin-top: 20px;
    padding: 15px 17px;
    border: 1px solid rgba(168,115,63,.18);
    border-radius: 14px;
    color: #715333;
    background: #fff8ee;
    font-size: .84rem;
    line-height: 1.65;
}

.callout {
    padding: 24px;
    border-left: 4px solid var(--dv-teal-500);
    border-radius: 0 18px 18px 0;
    color: #4c5b6f;
    background: var(--dv-sky-100);
    font-size: .96rem;
    line-height: 1.7;
}

/* =========================
   Responsive
========================= */

@media (max-width: 1199.98px) {
    .card-grid--4 {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }
}

@media (max-width: 991.98px) {
    body {
        padding-top: 70px !important;
    }

    .home-hero {
        min-height: auto;
        background-position: 58% center;
    }

    .home-hero__inner {
        width: min(100% - 34px, 760px);
        padding: 72px 0 54px;
    }

    .home-stats {
        grid-template-columns: repeat(2, minmax(0,1fr));
        max-width: 650px;
        margin-top: 34px;
    }

    .page-hero {
        min-height: 390px;
    }

    .page-hero::before {
        background: linear-gradient(90deg, rgba(255,255,255,.97) 0%, rgba(255,255,255,.91) 68%, rgba(255,255,255,.25) 100%);
    }

    .section-head,
    .split,
    .split--wide-visual,
    .entity-summary__card,
    .feature-row,
    .faq-grid,
    .form-layout,
    .unit-card {
        grid-template-columns: 1fr;
        gap: 23px;
    }

    .feature-row:nth-child(even) .feature-row__visual,
    .unit-card:nth-child(even) .unit-card__media {
        order: initial;
    }

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

    .quick-menu__item:last-child {
        grid-column: 1 / -1;
        min-height: 120px;
    }

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

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

    .form-guide {
        position: static;
    }

    .unit-card__media {
        min-height: 330px;
    }

    .unit-card__media img {
        min-height: 330px;
    }
}

@media (max-width: 575.98px) {
    .container-wide,
    .container-narrow,
    .page-hero__inner {
        width: min(100% - 30px, 1180px);
    }

    .home-hero::before {
        background: linear-gradient(90deg, rgba(4,25,56,.92), rgba(7,38,79,.68));
    }

    .home-hero__inner {
        width: min(100% - 30px, 760px);
        padding: 60px 0 46px;
    }

    .home-hero__title {
        font-size: clamp(2.25rem, 12vw, 3.5rem);
        letter-spacing: -.07em;
    }

    .home-hero__subtitle {
        font-size: .95rem;
        line-height: 1.65;
    }

    .home-hero__cta,
    .page-hero__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .home-hero__cta .dv-btn,
    .page-hero__actions .dv-btn {
        width: 100%;
    }

    .home-stats {
        gap: 8px;
    }

    .home-stat {
        min-height: 98px;
        padding: 15px 12px;
        border-radius: 14px;
    }

    .home-stat strong {
        font-size: 1.24rem;
    }

    .page-hero {
        min-height: 350px;
        background-position: 66% center;
    }

    .page-hero::before {
        background: linear-gradient(90deg, rgba(255,255,255,.98), rgba(255,255,255,.90) 74%, rgba(255,255,255,.44));
    }

    .page-hero__inner {
        padding: 54px 0 50px;
    }

    .page-hero__title {
        font-size: 2.25rem;
    }

    .page-hero__desc {
        font-size: .94rem;
        line-height: 1.65;
    }

    .section,
    .entity-summary,
    .quick-menu,
    .form-section {
        padding: 54px 0 60px;
    }

    .section-head {
        gap: 15px;
        margin-bottom: 26px;
    }

    .section-title {
        font-size: 1.48rem;
    }

    .section-desc {
        margin-top: 11px;
        font-size: .92rem;
        line-height: 1.65;
    }

    .section-kicker {
        gap: 8px;
        margin-bottom: 10px;
        font-size: .7rem;
        letter-spacing: .14em;
    }

    .section-kicker::before {
        width: 28px;
    }

    .entity-summary__card,
    .content-panel,
    .form-guide,
    .form-card__head,
    .form-card__body,
    .feature-row__content {
        padding: 23px 19px;
        border-radius: 20px;
    }

    .entity-summary__card h2,
    .content-panel h2 {
        font-size: 1.45rem;
    }

    .entity-summary__list li {
        padding: 12px 13px;
        font-size: .86rem;
    }

    .quick-menu__grid,
    .card-grid,
    .card-grid--4,
    .unit-menu,
    .stat-grid,
    .form-grid,
    .radio-grid,
    .date-time-grid {
        grid-template-columns: 1fr;
    }

    .quick-menu__item,
    .quick-menu__item:last-child {
        grid-column: auto;
        min-height: 112px;
    }

    .info-card {
        min-height: auto;
        padding: 22px 19px;
        border-radius: 19px;
    }

    .visual-card {
        min-height: 245px;
        border-radius: 20px;
    }

    .feature-row__visual {
        min-height: 230px;
        border-radius: 20px;
    }

    .feature-row__content h3 {
        font-size: 1.38rem;
    }

    .plan-card {
        padding: 12px;
        border-radius: 21px;
    }

    .plan-card figure {
        border-radius: 16px;
    }

    .plan-card figcaption {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 14px 3px 2px;
        font-size: .8rem;
    }

    .unit-card {
        padding: 15px;
        border-radius: 21px;
    }

    .unit-card__media,
    .unit-card__media img {
        min-height: 245px;
    }

    .unit-card__media {
        border-radius: 17px;
    }

    .unit-card__type strong {
        font-size: 2.55rem;
    }

    .info-table th,
    .info-table td {
        font-size: .86rem;
    }

    .form-actions,
    .contacts-submit-row,
    .reservation-submit-area {
        display: grid;
        grid-template-columns: 1fr;
        justify-items: stretch;
    }

    .form-submit,
    .contacts-submit-btn,
    .reservation-submit-btn {
        width: 100%;
        min-width: 0;
    }

    .faq-grid {
        gap: 20px;
    }

    .faq-item summary {
        padding: 18px 46px 18px 17px;
        font-size: .94rem;
    }

    .faq-item p {
        padding: 0 17px 18px;
        font-size: .86rem;
    }
}
