/* ============================================================
   VANTAGE PROJECT MANAGEMENT PLc — STYLESHEET
   ============================================================
   Structure
   ─────────
   1.  Design Tokens (CSS custom properties)
   2.  Reset & Base
   3.  Utilities
   4.  Skip Link
   5.  Navigation  (shared dark-theme navbar for main site)
   6.  Classic Nav  (light-theme nav for marketing pages)
   7.  Hero — Dark (responsive-layout / services site)
   8.  Hero — Light (construction-pm-site / marketing site)
   9.  Buttons
   10. Services Section  (dark)
   11. Services Section  (light)
   12. Image Carousel
   13. Contact Form
   14. About Section
   15. Leadership / Bio
   16. Testimonials
   17. Contact Strip
   18. Footer — Dark
   19. Footer — Light
   20. Scroll Reveal
   21. Animations & Motion
   ============================================================ */


/* ============================================================
   1. DESIGN TOKENS
   ============================================================ */
:root {

  /* ── Dark theme (responsive-layout / services pages) ── */
  --bg:          #0d0f12;
  --surface:     #151820;
  --surface-2:   #1d2130;
  --border:      rgba(255, 255, 255, 0.07);
  --text:        #e8e4dc;
  --muted:       #7a8091;
  --accent:      #e8b86d;
  --accent-dim:  rgba(232, 184, 109, 0.12);
  --error:       #f87171;
  --error-dim:   rgba(248, 113, 113, 0.12);
  --success:     #4ade80;
  --success-dim: rgba(74, 222, 128, 0.12);
  --radius:      6px;
  --transition:  220ms cubic-bezier(0.4, 0, 0.2, 1);

  /* ── Light / marketing theme (construction-pm-site) ── */
  --ink:        #0e1117;
  --bone:       #f4f0e8;
  --gold:       #c9a84c;
  --gold-light: #e8d5a0;
  --steel:      #2a3545;
  --steel-mid:  #3a4a5e;
  --mid:        #5a6478;
  --rule:       rgba(201, 168, 76, 0.25);

  /*
    Type scale — clamp(min, fluid, max).
    Fluid values are capped below 2.5 vw so text never blows
    up unexpectedly on landscape tablets.
  */
  --text-xs:   clamp(0.7rem,   1.2vw, 0.75rem);
  --text-sm:   clamp(0.82rem,  1.5vw, 0.9rem);
  --text-base: clamp(0.95rem,  1.8vw, 1rem);
  --text-lg:   clamp(1.05rem,  2.2vw, 1.25rem);
  --text-xl:   clamp(1.3rem,   3vw,   2rem);
  --text-2xl:  clamp(1.75rem,  4.5vw, 3.5rem);
  --text-3xl:  clamp(2.4rem,   6vw,   5rem);

  /*
    Spacing scale — minimums are generous so content never
    feels cramped at 320 px.
  */
  --space-xs:  clamp(0.5rem,   1.5vw, 0.75rem);
  --space-sm:  clamp(0.75rem,  2vw,   1rem);
  --space-md:  clamp(1rem,     2.5vw, 1.5rem);
  --space-lg:  clamp(1.25rem,  3vw,   2.5rem);
  --space-xl:  clamp(2rem,     5vw,   5rem);
  --space-2xl: clamp(3.5rem,   7vw,   8rem);

  /* Section horizontal padding — safe at all viewport widths */
  --section-px: clamp(1.25rem, 5vw, 5rem);

  /* Navbar heights (overridden at 768 px+) */
  --navbar-h: 5rem;
  --nav-h:    5.5rem;
}

@media (min-width: 768px) {
  :root {
    --navbar-h: 6rem;
    --nav-h:    6rem;
  }
}


/* ============================================================
   2. RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin:  0;
  padding: 0;
}

html {
  scroll-behavior: auto;           /* JS handles offset; keep auto */
  -webkit-text-size-adjust: 100%;
      text-size-adjust: 100%;
}

body {
  font-family: 'Instrument Sans', 'DM Sans', system-ui, sans-serif;
  font-size:   var(--text-base);
  line-height: 1.7;
  overflow-x:  hidden;
  padding-bottom: env(safe-area-inset-bottom);
}

/* Marketing / light pages */
body.theme-light {
  background: var(--bone);
  color:      var(--ink);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
}

/* App / dark pages */
body.theme-dark {
  background-color: var(--bg);
  color:            var(--text);
  font-family: 'Instrument Sans', system-ui, sans-serif;
}

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

a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }


/* ============================================================
   3. UTILITIES
   ============================================================ */

/* Accessible hide — visible to screen readers only */
.visually-hidden {
  position:    absolute;
  width:       1px;
  height:      1px;
  padding:     0;
  margin:     -1px;
  overflow:    hidden;
  clip:        rect(0, 0, 0, 0);
  white-space: nowrap;
  border:      0;
}

/* Centred max-width wrapper */
.container {
  width:         100%;
  max-width:     1200px;
  margin-left:   auto;
  margin-right:  auto;
  padding-left:  var(--space-md);
  padding-right: var(--space-md);
}

/* Dark-theme eyebrow label with leading rule */
.eyebrow {
  display:        inline-flex;
  align-items:    center;
  gap:            0.6em;
  font-size:      var(--text-xs);
  font-weight:    600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color:          var(--accent);
}
.eyebrow::before {
  content:    '';
  display:    block;
  width:      1.8em;
  height:     1px;
  background: currentColor;
  flex-shrink: 0;
}
.eyebrow--spaced { margin-bottom: var(--space-sm); }

