/*
Theme Name: Trace Coalition Global
Theme URI: https://tclogistics.info
Author: Mallard Marketing Services
Author URI: https://mallardmarketingservices.com
Description: A polished corporate theme for Trace Coalition Global — integrated relocation, logistics, and workforce development services. Includes custom page templates for Home, Logistics, Relocation, Workforce Support, Locations, and About.
Version: 1.0.0
License: Proprietary
Text Domain: trace-coalition
*/

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  /* Primary palette */
  --olive:        #7A8A3A;  /* Olive Global Green — accents, headlines, CTAs */
  --charcoal:     #2E2E2E;  /* Continental Charcoal — text, structure, nav */
  --gray:         #B7B7B7;  /* Horizon Gray — secondary text, dividers */

  /* Secondary palette */
  --sand:         #E5E2D5;  /* Atlas Sand — backgrounds, UI surfaces */
  --deep-green:   #4F5A23;  /* Meridian Deep Green — buttons, emphasis */
  --sky:          #F5F5F5;  /* Global Sky Neutral — light section backgrounds */

  /* Derived */
  --white:        #FFFFFF;
  --charcoal-90:  rgba(46,46,46,.90);
  --charcoal-70:  rgba(46,46,46,.70);
  --charcoal-55:  rgba(46,46,46,.55);
  --olive-tint:   rgba(122,138,58,.10);
  --line:         rgba(46,46,46,.12);

  /* Type */
  --font-display: "Fraunces", "Georgia", serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Rhythm */
  --wrap:         1200px;
  --wrap-narrow:  820px;
  --gutter:       clamp(1.25rem, 4vw, 3rem);
  --section-y:    clamp(4rem, 9vw, 8rem);
  --radius:       4px;

  --shadow-sm:    0 2px 8px rgba(46,46,46,.06);
  --shadow-md:    0 12px 40px rgba(46,46,46,.10);
}

/* ============================================================
   RESET / BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--deep-green); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--olive); }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 500; line-height: 1.12; color: var(--charcoal); margin: 0 0 .5em; letter-spacing: -.01em; }
h1 { font-size: clamp(2.4rem, 5.2vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }
p { margin: 0 0 1.1rem; }
p:last-child { margin-bottom: 0; }

:focus-visible { outline: 3px solid var(--olive); outline-offset: 3px; }

/* ============================================================
   LAYOUT HELPERS
   ============================================================ */
.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.wrap-narrow { max-width: var(--wrap-narrow); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); }
.bg-sand { background: var(--sand); }
.bg-sky  { background: var(--sky); }
.bg-charcoal { background: var(--charcoal); color: var(--white); }
.bg-charcoal h1, .bg-charcoal h2, .bg-charcoal h3 { color: var(--white); }
.bg-deep { background: var(--deep-green); color: var(--white); }
.bg-deep h1, .bg-deep h2, .bg-deep h3 { color: var(--white); }

/* Eyebrow label */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 1rem;
}
.bg-charcoal .eyebrow, .bg-deep .eyebrow { color: #C6D189; }

.lede { font-size: clamp(1.05rem, 1.5vw, 1.25rem); color: var(--charcoal-70); }
.bg-charcoal .lede, .bg-deep .lede { color: rgba(255,255,255,.82); }

/* Tagline triad e.g. "Proven. Reliable. Trusted." */
.tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  color: var(--olive);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-body); font-weight: 600; font-size: .95rem;
  letter-spacing: .02em;
  padding: .95rem 1.9rem;
  border-radius: var(--radius);
  border: 2px solid var(--deep-green);
  background: var(--deep-green); color: var(--white);
  cursor: pointer; transition: all .22s ease;
  line-height: 1;
}
.btn:hover { background: var(--olive); border-color: var(--olive); color: var(--white); transform: translateY(-2px); }
.btn--outline { background: transparent; color: var(--deep-green); }
.btn--outline:hover { background: var(--deep-green); color: var(--white); }
.btn--light { background: var(--white); border-color: var(--white); color: var(--charcoal); }
.btn--light:hover { background: var(--olive); border-color: var(--olive); color: var(--white); }
.btn--ghost-light { background: transparent; border-color: rgba(255,255,255,.6); color: var(--white); }
.btn--ghost-light:hover { background: var(--white); color: var(--charcoal); border-color: var(--white); }
.btn .arrow { transition: transform .22s ease; }
.btn:hover .arrow { transform: translateX(4px); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; min-height: 78px;
}
.site-logo img { max-height: 38px; width: auto; }
.site-logo .text-logo { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; color: var(--charcoal); }

