/* ═══════════════════════════════════════════════════════════════════════════
   Chopin Garden — Public Site Stylesheet v5
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── Custom Properties ─────────────────────────────────────────────────── */
:root {
    --ivory:       #faf8f4;
    --ivory-dark:  #f2ede4;
    --ivory-mid:   #e8e0d0;
    --cream:       #fffef9;
    --red:         #9b2335;
    --red-light:   #b8354a;
    --red-pale:    #f8eaec;
    --red-muted:   #c4707e;
    --gold:        #c09a5a;
    --gold-light:  #d4b57a;
    --charcoal:    #2a2220;
    --dark:        #1c1917;
    --medium:      #5c4f48;
    --muted:       #8c7d76;
    --light-text:  #b5a99f;
    --font-serif:  'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --font-sans:   'Lato', 'Helvetica Neue', Arial, sans-serif;
    --max-w:       1140px;
    --section-pad: 5rem;
    --radius:      2px;
    --transition:  0.3s ease;
    --shadow-sm:   0 1px 4px rgba(44,28,20,0.08);
    --shadow-md:   0 4px 20px rgba(44,28,20,0.12);
    --shadow-lg:   0 8px 40px rgba(44,28,20,0.18);
    --header-h:    80px;
}

/* ─── Reset & Base ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-sans);
    background: var(--ivory);
    color: var(--charcoal);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--red); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--red-light); }
h1,h2,h3,h4,h5,h6 {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.25;
    color: var(--charcoal);
    letter-spacing: 0.01em;
}
p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

/* ─── Container ─────────────────────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 2rem;
}

/* ─── Header & Navigation ───────────────────────────────────────────────── */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgb(250, 248, 244);
    border-bottom: 1px solid var(--ivory-mid);
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }

.header-spacer { height: var(--header-h); }

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-h);
}

.site-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 0.75rem;
}
.logo-text {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--charcoal);
    letter-spacing: 0.02em;
    line-height: 1.1;
}
.logo-tagline {
    font-family: var(--font-sans);
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    display: block;
    margin-top: 2px;
}
.logo-img {
    max-height: 60px;
    width: auto;
    display: block;
    object-fit: contain;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 0;
    align-items: center;
}
.main-nav a {
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--medium);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius);
    transition: color var(--transition);
    display: block;
}
.main-nav a:hover { color: var(--red); }
.main-nav a.active { color: var(--red); font-weight: 700; }

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1001;
}
.nav-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--charcoal);
    transition: transform var(--transition), opacity var(--transition);
    border-radius: 2px;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Buttons ───────────────────────────────────────────────────────────── */
