/* ============================================================
   Badger Building Inc. — Site Stylesheet
   Brand colors sampled from the company logo:
     Forest green  #18452C
     Burnt orange  #D86C2C
   Headings: Oswald (bold condensed) · Body: Montserrat
   ============================================================ */

:root {
  --green: #18452C;
  --green-deep: #0E2A1B;
  --green-soft: #2A5E3F;
  --orange: #D86C2C;
  --orange-dark: #B5541C;
  --paper: #F6F4EF;
  --white: #FFFFFF;
  --ink: #181C19;
  --ink-soft: #4A524C;
  --line: #E3DFD4;
  --radius: 10px;
  --shadow: 0 10px 30px rgba(14, 42, 27, 0.10);
  --shadow-sm: 0 3px 12px rgba(14, 42, 27, 0.08);
  --container: 1180px;
  --header-h: 76px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Montserrat", -apple-system, "Segoe UI", Arial, sans-serif;
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--green); }

h1, h2, h3, h4, .btn, .nav-links a, .eyebrow {
  font-family: "Oswald", "Arial Narrow", sans-serif;
  letter-spacing: 0.01em;
}

h1, h2, h3, h4 {
  color: var(--green);
  line-height: 1.15;
  text-wrap: balance;
  font-weight: 600;
}

h1 { font-size: clamp(2.3rem, 5.5vw, 3.9rem); text-transform: uppercase; }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); text-transform: uppercase; }
h3 { font-size: 1.3rem; }

p + p { margin-top: 1em; }

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

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  color: var(--orange-dark);
  margin-bottom: 0.6rem;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 34px;
  height: 3px;
  background: var(--orange);
  vertical-align: middle;
  margin-right: 12px;
  border-radius: 2px;
}

