/* ============================================================
   GLOBAL.CSS — The Sugared Starfish Confections
   Combined stylesheet for Eleventy site
   ============================================================ */


/* ============================
   1. RESET & BASE
   ============================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    color: var(--brown);
    background: var(--cream);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}


/* ============================
   2. :ROOT VARIABLES
   ============================ */
:root {
    --pink: #F8D7E3;
    --pink-light: #FBE8F0;
    --cream: #FFF8F0;
    --cream-dark: #F5EDE3;
    --brown: #3D2B1F;
    --brown-light: #5C4033;
    --brown-medium: #7A5C4F;
    --gold: #C5943B;
    --gold-light: #D4A94E;
    --white: #FFFFFF;

    --font-serif: 'Crimson Pro', Georgia, serif;
    --font-sans: 'Instrument Sans', -apple-system, sans-serif;

    --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}


/* ============================
   3. TYPOGRAPHY UTILITIES
   ============================ */
.eyebrow {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.section-heading {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: 2.6rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--brown);
}

.section-body {
    font-size: 0.95rem;
    line-height: 1.85;
    color: var(--brown-medium);
    max-width: 480px;
}


/* ============================
   4. BUTTONS
   ============================ */
.btn {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 14px 36px;
    border: 1.5px solid var(--brown);
    background: transparent;
    color: var(--brown);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.btn:hover {
    background: var(--brown);
    color: var(--cream);
}

.btn--filled {
    background: var(--brown);
    color: var(--cream);
    border-color: var(--brown);
}

.btn--filled:hover {
    background: var(--brown-light);
    border-color: var(--brown-light);
}

.btn--gold {
    border-color: var(--gold);
    color: var(--gold);
}

.btn--gold:hover {
    background: var(--gold);
    color: var(--white);
}

.discover-link {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--brown);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 2rem;
    transition: var(--transition);
}

.discover-link::after {
    content: '';
    display: inline-block;
    width: 24px;
    height: 1px;
    background: var(--gold);
    transition: width var(--transition);
}

.discover-link:hover {
    color: var(--gold);
}

.discover-link:hover::after {
    width: 40px;
}


/* ============================
   5. ANIMATIONS (fade-in on scroll)
   ============================ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }


/* ============================
   6. NAVBAR
   ============================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 248, 240, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(61, 43, 31, 0.06);
    transition: box-shadow var(--transition);
}

.navbar.scrolled {
    box-shadow: 0 1px 20px rgba(61, 43, 31, 0.06);
}

.navbar__inner {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    height: 80px;
}

.navbar__logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

.navbar__logo img {
    height: 70px;
    width: auto;
    mix-blend-mode: multiply;
}

.navbar__logo-text {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--brown);
    letter-spacing: 0.02em;
    line-height: 1.2;
}

.navbar__logo-text span {
    display: block;
    font-size: 0.65rem;
    font-family: var(--font-sans);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--brown-medium);
    font-weight: 500;
    margin-top: 2px;
}

.navbar__links {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
}

.navbar__links a {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brown);
    transition: color var(--transition);
    position: relative;
}

.navbar__links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width var(--transition);
}

.navbar__links a:hover {
    color: var(--gold);
}

.navbar__links a:hover::after {
    width: 100%;
}

.navbar__links a.active::after {
    width: 100%;
}

/* Mobile menu toggle */
.navbar__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
}

.navbar__toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--brown);
    transition: var(--transition);
}


/* ============================
   7. HOMEPAGE SECTIONS
   ============================ */

/* --- Hero --- */
.hero {
    background: var(--pink);
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.hero__content {
    max-width: 540px;
    padding: 160px 48px 120px 48px;
    margin-left: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.hero__eyebrow {
    font-family: var(--font-sans);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.hero__title {
    font-family: var(--font-serif);
    font-size: 3.6rem;
    font-weight: 300;
    line-height: 1.12;
    color: var(--brown);
    margin-bottom: 1.5rem;
}

.hero__title em {
    font-style: italic;
    font-weight: 300;
}

.hero__subtitle {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--brown-medium);
    margin-bottom: 2.5rem;
    max-width: 420px;
}

.hero__buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero__video {
    position: relative;
    overflow: hidden;
}

.hero__video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Left-side fade from pink into video */
.hero__video::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 180px;
    height: 100%;
    background: linear-gradient(to right, var(--pink) 0%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

/* --- Product Cards (Carousel Row) --- */
.products-section {
    background: var(--cream);
    padding: 100px 48px;
}

.products-section__header {
    text-align: center;
    margin-bottom: 60px;
}

.products-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.product-card {
    background: var(--white);
    border-radius: 4px;
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(61, 43, 31, 0.08);
}

.product-card__image {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--pink-light);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.product-card__image img {
    width: 80%;
    height: 80%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.product-card:hover .product-card__image img {
    transform: scale(1.06);
}

.product-card__info {
    padding: 24px 20px;
    text-align: center;
}

.product-card__name {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--brown);
    margin-bottom: 6px;
}

.product-card__desc {
    font-size: 0.8rem;
    color: var(--brown-medium);
    line-height: 1.6;
}

/* --- Features Strip --- */
.features-strip {
    background: var(--white);
    padding: 80px 48px;
    border-top: 1px solid rgba(61, 43, 31, 0.06);
    border-bottom: 1px solid rgba(61, 43, 31, 0.06);
}

.features-strip__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
}

.feature-item {
    text-align: center;
    padding: 0 12px;
}

.feature-item__icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 20px;
    color: var(--gold);
}

.feature-item__icon svg {
    width: 100%;
    height: 100%;
}

.feature-item__title {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--brown);
    margin-bottom: 8px;
}

