/* Components - Cards, Buttons, Forms */

/* ── Shared micro-components (consolidated from inline <style> blocks) ── */

/* Market logo placeholder — used in nav across all pages until real logo arrives */
.market-logo-placeholder {
    display: inline-flex; align-items: center; justify-content: center; text-align: center;
    width: 56px; height: 56px; border-radius: 50%; background: var(--spring-sage);
    color: var(--dark-blue); font-family: 'Public Sans', sans-serif; font-size: 0.68rem;
    font-weight: 600; line-height: 1.1; padding: 0.35rem; letter-spacing: 0.01em;
}

/* Footer credits toggle arrow rotation */
.footer-credits[open] .credits-arrow { transform: rotate(180deg); }

/* Page Banner (SFM uses Summer Gold instead of ES Light Blue) */
.page-banner {
    background-color: var(--summer-gold);
    padding: 4rem 2rem;
    text-align: center;
}

.banner-content {
    max-width: var(--container-xl);
    margin: 0 auto;
}

/* Logo Cards for Home Page */
.logo-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    margin: var(--space-xl) 0;
}

.logo-card {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-xl);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    border: 1px solid var(--border-light);
}

.logo-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--lake-blue);
}

.logo-card:focus-visible {
    outline: 2px solid var(--primary-blue);
    outline-offset: 4px;
}

.logo-card img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
}

.logo-card h3 {
    font-family: 'Adriano Etc', 'Courier New', monospace;
    color: var(--primary-blue);
    font-size: var(--font-size-2xl);
    margin: 0;
    font-weight: normal;
}

/* Landing Cards for Home Page - New Design */
.landing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-flow: row;
    gap: var(--space-xl);
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 var(--space-md);
    justify-items: stretch;
    align-items: stretch;
}

.landing-card {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    position: relative;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    border: 1px solid var(--border-light);
    padding: 8px;
    padding-bottom: 0;
    background: var(--white);
    overflow: hidden;
}

.landing-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--medium-blue);
}

.landing-card:focus-visible {
    outline: 2px solid var(--primary-blue);
    outline-offset: 4px;
}

.landing-card-photo {
    position: relative;
    flex-shrink: 0;
}

.landing-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    border-radius: calc(var(--radius-lg) - 6px);
}

.landing-card p {
    font-size: 0.88rem;
    line-height: 1.55;
    color: var(--text-secondary);
    margin: 0;
    padding: 0.85rem 0.75rem 1rem;
    flex: 1;
}

.landing-card h3 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Adriano Etc', 'Courier New', monospace;
    color: var(--navy-blue);
    font-size: clamp(1.5rem, 4vw, 1.5rem);
    margin: 0;
    font-weight: normal;
    background: rgba(255, 255, 255, 0.9);
    padding: clamp(0.75rem, 1.5vw, 0.875rem) clamp(1.75rem, 5vw, 2.5rem);
    border-radius: var(--radius-lg);
    white-space: nowrap;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md);
    z-index: 2;
}

.landing-card:hover h3 {
    background: var(--bright-blue);
    color: var(--navy-blue);
    box-shadow: var(--shadow-lg);
}

/* Info Cards */
.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-md);
    margin: var(--space-lg) 0;
}

.info-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    transition: all var(--transition-base);
}

.info-card:hover {
    border-color: var(--lake-blue);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.info-card h3 {
    font-family: 'Adriano Etc', 'Courier New', monospace;
    color: var(--primary-blue);
    font-size: var(--font-size-xl);
    margin: 0 0 var(--space-sm) 0;
    font-weight: normal;
}

.info-card p {
    font-size: var(--font-size-base);
    line-height: var(--leading-relaxed);
    color: var(--text-secondary);
}

/* Image-Text Pairs */
.image-text-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
    margin-bottom: var(--space-xl);
}

.image-text-pair img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.image-text-pair h3 {
    font-family: 'Adriano Etc', 'Courier New', monospace;
    color: var(--primary-blue);
    font-size: var(--font-size-xl);
    margin: 0;
    font-weight: normal;
    line-height: var(--leading-normal);
}

/* Committee Members */
.members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: var(--space-md);
    margin: var(--space-lg) 0;
}

.member-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    transition: all var(--transition-base);
}

.member-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--lake-blue);
}

.member-photo {
    width: 110px;
    height: 110px;
    border-radius: var(--radius-full);
    object-fit: cover;
    margin: 0 auto var(--space-sm);
    display: block;
    border: 3px solid var(--lake-blue);
    box-shadow: var(--shadow-sm);
}

.member-card h4 {
    font-family: 'Adriano Etc', 'Courier New', monospace;
    color: var(--primary-blue);
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-xs);
    font-weight: normal;
}

.member-card p {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    line-height: var(--leading-normal);
}

/* Sponsors */
.sponsors-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: var(--space-md);
    margin: var(--space-lg) 0 var(--space-2xl) 0;  /* 32px top, 64px bottom - match text columns */
}

