/* ============================================
   Here4U Community Stylesheet
   ============================================ */

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

:root {
    /* Editorial palette: warm ivory, deep forest, soft sage, warm gold */
    --coral: #2F4F3F;          /* deep forest green (primary) */
    --coral-dark: #1F3A2C;     /* darker forest */
    --coral-light: #E6E8DC;    /* pale sage background */
    --cream: #F7F3EC;          /* warm ivory */
    --white: #FFFFFF;
    --charcoal: #1A1D1A;       /* near black */
    --charcoal-soft: #4A4E47;  /* soft grey text */
    --gold: #B08968;           /* warm tan accent */
    --gold-dark: #8E6C4F;
    --border: #D9D3C4;
    --shadow: 0 6px 24px rgba(26, 29, 26, 0.06);
    --shadow-lg: 0 18px 50px rgba(26, 29, 26, 0.10);
    --radius: 4px;             /* tighter, more editorial */
    --radius-lg: 10px;
    --max-width: 1200px;
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Fraunces', Georgia, 'Times New Roman', serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--charcoal);
    background-color: var(--cream);
    line-height: 1.65;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: var(--coral-dark);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--coral);
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--charcoal);
    letter-spacing: -0.01em;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); margin-bottom: 0.75rem; }
h4 { font-size: 1.125rem; margin-bottom: 0.5rem; }

p {
    margin-bottom: 1rem;
    color: var(--charcoal-soft);
}

.lead {
    font-size: 1.25rem;
    line-height: 1.5;
    color: var(--charcoal);
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

/* ---------- Layout ---------- */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 5rem 0;
}

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

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header .eyebrow {
    display: inline-block;
    color: var(--coral-dark);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-family: var(--font-main);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 2px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    min-height: 48px;
}

.btn-primary {
    background-color: var(--coral);
    color: var(--white);
    border-color: var(--coral);
}

.btn-primary:hover {
    background-color: var(--coral-dark);
    border-color: var(--coral-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background-color: transparent;
    color: var(--coral-dark);
    border-color: var(--coral);
}

.btn-secondary:hover {
    background-color: var(--coral);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

/* ---------- Header ---------- */
.site-header {
    position: sticky;
    top: 0;
    background-color: var(--white);
    border-bottom: 1px solid var(--border);
    z-index: 100;
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.95);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--charcoal);
}

.logo img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.logo:hover {
    color: var(--coral-dark);
}

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav a {
    color: var(--charcoal);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

.nav a:hover,
.nav a.active {
    color: var(--coral-dark);
}

.nav a.active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--coral);
    border-radius: 2px;
}

.nav-cta {
    padding: 0.5rem 1.25rem !important;
    background-color: var(--coral);
    color: var(--white) !important;
    border-radius: 2px;
}

.nav-cta:hover {
    background-color: var(--coral-dark);
    color: var(--white) !important;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--charcoal);
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--cream);
}

.hero-image {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(26, 29, 26, 0.25) 0%, rgba(26, 29, 26, 0.55) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 4rem 1.5rem;
    max-width: 900px;
}

