/* ============================================================
   Dynvora Holdings — Design System v2
   Navy + gold, premium construction brand.
   ============================================================ */

:root {
  --bg: #faf8f4;
  --bg-alt: #f2efe7;
  --ink: #1a2230;
  --ink-soft: #4c5567;
  --muted: #868c99;
  --line: #e6e1d5;
  --line-strong: #d6cfbc;
  --panel: #ffffff;

  --navy: #12233d;
  --navy-deep: #0a1524;
  --navy-soft: #24354f;
  --gold: #b8923f;
  --gold-light: #d9b979;
  --gold-tint: #f3e9d4;

  --dark: var(--navy-deep);
  --dark-panel: #101f34;
  --dark-line: #223047;
  --on-dark: #f5f2ea;
  --on-dark-muted: #a9afc0;

  --accent: var(--gold);
  --accent-dim: #9a7833;

  --font: "Inter", -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Helvetica, Arial, sans-serif;

  --container: 1180px;
  --gap: clamp(20px, 3vw, 32px);
  --section-pad: clamp(72px, 12vw, 160px);
  --radius: 18px;
  --radius-sm: 10px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

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

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.5;
  font-size: 16px;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3, h4 {
  margin: 0;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.08;
  color: var(--navy);
}

p { margin: 0; }
ul { list-style: none; margin: 0; padding: 0; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: clamp(20px, 5vw, 48px);
  padding-right: clamp(20px, 5vw, 48px);
}

section { position: relative; }

/* ---------------- Kicker labels (no decorative dash) ---------------- */

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.lede {
  font-size: clamp(17px, 1.6vw, 20px);
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 46ch;
}

/* ---------------- Buttons ---------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.45s var(--ease), background-color 0.3s var(--ease), border-color 0.3s var(--ease), color 0.3s var(--ease), box-shadow 0.45s var(--ease);
  white-space: nowrap;
  will-change: transform;
}

.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--navy);
  color: var(--on-dark);
  box-shadow: 0 1px 2px rgba(10, 21, 36, 0.1);
}
.btn-primary:hover {
  background: var(--gold);
  color: var(--navy-deep);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -10px rgba(184, 146, 63, 0.55);
}

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--line-strong);
}
.btn-ghost:hover {
  border-color: var(--navy);
  transform: translateY(-2px);
}

.btn-on-dark {
  background: var(--on-dark);
  color: var(--navy-deep);
}
.btn-on-dark:hover { background: var(--gold); color: var(--navy-deep); transform: translateY(-2px); }

.btn-ghost-dark {
  background: transparent;
  color: var(--on-dark);
  border-color: var(--dark-line);
}
.btn-ghost-dark:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.btn-arrow { transition: transform 0.45s var(--ease); }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ---------------- Logo lockup ---------------- */

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-badge {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: linear-gradient(155deg, var(--navy) 0%, var(--navy-deep) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(10, 21, 36, 0.25);
}
.logo-badge img { width: 21px; height: auto; display: block; }

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-word {
  font-size: 16.5px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--navy);
}
.logo-sub {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--gold);
  margin-top: 3px;
}
.footer .logo-word { color: var(--on-dark); }

/* ---------------- Nav ---------------- */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background-color 0.4s var(--ease), border-color 0.4s var(--ease), padding 0.4s var(--ease), box-shadow 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(250, 248, 244, 0.82);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--line);
  padding: 12px 0;
  box-shadow: 0 1px 0 rgba(18, 35, 61, 0.03);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 36px);
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  padding: 4px 0;
  transition: color 0.3s var(--ease);
}

.nav-links a:hover { color: var(--navy); }
.nav-links a.active { color: var(--navy); font-weight: 600; }

