/* Abdul's Homemade Tea — with colour and stats */

/* ── Reset ── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ── Base ── */
html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', sans-serif;
    color: #1a1a1a;
    background: #ffffff;
    line-height: 1.6;
}

/* ── Shared content width ── */
.container {
    max-width: 1060px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Header ── */
.site-header {
    background: #1e2a38;
    padding: 24px 0;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 100;
}

.site-name {
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #ffffff;
}

.site-nav {
    margin-top: 12px;
    display: flex;
    justify-content: center;
    gap: 32px;
}

.site-nav a {
    font-size: 0.88rem;
    font-weight: 400;
    color: #a8b5c2;
    text-decoration: none;
}

.site-nav a:hover {
    color: #ffffff;
}

/* ── Hero ── */
.hero {
    padding: 40px 0 36px;
}

.hero-inner {
    display: flex;
    align-items: center;
    gap: 48px;
}

.hero-text {
    flex: 1;
    min-width: 0;
}

.hero-heading {
    font-size: 1.35rem;
    font-weight: 600;
    line-height: 1.5;
    color: #1a1a1a;
}

.hero-sub {
    margin-top: 14px;
    font-size: 0.95rem;
    color: #b85a3a;
    font-weight: 500;
    font-style: italic;
}

.hero-intro {
    margin-top: 16px;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #444444;
}

.hero-media {
    flex: 0 1 220px;
    max-width: 220px;
    border-radius: 4px;
    overflow: hidden;
}

.hero-media a {
    display: block;
}

.hero-media img {
    width: 100%;
    height: auto;
    display: block;
}

/* ── Stats ── */
.stats {
    padding: 28px 0;
    border-top: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
    background: #f6f1ec;
}

.stats-row {
    display: flex;
    justify-content: center;
    gap: 48px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.3rem;
    font-weight: 600;
    color: #b85a3a;
}

.stat-label {
    display: block;
    margin-top: 4px;
    font-size: 0.78rem;
    color: #777777;
    letter-spacing: 0.01em;
}

/* ── Explore ── */
.explore {
    padding: 40px 0;
}

.explore-heading {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e2a38;
    margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: 2px solid #b85a3a;
    display: inline-block;
}

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

.explore-card {
    display: block;
    padding: 24px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    text-decoration: none;
    transition: border-color 0.2s;
}

.explore-card:hover {
    border-color: #b85a3a;
}

.explore-card h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 6px;
}

.explore-card p {
    font-size: 0.85rem;
    color: #666666;
    line-height: 1.5;
}

/* ── Page intro (internal pages) ── */
.page-intro {
    padding: 36px 0 32px;
    border-bottom: 1px solid #e8e8e8;
}

.page-title {
    font-size: 1.35rem;
    font-weight: 600;
    color: #1e2a38;
    margin-bottom: 10px;
}

.page-summary {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555555;
    max-width: 600px;
}

/* ── About page text ── */
.about-text {
    padding: 32px 0;
    border-bottom: 1px solid #e8e8e8;
}

.about-text:last-of-type {
    border-bottom: none;
}

.prose {
    max-width: 680px;
}

.prose h2 {
    margin-bottom: 16px;
}

.prose p {
    font-size: 0.95rem;
    line-height: 1.65;
    color: #555555;
    margin-bottom: 12px;
}

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

.section-heading--spaced {
    margin-top: 36px;
}

/* ── About page photo ── */
.about-photo {
    margin-top: 24px;
    max-width: 300px;
    border-radius: 4px;
    overflow: hidden;
}

.about-photo a {
    display: block;
}

.about-photo img {
    width: 100%;
    height: auto;
    display: block;
}

/* ── About closing stat ── */
.about-closing-stat {
    padding: 36px 0;
    border-top: 1px solid #e8e8e8;
    text-align: center;
}

.closing-stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 600;
    color: #b85a3a;
}

.closing-stat-label {
    display: block;
    margin-top: 6px;
    font-size: 0.9rem;
    color: #777777;
}

/* ── Content sections ── */
.content-section {
    padding: 40px 0;
    border-top: 1px solid #e8e8e8;
}

.content-row {
    display: flex;
    align-items: flex-start;
    gap: 36px;
}

.content-text {
    flex: 1;
    min-width: 0;
}