.sponsor-logo {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: var(--space-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 140px;
    width: 200px;  /* Fixed width for consistent sizing */
    max-width: 200px;
    color: var(--medium-blue); /* Softer blue - #4D7DB8 */
    font-size: 1.125rem; /* 18px - larger text */
    font-weight: 500; /* Medium weight - softer appearance */
    line-height: 1.4; /* Better line spacing */
    text-align: center; /* Explicit center alignment */
    transition: all var(--transition-base);
}

.sponsor-logo:hover {
    border-color: var(--lake-blue);
    box-shadow: var(--shadow-sm);
}

.text-logo {
    font-family: 'Public Sans', sans-serif;
    color: var(--navy-blue);
    font-size: var(--font-size-lg);
    font-weight: 600;
    text-align: center;
    line-height: var(--leading-snug);
}

/* Shop Products */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--space-md);
    margin: var(--space-lg) 0;
}

.product-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--lake-blue);
}

.product-image {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, var(--sky-blue-light), var(--lake-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: var(--font-bold);
}

.product-info {
    padding: var(--space-xl);
}

.product-info h3 {
    font-family: 'Adriano Etc', 'Courier New', monospace;
    color: var(--primary-blue);
    font-size: var(--font-size-xl);
    margin: 0 0 var(--space-xs) 0;
    font-weight: normal;
}

.product-info p {
    font-size: var(--font-size-sm);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-sm);
    color: var(--text-secondary);
}

/* CTA Buttons */
.cta-button {
    display: inline-block;
    padding: 0.875rem var(--space-lg);
    background: var(--medium-green); /* #639605 - solid color */
    color: var(--white);
    text-decoration: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: all var(--transition-base);
    border: 2px solid transparent;
    cursor: pointer;
    font-family: 'Public Sans', sans-serif;
    font-size: var(--font-size-base);
    box-shadow: var(--shadow-sm);
    letter-spacing: 0.01em;
}

.cta-button:hover {
    background: var(--dark-green); /* #0F590D */
    border: 2px solid var(--dark-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(15, 89, 13, 0.3);
}

.cta-button:focus-visible {
    outline: 3px solid var(--medium-green);
    outline-offset: 3px;
}

.cta-button:active {
    transform: translateY(0);
}

/* Blue button variant for content cards */
.cta-button.content-button-blue {
    background: var(--medium-blue); /* #4D7DB8 */
    border: 2px solid transparent;
}

.cta-button.content-button-blue:hover {
    background: var(--dark-blue); /* #2D5475 */
    border: 2px solid var(--dark-blue);
    box-shadow: 0 4px 12px rgba(45, 84, 117, 0.3);
}

.cta-button-secondary {
    background: var(--medium-blue); /* #4D7DB8 - same as content cards */
    border: 2px solid transparent;
}

.cta-button-secondary:hover {
    background: var(--dark-blue); /* #2D5475 - same as content cards */
    border: 2px solid var(--dark-blue);
    box-shadow: 0 4px 12px rgba(45, 84, 117, 0.3);
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: var(--space-lg) 0;
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-group label {
    display: block;
    margin-bottom: var(--space-xs);
    font-weight: 600;
    font-family: 'Public Sans', sans-serif;
    color: var(--navy-blue);
    font-size: var(--font-size-sm);
    letter-spacing: 0.01em;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem var(--space-sm);
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-md);
    font-size: var(--font-size-base);
    font-family: inherit;
    transition: all var(--transition-base);
    color: var(--text-primary);
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--lake-blue);
    box-shadow: 0 0 0 3px rgba(91, 141, 184, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-400);
}

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

/* Daisie Award Winners Map Module */
.award-winners-section {
    background: var(--bg-light);
    padding: var(--space-2xl) 0;
    margin: var(--space-3xl) 0;
    border-radius: var(--radius-xl);
}

.map-container {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: var(--space-lg);
    margin-top: var(--space-lg);
}

#daysies-map {
    height: 500px;
    width: 100%;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
}

.map-legend {
    margin-top: var(--space-md);
    padding: var(--space-sm);
    background: var(--bg-light);
    border-radius: var(--radius-md);
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-lg);
    align-items: center;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: var(--font-size-sm);
}

.legend-icon {
    width: 12px;
    height: 12px;
    border-radius: var(--radius-full);
}

.legend-2023 { background: #e74c3c; }
.legend-2024 { background: #3498db; }
.legend-2025 { background: #2ecc71; }

.winner-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    margin-bottom: var(--space-sm);
    transition: all var(--transition-base);
}

.winner-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--lake-blue);
}

.winner-card h4 {
    font-family: 'Adriano Etc', 'Courier New', monospace;
    color: var(--primary-blue);
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-xs);
    font-weight: normal;
}

.winner-card p {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.winner-year {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-md);
    font-size: var(--font-size-xs);
    font-weight: var(--font-semibold);
    color: var(--white);
    margin-top: var(--space-xs);
}