.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -3px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-cta .btn { padding: 10px 20px; font-size: 13.5px; }

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: none;
  background: none;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.4s var(--ease), opacity 0.4s var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-panel {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--navy-deep);
  padding: 104px clamp(24px, 7vw, 48px) 40px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s;
}
.mobile-panel.open { opacity: 1; visibility: visible; }
.mobile-panel a {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--on-dark);
  padding: 12px 0;
  border-bottom: 1px solid var(--dark-line);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s var(--ease-soft), transform 0.5s var(--ease-soft);
}
.mobile-panel.open a { opacity: 1; transform: translateY(0); }
.mobile-panel.open a:nth-child(1) { transition-delay: 0.06s; }
.mobile-panel.open a:nth-child(2) { transition-delay: 0.11s; }
.mobile-panel.open a:nth-child(3) { transition-delay: 0.16s; }
.mobile-panel.open a:nth-child(4) { transition-delay: 0.21s; }
.mobile-panel.open a:nth-child(5) { transition-delay: 0.26s; }
.mobile-panel .btn {
  margin-top: 22px;
  align-self: flex-start;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s var(--ease-soft) 0.32s, transform 0.5s var(--ease-soft) 0.32s;
}
.mobile-panel.open .btn { opacity: 1; transform: translateY(0); }
.mobile-panel .logo-word, .mobile-panel .eyebrow-mini { color: var(--on-dark); }

@media (max-width: 860px) {
  .nav-links, .nav-cta .btn-ghost { display: none; }
  .nav-toggle { display: flex; }
}

/* ---------------- Reveal / motion ---------------- */

.reveal {
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.js .reveal {
  opacity: 0;
  transform: translateY(28px);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

.js .reveal-scale { transform: scale(0.96); }
.reveal-scale.in { transform: scale(1); }

/* ---------------- Hero ---------------- */

.hero {
  padding: clamp(140px, 20vw, 220px) 0 clamp(60px, 10vw, 110px);
  overflow: hidden;
  position: relative;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}

.hero h1 {
  font-size: clamp(40px, 5.6vw, 72px);
  margin-top: 18px;
}

.hero .lede { margin-top: 22px; }

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 38px;
  flex-wrap: wrap;
}

.hero-art {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 30px 60px -24px rgba(10, 21, 36, 0.35);
}
.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 1.2s var(--ease-soft);
}
.hero-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,21,36,0) 40%, rgba(10,21,36,0.55) 100%);
}
.hero-art-caption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  z-index: 2;
  color: var(--on-dark);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-art-caption .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.hero-strip {
  margin-top: clamp(60px, 9vw, 110px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.hero-strip div {
  padding: 22px 8px 0;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.01em;
}

.hero-strip strong {
  display: block;
  color: var(--navy);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 20px; }

  /* Full-bleed photo hero on mobile: the hardhat photo becomes the
     background for the whole hero (copy + stat strip), instead of a
     boxed card stacked below the text. */
  .hero { padding-top: clamp(120px, 30vw, 160px); }
  .hero-inner { min-height: clamp(340px, 78vw, 460px); }
  .hero-copy { position: relative; z-index: 1; }

  .hero-art {
    position: absolute;
    inset: 0;
    z-index: 0;
    max-width: none;
    margin: 0;
    aspect-ratio: auto;
    border-radius: 0;
    box-shadow: none;
  }
  .hero-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 68% 35%;
  }
  .hero-art::after {
    background: linear-gradient(180deg, rgba(10, 21, 36, 0.62) 0%, rgba(10, 21, 36, 0.72) 55%, rgba(10, 21, 36, 0.92) 100%);
  }
  .hero-art-caption { display: none; }

  .hero-copy .eyebrow { color: var(--gold-light); }
  .hero-copy h1, .hero-copy .lede { color: var(--on-dark); }
  .hero-copy .lede { color: rgba(245, 242, 234, 0.82); }

  .hero .btn-primary { background: var(--gold); color: var(--navy-deep); }
  .hero .btn-primary:hover { background: var(--gold-light); color: var(--navy-deep); }
  .hero .btn-ghost { color: var(--on-dark); border-color: rgba(245, 242, 234, 0.45); }
  .hero .btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

  .hero-strip {
    position: relative;
    z-index: 1;
    border-top-color: rgba(245, 242, 234, 0.22);
    margin-top: clamp(40px, 9vw, 70px);
    padding-bottom: 4px;
  }
  .hero-strip strong { color: var(--on-dark); }
  .hero-strip div { color: rgba(245, 242, 234, 0.68); }
}

