.nav-links a.current {
    color: var(--saffron);
}

.nav-links a.current::after {
    transform: scaleX(1);
}


.contact-hero {
    padding: 140px 0 60px;
}

.contact-hero-crumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--ink-mute);
    margin-bottom: 36px;
}

.contact-hero-crumb a {
    color: var(--ink-soft);
    text-decoration: none;
    transition: color 0.2s;
}

.contact-hero-crumb a:hover { color: var(--saffron); }

.contact-hero-crumb .bc-sep {
    color: var(--ink-mute);
    opacity: 0.6;
}

.contact-hero-title {
    font-family: var(--display);
    font-weight: 300;
    font-size: clamp(60px, 10vw, 168px);
    line-height: 0.88;
    letter-spacing: -0.04em;
    margin-bottom: 36px;
}

.contact-hero-title .line {
    display: block;
    opacity: 0;
    transform: translateY(36px);
    animation: rise 1.1s var(--ease) forwards;
}

.contact-hero-title .line:nth-child(1) { animation-delay: 0.25s; }
.contact-hero-title .line:nth-child(2) {
    animation-delay: 0.4s;
    padding-left: 0.5em;
}

.contact-hero-title em {
    font-style: italic;
    color: var(--saffron);
}

.contact-hero-lede {
    font-family: var(--display);
    font-size: clamp(18px, 1.6vw, 22px);
    line-height: 1.5;
    color: var(--ink-soft);
    max-width: 56ch;
    padding-top: 28px;
    border-top: 1px solid var(--rule);
}


.lines {
    padding-top: 40px;
}

.line-list {
    list-style: none;
    border-top: 1px solid var(--rule);
}

.line-list li {
    border-bottom: 1px solid var(--rule);
}

.line-row {
    display: grid;
    grid-template-columns: 160px 1fr 56px;
    gap: 36px;
    align-items: center;
    padding: 32px 0;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: background 0.3s var(--ease), padding 0.3s var(--ease);
}

.line-row:hover {
    background: var(--bg-soft);
    padding-left: 24px;
    padding-right: 24px;
}

.line-label {
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink-mute);
    transition: color 0.3s;
    padding-top: 6px;
    align-self: start;
}

.line-row:hover .line-label { color: var(--terracotta); }

.line-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.line-addr {
    font-family: var(--display);
    font-style: italic;
    font-weight: 300;
    font-size: clamp(28px, 3.6vw, 48px);
    line-height: 1;
    letter-spacing: -0.025em;
    color: var(--ink);
    transition: color 0.3s, transform 0.4s var(--ease);
}

.line-row:hover .line-addr {
    color: var(--saffron);
    transform: translateX(6px);
}

.line-note {
    font-family: var(--display);
    font-size: 16px;
    line-height: 1.55;
    color: var(--ink-soft);
    max-width: 56ch;
}

.line-go {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--rule-strong);
    display: grid;
    place-items: center;
    color: var(--ink-soft);
    justify-self: end;
    transition: background 0.3s, border-color 0.3s, color 0.3s, transform 0.4s var(--ease);
}

.line-go svg {
    width: 14px;
    height: 14px;
}

.line-row:hover .line-go {
    background: var(--saffron);
    border-color: var(--saffron);
    color: var(--bg);
    transform: rotate(-45deg);
}


.room {
    border-top: 1px solid var(--rule);
}

.room-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.room-block .section-tag {
    margin-bottom: 28px;
}

.room-addr {
    font-family: var(--display);
    font-size: clamp(22px, 2.4vw, 32px);
    line-height: 1.35;
    letter-spacing: -0.015em;
    color: var(--ink);
    margin-bottom: 32px;
}

.room-meta {
    display: grid;
    gap: 16px;
    border-top: 1px solid var(--rule);
    padding-top: 24px;
}

.room-meta > div {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 20px;
    align-items: baseline;
}

.room-meta dt {
    font-family: var(--ui);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink-mute);
}

.room-meta dd {
    font-family: var(--display);
    font-size: 17px;
    line-height: 1.4;
    color: var(--ink-soft);
}


.social-list {
    list-style: none;
    border-top: 1px solid var(--rule);
}

.social-list li {
    border-bottom: 1px solid var(--rule);
}

.social-list a {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
    align-items: baseline;
    padding: 20px 0;
    text-decoration: none;
    color: var(--ink);
    transition: padding 0.3s var(--ease), color 0.3s;
}

.social-list a:hover {
    padding-left: 14px;
    color: var(--saffron);
}

.social-name {
    font-family: var(--display);
    font-style: italic;
    font-weight: 300;
    font-size: clamp(22px, 2.4vw, 30px);
    letter-spacing: -0.02em;
}

.social-handle {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-mute);
}


@media (max-width: 1024px) {
    .contact-hero { padding: 124px 0 48px; }
    .contact-hero-title { margin-bottom: 30px; }
    .contact-hero-lede { padding-top: 22px; }

    .line-row {
        grid-template-columns: 120px 1fr 44px;
        gap: 24px;
    }

    .line-addr { font-size: clamp(22px, 4vw, 32px); }

    .room-grid {
        grid-template-columns: 1fr;
        gap: 56px;
    }
}

@media (max-width: 600px) {
    .contact-hero { padding: 108px 0 40px; }
    .contact-hero-crumb { margin-bottom: 24px; }

    .line-row {
        grid-template-columns: 1fr 36px;
        gap: 16px;
        padding: 22px 0;
    }

    .line-row:hover {
        padding-left: 0;
        padding-right: 0;
    }

    .line-label {
        grid-column: 1 / -1;
        padding-top: 0;
        margin-bottom: 4px;
    }

    .line-go {
        width: 36px;
        height: 36px;
        align-self: center;
    }

    .room-addr { font-size: 22px; }

    .room-meta > div {
        grid-template-columns: 1fr;
        gap: 4px;
    }
}