.tt-drop {
    --tt-ink: #fffaf0;
    --tt-muted: #d8cfb8;
    --tt-deep: #0d120c;
    --tt-panel: rgba(15, 20, 14, 0.84);
    --tt-line: rgba(255, 250, 240, 0.15);
    --tt-gold: #ffd34e;
    --tt-green: #74d96f;
    --tt-copper: #d47746;
    --tt-pink: #f58aae;
    --tt-sky: #67c7ff;
    --tt-radius: 8px;
    color: var(--tt-ink);
    margin: -2rem -1rem 0;
    background:
        linear-gradient(180deg, rgba(13, 18, 12, 0.18), #0d120c 44%),
        radial-gradient(circle at 12% 4%, rgba(245, 138, 174, 0.16), transparent 28%),
        radial-gradient(circle at 78% 12%, rgba(116, 217, 111, 0.14), transparent 32%),
        #0d120c;
}

.tt-drop a {
    color: inherit;
}

.tt-frame {
    width: min(1280px, calc(100vw - 32px));
    margin: 0 auto;
}

.tt-hero {
    min-height: 680px;
    position: relative;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: #162513;
}

.tt-hero__image {
    position: absolute;
    inset: 0;
}

.tt-hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.tt-hero__image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(13, 18, 12, 0.94) 0%, rgba(13, 18, 12, 0.7) 48%, rgba(13, 18, 12, 0.14) 100%),
        linear-gradient(180deg, rgba(13, 18, 12, 0.04), #0d120c 94%);
}

.tt-hero__content {
    position: relative;
    z-index: 1;
    width: min(1180px, calc(100vw - 32px));
    margin: 0 auto;
    padding: 112px 0 44px;
}

.tt-eyebrow,
.tt-kicker {
    margin: 0;
    color: var(--tt-gold);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.tt-hero h1 {
    max-width: 760px;
    margin: 14px 0 0;
    font-size: 76px;
    line-height: 0.96;
    font-weight: 950;
    letter-spacing: 0;
}

.tt-hero__summary {
    max-width: 660px;
    margin: 22px 0 0;
    color: #f6ead2;
    font-size: 18px;
    line-height: 1.82;
}

.tt-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.tt-action,
.tt-card-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 14px;
    border-radius: var(--tt-radius);
    border: 1px solid var(--tt-line);
    color: var(--tt-ink);
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.tt-action:hover,
.tt-card-link:hover {
    transform: translateY(-1px);
    border-color: rgba(255, 211, 78, 0.62);
    background: rgba(255, 211, 78, 0.1);
}

.tt-action--primary {
    border-color: rgba(255, 211, 78, 0.78);
    color: #1b1303;
    background: linear-gradient(135deg, var(--tt-gold), var(--tt-green));
}

.tt-stat-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-top: 46px;
}

.tt-stat {
    min-height: 96px;
    padding: 14px;
    border-radius: var(--tt-radius);
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(13, 18, 12, 0.62);
    backdrop-filter: blur(10px);
}

.tt-stat span,
.tt-stat strong {
    display: block;
}

.tt-stat span {
    color: var(--tt-muted);
    font-size: 12px;
    font-weight: 800;
}

.tt-stat strong {
    margin-top: 9px;
    color: #fffce8;
    font-size: 22px;
    line-height: 1.12;
    font-weight: 950;
}

.tt-nav {
    position: sticky;
    top: 64px;
    z-index: 20;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(13, 18, 12, 0.88);
    backdrop-filter: blur(14px);
}

.tt-nav__inner {
    width: min(1280px, calc(100vw - 32px));
    margin: 0 auto;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
    padding: 10px 0;
}

.tt-nav__inner::-webkit-scrollbar {
    display: none;
}

.tt-nav a {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 12px;
    border-radius: var(--tt-radius);
    color: var(--tt-muted);
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
    transition: background 0.18s ease, color 0.18s ease;
}

.tt-nav a:hover,
.tt-nav a.is-active {
    color: #16120a;
    background: var(--tt-gold);
}

