/* ═══════════════════════════════════════════════════════════
   BeHOPE OF GLORY — Humanitarian Program
   Shared site stylesheet
   Brand: green + gold, from the official tree-seal logo.
   ═══════════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
	--green:       #17461E;
	--green-mid:   #1a5224;
	--green-dark:  #0f3315;
	--green-deep:  #0a2010;
	--gold:        #FFBE00;
	--gold-dark:   #e6aa00;
	--leaf:        #4a8a3d;
	--white:       #ffffff;
	--off-white:   #f8f8f6;
	--cream:       #faf7ee;
	--text:        #2d2d2d;
	--text-light:  #666;
	--border:      #e0e0e0;
	--maxw:        1140px;
	--shadow-sm:   0 2px 12px rgba(0,0,0,0.07);
	--shadow-md:   0 12px 30px rgba(23,70,30,0.15);
}

html { scroll-behavior: smooth; }
body {
	font-family: 'Source Sans 3', system-ui, sans-serif;
	font-size: 16px;
	color: var(--text);
	background: var(--white);
	overflow-x: hidden;
	line-height: 1.6;
}
a { color: var(--green); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold-dark); }
img { max-width: 100%; display: block; }
h1,h2,h3,h4 { font-family: 'Playfair Display', Georgia, serif; }

/* ── Reusable layout ── */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 1.5em; }
.section { padding: 5em 0; }
.section--tight { padding: 3.5em 0; }
.bg-off   { background: var(--off-white); }
.bg-cream { background: var(--cream); }
.bg-green { background: var(--green); color: #fff; }
.text-center { text-align: center; }

.section-label {
	font-size: 0.72em; letter-spacing: 0.2em; text-transform: uppercase;
	font-weight: 700; color: var(--gold-dark); margin-bottom: 0.6em;
}
.section-title {
	font-size: clamp(1.7em, 3.4vw, 2.3em); line-height: 1.22; color: var(--green);
	margin-bottom: 0.5em;
}
.bg-green .section-title { color: var(--gold); }
.bg-green .section-label { color: var(--gold); }
.section-sub {
	font-size: 1.05em; font-weight: 300; line-height: 1.85; color: var(--text-light);
	max-width: 640px;
}
.section-sub.center { margin-left: auto; margin-right: auto; }
.bg-green .section-sub { color: rgba(255,255,255,0.8); }

/* ── Buttons ── */
.btn {
	display: inline-block; font-size: 0.9em; font-weight: 700; letter-spacing: 0.03em;
	padding: 0.85em 2.1em; border-radius: 4px; cursor: pointer; border: 1.5px solid transparent;
	transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: var(--green); }
.btn-gold:hover { background: var(--gold-dark); color: var(--green); }
.btn-green { background: var(--green); color: #fff; }
.btn-green:hover { background: var(--green-mid); color: #fff; }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,0.5); }
.btn-outline-white:hover { border-color: var(--gold); color: var(--gold); }
.btn-outline-gold { background: transparent; color: var(--gold); border-color: rgba(255,190,0,0.6); }
.btn-outline-gold:hover { background: rgba(255,190,0,0.1); border-color: var(--gold); color: var(--gold); }
.btn-outline-green { background: transparent; color: var(--green); border-color: var(--green); }
.btn-outline-green:hover { background: var(--green); color: #fff; }
.btn-row { display: flex; gap: 1em; flex-wrap: wrap; }
.btn-row.center { justify-content: center; }

/* ── Scroll reveal ── */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
@media (prefers-reduced-motion: reduce) {
	.reveal { opacity: 1; transform: none; transition: none; }
	html { scroll-behavior: auto; }
}

/* ═══════════════════════════════════════════
   HEADER — logo bar + nav
═══════════════════════════════════════════ */
#logo-bar {
	background: #fff; border-bottom: 1px solid var(--border);
	position: sticky; top: 0; z-index: 1000; box-shadow: 0 1px 8px rgba(0,0,0,0.05);
}
#logo-bar .wrap {
	display: flex; align-items: center; gap: 0.8em; padding-top: 0.6em; padding-bottom: 0.6em;
}
#logo-bar img.seal { height: 52px; width: auto; }
#logo-bar .brand-text { line-height: 1.1; }
#logo-bar .brand-text h1 {
	font-size: 1.28em; color: var(--green); letter-spacing: 0.04em; text-transform: uppercase;
}
#logo-bar .brand-text h1 em { color: var(--gold-dark); font-style: normal; }
#logo-bar .brand-text .tagline {
	font-family: 'Source Sans 3', sans-serif; font-size: 0.6em; letter-spacing: 0.18em;
	text-transform: uppercase; color: var(--text-light); font-weight: 600;
}
#logo-bar .spacer { flex: 1; }
#logo-bar .header-cta { display: inline-block; }
.nav-toggle {
	display: none; background: none; border: 0; cursor: pointer; padding: 0.4em;
	font-size: 1.5em; color: var(--green);
}

