/* =========================================================
   Ace Builders of Canada Ltd. — Site Stylesheet (v2)
   Palette: green + cream ONLY, derived from the company logo.
   ========================================================= */

:root {
  --forest-950: #06231a;
  --forest-900: #0b3a27;
  --forest-800: #0f4a30;
  --forest-700: #146c3a;
  --forest-600: #1c7f42;
  --forest-500: #24904c;
  --forest-400: #3faa62;
  --sage-300: #a9cdb2;
  --sage-200: #cfe4d5;
  --sage-100: #eaf4ec;
  --cream-100: #faf8f3;
  --cream-200: #f2efe6;
  --tan-300: #e4ddc8;
  --charcoal: #1b211c;
  --grey: #5b645d;
  --grey-light: #d9ddd4;
  --white: #ffffff;

  /* legacy aliases kept so any missed selector still resolves in-palette */
  --green-dark: var(--forest-900);
  --green: var(--forest-700);
  --green-mid: var(--forest-600);
  --green-light: var(--forest-400);
  --green-pale: var(--sage-100);
  --red: var(--forest-600);
  --red-dark: var(--forest-800);
  --cream: var(--cream-100);
  --cream-2: var(--cream-200);

  --font-head: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  --font-body: 'Inter', 'Segoe UI', Arial, sans-serif;

  --radius: 12px;
  --shadow: 0 14px 34px rgba(6, 35, 26, 0.14);
  --shadow-sm: 0 2px 12px rgba(6, 35, 26, 0.08);
  --max-width: 1180px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--cream-100);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  color: var(--forest-900);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.2rem, 4.3vw, 3.5rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: 1.25rem; }

p { color: var(--charcoal); }

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

/* ---------- Icons ---------- */
.icon-svg { width: 24px; height: 24px; display: block; }
.icon-svg svg { width: 100%; height: 100%; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest-600);
  margin-bottom: 12px;
}
.eyebrow::before {
  content: '';
  width: 22px;
  height: 2px;
  background: var(--forest-500);
  display: inline-block;
}

.section {
  padding: 88px 0;
}

.section-alt {
  background: var(--sage-100);
}

.section-dark {
  background: var(--forest-900);
  color: var(--white);
}
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.85); }
.section-dark .eyebrow { color: var(--sage-200); }
.section-dark .eyebrow::before { background: var(--sage-300); }

.section-header {
  max-width: 680px;
  margin-bottom: 52px;
}
.section-header.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-header.center .eyebrow { justify-content: center; }

.section-header p {
  color: var(--grey);
  font-size: 1.05rem;
  margin-top: 12px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease, border-color .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn .icon-svg { width: 18px; height: 18px; }

.btn-primary {
  background: var(--forest-600);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(28,127,66,0.28);
}
.btn-primary:hover { background: var(--forest-800); }

.btn-secondary {
  background: var(--white);
  color: var(--forest-900);
  border-color: var(--forest-900);
}
.btn-secondary:hover { background: var(--forest-900); color: var(--white); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.9); }

.btn-cream {
  background: var(--cream-100);
  color: var(--forest-900);
  border-color: var(--cream-100);
}
.btn-cream:hover { background: var(--white); }

.btn-block { width: 100%; justify-content: center; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(250, 248, 243, 0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--grey-light);
}

.topbar {
  background: var(--forest-900);
  color: rgba(255,255,255,0.9);
  font-size: 0.82rem;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
  flex-wrap: wrap;
  gap: 6px;
}
.topbar a { color: var(--white); font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
.topbar .topbar-tag { color: rgba(255,255,255,0.65); display: inline-flex; align-items: center; gap: 6px; }
.topbar .topbar-links { display: inline-flex; align-items: center; gap: 18px; }
.topbar .icon-svg { width: 15px; height: 15px; }

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img { height: 52px; width: auto; }
.brand-text {
  font-family: var(--font-head);
  line-height: 1.1;
}
.brand-text .name {
  display: block;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--forest-900);
  letter-spacing: 0.01em;
}
.brand-text .tag {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--forest-600);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-links a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--charcoal);
  position: relative;
  padding: 6px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--forest-500);
  transition: width 0.2s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--forest-800); }