.btn {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.85rem 2.2rem;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    line-height: 1;
}
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-light); color: #fff; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(155,35,53,0.3); }
.btn-outline { background: transparent; color: var(--red); border: 1px solid var(--red); }
.btn-outline:hover { background: var(--red); color: #fff; transform: translateY(-1px); }
.btn-light { background: rgba(255,255,255,0.15); color: #fff; border: 1px solid rgba(255,255,255,0.5); }
.btn-light:hover { background: rgba(255,255,255,0.28); color: #fff; }
.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { background: var(--gold-light); color: #fff; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(192,154,90,0.35); }

/* ─── Section Titles ────────────────────────────────────────────────────── */
.section-label {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--red);
    display: block;
    margin-bottom: 0.6rem;
}
.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}
.section-subtitle {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-style: italic;
    color: var(--muted);
    margin-bottom: 2.5rem;
}
.section-divider {
    width: 48px;
    height: 1px;
    background: var(--gold);
    margin: 1.2rem 0 2rem;
}
.section-divider.center { margin-left: auto; margin-right: auto; }
.text-center { text-align: center; }

/* ─── HERO ──────────────────────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--dark);
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    z-index: 0;
}
.hero-bg-default {
    background: linear-gradient(135deg, #1c1917 0%, #2e1f1a 35%, #1a1512 60%, #0f0d0c 100%);
}
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(15,13,12,0.5) 0%, rgba(15,13,12,0.35) 40%, rgba(15,13,12,0.55) 100%);
}
.hero-score {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.04;
    background-image: repeating-linear-gradient(transparent, transparent 28px, rgba(255,255,255,0.8) 28px, rgba(255,255,255,0.8) 29px);
}
.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
    padding: 4rem 2rem;
    max-width: 780px;
}
.hero-ornament {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--gold);
    opacity: 0.7;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5em;
    display: block;
}
.hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 7vw, 5.5rem);
    font-weight: 300;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 1rem;
    text-shadow: 0 2px 30px rgba(0,0,0,0.5);
}
.hero-subtitle {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold-light);
    display: block;
    margin-bottom: 2rem;
}
.hero-intro {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-style: italic;
    color: rgba(255,255,255,0.82);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}
.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.45);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}
.hero-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:0.4} 50%{opacity:1} }

/* ─── Page Hero (inner pages) ───────────────────────────────────────────── */
.page-hero {
    background: var(--dark);
    padding: 6rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #2e1f1a 0%, #1c1917 60%);
    opacity: 0.95;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 5vw, 4rem);
    color: #fff;
    font-weight: 300;
    margin-bottom: 0.75rem;
}
.page-hero-subtitle {
    font-family: var(--font-serif);
    font-style: italic;
    color: rgba(255,255,255,0.6);
    font-size: 1.2rem;
}
.page-hero-ornament {
    font-family: var(--font-serif);
    color: var(--gold);
    opacity: 0.6;
    letter-spacing: 0.4em;
    font-size: 1.4rem;
    display: block;
    margin-bottom: 1.5rem;
}

/* ─── Sections ──────────────────────────────────────────────────────────── */
.section { padding: var(--section-pad) 0; }
.section-ivory { background: var(--ivory); }
.section-cream { background: var(--cream); }
.section-dark { background: var(--dark); color: rgba(255,255,255,0.9); }
.section-dark .section-title { color: #fff; }
.section-dark .section-subtitle { color: rgba(255,255,255,0.55); }
.section-dark p { color: rgba(255,255,255,0.78); }
.section-ivory-dark { background: var(--ivory-dark); }
.section-red { background: var(--red); color: #fff; }
.section-red .section-title { color: #fff; }

/* ─── Event Cards ───────────────────────────────────────────────────────── */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}
.event-card {
    background: var(--cream);
    border: 1px solid var(--ivory-mid);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition), transform var(--transition);
    display: flex;
    flex-direction: column;
}
.event-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.event-card-image {
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--dark);
    position: relative;
}
.event-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}
.event-card:hover .event-card-image img { transform: scale(1.04); }
.event-card-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2e1f1a, #1c1917);
    font-family: var(--font-serif);
    font-size: 3rem;
    color: rgba(255,255,255,0.12);
}
.event-badge {
    position: absolute;
    top: 1rem; right: 1rem;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.3rem 0.75rem;
    border-radius: 1px;
}
.badge-featured { background: var(--gold); color: #fff; }
.badge-soldout { background: var(--charcoal); color: rgba(255,255,255,0.7); }
.event-card-body { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; }
.event-date-line { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; }
.event-date-badge {
    background: var(--red-pale);
    color: var(--red);
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 0.3rem 0.7rem;
    border-radius: 1px;
    white-space: nowrap;
}
.event-time { font-size: 0.8rem; color: var(--muted); }
.event-card h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 0.4rem;
    color: var(--charcoal);
    line-height: 1.25;
}
.event-location {
    font-size: 0.8rem;
    color: var(--muted);
    margin-bottom: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.event-description { color: var(--medium); font-size: 0.9rem; margin-bottom: 1.2rem; flex: 1; }
.event-card-footer { margin-top: auto; }

/* ─── Blog Cards ────────────────────────────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 2rem; }
.post-card {
    background: var(--cream);
    border: 1px solid var(--ivory-mid);
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition), transform var(--transition);
    display: flex;
    flex-direction: column;
}
.post-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.post-card-image { aspect-ratio: 16/9; overflow: hidden; background: var(--dark); }
.post-card-image img { width:100%; height:100%; object-fit:cover; transition: transform 0.5s ease; }
.post-card:hover .post-card-image img { transform: scale(1.04); }
.post-card-image-placeholder {
    width:100%; height:100%;
    display:flex; align-items:center; justify-content:center;
    background: linear-gradient(135deg, #2a1e1a, #1c1917);
    font-family: var(--font-serif); font-size:2.5rem; color:rgba(255,255,255,0.1);
}
.post-card-body { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; }
.post-meta { display:flex; align-items:center; gap:0.75rem; font-size:0.78rem; color:var(--muted); margin-bottom:0.75rem; }
.post-meta-divider { opacity: 0.4; }
.post-card h3 { font-family:var(--font-serif); font-size:1.4rem; font-weight:400; margin-bottom:0.6rem; color:var(--charcoal); line-height:1.25; }
.post-excerpt { color:var(--medium); font-size:0.9rem; flex:1; margin-bottom:1.2rem; }
.post-read-more { font-size:0.8rem; font-weight:700; letter-spacing:0.1em; text-transform:uppercase; color:var(--red); display:inline-flex; align-items:center; gap:0.4rem; }
.post-read-more::after { content:'→'; transition:transform var(--transition); }
.post-card:hover .post-read-more::after { transform:translateX(4px); }

/* ─── Gallery Album Cards ───────────────────────────────────────────────── */
.gallery-album-card {
    display: block;
    text-decoration: none;
    color: inherit;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--cream);
    border: 1px solid var(--ivory-mid);
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.3s, transform 0.3s;
}
.gallery-album-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); color: inherit; }
.album-cover { aspect-ratio: 4/3; overflow: hidden; background: var(--dark); position: relative; }
.album-cover img { width:100%; height:100%; object-fit:cover; transition:transform 0.5s; }
.gallery-album-card:hover .album-cover img { transform: scale(1.05); }
.album-placeholder { width:100%; height:100%; display:flex; align-items:center; justify-content:center; background:linear-gradient(135deg,#2a1e1a,#1c1917); font-family:var(--font-serif); font-size:3rem; color:rgba(255,255,255,.08); }
.album-count { position:absolute; bottom:.75rem; right:.75rem; background:rgba(0,0,0,.65); color:#fff; font-size:.72rem; letter-spacing:.08em; padding:.25rem .65rem; border-radius:1px; }
.album-info { padding: 1.25rem 1.5rem; }
.album-info h3 { font-family:var(--font-serif); font-size:1.35rem; font-weight:400; color:var(--charcoal); margin-bottom:.35rem; line-height:1.25; }
.album-info p { color:var(--muted); font-size:.88rem; font-style:italic; line-height:1.5; margin-bottom:.75rem; }
.album-link { font-size:.75rem; font-weight:700; letter-spacing:.12em; text-transform:uppercase; color:var(--red); }

/* ─── Gallery Image Grid ────────────────────────────────────────────────── */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 0.75rem;
}
.gallery-item {
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: var(--radius);
    cursor: pointer;
    position: relative;
    background: var(--dark);
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item-overlay {
    position: absolute; inset: 0;
    background: rgba(15,13,12,0);
    transition: background var(--transition);
    display: flex; align-items: center; justify-content: center;
}
.gallery-item:hover .gallery-item-overlay { background: rgba(15,13,12,0.45); }
.gallery-zoom-icon { color:#fff; opacity:0; transition:opacity var(--transition); font-size:1.5rem; }
.gallery-item:hover .gallery-zoom-icon { opacity:1; }

/* ─── Lightbox ──────────────────────────────────────────────────────────── */
.lightbox {
    display: none;
    position: fixed; inset: 0; z-index: 9999;
    background: rgba(10,8,7,0.96);
    align-items: center; justify-content: center;
    padding: 1rem;
}
.lightbox.active { display: flex; }
.lightbox-content { position: relative; max-width: 92vw; max-height: 90vh; text-align: center; }
.lightbox-content img { max-width: 100%; max-height: 82vh; object-fit: contain; border-radius: 1px; }
.lightbox-caption { color:rgba(255,255,255,0.7); font-family:var(--font-serif); font-style:italic; font-size:1rem; text-align:center; margin-top:1rem; }
.lightbox-close {
    position: fixed; top:1.5rem; right:2rem;
    color:rgba(255,255,255,0.7); font-size:2rem;
    background:none; border:none; cursor:pointer;
    transition:color var(--transition); line-height:1; z-index:10000;
}
.lightbox-close:hover { color:#fff; }
.lightbox-prev, .lightbox-next {
    position: fixed; top:50%; transform:translateY(-50%);
    background:rgba(255,255,255,0.12);
    color:#fff; border:none; cursor:pointer;
    padding:1rem 1.2rem; font-size:1.4rem;
    transition:background var(--transition);
    border-radius:1px; z-index:10000;
}
.lightbox-prev { left:1rem; }
.lightbox-next { right:1rem; }
.lightbox-prev:hover, .lightbox-next:hover { background:rgba(255,255,255,0.22); }
.lightbox-counter {
    position: fixed; bottom: 1.5rem; left:50%; transform:translateX(-50%);
    color:rgba(255,255,255,0.5); font-size:0.82rem; letter-spacing:0.1em;
    z-index:10000;
}

/* ─── Two Column ────────────────────────────────────────────────────────── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }
.image-frame { position: relative; }
.image-frame img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.image-frame::before {
    content: '';
    position: absolute;
    top: -12px; left: -12px; right: 12px; bottom: 12px;
    border: 1px solid var(--gold);
    border-radius: var(--radius);
    z-index: -1;
    opacity: 0.5;
}

/* ─── Quote Block ───────────────────────────────────────────────────────── */
.quote-block { text-align:center; padding:3rem 2rem; border-top:1px solid var(--ivory-mid); border-bottom:1px solid var(--ivory-mid); margin:3rem 0; }
.quote-mark { font-family:var(--font-serif); font-size:4rem; color:var(--gold); line-height:0.5; display:block; margin-bottom:1.5rem; opacity:0.6; }
.quote-text { font-family:var(--font-serif); font-size:clamp(1.4rem,3vw,2rem); font-style:italic; color:var(--charcoal); line-height:1.5; max-width:700px; margin:0 auto 1rem; }
.quote-author { font-family:var(--font-sans); font-size:0.78rem; letter-spacing:0.18em; text-transform:uppercase; color:var(--muted); }

/* ─── Timeline ──────────────────────────────────────────────────────────── */
.timeline { position:relative; padding-left:2.5rem; }
.timeline::before { content:''; position:absolute; left:0.5rem; top:0; bottom:0; width:1px; background:linear-gradient(to bottom,var(--gold),transparent); }
.timeline-item { position:relative; margin-bottom:2rem; padding-bottom:2rem; border-bottom:1px solid var(--ivory-mid); }
.timeline-item:last-child { border-bottom:none; }
.timeline-item::before { content:''; position:absolute; left:-2rem; top:0.45rem; width:8px; height:8px; background:var(--gold); border-radius:50%; border:2px solid var(--ivory); }
.timeline-year { font-family:var(--font-sans); font-size:0.75rem; font-weight:700; letter-spacing:0.15em; color:var(--red); text-transform:uppercase; margin-bottom:0.3rem; }
.timeline-event { color:var(--medium); font-size:0.95rem; }

/* ─── Support / Donate ──────────────────────────────────────────────────── */
.donate-box { background:var(--cream); border:1px solid var(--ivory-mid); padding:3rem; text-align:center; border-radius:var(--radius); box-shadow:var(--shadow-sm); max-width:600px; margin:0 auto; }
.donate-box h3 { font-family:var(--font-serif); font-size:2rem; margin-bottom:1rem; }

/* ─── Contact Form ──────────────────────────────────────────────────────── */
.contact-grid { display:grid; grid-template-columns:1fr 1.4fr; gap:4rem; align-items:start; }
.contact-info h3 { font-family:var(--font-serif); font-size:1.8rem; margin-bottom:1.5rem; }
.contact-detail { display:flex; gap:1rem; margin-bottom:1.2rem; align-items:flex-start; }
.contact-icon { width:40px; height:40px; background:var(--red-pale); border-radius:50%; display:flex; align-items:center; justify-content:center; flex-shrink:0; color:var(--red); }
.form-group { margin-bottom:1.4rem; }
.form-group label { display:block; font-family:var(--font-sans); font-size:0.78rem; font-weight:700; letter-spacing:0.12em; text-transform:uppercase; color:var(--medium); margin-bottom:0.5rem; }
.form-group input,
.form-group textarea,
.form-group select {
    width:100%; font-family:var(--font-sans); font-size:0.95rem; color:var(--charcoal);
    background:var(--cream); border:1px solid var(--ivory-mid); border-radius:var(--radius);
    padding:0.8rem 1rem; transition:border-color var(--transition),box-shadow var(--transition);
    outline:none; appearance:none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    border-color:var(--red); box-shadow:0 0 0 3px rgba(155,35,53,0.1);
}
.form-group textarea { min-height:140px; resize:vertical; line-height:1.6; }
.form-notice { font-size:0.8rem; color:var(--muted); margin-top:0.75rem; }
.form-success { background:#f0faf0; border:1px solid #7dc97d; color:#2d6a2d; padding:1rem 1.25rem; border-radius:var(--radius); margin-bottom:1.5rem; font-size:0.9rem; }
.form-error { background:var(--red-pale); border:1px solid #e0a0a8; color:var(--red); padding:1rem 1.25rem; border-radius:var(--radius); margin-bottom:1.5rem; font-size:0.9rem; }

/* ─── Newsletter ────────────────────────────────────────────────────────── */
.newsletter-form { display:flex; gap:0.75rem; flex-wrap:wrap; justify-content:center; max-width:480px; margin:0 auto; }
.newsletter-form input { flex:1; min-width:200px; padding:0.8rem 1.2rem; font-size:0.95rem; background:rgba(255,255,255,0.1); border:1px solid rgba(255,255,255,0.3); border-radius:var(--radius); color:#fff; outline:none; }
.newsletter-form input::placeholder { color:rgba(255,255,255,0.5); }
.newsletter-form input:focus { border-color:rgba(255,255,255,0.7); }

/* ─── Donors List ───────────────────────────────────────────────────────── */
.donors-list { columns:2; gap:1.5rem; list-style:none; padding:0; }
.donors-list li { font-family:var(--font-serif); font-style:italic; font-size:1.05rem; color:var(--medium); padding:0.4rem 0; border-bottom:1px solid var(--ivory-mid); break-inside:avoid; }

/* ─── Event Detail ──────────────────────────────────────────────────────── */
.event-detail-image { width:100%; max-height:480px; object-fit:cover; border-radius:var(--radius); margin-bottom:2rem; }
.event-meta-bar { display:flex; flex-wrap:wrap; gap:1.5rem; padding:1.5rem 2rem; background:var(--ivory-dark); border-radius:var(--radius); margin-bottom:2.5rem; }
.event-meta-item { display:flex; align-items:center; gap:0.6rem; font-size:0.9rem; color:var(--medium); }
.event-meta-item strong { color:var(--charcoal); }

/* ─── Post Detail ───────────────────────────────────────────────────────── */
.post-image-header { width:100%; max-height:500px; object-fit:cover; border-radius:var(--radius); margin-bottom:2.5rem; }
.post-body { font-family:var(--font-serif); font-size:1.15rem; line-height:1.85; color:var(--charcoal); max-width:720px; margin:0 auto; }
.post-body h2, .post-body h3 { margin:2rem 0 0.8rem; }
.post-body p { margin-bottom:1.4em; }
.post-body blockquote { border-left:3px solid var(--gold); padding:0.5rem 0 0.5rem 1.5rem; font-style:italic; color:var(--medium); margin:1.5rem 0; }

/* ─── Breadcrumb ────────────────────────────────────────────────────────── */
.breadcrumb { font-size:0.8rem; color:var(--muted); margin-bottom:2rem; display:flex; align-items:center; gap:0.5rem; }
.breadcrumb a { color:var(--muted); }
.breadcrumb a:hover { color:var(--red); }
.breadcrumb-sep { opacity:0.4; }

/* ─── Footer ────────────────────────────────────────────────────────────── */
.site-footer { background:var(--dark); color:rgba(255,255,255,0.75); padding-top:4rem; }
.footer-inner { display:grid; grid-template-columns:1.5fr 1fr 1fr; gap:3rem; padding-bottom:3rem; border-bottom:1px solid rgba(255,255,255,0.08); }
.footer-logo-text { font-family:var(--font-serif); font-size:1.8rem; color:#fff; font-weight:400; display:block; margin-bottom:0.75rem; text-decoration:none; }
.footer-tagline { font-size:0.9rem; color:rgba(255,255,255,0.5); margin-bottom:1.5rem; font-style:italic; }
.footer-social { display:flex; gap:0.75rem; }
.footer-social a { display:flex; align-items:center; justify-content:center; width:36px; height:36px; border:1px solid rgba(255,255,255,0.15); border-radius:50%; color:rgba(255,255,255,0.55); transition:all var(--transition); }
.footer-social a:hover { border-color:var(--red); color:var(--red); background:rgba(155,35,53,0.1); }
.footer-nav h4, .footer-contact h4 { font-family:var(--font-sans); font-size:0.72rem; font-weight:700; letter-spacing:0.2em; text-transform:uppercase; color:rgba(255,255,255,0.35); margin-bottom:1.2rem; }
.footer-nav ul { list-style:none; }
.footer-nav a { color:rgba(255,255,255,0.65); font-size:0.92rem; display:block; padding:0.3rem 0; transition:color var(--transition); }
.footer-nav a:hover { color:rgba(255,255,255,0.95); }
.footer-contact p { font-size:0.9rem; margin-bottom:0.5rem; line-height:1.5; }
.footer-contact a { color:rgba(255,255,255,0.7); }
.footer-contact a:hover { color:#fff; }
.footer-links-small a { color:rgba(255,255,255,0.4); font-size:0.78rem; transition:color var(--transition); }
.footer-links-small a:hover { color:rgba(255,255,255,0.7); }
.footer-bottom { padding:1.2rem 0; }
.footer-bottom p { font-size:0.78rem; color:rgba(255,255,255,0.3); text-align:center; }

/* ─── Alerts ────────────────────────────────────────────────────────────── */
.alert { padding:1rem 1.5rem; border-radius:var(--radius); margin-bottom:1.5rem; font-size:0.9rem; }
.alert-success { background:#f0faf0; border:1px solid #7dc97d; color:#2d6a2d; }
.alert-error { background:var(--red-pale); border:1px solid #e0a0a8; color:var(--red); }
.alert-info { background:#eef4fb; border:1px solid #90b8e0; color:#1a4a7a; }

/* ─── Ornament ──────────────────────────────────────────────────────────── */
.ornament { text-align:center; color:var(--gold); opacity:0.5; font-size:1.5rem; font-family:var(--font-serif); letter-spacing:0.6em; margin:2rem 0; display:block; }

/* ─── Responsive ────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
    .two-col { grid-template-columns:1fr; gap:3rem; }
    .two-col.reverse { direction:ltr; }
    .contact-grid { grid-template-columns:1fr; gap:2.5rem; }
    .footer-inner { grid-template-columns:1fr 1fr; }
    .events-grid, .blog-grid { grid-template-columns:1fr; }
}

@media (max-width: 680px) {
    :root { --section-pad: 3.5rem; --header-h: 70px; }
    .header-inner { height: 70px; }
    .logo-text { font-size: 1.3rem; }
    .logo-img { max-height: 50px; }

    .nav-toggle { display: flex; }
    .main-nav {
        position: fixed;
        top: 70px; left: 0; right: 0;
        background: var(--ivory);
        border-bottom: 2px solid var(--ivory-mid);
        box-shadow: var(--shadow-lg);
        transform: translateY(-110%);
        transition: transform var(--transition);
        z-index: 999;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }
    .main-nav.open { transform: translateY(0); }
    .main-nav ul { flex-direction: column; gap: 0; padding: 0.5rem 0; }
    .main-nav a {
        display: block;
        padding: 0.9rem 1.5rem;
        border-bottom: 1px solid var(--ivory-mid);
        font-size: 0.82rem;
        color: var(--medium) !important;
        letter-spacing: 0.12em;
    }
    .main-nav a:hover { color: var(--red) !important; background: var(--ivory-dark); }
    .main-nav ul li:last-child a { border-bottom: none; }

    .footer-inner { grid-template-columns:1fr; gap:2rem; }
    .hero-buttons { flex-direction:column; align-items:center; }
    .donate-box { padding:2rem 1.5rem; }
    .donors-list { columns:1; }
    .container { padding:0 1.25rem; }
    .gallery-grid { grid-template-columns:repeat(2,1fr); }
    .event-meta-bar { gap:1rem; }
}

/* ─── Utility ───────────────────────────────────────────────────────────── */
.mt-0 { margin-top:0 !important; }
.mb-0 { margin-bottom:0 !important; }
.mb-1 { margin-bottom:0.5rem !important; }
.mb-2 { margin-bottom:1rem !important; }
.mb-3 { margin-bottom:2rem !important; }
.mt-3 { margin-top:2rem !important; }
.hidden { display:none !important; }
.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; }
