/* =========================================================
   Copeland Building Envelope Consultants — Site Mockup
   Brand: #446904 (primary green), #444343 (gray), #E8F0DE (light green), #6B9A1E (medium green)
   Type: Montserrat
   ========================================================= */


:root {
  --green: #446904;
  --green-medium: #6B9A1E;
  --green-light: #E8F0DE;
  --green-dark: #2f4a03;
  --gray: #444343;
  --gray-medium: #777777;
  --gray-light: #d8d8d8;
  --bg-soft: #f7f7f4;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.12);
  --radius: 4px;
  --container: 1240px;
  --transition: 200ms cubic-bezier(.2,.7,.2,1);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  color: var(--gray);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a { color: var(--green); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--green-medium); }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  color: var(--gray);
  margin: 0 0 0.5em;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); font-weight: 800; letter-spacing: -0.025em; }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.85rem); font-weight: 700; letter-spacing: -0.02em; }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); font-weight: 700; }
h4 { font-size: 1.1rem; font-weight: 600; }

p { margin: 0 0 1em; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow { max-width: 880px; margin: 0 auto; padding: 0 24px; }

/* ===== Eyebrow / Section labels ===== */
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1rem;
}

.eyebrow-light { color: var(--green-light); }

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 14px 28px;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border: 2px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn-primary:hover { background: var(--green-dark); border-color: var(--green-dark); color: var(--white); }

.btn-outline {
  background: transparent;
  color: var(--gray);
  border-color: var(--gray);
}
.btn-outline:hover { background: var(--gray); color: var(--white); }

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline-light:hover { background: var(--white); color: var(--green); }

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--green);
  border-bottom: 2px solid var(--green);
  padding-bottom: 4px;
  letter-spacing: 0.02em;
  font-size: 0.95rem;
  transition: gap var(--transition);
}
.btn-text:hover { gap: 14px; color: var(--green); }
.btn-text::after { content: "→"; }

/* ===== Header / Navigation ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-light);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--gray);
  letter-spacing: -0.01em;
}
.logo:hover { color: var(--gray); }

.logo-mark {
  width: 36px; height: 36px;
  background: var(--green);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: -0.04em;
  border-radius: 2px;
}

.logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}

.logo-text small {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--gray-medium);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Site header logo: use the cropped wordmark image only, hide the text */
.site-header .logo-img {
  content: url('/images/2026/05/CopelandBEC%20Logo%20cropped.jpg');
  width: auto;
  height: 48px;
}
.site-header .logo-text { display: none; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 4px;
  align-items: center;
}
.nav-list > li { position: relative; }
.nav-list > li > a {
  display: block;
  padding: 12px 14px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--gray);
  letter-spacing: 0.01em;
}
.nav-list > li > a:hover, .nav-list > li.active > a { color: var(--green); }

.nav-list .has-dropdown > a::after {
  content: "▾";
  margin-left: 6px;
  font-size: 0.7rem;
  color: var(--gray-medium);
}

.dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--gray-light);
  box-shadow: var(--shadow-md);
  min-width: 280px;
  padding: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: all var(--transition);
  list-style: none;
  margin: 0;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown li a {
  display: block;
  padding: 10px 12px;
  color: var(--gray);
  font-size: 0.9rem;
  font-weight: 500;
  border-left: 2px solid transparent;
  transition: all var(--transition);
}
.dropdown li a:hover {
  background: var(--green-light);
  color: var(--green);
  border-left-color: var(--green);
}
.dropdown li a small {
  display: block;
  font-weight: 400;
  font-size: 0.75rem;
  color: var(--gray-medium);
  margin-top: 2px;
}

.nav-cta { margin-left: 12px; }
.nav-cta .btn { padding: 10px 20px; font-size: 0.85rem; }
/* Override the .nav-list > li > a color so the CTA button text stays white */
.nav-list > li.nav-cta > a.btn-primary { color: var(--white); }
.nav-list > li.nav-cta > a.btn-primary:hover { color: var(--white); }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  width: 40px; height: 40px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gray);
  transition: all var(--transition);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: var(--bg-soft);
  overflow: hidden;
  padding: 100px 0 80px;
}

