/* Top salons curated ranking pages (/top, /top/{slug}) — design_handoff_top_salons */

.tl-body {
    margin: 0;
    font-family: 'DM Sans', sans-serif;
    background: #f7f4f0;
    color: #2b2422;
    -webkit-font-smoothing: antialiased;
}

.tl-body a {
    color: #e50050;
    text-decoration: none;
}

.tl-body a:hover {
    color: #c20043;
}

.tl-serif {
    font-family: 'Cormorant Garamond', Georgia, serif;
}

.tl-page {
    min-height: 100vh;
    padding-bottom: 80px;
}

.tl-wrap {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Header + hero */
.tl-hero {
    background: linear-gradient(180deg, #fdeef3, #f7f4f0);
    padding-bottom: 20px;
}

.tl-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 26px;
}

.tl-header__logo {
    height: 30px;
}

.tl-nav {
    display: flex;
    gap: 28px;
    font-size: 14px;
    font-weight: 600;
}

.tl-nav a {
    color: #6f645d;
}

.tl-nav a.tl-nav__strong {
    color: #2b2422;
}

.tl-hero__inner {
    text-align: center;
    padding-top: 44px;
    padding-bottom: 8px;
}

.tl-breadcrumb {
    font-size: 13px;
    color: #a2968d;
}

.tl-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid #f2c9d8;
    border-radius: 30px;
    padding: 7px 16px;
    font-size: 12.5px;
    font-weight: 600;
    color: #c9004a;
    margin-top: 20px;
}

.tl-h1 {
    font-size: 56px;
    line-height: 1.02;
    font-weight: 600;
    margin: 18px 0 0;
    color: #2b2422;
}

.tl-subhead {
    font-size: 16px;
    line-height: 1.65;
    color: #6f645d;
    margin: 18px auto 0;
    max-width: 600px;
}

.tl-subhead strong {
    color: #2b2422;
}

.tl-stats {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 26px;
    flex-wrap: wrap;
}

.tl-stat {
    background: #fff;
    border: 1px solid #ece1d6;
    border-radius: 16px;
    padding: 12px 22px;
    text-align: center;
    min-width: 104px;
}

.tl-stat__num {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 30px;
    font-weight: 600;
}

.tl-stat__label {
    display: block;
    font-size: 12px;
    color: #a2968d;
}

.tl-stat--pink {
    background: #fff0f4;
    border-color: #f6d3df;
}

.tl-stat--pink .tl-stat__num {
    color: #e50050;
}

.tl-stat--pink .tl-stat__label {
    color: #c98aa0;
}

/* Grid */
.tl-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 36px;
    list-style: none;
    padding: 0;
}

/* Featured (bookable) card */
.tl-feat {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 24px;
    background: #fff;
    border: 1.5px solid #f2b9cd;
    border-radius: 24px;
    padding: 26px 30px;
    box-shadow: 0 18px 40px rgba(229, 0, 80, .1);
}

.tl-feat__tile {
    position: relative;
    width: 72px;
    height: 72px;
    border-radius: 18px;
    background: #e50050;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    font-weight: 700;
    flex: 0 0 auto;
}

.tl-feat__rank {
    position: absolute;
    top: -9px;
    left: -9px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #2b2422;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tl-feat__body {
    flex: 1;
    min-width: 0;
}

.tl-feat__eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .6px;
    color: #2e7d5b;
}

.tl-feat__name {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.05;
    margin: 3px 0 0;
    color: #2b2422;
}

.tl-feat__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 7px;
    font-size: 14px;
    color: #6f645d;
    flex-wrap: wrap;
}

.tl-feat__stars {
    color: #e08a00;
    font-weight: 700;
}

.tl-feat__cta {
    flex: 0 0 auto;
    display: inline-block;
    background: #e50050;
    color: #fff;
    border: none;
    border-radius: 14px;
    padding: 16px 30px;
    font-family: inherit;
    font-size: 15.5px;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
}

.tl-body a.tl-feat__cta {
    color: #fff;
}

.tl-feat__cta:hover {
    background: #c20043;
}

/* Coming-soon card */
.tl-card {
    background: #fff;
    border: 1px solid #ece1d6;
    border-radius: 20px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-height: 184px;
}

.tl-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tl-card__tile {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    color: #8a6f63;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
}

.tl-card__rank {
    font-size: 20px;
    font-weight: 700;
    color: #e5ddd4;
}

.tl-card__name {
    font-size: 23px;
    font-weight: 600;
    line-height: 1.1;
    margin: 0;
    color: #2b2422;
}

.tl-card__soon {
    font-size: 12.5px;
    color: #a2968d;
    margin-top: 4px;
    font-style: italic;
}

.tl-card__notify {
    margin-top: auto;
    background: #fff;
    color: #e50050;
    border: 1px solid #f2c9d8;
    border-radius: 12px;
    padding: 12px;
    font-family: inherit;
    font-size: 13.5px;
    font-weight: 700;
    cursor: pointer;
}

.tl-card__notify:hover {
    background: #fff0f4;
}

.tl-card__notify.is-active {
    background: #e8f8f0;
    color: #2e7d5b;
    border-color: #bfe6d3;
}

/* Methodology strip */
.tl-method {
    margin-top: 40px;
    background: #fff;
    border: 1px solid #ece1d6;
    border-radius: 22px;
    padding: 30px 34px;
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
}

.tl-method__text {
    flex: 1;
    min-width: 240px;
}

.tl-method__title {
    font-size: 26px;
    font-weight: 600;
    margin: 0;
    color: #2b2422;
}

.tl-method__desc {
    font-size: 14.5px;
    line-height: 1.65;
    color: #6f645d;
    margin: 8px 0 0;
}

.tl-method__date {
    font-size: 12px;
    color: #a2968d;
    margin: 10px 0 0;
}

.tl-method__stats {
    display: flex;
    gap: 22px;
}

.tl-method__stat {
    text-align: center;
}

.tl-method__stat-num {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 34px;
    font-weight: 600;
    color: #e50050;
}

.tl-method__stat-label {
    font-size: 12px;
    color: #a2968d;
    max-width: 88px;
}

/* Footer */
.tl-footer {
    margin-top: 44px;
    text-align: center;
    color: #a2968d;
    font-size: 13px;
}

.tl-footer__logo {
    height: 22px;
    opacity: .55;
    margin-bottom: 10px;
}

/* Index hub cards (same visual language) */
.tl-hub-section {
    margin-top: 36px;
}

.tl-hub-section__title {
    font-size: 28px;
    font-weight: 600;
    margin: 0 0 14px;
    color: #2b2422;
}

.tl-hub-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0 0 8px;
}

.tl-hub-card {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: #fff;
    border: 1px solid #ece1d6;
    border-radius: 20px;
    padding: 20px 22px;
}

.tl-body a.tl-hub-card {
    color: #2b2422;
}

.tl-hub-card:hover {
    border-color: #f2b9cd;
}

.tl-hub-card__title {
    font-size: 21px;
    font-weight: 600;
    line-height: 1.15;
}

.tl-hub-card__meta {
    font-size: 12.5px;
    color: #a2968d;
}

/* Responsive */
@media (max-width: 900px) {
    .tl-grid,
    .tl-hub-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tl-h1 {
        font-size: 44px;
    }
}

@media (max-width: 600px) {
    .tl-wrap {
        padding: 0 18px;
    }

    .tl-grid,
    .tl-hub-grid {
        grid-template-columns: 1fr;
    }

    .tl-h1 {
        font-size: 34px;
    }

    .tl-nav {
        display: none;
    }

    .tl-feat {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    .tl-feat__cta {
        width: 100%;
    }
}
