/* ============================================================
   FREE RUN JUICE — Editorial Wine Blog
   Built by Fablehesion (fablehesion.com)
   Typography: Cormorant Garamond + Inter
   Palette: Burgundy, Cream, Gold, Charcoal
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── Variables ── */
:root {
    --color-wine:       #722F37;
    --color-wine-dark:  #5A252C;
    --color-wine-light: #8B3A43;
    --color-gold:       #C5A47E;
    --color-gold-light: #D4BD9C;
    --color-cream:      #FDFAF5;
    --color-cream-dark: #F5EDE0;
    --color-white:      #FFFFFF;
    --color-charcoal:   #1C1917;
    --color-stone-900:  #1C1917;
    --color-stone-800:  #292524;
    --color-stone-700:  #44403C;
    --color-stone-600:  #57534E;
    --color-stone-500:  #78716C;
    --color-stone-400:  #A8A29E;
    --color-stone-300:  #D6D3D1;
    --color-stone-200:  #E7E5E4;
    --color-stone-100:  #F5F5F4;
    --color-stone-50:   #FAFAF9;

    --font-serif:   'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --font-sans:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    --container-max: 1200px;
    --container-narrow: 760px;
    --gutter: 24px;
    --radius: 4px;
    --radius-lg: 8px;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.10);
    --transition: 0.2s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-stone-800);
    background: var(--color-cream);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-wine); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-wine-dark); }
ul, ol { list-style: none; }

/* ── Container ── */
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--gutter); }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 var(--gutter); }

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-serif); font-weight: 500; line-height: 1.2; color: var(--color-charcoal); }
h1 { font-size: 2.75rem; letter-spacing: -0.01em; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
.eyebrow {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-wine);
}
.subtitle {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 300;
    font-style: italic;
    color: var(--color-stone-600);
}

/* ── Header / Navigation ── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--color-white);
    border-bottom: 1px solid var(--color-stone-200);
    backdrop-filter: blur(12px);
    background: rgba(255,255,255,0.95);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.site-logo {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-wine);
    letter-spacing: 0.02em;
}
.site-logo span {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-stone-400);
    margin-top: 2px;
}
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    color: var(--color-stone-700);
    text-transform: uppercase;
    transition: color var(--transition);
}
.main-nav a:hover,
.main-nav a.active { color: var(--color-wine); }
.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    background: var(--color-wine);
    color: var(--color-white) !important;
    border-radius: var(--radius);
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.05em;
    transition: background var(--transition);
}
.nav-cta:hover { background: var(--color-wine-dark); color: var(--color-white) !important; }

/* Mobile nav */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 12px; z-index: 110; position: relative; -webkit-tap-highlight-color: transparent; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--color-charcoal); margin: 5px 0; transition: var(--transition); }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Hero / Featured ── */
.hero {
    padding: 80px 0 60px;
    border-bottom: 1px solid var(--color-stone-200);
}
.hero-featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.hero-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 16/10;
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; }
.hero-content .eyebrow { margin-bottom: 16px; }
.hero-content h1 { margin-bottom: 16px; font-size: 2.5rem; }
.hero-content .excerpt {
    font-size: 1.05rem;
    color: var(--color-stone-600);
    margin-bottom: 24px;
    line-height: 1.7;
}
.hero-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 0.85rem;
    color: var(--color-stone-500);
}
.hero-meta .dot { color: var(--color-stone-300); }

/* ── Post Cards ── */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    padding: 60px 0;
}
.post-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-stone-200);
    transition: transform var(--transition), box-shadow var(--transition);
}
.post-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.post-card__image {
    aspect-ratio: 16/10;
    overflow: hidden;
}
.post-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.post-card:hover .post-card__image img { transform: scale(1.04); }
.post-card__body { padding: 24px; }
.post-card__eyebrow { margin-bottom: 10px; }
.post-card__title {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 10px;
    color: var(--color-charcoal);
}
.post-card__title a { color: inherit; }
.post-card__title a:hover { color: var(--color-wine); }
.post-card__excerpt {
    font-size: 0.9rem;
    color: var(--color-stone-600);
    line-height: 1.6;
    margin-bottom: 16px;
}
.post-card__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.8rem;
    color: var(--color-stone-500);
}
.post-card__score {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 8px;
    background: var(--color-gold);
    color: var(--color-white);
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 2px;
    letter-spacing: 0.03em;
}