.lede { font-size: 1.13rem; color: var(--ink-soft); max-width: 62ch; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1.02rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.btn svg { width: 18px; height: 18px; flex: none; }

.btn-orange { background: var(--orange); color: #fff; }
.btn-orange:hover { background: var(--orange-dark); transform: translateY(-2px); }

.btn-green { background: var(--green); color: #fff; }
.btn-green:hover { background: var(--green-deep); transform: translateY(-2px); }

.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.75); }
.btn-outline-light:hover { background: rgba(255,255,255,0.12); border-color: #fff; }

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

/* ---------- Preview-site disclaimer banner ---------- */
/* EDIT ME: delete this whole block, and the .preview-banner <div> near the top
   of every page's <body>, once the site is live on the real company domain. */
.preview-banner {
  background: #4a1010;
  color: #fff;
  font-size: 0.82rem;
  text-align: center;
  padding: 9px 16px;
  line-height: 1.5;
}
.preview-banner strong { text-transform: uppercase; letter-spacing: 0.04em; }

/* ---------- Top utility bar ---------- */
.topbar {
  background: var(--green-deep);
  color: #DCE7DF;
  font-size: 0.86rem;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-top: 8px;
  padding-bottom: 8px;
}

.topbar a { color: #fff; text-decoration: none; font-weight: 600; }
.topbar a:hover { color: #F2B27E; }
.topbar .topbar-addr { display: flex; align-items: center; gap: 8px; min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.topbar svg { width: 14px; height: 14px; flex: none; }
.topbar .topbar-phone { display: flex; align-items: center; gap: 8px; }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 14px rgba(14, 42, 27, 0.10);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: var(--header-h);
}

.brand { display: flex; align-items: center; text-decoration: none; padding: 10px 0; }
.brand img { height: 50px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}

.nav-links a {
  display: block;
  padding: 10px 11px;
  text-decoration: none;
  color: var(--green);
  font-weight: 500;
  font-size: 1.02rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-bottom: 3px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.nav-links a:hover { color: var(--orange-dark); }
.nav-links a.active { color: var(--orange-dark); border-bottom-color: var(--orange); }

.nav-cta { margin-left: 10px; }
.nav-cta .btn { padding: 11px 20px; font-size: 0.95rem; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 10px;
  color: var(--green);
}
.nav-toggle svg { width: 30px; height: 30px; display: block; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: min(86vh, 720px);
  background: var(--green-deep);
  color: #fff;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 65%;
  opacity: 0.55;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(14,42,27,0.92) 0%, rgba(14,42,27,0.72) 45%, rgba(14,42,27,0.30) 100%);
}

.hero .container { position: relative; z-index: 2; padding-top: 90px; padding-bottom: 110px; }

.hero h1 { color: #fff; max-width: 17ch; }

.hero .hero-kicker {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 500;
  color: #F2B27E;
  margin-bottom: 14px;
  font-size: 1rem;
}

.hero .hero-sub {
  margin-top: 20px;
  font-size: 1.16rem;
  max-width: 56ch;
  color: #E6EDE7;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

.hero-rule {
  width: 76px;
  height: 5px;
  background: var(--orange);
  border-radius: 3px;
  margin-top: 26px;
}

/* Page hero (interior pages) */
.page-hero {
  position: relative;
  background: var(--green-deep);
  color: #fff;
  overflow: hidden;
}
.page-hero .hero-bg { opacity: 0.35; }
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(14,42,27,0.92), rgba(14,42,27,0.55));
}
.page-hero .container { position: relative; z-index: 2; padding-top: 72px; padding-bottom: 64px; }
.page-hero h1 { color: #fff; }
.page-hero .breadcrumb {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.88rem;
  color: #F2B27E;
  margin-bottom: 10px;
}
.page-hero .breadcrumb a { color: #F2B27E; text-decoration: none; }
.page-hero .breadcrumb a:hover { color: #fff; }
.page-hero .lede { color: #E6EDE7; margin-top: 14px; }

/* ---------- Sections ---------- */
.section { padding: 84px 0; }
.section-alt { background: var(--paper); }
.section-head { max-width: 760px; margin-bottom: 44px; }

/* ---------- Services grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--green);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-top-color 0.18s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-top-color: var(--orange);
}

.service-card .svc-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: rgba(24, 69, 44, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--green);
}
.service-card .svc-icon svg { width: 26px; height: 26px; }

.service-card h3 { margin-bottom: 8px; text-transform: uppercase; font-size: 1.12rem; }
.service-card p { color: var(--ink-soft); font-size: 0.97rem; }

/* ---------- Stats band ---------- */
.stats-band { background: var(--green); color: #fff; padding: 56px 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  text-align: center;
}
.stat-num {
  font-family: "Oswald", sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  color: #F2B27E;
  line-height: 1;
}
.stat-label { margin-top: 8px; text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.88rem; color: #DCE7DF; }

/* ---------- Split feature ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split-media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.split-media img { width: 100%; height: 100%; object-fit: cover; }

.check-list { list-style: none; margin-top: 18px; }
.check-list li {
  padding-left: 34px;
  position: relative;
  margin-bottom: 12px;
  color: var(--ink-soft);
}
.check-list li strong { color: var(--ink); }
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--orange);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10" fill="black" stroke="none"/><path d="M8 12.5l2.5 2.5L16 9.5" stroke="white"/></svg>') center / contain no-repeat;
          mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10" fill="black" stroke="none"/><path d="M8 12.5l2.5 2.5L16 9.5" stroke="white"/></svg>') center / contain no-repeat;
}

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery-grid figure {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--green-deep);
}
.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.gallery-grid figure:hover img { transform: scale(1.04); opacity: 0.92; }
.gallery-grid figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 26px 16px 12px;
  background: linear-gradient(transparent, rgba(14,42,27,0.85));
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
}

/* ---------- Service area ---------- */
.area-band { background: var(--paper); }
.city-chips { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.city-chips span {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--orange);
  border-radius: 6px;
  padding: 9px 18px;
  color: var(--green);
  font-size: 0.95rem;
}

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(115deg, var(--green-deep), var(--green) 70%);
  color: #fff;
  padding: 76px 0;
  text-align: center;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: #DCE7DF; max-width: 58ch; margin: 14px auto 0; }
.cta-band .hero-ctas { justify-content: center; }

/* ---------- Team ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.team-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.team-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: var(--paper);
}

.team-avatar {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(140deg, var(--green), var(--green-deep));
}
.team-avatar span {
  font-family: "Oswald", sans-serif;
  font-size: 4.2rem;
  font-weight: 700;
  color: rgba(255,255,255,0.92);
  letter-spacing: 0.04em;
}

.team-body { padding: 20px 18px 24px; }
.team-body h3 { font-size: 1.18rem; text-transform: uppercase; }
.team-role {
  color: var(--orange-dark);
  font-weight: 600;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 4px 0 10px;
  font-family: "Oswald", sans-serif;
}
.team-body a { color: var(--ink-soft); text-decoration: none; font-size: 0.92rem; word-break: break-all; }
.team-body a:hover { color: var(--green); text-decoration: underline; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.info-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 30px;
}

.info-row { display: flex; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--line); align-items: flex-start; }
.info-row:last-child { border-bottom: 0; }
.info-row .info-icon {
  width: 42px; height: 42px; flex: none;
  border-radius: 8px;
  background: rgba(24,69,44,0.08);
  color: var(--green);
  display: flex; align-items: center; justify-content: center;
}
.info-row .info-icon svg { width: 22px; height: 22px; }
.info-row h3 { font-size: 1.02rem; text-transform: uppercase; margin-bottom: 2px; }
.info-row p, .info-row a { color: var(--ink-soft); font-size: 0.98rem; text-decoration: none; }
.info-row a:hover { color: var(--green); text-decoration: underline; }

.map-frame {
  border: 0;
  width: 100%;
  height: 340px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  margin-top: 26px;
}

/* Forms */
.form-card {
  background: var(--green-deep);
  color: #fff;
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow);
}
.form-card h2 { color: #fff; font-size: 1.6rem; }
.form-card p { color: #C9D6CC; font-size: 0.95rem; }

.form-grid { display: grid; gap: 16px; margin-top: 22px; }

.form-field label {
  display: block;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  margin-bottom: 6px;
  color: #DCE7DF;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 13px 14px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.07);
  color: #fff;
  font-family: inherit;
  font-size: 1rem;
}
.form-field input::placeholder, .form-field textarea::placeholder { color: rgba(255,255,255,0.45); }
.form-field input:focus, .form-field textarea:focus {
  outline: 2px solid var(--orange);
  border-color: transparent;
  background: rgba(255,255,255,0.12);
}
.form-note { font-size: 0.85rem; color: #A9BBAD; margin-top: 12px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--green-deep); color: #C9D6CC; padding: 64px 0 0; font-size: 0.95rem; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1.1fr 0.9fr 1fr;
  gap: 38px;
  padding-bottom: 44px;
}

.footer-logo-chip {
  display: inline-block;
  background: #fff;
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 18px;
}
.footer-logo-chip img { height: 46px; width: auto; }

.site-footer h4 {
  color: #fff;
  text-transform: uppercase;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.site-footer h4::after {
  content: "";
  display: block;
  width: 34px;
  height: 3px;
  background: var(--orange);
  margin-top: 8px;
  border-radius: 2px;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 9px; }
.footer-links a, .footer-contact a { color: #C9D6CC; text-decoration: none; }
.footer-links a:hover, .footer-contact a:hover { color: #F2B27E; }

.footer-contact p { display: flex; gap: 10px; margin-bottom: 12px; align-items: flex-start; }
.footer-contact svg { width: 17px; height: 17px; flex: none; margin-top: 4px; color: var(--orange); }

.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  transition: background 0.18s ease, border-color 0.18s ease;
}
.footer-social a:hover { background: var(--orange); border-color: var(--orange); }
.footer-social svg { width: 18px; height: 18px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.14);
  padding: 20px 0;
  font-size: 0.85rem;
  color: #8FA694;
}
.footer-bottom .container { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }

/* ---------- Sticky mobile call bar ---------- */
.mobile-call-bar {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 1200;
  background: var(--orange);
  box-shadow: 0 -4px 16px rgba(0,0,0,0.22);
}
.mobile-call-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 10px calc(15px + env(safe-area-inset-bottom, 0px));
  color: #fff;
  text-decoration: none;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 1.12rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.mobile-call-bar svg { width: 20px; height: 20px; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .services-grid, .team-grid, .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .split, .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .topbar .topbar-addr span.addr-full { display: none; }
}

@media (max-width: 900px) {
  .section { padding: 60px 0; }
  body { padding-bottom: 58px; } /* room for the sticky call bar */
  .mobile-call-bar { display: block; }
  .topbar { display: none; }

  .nav-toggle { display: block; }
  .nav-cta { display: none; }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0 14px;
    box-shadow: 0 14px 22px rgba(14,42,27,0.14);
    display: none;
    border-top: 1px solid var(--line);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 13px 26px; border-bottom: 0; border-left: 4px solid transparent; }
  .nav-links a.active { border-left-color: var(--orange); background: var(--paper); }

  .hero .container { padding-top: 64px; padding-bottom: 72px; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .stats-grid { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 540px) {
  .services-grid, .team-grid, .gallery-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .brand img { height: 42px; }
}

/* ============================================================
   Additions: scroll reveal, trust band, testimonials,
   FAQ accordion, and the Projects page.
   ============================================================ */

/* ---------- Scroll-reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ---------- Trust / credentials band ---------- */
.trust-band { background: var(--paper); padding: 46px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.trust-item { display: flex; align-items: center; gap: 14px; }
.trust-item .trust-icon {
  width: 46px; height: 46px; flex: none;
  border-radius: 10px;
  background: var(--green);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.trust-item .trust-icon svg { width: 24px; height: 24px; }
.trust-item h3 {
  font-size: 1.02rem;
  text-transform: uppercase;
  line-height: 1.15;
  margin: 0;
}
.trust-item p { font-size: 0.85rem; color: var(--ink-soft); margin: 2px 0 0; line-height: 1.4; }

/* ---------- Testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.testi-card .quote-mark {
  font-family: Georgia, serif;
  font-size: 4rem;
  line-height: 0.7;
  color: var(--orange);
  opacity: 0.35;
}
.testi-stars { color: var(--orange); letter-spacing: 3px; margin: 6px 0 12px; font-size: 1.05rem; }
.testi-card blockquote { margin: 0; color: var(--ink); font-size: 1rem; }
.testi-author { margin-top: 18px; font-family: "Oswald", sans-serif; text-transform: uppercase; letter-spacing: 0.05em; color: var(--green); font-weight: 600; }
.testi-role { font-size: 0.85rem; color: var(--ink-soft); font-family: "Montserrat", sans-serif; text-transform: none; letter-spacing: 0; }

/* ---------- FAQ accordion ---------- */
.faq-list { max-width: 860px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
  padding: 22px 44px 22px 0;
  position: relative;
  font-family: "Oswald", sans-serif;
  font-size: 1.18rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--green);
}
.faq-q:hover { color: var(--orange-dark); }
.faq-q .faq-toggle {
  position: absolute;
  right: 4px; top: 50%;
  transform: translateY(-50%);
  width: 22px; height: 22px;
  transition: transform 0.25s ease;
}
.faq-q[aria-expanded="true"] .faq-toggle { transform: translateY(-50%) rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-a-inner { padding: 0 44px 22px 0; color: var(--ink-soft); }
.faq-a-inner a { color: var(--orange-dark); }

/* ---------- Projects page ---------- */
.project-featured { display: grid; grid-template-columns: 1.15fr 1fr; gap: 50px; align-items: center; }
.project-featured .pf-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.project-featured .pf-gallery img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 8px; box-shadow: var(--shadow-sm); }
.project-featured .pf-gallery img:first-child { grid-column: 1 / -1; aspect-ratio: 16/9; }

.project-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(24,69,44,0.08);
  color: var(--green);
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 30px;
  margin-bottom: 14px;
}
.project-meta { list-style: none; margin: 20px 0 0; padding: 0; }
.project-meta li { display: flex; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 0.96rem; }
.project-meta li:last-child { border-bottom: 0; }
.project-meta .pm-label { font-family: "Oswald", sans-serif; text-transform: uppercase; letter-spacing: 0.05em; color: var(--green); min-width: 120px; flex: none; }
.project-meta .pm-value { color: var(--ink-soft); }

.project-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.project-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  display: flex;
  flex-direction: column;
}
.project-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.project-card .pc-media { position: relative; overflow: hidden; }
.project-card .pc-media img { width: 100%; aspect-ratio: 3/2; object-fit: cover; transition: transform 0.3s ease; }
.project-card:hover .pc-media img { transform: scale(1.05); }
.project-card .pc-tag {
  position: absolute; top: 12px; left: 12px;
  background: var(--orange);
  color: #fff;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 4px;
}
.project-card .pc-body { padding: 22px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.project-card .pc-body h3 { font-size: 1.18rem; text-transform: uppercase; margin-bottom: 4px; }
.project-card .pc-loc { font-family: "Oswald", sans-serif; text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.82rem; color: var(--orange-dark); margin-bottom: 10px; }
.project-card .pc-body p { font-size: 0.94rem; color: var(--ink-soft); margin: 0; }

.project-card.placeholder { border-style: dashed; border-color: #c9c2b2; box-shadow: none; background: var(--paper); }
.project-card.placeholder .pc-media { aspect-ratio: 3/2; background: linear-gradient(135deg, var(--paper), #ece7da); display: flex; align-items: center; justify-content: center; }
.project-card.placeholder .pc-media svg { width: 54px; height: 54px; color: #b9b2a0; }

@media (max-width: 980px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 20px; }
  .testi-grid, .project-grid { grid-template-columns: repeat(2, 1fr); }
  .project-featured { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 600px) {
  .trust-grid { grid-template-columns: 1fr; }
  .testi-grid, .project-grid { grid-template-columns: 1fr; }
  .project-featured .pf-gallery img:first-child { aspect-ratio: 4/3; }
}

/* ---------- Photo placeholders (spots awaiting a real photo) ---------- */
/* EDIT ME: every .photo-placeholder marks a spot where a new photo still needs
   to be added. When you have the photo, drop the file in assets/img/ and replace
   the whole <div class="photo-placeholder">...</div> with an <img> tag. */
.photo-placeholder {
  border: 2px dashed #c9c2b2;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--paper), #ece7da);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  padding: 32px 24px;
  min-height: 280px;
  color: #8a8271;
}
.photo-placeholder svg { width: 46px; height: 46px; color: #b9b2a0; }
.photo-placeholder strong {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.95rem;
  color: #7a7263;
}
.photo-placeholder span { font-size: 0.86rem; max-width: 32ch; line-height: 1.5; }

/* Inside a photo grid, match the aspect ratio of the tiles around it. */
.gallery-grid .photo-placeholder,
.pf-gallery .photo-placeholder { min-height: 0; aspect-ratio: 4/3; padding: 20px 16px; }
.pf-gallery .photo-placeholder:first-child { aspect-ratio: 16/9; grid-column: 1 / -1; }

/* ---------- Two text columns side by side (e.g. bid invite blocks) ---------- */
.split.split-cols { align-items: start; gap: 48px; }

/* ---------- Form result panels ---------- */
/* Shown after a contact/application form is submitted: either a success
   confirmation, or a recovery panel holding the composed message when the
   visitor's mail app never opened. Sits inside the dark .form-card. */
.form-result {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 8px;
  font-size: 0.92rem;
  line-height: 1.55;
}
.form-result p { margin: 0; color: inherit; font-size: 0.92rem; }
.form-result a { color: #F2B27E; }
.form-result-ok {
  background: rgba(255, 255, 255, 0.10);
  border-left: 4px solid #7BB98A;
  color: #DCE7DF;
}
.form-result-warn {
  background: rgba(216, 108, 44, 0.16);
  border-left: 4px solid var(--orange);
  color: #F3E7DD;
}
.form-result-text {
  width: 100%;
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(0, 0, 0, 0.25);
  color: #fff;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.82rem;
  line-height: 1.5;
  resize: vertical;
}
.form-copy-btn { margin-top: 12px; }

/* A team member whose headshot hasn't been taken yet — matches the square
   .team-photo slot so the card keeps its shape. */
.team-card .photo-placeholder {
  aspect-ratio: 1 / 1;
  min-height: 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  padding: 20px 16px;
}

/* ============================================================
   Legal & compliance: footer license disclosures, legal pages,
   and the cookie consent banner.
   ============================================================ */

/* ---------- Footer license disclosures ---------- */
.footer-licenses {
  background: rgba(0, 0, 0, 0.18);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding: 18px 0;
  font-size: 0.92rem;
  color: #C9D6CC;
}
.footer-licenses p { margin: 0; line-height: 1.9; }
.footer-licenses strong {
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-right: 8px;
}
.footer-licenses span { white-space: nowrap; }

/* ---------- Legal pages (privacy, terms, accessibility) ---------- */
.legal-content { max-width: 820px; }
.legal-content .legal-updated {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.85rem;
  color: var(--orange-dark);
  margin-bottom: 26px;
}
.legal-content h2 { font-size: 1.4rem; margin: 36px 0 12px; }
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content p, .legal-content li { color: var(--ink-soft); margin-bottom: 12px; }
.legal-content ul { padding-left: 22px; margin-bottom: 14px; }
.legal-content li { margin-bottom: 8px; }
.legal-content a { color: var(--orange-dark); }

/* ---------- Cookie consent banner ---------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 1300;
  background: var(--green-deep);
  color: #DCE7DF;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.28);
  padding: 16px 0 calc(16px + env(safe-area-inset-bottom, 0px));
}
.cookie-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.cookie-banner p { margin: 0; font-size: 0.92rem; max-width: 72ch; }
.cookie-banner a { color: #F2B27E; }
.cookie-banner .btn { flex: none; padding: 10px 24px; }

@media (max-width: 900px) {
  .cookie-banner { bottom: 64px; } /* clear the sticky call bar */
}