.tt-section {
    padding: 56px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.tt-section--gold {
    background: linear-gradient(180deg, rgba(255, 211, 78, 0.12), rgba(13, 18, 12, 0));
}

.tt-section--copper {
    background: linear-gradient(180deg, rgba(212, 119, 70, 0.14), rgba(13, 18, 12, 0));
}

.tt-section--mini {
    background: linear-gradient(135deg, rgba(116, 217, 111, 0.13), rgba(103, 199, 255, 0.08));
}

.tt-section-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 410px);
    gap: 24px;
    align-items: end;
    margin-bottom: 24px;
}

.tt-section-head h2 {
    margin: 7px 0 0;
    font-size: 42px;
    line-height: 1.08;
    font-weight: 950;
    letter-spacing: 0;
}

.tt-section-head p:last-child {
    margin: 0;
    color: var(--tt-muted);
    line-height: 1.8;
}

.tt-fact-grid,
.tt-change-grid,
.tt-ency-grid,
.tt-gallery-grid,
.tt-baby-grid {
    display: grid;
    gap: 14px;
}

.tt-fact-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.tt-card {
    min-height: 210px;
    padding: 18px;
    border-radius: var(--tt-radius);
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: var(--tt-panel);
}

.tt-card__icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: var(--tt-radius);
    color: #181207;
    background: linear-gradient(135deg, var(--tt-gold), var(--tt-green));
}

.tt-card h3,
.tt-feature-panel h3,
.tt-roster h3,
.tt-baby-card h3,
.tt-mini h2 {
    margin: 14px 0 0;
    font-size: 24px;
    line-height: 1.16;
    font-weight: 950;
    letter-spacing: 0;
}

.tt-card p,
.tt-feature-panel p,
.tt-baby-card p,
.tt-mini p {
    margin: 12px 0 0;
    color: var(--tt-muted);
    line-height: 1.78;
}

.tt-feature-tabs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 14px;
}

.tt-feature-tab {
    min-height: 74px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--tt-radius);
    color: var(--tt-muted);
    background: rgba(255, 255, 255, 0.06);
    font: inherit;
    font-weight: 950;
    text-align: left;
    cursor: pointer;
    transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.tt-feature-tab img {
    width: 48px;
    height: 48px;
    image-rendering: pixelated;
}

.tt-feature-tab:hover,
.tt-feature-tab.is-active {
    color: #191207;
    border-color: rgba(255, 211, 78, 0.72);
    background: var(--tt-gold);
}

.tt-feature-stage {
    position: relative;
}

.tt-feature-panel {
    display: none;
    grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1fr);
    gap: 18px;
    align-items: stretch;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--tt-radius);
    background: rgba(255, 255, 255, 0.06);
}

.tt-feature-panel.is-active {
    display: grid;
}

.tt-feature-panel__media {
    min-height: 360px;
    overflow: hidden;
    border-radius: var(--tt-radius);
    background: #172115;
}

.tt-feature-panel__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tt-feature-panel__body {
    align-self: center;
    padding: 16px 12px 16px 6px;
}

.tt-feature-panel h3 {
    font-size: 38px;
}

.tt-feature-panel ul,
.tt-highlights {
    display: grid;
    gap: 10px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.tt-feature-panel li {
    display: flex;
    gap: 8px;
    color: #f8f1dc;
    font-weight: 800;
}

.tt-feature-panel li svg {
    flex: 0 0 auto;
    color: var(--tt-gold);
    margin-top: 3px;
}

.tt-filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.tt-filter {
    min-height: 40px;
    padding: 0 13px;
    border: 1px solid var(--tt-line);
    border-radius: var(--tt-radius);
    color: var(--tt-muted);
    background: rgba(255, 255, 255, 0.05);
    font-weight: 900;
    cursor: pointer;
    transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.tt-filter:hover,
.tt-filter.is-active {
    color: #16120a;
    border-color: rgba(255, 211, 78, 0.74);
    background: var(--tt-gold);
}

.tt-baby-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tt-baby-card {
    min-height: 420px;
    overflow: hidden;
    border-radius: var(--tt-radius);
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
}

.tt-baby-card[hidden] {
    display: none;
}

.tt-baby-card img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
}

.tt-baby-card div {
    padding: 16px;
}

.tt-baby-card span {
    color: var(--tt-gold);
    font-size: 12px;
    font-weight: 900;
}

.tt-baby-card h3 {
    margin-top: 6px;
}

.tt-change-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
    gap: 16px;
}