/* Light-theme section label */
.section-label {
  font-family:    'DM Mono', monospace;
  font-size:      var(--text-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color:          var(--gold);
  margin-bottom:  1rem;
  display:        flex;
  align-items:    center;
  gap:            0.8rem;
}
.section-label::after {
  content:    '';
  flex:       1;
  height:     1px;
  background: var(--rule);
  max-width:  3rem;
}

/* Section heading */
.section-title {
  font-family:   'Playfair Display', serif;
  font-size:     var(--text-2xl);
  font-weight:   700;
  color:         var(--steel);
  line-height:   1.2;
  margin-bottom: 1rem;
}

.section-body {
  color:       var(--mid);
  font-size:   var(--text-base);
  line-height: 1.85;
  max-width:   60ch;
}

/* Gold divider rule */
.gold-rule {
  width:      3rem;
  height:     2px;
  background: var(--gold);
  margin:     2rem 0;
}

/* Reveal stagger delays */
.reveal--d1 { transition-delay: 0.05s; }
.reveal--d2 { transition-delay: 0.10s; }
.reveal--d3 { transition-delay: 0.15s; }
.reveal--d4 { transition-delay: 0.20s; }
.reveal--d5 { transition-delay: 0.25s; }
.reveal--d6 { transition-delay: 0.30s; }

/* Misc text helpers */
.text-muted-sm {
  color:     var(--muted);
  font-size: var(--text-sm);
}

/* Form helpers */
.field-footer {
  display:         flex;
  justify-content: space-between;
  align-items:     center;
}
.form-note { font-size: var(--text-xs); color: var(--muted); }
.form-note .required { color: var(--accent); }

/* Standard padding for main content sections */
.section {
  padding-top:    var(--space-2xl);
  padding-bottom: var(--space-2xl);
  padding-left:   var(--section-px);
  padding-right:  var(--section-px);
}
@media (max-width: 600px) {
  .section {
    padding-top:    var(--space-xl);
    padding-bottom: var(--space-xl);
  }
}


/* ============================================================
   4. SKIP LINK
   ============================================================ */
.skip-link {
  position:      absolute;
  top:          -100%;
  left:          var(--space-md);
  padding:       0.6rem 1rem;
  background:    var(--accent);
  color:         var(--bg);
  font-weight:   600;
  font-size:     var(--text-sm);
  z-index:       9999;
  border-radius: var(--radius);
  transition:    top 0.2s;
}
.skip-link:focus { top: var(--space-sm); }

/* Light-theme skip link override */
.theme-light .skip-link {
  background: var(--gold);
  color:      var(--steel);
}


/* ============================================================
   5. NAVIGATION — dark theme (Instrument Sans / Fraunces)
   Used by: responsive-layout / services pages
   ============================================================ */
.navbar {
  position:                fixed;
  top:    0;
  left:   0;
  right:  0;
  z-index: 100;
  background:              rgba(13, 15, 18, 0.88);
  backdrop-filter:         blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  border-bottom:           1px solid var(--border);
  transition:              box-shadow 0.3s ease;
}
.navbar.is-scrolled { box-shadow: 0 4px 28px rgba(0, 0, 0, 0.45); }

.navbar__inner {
  display:         flex;
  align-items:     center;
  justify-content: space-between;
  height:          var(--navbar-h);
}

.navbar__logo {
  display:        flex;
  align-items:    center;
  gap:            0.6rem;
  font-family:    'Fraunces', serif;
  font-weight:    700;
  font-size:      var(--text-lg);
  color:          var(--text);
  letter-spacing: -0.02em;
}
.navbar__logo-mark {
  width:         2rem;
  height:        2rem;
  background:    var(--accent);
  border-radius: 50%;
  display:       grid;
  place-items:   center;
  flex-shrink:   0;
}
.navbar__logo-mark svg { width: 1rem; height: 1rem; fill: var(--bg); }

/* Hamburger button */
.navbar__toggle {
  display:         flex;
  flex-direction:  column;
  justify-content: center;
  gap:             5px;
  width:           2.25rem;
  height:          2.25rem;
  background:      none;
  border:          1px solid var(--border);
  border-radius:   var(--radius);
  cursor:          pointer;
  padding:         0.35rem 0.5rem;
  transition:      border-color var(--transition);
}
.navbar__toggle:hover,
.navbar__toggle:focus-visible {
  border-color: var(--accent);
  outline:      none;
}
.navbar__toggle span {
  display:          block;
  width:            100%;
  height:           1.5px;
  background:       var(--text);
  border-radius:    2px;
  transition:       transform var(--transition), opacity var(--transition);
  transform-origin: center;
}
.navbar__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px)  rotate(45deg);  }
.navbar__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.navbar__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile drawer */
.navbar__menu {
  position:      absolute;
  top:           100%;
  left:          0;
  right:         0;
  background:    var(--surface);
  border-bottom: 1px solid var(--border);
  padding:       var(--space-sm) var(--space-md) var(--space-md);
  display:       grid;
  grid-template-rows: 0fr;
  transition:    grid-template-rows 0.3s ease;
  overflow:      hidden;
}
.navbar__menu[data-open="true"] { grid-template-rows: 1fr; }
.navbar__menu-inner { overflow: hidden; min-height: 0; }

.navbar__links {
  display:        flex;
  flex-direction: column;
  gap:            0.2rem;
  padding-top:    var(--space-sm);
}
.navbar__links a {
  display:        block;
  padding:        0.6rem 0.5rem;
  font-size:      var(--text-sm);
  font-weight:    500;
  color:          var(--muted);
  border-radius:  var(--radius);
  position:       relative;
  transition:     color var(--transition), background var(--transition);
}
.navbar__links a:hover,
.navbar__links a:focus-visible {
  color:      var(--text);
  background: var(--accent-dim);
  outline:    none;
}
.navbar__links a.is-active { color: var(--accent); }
.navbar__links a.is-active::after {
  content:       '';
  position:      absolute;
  bottom:        0;
  left:          0.5rem;
  right:         0.5rem;
  height:        2px;
  background:    var(--accent);
  border-radius: 1px;
}

.navbar__cta {
  display:       inline-block;
  margin-top:    var(--space-sm);
  padding:       0.65rem 1.4rem;
  background:    var(--accent);
  color:         var(--bg);
  font-size:     var(--text-sm);
  font-weight:   600;
  border-radius: var(--radius);
  transition:    opacity var(--transition), transform var(--transition);
}
.navbar__cta:hover { opacity: 0.88; transform: translateY(-1px); }

@media (min-width: 768px) {
  .navbar__toggle { display: none; }
  .navbar__menu {
    position:      static;
    display:       flex;
    align-items:   center;
    background:    none;
    border-bottom: none;
    padding:       0;
    grid-template-rows: none;
    overflow:      visible;
  }
  .navbar__menu-inner {
    overflow:    visible;
    min-height:  auto;
    display:     flex;
    align-items: center;
  }
  .navbar__links {
    flex-direction: row;
    align-items:    center;
    gap:            0.25rem;
    padding-top:    0;
  }
  .navbar__links a { padding: 0.45rem 0.75rem; }
  .navbar__links a.is-active::after { bottom: -2px; left: 0.75rem; right: 0.75rem; }
  .navbar__cta { margin-top: 0; margin-left: var(--space-sm); }
}