.section-heading {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e2a38;
    margin-bottom: 12px;
    padding-bottom: 6px;
    border-bottom: 2px solid #b85a3a;
    display: inline-block;
}

.content-text p {
    font-size: 0.95rem;
    line-height: 1.65;
    color: #555555;
    margin-bottom: 12px;
}

.content-media {
    flex: 0 0 140px;
    width: 140px;
    height: 140px;
    border-radius: 4px;
    overflow: hidden;
}

.content-media a {
    display: block;
    width: 100%;
    height: 100%;
}

.content-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ── Visit Abdul ── */
.visit-section {
    padding: 40px 0;
    border-top: 1px solid #e8e8e8;
    text-align: center;
}

.visit-inner {
    max-width: 520px;
    margin: 0 auto;
}

.visit-inner p {
    font-size: 0.95rem;
    line-height: 1.65;
    color: #555555;
    margin-bottom: 16px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 28px;
    margin-bottom: 12px;
}

.social-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: #1e2a38;
    text-decoration: none;
    padding-bottom: 2px;
    border-bottom: 1px solid #b85a3a;
}

.social-link:hover {
    color: #b85a3a;
}

.provisional-note {
    font-size: 0.8rem;
    font-style: italic;
    color: #999999;
}

/* ── Footer ── */
.site-footer {
    background: #1e2a38;
    padding: 40px 0 24px;
    margin-top: 8px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 32px;
}

.footer-name {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.footer-desc {
    font-size: 0.85rem;
    color: #8a96a3;
    line-height: 1.5;
}

.footer-col h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
}

.footer-col nav {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-col nav a {
    font-size: 0.85rem;
    color: #8a96a3;
    text-decoration: none;
}

.footer-col nav a:hover {
    color: #ffffff;
}

.footer-note {
    margin-top: 8px;
    font-size: 0.75rem;
    font-style: italic;
    color: #5a6570;
}

.footer-bottom {
    border-top: 1px solid #2d3a48;
    padding-top: 16px;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: #5a6570;
    text-align: center;
}

/* ── About page layout ── */
.page-about {
    padding: 32px 0;
}

.page-about p {
    font-size: 0.95rem;
    line-height: 1.65;
    color: #555555;
    margin-bottom: 12px;
}

.page-about .section-heading--spaced {
    clear: both;
}

.page-about .inline-photo {
    float: right;
    width: 300px;
    height: 300px;
    margin: 0 0 20px 28px;
    border-radius: 4px;
    overflow: hidden;
}

.page-about .inline-photo a {
    display: block;
    width: 100%;
    height: 100%;
}

.page-about .inline-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ── Tea page layout ── */
.page-tea {
    padding: 32px 0;
}

.page-tea .container {
    max-width: 1060px;
}

.tea-body {
    max-width: 720px;
}

.page-tea p {
    font-size: 0.95rem;
    line-height: 1.65;
    color: #555555;
    margin-bottom: 12px;
}

.tea-chapter {
    padding-top: 32px;
    margin-top: 32px;
    border-top: 1px solid #e8e8e8;
}

.tea-chapter:first-child {
    padding-top: 0;
    margin-top: 0;
    border-top: none;
}

.tea-two-col {
    display: flex;
    align-items: flex-start;
    gap: 36px;
}

.tea-two-col-text {
    flex: 1;
    min-width: 0;
    max-width: 720px;
}

.page-tea .inline-photo {
    flex: 0 0 300px;
    width: 300px;
    height: 300px;
    margin: 6px 0 0 0;
    border-radius: 4px;
    overflow: hidden;
}

.page-tea .inline-photo a {
    display: block;
    width: 100%;
    height: 100%;
}

.page-tea .inline-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ── Bosscat Shop collection ── */
.page-shop {
    padding: 32px 0 48px;
}

.shop-intro {
    max-width: 860px;
    margin-bottom: 32px;
}

.shop-intro p {
    font-size: 0.95rem;
    line-height: 1.65;
    color: #555555;
}

.shop-intro-lead {
    font-size: 1.05rem;
    font-weight: 600;
    color: #1e2a38;
    margin-bottom: 12px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.product-card {
    display: flex;
    flex-direction: column;
}

.product-frame {
    width: 100%;
    aspect-ratio: 4 / 5;
    background: #f6f1ec;
    border: 1px solid #e8e8e8;
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-frame img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.product-card-name {
    margin-top: 14px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1e2a38;
}

.product-card-link {
    margin-top: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #b85a3a;
    text-decoration: none;
    display: inline-block;
}

.product-card-link:hover {
    text-decoration: underline;
}

/* ── Individual product page ── */
.product-page {
    padding: 32px 0 48px;
}

.product-layout {
    display: flex;
    align-items: flex-start;
    gap: 48px;
}

.product-image-col {
    flex: 0 0 440px;
    max-width: 440px;
}

.product-main-frame {
    width: 100%;
    aspect-ratio: 4 / 5;
    background: #f6f1ec;
    border: 1px solid #e8e8e8;
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-main-frame img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.product-info-col {
    flex: 1;
    min-width: 0;
    padding-top: 4px;
}

.product-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e2a38;
    margin-bottom: 16px;
}

.product-info-col p {
    font-size: 0.95rem;
    line-height: 1.65;
    color: #555555;
    margin-bottom: 14px;
}

.product-back {
    display: inline-block;
    margin-top: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #b85a3a;
    text-decoration: none;
}

.product-back:hover {
    text-decoration: underline;
}

/* ══════════════════════════════════════════════════════════
   Media page — structure adapted from the oldschoolPT V214
   Media page (.photo-grid / .video-cards / lightbox), restyled
   in Abdul's navy / rust / cream palette and Inter typography.
   These rules are used only by media.html and photos.html.
   ══════════════════════════════════════════════════════════ */

/* ── Media sections ── */
.media-section {
    padding: 48px 0;
}

.media-section--videos {
    background: #ffffff;
    border-bottom: 1px solid #e8e8e8;
}

.media-section--photos {
    background: #f6f1ec;
}

.media-eyebrow {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #7a7a72;
    margin-bottom: 14px;
}

.media-section-heading {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e2a38;
    margin-bottom: 20px;
}

.media-section-intro {
    font-size: 0.95rem;
    line-height: 1.65;
    color: #555555;
    max-width: 580px;
    margin-bottom: 28px;
}

/* ── YouTube channel panel ── */
.yt-panel {
    background: #1e2a38;
    padding: 40px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
}

.yt-panel-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 12px;
}

.yt-panel-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
}

.yt-panel-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
    max-width: 480px;
}