.main-nav ul { list-style: none; display: flex; gap: 1.9rem; margin: 0; padding: 0; align-items: center; }
.main-nav a {
  color: var(--charcoal); font-weight: 500; font-size: .98rem;
  position: relative; padding-block: .4rem;
}
.main-nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--olive); transition: width .25s ease;
}
.main-nav a:hover, .main-nav .current-menu-item > a { color: var(--olive); }
.main-nav a:hover::after, .main-nav .current-menu-item > a::after { width: 100%; }

.header-cta { display: flex; align-items: center; gap: 1rem; }
.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer;
  width: 44px; height: 44px; padding: 8px;
}
.nav-toggle span { display: block; height: 2px; background: var(--charcoal); margin: 5px 0; transition: .25s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 960px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--white); border-bottom: 1px solid var(--line);
    max-height: 0; overflow: hidden; transition: max-height .3s ease;
  }
  .main-nav.open { max-height: 80vh; }
  .main-nav ul { flex-direction: column; gap: 0; padding: 1rem var(--gutter); align-items: stretch; }
  .main-nav li { border-bottom: 1px solid var(--line); }
  .main-nav a { display: block; padding: .9rem 0; }
  .header-cta .btn { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 88vh;
  display: flex; align-items: center;
  color: var(--white); overflow: hidden;
}
.hero__media, .hero__media video, .hero__media img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(46,46,46,.86) 0%, rgba(46,46,46,.55) 55%, rgba(79,90,35,.35) 100%);
}
.hero__content { position: relative; z-index: 2; max-width: 760px; }
.hero h1 { color: var(--white); margin-bottom: .6rem; }
.hero__sub {
  font-family: var(--font-body); font-weight: 500;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  letter-spacing: .04em; color: rgba(255,255,255,.9);
  margin-bottom: 2rem;
}
.hero__sub .divider { color: var(--olive); margin: 0 .5rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }

/* Compact page hero (interior pages) */
.page-hero {
  position: relative; color: var(--white);
  padding-block: clamp(5rem, 12vw, 9rem);
  display: flex; align-items: center; overflow: hidden;
}
.page-hero__media, .page-hero__media img, .page-hero__media video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.page-hero__overlay { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(46,46,46,.88), rgba(46,46,46,.6)); }
.page-hero__content { position: relative; z-index: 2; max-width: 760px; }
.page-hero h1 { color: var(--white); }
.page-hero .lede { color: var(--white); }

/* ============================================================
   SECTION HEADINGS
   ============================================================ */
.section-head { max-width: 720px; margin-bottom: 3rem; }
.section-head.center { margin-inline: auto; text-align: center; }

/* Intro split (image + text) */
.intro-split {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.intro-split.reverse .intro-split__media { order: 2; }
.intro-split__media img { border-radius: var(--radius); box-shadow: var(--shadow-md); width: 100%; }
@media (max-width: 860px) {
  .intro-split { grid-template-columns: 1fr; }
  .intro-split.reverse .intro-split__media { order: 0; }
}

/* ============================================================
   SERVICE / FEATURE GRID
   ============================================================ */
.card-grid { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 2rem 1.9rem;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.card__icon {
  width: 52px; height: 52px; border-radius: var(--radius);
  background: var(--olive-tint); color: var(--olive);
  display: grid; place-items: center; margin-bottom: 1.25rem;
}
.card__icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: .5rem; }
.card p { color: var(--charcoal-70); font-size: .97rem; margin: 0; }
.bg-sand .card, .bg-sky .card { background: var(--white); }

/* Numbered / process steps */
.steps { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); counter-reset: step; }
.step {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.75rem 1.4rem; position: relative; text-align: center;
}
.step__num {
  font-family: var(--font-display); font-size: 2.4rem; color: var(--olive);
  line-height: 1; margin-bottom: .4rem; display: block;
}
.step h3 { font-size: 1.15rem; margin: 0; }