.year-2023 { background: #e74c3c; }
.year-2024 { background: #3498db; }
.year-2025 { background: #2ecc71; }

.winners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

/* Attraction Links Styling */
.content-section h3 a {
    color: var(--primary-blue);
    text-decoration: underline;
    text-decoration-color: rgba(74, 123, 167, 0.3);
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
    transition: all var(--transition-base);
}

.content-section h3 a:hover {
    color: var(--lake-blue);
    text-decoration-color: rgba(91, 141, 184, 0.8);
}

/* External link icon */
.content-section h3 a::after {
    content: " ↗";
    font-size: 0.75em;
    vertical-align: super;
    opacity: 0.6;
    margin-left: 0.2em;
}

.content-section h3 a:hover::after {
    opacity: 1;
}

/* Attraction Cards - 2-column responsive grid */
.attractions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin: var(--space-lg) 0;
}

@media (min-width: 768px) {
    .attractions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Allow intro paragraphs to span full width */
.content-section > p[style*="font-size"] {
    max-width: 100%;
}

.attraction-card {
    background: var(--white);
    border: 2px solid #e8ecef;
    border-radius: var(--radius-lg);
    padding: 20px;
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
}

.attraction-card:hover {
    border-color: var(--lake-blue);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

/* Target h3 directly instead of using .attraction-title class */
.attraction-card h3 {
    font-family: 'Adriano Etc', 'Courier New', monospace;
    font-size: var(--font-size-xl);
    color: var(--primary-blue);
    font-weight: normal;
    text-decoration: none;
    display: block;
    margin: 0 0 0.75rem 0 !important;
    transition: color 0.2s;
}

.attraction-card:hover h3 {
    color: var(--lake-blue);
}

/* Target p directly instead of using .attraction-description class */
.attraction-card p {
    color: var(--text-secondary);
    line-height: var(--leading-relaxed);
    margin: 0 0 1rem 0 !important;
    font-size: var(--font-size-base);
}

/* Target div directly instead of using .attraction-awards class */
.attraction-card > div {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
    margin-top: 0 !important;
}

.award-badge {
    background: #f0f7ff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    color: var(--text-primary);
    border: 1px solid #d4e7f7;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* Video Cards - Full Width Stacked */
.video-cards {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    margin: var(--space-lg) 0;
    max-width: 100%;
}

.video-card {
    background: var(--white);
    border: 2px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.video-card:hover {
    border-color: var(--lake-blue);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.video-card-embed {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    background: var(--gray-800);
}

.video-card-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-card-content {
    padding: var(--space-lg);
    background: var(--white);
}

.video-card-source {
    font-size: var(--font-size-xs);
    color: var(--text-tertiary);
    margin-bottom: var(--space-xs);
    font-weight: var(--font-semibold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.video-card-content h3 {
    font-family: 'Adriano Etc', 'Courier New', monospace;
    color: var(--primary-blue);
    font-size: var(--font-size-xl);
    margin: 0 0 var(--space-sm) 0;
    font-weight: normal;
    line-height: var(--leading-snug);
}

.video-card-content p {
    font-size: var(--font-size-base);
    line-height: var(--leading-relaxed);
    color: var(--text-secondary);
    margin: 0;
}

/* Partner Recognition - Community Partners (2 columns) */
.community-partners-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.375rem var(--space-xl);  /* 6px row gap, 48px column gap */
    margin: var(--space-lg) 0 var(--space-2xl) 0;  /* 32px top, 64px bottom */
    justify-items: center;
    width: 100%;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Partner Recognition - Grass Roots Partners (3 columns) */
.grassroots-partners-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.375rem var(--space-lg);  /* 6px row gap, 32px column gap */
    margin: var(--space-lg) 0 var(--space-2xl) 0;  /* 32px top, 64px bottom */
    justify-items: center;
    width: 100%;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Partner Name Styling */
.partner-name {
    text-align: center;
    color: var(--text-secondary);
    font-size: var(--font-size-base);
    line-height: var(--leading-normal);
    padding: 0.25rem var(--space-xs);  /* 4px vertical, 8px horizontal */
    width: 100%;
}

/* Empty Partner Placeholders */
.sponsor-logo--empty {
    min-height: 80px;
    border: 2px dashed var(--medium-blue);
    border-radius: var(--radius-lg);
    opacity: 0.4;
    background: transparent;
}

.partner-name--empty {
    min-height: 1.5em;
    border: 1px dashed var(--medium-blue);
    border-radius: var(--radius-sm);
    opacity: 0.4;
    width: 120px;
}

/* ========================================
   CENTRALIZED CONTENT CARD SYSTEM
   ======================================== */

/* Base Content Card Structure */
.content-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    padding: 3.5rem 3rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    margin: 3rem 0;
}

.content-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.content-card:focus-visible,
.content-card:focus-within {
    outline: 2px solid var(--primary-blue);
    outline-offset: 4px;
}

/* Content Card Headings */
.content-card h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 2.25rem;
    font-family: 'Adriano Etc', 'Courier New', monospace;
    font-weight: normal;
    transition: color var(--transition-base);
    position: relative;
    z-index: 1;
}

/* Smaller heading variant for grid cards */
.content-card.compact h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

/* Content Card Paragraphs */
.content-card p {
    font-size: 1.2rem;
    line-height: 1.8;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
    position: relative;
    z-index: 1;
    flex: 1;
}

/* Smaller paragraph variant for grid cards */
.content-card.compact p {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Content Card Buttons - Unified Blue Scheme */
.content-card .cta-button {
    background: var(--medium-blue); /* #4D7DB8 */
    color: white;
    padding: 0.95rem 2.25rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all var(--transition-base);
    border: none;
    cursor: pointer;
    display: inline-block;
    position: relative;
    z-index: 1;
    margin-top: auto;
}

.content-card:hover .cta-button {
    background: var(--dark-blue); /* #2D5475 */
    color: white;
    box-shadow: var(--shadow-md);
}

/* ========================================
   CONTENT CARD BACKGROUND VARIANTS
   ======================================== */

/* White Background - For alternating patterns */
.content-card--white {
    background: var(--white);
    border: 2px solid var(--border-light);
}

.content-card--white:hover {
    border-color: var(--lake-blue);
}

.content-card--white h2 {
    color: var(--medium-blue);
}

.content-card--white:hover h2 {
    color: var(--lake-blue);
}

.content-card--white p {
    color: var(--text-secondary);
}

/* Light Blue Background - Default content card */
.content-card--light-blue {
    background: var(--light-blue); /* #D1E5FC */
    border: 2px solid transparent;
}

.content-card--light-blue:hover {
    border-color: var(--bright-blue);
}

.content-card--light-blue h2 {
    color: var(--dark-blue);
}

.content-card--light-blue p {
    color: var(--dark-blue);
}

/* Bright Blue Background - For emphasis/CTA cards */
.content-card--bright-blue {
    background: var(--bright-blue); /* #8FCCFF */
    border: 2px solid transparent;
}

.content-card--bright-blue:hover {
    border-color: var(--medium-blue);
}

.content-card--bright-blue h2 {
    color: var(--dark-blue);
}

.content-card--bright-blue p {
    color: var(--dark-blue);
}

/* ========================================
   NAMED CONTENT CARD CLASSES
   (Extend base classes for backward compatibility)
   ======================================== */

/* Work Card - White background content card */
.work-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    background: var(--white);
    padding: 3.5rem 3rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--border-light);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    margin: 3rem 0;
}

.work-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--lake-blue);
}

.work-card:focus-within {
    outline: 2px solid var(--primary-blue);
    outline-offset: 4px;
}

.work-card h2 {
    text-align: center;
    color: var(--medium-blue);
    margin-bottom: 1.5rem;
    font-size: 2.25rem;
    font-family: 'Adriano Etc', 'Courier New', monospace;
    font-weight: normal;
    transition: color var(--transition-base);
}

.work-card:hover h2 {
    color: var(--lake-blue);
}

.work-card p {
    font-size: 1.2rem;
    line-height: 1.8;
    text-align: center;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 2rem;
}

.work-card .cta-button {
    background: var(--medium-blue) !important; /* #4D7DB8 - FORCE BLUE */
    color: white;
    padding: 0.95rem 2.25rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all var(--transition-base);
    border: 2px solid transparent;
    cursor: pointer;
    display: inline-block;
}

.work-card:hover .cta-button {
    background: var(--dark-blue) !important; /* #2D5475 - FORCE DARK BLUE */
    color: white;
    border: 2px solid var(--dark-blue);
    box-shadow: 0 4px 12px rgba(45, 84, 117, 0.3);
}

/* Community Calendar Card - Light blue content card */
.community-calendar-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    background: var(--light-blue);
    padding: 3.5rem 3rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    margin: 3rem 0;
}

.community-calendar-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--bright-blue);
}

.community-calendar-card:focus-visible {
    outline: 2px solid var(--primary-blue);
    outline-offset: 4px;
}

.community-calendar-card h2 {
    color: var(--dark-blue);
    margin-bottom: 1.5rem;
    font-size: 2.25rem;
    font-family: 'Adriano Etc', 'Courier New', monospace;
    font-weight: normal;
    position: relative;
    z-index: 1;
}

.community-calendar-card p {
    color: var(--dark-blue);
    font-size: 1.2rem;
    line-height: 1.8;
    margin: 0 auto 2rem;
    max-width: 800px;
    position: relative;
    z-index: 1;
    flex: 1;
}

.community-calendar-card .cta-button {
    background: var(--medium-blue);
    color: white;
    font-weight: 600;
    font-size: 1.05rem;
    padding: 0.95rem 2.25rem;
    position: relative;
    z-index: 1;
    display: inline-block;
    margin-top: auto;
}

.community-calendar-card:hover .cta-button {
    background: var(--dark-blue);
    color: white;
    box-shadow: var(--shadow-md);
}

/* Volunteer Card - Green CTA emphasis card */
.volunteer-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    background: var(--medium-green); /* #639605 - CTA emphasis color */
    padding: 3.5rem 3rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    margin: 3rem auto;
    max-width: 700px; /* Narrower for emphasis */
}

