.home-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: calc(100vh - 235px);
    padding:
        clamp(64px, 9vh, 96px)
        0
        58px;
    text-align: center;
}

.home-title-group {
    width: 100%;
}

.home-eyebrow {
    margin: 0 0 9px;
    color: var(--accent);
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.22em;
}

.home-title {
    margin: 0;
    font-size: clamp(3rem, 9vw, 5.5rem);
    font-weight: 900;
    letter-spacing: -0.09em;
    line-height: 1;
}

.home-title span {
    color: var(--accent);
}

.home-description {
    margin: 19px 0 0;
    color: var(--text-secondary);
    font-size: clamp(0.93rem, 2vw, 1.06rem);
}

.shortcut-grid {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(92px, 112px));
    justify-content: center;
    gap: clamp(24px, 5vw, 46px);
    margin-top: 48px;
}

.shortcut-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 0;
    padding: 6px 4px;
    border-radius: 22px;
    outline: none;
}

.shortcut-item:focus-visible {
    box-shadow:
        0 0 0 3px var(--page-background),
        0 0 0 6px var(--accent);
}

.shortcut-icon {
    display: grid;
    place-items: center;
    width: 76px;
    height: 76px;
    border-radius: 24px;
    box-shadow:
        0 6px 18px rgba(0, 0, 0, 0.08);
    transition:
        transform 170ms ease,
        box-shadow 170ms ease,
        filter 170ms ease;
}

.shortcut-item:hover .shortcut-icon {
    transform:
        translateY(-5px)
        scale(1.045);
    box-shadow:
        0 11px 25px rgba(0, 0, 0, 0.13);
}

.shortcut-icon svg {
    width: 43px;
    height: 43px;
    fill: none;
    stroke: currentColor;
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.shortcut-icon-air {
    color: #1376e8;
    background: #e5f1ff;
}

.shortcut-icon-airport {
    color: #6057d9;
    background: #ece9ff;
}

.shortcut-icon-airport svg {
    fill: currentColor;
    stroke: none;
}

.shortcut-icon-more {
    color: var(--text-tertiary);
    background: var(--surface-soft);
    box-shadow: none;
}

.shortcut-name {
    margin-top: 13px;
    color: var(--text-primary);
    font-size: 0.94rem;
    font-weight: 800;
    letter-spacing: -0.035em;
    white-space: nowrap;
}

.shortcut-status {
    margin-top: 3px;
    color: var(--text-tertiary);
    font-size: 0.65rem;
    font-weight: 600;
}

.shortcut-item-muted {
    opacity: 0.64;
}

.shortcut-item-muted:hover {
    opacity: 0.86;
}

.shortcut-item-muted:hover .shortcut-icon {
    box-shadow: none;
}

html[data-theme="dark"] .shortcut-icon-air {
    color: #70b4ff;
    background: rgba(54, 135, 255, 0.18);
}

html[data-theme="dark"] .shortcut-icon-airport {
    color: #aaa3ff;
    background: rgba(130, 117, 255, 0.19);
}

html[data-theme="dark"] .shortcut-icon-more {
    color: var(--text-tertiary);
    background: var(--surface-soft);
}

html[data-theme="dark"] .shortcut-icon {
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.035);
}

html[data-theme="dark"]
.shortcut-item:hover
.shortcut-icon {
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.055),
        0 10px 24px rgba(0, 0, 0, 0.25);
}


/* 추가예정 페이지 */

.coming-soon {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: calc(100vh - 190px);
    padding: 110px 20px 80px;
    text-align: center;
}

.coming-soon-icon {
    display: grid;
    place-items: center;
    width: 86px;
    height: 86px;
    border-radius: 28px;
    color: var(--accent);
    background: var(--accent-soft);
    font-size: 2.4rem;
    font-weight: 300;
}

.coming-soon h1 {
    max-width: 600px;
    margin: 18px 0 0;
    font-size: clamp(1.8rem, 6vw, 3rem);
    letter-spacing: -0.06em;
}

.coming-soon > p:not(.page-eyebrow) {
    max-width: 500px;
    margin: 14px 0 0;
    color: var(--text-secondary);
}

.primary-link {
    margin-top: 30px;
    padding: 13px 20px;
    border-radius: 14px;
    color: #ffffff;
    background: var(--accent);
    font-size: 0.9rem;
    font-weight: 800;
}


/* 태블릿 */

@media (max-width: 700px) {
    .home-hero {
        min-height: calc(100vh - 190px);
        padding: 68px 0 46px;
    }

    .shortcut-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
        width: min(100%, 350px);
        gap: 13px;
        margin-top: 43px;
    }

    .shortcut-item {
        padding: 5px 2px;
    }

    .shortcut-icon {
        width: 64px;
        height: 64px;
        border-radius: 20px;
    }

    .shortcut-icon svg {
        width: 36px;
        height: 36px;
    }

    .shortcut-name {
        margin-top: 11px;
        font-size: 0.84rem;
    }

    .shortcut-status {
        font-size: 0.59rem;
    }

    .coming-soon {
        min-height: calc(100vh - 150px);
        padding: 80px 14px 60px;
    }
}


/* 작은 스마트폰 */

@media (max-width: 380px) {
    .home-hero {
        padding-top: 56px;
    }

    .home-description {
        font-size: 0.86rem;
    }

    .shortcut-grid {
        gap: 7px;
        margin-top: 38px;
    }

    .shortcut-icon {
        width: 58px;
        height: 58px;
        border-radius: 18px;
    }

    .shortcut-icon svg {
        width: 32px;
        height: 32px;
    }

    .shortcut-name {
        font-size: 0.78rem;
    }
}


/* 지금 울산 메인과 일출·몰 바로가기 */

.home-title .home-title-now {
    color: var(--brand-now);
}

.home-title .home-title-ulsan {
    margin-left: 0.1em;
    color: var(--brand-ulsan);
}

.shortcut-icon-lumi {
    color: #e78b00;
    background: #fff1cc;
}

.shortcut-lumi-moon {
    display: none;
    fill: currentColor;
    stroke: none;
}

.shortcut-item-muted {
    grid-column: 1;
}

html[data-theme="dark"] .shortcut-icon-lumi {
    color: #b6b0ff;
    background: rgba(120, 111, 255, 0.18);
}

html[data-theme="dark"] .shortcut-lumi-sun {
    display: none;
}

html[data-theme="dark"] .shortcut-lumi-moon {
    display: block;
}