.nav-cta { display: flex; align-items: center; gap: 14px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 26px;
  height: 3px;
  background: var(--forest-900);
  border-radius: 2px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(120deg, var(--forest-950) 0%, var(--forest-900) 45%, var(--forest-700) 100%);
  color: var(--white);
  padding: 108px 0 0;
  overflow: hidden;
}
.hero-watermark {
  position: absolute;
  right: -6%; top: -14%;
  width: 640px; max-width: 60vw;
  opacity: 0.07;
  filter: brightness(0) invert(1);
  pointer-events: none;
}
.hero .container.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
  padding-bottom: 70px;
}
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero .lead {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.88);
  max-width: 540px;
  margin-bottom: 32px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-badges {
  display: flex;
  gap: 14px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.hero-badge .icon-svg { width: 16px; height: 16px; color: var(--sage-300); }

.hero-art {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 16px;
  padding: 32px;
  backdrop-filter: blur(3px);
}
.hero-art .stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.hero-art .stat:last-child { border-bottom: none; }
.hero-art .stat .num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--white);
}
.hero-art .stat .label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
  text-align: right;
  max-width: 60%;
}

.hero-skyline {
  position: relative;
  line-height: 0;
  margin-top: 50px;
}
.hero-skyline img { width: 100%; height: auto; display: block; }

/* photo-backed hero / page-hero / cta-band variants */
.hero.has-photo,
.page-hero.has-photo,
.cta-band.has-photo {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background: linear-gradient(120deg, var(--forest-950) 0%, var(--forest-800) 100%);
  color: var(--white);
  padding: 68px 0 56px;
  position: relative;
  overflow: hidden;
}
.page-hero .eyebrow { color: var(--sage-200); }
.page-hero .eyebrow::before { background: var(--sage-300); }
.page-hero h1 { color: var(--white); }
.page-hero p { color: rgba(255,255,255,0.85); max-width: 640px; margin-top: 14px; font-size: 1.05rem; }
.breadcrumb {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 14px;
}
.breadcrumb a { color: var(--white); font-weight: 600; }
.page-hero-watermark {
  position: absolute;
  right: -4%; top: -30%;
  width: 380px;
  opacity: 0.08;
  filter: brightness(0) invert(1);
  pointer-events: none;
}

/* ---------- Cards / Grids ---------- */
.grid {
  display: grid;
  gap: 28px;
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(11,58,39,0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color .2s ease;
  height: 100%;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(28,127,66,0.25); }

.icon-badge {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: var(--sage-100);
  color: var(--forest-800);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.icon-badge .icon-svg { width: 26px; height: 26px; }

.service-card .icon-badge { background: var(--forest-900); color: var(--sage-200); }

.card h3 { margin-bottom: 10px; }
.card p { color: var(--grey); font-size: 0.96rem; }
.card ul { margin-top: 14px; padding-left: 0; list-style: none; }
.card ul li {
  font-size: 0.92rem;
  color: var(--charcoal);
  padding-left: 26px;
  position: relative;
  margin-bottom: 8px;
}
.card ul li::before {
  content: '';
  position: absolute; left: 0; top: 3px;
  width: 16px; height: 16px;
  background-color: var(--forest-600);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 12l5 5L20 6'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 12l5 5L20 6'/%3E%3C/svg%3E") center/contain no-repeat;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--forest-800);
}
.card-link .icon-svg { width: 16px; height: 16px; transition: transform .15s ease; }
.card-link:hover { color: var(--forest-600); }
.card-link:hover .icon-svg { transform: translateX(3px); }

/* illustration / photo blocks */
.photo-block {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(160deg, var(--sage-100), var(--cream-200));
  border: 1px solid var(--tan-300);
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.photo-block img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.photo-block.pad img { padding: 28px; object-fit: contain; }

/* ---------- Stats strip ---------- */
.stats-strip {
  background: var(--forest-900);
  color: var(--white);
  padding: 44px 0;
}
.stats-strip .grid { grid-template-columns: repeat(4, 1fr); text-align: center; }
.stats-strip .stat-num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2.1rem;
  color: var(--white);
}
.stats-strip .stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.72);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
}