/* ============================================================
   LOGO IMAGE RULES
   The PNG has a white background.
   · Light navbars/pages  — white bg blends naturally.
   · Dark navbars/footers — mix-blend-mode:multiply removes
     the white so the dark surface shows through, and a
     brightness filter lifts the image so it reads clearly.
   ============================================================ */

/* ── Logo SVG — all placements ─────────────────────────────
   The proposed logo is an SVG built in the site's own colours.
   Transparent background, scales perfectly at any size.
   Same file used everywhere — colours work on both themes.
─────────────────────────────────────────────────────────── */

/* Dark navbar (index.html) */
.navbar__logo        { display: flex; align-items: center; }
.navbar__logo-img {
  height:     72px;
  width:      auto;
  display:    block;
  transition: opacity 0.2s;
}
.navbar__logo-img:hover { opacity: 0.8; }

/* Dark footer (index.html) */
.footer__logo        { display: block; }
.footer__logo-img {
  height:        88px;
  width:         auto;
  display:       block;
  margin-bottom: var(--space-sm);
}

/* Light navbar (marketing.html) */
.nav__logo-link {
  display:     flex;
  align-items: center;
  flex-shrink: 0;
  max-width:   calc(100% - 3.5rem);
}
.nav__logo-img {
  height:     72px;
  width:      auto;
  display:    block;
  transition: opacity 0.2s;
}
.nav__logo-img:hover { opacity: 0.85; }

/* Light page footer */
.footer__logo-img--light {
  height:        88px;
  width:         auto;
  display:       block;
  margin-bottom: var(--space-sm);
}


/* ============================================================
   6. NAVIGATION — light theme (DM Mono / DM Sans)
   Used by: construction-pm-site / marketing pages
   ============================================================ */
.nav {
  position:                fixed;
  top: 0; left: 0; right: 0;
  z-index:                 100;
  display:                 flex;
  align-items:             center;
  justify-content:         space-between;
  height:                  var(--nav-h);
  padding:                 0 var(--section-px);
  background:              rgba(244, 240, 232, 0.94);
  backdrop-filter:         blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom:           1px solid var(--rule);
}

.nav__logo {
  font-family:     'DM Mono', monospace;
  font-size:       var(--text-xs);
  letter-spacing:  0.18em;
  text-transform:  uppercase;
  color:           var(--gold);
  white-space:     nowrap;
  overflow:        hidden;
  text-overflow:   ellipsis;
  max-width:       calc(100% - 3.5rem);
}

/* Desktop links */
.nav__links {
  display: none;
  gap:     2.5rem;
}
.nav__links a {
  font-size:      var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color:          var(--mid);
  transition:     color var(--transition);
}
.nav__links a:hover { color: var(--ink); }

/* Hamburger */
.nav__toggle {
  display:         flex;
  flex-direction:  column;
  justify-content: center;
  gap:             5px;
  width:           2.25rem;
  height:          2.25rem;
  background:      none;
  border:          1px solid var(--rule);
  cursor:          pointer;
  padding:         0.4rem 0.5rem;
  flex-shrink:     0;
  transition:      border-color var(--transition);
}
.nav__toggle:hover,
.nav__toggle:focus-visible { border-color: var(--gold); outline: none; }
.nav__toggle span {
  display:          block;
  width:            100%;
  height:           1.5px;
  background:       var(--steel);
  border-radius:    1px;
  transition:       transform var(--transition), opacity var(--transition);
  transform-origin: center;
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px)  rotate(45deg);  }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile drawer */
.nav__drawer {
  position:      absolute;
  top:           100%;
  left:          0;
  right:         0;
  background:    rgba(244, 240, 232, 0.98);
  border-bottom: 1px solid var(--rule);
  display:       grid;
  grid-template-rows: 0fr;
  transition:    grid-template-rows 0.28s ease;
  overflow:      hidden;
}
.nav__drawer[data-open="true"] { grid-template-rows: 1fr; }
.nav__drawer-inner  { overflow: hidden; min-height: 0; }
.nav__drawer-links {
  display:        flex;
  flex-direction: column;
  padding:        var(--space-sm) var(--section-px) var(--space-md);
  gap:            0.25rem;
}
.nav__drawer-links a {
  display:        block;
  padding:        0.65rem 0.5rem;
  font-size:      var(--text-sm);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color:          var(--mid);
  border-bottom:  1px solid var(--rule);
  transition:     color var(--transition);
}
.nav__drawer-links a:last-child { border-bottom: none; }
.nav__drawer-links a:hover { color: var(--gold); }

@media (min-width: 768px) {
  .nav__toggle { display: none; }
  .nav__drawer { display: none; }
  .nav__links  { display: flex; }
}


/* ============================================================
   7. HERO — DARK (responsive-layout / services pages)
   ============================================================ */
.hero {
  padding-top: var(--navbar-h);
  min-height:  100vh;
  min-height:  100dvh;
  display:     grid;
  grid-template-rows: 1fr auto;
  position:    relative;
  overflow:    hidden;
}

.hero__bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index:  0;
}
.hero__bg img {
  width:           100%;
  height:          100%;
  object-fit:      cover;
  object-position: center 30%;
}
.hero__bg::after {
  content:  '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    linear-gradient(to top,  rgba(13, 15, 18, 0.98)  0%,
                              rgba(13, 15, 18, 0.6)  40%,
                              transparent            70%),
    linear-gradient(to right, rgba(13, 15, 18, 0.7)  0%,
                              transparent            60%);
}

.hero__content {
  position:       relative;
  z-index:        1;
  align-self:     end;
  padding-top:    var(--space-xl);
  padding-bottom: var(--space-2xl);
}

.hero__eyebrow    { margin-bottom: var(--space-md); }

.hero__heading {
  font-family:    'Fraunces', serif;
  font-size:      var(--text-3xl);
  font-weight:    900;
  line-height:    1.05;
  letter-spacing: -0.03em;
  color:          var(--text);
  margin-bottom:  var(--space-md);
  max-width:      16ch;
}
.hero__heading em { font-style: italic; font-weight: 300; color: var(--accent); }