.volunteer-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--dark-green);
}

.volunteer-card:focus-visible {
    outline: 2px solid var(--dark-green);
    outline-offset: 4px;
}

.volunteer-card h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 2.25rem;
    font-family: 'Adriano Etc', 'Courier New', monospace;
    font-weight: normal;
    position: relative;
    z-index: 1;
}

.volunteer-card p {
    color: var(--white);
    font-size: 1.2rem;
    line-height: 1.8;
    margin: 0 auto 2rem;
    max-width: 800px;
    position: relative;
    z-index: 1;
    flex: 1;
}

.volunteer-card .cta-button {
    background: var(--dark-green); /* #0F590D */
    color: white;
    font-weight: 600;
    font-size: 1.05rem;
    padding: 0.95rem 2.25rem;
    position: relative;
    z-index: 1;
    display: inline-block;
    margin-top: auto;
    border: 2px solid transparent;
    transition: all var(--transition-base);
}

.volunteer-card:hover .cta-button {
    background: var(--white);
    color: var(--dark-green);
    border: 2px solid var(--white);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

/* Side-by-Side CTA Cards Grid */
.cta-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem auto;
    max-width: 1000px;
}

.cta-cards-grid .partnership-card,
.cta-cards-grid .contact-us-card {
    margin: 0;
    max-width: none;
}