/* ---------- Timeline / process ---------- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}
.process-step {
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px 18px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  border-top: 3px solid var(--forest-500);
}
.process-step .step-num {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--forest-900);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.process-step h4 { font-size: 0.95rem; margin-bottom: 6px; }
.process-step p { font-size: 0.82rem; color: var(--grey); }

/* ---------- Team ---------- */
.team-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.team-photo {
  height: 240px;
  background: linear-gradient(150deg, var(--forest-700), var(--forest-950));
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.team-photo img { width: 100%; height: 100%; object-fit: contain; padding: 30px; }
.team-photo .icon-svg { width: 64px; height: 64px; color: rgba(255,255,255,0.85); }
.team-body { padding: 24px; }
.team-body h3 { margin-bottom: 2px; }
.team-role { color: var(--forest-600); font-weight: 700; font-size: 0.85rem; margin-bottom: 12px; }
.team-body p { font-size: 0.92rem; color: var(--grey); }

/* ---------- Certifications ---------- */
.cert-badge {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(11,58,39,0.06);
}
.cert-badge .icon-badge { margin-bottom: 0; flex-shrink: 0; }
.cert-badge h3 { font-size: 1.05rem; margin-bottom: 4px; }
.cert-badge p { font-size: 0.88rem; color: var(--grey); }

/* ---------- Project cards ---------- */
.project-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 1px solid rgba(11,58,39,0.07);
  transition: transform .2s ease, box-shadow .2s ease;
}
.project-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.project-visual {
  position: relative;
  height: 200px;
  background: linear-gradient(150deg, var(--sage-100), var(--cream-200));
  display: flex; align-items: center; justify-content: center;
  border-bottom: 3px solid var(--forest-500);
  overflow: hidden;
}
.project-visual .icon-svg { width: 54px; height: 54px; color: var(--forest-800); opacity: .85; }
.project-visual img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.project-card:hover .project-visual img { transform: scale(1.06); }
.project-visual .pv-badge {
  position: absolute;
  top: 14px; left: 14px;
  width: 42px; height: 42px;
  border-radius: 10px;
  background: rgba(6,35,26,0.72);
  backdrop-filter: blur(2px);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  z-index: 2;
}
.project-visual .pv-badge .icon-svg { width: 20px; height: 20px; color: var(--white); opacity: 1; }
.project-body { padding: 26px; }
.project-body h3 { margin-bottom: 8px; }
.project-body p { font-size: 0.92rem; color: var(--grey); }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--forest-800) 0%, var(--forest-950) 100%);
  color: var(--white);
  padding: 60px 0;
  text-align: center;
}
.cta-band h2 { color: var(--white); margin-bottom: 12px; }
.cta-band p { color: rgba(255,255,255,0.9); max-width: 560px; margin: 0 auto 28px; }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-family: var(--font-head); font-weight: 600; font-size: 0.88rem; color: var(--forest-900); }
.form-field input,
.form-field select,
.form-field textarea {
  border: 1.5px solid var(--grey-light);
  border-radius: 8px;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--cream-100);
  color: var(--charcoal);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--forest-500);
  box-shadow: 0 0 0 3px rgba(36,144,76,0.15);
  background: var(--white);
}
.form-note { font-size: 0.8rem; color: var(--grey); margin-top: 10px; }
#form-status {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  display: none;
}
#form-status.show { display: block; }
#form-status.success { background: var(--sage-100); color: var(--forest-800); }

.contact-info-card {
  background: var(--forest-900);
  color: var(--white);
  border-radius: var(--radius);
  padding: 34px;
}
.contact-info-card h3 { color: var(--white); }
.contact-row {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  align-items: flex-start;
}
.contact-row:last-of-type { border-bottom: none; }
.contact-row .icon-badge {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  margin-bottom: 0;
  flex-shrink: 0;
  width: 44px; height: 44px;
}
.contact-row .icon-badge .icon-svg { width: 20px; height: 20px; }
.contact-row .label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.05em; color: rgba(255,255,255,0.65); }
.contact-row .value { font-weight: 700; font-family: var(--font-head); }
.contact-row a.value:hover { color: var(--sage-200); }

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--grey-light);
}
.map-embed iframe { width: 100%; height: 320px; border: 0; display: block; filter: grayscale(0.15); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--forest-950);
  color: rgba(255,255,255,0.75);
  padding: 64px 0 24px;
}
.site-footer p { color: rgba(255,255,255,0.72); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand img { height: 46px; }
.footer-brand .name { font-family: var(--font-head); font-weight: 800; color: var(--white); font-size: 1.05rem; }
.footer-col h4 {
  color: var(--white);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; font-size: 0.92rem; display: flex; align-items: center; gap: 8px; }
.footer-col li .icon-svg { width: 15px; height: 15px; flex-shrink: 0; color: var(--sage-300); }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 22px;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  display: flex; align-items: center; justify-content: center;
}
.footer-socials a .icon-svg { width: 16px; height: 16px; }
.footer-socials a:hover { background: var(--forest-600); border-color: var(--forest-600); }

/* ---------- Utilities ---------- */
.mt-0 { margin-top: 0; }
.text-center { text-align: center; }
.tag-pill {
  display: inline-block;
  background: var(--sage-100);
  color: var(--forest-800);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 10px;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: repeat(3, 1fr); }
  .hero .container.hero-inner { grid-template-columns: 1fr; }
  .hero-art { margin-top: 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .stats-strip .grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}

@media (max-width: 720px) {
  .topbar .container { justify-content: center; text-align: center; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--cream-100);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 10px 24px 20px;
    border-bottom: 1px solid var(--grey-light);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { width: 100%; padding: 12px 0; }
  .nav-cta .btn span.long { display: none; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 56px 0; }
  .hero { padding: 78px 0 0; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