.hero__description {
  font-size:     var(--text-lg);
  color:         var(--muted);
  max-width:     46ch;
  line-height:   1.75;
  margin-bottom: var(--space-lg);
}

.hero__actions {
  display:     flex;
  flex-wrap:   wrap;
  gap:         var(--space-sm);
  align-items: center;
}

/* Scroll cue — hidden on small screens */
.hero__scroll { display: none; }
@media (min-width: 480px) {
  .hero__scroll {
    display:        flex;
    position:       absolute;
    bottom:         var(--space-lg);
    left:           50%;
    transform:      translateX(-50%);
    z-index:        1;
    flex-direction: column;
    align-items:    center;
    gap:            0.4rem;
    font-size:      var(--text-xs);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color:          var(--muted);
    animation:      float 2.6s ease-in-out infinite;
    white-space:    nowrap;
  }
  .hero__scroll::after {
    content:    '';
    display:    block;
    width:      1px;
    height:     2.5rem;
    background: linear-gradient(to bottom, var(--muted), transparent);
  }
}

/* Stats strip */
.hero__stats {
  position:       relative;
  z-index:        1;
  border-top:     1px solid var(--border);
  padding-top:    var(--space-md);
  padding-bottom: var(--space-md);
}
.hero__stats-inner {
  display:               grid;
  grid-template-columns: repeat(2, 1fr);
  gap:                   1px;
  background:            var(--border);
  border:                1px solid var(--border);
  border-radius:         var(--radius);
  overflow:              hidden;
}
@media (min-width: 540px) {
  .hero__stats-inner { grid-template-columns: repeat(4, 1fr); }
  .stat { padding: var(--space-md) var(--space-lg); }
}

.stat {
  background:      rgba(13, 15, 18, 0.72);
  backdrop-filter: blur(8px);
  padding:         var(--space-sm) var(--space-md);
  text-align:      center;
}
.stat__number {
  font-family:   'Fraunces', serif;
  font-size:     var(--text-2xl);
  font-weight:   700;
  color:         var(--accent);
  line-height:   1;
  margin-bottom: 0.3rem;
}
.stat__number sup { font-size: 0.48em; }
.stat__label {
  font-size:      var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color:          var(--muted);
}


/* ============================================================
   8. HERO — LIGHT (construction-pm-site / marketing pages)
   ============================================================ */
.hero-mkt {
  padding-top:            var(--nav-h);
  display:                grid;
  grid-template-columns:  1fr;
  position:               relative;
  overflow:               hidden;
}
.hero-mkt::before {
  content:  '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    repeating-linear-gradient(0deg,   transparent, transparent 79px, var(--rule) 80px),
    repeating-linear-gradient(90deg,  transparent, transparent 79px, var(--rule) 80px);
  pointer-events: none;
}

.hero__left {
  padding:         var(--space-xl) var(--section-px) var(--space-lg);
  padding-top:     clamp(3rem, 8vw, 6rem);
  display:         flex;
  flex-direction:  column;
  justify-content: center;
  position:        relative;
  z-index:         1;
}

