/* ============================================================
   ACE FENCING — global.css  v4.4
   Colour scheme: #1E1E1E charcoal · #E07820 orange · #FFFFFF white
   ============================================================ */

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

html { overflow-x: hidden; }
/* ── DISPLAY FONT ──
   Space Grotesk (client-approved option 6) is used for the logo, orange
   pill labels, and hero/page headlines only — body copy, buttons and nav
   stay on the system font above. Loaded via Google Fonts in functions.php.
   Space Grotesk tops out at weight 700, so selectors that were 800/900 on
   the system font are dialed back to 700 wherever it's applied, to avoid
   the browser faux-bolding a weight the font doesn't actually have. */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  background: #fff;
  color: #1a1a1a;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
}
h1, h2, h3, p { overflow-wrap: break-word; }

/* ── SHARED HEADER ── */
header {
  background: rgba(20,20,20,0.35);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 12px 0 12px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  width: 100%;
  box-sizing: border-box;
  transition: background 0.35s ease, box-shadow 0.35s ease;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
header.scrolled {
  background: rgba(20,20,20,0.92);
  box-shadow: 0 2px 24px rgba(0,0,0,0.5);
}
nav { margin-left: auto; }
.logo {
  font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  font-size: 22px; font-weight: 700; color: #fff; letter-spacing: 1px;
  text-transform: uppercase; text-decoration: none;
  display: inline-flex; align-items: center; gap: 12px;
}
.logo em { color: #E07820; font-style: normal; }
.logo-img { height: 38px; width: auto; }
nav a {
  color: rgba(255,255,255,0.65); text-decoration: none; margin-left: 32px;
  font-size: 13px; font-weight: 500; letter-spacing: 0.4px; text-transform: uppercase;
  transition: color 0.2s;
}
nav a:hover, nav a[aria-current="page"] { color: #E07820; }
.nav-cta {
  background: #E07820 !important;
  color: #fff !important;
  padding: 8px 18px;
  border-radius: 3px;
  font-weight: 700 !important;
  border: none !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: #C5621A !important; color: #fff !important; }

/* ── MOBILE NAV TOGGLE (burger) ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: auto;
}
.nav-toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── TAGS / PILLS ── */
.hero-pill {
  display: inline-block; background: #E07820; color: #fff;
  font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  font-size: 13px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  padding: 7px 18px; border-radius: 3px; margin-bottom: 24px;
}
.tag {
  display: inline-block; background: #E07820; color: #fff;
  font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  padding: 5px 12px; border-radius: 3px; margin-bottom: 18px;
}
.hub-tag {
  display: inline-block; background: #E07820; color: #fff;
  font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  padding: 5px 12px; border-radius: 3px; margin-bottom: 16px;
}
.testimonials-label {
  display: inline-block; background: #E07820; color: #fff;
  font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  font-size: 13px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  padding: 6px 14px; border-radius: 3px; margin-bottom: 48px;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block; background: #E07820; color: #fff;
  font-size: 13px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase;
  padding: 15px 34px; text-decoration: none; border-radius: 3px;
  transition: background 0.2s;
}
.btn-primary:hover { background: #C5621A; }
.btn-outline {
  display: inline-block; border: 2px solid rgba(255,255,255,0.45); color: #fff;
  font-size: 13px; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase;
  padding: 15px 34px; text-decoration: none; border-radius: 3px;
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.cta-btn {
  display: inline-block; background: #fff; color: #E07820;
  font-size: 13px; font-weight: 800; letter-spacing: 0.5px; text-transform: uppercase;
  padding: 15px 40px; text-decoration: none; border-radius: 3px; margin: 6px;
  transition: background 0.2s;
}
.cta-btn:hover { background: #f5f3ee; }
.cta-btn-outline {
  display: inline-block; border: 2px solid rgba(255,255,255,0.5); color: #fff;
  font-size: 13px; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase;
  padding: 15px 40px; text-decoration: none; border-radius: 3px; margin: 6px;
  transition: border-color 0.2s;
}
.cta-btn-outline:hover { border-color: #fff; }
.back-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.5); text-decoration: none;
  font-size: 12px; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase;
  margin-bottom: 28px; transition: color 0.2s;
}
.back-link::before { content: '←'; font-size: 14px; }
.back-link:hover { color: #E07820; }
.learn-more {
  display: inline-flex; align-items: center; gap: 12px; color: #E07820;
  font-weight: 700; font-size: 20px; text-decoration: none;
  letter-spacing: 0.5px; text-transform: uppercase; align-self: flex-start;
  transition: gap 0.2s; margin-top: 32px;
}
.learn-more::after { content: '→'; font-size: 24px; }
.learn-more:hover { gap: 18px; }

/* ── HERO BASE (dark charcoal with fence SVG tile) ── */
.hero {
  background-color: #1E1E1E;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 300'%3E%3Crect x='0' y='62' width='32' height='5' fill='rgba(255,255,255,0.09)'/%3E%3Crect x='0' y='222' width='32' height='5' fill='rgba(255,255,255,0.09)'/%3E%3Crect x='8' y='48' width='16' height='252' fill='rgba(255,255,255,0.07)'/%3E%3Cpolygon points='8,48 16,26 24,48' fill='rgba(255,255,255,0.07)'/%3E%3C/svg%3E");
  background-size: 32px 300px;
  background-repeat: repeat-x;
  background-position: bottom left;
  border-bottom: 4px solid #E07820;
  padding: 120px 72px 96px;
  text-align: center;
}
.hero h1 {
  font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  font-size: 66px; font-weight: 700; line-height: 1.06; letter-spacing: -2px;
  color: #fff; max-width: 780px; margin: 0 auto 20px;
}
.hero h1 em { color: #E07820; font-style: normal; }
.hero p {
  font-size: 17px; color: rgba(255,255,255,0.68);
  max-width: 520px; margin: 0 auto; line-height: 1.75;
}
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 36px; }
.hero-logo {
  display: block;
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 320px;
  height: auto;
  margin: 0 auto 16px;
  filter: drop-shadow(0 4px 24px rgba(0,0,0,0.45));
}
.hero-badge {
  display: block;
  width: 260px;
  height: auto;
  margin: 0 auto 32px;
}

/* ── HERO WITH REAL PHOTO BACKGROUND ── */
.hero.has-photo,
.project-hero.has-photo,
.industry-hero.has-photo {
  position: relative;
  overflow: hidden;
  background-image: none;
}
.hero.has-photo img.hero-photo-bg,
.project-hero.has-photo img.hero-photo-bg,
.industry-hero.has-photo img.hero-photo-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 1;
  pointer-events: none;
  z-index: 0;
}
/* Dark overlay so white text stays readable over any photo */
.hero.has-photo::after,
.project-hero.has-photo::after,
.industry-hero.has-photo::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(18, 18, 18, 0.62);
  z-index: 1;
}
.hero.has-photo > *:not(img),
.project-hero.has-photo > *:not(img),
.industry-hero.has-photo > *:not(img) {
  position: relative;
  z-index: 2;
}

/* ── PROJECT & INDUSTRY HEROES ── */
.project-hero,
.industry-hero {
  background-color: #1E1E1E;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 300'%3E%3Crect x='0' y='62' width='32' height='5' fill='rgba(255,255,255,0.09)'/%3E%3Crect x='0' y='222' width='32' height='5' fill='rgba(255,255,255,0.09)'/%3E%3Crect x='8' y='48' width='16' height='252' fill='rgba(255,255,255,0.07)'/%3E%3Cpolygon points='8,48 16,26 24,48' fill='rgba(255,255,255,0.07)'/%3E%3C/svg%3E");
  background-size: 32px 300px;
  background-repeat: repeat-x;
  background-position: bottom left;
  border-bottom: 4px solid #E07820;
  padding: 88px 64px 80px;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.project-hero h1,
.industry-hero h1 {
  font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  font-size: 52px; font-weight: 700; line-height: 1.08; letter-spacing: -1.5px;
  color: #fff; max-width: 760px; margin-bottom: 16px;
}
.project-hero p,
.industry-hero p {
  font-size: 17px; color: rgba(255,255,255,0.68);
  max-width: 640px; line-height: 1.8;
}
.project-hero .tag,
.industry-hero .tag { margin-bottom: 16px; }

/* ── TWO-COLUMN ALTERNATING SECTIONS ── */
.section { display: grid; grid-template-columns: 1fr 1fr; min-height: 540px; }
.section.flip { direction: rtl; }
.section.flip > * { direction: ltr; }
.section-text {
  padding: 80px 72px; display: flex; flex-direction: column;
  justify-content: center; background: #fff;
}
.section.alt .section-text { background: #F5F5F2; }
.section-text .tag { align-self: flex-start; font-size: 17px; padding: 8px 18px; }
.section-text h2 { font-size: 34px; font-weight: 800; line-height: 1.15; letter-spacing: -0.75px; margin-bottom: 16px; }
.section-text p { font-size: 15.5px; color: #555; line-height: 1.85; margin-bottom: 12px; }
.section-text p:last-of-type { margin-bottom: 0; }
.photo-panel { overflow: hidden; position: relative; }

/* ── PHOTO GRID LAYOUTS ── */
.photos-single { height: 100%; }
.photos-single img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photos-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; height: 100%; }
.photos-2col img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photos-main-side { display: grid; grid-template-columns: 2fr 1fr; gap: 3px; height: 100%; }
.photos-main-side img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photos-quad { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 3px; height: 100%; }
.photos-quad img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── CTA STRIP ── */
.cta-strip { background: #E07820; padding: 80px 64px; text-align: center; }
.cta-strip h2 { font-size: 40px; font-weight: 900; color: #fff; letter-spacing: -0.75px; margin-bottom: 12px; }
.cta-strip p { font-size: 16px; color: rgba(255,255,255,0.85); margin-bottom: 36px; }

/* ── FOOTER ── */
footer {
  background: #1E1E1E;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}
.footer-grid {
  max-width: 1200px; margin: 0 auto; padding: 64px 72px 0;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 56px;
}
.footer-brand-name {
  font-size: 21px; font-weight: 900; color: #fff; letter-spacing: 1px;
  text-transform: uppercase; margin-bottom: 14px;
}
.footer-brand-name span { color: #E07820; }
.footer-tagline {
  font-size: 13px; line-height: 1.75; color: rgba(255,255,255,0.45);
  margin-bottom: 28px; max-width: 260px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.55); text-decoration: none; font-size: 13px;
  transition: color 0.2s;
}
.footer-links a:hover { color: #E07820; }
.footer-col-heading {
  font-size: 13px; font-weight: 700; color: #fff; letter-spacing: 2px;
  text-transform: uppercase; margin-bottom: 24px;
}
.footer-items { display: flex; flex-direction: column; gap: 18px; }
.footer-item-label {
  font-size: 11px; font-weight: 700; color: #E07820; letter-spacing: 1.5px;
  text-transform: uppercase; display: block; margin-bottom: 4px;
}
.footer-item-value { color: rgba(255,255,255,0.7); font-size: 14px; }
.footer-item-value a { color: rgba(255,255,255,0.7); text-decoration: none; }
.footer-item-value a:hover { color: #E07820; }
.footer-social { display: flex; gap: 14px; margin-top: 6px; }
.footer-social a {
  color: rgba(255,255,255,0.55); text-decoration: none; font-size: 13px;
  transition: color 0.2s;
}
.footer-social a:hover { color: #E07820; }
.footer-bottom {
  max-width: 1200px; margin: 48px auto 0; padding: 28px 72px;
  border-top: 1px solid rgba(255,255,255,0.09);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.35); margin: 0; }
.footer-bottom a { font-size: 12px; color: rgba(255,255,255,0.35); text-decoration: none; }

/* ── HUB SECTION (home) ── */
.hub-section { display: grid; grid-template-columns: 1fr 1fr; }
.hub-card {
  display: grid; grid-template-rows: 1fr; grid-template-columns: 1fr;
  text-decoration: none; overflow: hidden; background: #1E1E1E; min-height: 560px;
}
.hub-card > * { grid-row: 1; grid-column: 1; }
.hub-card-bg {
  width: 100%; height: 100%; object-fit: cover; object-position: center; display: block;
  opacity: 0.45; transition: opacity 0.4s ease, transform 0.5s ease;
}
.hub-card:hover .hub-card-bg { opacity: 0.62; transform: scale(1.04); }
.hub-card-content {
  display: flex; flex-direction: column; justify-content: flex-end;
  align-self: stretch; padding: 64px 56px; z-index: 1;
}
.hub-card-content h2 {
  font-size: 36px; font-weight: 900; color: #fff; line-height: 1.1; letter-spacing: -1px; margin-bottom: 12px;
}
.hub-card-content p {
  font-size: 15px; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 28px; max-width: 360px;
}
.hub-arrow {
  display: inline-flex; align-items: center; gap: 8px; color: #E07820;
  font-size: 12px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase;
  transition: gap 0.2s;
}
.hub-arrow::after { content: '→'; font-size: 15px; }
.hub-card:hover .hub-arrow { gap: 13px; }

/* ── TESTIMONIALS (home) ── */
.testimonials-section { background: #1E1E1E; padding: 88px 48px; text-align: center; }
.testimonials-track { position: relative; max-width: 1000px; margin: 0 auto; min-height: 260px; }
.testimonial {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.8s ease;
}
.testimonial.active { opacity: 1; }
.testimonial.testimonial-wide {
  left: 50%; right: auto; transform: translateX(-50%);
  width: min(1300px, calc(100vw - 96px));
}
.testimonial-quote {
  font-size: 20px; line-height: 1.72; color: rgba(255,255,255,0.87);
  font-style: italic; margin-bottom: 28px; max-width: 900px;
}
.testimonial.testimonial-wide .testimonial-quote { max-width: 1150px; }
.testimonial-quote::before { content: '\201C'; }
.testimonial-quote::after  { content: '\201D'; }
.testimonial-author {
  font-size: 11px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase;
  color: #E07820; margin-bottom: 5px;
}
.testimonial-role { font-size: 13px; color: rgba(255,255,255,0.38); }
.testimonial-logo-wrap {
  display: inline-flex; align-items: center; justify-content: center;
  background: #fff; border-radius: 8px; padding: 12px 22px;
  margin: 18px auto 14px;
}
.testimonial-logo {
  display: block; width: auto; height: auto; max-width: 170px; max-height: 70px;
  object-fit: contain;
}
.testimonial-avatar {
  display: block; width: 70px; height: 70px; border-radius: 50%;
  margin: 18px auto 14px; object-fit: cover; background: #fff;
}
.testimonials-nav { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 44px; }
.testimonials-dots { display: flex; justify-content: center; gap: 10px; }
.t-prev, .t-next { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.6); font-size: 18px; width: 40px; height: 40px; border-radius: 50%; cursor: pointer; transition: background 0.2s, color 0.2s, border-color 0.2s; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.t-prev:hover, .t-next:hover { background: #E07820; border-color: #E07820; color: #fff; }
.t-dot {
  width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.18);
  border: none; padding: 0; cursor: pointer; transition: background 0.3s;
}
.t-dot.active { background: #E07820; }

/* ── WHAT WE DO / CAPABILITIES (about) ── */
.what-we-do { background: #F5F5F2; padding: 88px 48px; text-align: center; }
.what-we-do .tag { margin-bottom: 20px; display: inline-block; }
.what-we-do h2 { font-size: 38px; font-weight: 900; letter-spacing: -0.75px; margin-bottom: 18px; }
.what-we-do > p { font-size: 16px; color: #555; line-height: 1.8; max-width: 600px; margin: 0 auto 52px; }
.capabilities { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 900px; margin: 0 auto; }
.cap-card {
  background: #fff; padding: 32px 22px; border-radius: 4px; text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.cap-card:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(0,0,0,0.11); }
.cap-card .cap-icon { font-size: 30px; margin-bottom: 14px; }
.cap-card h3 { font-size: 13px; font-weight: 800; letter-spacing: 0.75px; text-transform: uppercase; color: #1a1a1a; margin-bottom: 8px; }
.cap-card p { font-size: 13px; color: #777; line-height: 1.65; margin: 0; }

/* ── TIMELINE ── */
.timeline-section { padding: 88px 48px; background: #1E1E1E; }
.timeline-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.timeline-inner .tag { margin-bottom: 16px; }
.timeline-inner h2 { font-size: 38px; font-weight: 900; letter-spacing: -0.75px; color: #fff; margin-bottom: 64px; }
.timeline { position: relative; text-align: left; }
.timeline::before { content: ''; position: absolute; left: 18px; top: 0; bottom: 0; width: 2px; background: rgba(255,255,255,0.12); }
.timeline-item { position: relative; padding: 0 0 48px 56px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-marker { position: absolute; left: 10px; top: 4px; width: 18px; height: 18px; border-radius: 50%; background: #1E1E1E; border: 2px solid rgba(255,255,255,0.25); transition: border-color 0.2s; }
.timeline-item--current .timeline-marker { background: #E07820; border-color: #E07820; }
.timeline-year { font-size: 11px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: #E07820; margin-bottom: 6px; }
.timeline-content h3 { font-size: 17px; font-weight: 800; color: #fff; margin-bottom: 8px; }
.timeline-content p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.75; margin: 0; }

/* ── SERVICE CHARTER ── */
.charter-section { padding: 88px 48px; background: #fff; }
.charter-inner { max-width: 1100px; margin: 0 auto; text-align: center; }
.charter-inner h2 { font-size: 38px; font-weight: 900; letter-spacing: -0.75px; margin-bottom: 48px; }
.charter-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; text-align: left; }
.charter-card { background: #F5F5F2; border-radius: 4px; padding: 32px 28px; transition: transform 0.2s, box-shadow 0.2s; }
.charter-card:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(0,0,0,0.09); }
.charter-icon { font-size: 28px; margin-bottom: 14px; }
.charter-card h3 { font-size: 13px; font-weight: 800; letter-spacing: 0.75px; text-transform: uppercase; color: #1a1a1a; margin-bottom: 8px; }
.charter-card p { font-size: 13px; color: #777; line-height: 1.7; margin: 0; }

/* ── CONTACT SECTION ── */
.contact-section { padding: 88px 48px; }
.contact-inner { max-width: 960px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-info h2 { font-size: 30px; font-weight: 900; letter-spacing: -0.5px; margin-bottom: 8px; }
.contact-info .subtitle { font-size: 15px; color: #555; line-height: 1.75; margin-bottom: 40px; }
.info-items { display: flex; flex-direction: column; gap: 28px; }
.info-item { position: relative; padding-left: 58px; }
.info-icon { position: absolute; top: 0; left: 0; width: 42px; height: 42px; background: #F5F5F2; border-radius: 3px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.info-text h3 { font-size: 11px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: #E07820; margin-bottom: 4px; }
.info-text p, .info-text a { font-size: 15px; color: #1a1a1a; line-height: 1.5; text-decoration: none; }
.info-text a:hover { color: #E07820; }
.info-text .note { font-size: 13px; color: #999; margin-top: 2px; }

.form-placeholder { background: #F5F5F2; border-radius: 4px; padding: 40px 36px; }
.form-placeholder h3 { font-size: 20px; font-weight: 900; letter-spacing: -0.2px; margin-bottom: 8px; }
.form-placeholder .coming-soon-note { font-size: 13px; color: #999; margin-bottom: 28px; display: flex; align-items: center; gap: 8px; }
.coming-soon-badge { background: #E07820; color: #fff; font-size: 9px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; padding: 3px 8px; border-radius: 3px; }
.fake-field { margin-bottom: 16px; }
.fake-field label { display: block; font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: #999; margin-bottom: 6px; }
.fake-input  { width: 100%; background: #edecea; border: none; border-radius: 3px; height: 42px; display: block; opacity: 0.5; }
.fake-textarea { width: 100%; background: #edecea; border: none; border-radius: 3px; height: 100px; display: block; opacity: 0.5; }
.fake-btn { display: block; width: 100%; background: #ccc; color: #999; font-size: 13px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; padding: 14px; border: none; border-radius: 3px; margin-top: 20px; cursor: not-allowed; }

/* ── WPFORMS — reskin the embedded [wpforms] shortcode to match .form-placeholder's look.
   !important throughout since WPForms enqueues its own frontend stylesheet and load order
   relative to global.css isn't guaranteed. ── */
.form-placeholder .wpforms-container { margin: 0; }
.form-placeholder .wpforms-field { padding: 0; margin-bottom: 16px !important; }
.form-placeholder .wpforms-field-label {
  display: block; font-size: 11px !important; font-weight: 700 !important;
  letter-spacing: 1px !important; text-transform: uppercase !important;
  color: #555 !important; margin-bottom: 6px !important;
}
.form-placeholder .wpforms-required-label { color: #E07820 !important; }
.form-placeholder .wpforms-field input[type="text"],
.form-placeholder .wpforms-field input[type="email"],
.form-placeholder .wpforms-field input[type="tel"],
.form-placeholder .wpforms-field textarea {
  width: 100% !important;
  max-width: 100% !important;
  border: 1.5px solid #E0DDD8 !important;
  border-radius: 3px !important;
  padding: 11px 14px !important;
  font-size: 14px !important;
  font-family: inherit !important;
  color: #1a1a1a !important;
  background: #fff !important;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-placeholder .wpforms-field input:focus,
.form-placeholder .wpforms-field textarea:focus {
  outline: none !important;
  border-color: #E07820 !important;
  box-shadow: 0 0 0 3px rgba(224,120,32,0.15) !important;
}
.form-placeholder .wpforms-field textarea { min-height: 100px !important; resize: vertical; }
.form-placeholder .wpforms-submit-container { margin-top: 4px; }
.form-placeholder .wpforms-submit {
  display: block !important; width: 100% !important;
  background: #1E1E1E !important; color: #fff !important;
  font-size: 13px !important; font-weight: 800 !important; letter-spacing: 1px !important;
  text-transform: uppercase !important; padding: 14px !important;
  border: none !important; border-radius: 3px !important;
  cursor: pointer !important; transition: background 0.2s !important;
}
.form-placeholder .wpforms-submit:hover { background: #E07820 !important; }
.form-placeholder .wpforms-error { color: #c0392b !important; font-size: 12px !important; margin-top: 4px !important; }

.team-section { padding: 72px 48px; background: #F5F5F2; }
.team-inner { max-width: 960px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.team-card { background: #fff; border-radius: 4px; overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,0.07); }
.team-photo-placeholder { width: 100%; aspect-ratio: 1 / 1; background: #e4e2df; overflow: hidden; }
.team-photo-placeholder img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.team-info { padding: 24px 28px; }
.team-info h3 { font-size: 18px; font-weight: 800; color: #1a1a1a; margin-bottom: 6px; }
.team-role { font-size: 13px; color: #E07820; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin: 0; }

.service-area { background: #1E1E1E; padding: 52px 48px; text-align: center; }
.service-area h2 { font-size: 28px; font-weight: 900; color: #fff; margin-bottom: 10px; letter-spacing: -0.3px; }
.service-area p { font-size: 15px; color: rgba(255,255,255,0.45); }
.service-area .tag { margin-bottom: 16px; display: inline-block; }

/* ── QUOTE FORM ── */
.quote-section { padding: 88px 48px; }
.quote-inner { max-width: 960px; margin: 0 auto; }
.quote-inner h2 { font-size: 30px; font-weight: 900; letter-spacing: -0.5px; margin-bottom: 40px; }
.form-row { display: grid; gap: 24px; margin-bottom: 28px; }
.form-row.three-col { grid-template-columns: 1fr 1fr 1fr; }
.form-row.two-col   { grid-template-columns: 1fr 1fr; }
.form-row.fence-boundary { grid-template-columns: 5fr 7fr; }
.form-group { display: flex; flex-direction: column; }
.form-group > label { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: #555; margin-bottom: 8px; }
.req { color: #E07820; }
.field-note { font-size: 10px; font-weight: 400; text-transform: none; letter-spacing: 0; color: #999; margin-left: 4px; }
input[type="text"],
input[type="tel"],
input[type="email"],
textarea {
  border: 1.5px solid #E0DDD8; border-radius: 3px; padding: 11px 14px; font-size: 14px;
  font-family: inherit; color: #1a1a1a; background: #fff; width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s; line-height: 1.4;
}
input:focus, textarea:focus { outline: none; border-color: #E07820; box-shadow: 0 0 0 3px rgba(224,120,32,0.15); }
textarea { resize: vertical; min-height: 120px; }
.checkbox-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px; margin-top: 4px; }
.checkbox-col  { display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
.checkbox-label { display: flex; align-items: center; gap: 9px; font-size: 14px; color: #1a1a1a; cursor: pointer; line-height: 1.3; }
.checkbox-label input[type="checkbox"] { accent-color: #E07820; width: 16px; height: 16px; flex-shrink: 0; cursor: pointer; }
.boundary-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: start; }
.boundary-diagram { border: 2px solid #E0DDD8; border-radius: 3px; overflow: hidden; font-size: 10px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; color: #999; display: grid; grid-template-rows: auto 1fr auto; min-height: 160px; }
.diag-rear  { padding: 10px 12px; text-align: center; background: #F5F5F2; border-bottom: 1.5px solid #E0DDD8; }
.diag-middle { display: flex; align-items: stretch; min-height: 80px; }
.diag-side { padding: 8px 6px; background: #F5F5F2; display: flex; align-items: center; justify-content: center; writing-mode: vertical-rl; font-size: 9px; }
.diag-side.left  { transform: rotate(180deg); border-right: 1.5px solid #E0DDD8; }
.diag-side.right { border-left: 1.5px solid #E0DDD8; }
.diag-interior { flex: 1; background: #fff; }
.diag-front { padding: 10px 12px; text-align: center; background: #F5F5F2; border-top: 1.5px solid #E0DDD8; }
input[type="file"] { font-size: 13px; color: #555; border: 1.5px solid #E0DDD8; border-radius: 3px; padding: 10px 12px; width: 100%; background: #F5F5F2; cursor: pointer; transition: border-color 0.2s; }
input[type="file"]:focus { outline: none; border-color: #E07820; }
.form-divider { border: none; border-top: 1px solid #EEEBE5; margin: 4px 0 32px; }
.form-submit { text-align: center; padding-top: 12px; }
.submit-btn { background: #1E1E1E; color: #fff; font-size: 13px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; padding: 16px 56px; border: none; border-radius: 3px; cursor: pointer; transition: background 0.2s; }
.submit-btn:hover { background: #E07820; }

/* ── PROJECTS WALL ── */
.projects-wall { background: #1E1E1E; padding: 0 48px 88px; }
.projects-wall .projects-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 3px; }
.projects-wall .project-card { display: block; text-decoration: none; position: relative; overflow: hidden; aspect-ratio: 1; background: #2a2a2a; }
.projects-wall .project-card img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.35s ease; }
.projects-wall .project-card:hover img { transform: scale(1.05); }
.project-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.15) 50%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 20px 18px; opacity: 0.5; transition: opacity 0.25s;
}
.projects-wall .project-card:hover .project-card-overlay { opacity: 1; }
.project-card-overlay .p-tag { font-size: 9px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: #E07820; margin-bottom: 4px; }
.project-card-overlay h3 { font-size: 14px; font-weight: 800; color: #fff; line-height: 1.3; }
.project-card-no-img { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 24px; text-align: center; }
.project-card-no-img .p-tag { font-size: 9px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: #E07820; margin-bottom: 8px; }
.project-card-no-img h3 { font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.5); line-height: 1.4; }

/* ── MORE TAG (projects page) ── */
.more-tag { background: #1E1E1E; text-align: center; padding: 44px 24px; font-size: 54px; font-style: italic; color: #E07820; letter-spacing: -0.5px; }

/* ── PROJECT DETAIL: GALLERY ── */
.gallery-section { padding: 0; }
.gallery-single img { width: 100%; max-height: 640px; object-fit: cover; display: block; }
.gallery-grid { display: grid; gap: 3px; }
.gallery-grid.two-col  { grid-template-columns: 1fr 1fr; }
.gallery-grid.featured { grid-template-columns: 2fr 1fr; }
.gallery-grid.quad     { grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; }
.gallery-grid img      { width: 100%; height: 400px; object-fit: cover; display: block; }
.gallery-grid.quad img { height: 320px; }
.no-image { background: #F5F5F2; padding: 80px 48px; text-align: center; color: #bbb; font-size: 15px; }
.project-details { padding: 64px 48px; max-width: 800px; }
.project-details h2 { font-size: 22px; font-weight: 900; margin-bottom: 16px; }
.project-details p   { font-size: 16px; color: #555; line-height: 1.85; }

/* ── INDUSTRY DETAIL: FEATURED IMAGES ── */
.featured-images { display: grid; gap: 3px; }
.featured-images.one   { grid-template-columns: 1fr; }
.featured-images.two   { grid-template-columns: 1fr 1fr; }
.featured-images.three { grid-template-columns: 2fr 1fr; }
.featured-images.four  { grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; }
.featured-images img   { width: 100%; height: 420px; object-fit: cover; display: block; }
.featured-images.four img { height: 280px; }
.featured-images .side-stack { display: grid; grid-template-rows: 1fr 1fr; gap: 3px; }
.featured-images .side-stack img { height: 100%; }

/* ── RELATED PROJECTS GRID (industry detail) ── */
.related-projects { padding: 80px 64px; }
.related-projects h2 { font-size: 30px; font-weight: 900; letter-spacing: -0.5px; margin-bottom: 8px; }
.related-projects .section-sub { font-size: 15px; color: #555; margin-bottom: 44px; }
.related-projects .projects-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.related-projects .project-card {
  display: block; text-decoration: none; border-radius: 4px; overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.related-projects .project-card:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(0,0,0,0.13); }
.project-card-img { width: 100%; height: 240px; object-fit: cover; display: block; background: #F5F5F2; }
.project-card-placeholder { width: 100%; height: 240px; background: #1E1E1E; display: flex; align-items: center; justify-content: center; }
.project-card-placeholder .tag { margin: 0; }
.project-card-body { padding: 18px 16px 14px; }
.project-card-body .p-tag { font-size: 9px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: #E07820; margin-bottom: 6px; }
.project-card-body h3 { font-size: 15px; font-weight: 700; color: #1a1a1a; line-height: 1.35; margin-bottom: 8px; }
.project-card-body .view-link { font-size: 12px; font-weight: 700; color: #E07820; text-transform: uppercase; letter-spacing: 0.5px; }
.project-card-body .view-link::after { content: ' →'; }
.related-projects .project-card:hover .project-card-body h3 { color: #E07820; }
.no-projects { padding: 40px 0; color: #999; font-size: 15px; }

/* ── ERROR STATES ── */
.error-state { padding: 80px 48px; text-align: center; }
.error-state h2 { font-size: 28px; font-weight: 900; margin-bottom: 12px; }
.error-state p   { font-size: 15px; color: #555; margin-bottom: 28px; }
.back-btn { display: inline-block; background: #E07820; color: #fff; font-size: 13px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; padding: 12px 28px; text-decoration: none; border-radius: 3px; }
.load-error { padding: 48px; color: #c00; font-size: 15px; line-height: 1.7; }
.load-error strong { display: block; font-size: 18px; margin-bottom: 8px; }

/* ============================================================
   RESPONSIVE — 900px breakpoint
   ============================================================ */
@media (max-width: 900px) {
  /* !important — header carries an inline padding from the FSE header part */
  header { padding: 14px 20px !important; }
  .nav-toggle { display: flex; }

  /* !important on display — nav carries an inline display:flex from the FSE header part, which
     otherwise beats this rule regardless of specificity */
  nav#site-nav {
    display: none !important;
    position: fixed;
    left: 0; right: 0;
    background: rgba(20,20,20,0.97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    flex-direction: column;
    align-items: stretch;
    margin-left: 0;
    padding: 8px 24px 24px;
    max-height: 80vh;
    overflow-y: auto;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 12px 24px rgba(0,0,0,0.35);
    z-index: 99;
  }
  nav#site-nav.nav-open { display: flex !important; }
  /* !important needed — nav links carry inline margin-left/padding from the FSE header part */
  nav#site-nav a {
    margin-left: 0 !important;
    padding: 16px 4px !important;
    font-size: 15px !important;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    display: block;
  }
  nav#site-nav a.nav-cta {
    margin-top: 14px !important;
    text-align: center;
    border-bottom: none;
  }

  .hero { padding: 116px 28px 64px; }
  .hero h1 { font-size: 40px; letter-spacing: -1.5px; }
  .hero p  { font-size: 16px; }
  .hero-logo { max-width: 240px; margin-bottom: 16px; }
  .hero-badge { width: 200px; margin-bottom: 24px; }
  .project-hero, .industry-hero { padding: 52px 28px; min-height: 320px; }
  .project-hero h1, .industry-hero h1 { font-size: 32px; letter-spacing: -0.75px; }

  .hub-section { grid-template-columns: 1fr; }
  .hub-card { min-height: 340px; }
  .hub-card-content { padding: 44px 32px; }

  .testimonials-section { padding: 60px 24px; }
  .testimonials-track   { min-height: 360px; }
  .testimonial-quote    { font-size: 17px; }
  .testimonial.testimonial-wide { left: 0; right: 0; width: auto; transform: none; }
  .testimonial.testimonial-wide .testimonial-quote { max-width: 700px; }

  .section, .section.flip { grid-template-columns: 1fr; direction: ltr; }
  .section-text { padding: 52px 28px; }
  .photo-panel  { min-height: 280px; }
  .photos-main-side, .photos-2col, .photos-quad { grid-template-columns: 1fr 1fr; }

  .what-we-do   { padding: 60px 24px; }
  .capabilities { grid-template-columns: 1fr 1fr; }

  .contact-section  { padding: 60px 24px; }
  .contact-inner    { grid-template-columns: 1fr; gap: 40px; }
  .timeline-section { padding: 60px 24px; }
  .charter-section  { padding: 60px 24px; }
  .charter-grid     { grid-template-columns: 1fr; }
  .team-section     { padding: 52px 24px; }
  .team-inner       { grid-template-columns: 1fr; }
  .service-area     { padding: 44px 24px; }

  .quote-section      { padding: 60px 24px; }
  .form-row.three-col { grid-template-columns: 1fr; }
  .form-row.two-col   { grid-template-columns: 1fr; }
  .form-row.fence-boundary { grid-template-columns: 1fr; }
  .boundary-inner     { grid-template-columns: 1fr; }
  .checkbox-grid      { grid-template-columns: 1fr; }

  .projects-wall { padding: 0 24px 60px; }
  .projects-wall .projects-grid { grid-template-columns: repeat(3, 1fr); }

  .gallery-grid { grid-template-columns: 1fr !important; }
  .gallery-grid img { height: 260px; }
  .project-details { padding: 40px 24px; }

  .featured-images { grid-template-columns: 1fr !important; grid-template-rows: auto !important; }
  .featured-images img { height: 260px; }
  .featured-images .side-stack { grid-template-rows: auto; grid-template-columns: 1fr 1fr; }
  .featured-images .side-stack img { height: 180px; }

  .related-projects { padding: 52px 24px; }
  .related-projects .projects-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .project-card-img, .project-card-placeholder { height: 180px; }

  .cta-strip { padding: 56px 28px; }
  .cta-strip h2 { font-size: 30px; }

  /* !important — footer part carries inline grid/flex styles from the FSE template part */
  .footer-grid { grid-template-columns: 1fr !important; padding: 48px 24px 0 !important; gap: 36px !important; }
  .footer-links { display: none !important; }
  .footer-bottom { padding: 24px 24px !important; margin-top: 40px !important; flex-direction: column !important; align-items: flex-start !important; gap: 14px !important; }
  /* Centre just the brand column (logo, badge, blurb) on mobile — other columns stay left-aligned */
  .footer-brand { text-align: center !important; }
  .footer-brand img, .footer-brand svg { margin-left: auto !important; margin-right: auto !important; }
  .footer-brand p { margin-left: auto !important; margin-right: auto !important; }
}

@media (max-width: 600px) {
  .projects-wall .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .related-projects .projects-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   RESPONSIVE — 480px breakpoint (small phones — iPhone SE etc.)
   ============================================================ */
@media (max-width: 480px) {
  header { padding: 12px 16px !important; }
  .logo { font-size: 18px !important; gap: 8px !important; }
  .logo-img { height: 30px !important; }

  .hero { padding: 104px 20px 48px; }
  .hero-pill { font-size: 11px; padding: 6px 14px; margin-bottom: 20px; }
  .hero-logo { max-width: 170px; margin-bottom: 12px; }
  .hero-badge { width: 150px; margin-bottom: 18px; }
  .hero h1 { font-size: 30px; letter-spacing: -1px; }
  .hero p  { font-size: 15px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-outline { text-align: center; padding: 14px 24px; }

  .project-hero, .industry-hero { padding: 40px 20px; min-height: 280px; }
  .project-hero h1, .industry-hero h1 { font-size: 26px; }

  .hub-card-content { padding: 32px 22px; }
  .hub-card-content h2 { font-size: 28px; }

  .section-text { padding: 40px 20px; }
  .section-text h2 { font-size: 26px; }

  .cta-strip { padding: 44px 20px; }
  .cta-strip h2 { font-size: 24px; }
  .cta-btn, .cta-btn-outline { display: block; width: 100%; margin: 6px 0; }

  .capabilities { grid-template-columns: 1fr; }
  .charter-grid { grid-template-columns: 1fr; }
  .team-inner { grid-template-columns: 1fr; }
  .projects-wall .projects-grid { grid-template-columns: 1fr 1fr; gap: 2px; }

  .quote-inner h2 { font-size: 24px; }
  .form-row.three-col, .form-row.two-col { grid-template-columns: 1fr; }
}

/* ── SINGLE INDUSTRY PHP TEMPLATE ── */
.industry-hero .wp-block-paragraph,
.industry-hero p {
  font-size: 17px; color: rgba(255,255,255,0.68); max-width: 640px; line-height: 1.8; margin: 0;
}
.industry-featured-photo { overflow: hidden; width: 100%; display: block; }
.industry-featured-photo img { width: 100% !important; max-width: 100% !important; height: 580px !important; object-fit: cover !important; display: block !important; }

/* ── PROJECT GALLERY ── */
.project-gallery {
  max-width: 1200px; margin: 0 auto; padding: 80px 72px;
  background: #fff;
}
.project-gallery h2 {
  font-size: 34px; font-weight: 900; letter-spacing: -0.75px; color: #1a1a1a;
  margin: 0 0 48px; text-align: center;
}
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.gallery-item {
  overflow: hidden; border-radius: 4px; aspect-ratio: 4 / 3;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.3s ease;
}
.gallery-item:hover img { transform: scale(1.04); }

@media (max-width: 1024px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (max-width: 600px) {
  .project-gallery { padding: 52px 28px; }
  .project-gallery h2 { font-size: 28px; margin-bottom: 32px; }
  .gallery-grid { grid-template-columns: 1fr; gap: 12px; }
}

/* ── SINGLE PROJECT — FSE block overrides ── */
.project-hero .wp-block-post-terms {
  display: inline-block; background: #E07820; color: #fff;
  font-size: 11px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 2.5px; padding: 5px 12px; border-radius: 3px; margin-bottom: 16px;
}
.project-hero .wp-block-post-terms a { color: #fff; text-decoration: none; }
.project-hero .wp-block-post-title {
  font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  font-size: 52px; font-weight: 700; line-height: 1.08; letter-spacing: -1.5px; color: #fff; max-width: 760px; margin: 0;
}
.gallery-section .wp-block-post-featured-image { margin: 0; }
.gallery-section .wp-block-post-featured-image img { width: 100%; max-height: 640px; object-fit: cover; display: block; }
.project-description { padding: 56px 72px; max-width: 860px; }
.project-description p { font-size: 17px; color: #555; line-height: 1.8; margin-bottom: 16px; }

/* ── INDUSTRY TAXONOMY TEMPLATE ── */
.industry-hero .wp-block-term-title {
  font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  font-size: 52px; font-weight: 700; line-height: 1.08; letter-spacing: -1.5px; color: #fff; max-width: 760px; margin-bottom: 16px;
}
.industry-hero .wp-block-term-description,
.industry-hero .wp-block-term-description p {
  font-size: 17px; color: rgba(255,255,255,0.68); max-width: 640px; line-height: 1.8; margin: 0;
}

/* ── INDUSTRY ARCHIVE ── */
.industry-archive .wp-block-post-template {
  display: grid !important; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px; list-style: none; padding: 0; margin: 40px 0 0;
}
.industry-archive .wp-block-post { display: block; }
.industry-archive .project-card { display: block; cursor: pointer; border-radius: 4px; overflow: hidden; box-shadow: 0 2px 10px rgba(0,0,0,0.07); transition: transform 0.2s ease, box-shadow 0.2s ease; }
.industry-archive .project-card:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(0,0,0,0.13); }
.industry-archive .wp-block-post-featured-image { margin: 0; }
.industry-archive .wp-block-post-featured-image img { width: 100%; height: 240px; object-fit: cover; display: block; }
.industry-archive .wp-block-post-featured-image a { display: block; }
.industry-archive .project-card-body { padding: 18px 16px 14px; }
.industry-archive .wp-block-post-terms.p-tag { font-size: 9px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: #E07820; margin-bottom: 6px; display: block; }
.industry-archive .wp-block-post-terms.p-tag a { color: #E07820; text-decoration: none; }
.industry-archive .wp-block-post-title { font-size: 15px; font-weight: 700; color: #1a1a1a; line-height: 1.35; margin-bottom: 8px; }
.industry-archive .wp-block-post-title a { color: #1a1a1a; text-decoration: none; }
.industry-archive .project-card:hover .wp-block-post-title a { color: #E07820; }

@media (max-width: 900px) {
  .project-description { padding: 40px 24px; }
  .project-hero .wp-block-post-title { font-size: 32px; }
  .industry-hero .wp-block-term-title { font-size: 32px; }
  .industry-archive .wp-block-post-template { grid-template-columns: 1fr 1fr; gap: 16px; }
}
@media (max-width: 600px) {
  .industry-archive .wp-block-post-template { grid-template-columns: 1fr; }
}
