/**
 * 화동2571 메인 랜딩 v2 — "레이크사이드 에스테이트"
 * 딥 포레스트 + 아이보리 + 골드, 세리프 디스플레이, 풀블리드 섹션
 */

.hd2-page {
    --hd2-forest: #17301f;
    --hd2-forest-deep: #10231680;
    --hd2-pine: #21402c;
    --hd2-ivory: #f7f4ec;
    --hd2-white: #fdfcf9;
    --hd2-ink: #1d211c;
    --hd2-muted: #6f7369;
    --hd2-gold: #c5a468;
    --hd2-gold-soft: rgba(197, 164, 104, 0.35);
    --hd2-line: rgba(29, 33, 28, 0.14);
    --hd2-serif: 'Noto Serif KR', 'Nanum Myeongjo', serif;
    --hd2-sans: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;

    font-family: var(--hd2-sans);
    background: var(--hd2-ivory);
    color: var(--hd2-ink);
    line-height: 1.7;
    overflow-x: hidden;
}

.hd2-page * { box-sizing: border-box; }

.hd2-wide {
    max-width: 1560px;
    margin: 0 auto;
    padding: 0 48px;
}

.hd2-section { padding: 130px 0; }

/* 공통 라벨/타이틀 */
.hd2-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.34em;
    text-transform: uppercase;
    color: var(--hd2-muted);
    margin-bottom: 20px;
}
.hd2-label::before {
    content: '';
    width: 34px;
    height: 1px;
    background: var(--hd2-gold);
}
.hd2-label-gold { color: var(--hd2-gold); }

.hd2-title {
    font-family: var(--hd2-serif);
    font-weight: 700;
    color: var(--hd2-ink);
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.28;
    letter-spacing: -0.01em;
    margin: 0 0 18px;
    word-break: keep-all;
}

.hd2-gold-rule {
    display: block;
    width: 56px;
    height: 2px;
    background: var(--hd2-gold);
    margin: 26px 0 30px;
}
.hd2-gold-rule-center { margin-left: auto; margin-right: auto; }

.hd2-sec-head { margin-bottom: 64px; text-align: center; }
.hd2-sec-head .hd2-label { justify-content: center; }
.hd2-sec-head .hd2-label::after {
    content: '';
    width: 34px;
    height: 1px;
    background: var(--hd2-gold);
}
.hd2-desc {
    margin: 0;
    color: var(--hd2-muted);
    font-size: 16.5px;
}

/* 공통 버튼 */
.hd2-page .hd2-btn {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 17px 42px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-decoration: none !important;
    border: 1px solid transparent;
    border-radius: 0;
    box-shadow: none;
    transition: background 0.4s ease, color 0.4s ease, border-color 0.4s ease, transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.4s ease;
}
.hd2-page .hd2-btn:hover { transform: translateY(-3px); }
.hd2-page .hd2-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -80%;
    width: 55%;
    height: 100%;
    background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.45), transparent);
    transform: skewX(-18deg);
    transition: left 0.65s cubic-bezier(0.23, 1, 0.32, 1);
    pointer-events: none;
}
.hd2-page .hd2-btn:hover::before { left: 125%; }
.hd2-page .hd2-btn-gold {
    background: linear-gradient(135deg, #d3b276 0%, var(--hd2-gold) 55%, #b5945a 100%);
    color: #241d0f;
    border-color: rgba(255, 255, 255, 0.35);
    box-shadow: 0 12px 30px rgba(20, 30, 20, 0.35);
}
.hd2-page .hd2-btn-gold:hover {
    background: linear-gradient(135deg, #e0c288 0%, #d0b072 55%, #c5a468 100%);
    border-color: rgba(255, 255, 255, 0.55);
    color: #241d0f;
    box-shadow: 0 18px 44px rgba(197, 164, 104, 0.45);
}
.hd2-page .hd2-btn-ghost {
    background: rgba(255, 255, 255, 0.07);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.hd2-page .hd2-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: #fff;
    color: #fff;
}
.hd2-hero-buttons .hd2-btn::after {
    content: '\2192';
    font-size: 15px;
    transition: transform 0.35s ease;
}
.hd2-hero-buttons .hd2-btn:hover::after { transform: translateX(5px); }
.hd2-btn-line {
    background: transparent;
    color: var(--hd2-ink);
    border-color: rgba(29, 33, 28, 0.35);
}
.hd2-btn-line:hover {
    background: var(--hd2-forest);
    border-color: var(--hd2-forest);
    color: var(--hd2-ivory);
}

/* 스크롤 등장 */
.hd2-page [data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.23, 1, 0.32, 1);
}
.hd2-page [data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   히어로 (풀 뷰포트 슬라이더)
======================================== */
.hd2-hero {
    position: relative;
    height: 100vh;
    min-height: 640px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--hd2-forest);
    overflow: hidden;
}

.hd2-hero-slider,
.hwadong-hero-slider {
    position: absolute;
    inset: 0;
}
.hwadong-hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease;
}
.hwadong-hero-slide.active {
    opacity: 1;
    animation: hd2KenBurns calc(var(--hero-duration, 5s) + 2s) ease-out forwards;
}
.hwadong-hero-slide.fade-out {
    opacity: 0;
    transform: scale(1.08);
}
@keyframes hd2KenBurns {
    from { transform: scale(1); }
    to { transform: scale(1.08); }
}