.hero-home {
  background: linear-gradient(135deg, #1a2602 0%, #2f4a03 50%, #446904 100%);
  color: var(--white);
}

.hero-home .hero-content { color: var(--white); }
.hero-home h1 { color: var(--white); }
.hero-home p { color: rgba(255,255,255,0.85); }
.hero-home .eyebrow { color: var(--green-light); }

/* Primary CTA needs to stand off the green gradient — flip to white/green */
.hero-home .hero-actions .btn-primary {
  background: var(--white);
  color: var(--green-dark);
  border-color: var(--white);
}
.hero-home .hero-actions .btn-primary:hover {
  background: var(--green-light);
  border-color: var(--green-light);
  color: var(--green-dark);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content { max-width: 720px; }
.hero h1 { margin-bottom: 24px; }
.hero p.lead {
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  line-height: 1.5;
  margin-bottom: 36px;
  font-weight: 400;
}

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

.hero-image {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--gray-light);
  overflow: hidden;
  border-radius: 2px;
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; }

.hero-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  opacity: 0.18;
}

/* Subpage hero variant */
.hero-page {
  min-height: 56vh;
  padding: 120px 0 60px;
  background: linear-gradient(180deg, #2f4a03 0%, #446904 100%);
  color: var(--white);
}
.hero-page h1, .hero-page p { color: var(--white); }
.hero-page p { color: rgba(255,255,255,0.88); }
.hero-page .eyebrow { color: var(--green-light); }
.hero-page .hero-inner { display: block; }
.hero-page .hero-content { max-width: 880px; }
.hero-page p.lead { max-width: 720px; }

.hero-page.with-image {
  background: none;
  position: relative;
  color: var(--white);
}
.hero-page.with-image::before {
  content: "";
  position: absolute; inset: 0;
  background-position: center;
  background-size: cover;
  z-index: 0;
}
.hero-page.with-image::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,38,2,0.85) 0%, rgba(68,105,4,0.78) 100%);
  z-index: 1;
}
.hero-page.with-image .hero-inner { position: relative; z-index: 2; }

/* ===== Sections ===== */
section { padding: 100px 0; }
section.tight { padding: 64px 0; }
section.bg-soft { background: var(--bg-soft); }
section.bg-green { background: var(--green); color: var(--white); }
section.bg-green h2, section.bg-green h3 { color: var(--white); }
section.bg-green-light { background: var(--green-light); }
section.bg-dark { background: #1a2602; color: var(--white); }
section.bg-dark h2, section.bg-dark h3 { color: var(--white); }

.section-head {
  max-width: 800px;
  margin-bottom: 64px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p {
  font-size: 1.15rem;
  color: var(--gray-medium);
}

/* ===== Pillars (3-up service highlights) ===== */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pillar {
  display: flex;
  flex-direction: column;
  background: var(--white);
  padding: 40px 32px;
  border-top: 4px solid var(--green);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative;
}
.pillar:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.pillar-num {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--green-medium);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.pillar h3 { margin-bottom: 12px; }
.pillar p { color: var(--gray); margin-bottom: 24px; flex: 1; }
.pillar .who {
  font-size: 0.85rem;
  color: var(--gray-medium);
  margin-bottom: 20px;
  font-style: italic;
}

/* Photo pillars — full photo with green duotone overlay (matches subpage heroes) */
.pillar-photo { overflow: hidden; border-top-color: var(--green-medium); }
.pillar-photo .pillar-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.pillar-photo .pillar-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,38,2,0.88) 0%, rgba(47,74,3,0.86) 55%, rgba(68,105,4,0.82) 100%);
}
.pillar-photo > *:not(.pillar-bg) { position: relative; z-index: 1; }
.pillar-photo h3 { color: var(--white); }
.pillar-photo p { color: rgba(255,255,255,0.85); }
.pillar-photo .who { color: rgba(255,255,255,0.65); }
.pillar-photo .pillar-num { color: var(--green-light); }
.pillar-photo .btn-text { color: var(--white); border-bottom-color: var(--green-light); }
.pillar-photo .btn-text:hover { color: var(--green-light); }