/* Old green CTA contact card removed — replaced by compact contact-card below */

/* Contact Us Card - Green CTA card */
.contact-us-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    background: var(--medium-green); /* #639605 - CTA emphasis color */
    padding: 3.5rem 3rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    margin: 3rem auto;
    max-width: 700px;
}

.contact-us-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--dark-green);
}

.contact-us-card:focus-visible {
    outline: 2px solid var(--dark-green);
    outline-offset: 4px;
}

.contact-us-card h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 2.25rem;
    font-family: 'Adriano Etc', 'Courier New', monospace;
    font-weight: normal;
    position: relative;
    z-index: 1;
}

.contact-us-card p {
    color: var(--white);
    font-size: 1.2rem;
    line-height: 1.8;
    margin: 0 auto 2rem;
    max-width: 800px;
    position: relative;
    z-index: 1;
    flex: 1;
}

.contact-us-card .cta-button {
    background: var(--dark-green); /* #0F590D */
    color: white;
    font-weight: 600;
    font-size: 1.05rem;
    padding: 0.95rem 2.25rem;
    position: relative;
    z-index: 1;
    display: inline-block;
    margin-top: auto;
    border: 2px solid transparent;
    transition: all var(--transition-base);
}

.contact-us-card:hover .cta-button {
    background: var(--white);
    color: var(--dark-green);
    border: 2px solid var(--white);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

/* Team Card - Light blue content card */
.team-card {
    display: flex;
    flex-direction: column;
    background: var(--light-blue);
    padding: 3.5rem 3rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
    transition: all var(--transition-base);
    cursor: pointer;
    margin: 3rem 0;
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--bright-blue);
}

.team-card:focus-within {
    outline: 2px solid var(--primary-blue);
    outline-offset: 4px;
}

.team-card h2 {
    text-align: center;
    color: var(--dark-blue);
    margin-bottom: 1.5rem;
    font-size: 2.25rem;
    font-family: 'Adriano Etc', 'Courier New', monospace;
    font-weight: normal;
}

.team-card p {
    font-size: 1.2rem;
    line-height: 1.8;
    text-align: center;
    color: var(--dark-blue);
    max-width: 800px;
    margin: 0 auto 2rem;
}

.team-card .cta-button {
    background: var(--medium-blue); /* #4D7DB8 */
    color: white;
    padding: 0.95rem 2.25rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all var(--transition-base);
    border: 2px solid transparent;
    cursor: pointer;
    display: inline-block;
}

.team-card:hover .cta-button {
    background: var(--dark-blue); /* #2D5475 */
    color: white;
    border: 2px solid var(--dark-blue);
    box-shadow: 0 4px 12px rgba(45, 84, 117, 0.3);
}

/* Partnership Card - Green CTA emphasis card */
.partnership-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    background: var(--medium-green); /* #639605 - CTA emphasis color */
    padding: 3.5rem 3rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    margin: 3rem auto;
    max-width: 700px;
}

.partnership-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--dark-green);
}

.partnership-card:focus-visible {
    outline: 2px solid var(--dark-green);
    outline-offset: 4px;
}

.partnership-card h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 2.25rem;
    font-family: 'Adriano Etc', 'Courier New', monospace;
    font-weight: normal;
    position: relative;
    z-index: 1;
}

.partnership-card p {
    color: var(--white);
    font-size: 1.2rem;
    line-height: 1.8;
    margin: 0 auto 2rem;
    max-width: 800px;
    position: relative;
    z-index: 1;
    flex: 1;
}

.partnership-card .cta-button {
    background: var(--dark-green); /* #0F590D */
    color: white;
    font-weight: 600;
    font-size: 1.05rem;
    padding: 0.95rem 2.25rem;
    position: relative;
    z-index: 1;
    display: inline-block;
    margin-top: auto;
    border: 2px solid transparent;
    transition: all var(--transition-base);
}

.partnership-card:hover .cta-button {
    background: var(--white);
    color: var(--dark-green);
    border: 2px solid var(--white);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

/* Postcard Hero — displays image at natural aspect ratio, no cropping */
.hero.postcard-hero {
    height: auto;
    max-height: none;
    min-height: 0;
    overflow: visible;

}

.hero.postcard-hero .hero-image {
    position: relative;
    width: 100%;
    height: auto;
    object-fit: fill;
}

/* Postcard Carousel — slides and dot navigation */
.postcard-slides {
    position: relative;
    width: 100%;
}

.postcard-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0s 0.5s;
    pointer-events: none;
    z-index: 0;
}

/* First slide sets the container height (keeps layout flow) */
.postcard-slide:first-child {
    position: relative;
}

.postcard-slide.active {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease, visibility 0s 0s;
    pointer-events: auto;
    z-index: 1;
}

.postcard-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.postcard-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.85);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s ease, transform 0.2s ease;
}

.postcard-dot.active {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.2);
}

.postcard-dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

/* ── Postcard Overlay System ──────────────────────────────────
   CSS-based text overlays on clean background photos.
   Headline (top-left) and logo (bottom-left) are fixed.
   Center text card position is configurable via modifier class:
     --center, --lower-right, --upper-right
*/

.postcard-overlay {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    /* Maintain 2:1 aspect ratio */
    aspect-ratio: 2 / 1;
}