/* ── Post Single ── */
.post-hero {
    padding: 60px 0 40px;
    text-align: center;
}
.post-hero .eyebrow { margin-bottom: 16px; }
.post-hero h1 { margin-bottom: 12px; font-size: 2.75rem; max-width: 800px; margin-left: auto; margin-right: auto; }
.post-hero .subtitle { margin-bottom: 24px; max-width: 600px; margin-left: auto; margin-right: auto; }
.post-hero__meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-size: 0.85rem;
    color: var(--color-stone-500);
    padding-top: 20px;
    border-top: 1px solid var(--color-stone-200);
}
.post-hero__featured-image {
    max-width: 960px;
    margin: 40px auto 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.post-hero__featured-image img { width: 100%; }

.post-body {
    max-width: var(--container-narrow);
    margin: 0 auto;
    padding: 48px var(--gutter) 60px;
}
.post-body h2 { font-size: 1.75rem; margin: 48px 0 16px; padding-top: 24px; border-top: 1px solid var(--color-stone-200); }
.post-body h3 { font-size: 1.35rem; margin: 32px 0 12px; }
.post-body p { margin-bottom: 20px; color: var(--color-stone-700); }
.post-body p:first-of-type { font-size: 1.1rem; color: var(--color-stone-800); }
.post-body blockquote {
    margin: 32px 0;
    padding: 24px 32px;
    border-left: 3px solid var(--color-wine);
    background: var(--color-cream-dark);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-style: italic;
    color: var(--color-stone-700);
    line-height: 1.6;
}
.post-body img { border-radius: var(--radius); margin: 32px 0; }
.post-body figure { margin: 32px 0; }
.post-body figcaption { font-size: 0.85rem; color: var(--color-stone-500); text-align: center; margin-top: 8px; }
.post-body a { color: var(--color-wine); text-decoration: underline; text-underline-offset: 2px; }
.post-body ul, .post-body ol { margin: 16px 0 20px 24px; }
.post-body ul { list-style: disc; }
.post-body ol { list-style: decimal; }
.post-body li { margin-bottom: 8px; color: var(--color-stone-700); }
.post-body table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 0.9rem; }
.post-body th { background: var(--color-cream-dark); font-weight: 600; text-align: left; padding: 10px 16px; border-bottom: 2px solid var(--color-stone-200); }
.post-body td { padding: 10px 16px; border-bottom: 1px solid var(--color-stone-200); }
.post-body .video-embed { position: relative; padding-bottom: 56.25%; height: 0; margin: 32px 0; border-radius: var(--radius); overflow: hidden; }
.post-body .video-embed iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

/* Wine info card (in-article) */
.wine-info-card {
    background: var(--color-white);
    border: 1px solid var(--color-stone-200);
    border-radius: var(--radius-lg);
    padding: 32px;
    margin: 40px 0;
}
.wine-info-card h3 { font-size: 1.35rem; margin-bottom: 16px; color: var(--color-wine); }
.wine-info-card__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 32px; margin-bottom: 24px; }
.wine-info-card__item { font-size: 0.9rem; }
.wine-info-card__label { font-weight: 600; color: var(--color-stone-800); }
.wine-info-card__value { color: var(--color-stone-600); }

/* Inquiry CTA (in-article) */
.article-inquiry-cta {
    background: linear-gradient(135deg, var(--color-cream-dark) 0%, var(--color-white) 100%);
    border: 1px solid var(--color-gold-light);
    border-radius: var(--radius-lg);
    padding: 40px;
    margin: 48px 0;
    text-align: center;
}
.article-inquiry-cta p {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--color-stone-600);
    margin-bottom: 20px;
}
.article-inquiry-cta .btn-group { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.article-inquiry-cta .btn { margin: 0; flex: 1 1 220px; max-width: 300px; justify-content: center; text-align: center; padding-top: 14px; padding-bottom: 14px; }

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}
.btn-primary { background: var(--color-wine); color: var(--color-white); }
.btn-primary:hover { background: var(--color-wine-dark); color: var(--color-white); }
.btn-outline { background: transparent; color: var(--color-wine); border: 1px solid var(--color-wine); }
.btn-outline:hover { background: var(--color-wine); color: var(--color-white); }
.btn-gold { background: var(--color-gold); color: var(--color-white); }
.btn-gold:hover { background: var(--color-wine); color: var(--color-white); }
.btn-sm { padding: 6px 16px; font-size: 0.8rem; }