/* ===== Stats / Strip ===== */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: left;
}
.stat-num {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800;
  color: var(--green);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
section.bg-green .stat-num, section.bg-dark .stat-num { color: var(--white); }
.stat-label {
  font-size: 0.9rem;
  color: var(--gray-medium);
  font-weight: 500;
}
section.bg-green .stat-label, section.bg-dark .stat-label { color: rgba(255,255,255,0.75); }

/* ===== Two column ===== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.two-col.flip > :first-child { order: 2; }

.two-col-image {
  aspect-ratio: 4/3;
  background: var(--gray-light);
  overflow: hidden;
}
.two-col-image img { width: 100%; height: 100%; object-fit: cover; }

/* ===== Feature list ===== */
.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.feature-list li {
  padding: 18px 0;
  border-bottom: 1px solid var(--gray-light);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.feature-list li:last-child { border-bottom: 0; }
.feature-list .icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  background: var(--green-light);
  color: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}
.feature-list h4 { margin: 0 0 4px; }
.feature-list h3 { margin: 0 0 4px; font-size: 1.1rem; font-weight: 600; }
.feature-list p { margin: 0; color: var(--gray-medium); font-size: 0.95rem; }

/* ===== Cards (proof / case studies / posts) ===== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.card-grid.two { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--white);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--gray);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--gray-light);
  overflow: hidden;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); color: var(--gray); }
.card-image {
  aspect-ratio: 16/10;
  background: var(--gray-light);
  overflow: hidden;
}
.card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 400ms ease; }
.card:hover .card-image img { transform: scale(1.04); }

.card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.card-meta {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.card-title {
  font-size: 1.18rem;
  font-weight: 700;
  margin: 0 0 12px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.card-excerpt { font-size: 0.95rem; color: var(--gray-medium); margin: 0 0 20px; flex: 1; }
.card-footer {
  font-size: 0.8rem;
  color: var(--gray-medium);
  display: flex; justify-content: space-between; align-items: center;
}

/* ===== Audience selector ===== */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.audience-card {
  display: block;
  padding: 36px 28px;
  background: var(--white);
  border: 1px solid var(--gray-light);
  text-decoration: none;
  color: var(--gray);
  transition: all var(--transition);
  position: relative;
}
.audience-card:hover {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
  transform: translateY(-2px);
}
.audience-card:hover .audience-arrow { color: var(--white); }
.audience-card:hover h3 { color: var(--white); }
.audience-card .audience-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
  display: block;
  font-weight: 700;
}
.audience-card:hover .audience-eyebrow { color: var(--green-light); }
.audience-card h3 {
  font-size: 1.35rem;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}
.audience-card p { color: inherit; opacity: 0.85; font-size: 0.95rem; margin: 0; }
.audience-arrow {
  position: absolute;
  top: 28px; right: 28px;
  font-size: 1.4rem;
  color: var(--gray-medium);
  transition: all var(--transition);
}
.audience-card:hover .audience-arrow { transform: translateX(4px); }

/* ===== Quote / pull-quote ===== */
.pull-quote {
  position: relative;
  padding: 48px 0;
  border-top: 1px solid var(--gray-light);
  border-bottom: 1px solid var(--gray-light);
  margin: 32px 0;
}
.pull-quote q {
  display: block;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 500;
  line-height: 1.35;
  color: var(--gray);
  letter-spacing: -0.01em;
  quotes: """ """;
}
.pull-quote q::before, .pull-quote q::after { content: ""; }
.pull-quote cite {
  display: block;
  margin-top: 24px;
  font-style: normal;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 0.05em;
}