/* Gradient overlays for text legibility */
.postcard-overlay::before,
.postcard-overlay::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 30%;
    z-index: 1;
    pointer-events: none;
}

.postcard-overlay::before {
    top: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0) 100%);
}

.postcard-overlay::after {
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0) 100%);
}

/* Headline — top-left, Adriano Etc
   top value slightly larger than logo's bottom (5.7%) to compensate
   for font ascent above visible glyphs — visually symmetric */
.postcard-headline {
    position: absolute;
    top: 9%;
    left: 2.9%;
    z-index: 2;
    font-family: 'Adriano Etc', 'Courier New', monospace;
    font-size: clamp(1rem, 2.7vw, 3.2rem);
    color: white;
    text-shadow: 1px 1px 6px rgba(0,0,0,0.5), 0 0 20px rgba(0,0,0,0.2);
    letter-spacing: -0.01em;
    line-height: 1.1;
    white-space: nowrap;
}

/* Logo — bottom-left */
.postcard-logo {
    position: absolute;
    bottom: 5.7%;
    left: 2.9%;
    z-index: 2;
    height: clamp(40px, 6.2vw, 120px);
    width: auto;
}

/* ── Center text card (floating rounded rectangle) ── */
.postcard-card {
    position: absolute;
    z-index: 2;
    background: rgba(0, 0, 0, 0.55);
    border-radius: clamp(6px, 0.6vw, 12px);
    padding: clamp(12px, 2vw, 38px) clamp(16px, 3.4vw, 65px);
    text-align: center;
    max-width: 50%;
}

/* Decorative rules above and below text content */
.postcard-card::before,
.postcard-card::after {
    content: '';
    display: block;
    height: 1px;
    background: rgba(255, 255, 255, 0.35);
    margin: 0 clamp(4px, 1vw, 20px);
}

.postcard-card::before {
    margin-bottom: clamp(8px, 0.8vw, 16px);
}

.postcard-card::after {
    margin-top: clamp(8px, 0.8vw, 16px);
}

/* Card text lines */
.postcard-card-line1 {
    display: block;
    font-family: 'Public Sans', sans-serif;
    font-size: clamp(0.6rem, 1.9vw, 2rem);
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.02em;
    margin-bottom: clamp(4px, 0.6vw, 12px);
}

.postcard-card-hero {
    display: block;
    font-family: 'Adriano Etc', 'Courier New', monospace;
    font-size: clamp(1.2rem, 4.7vw, 5.5rem);
    color: white;
    line-height: 1.05;
    margin-bottom: clamp(4px, 0.6vw, 14px);
}

.postcard-card-tagline {
    display: block;
    font-family: 'Public Sans', sans-serif;
    font-size: clamp(0.6rem, 1.9vw, 2rem);
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.01em;
}

/* ── Position variants ── */

/* Center — horizontally and vertically centered */
.postcard-card--center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Lower-right — offset from bottom-right corner */
.postcard-card--lower-right {
    bottom: 5.7%;
    right: 2.9%;
}

/* Upper-right — offset from top-right corner */
.postcard-card--upper-right {
    top: 5.7%;
    right: 2.9%;
}


/* ========================================
   PHASE 1 COMPONENTS — SFM-specific
   ======================================== */

/* Page title bar — slim header for inner pages without a hero */
.page-title-bar {
    background: var(--summer-gold);
    padding: 2rem 2rem 1.75rem;
    text-align: center;
}
.page-title-bar h1 {
    font-family: 'Adriano Etc', serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--dark-blue);
    margin: 0 0 0.25rem;
    font-weight: 400;
}
.page-title-bar .page-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0;
    max-width: 40ch;
    margin-left: auto;
    margin-right: auto;
}

/* Filter bar — horizontal pill buttons for vendor categories */
.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    padding: 1rem 2rem;
    max-width: var(--container-xl);
    margin: 0 auto;
}
.filter-pill {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    border: 2px solid var(--medium-green);
    border-radius: var(--radius-full);
    background: transparent;
    color: var(--medium-green);
    font-family: 'Public Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    text-decoration: none;
}
.filter-pill:hover {
    background: var(--spring-sage);
    color: var(--dark-blue);
    border-color: var(--spring-sage);
}
.filter-pill.active {
    background: var(--medium-green);
    color: var(--white);
    border-color: var(--medium-green);
}