#main-nav { background: var(--green); position: sticky; top: 66px; z-index: 999; }
#main-nav .nav-inner { max-width: var(--maxw); margin: 0 auto; }
#main-nav ul { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; }
#main-nav li { position: relative; }
#main-nav a {
	display: block; color: rgba(255,255,255,0.82); padding: 0.95em 1.15em;
	font-size: 0.78em; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
	border-bottom: 3px solid transparent;
}
#main-nav a:hover { color: var(--gold); background: rgba(255,255,255,0.06); }
#main-nav li.current > a { color: var(--gold); border-bottom-color: var(--gold); }
#main-nav li.donate a { background: var(--gold); color: var(--green); font-weight: 700; }
#main-nav li.donate a:hover { background: var(--gold-dark); color: var(--green); }
#main-nav .caret { font-size: 0.8em; margin-left: 0.3em; opacity: 0.7; }

/* Dropdown */
#main-nav .has-sub > .submenu {
	position: absolute; top: 100%; left: 0; min-width: 210px; background: var(--green-dark);
	box-shadow: 0 12px 24px rgba(0,0,0,0.25); display: none; flex-direction: column; padding: 0.4em 0;
	border-top: 3px solid var(--gold); z-index: 5;
}
#main-nav .has-sub:hover > .submenu, #main-nav .has-sub.open > .submenu { display: flex; }
#main-nav .submenu li a {
	padding: 0.7em 1.3em; text-transform: none; letter-spacing: 0.02em; font-size: 0.82em;
	border-bottom: none; white-space: nowrap;
}
#main-nav .submenu li a:hover { background: rgba(255,255,255,0.07); }