.feature-item__desc {
    font-size: 0.82rem;
    color: var(--brown-medium);
    line-height: 1.6;
}

/* --- Two-Column Feature Sections --- */
.feature-section {
    padding: 100px 48px;
}

.feature-section--pink {
    background: var(--pink);
}

.feature-section--cream {
    background: var(--cream);
}

.feature-section__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.feature-section__image {
    border-radius: 4px;
    overflow: hidden;
}

.feature-section__image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.feature-section__image:hover img {
    transform: scale(1.03);
}

.feature-section__text {
    max-width: 460px;
}

.feature-section--reversed .feature-section__inner {
    direction: rtl;
}

.feature-section--reversed .feature-section__inner > * {
    direction: ltr;
}

/* --- Menu Section --- */
.menu-section {
    background: var(--cream);
    padding: 100px 48px;
}

.menu-section__header {
    text-align: center;
    margin-bottom: 70px;
}

.menu-section__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.menu-category {
    text-align: center;
}

.menu-category__title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--brown);
    margin-bottom: 8px;
    padding-bottom: 14px;
    position: relative;
}

.menu-category__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 1.5px;
    background: var(--gold);
}

.menu-category__list {
    list-style: none;
    margin-top: 24px;
}

.menu-category__list li {
    font-family: var(--font-sans);
    font-size: 0.88rem;
    color: var(--brown-medium);
    padding: 10px 0;
    border-bottom: 1px solid rgba(61, 43, 31, 0.06);
    transition: color var(--transition);
}

.menu-category__list li:last-child {
    border-bottom: none;
}

.menu-category__list li:hover {
    color: var(--brown);
}

/* --- Visit Us Section --- */
.visit-section {
    background: var(--pink);
    padding: 100px 48px;
}

.visit-section__inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.visit-card {
    background: var(--white);
    border-radius: 4px;
    padding: 60px 48px;
    margin-top: 48px;
    box-shadow: 0 4px 30px rgba(61, 43, 31, 0.05);
}

.visit-card__grid {
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    gap: 48px;
    align-items: start;
    text-align: left;
    margin-bottom: 36px;
}

.visit-card__divider {
    background: rgba(61, 43, 31, 0.1);
    height: 100%;
}

.visit-card__label {
    font-family: var(--font-sans);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.visit-card__location-name {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--brown);
    margin-bottom: 12px;
}

.visit-card__text {
    font-size: 0.88rem;
    color: var(--brown-medium);
    line-height: 1.8;
}

.visit-card__hours-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 4px 20px;
    font-size: 0.88rem;
    color: var(--brown-medium);
}

.visit-card__hours-grid .day {
    font-weight: 500;
    color: var(--brown);
}

.visit-card__cta {
    text-align: center;
}


/* ============================
   8. FOOTER
   ============================ */
.footer {
    background: var(--brown);
    color: rgba(255, 248, 240, 0.7);
    padding: 80px 48px 40px;
}

.footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 248, 240, 0.1);
}

.footer__brand-logo {
    height: 56px;
    width: auto;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer__brand p {
    font-size: 0.85rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.footer__veteran-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 4px;
}

.footer__col-title {
    font-family: var(--font-sans);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 248, 240, 0.5);
    margin-bottom: 24px;
}

.footer__links {
    list-style: none;
}

.footer__links li {
    margin-bottom: 12px;
}

.footer__links a {
    font-size: 0.85rem;
    color: rgba(255, 248, 240, 0.7);
    transition: color var(--transition);
}

.footer__links a:hover {
    color: var(--gold-light);
}

