/* ============================================================
   BRADWELL CEMETERY ASSOCIATION INC. — style.css
   ============================================================ */

/* ---------- Fade-in animation ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #2c2c2c;
  background: #f5f3ef;
}

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

a { color: #2d5a27; text-decoration: none; }
a:hover { color: #c9a84c; }

h1, h2, h3, h4 {
  font-family: Georgia, 'Times New Roman', serif;
  line-height: 1.3;
}

/* ---------- Utility ---------- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 72px 0; }
.section-pad-sm { padding: 48px 0; }
.text-center { text-align: center; }

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #c9a84c;
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: #1e3d1a;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: #5a5a5a;
  max-width: 640px;
  margin: 0 auto 40px;
}

.divider {
  width: 56px;
  height: 3px;
  background: #c9a84c;
  margin: 0 auto 32px;
  border: none;
}

.btn {
  display: inline-block;
  padding: 13px 32px;
  border-radius: 3px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn-primary {
  background: #2d5a27;
  color: #fff;
  border: 2px solid #2d5a27;
}
.btn-primary:hover { background: #1e3d1a; border-color: #1e3d1a; color: #fff; }

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.btn-outline:hover { background: #fff; color: #2d5a27; }

.btn-gold {
  background: #c9a84c;
  color: #fff;
  border: 2px solid #c9a84c;
}
.btn-gold:hover { background: #b8963e; border-color: #b8963e; color: #fff; }

/* ---------- HEADER ---------- */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #1e3d1a;
  box-shadow: 0 2px 12px rgba(0,0,0,0.35);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 16px;
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.header-brand img {
  height: 50px;
  width: auto;
  border-radius: 3px;
  object-fit: cover;
}

.header-brand-name {
  font-family: Georgia, serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  max-width: 200px;
  letter-spacing: 0.01em;
}

/* NAV */
#main-nav ul {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 2px;
  white-space: nowrap;
}

#main-nav ul li a {
  display: block;
  padding: 8px 9px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #d4e8d0;
  border-radius: 3px;
  transition: background 0.18s, color 0.18s;
  white-space: nowrap;
}

#main-nav ul li a:hover,
#main-nav ul li a.active {
  background: #c9a84c;
  color: #fff;
}

/* Hamburger */
#nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}

#nav-toggle span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.25s;
}

#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); }

/* ---------- FOOTER ---------- */
#site-footer {
  position: relative;
  background:
    linear-gradient(180deg, rgba(30,61,26,0.97) 0%, rgba(16,30,14,0.99) 100%),
    #132610;
  color: rgba(255,255,255,0.78);
  padding: 0;
  overflow: hidden;
}

#site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 42px 42px;
  pointer-events: none;
}

#site-footer > .container,
.footer-bottom {
  position: relative;
  z-index: 1;
}

.footer-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 42px 0 34px;
  border-bottom: 1px solid rgba(255,255,255,0.14);
}

.footer-kicker {
  display: block;
  margin-bottom: 8px;
  color: #c9a84c;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-topline h2 {
  max-width: 760px;
  color: #fff;
  font-size: 1.65rem;
  line-height: 1.35;
}

.footer-action {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 22px;
  border: 1px solid rgba(201,168,76,0.78);
  border-radius: 3px;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.18s, border-color 0.18s, color 0.18s;
}

.footer-action:hover {
  background: #c9a84c;
  border-color: #c9a84c;
  color: #132610;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.5fr) minmax(150px, 0.8fr) minmax(170px, 0.9fr) minmax(260px, 1.1fr);
  gap: 34px;
  padding: 42px 0 44px;
}