.hero-content .eyebrow {
    display: inline-block;
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.hero-content h1 {
    color: var(--white);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-content p {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-buttons .btn-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-color: var(--white);
    backdrop-filter: blur(10px);
}

.hero-buttons .btn-secondary:hover {
    background-color: var(--white);
    color: var(--coral-dark);
}

/* ---------- What We Do / Features ---------- */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--coral-light);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background-color: var(--coral-light);
    color: var(--coral-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.75rem;
}

/* ---------- Events Preview ---------- */
.events-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.event-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.event-image {
    aspect-ratio: 4/3;
    overflow: hidden;
    background-color: var(--coral-light);
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.event-card:hover .event-image img {
    transform: scale(1.05);
}

.event-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.event-date {
    color: var(--coral-dark);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.event-body h3 {
    margin-bottom: 0.5rem;
}

.event-location {
    color: var(--charcoal-soft);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.event-location::before {
    content: '📍';
    margin-right: 0.25rem;
}

.event-body p {
    flex: 1;
    font-size: 0.95rem;
}

.event-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.event-price {
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--charcoal);
}

.event-price.free {
    color: var(--coral-dark);
}

.event-status {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 2px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.event-status.booked {
    background-color: #FFE5E0;
    color: #C64A30;
}

.event-status.open {
    background-color: #E0F2E9;
    color: #2F7D5B;
}

.event-status.tbd {
    background-color: #FFF3D6;
    color: #8A6D1F;
}

/* ---------- Music Section ---------- */
.music-section {
    background-color: var(--charcoal);
    color: var(--white);
    padding: 5rem 0;
}

.music-section h2,
.music-section h3 {
    color: var(--white);
}

.music-section p {
    color: rgba(255, 255, 255, 0.8);
}

.music-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.music-section .eyebrow {
    color: var(--coral-light);
}

.music-player {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.music-player iframe {
    display: block;
    border: 0;
    width: 100%;
    height: 352px;
}

.music-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.music-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 2px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.2s ease;
}

.music-link:hover {
    background-color: var(--coral);
    border-color: var(--coral);
    color: var(--white);
    transform: translateY(-2px);
}

/* ---------- Newsletter Signup ---------- */
.newsletter {
    background-color: var(--coral-light);
    padding: 4rem 0;
    text-align: center;
}

.newsletter-inner {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.newsletter h2 {
    color: var(--coral-dark);
    margin-bottom: 0.5rem;
}

.newsletter p {
    color: var(--charcoal);
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 0.75rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 0.875rem 1.25rem;
    border-radius: 2px;
    border: 2px solid var(--white);
    background-color: var(--white);
    font-size: 1rem;
    font-family: var(--font-main);
    color: var(--charcoal);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--coral);
}

.newsletter-form button {
    flex-shrink: 0;
}

/* ---------- Footer ---------- */
.site-footer {
    background-color: var(--charcoal);
    color: rgba(255, 255, 255, 0.8);
    padding: 4rem 0 2rem;
}

.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    max-width: 400px;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-col a:hover {
    color: var(--coral-light);
}

.social-icons {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transition: all 0.2s ease;
}

.social-icons a:hover {
    background-color: var(--coral);
    transform: translateY(-2px);
    color: var(--white);
}

.social-icons svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom .legal {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom a:hover {
    color: var(--coral-light);
}

.company-info {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.5rem;
    width: 100%;
}

/* ---------- Cookie Banner ---------- */
.cookie-banner {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    max-width: 500px;
    background-color: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 1.5rem;
    z-index: 200;
    display: none;
    font-size: 0.9rem;
}

.cookie-banner.visible {
    display: block;
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.cookie-banner p {
    margin-bottom: 1rem;
    color: var(--charcoal);
}

.cookie-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.cookie-buttons .btn {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    min-height: auto;
}

/* ---------- Events Page (full listing) ---------- */
.page-header {
    background-color: var(--cream);
    padding: 4rem 0;
    text-align: center;
}

.page-header h1 {
    margin-bottom: 0.75rem;
}

.page-header p {
    font-size: 1.125rem;
    max-width: 680px;
    margin: 0 auto;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.events-section-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--coral-light);
    color: var(--coral-dark);
}

.events-section-title + .events-grid {
    margin-bottom: 4rem;
}

/* ---------- Forms ---------- */
.form-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow);
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--charcoal);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border-radius: 8px;
    border: 2px solid var(--border);
    background-color: var(--white);
    font-size: 1rem;
    font-family: var(--font-main);
    color: var(--charcoal);
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--coral);
}

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

/* ---------- FAQ Accordion ---------- */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 0.75rem;
    overflow: hidden;
    transition: all 0.2s ease;
}

.faq-item[open] {
    box-shadow: var(--shadow);
    border-color: var(--coral-light);
}

.faq-item summary {
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--charcoal);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    color: var(--coral-dark);
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-content {
    padding: 0 1.5rem 1.25rem;
    color: var(--charcoal-soft);
}

/* ---------- Content Blocks (About, Community, Code of Conduct) ---------- */
.content-block {
    max-width: 760px;
    margin: 0 auto;
}