/* ===== Team ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.team-member { background: var(--white); }
.team-photo {
  aspect-ratio: 1/1;
  background: var(--green-light);
  overflow: hidden;
  margin-bottom: 16px;
}
.team-photo img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(20%);
  transition: filter var(--transition);
}
.team-member:hover .team-photo img { filter: grayscale(0%); }
.team-member h4 {
  margin: 0 0 4px;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}
.team-role {
  font-size: 0.82rem;
  color: var(--green);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.team-bio {
  font-size: 0.9rem;
  color: var(--gray-medium);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.79rem; /* reserve 2 lines so the grid stays even while copy is fleshed out */
  margin-bottom: 6px;
}
.bio-more {
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green);
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: color var(--transition);
}
.bio-more::after { content: " \2192"; }
.bio-more:hover { color: var(--green-medium); }

/* ===== Bio modal ===== */
.bio-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(47, 74, 3, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
  z-index: 1000;
}
.bio-modal-overlay.open { opacity: 1; visibility: visible; }
.bio-modal {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  max-width: 520px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 36px;
  position: relative;
  transform: translateY(8px);
  transition: transform var(--transition);
}
.bio-modal-overlay.open .bio-modal { transform: translateY(0); }
.bio-modal-photo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--green-light);
  margin-bottom: 20px;
}
.bio-modal-photo img { width: 100%; height: 100%; object-fit: cover; }
.bio-modal h3 { margin: 0 0 4px; font-size: 1.4rem; }
.bio-modal .team-role { margin-bottom: 16px; }
.bio-modal .bio-full {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.6;
  margin: 0;
}
.bio-modal .bio-full p { margin: 0 0 14px; }
.bio-modal .bio-full p:last-child { margin-bottom: 0; }
.bio-modal .bio-full .bio-personal { color: var(--gray-medium); }
.bio-modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.7rem;
  line-height: 1;
  color: var(--gray-medium);
  cursor: pointer;
  padding: 4px;
  transition: color var(--transition);
}
.bio-modal-close:hover { color: var(--green); }

/* ===== FAQ ===== */
.faq-item {
  border-bottom: 1px solid var(--gray-light);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 0;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--gray);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--green);
  transition: transform var(--transition);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-body {
  padding: 0 0 24px;
  color: var(--gray-medium);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 760px;
}