.footer-about {
  max-width: 390px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand img {
  height: 52px;
  width: auto;
  border-radius: 3px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(0,0,0,0.28);
}

.footer-brand-name {
  font-family: Georgia, serif;
  font-size: 0.98rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  letter-spacing: 0.02em;
}

.footer-desc {
  margin-top: 18px;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
}

.footer-registration {
  display: inline-flex;
  margin-top: 16px;
  padding: 7px 10px;
  border: 1px solid rgba(201,168,76,0.32);
  border-radius: 3px;
  color: rgba(255,255,255,0.72);
  background: rgba(255,255,255,0.05);
  font-size: 0.78rem;
  line-height: 1.4;
}

.footer-col h4 {
  font-family: Georgia, serif;
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 18px;
  padding-bottom: 10px;
  position: relative;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 34px;
  height: 2px;
  background: #c9a84c;
}

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

.footer-col ul li {
  margin-bottom: 9px;
}

.footer-col ul li a {
  color: rgba(255,255,255,0.72);
  font-size: 0.9rem;
  transition: color 0.18s, padding-left 0.18s;
}

.footer-col ul li a:hover {
  color: #c9a84c;
  padding-left: 3px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  color: rgba(255,255,255,0.72);
  font-size: 0.9rem;
  line-height: 1.55;
}

.footer-contact-item a {
  color: rgba(255,255,255,0.76);
  overflow-wrap: anywhere;
}

.footer-contact-item a:hover {
  color: #c9a84c;
}

.footer-contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(201,168,76,0.14);
  border: 1px solid rgba(201,168,76,0.3);
  color: #c9a84c;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 1px;
}

.footer-bottom {
  background: rgba(0,0,0,0.28);
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 24px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.58);
}

.footer-bottom a { color: #888; }
.footer-bottom a:hover { color: #c9a84c; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/38823926_438559773295373_604870350353727488_n.jpg');
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 8s ease;
}

.hero-bg.loaded { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14,30,12,0.82) 0%, rgba(30,61,26,0.65) 60%, rgba(14,30,12,0.5) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 80px 24px 80px;
}

.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #c9a84c;
  margin-bottom: 16px;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.88);
  margin-bottom: 36px;
  max-width: 560px;
}

.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.5);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.hero-scroll::after {
  content: '';
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.3);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ---------- STATS BAR ---------- */
.stats-bar {
  background: #2d5a27;
  padding: 28px 0;
}

.stats-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.stat-item { text-align: center; }

.stat-number {
  display: block;
  font-family: Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: #c9a84c;
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

/* ---------- MISSION PREVIEW ---------- */
.mission-preview {
  background: #fff;
}

.mission-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 40px;
}

.mission-card {
  background: #f5f3ef;
  border-radius: 6px;
  padding: 40px 36px;
  border-top: 4px solid #2d5a27;
  position: relative;
  overflow: hidden;
}

.mission-card.vision { border-top-color: #c9a84c; }

.mission-card-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
  display: block;
}

.mission-card h3 {
  font-size: 1.3rem;
  color: #1e3d1a;
  margin-bottom: 12px;
}

.mission-card p { color: #555; font-size: 0.96rem; }

.mission-card .card-link {
  display: inline-block;
  margin-top: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #2d5a27;
  border-bottom: 2px solid #c9a84c;
  padding-bottom: 2px;
}

.mission-card.vision .card-link { color: #6b4c2a; }

/* ---------- VALUES STRIP ---------- */
.values-strip {
  background: #f5f3ef;
  border-top: 1px solid #e0dbd3;
  border-bottom: 1px solid #e0dbd3;
}

.values-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 32px 0;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #2d5a27;
}

.value-dot {
  width: 10px;
  height: 10px;
  background: #c9a84c;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ---------- SERVICES SECTION ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.service-card {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  transition: transform 0.22s, box-shadow 0.22s;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.14);
}

.service-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card-body { padding: 28px 24px; }

.service-card-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}

.service-card h3 {
  font-size: 1.15rem;
  color: #1e3d1a;
  margin-bottom: 10px;
}