.hd2-hero::before,
.hd2-hero::after {
    content: '';
    position: absolute;
    z-index: 1;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(60px);
}
.hd2-hero::before {
    width: 460px;
    height: 460px;
    top: 8%;
    left: -140px;
    background: radial-gradient(circle, rgba(197, 164, 104, 0.28) 0%, transparent 70%);
    animation: hd2OrbDrift 13s ease-in-out infinite;
}
.hd2-hero::after {
    width: 380px;
    height: 380px;
    bottom: 4%;
    right: -110px;
    background: radial-gradient(circle, rgba(247, 244, 236, 0.2) 0%, transparent 70%);
    animation: hd2OrbDrift 17s ease-in-out infinite reverse;
}
@keyframes hd2OrbDrift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(46px, -36px) scale(1.12); }
}

.hd2-hero-eyebrow {
    position: relative;
    display: inline-block;
    padding: 0 68px;
}
.hd2-hero-eyebrow::before,
.hd2-hero-eyebrow::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 46px;
    height: 1px;
    background: var(--hd2-gold);
    transform: scaleX(0);
    animation: hd2RuleGrow 1.1s cubic-bezier(0.23, 1, 0.32, 1) 0.9s forwards;
}
.hd2-hero-eyebrow::before { left: 0; transform-origin: left center; }
.hd2-hero-eyebrow::after { right: 0; transform-origin: right center; }
@keyframes hd2RuleGrow { to { transform: scaleX(1); } }

.hd2-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(13, 24, 16, 0.42) 0%, rgba(13, 24, 16, 0.24) 45%, rgba(13, 24, 16, 0.62) 100%);
}

.hd2-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 24px;
    color: #fff;
}
.hd2-hero-eyebrow {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.42em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 18px;
}
.hd2-hero-rule {
    display: block;
    width: 1px;
    height: 44px;
    margin: 0 auto 26px;
    background: linear-gradient(180deg, var(--hd2-gold), transparent);
}
.hd2-hero-title {
    font-family: var(--hd2-serif);
    font-weight: 700;
    color: #fff;
    font-size: clamp(44px, 6.4vw, 92px);
    line-height: 1.16;
    letter-spacing: 0.01em;
    margin: 0;
    text-shadow: 0 10px 46px rgba(0, 0, 0, 0.4);
    word-break: keep-all;
}
.hd2-hero-subtitle {
    margin: 30px auto 0;
    max-width: 640px;
    font-size: clamp(16px, 1.6vw, 19px);
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.92);
    word-break: keep-all;
}
.hd2-hero-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 44px;
    flex-wrap: wrap;
}