@media (max-width: 860px) {
  body.has-photo-hero .nav:not(.scrolled) .logo-word { color: var(--on-dark); }
  body.has-photo-hero .nav:not(.scrolled) .nav-toggle span { background: var(--on-dark); }
}

/* ---------------- Section headers ---------------- */

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-bottom: clamp(40px, 6vw, 64px);
}

.section-head h2 {
  font-size: clamp(30px, 4vw, 46px);
  margin-top: 14px;
  max-width: 15ch;
}

.section-head .lede { margin-top: 14px; margin-bottom: 0; }

@media (max-width: 700px) {
  .section-head { flex-direction: column; align-items: flex-start; }
}

/* ---------------- Layout utilities ---------------- */

.section { padding: var(--section-pad) 0; }
.section-alt { background: var(--bg-alt); }
.border-top { border-top: 1px solid var(--line); }

.hero + section,
.page-hero + section,
.contact-hero + section {
  padding-top: clamp(28px, 4vw, 52px);
}

/* ---------------- Services grid ---------------- */

.grid-services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.service-card {
  background: var(--panel);
  padding: clamp(28px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 240px;
  transition: background-color 0.4s var(--ease), transform 0.4s var(--ease);
}

.service-card:hover { background: var(--gold-tint); }

.service-icon {
  width: 42px;
  height: 42px;
  color: var(--gold);
  transition: transform 0.5s var(--ease);
}
.service-card:hover .service-icon { transform: translateY(-3px) scale(1.05); }

.service-card h3 {
  font-size: 19px;
  font-weight: 600;
}

.service-card p {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.6;
}

.service-num {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.05em;
}

@media (max-width: 900px) {
  .grid-services { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 600px) {
  .grid-services { grid-template-columns: 1fr; }
}

/* ---------------- Sectors strip ---------------- */

.sectors {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sector-chip {
  padding: 10px 20px;
  border: 1px solid var(--line-strong);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease);
}
.sector-chip:hover { border-color: var(--gold); color: var(--navy); transform: translateY(-2px); }

/* ---------------- Dark band ---------------- */

.band-dark {
  background: var(--dark);
  color: var(--on-dark);
}

.band-dark h2, .band-dark h3 { color: var(--on-dark); }
.band-dark .eyebrow { color: var(--gold); }
.band-dark .lede { color: var(--on-dark-muted); }

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--gap);
}

.value-card {
  padding-top: 22px;
  border-top: 1px solid var(--dark-line);
  transition: transform 0.4s var(--ease);
}

.value-card .num {
  font-size: 13px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
  display: block;
}

.value-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.value-card p {
  font-size: 14.5px;
  color: var(--on-dark-muted);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .value-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .value-grid { grid-template-columns: 1fr; }
}

/* ---------------- Process ---------------- */

.process-list {
  display: flex;
  flex-direction: column;
}

.process-row {
  display: grid;
  grid-template-columns: 90px 1fr 1.4fr;
  gap: 24px;
  align-items: baseline;
  padding: 34px 0;
  border-top: 1px solid var(--line);
  transition: background-color 0.3s var(--ease);
}
.process-row:last-child { border-bottom: 1px solid var(--line); }
.process-row:hover { background: rgba(184, 146, 63, 0.05); }

.process-row .num {
  font-size: 14px;
  color: var(--gold);
  font-weight: 700;
}

.process-row h3 {
  font-size: 22px;
  font-weight: 600;
}

.process-row p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.65;
  max-width: 52ch;
}

@media (max-width: 760px) {
  .process-row { grid-template-columns: 1fr; gap: 10px; }
}

/* ---------------- Work grid ---------------- */

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--gap);
}

.work-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

.work-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 52px -24px rgba(18, 35, 61, 0.25);
}

.work-visual {
  aspect-ratio: 16 / 10;
  position: relative;
  overflow: hidden;
}

.work-visual svg, .work-visual img { width: 100%; height: 100%; object-fit: cover; }