.yt-panel-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
}

.yt-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #b85a3a;
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 14px 24px;
    text-decoration: none;
    transition: background 0.2s ease;
}

.yt-button:hover {
    background: #9c4a2f;
}

.yt-link {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ── Video cards ── */
.video-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: #e8e8e8;
    margin-bottom: 32px;
}

.video-card {
    background: #ffffff;
}

.video-thumb {
    aspect-ratio: 16 / 9;
    background: #f6f1ec;
    border-bottom: 1px solid #e8e8e8;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.video-thumb-bg {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-thumb-bg span {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #b3b3ac;
    white-space: nowrap;
}

.video-thumb iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.video-info {
    padding: 18px 20px;
}

.video-info h4 {
    font-size: 0.925rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: #1e2a38;
}

.video-info p {
    font-size: 0.825rem;
    color: #7a7a72;
    line-height: 1.6;
}

/* ── Photo grid (oldschoolPT .photo-grid principle) ── */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: #e8e8e8;
    margin-bottom: 32px;
}

.photo-card {
    background: #ffffff;
    cursor: pointer;
    transition: opacity 0.2s ease;
    text-decoration: none;
    display: block;
}

.photo-card:hover {
    opacity: 0.9;
}

.photo-img-wrap {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #f6f1ec;
    display: flex;
    align-items: center;
    justify-content: center;
}

.photo-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.photo-card:hover .photo-img-wrap img {
    transform: scale(1.03);
}

.photo-caption {
    padding: 14px 16px;
    border-top: 1px solid #e8e8e8;
}

.photo-caption h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1e2a38;
}

/* ── View all links ── */
.media-view-all-link {
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #b85a3a;
    text-decoration: none;
}

.media-view-all-link:hover {
    text-decoration: underline;
}

.media-back {
    margin-top: 8px;
    font-size: 0.9rem;
}

.media-back a {
    color: #b85a3a;
    text-decoration: none;
    font-weight: 500;
}

.media-back a:hover {
    text-decoration: underline;
}