/* ═══════════════════════════════════════════
   PAGE HERO (interior pages)
═══════════════════════════════════════════ */
.page-hero {
	position: relative; min-height: 46vh; display: flex; align-items: center;
	background: var(--green-dark); overflow: hidden;
}
.page-hero .bg {
	position: absolute; inset: 0; background-size: cover; background-position: center;
}
.page-hero .overlay {
	position: absolute; inset: 0;
	background: linear-gradient(105deg, rgba(15,51,21,0.9) 0%, rgba(23,70,30,0.72) 55%, rgba(23,70,30,0.5) 100%);
}
.page-hero .content { position: relative; z-index: 2; padding: 4em 0; }
.page-hero .content .wrap { padding-top: 0; padding-bottom: 0; }
.page-hero .eyebrow {
	display: inline-block; border: 1px solid rgba(255,190,0,0.55); color: var(--gold);
	font-size: 0.68em; letter-spacing: 0.2em; text-transform: uppercase;
	padding: 0.4em 1.1em; border-radius: 2px; margin-bottom: 1.2em;
}
.page-hero h1 { color: #fff; font-size: clamp(2em, 4.5vw, 3em); line-height: 1.18; margin-bottom: 0.4em; }
.page-hero h1 em { color: var(--gold); font-style: italic; }
.page-hero p { color: rgba(255,255,255,0.82); font-size: 1.08em; font-weight: 300; max-width: 620px; }

/* ═══════════════════════════════════════════
   HOME HERO
═══════════════════════════════════════════ */
#home-hero { position: relative; min-height: 90vh; display: flex; align-items: center; overflow: hidden; background: var(--green-dark); }
#home-hero .hero-bg {
	position: absolute; inset: 0; background: url('../../images/photos/limbecamp-group-01.jpg') center 30% / cover no-repeat;
	transform: scale(1.06); transition: transform 9s ease-out;
}
#home-hero.loaded .hero-bg { transform: scale(1); }
#home-hero .hero-overlay {
	position: absolute; inset: 0;
	background: linear-gradient(100deg, rgba(15,51,21,0.9) 0%, rgba(23,70,30,0.72) 48%, rgba(10,32,16,0.55) 100%);
}
#home-hero .hero-content { position: relative; z-index: 2; padding: 5em 0; max-width: 720px; }
#home-hero .hero-tag {
	display: inline-block; border: 1px solid rgba(255,190,0,0.6); color: var(--gold);
	font-size: 0.68em; letter-spacing: 0.2em; text-transform: uppercase; padding: 0.45em 1.2em;
	border-radius: 2px; margin-bottom: 1.4em;
}
#home-hero h1 { font-size: clamp(2.1em, 5vw, 3.4em); color: #fff; line-height: 1.16; margin-bottom: 0.5em; }
#home-hero h1 em { color: var(--gold); font-style: italic; }
#home-hero .motto { color: rgba(255,255,255,0.9); font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.15em; margin-bottom: 1.6em; }
#home-hero p.lead { color: rgba(255,255,255,0.78); font-size: 1.05em; font-weight: 300; line-height: 1.85; margin-bottom: 2.2em; max-width: 560px; }
.scroll-hint {
	position: absolute; bottom: 1.6em; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.45);
	font-size: 1.4em; animation: bounce 2s infinite; z-index: 2;
}
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0);} 50% { transform: translateX(-50%) translateY(7px);} }

/* ── Welcome strip ── */
.welcome { text-align: center; }
.welcome .lines { font-family: 'Playfair Display', serif; font-size: clamp(1.3em,2.6vw,1.8em); color: var(--green); line-height: 1.5; margin-bottom: 0.7em; }
.welcome .lines span { color: var(--gold-dark); }
.welcome p { max-width: 680px; margin: 0 auto; color: var(--text-light); font-size: 1.05em; font-weight: 300; }

/* ── Stats bar ── */
#stats-bar { background: var(--gold); padding: 2.2em 0; }
.stats-inner { display: grid; grid-template-columns: repeat(4,1fr); gap: 1em; text-align: center; max-width: 940px; margin: 0 auto; }
.stat-num { display: block; font-family: 'Playfair Display', serif; font-size: 2.3em; color: var(--green); line-height: 1; }
.stat-label { font-size: 0.72em; color: var(--green-dark); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 0.4em; font-weight: 600; }