/* ============================================================
   IMPACT / STATS + MAP
   ============================================================ */
.impact { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
@media (max-width: 860px) { .impact { grid-template-columns: 1fr; } }
.stats { display: flex; flex-wrap: wrap; gap: 2.5rem; }
.stat__num {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(2.8rem, 6vw, 4.5rem); color: var(--olive); line-height: 1;
}
.stat__label { font-size: 1rem; color: var(--charcoal-70); max-width: 200px; margin-top: .4rem; }
.bg-charcoal .stat__label { color: rgba(255,255,255,.75); }

.map-wrap { position: relative; }
.map-svg { width: 100%; height: auto; }
.map-region { fill: var(--sand); stroke: var(--gray); stroke-width: 1; transition: fill .3s; }
.map-dot { fill: var(--olive); }
.map-dot--future { fill: var(--gray); }
.map-legend { display: flex; gap: 1.5rem; flex-wrap: wrap; margin-top: 1.25rem; font-size: .9rem; color: var(--charcoal-70); }
.map-legend span { display: inline-flex; align-items: center; gap: .5rem; }
.map-legend .dot { width: 12px; height: 12px; border-radius: 50%; background: var(--olive); }
.map-legend .dot--future { background: var(--gray); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.reviews { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.review {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem 1.9rem; display: flex; flex-direction: column;
}
.review__stars { color: var(--olive); letter-spacing: .15em; margin-bottom: 1rem; font-size: 1.05rem; }
.review__text { font-size: 1.02rem; color: var(--charcoal-90); margin-bottom: 1.25rem; flex-grow: 1; }
.review__author { font-weight: 600; color: var(--charcoal); }
.review__source { font-size: .82rem; color: var(--charcoal-55); }

/* ============================================================
   CTA STRIP
   ============================================================ */
.cta-strip { text-align: center; }
.cta-strip h2 { max-width: 700px; margin-inline: auto; }
.cta-strip .lede { max-width: 620px; margin: 0 auto 2rem; }
.cta-strip__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Feature list (checkmark bullets) */
.feature-list { list-style: none; padding: 0; margin: 1.5rem 0 0; display: grid; gap: .85rem; }
.feature-list li { position: relative; padding-left: 2rem; color: var(--charcoal-90); }
.feature-list li::before {
  content: ""; position: absolute; left: 0; top: .35em;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--olive); mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/72% no-repeat;
}

/* Emphasis / philosophy lines */
.emphasis-lines { list-style: none; padding: 0; margin: 0; display: grid; gap: 1rem; }
.emphasis-lines li {
  font-family: var(--font-display); font-size: clamp(1.2rem, 2.4vw, 1.7rem);
  color: var(--charcoal); padding-left: 1.5rem; border-left: 3px solid var(--olive);
}

/* Pillars (About) */
.pillars { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.pillar { padding: 2rem; background: var(--white); border-top: 3px solid var(--olive); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.pillar h3 { font-size: 1.25rem; }
.pillar .tm { color: var(--olive); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--charcoal); color: rgba(255,255,255,.8); padding-block: clamp(3.5rem, 7vw, 5.5rem) 0; }
.footer-badges { display: flex; gap: 2rem; align-items: center; flex-wrap: wrap; padding-bottom: 2.5rem; margin-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,.14); }
.footer-badges img { max-height: 70px; width: auto; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 3rem; }
@media (max-width: 780px) { .footer-grid { grid-template-columns: 1fr; gap: 2.25rem; } }
.footer-logo img { max-height: 54px; width: auto; margin-bottom: 1.25rem; }
.footer-col h4 { color: var(--white); font-family: var(--font-body); font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 1.1rem; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .6rem; }
.footer-col a { color: rgba(255,255,255,.78); }
.footer-col a:hover { color: var(--olive); }
.footer-contact p { margin-bottom: .5rem; color: rgba(255,255,255,.78); }
.social-row { display: flex; gap: .9rem; margin-top: 1.25rem; }
.social-row a { width: 40px; height: 40px; border: 1px solid rgba(255,255,255,.24); border-radius: 50%; display: grid; place-items: center; color: rgba(255,255,255,.8); }
.social-row a:hover { background: var(--olive); border-color: var(--olive); color: var(--white); }
.social-row svg { width: 18px; height: 18px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.14); margin-top: 3rem; padding-block: 1.5rem; font-size: .85rem; color: rgba(255,255,255,.55); text-align: center; }

/* Get Started — two-column layout that stacks on mobile */
.gs-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
@media (max-width: 820px) {
  .gs-layout { grid-template-columns: 1fr; }
}

/* Get Started — form card */
.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-md);
}
@media (max-width: 820px) {
  .form-card { padding: clamp(1.25rem, 4vw, 1.75rem); }
}

