/*
Theme Name: Greenville Guardians
Theme URI: https://greenvilleguardians.org
Author: Greenville Guardians
Author URI: https://greenvilleguardians.org
Description: Custom WordPress theme for Greenville Guardians, a faith-based youth sports nonprofit serving Greenville and Hunt County, Texas. Built with SEO optimization, schema markup, Contact Form 7 integration, and a "heritage athletics with a sacred edge" design language. Eight sport programs, scholarship fund, sponsorship tiers, and volunteer coach recruitment.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: greenville-guardians
Tags: nonprofit, youth-sports, custom-colors, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready, two-columns, right-sidebar, full-width-template, faith-based

Greenville Guardians WordPress Theme, (C) 2025 Greenville Guardians
This theme is licensed under the GPL.
*/

/* ────────────────────────────────────────────────────────────
   GREENVILLE GUARDIANS · WORDPRESS THEME STYLESHEET
   "Heritage athletics with a sacred edge"
──────────────────────────────────────────────────────────── */

:root {
  --dark-green: #0d3d2a;
  --green: #1a6b3f;
  --green-bright: #229954;
  --gold: #f5c518;
  --gold-soft: #e8b923;
  --cream: #f5f0e1;
  --cream-warm: #ede4cc;
  --ink: #0a1f15;
  --paper: #faf6ec;
  --line: rgba(13, 61, 42, 0.15);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Cormorant Garamond', Georgia, serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.5;
}
.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }

img { max-width: 100%; height: auto; display: block; }
a { color: var(--green); }