@keyframes hd2RiseIn {
    from { opacity: 0; transform: translateY(34px); }
    to { opacity: 1; transform: translateY(0); }
}
.hd2-rise { opacity: 0; animation: hd2RiseIn 1.1s cubic-bezier(0.23, 1, 0.32, 1) forwards; }
.hd2-rise-1 { animation-delay: 0.2s; }
.hd2-rise-2 { animation-delay: 0.45s; }
.hd2-rise-3 { animation-delay: 0.75s; }
.hd2-rise-4 { animation-delay: 1.05s; }

.hd2-hero-scroll {
    position: absolute;
    bottom: 34px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 11px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
}
.hd2-hero-scroll-line {
    width: 1px;
    height: 46px;
    background: rgba(255, 255, 255, 0.35);
    position: relative;
    overflow: hidden;
}
.hd2-hero-scroll-line::after {
    content: '';
    position: absolute;
    top: -46px;
    left: 0;
    width: 100%;
    height: 46px;
    background: var(--hd2-gold);
    animation: hd2ScrollDrop 2.2s ease-in-out infinite;
}
@keyframes hd2ScrollDrop {
    0% { top: -46px; }
    55%, 100% { top: 46px; }
}

/* ========================================
   ABOUT (하프블리드 이미지)
======================================== */
.hd2-about {
    background: var(--hd2-ivory);
    padding: 150px 0;
}
.hd2-about-grid {
    display: grid;
    grid-template-columns: minmax(0, 11fr) minmax(0, 9fr);
    gap: 96px;
    align-items: center;
    max-width: 1720px;
    margin: 0 auto;
    padding-right: 48px;
}
.hd2-about-media {
    overflow: hidden;
    position: relative;
}
.hd2-about-media::after {
    content: '';
    position: absolute;
    inset: 22px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    pointer-events: none;
}
.hd2-about-media img {
    width: 100%;
    height: clamp(420px, 44vw, 640px);
    object-fit: cover;
    display: block;
    transition: transform 1.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.hd2-about-media:hover img { transform: scale(1.045); }
.hd2-about-text p {
    margin: 0 0 18px;
    font-size: 17px;
    color: #43473f;
    word-break: keep-all;
}
.hd2-about-text p:first-child {
    font-family: var(--hd2-serif);
    font-size: 21px;
    line-height: 1.75;
    color: var(--hd2-ink);
}
.hd2-about-text p:last-child { margin-bottom: 0; }

/* ========================================
   BRANDS (딥 포레스트, 교차 풀블리드)
======================================== */
.hd2-brands {
    background: var(--hd2-forest);
    color: var(--hd2-ivory);
    padding: 140px 0 0;
}
.hd2-brands .hd2-title { color: var(--hd2-ivory); }
.hd2-brands .hd2-desc { color: rgba(247, 244, 236, 0.65); }
.hd2-brands .hd2-label { color: var(--hd2-gold); }

.hd2-brand-rows { margin-top: 20px; }
.hd2-brand-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: stretch;
}
.hd2-brand-row.hd2-rev .hd2-brand-media { order: 2; }
.hd2-brand-row.hd2-rev .hd2-brand-copy { order: 1; }

.hd2-brand-media {
    overflow: hidden;
    position: relative;
    min-height: 420px;
}
.hd2-brand-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.hd2-brand-row:hover .hd2-brand-media img { transform: scale(1.06); }
.hd2-brand-placeholder {
    position: absolute;
    inset: 0;
    background: var(--hd2-pine);
}