/* ============================================================
   FLUENT FORMS — TCG BRAND STYLING
   ============================================================ */
.fluentform {
  --ff-primary: var(--deep-green);
}
.fluentform .ff-el-group { margin-bottom: 1.4rem; }

/* Labels */
.fluentform .ff-el-input--label label,
.fluentform .ff-el-input--label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .95rem;
  color: var(--charcoal);
  letter-spacing: .01em;
  margin-bottom: .5rem;
}
.fluentform .ff-el-is-required.asterisk-right label:after,
.fluentform .ff-el-is-required label .ff_required { color: var(--olive); }

/* Text inputs, selects, textarea */
.fluentform input[type="text"],
.fluentform input[type="email"],
.fluentform input[type="tel"],
.fluentform input[type="number"],
.fluentform input[type="url"],
.fluentform select,
.fluentform textarea,
.fluentform .ff-el-form-control {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--charcoal);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: .85rem 1rem;
  width: 100%;
  transition: border-color .2s ease, box-shadow .2s ease;
  box-shadow: none;
}
.fluentform input::placeholder,
.fluentform textarea::placeholder { color: var(--charcoal-55); }

/* Focus state */
.fluentform input:focus,
.fluentform select:focus,
.fluentform textarea:focus,
.fluentform .ff-el-form-control:focus {
  border-color: var(--olive);
  outline: none;
  box-shadow: 0 0 0 3px var(--olive-tint);
}

/* Phone field (country code + number) */
.fluentform .ff-el-input--content .iti { width: 100%; }

/* Safeguard: no field or row exceeds its container width */
.fluentform,
.fluentform .ff-t-container,
.fluentform .ff-el-group,
.fluentform .ff-el-input--content { max-width: 100%; }
.fluentform input,
.fluentform select,
.fluentform textarea { max-width: 100%; box-sizing: border-box; }

/* Textarea */
.fluentform textarea { min-height: 130px; resize: vertical; }

/* Submit button — match .btn (forced over Fluent Forms' default blue) */
.fluentform .ff-btn-submit,
.fluentform button[type="submit"],
.fluentform .ff_submit_btn_wrapper button,
.ff-el-group.ff-el-form-check button[type="submit"] {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .02em;
  padding: .95rem 2.2rem;
  border-radius: var(--radius);
  border: 2px solid var(--deep-green) !important;
  background: var(--deep-green) !important;
  background-image: none !important;
  color: var(--white) !important;
  cursor: pointer;
  transition: all .22s ease;
  line-height: 1;
}
.fluentform .ff-btn-submit:hover,
.fluentform button[type="submit"]:hover,
.fluentform .ff_submit_btn_wrapper button:hover {
  background: var(--olive) !important;
  border-color: var(--olive) !important;
  color: var(--white) !important;
  transform: translateY(-2px);
}

