/* ================= SUBPAGE NAV ================= */
.subNav {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(246, 247, 243, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.subNavInner {
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.subNavBrand {
    font-weight: 900;
    font-size: 18px;
    letter-spacing: -0.2px;
}

.subNavLinks {
    display: flex;
    align-items: center;
    gap: 18px;
    color: var(--muted);
    font-weight: 700;
    font-size: 14px;
}

/* ================= TEAS LIST PAGE ================= */
.teasHero {
    padding-top: 40px;
    padding-bottom: 28px;
}

.teasHeroBox {
    background: linear-gradient(135deg, rgba(31, 122, 62, 0.08), rgba(255, 255, 255, 0.7));
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 28px;
    box-shadow: var(--shadow);
}

.eyebrow {
    margin: 0 0 10px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
}

.teasHeroBox h1 {
    margin: 0 0 12px;
    font-size: 40px;
    line-height: 1.08;
    letter-spacing: -0.5px;
}

.teasIntro {
    margin: 0 0 18px;
    color: var(--muted);
    line-height: 1.7;
    max-width: 760px;
    font-size: 16px;
}

.teasSection {
    padding-top: 18px;
}

.teaCards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.teaCard {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow);
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 260px;
}

.teaType {
    display: inline-flex;
    align-self: flex-start;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(31, 122, 62, 0.08);
    color: var(--accent2);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.teaCard h2 {
    margin: 0;
    font-size: 24px;
    line-height: 1.2;
}

.teaCard p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
    flex: 1;
}

.teaCard .btn {
    align-self: flex-start;
}

/* ================= OPTIONAL CTA PANEL ================= */
.teasCtaSection {
    padding-top: 16px;
}

.teasCta {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: var(--shadow);
    padding: 28px;
}

.teasCta h2 {
    margin: 0 0 10px;
    font-size: 28px;
}

.teasCta p {
    margin: 0 0 18px;
    color: var(--muted);
    line-height: 1.7;
    max-width: 760px;
}

/* ================= TEA DETAIL PAGE ================= */
.teaDetailHero {
    padding-top: 34px;
    padding-bottom: 18px;
}

.detailBreadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.teaDetailHeroBox {
    display: grid;
    grid-template-columns: 1.5fr 0.9fr;
    gap: 20px;
    align-items: start;
}

.teaDetailHeroBoxFull {
    display: block;
}

.teaDetailHeroContent,
.detailCard {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.teaDetailHeroBoxFull .teaDetailHeroContent {
    width: 100%;
    max-width: none;
}

.teaDetailHeroContent {
    padding: 28px;
}

.teaDetailHeroContent h1 {
    margin: 10px 0 14px;
    font-size: 42px;
    line-height: 1.08;
    letter-spacing: -0.5px;
    max-width: 980px;
}

.teaLead {
    margin: 0 0 18px;
    color: var(--muted);
    line-height: 1.75;
    font-size: 16px;
    max-width: 980px;
}

.teaDetailSection {
    padding-top: 18px;
}

.teaDetailRows {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.teaDetailRow {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.75fr);
    gap: 24px;
    align-items: stretch;
}

.teaDetailRow > .detailCard {
    height: 100%;
}

.detailCard {
    padding: 28px;
}

.detailCard h2 {
    margin: 0 0 14px;
    font-size: 22px;
}

.detailCard p {
    margin: 0 0 14px;
    color: var(--muted);
    line-height: 1.75;
}

.detailCard p:last-child {
    margin-bottom: 0;
}

.teaMetaList {
    margin: 0;
    display: grid;
    gap: 14px;
}

.teaMetaList div {
    display: grid;
    gap: 4px;
}

.teaMetaList dt {
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--muted);
}

.teaMetaList dd {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
    color: var(--text);
}

.detailList {
    margin: 0;
    padding-left: 18px;
    color: var(--muted);
    line-height: 1.8;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 980px) {
    .teaDetailRow {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 900px) {
    .teaCards {
        grid-template-columns: 1fr;
    }

    .teasHeroBox h1 {
        font-size: 32px;
    }
}

@media (max-width: 640px) {
    .subNavInner {
        min-height: 64px;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .subNavLinks {
        gap: 14px;
        flex-wrap: wrap;
        font-size: 13px;
    }

    .teasHero {
        padding-top: 24px;
    }

    .teasHeroBox {
        padding: 18px;
        border-radius: 16px;
    }

    .teasHeroBox h1 {
        font-size: 28px;
    }

    .teasIntro {
        font-size: 15px;
    }

    .teaCard {
        padding: 18px;
        min-height: unset;
    }

    .teaCard h2 {
        font-size: 22px;
    }

    .teasCta {
        padding: 20px;
    }

    .teasCta h2 {
        font-size: 24px;
    }

    .teaDetailHeroContent,
    .detailCard {
        border-radius: 16px;
    }

    .teaDetailHeroContent,
    .detailCard {
        padding: 18px;
    }

    .teaDetailHeroContent h1 {
        font-size: 28px;
    }

    .teaLead {
        font-size: 15px;
    }

    .detailCard h2 {
        font-size: 20px;
    }
}