.hd2-brand-copy {
    padding: clamp(48px, 6vw, 110px) clamp(36px, 6vw, 120px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-top: 1px solid rgba(247, 244, 236, 0.1);
}
.hd2-brand-no {
    font-family: var(--hd2-serif);
    font-size: 15px;
    letter-spacing: 0.3em;
    color: var(--hd2-gold);
    margin-bottom: 14px;
}
.hd2-brand-no::after { content: ' —'; }
.hd2-brand-name {
    font-family: var(--hd2-serif);
    font-weight: 700;
    font-size: clamp(28px, 2.6vw, 40px);
    margin: 0;
    color: var(--hd2-ivory);
    line-height: 1.3;
}
.hd2-brand-copy .hd2-gold-rule { margin: 22px 0 24px; }
.hd2-brand-desc {
    margin: 0 0 34px;
    font-size: 16.5px;
    line-height: 1.85;
    color: rgba(247, 244, 236, 0.78);
    word-break: keep-all;
    max-width: 520px;
}
.hd2-brand-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.hd2-brand-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--hd2-ivory);
    text-decoration: none;
    border: 1px solid rgba(247, 244, 236, 0.35);
    transition: background 0.35s ease, color 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
}
.hd2-brand-btn:hover {
    background: var(--hd2-gold);
    border-color: var(--hd2-gold);
    color: #211c10;
    transform: translateY(-2px);
}
.hd2-brand-btn svg { transition: transform 0.3s ease; }
.hd2-brand-btn:hover svg { transform: translate(2px, -2px); }

/* ========================================
   SPACE (풀블리드 모자이크 + 라이트박스)
======================================== */
.hd2-space {
    background: var(--hd2-ivory);
    padding-bottom: 0;
}
.hd2-space-mosaic {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: clamp(180px, 21vw, 340px);
    gap: 6px;
    width: 100%;
}
.hd2-space-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.hd2-space-item:nth-child(1) { grid-column: span 4; grid-row: span 2; }
.hd2-space-item:nth-child(2) { grid-column: span 2; }
.hd2-space-item:nth-child(3) { grid-column: span 2; }
.hd2-space-item:nth-child(4) { grid-column: span 3; }
.hd2-space-item:nth-child(5) { grid-column: span 3; }
.hd2-space-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1.3s cubic-bezier(0.23, 1, 0.32, 1);
}
.hd2-space-item:hover img { transform: scale(1.06); }
.hd2-space-veil {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(13, 24, 16, 0.62) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}
.hd2-space-item:hover .hd2-space-veil { opacity: 1; }
.hd2-space-caption {
    position: absolute;
    left: 26px;
    bottom: 22px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.04em;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    z-index: 2;
}
.hd2-space-item:hover .hd2-space-caption { opacity: 1; transform: translateY(0); }
.hd2-space-zoom {
    position: absolute;
    right: 22px;
    bottom: 18px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(247, 244, 236, 0.92);
    color: var(--hd2-forest);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.7);
    transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 2;
}
.hd2-space-item:hover .hd2-space-zoom { opacity: 1; transform: scale(1); }

/* ========================================
   NEWS & EVENTS
======================================== */
.hd2-news { background: var(--hd2-white); }
.hd2-news .hd2-wide { max-width: 1200px; }

.hd2-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 56px;
    border-bottom: 1px solid var(--hd2-line);
}
.hd2-page .hd2-tab-btn {
    appearance: none;
    background: transparent !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    padding: 14px 30px;
    font-family: var(--hd2-sans);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--hd2-muted);
    cursor: pointer;
    transition: color 0.3s ease, border-color 0.3s ease;
}
.hd2-page .hd2-tab-btn:hover { background: transparent; color: var(--hd2-ink); }
.hd2-tab-btn.active {
    color: var(--hd2-ink);
    border-bottom-color: var(--hd2-gold);
}

.hd2-tab-content { display: none; }
.hd2-tab-content.active { display: block; }