.footer__hours-list {
    list-style: none;
}

.footer__hours-list li {
    font-size: 0.85rem;
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.footer__hours-list .closed {
    color: rgba(255, 248, 240, 0.35);
}

.footer__social {
    margin-top: 20px;
}

.footer__social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 248, 240, 0.15);
    border-radius: 50%;
    color: rgba(255, 248, 240, 0.6);
    transition: var(--transition);
}

.footer__social a:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.footer__social a svg {
    width: 16px;
    height: 16px;
}

.footer__bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.78rem;
    color: rgba(255, 248, 240, 0.35);
}


/* ============================
   9. HOMEPAGE RESPONSIVE
   ============================ */

/* Tablet - 1024px */
@media (max-width: 1024px) {
    .hero__title {
        font-size: 2.8rem;
    }

    .hero__video::before {
        width: 120px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 700px;
    }

    .feature-section__inner {
        gap: 48px;
    }

    .feature-section__image img {
        height: 400px;
    }

    .features-strip__inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .menu-section__inner {
        gap: 40px;
    }

    .footer__inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

/* Tablet Portrait - 768px */
@media (max-width: 768px) {
    .navbar__inner {
        padding: 0 24px;
        height: 70px;
    }

    .navbar__links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--cream);
        flex-direction: column;
        padding: 32px 24px;
        gap: 24px;
        border-bottom: 1px solid rgba(61, 43, 31, 0.08);
    }

    .navbar__links.open {
        display: flex;
    }

    .navbar__toggle {
        display: flex;
    }

    .hero {
        grid-template-columns: 1fr;
    }

    .hero__content {
        padding: 120px 24px 40px;
        max-width: 100%;
        margin-left: 0;
        text-align: center;
    }

    .hero__subtitle {
        max-width: 100%;
    }

    .hero__buttons {
        justify-content: center;
    }

    .hero__video {
        height: 50vw;
    }

    .hero__video::before {
        width: 0;
        display: none;
    }

    .hero__title {
        font-size: 2.4rem;
    }

    .products-section,
    .feature-section,
    .menu-section,
    .visit-section {
        padding: 80px 24px;
    }

    .feature-section__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .feature-section--reversed .feature-section__inner {
        direction: ltr;
    }

    .feature-section__text {
        max-width: 100%;
        text-align: center;
    }

    .feature-section__text .discover-link {
        justify-content: center;
    }

    .feature-section__image img {
        height: 350px;
    }

    .section-body {
        max-width: 100%;
        margin: 0 auto;
    }

    .section-heading {
        font-size: 2.1rem;
    }

    .menu-section__inner {
        grid-template-columns: 1fr;
        max-width: 400px;
        gap: 50px;
    }

    .visit-card__grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .visit-card__divider {
        width: 100%;
        height: 1px;
    }

    .visit-card {
        padding: 40px 24px;
    }

    .visit-map iframe {
        height: 250px;
    }

    .visit-card__hours-grid {
        justify-items: center;
        grid-template-columns: 1fr;
        gap: 2px;
    }

    .features-strip {
        padding: 60px 24px;
    }

    .footer {
        padding: 60px 24px 30px;
    }

    .footer__inner {
        grid-template-columns: 1fr;
        gap: 36px;
        text-align: center;
    }

    .footer__hours-list li {
        justify-content: center;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

/* Mobile - 480px */
@media (max-width: 480px) {
    .hero__title {
        font-size: 1.9rem;
    }

    .hero__buttons {
        flex-direction: column;
        align-items: center;
    }

    .products-grid {
        grid-template-columns: 1fr;
        max-width: 340px;
    }

    .features-strip__inner {
        grid-template-columns: 1fr;
    }

    .section-heading {
        font-size: 1.8rem;
    }

    .btn {
        padding: 12px 28px;
        font-size: 0.65rem;
    }
}


/* ============================
   10. BLOG INDEX STYLES (Magazine Grid)
   ============================ */

/* Page Header */
.page-header {
    background: var(--pink);
    padding: 180px 48px 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 50%; left: -100px;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: var(--pink-light);
    opacity: 0.6;
    transform: translateY(-50%);
}

.page-header::after {
    content: '';
    position: absolute;
    top: 30%; right: -80px;
    width: 220px; height: 220px;
    border-radius: 50%;
    background: var(--pink-light);
    opacity: 0.5;
}

.page-header__inner {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
}

.page-header__eyebrow {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.2rem;
}

.page-header__title {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: 4rem;
    line-height: 1.1;
    color: var(--brown);
    margin-bottom: 1.5rem;
}

.page-header__sub {
    font-size: 1rem;
    color: var(--brown-medium);
    line-height: 1.75;
    max-width: 520px;
    margin: 0 auto;
}

/* Filter Bar */
.filter-bar {
    background: var(--cream);
    padding: 50px 48px 20px;
    border-bottom: 1px solid rgba(61, 43, 31, 0.08);
}

.filter-bar__inner {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
    padding-bottom: 24px;
}

.filter-bar a {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--brown-medium);
    padding-bottom: 6px;
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

.filter-bar a.active {
    color: var(--brown);
    border-bottom-color: var(--gold);
}

.filter-bar a:hover {
    color: var(--brown);
}

/* Blog Grid */
.blog-grid {
    max-width: 1300px;
    margin: 0 auto;
    padding: 80px 48px 120px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 56px 40px;
}

/* Post Card */
.post-card {
    cursor: pointer;
}

.post-card__image {
    aspect-ratio: 4 / 3;
    background: var(--cream-dark);
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

.post-card__image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--pink-light) 0%, var(--cream-dark) 100%);
    transition: transform 0.6s ease;
}