/* Category badge/pill — small inline tag on vendor cards */
.badge {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    background: var(--light-blue);
    color: var(--dark-blue);
}
.badge--agricultural { background: #e8f5e9; color: #2e7d32; }
.badge--prepared { background: #fff3e0; color: #e65100; }
.badge--artisan { background: #e8eaf6; color: #283593; }
.badge--service { background: #fce4ec; color: #c62828; }
.badge--nonprofit { background: #e0f2f1; color: #00695c; }

/* Vendor card — tighter card for directory grid */
.card-vendor {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition-base);
}
.card-vendor:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.card-vendor .vendor-photo {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    background: var(--off-white);
}
.card-vendor .vendor-info {
    padding: 1rem;
}
.card-vendor .vendor-name {
    font-weight: 700;
    font-size: 1rem;
    color: var(--dark-blue);
    margin: 0 0 0.35rem;
}
.card-vendor .vendor-tagline {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0.35rem 0 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Vendor grid */
.vendor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-lg);
    max-width: var(--container-xl);
    margin: 0 auto;
    padding: 1.5rem 2rem;
}

/* Callout boxes */
.callout {
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-md);
    margin: 1.5rem 0;
    font-size: 0.95rem;
    line-height: 1.6;
}
.callout--warn {
    background: #fff8e1;
    border-left: 4px solid #f9a825;
    color: #5d4037;
}
.callout--neutral {
    background: var(--light-blue);
    border-left: 4px solid var(--medium-blue);
    color: var(--dark-blue);
}
.callout--green {
    background: #e8f5e9;
    border-left: 4px solid var(--medium-green);
    color: #1b5e20;
}

/* Profile card — for Advisory Committee grid */
.card-profile {
    text-align: center;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 1.5rem 1rem;
    transition: all var(--transition-base);
}
.card-profile:hover {
    box-shadow: var(--shadow-md);
}
.card-profile .profile-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
    display: block;
    background: var(--off-white);
    border: 3px solid var(--light-blue);
}
.card-profile .profile-name {
    font-weight: 700;
    font-size: 1rem;
    color: var(--dark-blue);
    margin: 0 0 0.25rem;
}
.card-profile .profile-role {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Profile grid */
.profile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: var(--space-lg);
    max-width: var(--container-xl);
    margin: 0 auto;
    padding: 1.5rem 2rem;
}

/* Section anchors — offset for fixed nav */
.section-anchor {
    scroll-margin-top: 120px;
}

/* Two-column layout for content sections */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: start;
    max-width: var(--container-xl);
    margin: 0 auto;
    padding: 0 2rem;
}
@media (max-width: 768px) {
    .two-col {
        grid-template-columns: 1fr;
    }
}

/* Highlight card — links from Shop page to sub-pages */
.highlight-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
    max-width: var(--container-xl);
    margin: 0 auto;
    padding: 1.5rem 2rem;
}
.highlight-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    padding: 8px;
    padding-bottom: 0;
}
.highlight-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--medium-blue);
}
.highlight-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: calc(var(--radius-lg) - 6px);
}
.highlight-card .highlight-body {
    padding: 1.25rem;
}
.highlight-card h3 {
    margin: 0 0 0.5rem;
    font-size: 1.1rem;
    color: var(--dark-blue);
}
.highlight-card p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Contact Card — reusable "talk to Sarah" CTA across pages */
.contact-card {
    display: inline-flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem 2rem;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-left: 4px solid var(--medium-blue);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-base);
    max-width: 400px;
}
.contact-card:hover {
    border-color: var(--medium-blue);
    border-left-color: var(--dark-blue);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}
.contact-card:hover .contact-card-arrow {
    transform: translateX(4px);
}
.contact-card-info {
    flex: 1;
    min-width: 0;
}
.contact-card-name {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--dark-blue);
    margin: 0;
    line-height: 1.3;
}
.contact-card-role {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0.2rem 0 0;
}
.contact-card-action {
    font-size: 0.85rem;
    color: var(--medium-blue);
    font-weight: 700;
    margin: 0.5rem 0 0;
}
.contact-card-arrow {
    font-size: 1.5rem;
    color: var(--medium-blue);
    flex-shrink: 0;
    transition: transform var(--transition-fast);
}

/* ── Footer newsletter signup band ─────────────────────────────────── */
/* Sits at the top of <footer>, above .footer-simplified. Beehiiv embed
   renders into the container; we control only the surrounding context
   (heading + sub) and the band's container styling. */
/* "This Saturday" card action buttons — bottom of card.
   Two CTAs: primary green "Get weekly preview" (Beehiiv subscribe) +
   secondary outlined "This week's full list" (vendors.html). Replaces
   the old single bottom text link. */
.saturday-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.25rem;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.saturday-action-btn {
    display: inline-block;
    padding: 0.5rem 1.1rem;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: 'Public Sans', sans-serif;
    border-radius: var(--radius-md);
    text-decoration: none;
    text-align: center;
    transition: all var(--transition-base);
    border: 2px solid transparent;
    letter-spacing: 0.01em;
}
.saturday-action-primary {
    background: var(--medium-green);
    color: var(--white);
    border-color: var(--medium-green);
}
.saturday-action-primary:hover {
    background: var(--dark-green);
    border-color: var(--dark-green);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(15, 89, 13, 0.25);
}
.saturday-action-secondary {
    background: transparent;
    color: var(--dark-blue);
    border-color: var(--dark-blue);
}
.saturday-action-secondary:hover {
    background: var(--dark-blue);
    color: var(--white);
    transform: translateY(-1px);
}
@media (max-width: 600px) {
    .saturday-actions { flex-direction: column; align-items: stretch; }
    .saturday-action-btn { width: 100%; }
}

.footer-newsletter {
    background: var(--summer-gold);
    padding: var(--section-padding-y) 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.footer-newsletter-inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}
/* Force-center every direct child of the inner wrapper.
   Beehiiv's loader injects a div/iframe that doesn't respect parent flex,
   so we use auto margins on every child for belt-and-suspenders centering. */