.content-block p {
    font-size: 1.0625rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.content-block h2,
.content-block h3 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.pull-quote {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    line-height: 1.5;
    color: var(--coral-dark);
    text-align: center;
    padding: 2rem 1rem;
    margin: 2.5rem 0;
    border-top: 2px solid var(--coral-light);
    border-bottom: 2px solid var(--coral-light);
    font-style: italic;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        padding: 1.5rem;
        gap: 1.25rem;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow);
    }

    .nav.open {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

    .section {
        padding: 3.5rem 0;
    }

    .music-inner {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }

    .hero {
        min-height: 60vh;
    }
}

/* ============================================
   Accessibility helpers
   ============================================ */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--coral);
    color: #fff;
    padding: 0.75rem 1.25rem;
    z-index: 10000;
    text-decoration: none;
    font-weight: 600;
    border-radius: 0 0 8px 0;
}
.skip-link:focus {
    top: 0;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible {
    outline: 3px solid var(--coral-dark);
    outline-offset: 3px;
    border-radius: 4px;
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* ============================================
   Contact / Share form
   ============================================ */
.share-form {
    max-width: 640px;
    margin: 3rem auto;
    background: #fff;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.05);
}
.share-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--charcoal);
}
.share-form input,
.share-form select,
.share-form textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 2px solid #e4ddd4;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    background: var(--cream);
    transition: border-color 0.2s;
    margin-bottom: 1.5rem;
}
.share-form input:focus,
.share-form select:focus,
.share-form textarea:focus {
    border-color: var(--coral);
    outline: none;
    background: #fff;
}
.share-form textarea {
    min-height: 140px;
    resize: vertical;
}
.share-form .form-note {
    font-size: 0.9rem;
    color: var(--charcoal-soft, #5a554e);
    margin-top: -0.75rem;
    margin-bottom: 1.5rem;
}

/* ============================================
   FAQ accordion
   ============================================ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    overflow: hidden;
}
.faq-item summary {
    cursor: pointer;
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--charcoal);
    list-style: none;
    position: relative;
    padding-right: 3rem;
}
.faq-item summary::-webkit-details-marker {
    display: none;
}
.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--coral);
    transition: transform 0.2s;
}
.faq-item[open] summary::after {
    content: "−";
}
.faq-item[open] summary {
    background: var(--coral-light);
}
.faq-item .faq-answer {
    padding: 1rem 1.5rem 1.5rem;
    color: var(--charcoal);
    line-height: 1.7;
}

/* ============================================
   Story / content blocks
   ============================================ */
.content-block {
    max-width: 760px;
    margin: 0 auto;
}
.content-block h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}
.content-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}
.pull-quote {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.75rem;
    font-style: italic;
    color: var(--coral-dark);
    padding: 2rem;
    margin: 2.5rem 0;
    border-left: 4px solid var(--coral);
    background: var(--coral-light);
    border-radius: 0 12px 12px 0;
    line-height: 1.4;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin: 2.5rem 0;
}
.value-card {
    background: var(--cream);
    padding: 2rem;
    border-radius: 12px;
    border-top: 4px solid var(--coral);
}
.value-card h3 {
    margin-bottom: 0.5rem;
    color: var(--charcoal);
}

/* ============================================
   Legal page styles
   ============================================ */
.legal-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}
.legal-page h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}
.legal-page h3 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: var(--coral-dark);
}
.legal-page p, .legal-page li {
    line-height: 1.75;
    margin-bottom: 1rem;
}
.legal-page ul, .legal-page ol {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}
.legal-meta {
    background: var(--cream);
    padding: 1.25rem 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

/* ============================================
   Hide visually but keep for screen-readers in small-mobile
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.001ms !important;
        transition-duration: 0.001ms !important;
    }
}

/* ===== Logo drop-in placeholder =====
   Shown in the top-left (and footer) when images/logo.png is not yet uploaded.
   Gives Rita a visible target to drop her logo into. */
.logo-fallback {
    width: 44px;
    height: 44px;
    border: 1.5px dashed var(--border);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--charcoal-soft, #5a554e);
    background: var(--cream, #F7F3EC);
    flex-shrink: 0;
}
.site-footer .logo-fallback {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.75);
}