.post-card:hover .post-card__image::after {
    transform: scale(1.05);
}

.post-card__image--has-image {
    background-size: cover;
    background-position: center;
}

.post-card__image--has-image::after {
    display: none;
}

.post-card__image--1::after { background: linear-gradient(135deg, #F8D7E3 0%, #C5943B 200%); }
.post-card__image--2::after { background: linear-gradient(135deg, #5C4033 0%, #7A5C4F 100%); }
.post-card__image--3::after { background: linear-gradient(135deg, #FBE8F0 0%, #F5EDE3 100%); }
.post-card__image--4::after { background: linear-gradient(135deg, #C5943B 0%, #5C4033 100%); }
.post-card__image--5::after { background: linear-gradient(135deg, #F8D7E3 0%, #FBE8F0 100%); }
.post-card__image--6::after { background: linear-gradient(135deg, #3D2B1F 0%, #C5943B 200%); }

.post-card__category {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.post-card__title {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 1.25;
    color: var(--brown);
    margin-bottom: 14px;
    transition: color var(--transition);
}

.post-card:hover .post-card__title {
    color: var(--gold);
}

.post-card__excerpt {
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--brown-medium);
    margin-bottom: 18px;
}

.post-card__meta {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--brown-medium);
}

/* Load More */
.load-more {
    text-align: center;
    padding: 0 0 100px;
}

.load-more button {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 16px 42px;
    border: 1.5px solid var(--brown);
    background: transparent;
    color: var(--brown);
    cursor: pointer;
    transition: var(--transition);
}

.load-more button:hover {
    background: var(--brown);
    color: var(--cream);
}


/* ============================
   11. BLOG POST STYLES
   ============================ */

/* Post Hero */
.post-hero {
    margin-top: 80px;
    height: 70vh;
    min-height: 480px;
    background: linear-gradient(135deg, #F8D7E3 0%, #C5943B 60%, #5C4033 120%);
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 60px 48px;
}

.post-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(61, 43, 31, 0.7) 0%, transparent 60%);
}

.post-hero__content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: 0 auto;
    color: var(--cream);
    width: 100%;
}

.post-hero__category {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 20px;
}

.post-hero__title {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: 3.6rem;
    line-height: 1.1;
    color: var(--cream);
    margin-bottom: 24px;
    max-width: 720px;
}

.post-hero__meta {
    display: flex;
    gap: 24px;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 248, 240, 0.85);
}

.post-hero__meta span::before {
    content: '\2014\0020';
    opacity: 0.6;
}

.post-hero__meta span:first-child::before {
    content: '';
}

/* Breadcrumb */
.breadcrumb {
    max-width: 760px;
    margin: 50px auto 0;
    padding: 0 48px;
}

.breadcrumb a {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--brown-medium);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: color var(--transition);
}

.breadcrumb a::before {
    content: '\2190';
    transition: transform var(--transition);
}

.breadcrumb a:hover {
    color: var(--gold);
}

.breadcrumb a:hover::before {
    transform: translateX(-4px);
}

/* Article Body */
.article {
    max-width: 760px;
    margin: 0 auto;
    padding: 50px 48px 100px;
}

.article__lead {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    line-height: 1.55;
    color: var(--brown);
    margin-bottom: 50px;
    font-weight: 400;
    font-style: italic;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(61, 43, 31, 0.12);
}

.article__body {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--brown-light);
}

.article__body p {
    margin-bottom: 1.6em;
}

.article__body h2 {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: 1.8rem;
    color: var(--brown);
    margin-top: 2.4em;
    margin-bottom: 0.8em;
    line-height: 1.25;
}

.article__body h2::before {
    content: '';
    display: block;
    width: 32px;
    height: 2px;
    background: var(--gold);
    margin-bottom: 1em;
}

.article__body strong {
    color: var(--brown);
    font-weight: 600;
}

/* Author Card */
.author-card {
    max-width: 760px;
    margin: 60px auto 0;
    padding: 36px 48px;
    display: flex;
    align-items: center;
    gap: 24px;
    background: var(--pink-light);
    border-left: 3px solid var(--gold);
}

.author-card__avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold) 0%, var(--brown-light) 100%);
    flex-shrink: 0;
}

.author-card__name {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--brown);
    margin-bottom: 4px;
}

.author-card__role {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--brown-medium);
}

/* Related Posts */
.related {
    background: var(--cream-dark);
    padding: 90px 48px;
    margin-top: 80px;
}

.related__inner {
    max-width: 1300px;
    margin: 0 auto;
}

.related__heading {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    text-align: center;
    margin-bottom: 12px;
}

.related__title {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: 2.4rem;
    color: var(--brown);
    text-align: center;
    margin-bottom: 60px;
}

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

.related-card {
    cursor: pointer;
}

.related-card__image {
    aspect-ratio: 4 / 3;
    margin-bottom: 18px;
    transition: transform 0.6s ease;
}

.related-card__image--1 { background: linear-gradient(135deg, #5C4033 0%, #C5943B 100%); }
.related-card__image--2 { background: linear-gradient(135deg, #FBE8F0 0%, #F5EDE3 100%); }
.related-card__image--3 { background: linear-gradient(135deg, #C5943B 0%, #5C4033 100%); }

.related-card__category {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}

.related-card__title {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    line-height: 1.25;
    color: var(--brown);
    margin-bottom: 8px;
    transition: color var(--transition);
}

.related-card:hover .related-card__title {
    color: var(--gold);
}

.related-card__date {
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--brown-medium);
}


/* ============================
   12. BLOG & POST RESPONSIVE
   ============================ */

/* Blog Index - 900px */
@media (max-width: 900px) {
    .blog-grid {
        grid-template-columns: 1fr 1fr;
        padding: 60px 32px 80px;
        gap: 48px 32px;
    }

    .page-header__title {
        font-size: 3rem;
    }

    .related__grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Blog Index + Post - 700px */
@media (max-width: 700px) {
    /* Blog Index */
    .page-header {
        padding: 130px 24px 70px;
    }

    .page-header__title {
        font-size: 2.4rem;
        line-height: 1.1;
    }

    .page-header__sub {
        font-size: 0.92rem;
    }

    .page-header__eyebrow {
        font-size: 0.62rem;
    }

    .filter-bar {
        padding: 30px 20px 10px;
    }

    .filter-bar__inner {
        gap: 18px 22px;
        padding-bottom: 18px;
    }

    .filter-bar a {
        font-size: 0.62rem;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        padding: 50px 24px 60px;
        gap: 50px;
    }

    .post-card__image {
        aspect-ratio: 5 / 4;
        margin-bottom: 20px;
    }

    .post-card__title {
        font-size: 1.45rem;
    }

    .post-card__excerpt {
        font-size: 0.9rem;
    }

    .load-more {
        padding-bottom: 70px;
    }

    .load-more button {
        padding: 14px 32px;
        font-size: 0.65rem;
    }

    /* Blog Post */
    .post-hero {
        margin-top: 70px;
        height: auto;
        min-height: 380px;
        padding: 50px 24px;
    }

    .post-hero__title {
        font-size: 2.1rem;
        margin-bottom: 18px;
    }

    .post-hero__category {
        font-size: 0.62rem;
    }

    .post-hero__meta {
        gap: 14px;
        flex-wrap: wrap;
        font-size: 0.62rem;
    }

    .breadcrumb {
        padding: 0 24px;
        margin-top: 36px;
    }

    .article {
        padding: 36px 24px 70px;
    }

    .article__lead {
        font-size: 1.18rem;
        padding-bottom: 30px;
        margin-bottom: 36px;
    }

    .article__body {
        font-size: 1rem;
    }

    .article__body h2 {
        font-size: 1.45rem;
        margin-top: 2em;
    }

    .author-card {
        padding: 28px 24px;
        gap: 18px;
        flex-direction: column;
        text-align: center;
    }

    .related {
        padding: 60px 24px;
        margin-top: 50px;
    }

    .related__title {
        font-size: 1.85rem;
        margin-bottom: 40px;
    }

    .related__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}