/* ===== Big CTA ===== */
.big-cta {
  padding: 110px 0;
  background: linear-gradient(135deg, #1a2602 0%, #446904 100%);
  color: var(--white);
  text-align: center;
}
.big-cta h2 { color: var(--white); margin-bottom: 20px; }
.big-cta p { color: rgba(255,255,255,0.85); font-size: 1.15rem; margin-bottom: 36px; max-width: 640px; margin-left: auto; margin-right: auto; }
.big-cta .actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== Embeds (YouTube etc.) ===== */
.wp-block-embed { margin: 32px 0; }
.wp-block-embed__wrapper { position: relative; }
.wp-embed-aspect-16-9 .wp-block-embed__wrapper {
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: var(--shadow-sm);
}
.wp-block-embed__wrapper iframe,
.wp-block-embed__wrapper .youtube-player {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.wp-block-embed__wrapper > span.embed-youtube {
  display: block;
  position: absolute;
  inset: 0;
}

/* ===== Footer ===== */
.site-footer {
  background: #1a2602;
  color: rgba(255,255,255,0.75);
  padding: 80px 0 32px;
  font-size: 0.92rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 56px;
}
.site-footer h3 {
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 20px;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer ul li { margin: 0 0 10px; }
.site-footer a { color: rgba(255,255,255,0.75); }
.site-footer a:hover { color: var(--green-light); }
.footer-brand .logo { color: var(--white); margin-bottom: 16px; }
.footer-brand .logo:hover { color: var(--white); }
.footer-brand .logo small { color: rgba(255,255,255,0.6); }
.footer-brand p { color: rgba(255,255,255,0.6); }
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
}
.footer-bottom .social { display: flex; gap: 16px; }
.footer-bottom .social a { color: rgba(255,255,255,0.6); }
.footer-bottom .social a:hover { color: var(--green-light); }

/* ===== Blog post layout ===== */
.post-header {
  padding: 120px 0 40px;
  text-align: center;
}
.post-header .meta {
  font-size: 0.85rem;
  color: var(--gray-medium);
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}
.post-header h1 {
  max-width: 880px;
  margin: 0 auto 16px;
  font-size: clamp(2rem, 4vw, 3.2rem);
}
.post-header .author {
  font-size: 0.9rem;
  color: var(--green-medium);
  font-weight: 600;
}
.post-hero-image {
  max-width: 1100px;
  margin: 0 auto;
  aspect-ratio: 16/8;
  background: var(--gray-light);
  overflow: hidden;
}
.post-hero-image img { width: 100%; height: 100%; object-fit: cover; }
.post-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 24px 100px;
  font-size: 1.08rem;
  line-height: 1.75;
}
.post-body h2 { margin-top: 2.5em; margin-bottom: 0.6em; color: var(--green); font-size: 1.7rem; }
.post-body h3 { margin-top: 2em; margin-bottom: 0.4em; }
.post-body blockquote {
  border-left: 4px solid var(--green);
  margin: 32px 0;
  padding: 8px 0 8px 24px;
  font-size: 1.1rem;
  color: var(--gray);
  font-style: italic;
}
.post-body img {
  margin: 32px 0;
  width: 100%;
  height: auto;
}
.post-body ul, .post-body ol { padding-left: 24px; margin: 0 0 1em; }
.post-body li { margin-bottom: 8px; }

/* ===== Forms ===== */
.contact-form {
  display: grid;
  gap: 20px;
  max-width: 640px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gray);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.form-field input,
.form-field textarea,
.form-field select {
  padding: 14px 16px;
  border: 1px solid var(--gray-light);
  font-family: inherit;
  font-size: 1rem;
  color: var(--gray);
  background: var(--white);
  transition: border-color var(--transition);
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus { outline: 0; border-color: var(--green); }
.form-field textarea { resize: vertical; min-height: 140px; }

/* ===== Logo strip ===== */
.logo-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 32px;
  align-items: center;
}
.logo-strip .strip-item {
  font-family: 'Montserrat', serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--gray-medium);
  text-align: center;
  letter-spacing: 0.05em;
  opacity: 0.7;
  transition: opacity var(--transition);
  padding: 8px;
}
.logo-strip .strip-item:hover { opacity: 1; }

/* ===== Locations ===== */
.locations {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.location {
  padding: 32px;
  border: 1px solid var(--gray-light);
}
.location h4 {
  font-size: 1.1rem;
  margin: 0 0 8px;
  color: var(--green);
}
.location p { margin: 0; color: var(--gray-medium); font-size: 0.95rem; }
.location .role { font-weight: 600; color: var(--gray); margin-top: 8px; font-size: 0.85rem; }

/* ===== Utility ===== */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0 !important; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-image { max-width: 480px; margin: 0 auto; }
  .pillars, .audience-grid, .team-grid, .card-grid, .locations, .stat-strip { grid-template-columns: repeat(2, 1fr); }
  .card-grid.two { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 48px; }
  .two-col.flip > :first-child { order: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .logo-strip { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .nav { display: none; position: fixed; top: 70px; left: 0; right: 0; bottom: 0; background: var(--white); padding: 24px; flex-direction: column; align-items: stretch; overflow-y: auto; }
  .nav.open { display: flex; }
  .nav-list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-list > li > a { padding: 16px 0; border-bottom: 1px solid var(--gray-light); }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; padding: 0 0 12px 16px; }
  .nav-cta { margin: 16px 0 0; }
  .nav-cta .btn { width: 100%; padding: 14px; font-size: 1rem; }
  .nav-toggle { display: flex; }

  section { padding: 64px 0; }
  .hero { min-height: 64vh; padding: 60px 0 48px; }
  .pillars, .audience-grid, .team-grid, .card-grid, .locations, .stat-strip { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .logo-strip { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .stat-strip { gap: 32px; }
}

.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0 0 0 0); white-space:nowrap; border:0; }