.footer-newsletter-inner > * {
    margin-left: auto !important;
    margin-right: auto !important;
}
/* Beehiiv-specific selectors (covers various class patterns the loader uses) */
.footer-newsletter-inner [class*="beehiiv"],
.footer-newsletter-inner iframe,
.footer-newsletter-inner form {
    margin-left: auto !important;
    margin-right: auto !important;
    display: block;
}
.footer-newsletter h3 {
    font-family: 'Adriano Etc', 'Courier New', monospace;
    font-size: clamp(1.4rem, 3vw, 1.75rem);
    color: var(--dark-blue);
    margin: 0 0 0.5rem;
    font-weight: normal;
    line-height: 1.2;
}
.footer-newsletter p {
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--text-secondary);
    margin: 0 auto 1.25rem;
    max-width: 52ch;
}

/* ── Vendor voice block (vendor profile pages) ────────────────────── */
/* Sage-bordered pull-quote at the top of each vendor profile. Previously
   inlined per-page; now site-wide so backfill-generated pages without inline
   CSS (CINC, CVCR, etc.) get the same look as apply-pipeline-generated ones. */
.vendor-voice-block {
    background: var(--sage-mist);
    border-left: 4px solid var(--medium-green);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    padding: 1.5rem 1.75rem;
    margin: var(--space-lg) 0;
}
.vendor-voice-block blockquote {
    margin: 0;
    font-size: 1.1rem;
    font-style: italic;
    color: var(--dark-blue);
    line-height: var(--leading-relaxed);
}
.vendor-voice-block cite {
    display: block;
    margin-top: 0.75rem;
    font-size: 0.85rem;
    font-style: normal;
    color: var(--text-secondary);
}

/* ── Musician feature card (events.html) ──────────────────────────── */
/* Reusable template for live-music guest features. One card per Saturday's
   musician. Hero photo on top, body below with wordmark + bio + social row. */
.musician-feature {
    max-width: var(--container-lg);
    margin: 0 auto var(--space-xl);
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}
.musician-feature__date {
    background: var(--medium-green);
    color: var(--white);
    padding: 0.65rem 1.25rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.5rem;
    align-items: baseline;
}
.musician-feature__date strong {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.75rem;
}
.musician-feature__hero {
    width: 100%;
    background: var(--sage-mist);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.musician-feature__hero img {
    display: block;
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    object-position: center;
}
.musician-feature__body {
    padding: 1.75rem 2rem 1.5rem;
}
.musician-feature__wordmark-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 0 0 0.75rem;
    flex-wrap: wrap;
}
.musician-feature__wordmark {
    height: 64px;
    width: auto;
    flex-shrink: 0;
}
.musician-feature__name {
    font-family: 'Adriano Etc', 'Courier New', monospace;
    color: var(--dark-blue);
    font-size: var(--font-size-3xl);
    margin: 0;
    line-height: 1.1;
    font-weight: normal;
}
.musician-feature__tagline {
    color: var(--text-secondary);
    font-size: 1rem;
    font-style: italic;
    margin: 0 0 1.25rem;
    padding-left: calc(64px + 1rem);
}
.musician-feature__bio {
    color: var(--text-primary);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0 0 1rem;
}
.musician-feature__bio:last-of-type {
    margin-bottom: 1.5rem;
}
.musician-feature__footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.musician-feature__links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.musician-feature__links a {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.9rem;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: var(--radius-sm, 4px);
    color: var(--dark-blue);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: background-color 0.15s, border-color 0.15s;
}
.musician-feature__links a:hover {
    background: var(--sage-mist);
    border-color: var(--medium-green);
    text-decoration: none;
}
.musician-feature__mascot {
    height: 96px;
    width: auto;
    opacity: 0.85;
    flex-shrink: 0;
}
@media (max-width: 768px) {
    .musician-feature__body {
        padding: 1.25rem 1.25rem 1.25rem;
    }
    .musician-feature__wordmark {
        height: 48px;
    }
    .musician-feature__name {
        font-size: var(--font-size-2xl);
    }
    .musician-feature__tagline {
        padding-left: 0;
    }
    .musician-feature__hero img {
        max-height: 320px;
    }
    .musician-feature__mascot {
        height: 72px;
    }
    .musician-feature__footer {
        flex-direction: column-reverse;
        align-items: flex-start;
    }
}

/* ── Vendor profile share block (sidebar) ─────────────────────────── */
.sidebar-share {
    margin-top: 0.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 1.25rem;
}
.sidebar-share *[hidden] {
    display: none !important;
}
.sidebar-share .share-native {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    background: var(--medium-green);
    color: white;
    font-size: 0.85rem;
    font-weight: 500;
    font-family: inherit;
    border: none;
    border-radius: var(--radius-md, 6px);
    cursor: pointer;
    transition: background-color 0.15s;
}
.sidebar-share .share-native:hover {
    background: var(--dark-green);
}
.sidebar-share .share-native svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}
.sidebar-share .share-icons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    align-items: center;
}
.sidebar-share .share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 6px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: var(--radius-sm, 4px);
    background: white;
    color: var(--text-secondary, #4A5568);
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.15s, border-color 0.15s;
}
.sidebar-share .share-btn:hover {
    background: var(--sage-mist);
    border-color: var(--medium-green);
}
.sidebar-share .share-btn img {
    width: 22px;
    height: 22px;
    display: block;
}
.sidebar-share .share-btn svg {
    width: 20px;
    height: 20px;
    display: block;
}
.sidebar-share .share-feedback {
    margin: 0.5rem 0 0;
    font-size: 0.75rem;
    color: var(--text-secondary, #4A5568);
    font-style: italic;
}