/* ── Media responsive ── */
@media (max-width: 680px) {
    .photo-grid,
    .video-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    .yt-panel {
        padding: 28px;
    }
}

@media (max-width: 420px) {
    .photo-grid,
    .video-cards {
        grid-template-columns: 1fr;
    }
}

/* ── Mobile ── */
@media (max-width: 680px) {
    .site-name {
        font-size: 1.35rem;
    }

    .site-nav {
        gap: 24px;
    }

    .hero {
        padding: 32px 0 28px;
    }

    .hero-inner {
        flex-direction: column;
        gap: 28px;
    }

    .hero-heading {
        font-size: 1.2rem;
    }

    .hero-media {
        flex: none;
        width: 200px;
        max-width: 200px;
    }

    .stats-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .explore-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .explore-card {
        padding: 18px;
    }

    .content-row {
        flex-direction: column;
        gap: 20px;
    }

    .content-media {
        flex: none;
        width: 120px;
        height: 120px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .page-about .inline-photo {
        float: none;
        margin: 20px auto;
        display: block;
    }

    .tea-two-col {
        flex-direction: column;
        gap: 20px;
    }

    .page-tea .inline-photo {
        flex: none;
        margin: 0 auto;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .product-layout {
        flex-direction: column;
        gap: 28px;
    }

    .product-image-col {
        flex: none;
        width: 100%;
        max-width: 100%;
    }
}

/* ── Tablet ── */
@media (min-width: 681px) and (max-width: 900px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ══════════════════════════════════════════════════════════
   Contact page — scoped styles only. Reuses the site palette
   (navy #1e2a38, rust #b85a3a, cream #f6f1ec) and Inter type.
   Used only by contact.html and contact-success.html.
   ══════════════════════════════════════════════════════════ */
.contact-section {
    padding: 48px 0;
}

.contact-form-wrap {
    max-width: 640px;
}

.contact-heading {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e2a38;
    margin-bottom: 8px;
}

.contact-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555555;
    margin-bottom: 28px;
}

/* Honeypot field — hidden from real visitors */
.contact-hp {
    display: none;
}

/* Form controls */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #1e2a38;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #1e2a38;
    background: #ffffff;
    border: 1px solid #d8d5cf;
    border-radius: 4px;
    box-sizing: border-box;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #b85a3a;
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.contact-submit {
    display: inline-block;
    background: #b85a3a;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 14px 28px;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s ease;
}

.contact-submit:hover {
    background: #9c4a2f;
}

/* ── Follow Abdul & Mimi — prominent social feature section ── */
.social-feature {
    background: #f6f1ec;
    padding: 56px 0;
}

.social-feature-head {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 36px;
}

.social-feature-heading {
    font-size: 1.6rem;
    font-weight: 600;
    color: #1e2a38;
    margin-bottom: 12px;
}

.social-feature-text {
    font-size: 1rem;
    line-height: 1.65;
    color: #555555;
}

.social-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.social-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 22px 24px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.social-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(30, 42, 56, 0.15);
}

.social-card-icon {
    flex: 0 0 auto;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.social-card--instagram .social-card-icon {
    background: #b85a3a;
}

.social-card--tiktok .social-card-icon {
    background: #1e2a38;
}

.social-card--youtube .social-card-icon {
    background: #b85a3a;
}

.social-card-body {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1 1 auto;
}

.social-card-name {
    font-size: 1.05rem;
    font-weight: 600;
    color: #1e2a38;
}

.social-card-handle {
    font-size: 0.82rem;
    color: #777777;
}

.social-card-go {
    flex: 0 0 auto;
    font-size: 1.1rem;
    color: #b85a3a;
    transition: transform 0.2s ease;
}

.social-card:hover .social-card-go {
    transform: translateX(4px);
}

/* Success page */
.contact-success {
    max-width: 560px;
}

.contact-success-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #555555;
    margin-bottom: 28px;
}

/* Contact responsive */
@media (min-width: 681px) and (max-width: 900px) {
    .social-cards {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin: 0 auto;
    }
}

@media (max-width: 680px) {
    .social-feature {
        padding: 44px 0;
    }
    .social-cards {
        grid-template-columns: 1fr;
        max-width: 460px;
        margin: 0 auto;
        gap: 16px;
    }
}