.hero__eyebrow-mkt {
  font-family:    'DM Mono', monospace;
  font-size:      var(--text-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color:          var(--gold);
  margin-bottom:  1.8rem;
  display:        flex;
  align-items:    center;
  gap:            1rem;
}
.hero__eyebrow-mkt::before {
  content:     '';
  display:     inline-block;
  width:       2.5rem;
  height:      1px;
  background:  var(--gold);
  flex-shrink: 0;
}

.hero__headline {
  font-family:    'Playfair Display', serif;
  font-size:      var(--text-3xl);
  font-weight:    900;
  line-height:    1.08;
  color:          var(--steel);
  margin-bottom:  2rem;
}
.hero__headline em { font-style: italic; color: var(--gold); }

.hero__sub {
  font-size:     var(--text-base);
  color:         var(--mid);
  max-width:     42ch;
  width:         100%;
  margin-bottom: 3rem;
  line-height:   1.8;
}

.hero__cta-row {
  display:     flex;
  flex-wrap:   wrap;
  gap:         1.2rem;
  align-items: center;
}

.hero__right {
  position:        relative;
  z-index:         1;
  display:         flex;
  align-items:     center;
  justify-content: center;
  padding:         var(--space-lg) var(--section-px);
}

.hero__stat-block {
  display:               grid;
  grid-template-columns: 1fr 1fr;
  gap:                   2px;
  width:                 100%;
  max-width:             400px;
}

.stat-card {
  background: var(--steel);
  padding:    clamp(1.5rem, 4vw, 2.5rem) clamp(1.2rem, 3vw, 2rem);
  color:      var(--bone);
}
.stat-card:nth-child(2) { background: var(--gold);      color: var(--steel); }
.stat-card:nth-child(3) { background: var(--steel-mid); }
.stat-card:nth-child(4) { background: var(--ink);       }

.stat-num {
  font-family:   'Playfair Display', serif;
  font-size:     clamp(2rem, 5vw, 3rem);
  font-weight:   700;
  line-height:   1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size:      var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity:        0.75;
}

@media (min-width: 768px) {
  .hero-mkt {
    grid-template-columns: 1fr 1fr;
    min-height:            100vh;
  }
  .hero__left {
    padding: clamp(4rem, 8vw, 6rem) clamp(2rem, 5vw, 4rem) 4rem clamp(2rem, 5vw, 5rem);
  }
  .hero__right {
    padding: 4rem clamp(2rem, 4vw, 3rem);
  }
}


/* ============================================================
   9. BUTTONS
   ============================================================ */

/* Dark-theme buttons */
.btn {
  display:       inline-flex;
  align-items:   center;
  gap:           0.5em;
  padding:       0.8rem 1.6rem;
  font-family:   inherit;
  font-size:     var(--text-sm);
  font-weight:   600;
  border-radius: var(--radius);
  cursor:        pointer;
  border:        none;
  transition:    transform var(--transition),
                 opacity var(--transition),
                 background var(--transition),
                 border-color var(--transition),
                 color var(--transition);
}
.btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.btn--primary { background: var(--accent); color: var(--bg); }
.btn--primary:hover { opacity: 0.88; transform: translateY(-2px); }
.btn--ghost {
  background: transparent;
  color:      var(--text);
  border:     1px solid var(--border);
}
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

/* Light-theme buttons */
.btn-primary {
  display:        inline-block;
  background:     var(--steel);
  color:          var(--bone);
  padding:        0.9rem 2.2rem;
  font-size:      var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space:    nowrap;
  transition:     background var(--transition), transform 0.15s;
}
.btn-primary:hover { background: var(--gold); transform: translateY(-2px); }

.btn-ghost {
  display:        inline-block;
  font-size:      var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color:          var(--mid);
  border-bottom:  1px solid var(--rule);
  padding-bottom: 2px;
  white-space:    nowrap;
  transition:     color var(--transition), border-color var(--transition);
}
.btn-ghost:hover { color: var(--gold); border-color: var(--gold); }


/* ============================================================
   10. SERVICES — DARK (responsive-layout)
   ============================================================ */
.services {
  padding-top:    var(--space-2xl);
  padding-bottom: var(--space-2xl);
}

.services__header {
  margin-bottom: var(--space-xl);
  max-width:     640px;
}
.services__eyebrow { margin-bottom: var(--space-sm); }
.services__heading {
  font-family:    'Fraunces', serif;
  font-size:      var(--text-2xl);
  font-weight:    700;
  line-height:    1.15;
  letter-spacing: -0.02em;
  color:          var(--text);
  margin-bottom:  var(--space-sm);
}
.services__intro { font-size: var(--text-base); color: var(--muted); line-height: 1.8; }

.services__grid {
  display:               grid;
  grid-template-columns: 1fr;
  gap:                   1px;
  background:            var(--border);
  border:                1px solid var(--border);
  border-radius:         calc(var(--radius) + 2px);
  overflow:              hidden;
}
@media (min-width: 560px) { .services__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .services__grid { grid-template-columns: repeat(3, 1fr); } }

.card {
  background:     var(--surface);
  padding:        var(--space-lg) var(--space-md);
  display:        flex;
  flex-direction: column;
  gap:            var(--space-sm);
  transition:     background var(--transition);
  position:       relative;
  overflow:       hidden;
}
.card::before {
  content:    '';
  position:   absolute;
  top:        0; left: 0; right: 0;
  height:     2px;
  background: linear-gradient(to right, var(--accent), transparent);
  opacity:    0;
  transition: opacity var(--transition);
}
.card:hover { background: var(--surface-2); }
.card:hover::before { opacity: 1; }

.card__icon {
  width:         2.75rem;
  height:        2.75rem;
  background:    var(--accent-dim);
  border-radius: var(--radius);
  display:       grid;
  place-items:   center;
  flex-shrink:   0;
}
.card__icon svg {
  width:           1.3rem;
  height:          1.3rem;
  stroke:          var(--accent);
  fill:            none;
  stroke-width:    1.8;
  stroke-linecap:  round;
  stroke-linejoin: round;
}
.card__number { font-family: 'Fraunces', serif; font-size: 0.65rem; letter-spacing: 0.15em; color: var(--muted); text-transform: uppercase; }
.card__title  { font-family: 'Fraunces', serif; font-size: var(--text-lg); font-weight: 700; color: var(--text); line-height: 1.3; }
.card__description { font-size: var(--text-sm); color: var(--muted); line-height: 1.8; flex: 1; }
.card__tag {
  align-self:     flex-start;
  padding:        0.3rem 0.7rem;
  font-size:      0.65rem;
  font-weight:    600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color:          var(--accent);
  border:         1px solid rgba(232, 184, 109, 0.25);
  border-radius:  calc(var(--radius) - 2px);
}
.card--featured {
  background:  linear-gradient(135deg, var(--surface-2) 0%, rgba(232, 184, 109, 0.06) 100%);
  grid-column: 1 / -1;
}
@media (min-width: 960px) {
  .card--featured {
    grid-column: span 1;
    background:  linear-gradient(160deg, var(--surface-2) 0%, rgba(232, 184, 109, 0.08) 100%);
  }
}


/* ============================================================
   11. SERVICES — LIGHT (construction-pm-site)
   ============================================================ */
.services-section          { background: var(--steel); color: var(--bone); }
.services-section .section-label { color: var(--gold-light); }
.services-section .section-title { color: var(--bone); }
.services-section .section-body  { color: rgba(244, 240, 232, 0.65); }

.services-intro {
  display:               grid;
  grid-template-columns: 1fr;
  gap:                   var(--space-md);
  align-items:           end;
  margin-bottom:         var(--space-xl);
}
@media (min-width: 768px) {
  .services-intro { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

.services-grid {
  display:               grid;
  grid-template-columns: 1fr;
  gap:                   2px;
}
@media (min-width: 560px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  background:     rgba(255, 255, 255, 0.04);
  border:         1px solid rgba(255, 255, 255, 0.07);
  padding:        clamp(1.5rem, 4vw, 2.5rem) clamp(1.2rem, 3vw, 2rem);
  transition:     background var(--transition), transform 0.2s;
  cursor:         default;
  display:        flex;
  flex-direction: column;
}
.service-card:hover { background: rgba(201, 168, 76, 0.1); transform: translateY(-4px); }

.service-num {
  font-family:    'DM Mono', monospace;
  font-size:      var(--text-xs);
  letter-spacing: 0.15em;
  color:          var(--gold);
  margin-bottom:  1.2rem;
}
.service-title {
  font-family:   'Playfair Display', serif;
  font-size:     var(--text-lg);
  font-weight:   700;
  color:         var(--bone);
  margin-bottom: 1rem;
  line-height:   1.3;
}
.service-desc {
  font-size:   var(--text-sm);
  color:       rgba(244, 240, 232, 0.6);
  line-height: 1.75;
  flex:        1;
}
.service-tag {
  display:        inline-block;
  margin-top:     1.5rem;
  font-family:    'DM Mono', monospace;
  font-size:      var(--text-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color:          var(--gold);
  border:         1px solid rgba(201, 168, 76, 0.3);
  padding:        0.3rem 0.7rem;
  align-self:     flex-start;
}


/* ============================================================
   12. IMAGE CAROUSEL
   ============================================================ */
.carousel-section {
  padding-top:    var(--space-2xl);
  padding-bottom: var(--space-2xl);
  background:     var(--surface);
}

.carousel {
  position:      relative;
  overflow:      hidden;
  border-radius: var(--radius);
  background:    var(--bg);
  touch-action:  pan-y;
  user-select:   none;
  -webkit-user-select: none;
}

.carousel__track {
  display:     flex;
  transition:  transform 0.52s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.carousel__track.no-transition { transition: none; }

.carousel__slide {
  flex:        0 0 100%;
  position:    relative;
  min-height:  220px;
  aspect-ratio: 16 / 8;
  overflow:    hidden;
}
@media (min-width: 480px) { .carousel__slide { min-height: 260px; aspect-ratio: 16 / 7; } }
@media (min-width: 768px) { .carousel__slide { min-height: 320px; aspect-ratio: 21 / 7; } }

.carousel__slide img { width: 100%; height: 100%; object-fit: cover; pointer-events: none; }

.carousel__caption {
  position:   absolute;
  bottom:     0; left: 0; right: 0;
  padding:    var(--space-lg) var(--space-md);
  background: linear-gradient(to top, rgba(13, 15, 18, 0.92) 0%, transparent 100%);
}
.carousel__caption-title {
  font-family:   'Fraunces', serif;
  font-size:     var(--text-lg);
  font-weight:   700;
  color:         var(--text);
  margin-bottom: 0.3rem;
}
.carousel__caption-sub { font-size: var(--text-sm); color: var(--muted); }

.carousel__btn {
  position:                absolute;
  top:                     50%;
  transform:               translateY(-50%);
  z-index:                 10;
  width:                   2.8rem;
  height:                  2.8rem;
  background:              rgba(13, 15, 18, 0.7);
  border:                  1px solid var(--border);
  border-radius:           50%;
  display:                 grid;
  place-items:             center;
  cursor:                  pointer;
  backdrop-filter:         blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition:              background var(--transition),
                           border-color var(--transition),
                           transform var(--transition);
}
.carousel__btn:hover { background: var(--accent); border-color: var(--accent); transform: translateY(-50%) scale(1.08); }
.carousel__btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; transform: translateY(-50%); }
.carousel__btn svg {
  width:           1.1rem;
  height:          1.1rem;
  stroke:          var(--text);
  fill:            none;
  stroke-width:    2.2;
  stroke-linecap:  round;
  stroke-linejoin: round;
  pointer-events:  none;
}
.carousel__btn:hover svg { stroke: var(--bg); }
.carousel__btn--prev { left:  var(--space-sm); }
.carousel__btn--next { right: var(--space-sm); }

.carousel__dots {
  display:         flex;
  justify-content: center;
  align-items:     center;
  gap:             0.5rem;
  padding-top:     var(--space-md);
}
.carousel__dot {
  width:         0.5rem;
  height:        0.5rem;
  border-radius: 50%;
  background:    var(--muted);
  border:        none;
  cursor:        pointer;
  padding:       0;
  transition:    background var(--transition), width var(--transition);
}
.carousel__dot.is-active { background: var(--accent); width: 1.6rem; border-radius: 3px; }
.carousel__dot:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

.carousel__progress {
  position:   absolute;
  top:        0;
  left:       0;
  height:     2px;
  width:      0%;
  background: var(--accent);
  z-index:    10;
  transition: width linear;
}


/* ============================================================
   13. CONTACT FORM
   ============================================================ */
.contact {
  padding-top:    var(--space-2xl);
  padding-bottom: var(--space-2xl);
}

.contact__grid {
  display:               grid;
  grid-template-columns: 1fr;
  gap:                   var(--space-xl);
  align-items:           start;
}
@media (min-width: 768px) { .contact__grid { grid-template-columns: 1fr 1.5fr; } }

.contact__info-heading {
  font-family:    'Fraunces', serif;
  font-size:      var(--text-2xl);
  font-weight:    700;
  line-height:    1.15;
  letter-spacing: -0.02em;
  color:          var(--text);
  margin-bottom:  var(--space-sm);
}
.contact__info-body { font-size: var(--text-base); color: var(--muted); line-height: 1.8; margin-bottom: var(--space-lg); }

.contact__detail { display: flex; flex-direction: column; gap: var(--space-sm); }
.contact__detail-item {
  display:     flex;
  align-items: center;
  gap:         var(--space-sm);
  font-size:   var(--text-sm);
  color:       var(--muted);
}
.contact__detail-item svg {
  width:           1.1rem;
  height:          1.1rem;
  stroke:          var(--accent);
  fill:            none;
  stroke-width:    1.8;
  stroke-linecap:  round;
  stroke-linejoin: round;
  flex-shrink:     0;
}

.form-card {
  background:    var(--surface);
  border:        1px solid var(--border);
  border-radius: calc(var(--radius) + 2px);
  padding:       var(--space-lg);
}

.form-row { display: grid; grid-template-columns: 1fr; gap: var(--space-md); }
@media (min-width: 600px) { .form-row { grid-template-columns: 1fr 1fr; } }

.form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-field--full { grid-column: 1 / -1; }

.form-label {
  font-size:      var(--text-xs);
  font-weight:    600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color:          var(--muted);
}
.form-label .required { color: var(--accent); margin-left: 0.2em; }

.form-input,
.form-select,
.form-textarea {
  width:              100%;
  background:         var(--bg);
  color:              var(--text);
  border:             1px solid var(--border);
  border-radius:      var(--radius);
  padding:            0.7rem 0.9rem;
  font-family:        inherit;
  font-size:          var(--text-sm);
  outline:            none;
  appearance:         none;
  -webkit-appearance: none;
  transition:         border-color var(--transition), box-shadow var(--transition);
}
.form-input::placeholder,
.form-textarea::placeholder { color: rgba(122, 128, 145, 0.5); }
.form-input:focus,
.form-select:focus,
.form-textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-dim); }
.form-input.is-invalid,
.form-select.is-invalid,
.form-textarea.is-invalid { border-color: var(--error); box-shadow: 0 0 0 3px var(--error-dim); }
.form-input.is-valid,
.form-select.is-valid,
.form-textarea.is-valid  { border-color: var(--success); box-shadow: 0 0 0 3px var(--success-dim); }

.form-select {
  background-image:    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%237a8091' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat:   no-repeat;
  background-position: right 0.75rem center;
  padding-right:       2.5rem;
}
.form-select option { color: var(--text); background: var(--bg); }
.form-textarea { resize: vertical; min-height: 130px; }

.form-message { display: none; align-items: center; gap: 0.3em; margin-top: 0.2rem; font-size: var(--text-xs); color: var(--error); }
.form-message.is-visible { display: flex; }

.form-counter { font-size: var(--text-xs); color: var(--muted); text-align: right; margin-top: 0.2rem; }
.form-counter.is-warn { color: var(--error); }

.form-check { display: flex; align-items: flex-start; gap: 0.6rem; cursor: pointer; }
.form-check input[type="checkbox"] {
  appearance:         none;
  -webkit-appearance: none;
  width:         1.1rem;
  height:        1.1rem;
  border:        1px solid var(--border);
  border-radius: 3px;
  background:    var(--bg);
  cursor:        pointer;
  flex-shrink:   0;
  margin-top:    0.15rem;
  transition:    background var(--transition), border-color var(--transition);
}
.form-check input[type="checkbox"]:checked {
  background:          var(--accent);
  border-color:        var(--accent);
  background-image:    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 12 12'%3E%3Cpath fill='%230d0f12' d='M2 6l3 3 5-5'/%3E%3C/svg%3E");
  background-repeat:   no-repeat;
  background-position: center;
}
.form-check input[type="checkbox"]:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.form-check label { font-size: var(--text-sm); color: var(--muted); cursor: pointer; }
.form-check a { color: var(--accent); border-bottom: 1px solid rgba(232, 184, 109, 0.3); }

.form-submit-row {
  display:         flex;
  align-items:     center;
  justify-content: space-between;
  flex-wrap:       wrap;
  gap:             var(--space-sm);
  margin-top:      var(--space-sm);
}
.btn--submit {
  background:      var(--accent);
  color:           var(--bg);
  min-width:       160px;
  justify-content: center;
  position:        relative;
  overflow:        hidden;
}
.btn--submit:disabled               { opacity: 0.5; cursor: not-allowed; transform: none; }
.btn--submit.is-loading .btn-label  { opacity: 0; }
.btn--submit.is-loading .btn-spinner{ display: block; }
.btn--submit.is-success             { background: var(--success); }

.btn-spinner {
  display:       none;
  position:      absolute;
  width:         1.1rem;
  height:        1.1rem;
  border:        2px solid rgba(13, 15, 18, 0.3);
  border-top-color: var(--bg);
  border-radius: 50%;
  animation:     spin 0.7s linear infinite;
}

.form-success {
  display:       none;
  background:    var(--success-dim);
  border:        1px solid var(--success);
  border-radius: var(--radius);
  padding:       var(--space-md);
  text-align:    center;
  margin-top:    var(--space-md);
}
.form-success.is-visible     { display: block; }
.form-success__title { font-family: 'Fraunces', serif; font-size: var(--text-lg); color: var(--success); margin-bottom: 0.3rem; }
.form-success__body  { font-size: var(--text-sm); color: var(--muted); }


/* ============================================================
   14. ABOUT SECTION
   ============================================================ */
.about-section {
  background:     var(--bone);
  padding-bottom: 0;
}
.about-body { max-width: 75ch; }
.about-body p {
  color:         var(--mid);
  font-size:     var(--text-base);
  line-height:   1.85;
  margin-bottom: 1.5rem;
}
.about-body p:last-child { margin-bottom: 0; }


/* ============================================================
   15. LEADERSHIP / BIO
   ============================================================ */
.leadership-section { padding-top: var(--space-xl); }

.leadership-grid {
  display:               grid;
  grid-template-columns: 1fr;
  gap:                   var(--space-xl);
  align-items:           center;
}
@media (min-width: 768px) {
  .leadership-grid { grid-template-columns: 1fr 1fr; gap: 5rem; }
}

.bio-photo-wrap     { position: relative; }
.bio-photo-placeholder {
  width:           100%;
  aspect-ratio:    3 / 4;
  background:      linear-gradient(145deg, var(--steel) 0%, #1a2535 100%);
  display:         flex;
  align-items:     center;
  justify-content: center;
  position:        relative;
  overflow:        hidden;
}
.bio-photo-placeholder::after {
  content:     'B';
  font-family: 'Playfair Display', serif;
  font-size:   clamp(5rem, 12vw, 8rem);
  font-weight: 900;
  color:       rgba(201, 168, 76, 0.15);
  position:    absolute;
}
.bio-photo-label {
  position:       absolute;
  bottom:        -1px; left: -1px; right: -1px;
  background:     var(--gold);
  padding:        0.8rem 1.2rem;
  font-family:    'DM Mono', monospace;
  font-size:      var(--text-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color:          var(--steel);
}

.bio-content { padding: 1rem 0; }
.bio-name {
  font-family:   'Playfair Display', serif;
  font-size:     var(--text-xl);
  font-weight:   900;
  color:         var(--steel);
  line-height:   1.15;
  margin-bottom: 0.3rem;
}
.bio-title-tag {
  font-family:    'DM Mono', monospace;
  font-size:      var(--text-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color:          var(--gold);
  margin-bottom:  2rem;
}
.bio-text { color: var(--mid); font-size: var(--text-base); line-height: 1.9; margin-bottom: 1.2rem; }

.bio-credentials { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 0.6rem; }
.cred-tag {
  background:     var(--steel);
  color:          var(--bone);
  font-family:    'DM Mono', monospace;
  font-size:      var(--text-xs);
  letter-spacing: 0.1em;
  padding:        0.4rem 0.9rem;
}


/* ============================================================
   16. TESTIMONIALS
   ============================================================ */
.testimonials-section { background: var(--ink); }
.testimonials-section .section-label { color: rgba(201, 168, 76, 0.8); }
.testimonials-section .section-title { color: var(--bone); }
.testimonials-header { margin-bottom: var(--space-xl); }

.testimonials-grid {
  display:               grid;
  grid-template-columns: 1fr;
  gap:                   2px;
}
@media (min-width: 640px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }

.testimonial-card {
  background: rgba(255, 255, 255, 0.03);
  border:     1px solid rgba(255, 255, 255, 0.06);
  padding:    clamp(1.5rem, 4vw, 2.5rem) clamp(1.2rem, 3vw, 2rem);
  position:   relative;
}
.testimonial-card::before {
  content:     '\201C';
  font-family: 'Playfair Display', serif;
  font-size:   5rem;
  line-height: 1;
  color:       var(--gold);
  opacity:     0.25;
  position:    absolute;
  top:         1rem;
  left:        1.5rem;
}
.testimonial-text {
  font-size:     var(--text-sm);
  color:         rgba(244, 240, 232, 0.75);
  line-height:   1.85;
  font-style:    italic;
  margin-bottom: 2rem;
  padding-top:   1.5rem;
}
.testimonial-author { border-top: 1px solid rgba(255, 255, 255, 0.07); padding-top: 1.2rem; }
.author-name  { font-size: var(--text-sm); font-weight: 500; color: var(--bone); margin-bottom: 0.25rem; }
.author-role  { font-family: 'DM Mono', monospace; font-size: var(--text-xs); letter-spacing: 0.12em; color: var(--gold); text-transform: uppercase; }


/* ============================================================
   17. CONTACT STRIP (light)
   ============================================================ */
.contact-section {
  background:      var(--gold);
  display:         flex;
  flex-wrap:       wrap;
  align-items:     center;
  justify-content: space-between;
  gap:             var(--space-lg);
  padding:         var(--space-xl) var(--section-px);
}
.contact-section .section-label { color: var(--steel); margin-bottom: 0.5rem; }
.contact-section .section-title { color: var(--steel); font-size: var(--text-xl); margin-bottom: 0; }
.contact-note { color: var(--steel); opacity: 0.75; font-size: var(--text-sm); margin-top: 0.8rem; }
.contact-cta {
  display:        inline-block;
  background:     var(--steel);
  color:          var(--bone);
  padding:        1rem 2.5rem;
  font-size:      var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  flex-shrink:    0;
  transition:     background var(--transition);
}
.contact-cta:hover { background: var(--ink); }


/* ============================================================
   18. FOOTER — DARK (responsive-layout)
   ============================================================ */
.footer { background: var(--surface); border-top: 1px solid var(--border); }

.footer__main {
  padding-top:    var(--space-xl);
  padding-bottom: var(--space-xl);
  display:        grid;
  grid-template-columns: 1fr;
  gap:            var(--space-xl);
}
@media (min-width: 768px) { .footer__main { grid-template-columns: 1.4fr 2fr; align-items: start; } }

.footer__brand { max-width: 320px; }
.footer__logo {
  display:       inline-flex;
  align-items:   center;
  gap:           0.6rem;
  font-family:   'Fraunces', serif;
  font-weight:   700;
  font-size:     var(--text-lg);
  color:         var(--text);
  margin-bottom: var(--space-sm);
}
.footer__logo-mark {
  width:         1.8rem;
  height:        1.8rem;
  background:    var(--accent);
  border-radius: 50%;
  display:       grid;
  place-items:   center;
}
.footer__logo-mark svg { width: 0.85rem; height: 0.85rem; fill: var(--bg); }
.footer__tagline { font-size: var(--text-sm); color: var(--muted); line-height: 1.7; margin-bottom: var(--space-md); }

.footer__social { display: flex; gap: var(--space-xs); }
.footer__social a {
  width:         2.25rem;
  height:        2.25rem;
  border:        1px solid var(--border);
  border-radius: var(--radius);
  display:       grid;
  place-items:   center;
  color:         var(--muted);
  transition:    color var(--transition), border-color var(--transition);
}
.footer__social a:hover,
.footer__social a:focus-visible { color: var(--accent); border-color: var(--accent); outline: none; }
.footer__social svg { width: 1rem; height: 1rem; fill: currentColor; }

.footer__links-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-lg); }
@media (min-width: 480px) { .footer__links-grid { grid-template-columns: repeat(3, 1fr); } }

.footer__col-title { font-size: var(--text-xs); font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text); margin-bottom: var(--space-sm); }
.footer__col ul    { display: flex; flex-direction: column; gap: 0.5rem; }
.footer__col a     { font-size: var(--text-sm); color: var(--muted); transition: color var(--transition); }
.footer__col a:hover,
.footer__col a:focus-visible { color: var(--accent); outline: none; }

.footer__bottom {
  border-top:      1px solid var(--border);
  padding-top:     var(--space-md);
  padding-bottom:  var(--space-md);
  display:         flex;
  flex-wrap:       wrap;
  align-items:     center;
  justify-content: space-between;
  gap:             var(--space-sm);
}
.footer__copy  { font-size: var(--text-xs); color: var(--muted); }
.footer__legal { display: flex; gap: var(--space-md); }
.footer__legal a { font-size: var(--text-xs); color: var(--muted); transition: color var(--transition); }
.footer__legal a:hover { color: var(--accent); }


/* ============================================================
   19. FOOTER — LIGHT (construction-pm-site)
   ============================================================ */
.footer-light {
  background:      var(--ink);
  padding:         var(--space-md) var(--section-px);
  display:         flex;
  flex-wrap:       wrap;
  align-items:     center;
  justify-content: space-between;
  gap:             var(--space-sm);
  border-top:      1px solid rgba(255, 255, 255, 0.06);
}
.footer__logo-mkt {
  font-family:    'DM Mono', monospace;
  font-size:      var(--text-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color:          var(--gold);
}
.footer__copy-mkt {
  font-size:      var(--text-xs);
  color:          rgba(244, 240, 232, 0.3);
  letter-spacing: 0.05em;
}


/* ============================================================
   20. SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity:    0;
  transform:  translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-revealed { opacity: 1; transform: none; }


/* ============================================================
   21. KEYFRAMES & MOTION
   ============================================================ */
@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0);   }
  50%       { transform: translateX(-50%) translateY(6px); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0);    }
}

@keyframes spin { to { transform: rotate(360deg); } }

/* Hero entry animations */
.hero__eyebrow     { animation: fadeUp 0.6s ease both; animation-delay: 0.10s; }
.hero__heading     { animation: fadeUp 0.6s ease both; animation-delay: 0.22s; }
.hero__description { animation: fadeUp 0.6s ease both; animation-delay: 0.34s; }
.hero__actions     { animation: fadeUp 0.6s ease both; animation-delay: 0.46s; }

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration:        0.01ms !important;
    animation-iteration-count: 1      !important;
    transition-duration:       0.01ms !important;
    scroll-behavior:           auto   !important;
  }
}