/* ── Sidebar (category hub, etc.) ── */
.layout-sidebar {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px;
    padding: 60px 0;
}
.sidebar-box {
    background: var(--color-white);
    border: 1px solid var(--color-stone-200);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 24px;
}
.sidebar-box h3 {
    font-size: 1rem;
    font-family: var(--font-sans);
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--color-stone-800);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--color-stone-200);
}
.sidebar-links a {
    display: block;
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--color-stone-700);
    border-bottom: 1px solid var(--color-stone-100);
}
.sidebar-links a:hover { color: var(--color-wine); }
.sidebar-links a:last-child { border-bottom: none; }

/* ── Category Hub ── */
.category-header {
    padding: 60px 0 40px;
    text-align: center;
    border-bottom: 1px solid var(--color-stone-200);
}
.category-header h1 { margin-bottom: 12px; }
.category-header p { font-size: 1.05rem; color: var(--color-stone-600); max-width: 600px; margin: 0 auto; }

.subcategory-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 24px 0;
    justify-content: center;
}
.subcategory-pill {
    display: inline-flex;
    padding: 6px 16px;
    background: var(--color-white);
    border: 1px solid var(--color-stone-200);
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-stone-700);
    transition: all var(--transition);
}
.subcategory-pill:hover,
.subcategory-pill.active { background: var(--color-wine); color: var(--color-white); border-color: var(--color-wine); }

/* ── Winery Profile ── */
.winery-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    padding: 60px 0;
}
.winery-hero__image { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; }
.winery-hero__image img { width: 100%; height: 100%; object-fit: cover; }
.winery-hero__content .eyebrow { margin-bottom: 12px; }
.winery-hero__content h1 { margin-bottom: 16px; }
.winery-hero__meta {
    display: flex;
    gap: 24px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: var(--color-stone-600);
}
.winery-hero__meta dt { font-weight: 600; color: var(--color-stone-800); }

.wines-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding: 48px 0;
}
.wine-card {
    background: var(--color-white);
    border: 1px solid var(--color-stone-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-align: center;
    padding: 32px 24px;
    transition: transform var(--transition), box-shadow var(--transition);
}
.wine-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.wine-card__image { height: 200px; margin-bottom: 20px; }
.wine-card__image img { height: 100%; width: auto; margin: 0 auto; object-fit: contain; }
.wine-card__name { font-family: var(--font-serif); font-size: 1.15rem; margin-bottom: 8px; }
.wine-card__varietal { font-size: 0.8rem; color: var(--color-stone-500); margin-bottom: 8px; }
.wine-card__score { font-family: var(--font-sans); font-weight: 700; color: var(--color-gold); font-size: 0.85rem; }

/* ── Score Badges ── */
.score-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 8px;
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 0.8rem;
    border-radius: var(--radius);
    color: var(--color-white);
}
.score-badge--exceptional { background: var(--color-wine); }
.score-badge--outstanding { background: var(--color-gold); }
.score-badge--excellent { background: var(--color-stone-600); }
.score-badge--notable { background: var(--color-stone-400); }

/* ── Inquiry Form ── */
.inquiry-section { padding: 60px 0; }
.inquiry-form {
    max-width: 640px;
    margin: 0 auto;
    background: var(--color-white);
    border: 1px solid var(--color-stone-200);
    border-radius: var(--radius-lg);
    padding: 40px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-stone-800);
    margin-bottom: 6px;
}
.form-group input:not([type="checkbox"]):not([type="radio"]),
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--color-stone-300);
    border-radius: var(--radius);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--color-stone-800);
    background: var(--color-white);
    transition: border-color var(--transition);
}