.hd2-notice-list { border-top: 1px solid var(--hd2-line); }
.hd2-notice-item {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr) 100px 40px;
    align-items: center;
    gap: 24px;
    padding: 26px 10px;
    border-bottom: 1px solid var(--hd2-line);
    text-decoration: none;
    color: var(--hd2-ink);
    transition: background 0.3s ease, padding 0.3s ease;
}
.hd2-notice-item:hover { background: rgba(197, 164, 104, 0.07); padding-left: 20px; }
.hd2-notice-cat {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--hd2-gold);
    border: 1px solid var(--hd2-gold-soft);
    padding: 6px 10px;
    text-align: center;
    white-space: nowrap;
}
.hd2-notice-title {
    font-size: 17px;
    font-weight: 600;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.hd2-notice-date { font-size: 14px; color: var(--hd2-muted); text-align: right; }
.hd2-notice-arrow {
    font-size: 18px;
    color: var(--hd2-gold);
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.hd2-notice-item:hover .hd2-notice-arrow { opacity: 1; transform: translateX(0); }

.hd2-event-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}
.hd2-event-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 38px 34px 34px;
    background: var(--hd2-ivory);
    border: 1px solid var(--hd2-line);
    text-decoration: none;
    color: var(--hd2-ink);
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}
.hd2-event-card:hover {
    transform: translateY(-6px);
    border-color: var(--hd2-gold-soft);
    box-shadow: 0 24px 48px rgba(29, 33, 28, 0.1);
    color: var(--hd2-ink);
}
.hd2-event-date {
    font-size: 13px;
    letter-spacing: 0.08em;
    color: var(--hd2-gold);
    margin-bottom: 14px;
}
.hd2-event-title {
    font-family: var(--hd2-serif);
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 12px;
    line-height: 1.45;
}
.hd2-event-excerpt {
    font-size: 14.5px;
    color: var(--hd2-muted);
    margin: 0 0 22px;
}
.hd2-event-arrow {
    margin-top: auto;
    color: var(--hd2-gold);
    transition: transform 0.3s ease;
}
.hd2-event-card:hover .hd2-event-arrow { transform: translateX(6px); }

.hd2-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}
.hd2-blog-card { display: flex; flex-direction: column; }
.hd2-blog-thumb {
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: var(--hd2-ivory);
}
.hd2-blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1.1s cubic-bezier(0.23, 1, 0.32, 1);
}
.hd2-blog-card:hover .hd2-blog-thumb img { transform: scale(1.05); }
.hd2-blog-thumb-ph { width: 100%; height: 100%; background: var(--hd2-ivory); }
.hd2-blog-info { padding: 20px 4px 0; }
.hd2-blog-date { font-size: 13px; color: var(--hd2-gold); letter-spacing: 0.08em; }
.hd2-blog-title { margin: 8px 0 8px; font-size: 18px; font-weight: 700; line-height: 1.5; }
.hd2-blog-title a { color: var(--hd2-ink); text-decoration: none; transition: color 0.3s ease; }
.hd2-blog-title a:hover { color: var(--hd2-gold); }
.hd2-blog-excerpt { margin: 0; font-size: 14.5px; color: var(--hd2-muted); }

.hd2-more { text-align: center; margin-top: 48px; }

/* ========================================
   HOURS & CONTACT (스플릿 밴드)
======================================== */
.hd2-hours { padding: 0; }
.hd2-hours-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}
.hd2-hours-left,
.hd2-hours-right {
    padding: clamp(72px, 8vw, 130px) clamp(36px, 7vw, 140px);
}
.hd2-hours-left { background: var(--hd2-ivory); }
.hd2-hours-right {
    background: var(--hd2-forest);
    color: var(--hd2-ivory);
}
.hd2-hours-text { font-size: 16.5px; color: #43473f; }
.hd2-hours-text p { margin: 0 0 12px; }
.hd2-contact-list {
    display: flex;
    flex-direction: column;
    margin-top: 18px;
}
.hd2-contact-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px 4px;
    border-bottom: 1px solid rgba(247, 244, 236, 0.16);
    color: var(--hd2-ivory);
    text-decoration: none;
    transition: padding 0.35s ease, color 0.35s ease;
}
.hd2-contact-item:first-child { border-top: 1px solid rgba(247, 244, 236, 0.16); }
.hd2-contact-item:hover { padding-left: 16px; color: var(--hd2-gold); }
.hd2-contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(247, 244, 236, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--hd2-gold);
    transition: border-color 0.35s ease, background 0.35s ease;
}
.hd2-contact-item:hover .hd2-contact-icon {
    border-color: var(--hd2-gold);
    background: rgba(197, 164, 104, 0.12);
}
.hd2-contact-text { font-size: 17px; font-weight: 600; flex: 1; }
.hd2-contact-arrow {
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity 0.35s ease, transform 0.35s ease;
    color: var(--hd2-gold);
}
.hd2-contact-item:hover .hd2-contact-arrow { opacity: 1; transform: translateX(0); }