/* ── Three steps ── */
.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.6em; margin-top: 2.5em; }
.step-card { background: #fff; border-radius: 6px; padding: 2.2em 1.6em; text-align: center; box-shadow: var(--shadow-sm); border-top: 4px solid var(--gold); }
.step-card .step-ico { width: 58px; height: 58px; border-radius: 50%; background: var(--green); color: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 1.4em; margin: 0 auto 1em; }
.step-card h3 { color: var(--green); font-size: 1.15em; margin-bottom: 0.4em; }
.step-card p { color: var(--text-light); font-size: 0.92em; }

/* ── Cards grid (programs / help / generic) ── */
.card-grid { display: grid; gap: 1.5em; }
.cols-3 { grid-template-columns: repeat(3,1fr); }
.cols-4 { grid-template-columns: repeat(4,1fr); }
.cols-2 { grid-template-columns: repeat(2,1fr); }

.info-card { background: #fff; border-radius: 6px; padding: 1.8em; box-shadow: var(--shadow-sm); border-top: 3px solid var(--green); transition: transform 0.3s, box-shadow 0.3s; }
.info-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.info-card .ico { font-size: 1.6em; color: var(--green); margin-bottom: 0.5em; }
.info-card h3 { color: var(--green); font-size: 1.1em; margin-bottom: 0.5em; }
.info-card p { color: var(--text-light); font-size: 0.92em; }

/* photo cards */
.photo-card { background: #fff; border-radius: 6px; overflow: hidden; box-shadow: var(--shadow-sm); transition: transform 0.3s, box-shadow 0.3s; }
.photo-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.photo-card .img-wrap { overflow: hidden; height: 210px; }
.photo-card .img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.photo-card:hover .img-wrap img { transform: scale(1.05); }
.photo-card .body { padding: 1.3em 1.4em 1.6em; border-top: 3px solid var(--green); }
.photo-card h3 { color: var(--green); font-size: 1.05em; margin-bottom: 0.4em; }
.photo-card p { color: var(--text-light); font-size: 0.88em; }

/* ── Featured story ── */
.feature { display: grid; grid-template-columns: 1.05fr 1fr; gap: 2.6em; align-items: center; }
.feature .fimg { border-radius: 8px; overflow: hidden; box-shadow: var(--shadow-md); }
.feature .fimg img { width: 100%; height: 100%; object-fit: cover; }
.feature .kicker { color: var(--gold-dark); font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.72em; margin-bottom: 0.7em; }
.feature h2 { color: var(--green); font-size: clamp(1.5em,2.8vw,2em); margin-bottom: 0.6em; }
.feature p { color: var(--text-light); margin-bottom: 1em; }

/* ── Split content (image + text) ── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 2.8em; align-items: center; }
.split.reverse .split-img { order: 2; }
.split-img { border-radius: 8px; overflow: hidden; box-shadow: var(--shadow-md); }
.split-img img { width: 100%; object-fit: cover; }
.prose h2 { color: var(--green); margin-bottom: 0.5em; font-size: clamp(1.5em,2.8vw,2em); }
.prose h3 { color: var(--green); margin: 1.2em 0 0.4em; font-size: 1.2em; }
.prose p { margin-bottom: 1em; color: var(--text); }
.prose ul { margin: 0 0 1.2em 1.2em; }
.prose ul li { margin-bottom: 0.5em; color: var(--text); }
.lead-p { font-size: 1.12em; font-weight: 300; line-height: 1.85; }

/* ── Values / core values ── */
.value-item { padding: 1.5em; border-left: 3px solid var(--gold); background: var(--off-white); border-radius: 0 6px 6px 0; }
.value-item .ico { font-size: 1.5em; color: var(--green); margin-bottom: 0.4em; }
.value-item h4 { color: var(--green); font-size: 1.02em; margin-bottom: 0.35em; }
.value-item p { color: var(--text-light); font-size: 0.9em; }

/* ── Check list ── */
.check-list { list-style: none; }
.check-list li { position: relative; padding: 0.55em 0 0.55em 1.9em; border-bottom: 1px solid #eee; font-size: 0.95em; color: var(--text); }
.check-list li:last-child { border-bottom: none; }
.check-list li::before { content: '\2713'; position: absolute; left: 0; top: 0.55em; color: var(--leaf); font-weight: 700; }

/* ── Divider / quote band ── */
.quote-band { position: relative; min-height: 340px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.quote-band .qb-bg { position: absolute; inset: -60px 0; background-size: cover; background-position: center 35%; will-change: transform; }
.quote-band .qb-overlay { position: absolute; inset: 0; background: linear-gradient(rgba(15,51,21,0.78), rgba(10,32,16,0.85)); }
.quote-band .qb-content { position: relative; z-index: 2; text-align: center; padding: 2em; }
.quote-band blockquote { font-family: 'Playfair Display', serif; font-style: italic; color: #fff; font-size: clamp(1.3em,3vw,2em); line-height: 1.5; max-width: 780px; margin: 0 auto 0.6em; }
.quote-band cite { color: var(--gold); font-size: 0.8em; letter-spacing: 0.1em; text-transform: uppercase; font-style: normal; }

/* ── Voices of hope quote cards ── */
.voices { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5em; }
.voice-card { background: #fff; border-radius: 8px; padding: 2em 1.6em; box-shadow: var(--shadow-sm); border-top: 4px solid var(--gold); position: relative; }
.voice-card .mark { font-family: 'Playfair Display', serif; font-size: 3em; color: var(--gold); line-height: 0.6; }
.voice-card blockquote { font-family: 'Playfair Display', serif; font-style: italic; color: var(--green); font-size: 1.15em; line-height: 1.5; margin: 0.2em 0 0.7em; }
.voice-card cite { font-style: normal; color: var(--text-light); font-size: 0.82em; }

/* ═══════════════════════════════════════════
   TIMELINE
═══════════════════════════════════════════ */
.timeline { position: relative; max-width: 900px; margin: 2em auto 0; }
.timeline::before { content: ''; position: absolute; left: 20px; top: 0; bottom: 0; width: 2px; background: linear-gradient(var(--gold), var(--green)); }
.tl-item { position: relative; padding: 0 0 2.6em 60px; }
.tl-item .dot { position: absolute; left: 11px; top: 4px; width: 20px; height: 20px; border-radius: 50%; background: var(--gold); border: 3px solid #fff; box-shadow: 0 0 0 2px var(--gold); }
.tl-year { font-family: 'Playfair Display', serif; color: var(--green); font-size: 1.5em; }
.tl-head { font-weight: 700; color: var(--gold-dark); text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.8em; margin-bottom: 0.6em; }
.tl-card { background: #fff; border-radius: 8px; box-shadow: var(--shadow-sm); padding: 1.5em 1.6em; margin-top: 0.7em; }
.tl-card h4 { color: var(--green); font-size: 1.1em; margin-bottom: 0.3em; }
.tl-card .place { color: var(--gold-dark); font-size: 0.8em; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; margin-bottom: 0.7em; }
.tl-card p { color: var(--text-light); font-size: 0.92em; margin-bottom: 0.7em; }
.tl-items { margin: 0.4em 0 0.4em 1.1em; }
.tl-items li { font-size: 0.88em; color: var(--text-light); margin-bottom: 0.25em; }
.tl-quote { border-left: 3px solid var(--gold); padding: 0.4em 0 0.4em 1em; margin-top: 0.9em; font-style: italic; color: var(--green); font-family: 'Playfair Display', serif; }

/* timeline ribbon (home) */
.ribbon { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.6em; margin-top: 1em; }
.ribbon .rib { text-align: center; background: #fff; border-radius: 8px; box-shadow: var(--shadow-sm); padding: 1em 1.2em; min-width: 130px; border-bottom: 3px solid var(--gold); }
.ribbon .rib .y { font-family: 'Playfair Display', serif; color: var(--green); font-size: 1.4em; }
.ribbon .rib .l { font-size: 0.75em; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.06em; }

/* ═══════════════════════════════════════════
   GALLERY
═══════════════════════════════════════════ */
.gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 0.8em; }
.gallery-grid figure { position: relative; overflow: hidden; border-radius: 6px; cursor: pointer; aspect-ratio: 4/3; background: #ddd; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery-grid figure:hover img { transform: scale(1.06); }
.gallery-grid figcaption {
	position: absolute; inset: auto 0 0 0; padding: 1.4em 1em 0.8em; color: #fff; font-size: 0.85em;
	background: linear-gradient(transparent, rgba(10,32,16,0.85)); opacity: 0; transition: opacity 0.3s;
}
.gallery-grid figure:hover figcaption { opacity: 1; }

/* lightbox */
#lightbox { position: fixed; inset: 0; background: rgba(8,20,10,0.94); display: none; align-items: center; justify-content: center; z-index: 3000; padding: 2em; }
#lightbox.open { display: flex; }
#lightbox img { max-width: 92vw; max-height: 82vh; border-radius: 6px; box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
#lightbox .lb-cap { position: absolute; bottom: 1.4em; left: 0; right: 0; text-align: center; color: #fff; font-size: 0.9em; }
#lightbox .lb-close { position: absolute; top: 1em; right: 1.3em; color: #fff; font-size: 2em; cursor: pointer; background: none; border: 0; }
#lightbox .lb-nav { position: absolute; top: 50%; transform: translateY(-50%); color: #fff; font-size: 2.4em; cursor: pointer; background: none; border: 0; padding: 0.3em; opacity: 0.8; }
#lightbox .lb-nav:hover { opacity: 1; color: var(--gold); }
#lightbox .lb-prev { left: 0.5em; } #lightbox .lb-next { right: 0.5em; }

/* ═══════════════════════════════════════════
   FAQ ACCORDION
═══════════════════════════════════════════ */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); border-radius: 8px; margin-bottom: 0.8em; overflow: hidden; background: #fff; }
.faq-q { width: 100%; text-align: left; background: none; border: 0; cursor: pointer; padding: 1.15em 1.3em; font-size: 1em; font-weight: 600; color: var(--green); display: flex; justify-content: space-between; align-items: center; gap: 1em; font-family: inherit; }
.faq-q:hover { background: var(--off-white); }
.faq-q .sign { color: var(--gold-dark); font-size: 1.3em; transition: transform 0.3s; flex: none; }
.faq-item.open .faq-q .sign { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-a p { padding: 0 1.3em 1.2em; color: var(--text-light); font-size: 0.95em; }

/* ═══════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 2.6em; }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9em; }
.field-grid .full { grid-column: 1 / -1; }
.field-grid label { display: block; font-size: 0.78em; font-weight: 600; color: var(--green); margin-bottom: 0.3em; text-transform: uppercase; letter-spacing: 0.05em; }
.field-grid input, .field-grid textarea, .field-grid select {
	width: 100%; padding: 0.7em 0.9em; border: 1px solid var(--border); border-radius: 5px;
	font-family: inherit; font-size: 0.95em; background: #fff; color: var(--text);
}
.field-grid input:focus, .field-grid textarea:focus, .field-grid select:focus { outline: none; border-color: var(--gold-dark); }
.field-grid textarea { resize: vertical; min-height: 120px; }
.contact-info { background: var(--green); color: #fff; border-radius: 10px; padding: 2.2em; }
.contact-info h3 { color: var(--gold); font-size: 1.2em; margin-bottom: 1em; }
.contact-info .ci-row { display: flex; gap: 0.9em; margin-bottom: 1.1em; align-items: flex-start; }
.contact-info .ci-row .ico { color: var(--gold); font-size: 1.1em; width: 1.4em; flex: none; margin-top: 0.15em; }
.contact-info .ci-row .lbl { font-size: 0.7em; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.6); }
.contact-info .ci-row .val { color: #fff; font-size: 0.95em; }
.contact-info .ci-row .val.placeholder { color: rgba(255,255,255,0.4); font-style: italic; }

/* ── Placeholder / editorial note flag ── */
.needs-content {
	display: inline-block; background: rgba(255,190,0,0.18); border: 1px dashed var(--gold-dark);
	color: #8a6d00; font-size: 0.82em; padding: 0.05em 0.5em; border-radius: 3px; font-style: italic;
}

/* ── CTA band ── */
.cta-band { background: var(--green); text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 30% 40%, rgba(255,190,0,0.08), transparent 60%); }
.cta-band .wrap { position: relative; z-index: 1; }
.cta-band h2 { color: var(--gold); font-size: clamp(1.7em,3.4vw,2.3em); margin-bottom: 0.5em; }
.cta-band p { color: rgba(255,255,255,0.78); max-width: 600px; margin: 0 auto 2em; font-weight: 300; }

/* ── Vehicle / looking ahead ── */
.vehicle { display: grid; grid-template-columns: auto 1fr; gap: 1.6em; align-items: center; background: var(--off-white); border-radius: 10px; padding: 2em; border-left: 5px solid var(--gold); }
.vehicle .ico { font-size: 3.4em; color: var(--green); }
.vehicle h3 { color: var(--green); font-size: 1.3em; margin-bottom: 0.4em; }
.vehicle p { color: var(--text-light); }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
#site-footer { background: var(--green-deep); padding: 4em 0 2em; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.6em; margin-bottom: 2.6em; }
.footer-brand img { height: 46px; margin-bottom: 0.9em; }
.footer-brand h3 { color: #fff; font-size: 1.15em; margin-bottom: 0.2em; }
.footer-brand h3 em { color: var(--gold); font-style: normal; }
.footer-brand .motto { color: var(--gold); font-size: 0.82em; font-style: italic; margin-bottom: 0.7em; }
.footer-brand p { color: rgba(255,255,255,0.45); font-size: 0.85em; font-weight: 300; }
.footer-col h4 { color: var(--gold); font-size: 0.72em; text-transform: uppercase; letter-spacing: 0.14em; margin-bottom: 1em; }
.footer-col ul { list-style: none; }
.footer-col ul li { border-top: 1px solid rgba(255,255,255,0.06); }
.footer-col ul li:first-child { border-top: none; }
.footer-col ul li a { color: rgba(255,255,255,0.55); font-size: 0.85em; padding: 0.42em 0; display: block; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-col .ci { color: rgba(255,255,255,0.55); font-size: 0.85em; margin-bottom: 0.6em; }
.footer-col .ci .placeholder { color: rgba(255,255,255,0.35); font-style: italic; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.8em; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1em; }
.social-icons { display: flex; gap: 0.7em; }
.social-icons a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.18); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); font-size: 0.9em; }
.social-icons a:hover { border-color: var(--gold); color: var(--gold); background: rgba(255,190,0,0.08); }
.footer-copy { color: rgba(255,255,255,0.3); font-size: 0.78em; }
.footer-copy .tag { color: rgba(255,255,255,0.45); }

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 980px) {
	.cols-4 { grid-template-columns: repeat(2,1fr); }
	.cols-3, .steps-grid, .voices { grid-template-columns: 1fr; }
	.feature, .split { grid-template-columns: 1fr; }
	.split.reverse .split-img { order: 0; }
	.contact-grid { grid-template-columns: 1fr; }
	.footer-grid { grid-template-columns: 1fr 1fr; }
	.gallery-grid { grid-template-columns: repeat(2,1fr); }

	/* mobile nav */
	.nav-toggle { display: block; }
	#logo-bar .header-cta { display: none; }
	#main-nav { top: 66px; }
	#main-nav .nav-inner { display: none; }
	#main-nav.open .nav-inner { display: block; }
	#main-nav ul { flex-direction: column; }
	#main-nav a { text-align: left; padding: 0.9em 1.5em; border-bottom: 1px solid rgba(255,255,255,0.07); }
	#main-nav li.current > a { border-bottom-color: rgba(255,255,255,0.07); }
	#main-nav .caret { float: right; }
	#main-nav .has-sub > .submenu { position: static; display: none; box-shadow: none; border-top: none; padding: 0; background: rgba(0,0,0,0.2); }
	#main-nav .has-sub.open > .submenu { display: block; }
	#main-nav .submenu li a { padding-left: 2.6em; }
}
@media (max-width: 620px) {
	.stats-inner { grid-template-columns: repeat(2,1fr); gap: 1.6em; }
	.cols-4, .cols-2, .card-grid.cols-4 { grid-template-columns: 1fr; }
	.gallery-grid { grid-template-columns: 1fr 1fr; }
	.footer-grid { grid-template-columns: 1fr; }
	.vehicle { grid-template-columns: 1fr; text-align: center; }
	.field-grid { grid-template-columns: 1fr; }
	#logo-bar .brand-text h1 { font-size: 1.05em; }
	.footer-bottom { flex-direction: column; text-align: center; }
}