/* WordPress core alignment classes */
.alignleft { float: left; margin-right: 1.5em; }
.alignright { float: right; margin-left: 1.5em; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.alignwide { max-width: 1100px; }
.alignfull { max-width: 100%; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 14px; color: #555; text-align: center; padding-top: 8px; }
.screen-reader-text { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.sticky { display: block; }
.bypostauthor { display: block; }
.gallery-caption { font-size: 14px; }

/* Skip link */
.skip-link { position: absolute; left: -9999px; top: 0; z-index: 100000; background: var(--ink); color: var(--gold); padding: 12px 18px; }
.skip-link:focus { left: 0; }

/* ─── TOP BAR ─── */
.topbar { background: var(--ink); color: var(--cream); font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; padding: 8px 0; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.topbar .verse { color: var(--gold); }
.topbar .verse::before { content: '✦  '; }
.topbar .quick a { color: var(--cream); text-decoration: none; margin-left: 22px; transition: color 0.2s; }
.topbar .quick a:hover { color: var(--gold); }

/* ─── HEADER ─── */
.site-header { background: var(--dark-green); color: var(--cream); position: sticky; top: 0; z-index: 40; border-bottom: 3px solid var(--gold); box-shadow: 0 4px 20px rgba(0,0,0,0.15); }
.nav-row { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; }
.brand { display: flex; align-items: center; gap: 14px; text-decoration: none; color: inherit; }
.brand img { height: 56px; width: 56px; background: var(--ink); border-radius: 4px; padding: 4px; border: 1px solid var(--gold); }
.brand-text .name { font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 22px; letter-spacing: 0.06em; text-transform: uppercase; line-height: 1; color: var(--cream); }
.brand-text .tag { font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 0.25em; color: var(--gold); text-transform: uppercase; margin-top: 4px; }
.main-nav ul { display: flex; gap: 4px; list-style: none; align-items: center; margin: 0; padding: 0; }
.main-nav a { font-family: 'Oswald', sans-serif; font-weight: 500; font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--cream); text-decoration: none; padding: 10px 14px; position: relative; transition: color 0.2s; display: inline-block; }
.main-nav a::after { content: ''; position: absolute; left: 50%; bottom: 4px; width: 0; height: 1px; background: var(--gold); transition: all 0.3s; transform: translateX(-50%); }
.main-nav a:hover { color: var(--gold); }
.main-nav a:hover::after { width: 60%; }
.main-nav .current-menu-item > a,
.main-nav .current_page_item > a,
.main-nav .current-menu-ancestor > a { color: var(--gold); }
.main-nav .current-menu-item > a::after,
.main-nav .current_page_item > a::after { width: 60%; }

/* Buttons */
.btn { display: inline-block; font-family: 'Oswald', sans-serif; font-weight: 600; font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; padding: 12px 24px; text-decoration: none; border: 2px solid currentColor; background: transparent; color: var(--cream); cursor: pointer; transition: all 0.25s; }
.btn:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.btn-solid { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.btn-solid:hover { background: var(--cream); border-color: var(--cream); }
.btn-ghost-dark { color: var(--ink); border-color: var(--ink); }
.btn-ghost-dark:hover { background: var(--ink); color: var(--cream); }
.btn-large { padding: 16px 36px; font-size: 14px; }
.nav-cta { padding: 8px 16px; font-size: 12px; }

.hamburger { display: none; background: none; border: none; color: var(--cream); cursor: pointer; padding: 8px; }

/* ─── HERO (HOME) ─── */
.hero { background: var(--dark-green); color: var(--cream); padding: 120px 0 100px; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at 20% 30%, rgba(245, 197, 24, 0.08), transparent 50%), radial-gradient(circle at 80% 70%, rgba(34, 153, 84, 0.15), transparent 50%); pointer-events: none; }
.hero .container { display: grid; grid-template-columns: 1.4fr 1fr; gap: 80px; align-items: center; position: relative; z-index: 2; }
.hero-kicker { font-family: 'DM Mono', monospace; font-size: 12px; letter-spacing: 0.3em; color: var(--gold); text-transform: uppercase; margin-bottom: 24px; }
.hero-kicker::before { content: '— '; }
.hero h1 { font-family: 'Cormorant Garamond', serif; font-size: 88px; font-weight: 500; line-height: 0.95; letter-spacing: -0.02em; color: var(--cream); margin-bottom: 32px; }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero-lede { font-size: 22px; line-height: 1.5; color: rgba(245, 240, 225, 0.88); max-width: 540px; margin-bottom: 40px; font-weight: 400; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

.verse-card { background: var(--ink); border: 2px solid var(--gold); padding: 48px 40px; position: relative; box-shadow: 20px 20px 0 var(--green); }
.verse-card .label { font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 0.25em; color: var(--gold); text-transform: uppercase; padding-bottom: 18px; border-bottom: 1px solid rgba(245, 197, 24, 0.3); margin-bottom: 22px; }
.verse-card .verse-text { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 21px; line-height: 1.4; color: var(--cream); margin-bottom: 24px; }
.verse-card .pillars { list-style: none; padding: 0; }
.verse-card .pillars li { padding: 12px 0; border-bottom: 1px solid rgba(245, 197, 24, 0.2); display: flex; gap: 16px; align-items: center; font-family: 'Oswald', sans-serif; font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--cream); }
.verse-card .pillars li:last-child { border-bottom: none; }
.verse-card .pillars .roman { color: var(--gold); font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 18px; min-width: 30px; }

/* ─── MARQUEE ─── */
.marquee { background: var(--gold); color: var(--ink); padding: 18px 0; overflow: hidden; border-top: 4px solid var(--ink); border-bottom: 4px solid var(--ink); }
.marquee-track { display: flex; gap: 60px; white-space: nowrap; animation: marquee 40s linear infinite; font-family: 'Oswald', sans-serif; font-weight: 600; font-size: 16px; letter-spacing: 0.2em; text-transform: uppercase; }
.marquee-track span { display: inline-flex; align-items: center; gap: 60px; }
.marquee-track .sep { color: var(--green); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─── STATS ─── */
.stats { background: var(--cream); padding: 80px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat { text-align: center; padding: 20px 16px; border-right: 1px solid var(--line); }
.stat:last-child { border-right: none; }
.stat .num { font-family: 'Cormorant Garamond', serif; font-size: 72px; font-weight: 600; color: var(--green); line-height: 1; font-style: italic; }
.stat .label { font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 0.25em; color: var(--ink); text-transform: uppercase; margin-top: 12px; }

/* ─── SECTION PADDING & HEADERS ─── */
.section-pad { padding: 100px 0; }
.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head .kicker { font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 0.3em; color: var(--green); text-transform: uppercase; }
.section-head .kicker::before { content: '— '; }
.section-head.center .kicker::after { content: ' —'; }
.section-head h2 { font-family: 'Cormorant Garamond', serif; font-size: 56px; font-weight: 500; line-height: 1.05; margin-top: 18px; color: var(--ink); }
.section-head h2 em { color: var(--green); font-style: italic; }
.section-head p { font-size: 19px; line-height: 1.6; color: #2a3d33; margin-top: 20px; }

/* ─── ABOUT (HOME) ─── */
.about-section { background: var(--paper); }
.about-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: flex-start; }
.about-visual { position: sticky; top: 120px; }
.about-visual .crest-box { background: var(--ink); border: 4px solid var(--gold); padding: 48px; box-shadow: 30px 30px 0 var(--ink); position: relative; }
.about-visual .crest-box img { width: 100%; display: block; }
.about-visual .stamp { position: absolute; top: -20px; right: -30px; background: var(--gold); color: var(--ink); font-family: 'Oswald', sans-serif; font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; padding: 12px 22px; transform: rotate(6deg); border: 2px solid var(--ink); z-index: 2; }
.about-text .kicker { font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 0.3em; color: var(--green); text-transform: uppercase; }
.about-text .kicker::before { content: '— '; }
.about-text h2 { font-family: 'Cormorant Garamond', serif; font-size: 56px; font-weight: 500; line-height: 1.05; margin: 18px 0 28px; color: var(--ink); }
.about-text h2 em { color: var(--green); font-style: italic; }
.about-text p { font-size: 19px; line-height: 1.65; color: #2a3d33; margin-bottom: 20px; }

/* ─── SPORTS GRID ─── */
.sports-section { background: var(--cream); }
.sports-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.sport-card { background: var(--paper); border: 1px solid var(--line); padding: 32px 26px; transition: all 0.25s; position: relative; overflow: hidden; text-decoration: none; color: inherit; display: block; }
.sport-card:hover { transform: translateY(-4px); border-color: var(--green); box-shadow: 0 16px 32px rgba(13, 61, 42, 0.12); }
.sport-card .roman { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 22px; color: var(--gold); }
.sport-card svg { width: 48px; height: 48px; margin: 18px 0; color: var(--green); }
.sport-card h3 { font-family: 'Oswald', sans-serif; font-size: 17px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink); margin-bottom: 8px; }
.sport-card p { font-size: 15px; color: #2a3d33; line-height: 1.5; }
.sport-card .ages { font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 0.2em; color: var(--green); text-transform: uppercase; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line); }

/* ─── PILLARS ─── */
.pillars-section { background: var(--ink); color: var(--cream); }
.pillars-section .section-head h2 { color: var(--cream); }
.pillars-section .section-head h2 em { color: var(--gold); }
.pillars-section .section-head .kicker { color: var(--gold); }
.pillars-section .section-head p { color: rgba(245, 240, 225, 0.85); }
.pillars-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.pillar { padding: 36px 28px; border: 1px solid rgba(245, 197, 24, 0.25); position: relative; transition: all 0.25s; }
.pillar:hover { border-color: var(--gold); background: rgba(245, 197, 24, 0.04); }
.pillar .roman { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 36px; color: var(--gold); }
.pillar h4 { font-family: 'Oswald', sans-serif; font-size: 20px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cream); margin: 14px 0 14px; padding-bottom: 14px; border-bottom: 1px solid rgba(245, 197, 24, 0.3); }
.pillar p { font-size: 16px; line-height: 1.6; color: rgba(245, 240, 225, 0.85); }

/* ─── CALENDAR ─── */
.calendar-section { background: var(--paper); }
.calendar-table { width: 100%; border-collapse: collapse; background: var(--paper); border: 1px solid var(--line); }
.calendar-table th, .calendar-table td { padding: 18px 20px; text-align: left; border-bottom: 1px solid var(--line); font-size: 16px; }
.calendar-table th { background: var(--dark-green); color: var(--cream); font-family: 'Oswald', sans-serif; letter-spacing: 0.16em; text-transform: uppercase; font-size: 12px; font-weight: 500; }
.calendar-table td:first-child { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 22px; color: var(--green); width: 120px; }
.calendar-table tr:last-child td { border-bottom: none; }
.calendar-table tr:hover td { background: var(--cream); }

/* ─── TESTIMONIAL ─── */
.testimonial-section { background: var(--green); color: var(--cream); padding: 120px 0; position: relative; }
.testimonial-section .container { max-width: 900px; text-align: center; }
.testimonial-section .quote-mark { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 160px; color: var(--gold); line-height: 0.5; display: block; margin-bottom: 32px; }
.testimonial-section blockquote { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 36px; line-height: 1.35; color: var(--cream); margin: 0 0 36px; font-weight: 400; }
.testimonial-section .attribution { font-family: 'DM Mono', monospace; font-size: 12px; letter-spacing: 0.25em; color: var(--gold); text-transform: uppercase; }

/* ─── INVOLVE GRID ─── */
.involve-section { background: var(--cream); }
.involve-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.involve-card { background: var(--paper); border: 1px solid var(--line); padding: 44px 36px; transition: all 0.25s; }
.involve-card:hover { background: var(--dark-green); color: var(--cream); border-color: var(--gold); transform: translateY(-4px); }
.involve-card:hover h3 { color: var(--cream); }
.involve-card:hover h3 em { color: var(--gold); }
.involve-card:hover p { color: rgba(245, 240, 225, 0.88); }
.involve-card:hover .roman { color: var(--gold); }
.involve-card .roman { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 32px; color: var(--green); }
.involve-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 36px; font-weight: 500; line-height: 1.1; margin: 14px 0 18px; color: var(--ink); }
.involve-card h3 em { color: var(--green); font-style: italic; }
.involve-card p { font-size: 17px; line-height: 1.55; color: #2a3d33; margin-bottom: 24px; }

/* ─── PARTNERS ─── */
.partners-section { background: var(--paper); }
.partners-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.partner-cell { background: var(--paper); padding: 36px 24px; text-align: center; min-height: 120px; display: flex; align-items: center; justify-content: center; transition: all 0.25s; }
.partner-cell:hover { background: var(--cream); }
.partner-cell .name { font-family: 'Oswald', sans-serif; font-size: 14px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink); }

/* ─── CTA STRIP ─── */
.cta-strip { background: var(--gold); color: var(--ink); padding: 60px 0; }
.cta-strip .container { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; align-items: center; }
.cta-main h3 { font-family: 'Cormorant Garamond', serif; font-size: 40px; font-weight: 500; line-height: 1.1; margin-bottom: 12px; }
.cta-main h3 .italic { font-style: italic; color: var(--green); }
.cta-main p { font-size: 17px; line-height: 1.5; color: #2a3d33; }
.cta-side { display: flex; gap: 14px; flex-wrap: wrap; justify-content: flex-end; }

/* ─── FOOTER ─── */
.site-footer { background: var(--ink); color: var(--cream); padding: 80px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 60px; padding-bottom: 50px; border-bottom: 1px solid rgba(245, 197, 24, 0.2); }
.footer-brand img { height: 64px; width: 64px; background: var(--dark-green); padding: 6px; border: 1px solid var(--gold); border-radius: 4px; margin-bottom: 18px; }
.footer-brand h5 { font-family: 'Cormorant Garamond', serif; font-size: 32px; font-weight: 500; color: var(--cream); margin-bottom: 14px; }
.footer-brand h5 em { color: var(--gold); font-style: italic; }
.footer-brand p { font-size: 15px; line-height: 1.6; color: rgba(245, 240, 225, 0.75); margin-bottom: 20px; }
.footer-brand .verse-line { font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 0.25em; color: var(--gold); text-transform: uppercase; }
.site-footer h6 { font-family: 'Oswald', sans-serif; font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; padding-bottom: 14px; border-bottom: 1px solid rgba(245, 197, 24, 0.2); }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 10px; }
.site-footer li a, .site-footer li { font-family: 'Cormorant Garamond', serif; font-size: 17px; color: rgba(245, 240, 225, 0.85); text-decoration: none; transition: color 0.2s; }
.site-footer li a:hover { color: var(--gold); }
.footer-meta { display: flex; justify-content: space-between; padding-top: 30px; font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 0.18em; color: rgba(245, 240, 225, 0.55); text-transform: uppercase; flex-wrap: wrap; gap: 20px; }
.footer-meta a { color: rgba(245, 240, 225, 0.55); text-decoration: none; margin-left: 20px; }
.footer-meta a:hover { color: var(--gold); }

/* ─── PAGE HERO ─── */
.page-hero { background: var(--dark-green); color: var(--cream); padding: 80px 0 64px; border-bottom: 3px solid var(--gold); position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 80% 50%, rgba(245, 197, 24, 0.08), transparent 60%); pointer-events: none; }
.page-hero .container { position: relative; z-index: 2; max-width: 900px; }
.page-hero .breadcrumb { font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 0.25em; color: var(--gold); text-transform: uppercase; margin-bottom: 24px; }
.page-hero .breadcrumb a { color: var(--gold); text-decoration: none; }
.page-hero .breadcrumb a:hover { text-decoration: underline; }
.page-hero h1 { font-family: 'Cormorant Garamond', serif; font-size: 72px; font-weight: 500; line-height: 1.02; color: var(--cream); margin-bottom: 22px; }
.page-hero h1 .italic, .page-hero h1 em { font-style: italic; color: var(--gold); }
.page-hero p { font-size: 21px; line-height: 1.55; color: rgba(245, 240, 225, 0.88); max-width: 720px; }

/* ─── FORMS (CF7 styling) ─── */
.form-section { background: var(--cream); padding: 100px 0; }
.form-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 64px; align-items: flex-start; }
.form-aside { position: sticky; top: 120px; }
.form-aside h3 { font-family: 'Cormorant Garamond', serif; font-size: 36px; font-weight: 500; color: var(--ink); line-height: 1.1; margin-bottom: 18px; }
.form-aside h3 .italic, .form-aside h3 em { color: var(--green); font-style: italic; }
.form-aside p { font-size: 17px; line-height: 1.6; color: #2a3d33; margin-bottom: 18px; }
.aside-card { background: var(--paper); border: 1px solid var(--line); padding: 26px; margin-top: 24px; }
.aside-card h4 { font-family: 'Oswald', sans-serif; font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--green); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.aside-card ul { list-style: none; padding: 0; margin: 0; }
.aside-card li { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid var(--line); font-size: 15px; color: #2a3d33; }
.aside-card li:last-child { border-bottom: none; }
.aside-card li span { font-family: 'DM Mono', monospace; color: var(--green); font-weight: 500; }

.form-main { background: var(--paper); padding: 48px 44px; border: 1px solid var(--line); }
.form-section-block { margin-bottom: 40px; padding-bottom: 36px; border-bottom: 1px solid var(--line); }
.form-section-block:last-of-type { border-bottom: none; }
.form-h3 { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 500; color: var(--ink); margin-bottom: 24px; }
.form-h3 .italic, .form-h3 em { color: var(--green); font-style: italic; }

/* CF7 form field reset/restyle to match theme */
.wpcf7 .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.wpcf7 label { display: block; font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--green); margin-bottom: 8px; font-weight: 500; }
.wpcf7 label.full, .wpcf7 .full { grid-column: 1 / -1; display: block; margin-bottom: 18px; }
.wpcf7 .req, .wpcf7 .required { color: #c8281c; }
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="number"],
.wpcf7 input[type="url"],
.wpcf7 input[type="date"],
.wpcf7 select,
.wpcf7 textarea { width: 100%; background: var(--paper); border: 1px solid var(--line); padding: 12px 14px; font-family: 'Cormorant Garamond', serif; font-size: 17px; color: var(--ink); transition: border-color 0.2s; margin-top: 6px; }
.wpcf7 input:focus, .wpcf7 select:focus, .wpcf7 textarea:focus { outline: none; border-color: var(--green); background: #fff; }
.wpcf7 textarea { resize: vertical; min-height: 100px; }
.wpcf7 .hint { display: block; font-family: 'Cormorant Garamond', serif; font-size: 14px; font-style: italic; color: #6a7a72; text-transform: none; letter-spacing: 0; margin-top: 4px; font-weight: 400; }
.wpcf7 .checkbox-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin: 14px 0; }
.wpcf7 .check { display: flex; align-items: flex-start; gap: 10px; padding: 14px 16px; border: 1px solid var(--line); cursor: pointer; transition: all 0.2s; font-family: 'Cormorant Garamond', serif; font-size: 16px; color: var(--ink); text-transform: none; letter-spacing: 0; font-weight: 400; }
.wpcf7 .check:hover { border-color: var(--green); background: #fff; }
.wpcf7 .check input[type="checkbox"], .wpcf7 .check input[type="radio"] { margin-top: 4px; accent-color: var(--green); flex-shrink: 0; }
.wpcf7 .check.full { grid-column: 1 / -1; }

/* CF7 submit + validation */
.wpcf7 input[type="submit"], .wpcf7 .wpcf7-submit { display: inline-block; font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 14px; letter-spacing: 0.2em; text-transform: uppercase; padding: 16px 36px; background: var(--gold); color: var(--ink); border: 2px solid var(--gold); cursor: pointer; transition: all 0.25s; margin-top: 16px; width: auto; }
.wpcf7 input[type="submit"]:hover { background: var(--cream); border-color: var(--cream); }
.wpcf7 .wpcf7-not-valid-tip { color: #c8281c; font-family: 'DM Mono', monospace; font-size: 12px; margin-top: 6px; text-transform: none; letter-spacing: 0.05em; }
.wpcf7 .wpcf7-response-output { margin: 24px 0 0; padding: 16px 20px; font-family: 'Cormorant Garamond', serif; font-size: 17px; border-width: 2px; }
.wpcf7 form.sent .wpcf7-response-output { border-color: var(--green); background: rgba(34, 153, 84, 0.08); color: var(--dark-green); }
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output { border-color: #c8281c; background: rgba(200, 40, 28, 0.08); color: #8a1c14; }
.form-submit { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.submit-note { font-family: 'Cormorant Garamond', serif; font-size: 15px; font-style: italic; color: #6a7a72; flex: 1; min-width: 240px; }
.submit-note a { color: var(--green); }

/* ─── CONTENT (post/page body) ─── */
.entry-content { font-size: 19px; line-height: 1.7; color: #2a3d33; }
.entry-content p { margin-bottom: 1.5em; }
.entry-content h2 { font-family: 'Cormorant Garamond', serif; font-size: 42px; font-weight: 500; color: var(--ink); margin: 1.6em 0 0.6em; line-height: 1.15; }
.entry-content h2 em { color: var(--green); font-style: italic; }
.entry-content h3 { font-family: 'Cormorant Garamond', serif; font-size: 30px; font-weight: 500; color: var(--ink); margin: 1.4em 0 0.5em; }
.entry-content h4 { font-family: 'Oswald', sans-serif; font-size: 18px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--green); margin: 1.3em 0 0.6em; }
.entry-content ul, .entry-content ol { margin: 0 0 1.5em 1.5em; }
.entry-content li { margin-bottom: 0.5em; }
.entry-content blockquote { border-left: 3px solid var(--gold); padding: 8px 0 8px 24px; margin: 1.5em 0; font-style: italic; font-size: 22px; color: var(--green); }
.entry-content a { color: var(--green); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.entry-content a:hover { color: var(--dark-green); }
.entry-content img { margin: 1.5em 0; }
.entry-content code { background: var(--cream); padding: 2px 8px; font-size: 0.9em; }

.single-content, .page-content { padding: 80px 0; background: var(--paper); }
.single-content .container, .page-content .container { max-width: 820px; }

/* Posts list / archive */
.posts-archive { padding: 80px 0; background: var(--paper); }
.posts-archive .container { max-width: 1100px; }
.archive-header { margin-bottom: 56px; padding-bottom: 32px; border-bottom: 2px solid var(--gold); }
.archive-header h1 { font-family: 'Cormorant Garamond', serif; font-size: 56px; font-weight: 500; color: var(--ink); margin-bottom: 12px; }
.archive-header h1 em { color: var(--green); font-style: italic; }
.archive-header p { font-size: 18px; color: #2a3d33; }
.posts-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
article.post-card { background: var(--paper); border: 1px solid var(--line); padding: 32px; transition: all 0.25s; }
article.post-card:hover { border-color: var(--green); transform: translateY(-2px); }
article.post-card .post-thumb { margin: -32px -32px 24px; overflow: hidden; }
article.post-card .post-thumb img { width: 100%; height: 240px; object-fit: cover; }
article.post-card .post-meta { font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--green); margin-bottom: 14px; }
article.post-card h2 { font-family: 'Cormorant Garamond', serif; font-size: 32px; font-weight: 500; line-height: 1.15; margin-bottom: 14px; }
article.post-card h2 a { color: var(--ink); text-decoration: none; }
article.post-card h2 a:hover { color: var(--green); }
article.post-card .excerpt { font-size: 17px; line-height: 1.55; color: #2a3d33; margin-bottom: 18px; }
article.post-card .read-more { font-family: 'Oswald', sans-serif; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--green); text-decoration: none; }
article.post-card .read-more::after { content: ' →'; }
article.post-card .read-more:hover { color: var(--gold); }

.pagination { margin-top: 60px; display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; }
.pagination .page-numbers { font-family: 'Oswald', sans-serif; font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; padding: 10px 16px; border: 1px solid var(--line); color: var(--ink); text-decoration: none; transition: all 0.2s; }
.pagination .page-numbers:hover, .pagination .page-numbers.current { background: var(--green); color: var(--cream); border-color: var(--green); }

/* Sidebar / widgets (if used) */
.widget { margin-bottom: 40px; }
.widget-title { font-family: 'Oswald', sans-serif; font-size: 14px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--green); margin-bottom: 18px; padding-bottom: 12px; border-bottom: 2px solid var(--gold); }
.widget ul { list-style: none; padding: 0; }
.widget li { padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 17px; }
.widget a { color: var(--ink); text-decoration: none; }
.widget a:hover { color: var(--green); }

/* Comments */
.comments-area { padding: 60px 0; background: var(--paper); border-top: 1px solid var(--line); }
.comments-area .container { max-width: 820px; }
.comments-title { font-family: 'Cormorant Garamond', serif; font-size: 32px; margin-bottom: 30px; color: var(--ink); }
.comment-list { list-style: none; padding: 0; }
.comment-body { padding: 20px 0; border-bottom: 1px solid var(--line); }
.comment-meta { font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--green); margin-bottom: 10px; }
.comment-content { font-size: 17px; line-height: 1.6; }

/* ─── REVEAL ANIM ─── */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.215, 0.61, 0.355, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .hero h1 { font-size: 64px; }
  .hero .container { grid-template-columns: 1fr; gap: 50px; }
  .sports-grid, .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .partners-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat { border-bottom: 1px solid var(--line); }
  .involve-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 50px; }
  .about-visual { position: static; max-width: 400px; }
  .form-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-aside { position: static; }
  .posts-grid { grid-template-columns: 1fr; }
  .page-hero h1 { font-size: 52px; }
}
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .hamburger { display: block; }
  .main-nav ul { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--dark-green); padding: 20px; border-top: 1px solid var(--gold); }
  .main-nav ul.open { display: flex; }
  .main-nav a { padding: 14px 20px; width: 100%; }
  .topbar .quick { display: none; }
  .hero { padding: 70px 0; }
  .hero h1 { font-size: 48px; }
  .hero-lede { font-size: 18px; }
  .verse-card { padding: 36px 28px; }
  .section-pad { padding: 70px 0; }
  .section-head h2, .about-text h2, .testimonial-section blockquote { font-size: 36px; }
  .testimonial-section blockquote { font-size: 26px; }
  .stat .num { font-size: 56px; }
  .sports-grid, .pillars-grid { grid-template-columns: 1fr; }
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-strip .container { grid-template-columns: 1fr; }
  .cta-side { justify-content: flex-start; }
  .footer-meta { flex-direction: column; align-items: flex-start; }
  .footer-meta a { margin-left: 0; margin-right: 20px; }
  .form-main { padding: 32px 24px; }
  .wpcf7 .form-row { grid-template-columns: 1fr; }
  .wpcf7 .checkbox-row { grid-template-columns: 1fr; }
  .page-hero { padding: 60px 0 50px; }
  .page-hero h1 { font-size: 38px; }
  .calendar-table { font-size: 14px; }
  .calendar-table th, .calendar-table td { padding: 12px 10px; }
}
