.tc-header {
    display: none;
}

.tc-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(18px);
    background: rgba(247, 251, 255, 0.92);
    border-bottom: 1px solid rgba(16, 36, 71, 0.08);
}

.tc-nav-inner {
    width: min(1240px, calc(100% - 40px));
    min-height: 86px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
}

.tc-nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.tc-nav-logo img {
    width: 188px;
    max-width: 42vw;
    height: auto;
    display: block;
    border-radius: 8px;
}

.tc-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.tc-nav-item {
    position: relative;
}

.tc-nav-link {
    display: block;
    padding: 10px 4px;
    color: #5f6881;
    text-decoration: none;
    font-size: 0.98rem;
    font-weight: 500;
    transition: color 0.22s ease;
    white-space: nowrap;
}

.tc-nav-link:hover,
.tc-nav-link:focus-visible {
    color: #102447;
}

.tc-nav-link.is-active,
.tc-nav-link[aria-current="page"] {
    color: #102447;
    font-weight: 700;
}

.tc-nav-link.is-active::after,
.tc-nav-link[aria-current="page"]::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    margin-top: 6px;
    border-radius: 999px;
    background: linear-gradient(90deg, #102447, #0fb6a6);
}

.tc-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    min-width: 220px;
    padding: 10px 0;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(16, 36, 71, 0.1);
    box-shadow: 0 20px 40px rgba(16, 36, 71, 0.14);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.tc-nav-item:hover .tc-dropdown,
.tc-nav-item:focus-within .tc-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.tc-dropdown a {
    display: block;
    padding: 10px 18px;
    color: #1a2340;
    text-decoration: none;
    font-size: 0.92rem;
    transition: background 0.2s ease, color 0.2s ease;
}

.tc-dropdown a:hover,
.tc-dropdown a:focus-visible {
    background: rgba(16, 36, 71, 0.05);
    color: #102447;
}

.tc-nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 132px;
    padding: 15px 24px;
    border-radius: 999px;
    background: linear-gradient(135deg, #102447 0%, #295d9c 100%);
    color: #ffffff;
    text-decoration: none;
    font-size: 0.98rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    white-space: nowrap;
    box-shadow: 0 16px 32px rgba(16, 36, 71, 0.24);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.tc-nav-cta:hover,
.tc-nav-cta:focus-visible {
    color: #ffffff;
    transform: translateY(-2px);
}

.tc-nav-cta.is-active,
.tc-nav-cta[aria-current="page"] {
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.38), 0 16px 30px rgba(18, 58, 122, 0.22);
}

.tc-hamburger {
    display: none;
    width: 50px;
    height: 50px;
    border-radius: 16px;
    border: 1px solid rgba(16, 36, 71, 0.14);
    background: rgba(255, 255, 255, 0.82);
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.tc-hamburger span {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: #102447;
    margin: 4px 0;
}

.hero {
    padding-top: clamp(28px, 4vw, 52px) !important;
    padding-bottom: clamp(30px, 4vw, 54px) !important;
}

.hero-copy,
.hero-stage,
.hero-panel,
.hero-visual {
    padding: clamp(20px, 2.5vw, 32px) !important;
}

.eyebrow,
.hero-badge {
    font-size: 0.82rem !important;
}

.eyebrow {
    padding: 8px 13px !important;
    margin-bottom: 16px !important;
}

.hero-copy h1 {
    font-size: clamp(1.72rem, 3.1vw, 2.82rem) !important;
    line-height: 1.01 !important;
    max-width: 12ch !important;
}

.hero-copy > p,
.hero-copy p,
.hero-subtitle {
    font-size: 1rem !important;
    line-height: 1.66 !important;
}

.section-head h2,
.band h2,
.cta-block h2,
.hours h2,
.cta-band h2,
.seo-section h2,
.category-title {
    font-size: clamp(1.34rem, 2.1vw, 1.95rem) !important;
    line-height: 1.08 !important;
}

.hero-actions,
.hero-tags {
    gap: 12px !important;
}

.hero-info {
    gap: 24px !important;
    font-size: 0.9rem !important;
}

@media (max-width: 900px) {
    .tc-nav-inner {
        width: min(1240px, calc(100% - 24px));
        min-height: 76px;
    }

    .tc-hamburger {
        display: inline-flex;
        margin-left: auto;
    }

    .tc-nav-list {
        position: absolute;
        top: calc(100% + 10px);
        left: 12px;
        right: 12px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        padding: 18px;
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.97);
        border: 1px solid rgba(16, 36, 71, 0.1);
        box-shadow: 0 20px 40px rgba(16, 36, 71, 0.14);
    }

    .tc-nav-list.active {
        display: flex;
    }

    .tc-nav-link {
        padding: 12px 0;
        color: #102447;
    }

    .tc-nav-link.is-active::after,
    .tc-nav-link[aria-current="page"]::after {
        width: 72px;
    }

    .tc-dropdown {
        display: none !important;
    }

    .tc-nav-cta {
        display: none;
    }

    .hero-copy,
    .hero-stage,
    .hero-panel,
    .hero-visual {
        padding: 22px !important;
    }
}

@media (max-width: 640px) {
    .hero {
        padding-top: 16px !important;
        padding-bottom: 28px !important;
    }

    .hero-copy h1 {
        font-size: 1.46rem !important;
        line-height: 1.04 !important;
    }

    .section-head h2,
    .band h2,
    .cta-block h2,
    .hours h2,
    .cta-band h2,
    .seo-section h2,
    .category-title {
        font-size: 1.28rem !important;
        line-height: 1.12 !important;
    }

    .hero-copy > p,
    .hero-copy p,
    .hero-subtitle {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
    }

    .eyebrow,
    .hero-badge {
        font-size: 0.76rem !important;
    }

    .hero-info {
        gap: 12px !important;
        font-size: 0.84rem !important;
    }
}