/* Wine Picker (inquiry form) */
.wine-picker { max-height: 240px; overflow-y: auto; border: 1px solid var(--color-stone-200); border-radius: var(--radius); padding: 8px 0; }
.wine-picker__item { display: flex; align-items: center; gap: 10px; padding: 8px 16px; cursor: pointer; transition: background 0.15s; font-size: 0.9rem; }
.wine-picker__item:hover { background: var(--color-cream); }
.wine-picker__item input[type="checkbox"] { flex-shrink: 0; width: 16px; height: 16px; accent-color: var(--color-wine); cursor: pointer; }
.wine-picker__name { font-weight: 500; color: var(--color-stone-800); }
.wine-picker__vintage { color: var(--color-stone-500); font-size: 0.85rem; }
.wine-picker__winery { color: var(--color-stone-400); font-size: 0.8rem; margin-left: auto; }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-wine);
    box-shadow: 0 0 0 3px rgba(114,47,55,0.08);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ── Subscribe ── */
.subscribe-bar {
    background: var(--color-stone-900);
    color: var(--color-white);
    padding: 48px 0;
    text-align: center;
}
.subscribe-bar h3 { color: var(--color-white); font-size: 1.5rem; margin-bottom: 8px; }
.subscribe-bar p { color: var(--color-stone-400); margin-bottom: 24px; font-size: 0.95rem; }
.subscribe-inline {
    display: flex;
    gap: 8px;
    max-width: 480px;
    margin: 0 auto;
}
.subscribe-inline input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--color-stone-700);
    border-radius: var(--radius);
    background: var(--color-stone-800);
    color: var(--color-white);
    font-family: var(--font-sans);
    font-size: 0.9rem;
}
.subscribe-inline input::placeholder { color: var(--color-stone-500); }
.subscribe-inline button {
    padding: 12px 24px;
    background: var(--color-wine);
    color: var(--color-white);
    border: none;
    border-radius: var(--radius);
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: background var(--transition);
}
.subscribe-inline button:hover { background: var(--color-wine-light); }

/* ── Footer ── */
.site-footer {
    background: var(--color-charcoal);
    color: var(--color-stone-400);
    padding: 60px 0 40px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--color-stone-800);
}
.footer-brand .site-logo { color: var(--color-white); }
.footer-brand p { margin-top: 12px; font-size: 0.9rem; line-height: 1.6; color: var(--color-stone-500); }
.footer-col h4 {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-stone-300);
    margin-bottom: 16px;
}
.footer-col a { display: block; padding: 4px 0; font-size: 0.9rem; color: var(--color-stone-500); transition: color var(--transition); }
.footer-col a:hover { color: var(--color-white); }
.footer-social { display: flex; gap: 16px; margin-top: 20px; }
.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--color-stone-800);
    color: var(--color-stone-400);
    transition: all var(--transition);
}
.footer-social a:hover { background: var(--color-wine); color: var(--color-white); }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    font-size: 0.8rem;
    color: var(--color-stone-600);
}
.footer-bottom a { color: var(--color-stone-500); }
.footer-bottom a:hover { color: var(--color-white); }

/* ── Pagination ── */
.pagination { display: flex; justify-content: center; gap: 8px; padding: 40px 0; }
.pagination a,
.pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border: 1px solid var(--color-stone-200);
    border-radius: var(--radius);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-stone-700);
    transition: all var(--transition);
}
.pagination a:hover { background: var(--color-cream-dark); border-color: var(--color-wine); color: var(--color-wine); }
.pagination .current { background: var(--color-wine); color: var(--color-white); border-color: var(--color-wine); }

/* ── Flash Messages ── */
.flash { padding: 12px 20px; border-radius: var(--radius); margin-bottom: 20px; font-size: 0.9rem; }
.flash-success { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }
.flash-error { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }
.flash-info { background: #eff6ff; color: #1e40af; border: 1px solid #bfdbfe; }

/* ── Breadcrumbs ── */
.breadcrumbs {
    padding: 16px 0;
    font-size: 0.8rem;
    color: var(--color-stone-500);
}
.breadcrumbs a { color: var(--color-stone-500); }
.breadcrumbs a:hover { color: var(--color-wine); }
.breadcrumbs .sep { margin: 0 8px; color: var(--color-stone-300); }

/* ── Post List (compact) ── */
.post-list-item {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid var(--color-stone-200);
    align-items: center;
}
.post-list-item__image { border-radius: var(--radius); overflow: hidden; aspect-ratio: 16/10; }
.post-list-item__image img { width: 100%; height: 100%; object-fit: cover; }
.post-list-item .eyebrow { margin-bottom: 6px; }
.post-list-item h3 { font-size: 1.15rem; margin-bottom: 6px; }
.post-list-item h3 a { color: var(--color-charcoal); }
.post-list-item h3 a:hover { color: var(--color-wine); }
.post-list-item p { font-size: 0.9rem; color: var(--color-stone-600); margin-bottom: 6px; }

/* ── Section headings ── */
.section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}
.section-heading h2 { font-size: 1.75rem; }
.section-heading a { font-size: 0.85rem; font-weight: 500; color: var(--color-wine); }