.work-body {
  padding: 26px 28px 30px;
}

.work-tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}

.work-body h3 { font-size: 21px; margin-bottom: 10px; }
.work-body p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.6; }

@media (max-width: 760px) {
  .work-grid { grid-template-columns: 1fr; }
}

/* ---------------- Statement band ---------------- */

.statement {
  font-size: clamp(24px, 3.4vw, 40px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.3;
  max-width: 22ch;
  color: var(--navy);
}

.statement .accent-text { color: var(--gold); }

/* ---------------- CTA band ---------------- */

.cta-band {
  padding: clamp(70px, 11vw, 130px) 0;
  text-align: center;
}

.cta-band h2 {
  font-size: clamp(32px, 5vw, 58px);
  max-width: 16ch;
  margin: 18px auto 0;
}

.cta-band .lede { margin: 20px auto 0; text-align: center; }

.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 36px;
  flex-wrap: wrap;
}

.center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ---------------- Contact page ---------------- */

.contact-hero {
  padding: clamp(150px, 20vw, 220px) 0 clamp(60px, 8vw, 90px);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 6vw, 80px);
  align-items: start;
}

.contact-email {
  font-size: clamp(24px, 3.4vw, 38px);
  font-weight: 700;
  letter-spacing: -0.02em;
  word-break: break-word;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--navy);
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
  color: var(--navy);
}
.contact-email:hover { color: var(--gold); border-color: var(--gold); }

.info-list { margin-top: 40px; display: flex; flex-direction: column; gap: 22px; }
.info-item { display: flex; gap: 16px; align-items: flex-start; }
.info-item svg { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.info-item h4 { font-size: 14px; font-weight: 600; margin-bottom: 4px; color: var(--navy); }
.info-item p { font-size: 14.5px; color: var(--ink-soft); }

.form-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(26px, 4vw, 40px);
}

.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--ink-soft);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: var(--bg);
  font-family: var(--font);
  font-size: 14.5px;
  color: var(--ink);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184, 146, 63, 0.15);
}

.field textarea { resize: vertical; min-height: 110px; }

.form-note {
  font-size: 13px;
  color: var(--muted);
  margin-top: 16px;
  line-height: 1.6;
}

/* ---------------- Footer ---------------- */

.footer {
  background: var(--dark);
  color: var(--on-dark);
  padding: clamp(56px, 8vw, 88px) 0 30px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--dark-line);
}

.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { font-size: 14.5px; color: var(--on-dark-muted); max-width: 34ch; line-height: 1.7; }

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--on-dark-muted);
  margin-bottom: 18px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a, .footer-col span { font-size: 14.5px; color: var(--on-dark); }
.footer-col a { transition: color 0.3s var(--ease); }
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 26px;
  font-size: 13px;
  color: var(--on-dark-muted);
  flex-wrap: wrap;
  gap: 10px;
}

@media (max-width: 760px) {
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .contact-grid { grid-template-columns: 1fr; }
}

/* ---------------- Page hero (interior pages) ---------------- */

.page-hero {
  padding: clamp(140px, 18vw, 200px) 0 clamp(50px, 7vw, 80px);
}

.page-hero h1 {
  font-size: clamp(38px, 5.5vw, 64px);
  margin-top: 16px;
  max-width: 16ch;
}

.page-hero .lede { margin-top: 20px; max-width: 52ch; }

/* ---------------- Utility ---------------- */

.mt-lg { margin-top: clamp(50px, 7vw, 80px); }
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 6vw, 80px);
}
@media (max-width: 800px) {
  .two-col { grid-template-columns: 1fr; }
}

/* ---------------- Mobile refinement pass ---------------- */

@media (max-width: 640px) {
  :root { --section-pad: clamp(56px, 16vw, 90px); }
  body { font-size: 15.5px; }
  .btn { padding: 14px 22px; font-size: 14.5px; }
  .work-body { padding: 22px 20px 26px; }
  .service-card { padding: 26px 22px; min-height: unset; }
  .process-row { padding: 26px 0; }
  .form-panel { padding: 24px 20px; }
}