/* ========================================
   LOCATION
======================================== */
.hd2-location { background: var(--hd2-white); }
.hd2-location-grid {
    display: grid;
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    gap: 72px;
    align-items: start;
}
.hd2-location-item { margin-bottom: 30px; }
.hd2-location-label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--hd2-gold);
    margin: 0 0 10px;
}
.hd2-location-item p,
.hd2-location-text {
    margin: 0;
    font-size: 16px;
    color: #43473f;
}
.hd2-location-text p { margin: 0 0 8px; }
.hd2-map-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 38px;
}
.hd2-map-container {
    width: 100% !important;
    max-width: 100% !important;
    border: 1px solid var(--hd2-line);
    box-shadow: 0 30px 60px rgba(29, 33, 28, 0.12);
    overflow: hidden;
    min-height: 400px;
    background: #fff;
}
.hd2-map-container .root_daum_roughmap,
.hd2-map-container .root_daum_roughmap_landing {
    width: 100% !important;
    max-width: 100% !important;
}
.hd2-map-container .root_daum_roughmap .wrap_map,
.hd2-map-container .root_daum_roughmap .wrap_controllers {
    width: 100% !important;
    max-width: 100% !important;
}
.hd2-map-container .root_daum_roughmap .wrap_btn_zoom { right: 10px !important; }
.hd2-map-container .root_daum_roughmap .btn_call { display: none !important; }

/* ========================================
   피날레
======================================== */
.hd2-finale {
    background: var(--hd2-forest);
    color: var(--hd2-ivory);
    padding: 150px 0 140px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hd2-finale::before {
    content: '';
    position: absolute;
    top: -240px;
    left: 50%;
    transform: translateX(-50%);
    width: 720px;
    height: 720px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(197, 164, 104, 0.14) 0%, transparent 65%);
    pointer-events: none;
}
.hd2-finale-inner { position: relative; padding: 0 24px; }
.hd2-finale-eyebrow {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--hd2-gold);
    margin-bottom: 30px;
}
.hd2-finale-title {
    font-family: var(--hd2-serif);
    font-weight: 900;
    font-size: clamp(56px, 9vw, 132px);
    line-height: 1.1;
    margin: 0;
    color: var(--hd2-ivory);
}
.hd2-finale-logo {
    max-width: min(420px, 70vw);
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}
.hd2-finale .hd2-gold-rule-center { margin-top: 40px; margin-bottom: 30px; }
.hd2-finale-tagline {
    margin: 0;
    font-size: 17px;
    color: rgba(247, 244, 236, 0.75);
    letter-spacing: 0.06em;
}

/* ========================================
   갤러리 모달
======================================== */
.hwadong-gallery-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(13, 20, 14, 0.94);
    z-index: 100000;
    align-items: center;
    justify-content: center;
}
.hwadong-gallery-modal.active { display: flex; }
.hwadong-gallery-modal-content {
    position: relative;
    max-width: 92vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hwadong-gallery-modal-image {
    max-width: 92vw;
    max-height: 78vh;
    object-fit: contain;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
}
.hwadong-gallery-modal-caption {
    color: rgba(247, 244, 236, 0.85);
    font-size: 15px;
    letter-spacing: 0.04em;
    margin: 20px 0 0;
    text-align: center;
}
.hwadong-gallery-modal-close {
    position: fixed;
    top: 28px;
    right: 32px;
    background: transparent;
    border: 1px solid rgba(247, 244, 236, 0.4);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    color: #f7f4ec;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, transform 0.3s ease;
    z-index: 2;
}
.hwadong-gallery-modal-close:hover { background: rgba(247, 244, 236, 0.15); transform: rotate(90deg); }
.hwadong-gallery-modal-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: rgba(247, 244, 236, 0.75);
    cursor: pointer;
    padding: 16px;
    transition: color 0.3s ease, transform 0.3s ease;
    z-index: 2;
}
.hwadong-gallery-modal-nav:hover { color: var(--hd2-gold); }
.hwadong-gallery-modal-prev { left: 22px; }
.hwadong-gallery-modal-next { right: 22px; }