/* ── Series Navigation ── */
.series-nav {
    background: var(--color-cream-dark);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin: 40px 0;
}
.series-nav h4 { font-family: var(--font-sans); font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; color: var(--color-stone-800); }
.series-nav ol { list-style: decimal; padding-left: 20px; }
.series-nav li { padding: 6px 0; font-size: 0.9rem; }
.series-nav li a { color: var(--color-stone-700); }
.series-nav li a:hover { color: var(--color-wine); }
.series-nav li.current { font-weight: 600; color: var(--color-wine); }

/* ── Post Navigation ── */
.post-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding: 40px 0;
    border-top: 1px solid var(--color-stone-200);
}
.post-nav a {
    display: block;
    padding: 20px;
    background: var(--color-white);
    border: 1px solid var(--color-stone-200);
    border-radius: var(--radius-lg);
    transition: border-color var(--transition);
}
.post-nav a:hover { border-color: var(--color-wine); }
.post-nav__label { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--color-stone-400); margin-bottom: 8px; }
.post-nav__title { font-family: var(--font-serif); font-size: 1.1rem; color: var(--color-charcoal); }
.post-nav .next { text-align: right; }

/* ── Author Box ── */
.author-box {
    display: flex;
    gap: 20px;
    padding: 32px;
    background: var(--color-white);
    border: 1px solid var(--color-stone-200);
    border-radius: var(--radius-lg);
    margin: 40px 0;
}
.author-box__photo { width: 80px; height: 80px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.author-box__photo img { width: 100%; height: 100%; object-fit: cover; }
.author-box__info h4 { font-family: var(--font-sans); font-weight: 600; margin-bottom: 4px; }
.author-box__info .title { font-size: 0.85rem; color: var(--color-stone-500); margin-bottom: 8px; }
.author-box__info p { font-size: 0.9rem; color: var(--color-stone-600); line-height: 1.6; }

/* ── Consent Banner ── */
.consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--color-charcoal);
    color: var(--color-stone-300);
    padding: 16px 24px;
    font-size: 0.85rem;
    display: none;
}
.consent-banner.show { display: flex; align-items: center; justify-content: center; gap: 16px; }
.consent-banner a { color: var(--color-gold); }
.consent-banner button {
    padding: 8px 20px;
    background: var(--color-wine);
    color: var(--color-white);
    border: none;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .posts-grid { grid-template-columns: repeat(2, 1fr); }
    .wines-grid { grid-template-columns: repeat(2, 1fr); }
    .layout-sidebar { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    .hero-featured { grid-template-columns: 1fr; }
    .posts-grid { grid-template-columns: 1fr; gap: 24px; }
    .wines-grid { grid-template-columns: 1fr; }
    .winery-hero { grid-template-columns: 1fr; }
    .post-hero h1 { font-size: 2rem; }
    .form-row { grid-template-columns: 1fr; }
    .post-list-item { grid-template-columns: 1fr; }
    .post-nav { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    .header-inner { position: relative; }
    .nav-toggle { display: block; }
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-white);
        flex-direction: column;
        padding: 20px;
        border-bottom: 1px solid var(--color-stone-200);
        box-shadow: var(--shadow-md);
        z-index: 100;
    }
    .main-nav.open { display: flex; }
    .subscribe-inline { flex-direction: column; }
}

@media (max-width: 480px) {
    h1 { font-size: 1.75rem; }
    .container { padding: 0 16px; }
    .post-card__body { padding: 16px; }
    .inquiry-form { padding: 24px; }
}