/* Validation errors */
.fluentform .error-text,
.fluentform .ff-el-is-error .text-danger { color: #b23b3b; font-size: .85rem; }
.fluentform .ff-el-is-error input,
.fluentform .ff-el-is-error textarea,
.fluentform .ff-el-is-error select { border-color: #b23b3b; }

/* Success message */
.ff-message-success,
.fluentform_success {
  background: var(--olive-tint);
  border: 1px solid var(--olive);
  border-radius: var(--radius);
  color: var(--charcoal);
  padding: 1.25rem 1.4rem;
  font-family: var(--font-body);
}

/* ============================================================
   CREDENTIAL STRIP
   ============================================================ */
.credential-strip {
  background: var(--charcoal);
  color: rgba(255,255,255,.9);
  border-bottom: 3px solid var(--olive);
}
.credential-strip__inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: .5rem 1.5rem;
  padding-block: .9rem;
  font-family: var(--font-body); font-size: .92rem; font-weight: 500;
  text-align: center;
}
.credential-strip__item { display: inline-flex; align-items: center; gap: .5rem; white-space: nowrap; }
.credential-strip__item svg { width: 16px; height: 16px; color: var(--olive); flex: 0 0 auto; }
.credential-strip__sep { color: rgba(255,255,255,.3); }
@media (max-width: 680px) {
  .credential-strip__sep { display: none; }
  .credential-strip__inner { gap: .6rem 1.25rem; font-size: .85rem; }
}

/* ============================================================
   PROJECT EXPERIENCE
   ============================================================ */
.experience-grid { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.experience-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem 1.9rem; border-left: 3px solid var(--olive);
}
.experience-card__meta {
  font-family: var(--font-body); font-weight: 600; font-size: .78rem;
  letter-spacing: .1em; text-transform: uppercase; color: var(--olive);
  margin-bottom: .35rem;
}
.experience-card__region { font-size: .85rem; color: var(--charcoal-55); margin-bottom: 1rem; font-weight: 500; }
.experience-card h3 { font-size: 1.15rem; margin-bottom: .6rem; }
.experience-card p { color: var(--charcoal-70); font-size: .97rem; margin: 0; }
.experience-note { margin-top: 2rem; font-size: .9rem; color: var(--charcoal-55); font-style: italic; }

/* ============================================================
   CREDENTIAL STRIP END — PROJECT SCOPE TABLE
   ============================================================ */
.project-scope__title { font-size: 1.4rem; margin-bottom: 1.25rem; }
.project-scope__list { list-style: none; padding: 0; margin: 0; }
.project-row {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 1rem 0; border-bottom: 1px solid var(--line);
}
.project-row:last-child { border-bottom: 0; }
.project-row__name { display: flex; flex-direction: column; }
.project-row__project { font-weight: 600; color: var(--charcoal); }
.project-row__loc { font-size: .9rem; color: var(--charcoal-55); }
.project-row__units {
  flex: 0 0 auto; font-family: var(--font-display); font-weight: 600;
  font-size: 1.15rem; color: var(--olive); white-space: nowrap;
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list { display: grid; gap: 1rem; }
.faq-item {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--white); overflow: hidden; transition: box-shadow .2s ease;
}
.faq-item[open] { box-shadow: var(--shadow-sm); border-color: transparent; }
.faq-q {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 1.35rem 1.6rem;
  font-family: var(--font-display); font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--charcoal); font-weight: 500;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-icon { position: relative; flex: 0 0 20px; width: 20px; height: 20px; }
.faq-icon::before, .faq-icon::after {
  content: ""; position: absolute; background: var(--olive);
  transition: transform .25s ease;
}
.faq-icon::before { top: 9px; left: 0; width: 20px; height: 2px; }
.faq-icon::after  { top: 0; left: 9px; width: 2px; height: 20px; }
.faq-item[open] .faq-icon::after { transform: scaleY(0); }
.faq-a { padding: 0 1.6rem 1.5rem; color: var(--charcoal-70); }
.faq-a p { margin: 0; }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .btn:hover, .card:hover { transform: none; }
}