.service-card p { font-size: 0.92rem; color: #666; }

.service-card .card-link {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #2d5a27;
}

/* ---------- ABOUT SPLIT ---------- */
.about-split { background: #fff; }

.about-split-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-split-img {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  position: relative;
}

.about-split-img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.about-split-img::before {
  content: '';
  position: absolute;
  inset: -12px;
  border: 3px solid #c9a84c;
  border-radius: 8px;
  z-index: -1;
}

.about-text .section-label { margin-bottom: 8px; }

.about-text p {
  color: #555;
  font-size: 0.97rem;
  margin-bottom: 16px;
}

.about-text .btn { margin-top: 8px; }

/* ---------- GROUNDS BANNER ---------- */
.grounds-banner {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.grounds-banner-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/579975807_122204129660051404_6518380985742087317_n.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.grounds-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(14,30,12,0.72);
}

.grounds-banner-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.grounds-banner-content h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  color: #fff;
  margin-bottom: 16px;
}

.grounds-banner-content p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  margin-bottom: 28px;
}

/* ---------- COMMUNITY TILES ---------- */
.community-section { background: #f5f3ef; }

.community-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.community-tile {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  height: 260px;
}

.community-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.community-tile:hover img { transform: scale(1.05); }

.community-tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,30,12,0.85) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

.community-tile h3 {
  color: #fff;
  font-size: 1.15rem;
}

.community-tile p {
  color: rgba(255,255,255,0.8);
  font-size: 0.88rem;
  margin-top: 4px;
}

/* ---------- CONTACT CTA STRIP ---------- */
.contact-cta {
  background: #2d5a27;
  padding: 56px 0;
}

.contact-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.contact-cta h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: #fff;
  margin-bottom: 8px;
}

.contact-cta p { color: rgba(255,255,255,0.8); font-size: 0.97rem; }

.contact-info-list { list-style: none; margin-top: 16px; }

.contact-info-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.85);
  font-size: 0.94rem;
  margin-bottom: 8px;
}