.tt-roster {
    padding: 18px;
    border-radius: var(--tt-radius);
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
}

.tt-roster h3 {
    margin-top: 0;
}

.tt-roster__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.tt-roster__chips span {
    padding: 7px 9px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--tt-radius);
    color: #fff7de;
    background: rgba(255, 255, 255, 0.06);
    font-size: 13px;
    font-weight: 900;
}

.tt-change-grid {
    grid-template-columns: 1fr;
}

.tt-change-grid .tt-card {
    min-height: 0;
}

.tt-ency-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tt-ency-card {
    min-height: 168px;
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr) 24px;
    gap: 14px;
    align-items: center;
    padding: 16px;
    border-radius: var(--tt-radius);
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: var(--tt-panel);
    text-decoration: none;
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.tt-ency-card:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 211, 78, 0.5);
    background: rgba(22, 31, 20, 0.92);
}

.tt-ency-card img {
    width: 72px;
    height: 72px;
    object-fit: contain;
    image-rendering: pixelated;
}

.tt-ency-card span,
.tt-ency-card strong,
.tt-ency-card em,
.tt-ency-card small {
    display: block;
}

.tt-ency-card strong {
    color: #fffce8;
    font-size: 18px;
    font-weight: 950;
}

.tt-ency-card em {
    margin-top: 3px;
    color: var(--tt-gold);
    font-size: 12px;
    font-style: normal;
    font-weight: 900;
}

.tt-ency-card small {
    margin-top: 7px;
    color: var(--tt-muted);
    font-size: 13px;
    line-height: 1.55;
}

.tt-ency-card > svg {
    color: var(--tt-gold);
}

.tt-mini {
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1fr);
    gap: 22px;
    align-items: center;
}

.tt-mini img {
    width: 100%;
    min-height: 320px;
    object-fit: cover;
    display: block;
    border-radius: var(--tt-radius);
}

.tt-mini h2 {
    margin-top: 8px;
    font-size: 40px;
}

.tt-mini p:last-child {
    font-size: 17px;
}

.tt-gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tt-gallery-card {
    position: relative;
    min-height: 300px;
    margin: 0;
    overflow: hidden;
    border-radius: var(--tt-radius);
    background: #172115;
}

.tt-gallery-card img {
    width: 100%;
    height: 100%;
    min-height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.24s ease;
}

.tt-gallery-card:hover img {
    transform: scale(1.035);
}

.tt-gallery-card figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 48px 14px 14px;
    background: linear-gradient(180deg, transparent, rgba(13, 18, 12, 0.92));
}

.tt-gallery-card strong,
.tt-gallery-card span {
    display: block;
}

.tt-gallery-card strong {
    color: #fffce8;
    font-size: 17px;
    font-weight: 950;
}

.tt-gallery-card span {
    margin-top: 5px;
    color: var(--tt-muted);
    font-size: 13px;
    line-height: 1.55;
}

@media (max-width: 1100px) {
    .tt-fact-grid,
    .tt-baby-grid,
    .tt-ency-grid,
    .tt-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tt-feature-tabs {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tt-feature-panel,
    .tt-change-layout,
    .tt-mini {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .tt-frame,
    .tt-hero__content,
    .tt-nav__inner {
        width: min(100% - 24px, 1280px);
    }

    .tt-hero {
        min-height: 620px;
    }

    .tt-hero__content {
        padding: 94px 0 32px;
    }

    .tt-hero h1 {
        font-size: 46px;
    }

    .tt-hero__summary {
        font-size: 16px;
    }

    .tt-stat-grid,
    .tt-section-head,
    .tt-fact-grid,
    .tt-baby-grid,
    .tt-ency-grid,
    .tt-gallery-grid,
    .tt-feature-tabs {
        grid-template-columns: 1fr;
    }

    .tt-section {
        padding: 42px 0;
    }

    .tt-section-head h2,
    .tt-feature-panel h3,
    .tt-mini h2 {
        font-size: 30px;
    }

    .tt-feature-panel__media {
        min-height: 240px;
    }

    .tt-ency-card {
        grid-template-columns: 58px minmax(0, 1fr) 20px;
    }

    .tt-ency-card img {
        width: 58px;
        height: 58px;
    }
}
