:root {
    --bg-cosy: #f9f4e8;         
    --brand-green: #244d1f;     
    --brand-red: #8b1a1a;       
    --committee-bg: #f9f4e8;    
    --card-cream: #fff9ed;      
    --text-dark: #3c3633;       
    --text-light: #7a7067;      
    --white: #ffffff;
    --shadow: 0 8px 30px rgba(0,0,0,0.04); 
    --border: #e3dcd2;          
    --accent-gold: #c5a059;     
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-cosy);
    background-image: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.4) 0%, transparent 100%);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, .serif-title { font-family: 'Playfair Display', serif; font-weight: 700; }
.italic-serif { font-family: 'Playfair Display', serif; font-style: italic; color: var(--accent-gold); }
.body-text { font-family: 'Crimson Pro', serif; font-size: 1.25rem; }
.text-center { text-align: center; }

/* NAVIGATION */
#navbar { position: sticky; top: 0; background: rgba(249, 244, 232, 0.95); backdrop-filter: blur(8px); border-bottom: 1px solid var(--border); z-index: 1000; padding: 1.2rem 0; }
.nav-container { max-width: 1400px; margin: 0 auto; padding: 0 3rem; display: flex; justify-content: space-between; align-items: center; }
.logo-circle { width: 48px; height: 48px; background: var(--brand-green); color: white; border-radius: 12px; display: flex; justify-content: center; align-items: center; font-family: 'Playfair Display', serif; font-size: 1.4rem; }
.logo-text h1 { font-size: 1.3rem; margin: 0; }
.logo-text span { font-size: 0.65rem; text-transform: uppercase; color: var(--accent-gold); }
.nav-links { list-style: none; display: flex; gap: 1.8rem; }
.nav-links a { text-decoration: none; color: var(--text-dark); font-size: 0.85rem; }
.nav-links a.active { color: var(--brand-red); font-weight: bold; border-bottom: 1.5px solid var(--accent-gold); padding-bottom: 4px; }

/* LAYOUT */
.content-wrapper { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.content-narrow { max-width: 800px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 6rem 0; }

/* HERO */
.hero { position: relative; width: 100%; overflow: hidden; display: flex; align-items: center; }
.hero-cropped { height: 400px; }
.hero-img { position: absolute; top: 50%; left: 50%; width: 100%; height: 100%; object-fit: cover; transform: translate(-50%, -50%); z-index: 1; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.1); z-index: 2; }
.hero-container-right { position: relative; z-index: 3; width: 100%; max-width: 1400px; margin: 0 auto; padding: 0 5rem; display: flex; justify-content: flex-end; }
.hero-card { background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(10px); padding: 2.5rem; border-radius: 20px; max-width: 480px; box-shadow: var(--shadow); }

/* OFFERINGS GRID */
.offerings-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4rem; text-align: left; margin-top: 3rem; padding: 0 2rem; }
.offer-item h4 { margin-bottom: 0.8rem; }
.star-icon { font-size: 2.2rem; color: var(--accent-gold); }
.star-icon.small { font-size: 1.3rem; margin-bottom: 0.5rem; display: block; }

/* COMMITTEE GRID */
.committee-stylized-grid { 
    display: grid; 
    grid-template-columns: repeat(4, 240px); 
    gap: 3rem 2rem; 
    padding: 2rem 0 8rem 0; 
    justify-content: center;
}
.member-card-stylized { text-align: center; }
.photo-box { 
    width: 240px; 
    height: 240px; 
    border-radius: 40px; 
    overflow: hidden; 
    margin-bottom: 1rem; 
    box-shadow: var(--shadow); 
}
.photo-box img { width: 100%; height: 100%; object-fit: cover; }
.member-info-stylized .name { display: block; font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.25rem; }
.member-info-stylized .role { display: block; font-size: 0.95rem; color: var(--text-light); }

/* CALENDAR GRID */
.calendar-grid-container { padding: 2rem 0 8rem 0; }
.calendar-grid { 
    display: grid; 
    grid-template-columns: repeat(4, 220px); 
    gap: 1.5rem; 
    margin: 3rem auto 0;
    justify-content: center;
}
.calendar-card { 
    background: var(--card-cream); 
    border: 1px solid var(--border); 
    border-radius: 20px; 
    padding: 2.5rem 1rem; 
    text-align: center; 
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}
.calendar-card .date { font-size: 0.9rem; color: var(--text-light); display: block; margin-bottom: 0.5rem; }
.calendar-card .event-name { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.3rem; color: var(--brand-green); line-height: 1.2; }
.calendar-card.outdoors .event-name { color: var(--brand-red); }
.calendar-card.tbc { border-style: dashed; background: transparent; }

/* BOWSTYLE ROWS */
.bow-detail-row { display: flex; align-items: center; gap: 4rem; margin-bottom: 6rem; }
.bow-detail-row.reverse { flex-direction: row-reverse; }
.bow-img-fixed { 
    flex: 0 0 280px; 
    height: 280px; 
    border-radius: 25px; 
    overflow: hidden; 
    box-shadow: var(--shadow); 
}
.bow-img-fixed img { width: 100%; height: 100%; object-fit: cover; }

/* FAQ */
.faq-accordion { border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item summary { padding: 1.5rem 0; cursor: pointer; font-family: 'Playfair Display', serif; font-size: 1.4rem; font-style: italic; color: var(--brand-red); list-style: none; display: flex; justify-content: space-between; }
.faq-item summary::after { content: 'v'; opacity: 0.5; font-family: 'Inter', sans-serif; font-style: normal; }
.faq-content { padding-bottom: 1.5rem; }

/* CONTACT */
.contact-container { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; margin-top: 4rem; align-items: start; }
.contact-card { background: white; padding: 3rem; border-radius: 20px; border: 1px solid var(--border); box-shadow: var(--shadow); display: flex; justify-content: center; }    
.form-group { margin-bottom: 1.5rem; }
.form-group input, .form-group textarea { width: 100%; padding: 0.8rem; border: 1px solid var(--border); border-radius: 8px; font-family: inherit; }

/* BUTTONS */
.btn-primary { background: var(--brand-green); color: white; padding: 0.8rem 2rem; border-radius: 12px; text-decoration: none; font-weight: 600; display: inline-block; transition: background 0.3s; }
.btn-primary:hover { background: var(--brand-red); }

/* FOOTER */
#footer { background: #1a1715; color: white; padding: 4rem 0; text-align: center; }
.footer-bottom { font-size: 0.8rem; color: #666; margin-top: 1rem; }

@media (max-width: 1100px) {
    .committee-stylized-grid { grid-template-columns: repeat(3, 240px); }
    .calendar-grid { grid-template-columns: repeat(3, 220px); }
}

@media (max-width: 900px) {
    .offerings-grid { grid-template-columns: repeat(2, 1fr); }
    .committee-stylized-grid { grid-template-columns: repeat(2, 240px); }
    .calendar-grid { grid-template-columns: repeat(2, 220px); }
    .contact-container { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    .offerings-grid, .calendar-grid { grid-template-columns: 1fr; }
    .committee-stylized-grid { grid-template-columns: 240px; }
    .bow-detail-row { flex-direction: column; text-align: center; }
}