.contact-info-list li span.icon { color: #c9a84c; font-size: 1.1rem; }

.contact-cta .btn-group { display: flex; gap: 14px; flex-wrap: wrap; flex-shrink: 0; }

/* ---------- TRUST SECTION ---------- */
.trust-section { background: #fff; }

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #f5f3ef;
  border-radius: 6px;
  padding: 28px 24px;
  border-left: 4px solid #2d5a27;
}

.trust-icon {
  font-size: 1.4rem;
  color: #2d5a27;
  flex-shrink: 0;
  margin-top: 2px;
  font-weight: 900;
}

.trust-body h4 {
  font-size: 1rem;
  color: #1e3d1a;
  margin-bottom: 8px;
}

.trust-body p { font-size: 0.9rem; color: #666; }

/* ---------- SERVICES EXTRA ROW ---------- */
.services-extra-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
  padding: 28px 32px;
  background: #fff;
  border-radius: 6px;
  border-top: 3px solid #c9a84c;
}

.services-extra-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.services-extra-icon {
  font-size: 1.3rem;
  color: #c9a84c;
  flex-shrink: 0;
  margin-top: 2px;
}

.services-extra-item strong {
  display: block;
  font-size: 0.95rem;
  color: #1e3d1a;
  margin-bottom: 4px;
}

.services-extra-item p { font-size: 0.88rem; color: #666; }

/* ---------- HERITAGE BLOCK ---------- */
.heritage-block { background: #fff; }

.heritage-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 56px;
  align-items: center;
}

.heritage-img-col {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 6px 28px rgba(0,0,0,0.13);
}

.heritage-img-col img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.heritage-text-col { }

.heritage-quote {
  font-family: Georgia, serif;
  font-size: 1.08rem;
  color: #2d5a27;
  font-style: italic;
  line-height: 1.7;
  border-left: 4px solid #c9a84c;
  padding: 16px 20px;
  margin: 0 0 24px;
  background: #f5f3ef;
  border-radius: 0 4px 4px 0;
}

.heritage-text-col p { color: #555; font-size: 0.97rem; }

/* ---------- COMMUNITY INFO ROW ---------- */
.community-info-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.community-info-card {
  background: #fff;
  border-radius: 6px;
  padding: 28px 24px;
  border-bottom: 3px solid #2d5a27;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

.community-info-card h4 {
  font-size: 1.05rem;
  color: #1e3d1a;
  margin-bottom: 10px;
}

.community-info-card p { font-size: 0.9rem; color: #666; }

.community-info-card .card-link {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #2d5a27;
  border-bottom: 2px solid #c9a84c;
  padding-bottom: 1px;
}

/* ---------- GALLERY STRIP ---------- */
.gallery-strip { background: #1a1a1a; }

.gallery-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.gallery-strip-item {
  overflow: hidden;
  height: 260px;
}

.gallery-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.3s;
  filter: brightness(0.85);
}

.gallery-strip-item:hover img {
  transform: scale(1.07);
  filter: brightness(1);
}

.gallery-strip-caption { background: #1a1a1a; }
.gallery-strip-caption a { color: #c9a84c; }

/* ---------- INNER PAGES ---------- */
.site-main { min-height: 60vh; }

.page-hero {
  position: relative;
  min-height: 48vh;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(14,30,12,0.86) 0%, rgba(30,61,26,0.68) 55%, rgba(14,30,12,0.45) 100%);
}

.page-hero .container {
  position: relative;
  z-index: 1;
  padding-top: 100px;
  padding-bottom: 64px;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: #fff;
  margin-bottom: 14px;
  max-width: 760px;
}

.page-hero p {
  max-width: 680px;
  color: rgba(255,255,255,0.84);
  font-size: 1.05rem;
}

.page-breadcrumb {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #c9a84c;
}

.content-section { padding: 72px 0; }
.content-section.alt { background: #fff; }

.split-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.rich-text p {
  margin-bottom: 16px;
  color: #555;
}

.image-frame {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.14);
}

.image-frame img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature-card {
  background: #fff;
  border-radius: 6px;
  padding: 30px 26px;
  box-shadow: 0 4px 22px rgba(0,0,0,0.08);
  border-top: 4px solid #c9a84c;
}

.feature-card h3 {
  font-size: 1.12rem;
  color: #1e3d1a;
  margin-bottom: 10px;
}

.feature-card p {
  color: #5c5c5c;
  font-size: 0.94rem;
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: rgba(45,90,39,0.08);
  color: #2d5a27;
  font-size: 1.35rem;
  font-weight: 700;
}

.highlight-band {
  background: linear-gradient(90deg, #2d5a27 0%, #3c6a34 100%);
  color: #fff;
}

.highlight-band .feature-card {
  background: rgba(255,255,255,0.08);
  box-shadow: none;
  border-top-color: #c9a84c;
}

.highlight-band .feature-card h3,
.highlight-band .feature-card p,
.highlight-band .section-title,
.highlight-band .section-subtitle {
  color: #fff;
}

.highlight-band .feature-card p { color: rgba(255,255,255,0.82); }

.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding-left: 28px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 4px;
  bottom: 4px;
  width: 2px;
  background: #c9a84c;
}

.timeline-item {
  position: relative;
  margin-bottom: 28px;
  padding: 0 0 0 28px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -1px;
  top: 6px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #2d5a27;
  border: 4px solid #f5f3ef;
  box-shadow: 0 0 0 2px #c9a84c;
}

.timeline-year {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6b4c2a;
}

.timeline-item h3 {
  color: #1e3d1a;
  margin-bottom: 8px;
}

.timeline-item p { color: #555; }

.steps-grid,
.gallery-grid,
.contact-grid,
.info-grid {
  display: grid;
  gap: 28px;
}

.steps-grid { grid-template-columns: repeat(4, 1fr); }
.gallery-grid { grid-template-columns: repeat(3, 1fr); }
.contact-grid { grid-template-columns: 1.05fr 0.95fr; align-items: start; }
.info-grid { grid-template-columns: repeat(2, 1fr); }

.step-card,
.gallery-card,
.info-card,
.contact-card,
.form-card {
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 4px 22px rgba(0,0,0,0.08);
}

.step-card,
.info-card,
.contact-card,
.form-card {
  padding: 28px 24px;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: #2d5a27;
  color: #fff;
  font-family: Georgia, serif;
  font-size: 1.15rem;
}

.step-card h3,
.info-card h3,
.contact-card h3 {
  color: #1e3d1a;
  margin-bottom: 10px;
  font-size: 1.08rem;
}

.step-card p,
.info-card p,
.contact-card p,
.contact-card li,
.form-note,
.rule-list li {
  color: #5a5a5a;
  font-size: 0.94rem;
}

.rule-list,
.contact-list {
  list-style: none;
}

.rule-list li,
.contact-list li {
  margin-bottom: 10px;
  padding-left: 18px;
  position: relative;
}

.rule-list li::before,
.contact-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c9a84c;
}

.gallery-card { overflow: hidden; }

.gallery-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.gallery-card-body { padding: 18px 18px 20px; }

.gallery-card-body h3 {
  font-size: 1rem;
  color: #1e3d1a;
  margin-bottom: 6px;
}

.gallery-card-body p {
  color: #666;
  font-size: 0.9rem;
}

.notice-box {
  padding: 22px 24px;
  border-left: 4px solid #c9a84c;
  background: #f0ece5;
  border-radius: 4px;
  color: #4d4d4d;
}

.contact-card a { word-break: break-word; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-field { margin-bottom: 18px; }

.form-field label {
  display: block;
  margin-bottom: 7px;
  font-size: 0.88rem;
  font-weight: 700;
  color: #1e3d1a;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #d6d0c7;
  border-radius: 4px;
  background: #fff;
  color: #2c2c2c;
  font: inherit;
}

.form-field textarea {
  min-height: 170px;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #2d5a27;
  box-shadow: 0 0 0 3px rgba(45,90,39,0.12);
}

.alert {
  margin-bottom: 20px;
  padding: 14px 16px;
  border-radius: 4px;
  font-size: 0.92rem;
}

.alert-success {
  background: #e6f1e2;
  color: #20451c;
  border: 1px solid #bdd1b8;
}

.alert-error {
  background: #f8e7e3;
  color: #7a3229;
  border: 1px solid #e2bcb4;
}

.map-embed {
  border: 0;
  width: 100%;
  height: 340px;
  border-radius: 6px;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 960px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .about-split-inner { grid-template-columns: 1fr; }
  .about-split-img { order: -1; }
  .about-split-img img { height: 320px; }
  .footer-grid { grid-template-columns: 1.2fr 1fr; }
  .footer-about { max-width: none; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .services-extra-row { grid-template-columns: 1fr 1fr; }
  .community-info-row { grid-template-columns: 1fr 1fr; }
  .heritage-inner { grid-template-columns: 1fr; }
  .heritage-img-col img { height: 280px; }
  .gallery-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .split-layout,
  .contact-grid,
  .steps-grid,
  .gallery-grid,
  .feature-grid,
  .info-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  #nav-toggle { display: flex; }

  #main-nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #1a3817;
    padding: 12px 0 20px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    z-index: 999;
  }

  #main-nav.open { display: block; }

  #main-nav ul {
    flex-direction: column;
    gap: 0;
    white-space: normal;
  }

  #main-nav ul li a {
    padding: 12px 24px;
    border-radius: 0;
    font-size: 0.9rem;
  }

  .mission-cards { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .community-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-topline {
    flex-direction: column;
    align-items: flex-start;
    padding: 34px 0 30px;
  }
  .footer-topline h2 { font-size: 1.35rem; }
  .footer-action { width: 100%; }
  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .trust-grid { grid-template-columns: 1fr; }
  .services-extra-row { grid-template-columns: 1fr; }
  .community-info-row { grid-template-columns: 1fr; }
  .gallery-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .gallery-strip-item { height: 200px; }
  .contact-cta-inner { flex-direction: column; align-items: flex-start; }
  .split-layout,
  .contact-grid,
  .steps-grid,
  .gallery-grid,
  .feature-grid,
  .info-grid,
  .form-row { grid-template-columns: 1fr; }
  .page-hero { min-height: 40vh; }
  .page-hero .container { padding-bottom: 48px; }
  .timeline { padding-left: 18px; }
  .timeline-item { padding-left: 22px; }

  #site-header { position: relative; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.9rem; }
  .hero-sub { font-size: 1rem; }
  .stats-inner { gap: 32px; }
  .header-brand-name { font-size: 0.78rem; max-width: 150px; }
}