@media (max-height: 760px) {
    .hd2-hero {
        height: auto;
        min-height: 100vh;
        padding: 96px 0 120px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hd2-rise { animation: none; opacity: 1; }
    .hwadong-hero-slide.active { animation: none; }
    .hd2-hero-scroll-line::after { animation: none; }
    .hd2-hero::before, .hd2-hero::after { animation: none; }
    .hd2-hero-eyebrow::before, .hd2-hero-eyebrow::after { animation: none; transform: scaleX(1); }
}

/* ========================================
   반응형
======================================== */
@media (max-width: 1180px) {
    .hd2-about-grid { gap: 56px; }
    .hd2-notice-item { grid-template-columns: 100px minmax(0, 1fr) 90px; }
    .hd2-notice-arrow { display: none; }
}

@media (max-width: 1024px) {
    .hd2-section { padding: 96px 0; }
    .hd2-wide { padding: 0 32px; }
    .hd2-about { padding: 100px 0; }
    .hd2-about-grid {
        grid-template-columns: 1fr;
        gap: 44px;
        padding: 0 32px;
    }
    .hd2-about-media img { height: clamp(300px, 52vw, 480px); }
    .hd2-brand-row { grid-template-columns: 1fr; }
    .hd2-brand-row.hd2-rev .hd2-brand-media { order: 1; }
    .hd2-brand-row.hd2-rev .hd2-brand-copy { order: 2; }
    .hd2-brand-media { min-height: 320px; }
    .hd2-space-mosaic { grid-auto-rows: clamp(150px, 24vw, 260px); }
    .hd2-hours-grid { grid-template-columns: 1fr; }
    .hd2-location-grid { grid-template-columns: 1fr; gap: 44px; }
    .hd2-event-cards { grid-template-columns: 1fr; }
    .hd2-blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 768px) {
    .hd2-section { padding: 72px 0; }
    .hd2-wide { padding: 0 20px; }
    .hd2-sec-head { margin-bottom: 40px; }
    .hd2-hero {
        height: auto;
        min-height: 100vh;
        padding: 84px 0 112px;
    }
    .hd2-hero-scroll { bottom: 26px; }
    .hd2-hero-eyebrow { font-size: 11px; letter-spacing: 0.3em; padding: 0; }
    .hd2-hero-eyebrow::before, .hd2-hero-eyebrow::after { display: none; }
    .hd2-hero-buttons { flex-direction: column; align-items: center; }
    .hd2-hero-buttons .hd2-btn { width: min(300px, 80vw); }
    .hd2-about { padding: 72px 0; }
    .hd2-about-grid { padding: 0 20px; }
    .hd2-space-mosaic {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: clamp(150px, 34vw, 220px);
        gap: 4px;
    }
    .hd2-space-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
    .hd2-space-item:nth-child(2),
    .hd2-space-item:nth-child(3) { grid-column: span 1; }
    .hd2-space-item:nth-child(4),
    .hd2-space-item:nth-child(5) { grid-column: span 1; }
    .hd2-space-caption { opacity: 1; transform: none; left: 16px; bottom: 14px; font-size: 13px; text-shadow: 0 2px 10px rgba(0,0,0,0.6); }
    .hd2-tabs { gap: 0; }
    .hd2-tab-btn { padding: 12px 18px; font-size: 15px; }
    .hd2-notice-item {
        grid-template-columns: minmax(0, 1fr) 84px;
        gap: 10px;
        padding: 20px 4px;
    }
    .hd2-notice-cat { display: none; }
    .hd2-notice-title { white-space: normal; font-size: 15.5px; }
    .hd2-blog-grid { grid-template-columns: 1fr; }
    .hd2-map-container { min-height: 320px; }
    .hd2-finale { padding: 96px 0 88px; }
}
