/* ============================================================
   Green Impact Advisory — styles.css
   Palette: sky-blue ground, forest-green accent, deep-teal headlines
   Type: Bricolage Grotesque (display) + Inter (body)
   ============================================================ */

:root {
  /* Colour tokens */
  --bg:           #E8F1F3;      /* sky blue ground */
  --bg-tint:      #F4FAFB;      /* lifted surface */
  --bg-deep:      #D5E5E8;      /* recessed band */
  --ink:          #0F2A33;      /* body text */
  --ink-soft:     #3D5A63;      /* muted text */
  --teal:         #0F4C5C;      /* brand deep teal — headlines */
  --teal-700:     #0B3947;
  --green:        #1F7A4D;      /* forest green accent */
  --green-600:    #176039;
  --green-100:    #D6EADD;
  --line:         rgba(15, 76, 92, 0.14);
  --line-strong:  rgba(15, 76, 92, 0.28);
  --white:        #FFFFFF;

  /* Type scale */
  --f-display: "Bricolage Grotesque", "Inter", system-ui, sans-serif;
  --f-body:    "Inter", system-ui, -apple-system, sans-serif;

  /* Layout */
  --container: 1200px;
  --radius: 14px;
  --radius-sm: 8px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ----------------------------------------------------------
   Reset & base
   ---------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

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

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }

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

/* Background topographic ornament */
.bg-topo {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  color: var(--teal);
  opacity: 0.05;
  z-index: 0;
}

main { position: relative; z-index: 1; }

/* ----------------------------------------------------------
   Typography utilities
   ---------------------------------------------------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0 0 24px;
}
.eyebrow--light { color: rgba(255,255,255,0.85); }
.eyebrow__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(31, 122, 77, 0.18);
}

.section-title {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--teal);
  margin: 0 0 16px;
  max-width: 22ch;
}
.section-title em {
  font-style: normal;
  color: var(--green);
  font-weight: 600;
}
.section-title--light { color: var(--white); }
.section-title--light em { color: #9BE0B7; }

.section-sub {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 56ch;
  margin: 0;
}

.section-head { margin-bottom: 56px; }

/* ----------------------------------------------------------
   Buttons & links
   ---------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.005em;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), box-shadow 0.25s var(--ease);
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; transition: transform 0.25s var(--ease); }
.btn:hover svg { transform: translateX(3px); }

.btn--primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 8px 24px -10px rgba(15, 76, 92, 0.5);
}
.btn--primary:hover {
  background: var(--green);
  box-shadow: 0 12px 28px -10px rgba(31, 122, 77, 0.55);
}

.btn--ghost {
  background: transparent;
  color: var(--teal);
  border: 1px solid var(--line-strong);
}
.btn--ghost:hover {
  background: var(--white);
  border-color: var(--teal);
}

.btn--block { width: 100%; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-weight: 500;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color 0.25s var(--ease);
}
.link-arrow svg { width: 16px; height: 16px; transition: transform 0.25s var(--ease); }
.link-arrow:hover { border-color: var(--green); }
.link-arrow:hover svg { transform: translateX(3px); }

/* ----------------------------------------------------------
   Navigation
   ---------------------------------------------------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(232, 241, 243, 0.78);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--teal);
}
.brand__mark { width: 34px; height: 34px; flex: 0 0 34px; }
.brand__name {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand__name-1 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.01em;
}
.brand__name-2 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.01em;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav__links a {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  border-radius: 999px;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}
.nav__links a:hover { color: var(--teal); background: rgba(15, 76, 92, 0.06); }
.nav__cta {
  background: var(--teal);
  color: var(--white) !important;
}
.nav__cta:hover { background: var(--green) !important; color: var(--white) !important; }

.nav__toggle {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
}
.nav__toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--teal);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav__mobile {
  display: none;
  flex-direction: column;
  padding: 12px 24px 24px;
  border-top: 1px solid var(--line);
  background: var(--bg-tint);
}
.nav__mobile a {
  padding: 14px 0;
  font-weight: 500;
  color: var(--teal);
  border-bottom: 1px solid var(--line);
}
.nav__mobile a:last-child { border-bottom: 0; }

/* ----------------------------------------------------------
   Hero
   ---------------------------------------------------------- */
.hero {
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}
.hero__grid {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: center;
  padding-bottom: 100px;
}

.hero__title {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(40px, 6.2vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: var(--teal);
  margin: 0 0 24px;
}
.hero__title-accent {
  display: inline;
  color: var(--green);
  font-style: italic;
  font-weight: 500;
  font-feature-settings: "ss01";
}

.hero__sub {
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 52ch;
  margin: 0 0 36px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 64px;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 0;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.hero__stats div { display: flex; flex-direction: column; gap: 4px; }
.hero__stats dt {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 36px;
  letter-spacing: -0.02em;
  color: var(--teal);
  line-height: 1;
}
.hero__stats dd {
  margin: 0;
  font-size: 13px;
  line-height: 1.4;
  color: var(--ink-soft);
}

/* Hero art */
.hero__art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.leaf {
  width: 100%;
  max-width: 420px;
  filter: drop-shadow(0 30px 60px rgba(15, 76, 92, 0.25));
  animation: leaf-float 8s ease-in-out infinite;
}
@keyframes leaf-float {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50%      { transform: translateY(-14px) rotate(2deg); }
}

.float-card {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: 0 20px 40px -20px rgba(15, 76, 92, 0.3);
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 160px;
}
.float-card__label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}
.float-card__value {
  font-family: var(--f-display);
  font-weight: 600;
  color: var(--teal);
  font-size: 15px;
}
.float-card--a {
  top: 10%;
  left: -4%;
  animation: float-a 6s ease-in-out infinite;
}
.float-card--b {
  bottom: 12%;
  right: -2%;
  animation: float-b 6s ease-in-out infinite 0.8s;
}
@keyframes float-a { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
@keyframes float-b { 0%,100%{transform:translateY(0)} 50%{transform:translateY(8px)} }

/* Hero marquee */
.hero__marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  overflow: hidden;
  background: var(--bg-tint);
}
.hero__marquee-track {
  display: flex;
  gap: 36px;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  width: max-content;
}
.hero__marquee-track span {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 18px;
  color: var(--teal);
  letter-spacing: -0.01em;
}
.hero__marquee-track span:nth-child(even) { color: var(--green); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ----------------------------------------------------------
   About
   ---------------------------------------------------------- */
.about {
  padding: 120px 0;
  position: relative;
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about__lead p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  margin: 0 0 20px;
}

.values { display: flex; flex-direction: column; gap: 4px; }
.value {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  transition: padding-left 0.3s var(--ease);
}
.value:last-child { border-bottom: 1px solid var(--line); }
.value:hover { padding-left: 12px; }
.value__num {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
  color: var(--green);
  letter-spacing: -0.02em;
}
.value h3 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.015em;
  color: var(--teal);
  margin: 0 0 6px;
}
.value p {
  margin: 0;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* ----------------------------------------------------------
   Services
   ---------------------------------------------------------- */
.services {
  padding: 120px 0;
  background: var(--bg-tint);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.service {
  background: var(--bg-tint);
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
  position: relative;
}
.service:hover {
  background: var(--white);
}
.service:hover .service__num {
  color: var(--green);
}
.service__num {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  transition: color 0.3s var(--ease);
}
.service h3 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.015em;
  color: var(--teal);
  margin: 0;
  line-height: 1.2;
}
.service p {
  margin: 0;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* ----------------------------------------------------------
   Impact strip (dark band)
   ---------------------------------------------------------- */
.impact {
  padding: 100px 0;
  background: var(--teal);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.impact::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(31, 122, 77, 0.4), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(31, 122, 77, 0.25), transparent 60%);
  pointer-events: none;
}
.impact .container { position: relative; }

.impact-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 40px;
}
.impact-list li {
  padding: 16px 24px;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--white);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
  cursor: default;
}
.impact-list li::before {
  content: "";
  width: 7px; height: 7px;
  background: #9BE0B7;
  border-radius: 50%;
  flex: 0 0 7px;
}
.impact-list li:hover {
  background: rgba(155, 224, 183, 0.14);
  border-color: #9BE0B7;
  transform: translateY(-2px);
}

/* ----------------------------------------------------------
   Work / Social proof
   ---------------------------------------------------------- */
.work { padding: 120px 0; }

.work__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}
.case {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}
.case:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 50px -30px rgba(15, 76, 92, 0.35);
  border-color: var(--green);
}
.case__head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px dashed var(--line);
}
.case__year {
  font-family: var(--f-display);
  font-weight: 600;
  color: var(--green);
  font-size: 15px;
}
.case__tag {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--green-100);
  font-weight: 500;
}
.case h3 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.015em;
  color: var(--teal);
  margin: 0 0 10px;
  line-height: 1.2;
}
.case p {
  margin: 0;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.6;
}

.quote {
  margin: 0;
  text-align: center;
  max-width: 760px;
  margin-inline: auto;
  padding: 56px 24px;
  border-top: 1px solid var(--line);
  position: relative;
}
.quote__mark {
  width: 36px; height: 36px;
  color: var(--green);
  margin: 0 auto 20px;
  opacity: 0.7;
}
.quote blockquote {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--teal);
  margin: 0 0 28px;
}
.quote figcaption { display: flex; flex-direction: column; gap: 2px; }
.quote__name {
  font-weight: 600;
  color: var(--teal);
  font-size: 15px;
}
.quote__role {
  font-size: 13px;
  color: var(--ink-soft);
}

/* ----------------------------------------------------------
   Contact
   ---------------------------------------------------------- */
.contact {
  padding: 120px 0;
  background: var(--bg-deep);
  border-top: 1px solid var(--line);
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact__sub {
  font-size: 17px;
  color: var(--ink-soft);
  margin: 0 0 40px;
  max-width: 44ch;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}
.contact__details li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.contact__label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}
.contact__details a {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 18px;
  color: var(--teal);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s var(--ease);
  align-self: flex-start;
}
.contact__details a:hover { border-color: var(--green); }
.contact__details > li > span:not(.contact__label) {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 18px;
  color: var(--teal);
}

.socials { display: flex; gap: 10px; }
.socials a {
  width: 44px; height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--teal);
  border: 1px solid var(--line);
  transition: background 0.2s var(--ease), color 0.2s var(--ease), transform 0.2s var(--ease);
}
.socials a:hover {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-2px);
}
.socials svg { width: 18px; height: 18px; }

/* Form */
.contact__form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  box-shadow: 0 30px 60px -40px rgba(15, 76, 92, 0.35);
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-size: 13px;
  font-weight: 500;
  color: var(--teal);
  letter-spacing: -0.005em;
}
.field input,
.field select,
.field textarea {
  font: inherit;
  font-size: 15px;
  color: var(--ink);
  padding: 12px 14px;
  background: var(--bg-tint);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease), box-shadow 0.2s var(--ease);
  font-family: inherit;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--green);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(31, 122, 77, 0.12);
}
.contact__form .btn { grid-column: 1 / -1; }

.form-status {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 14px;
  color: var(--green);
  min-height: 1em;
}

/* ----------------------------------------------------------
   Footer
   ---------------------------------------------------------- */
.footer {
  background: var(--teal-700);
  color: rgba(255,255,255,0.78);
  padding: 64px 0 32px;
  position: relative;
  z-index: 1;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: start;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
}
.footer__brand .brand__mark { width: 42px; height: 42px; color: var(--white); }
.footer__name {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--white);
}
.footer__rc {
  font-size: 13px;
  margin-top: 2px;
  color: rgba(255,255,255,0.6);
}
.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
}
.footer__nav a {
  font-size: 14px;
  color: rgba(255,255,255,0.78);
  transition: color 0.2s var(--ease);
}
.footer__nav a:hover { color: #9BE0B7; }

.footer__copy {
  grid-column: 1 / -1;
  margin: 32px 0 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}

/* ----------------------------------------------------------
   Scroll reveal — CSS-driven, JS-toggled class
   ---------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ----------------------------------------------------------
   Responsive
   ---------------------------------------------------------- */
@media (max-width: 980px) {
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
  .nav__mobile.is-open { display: flex; }

  .hero { padding-top: 40px; }
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 60px;
  }
  .hero__art { order: -1; max-width: 320px; margin: 0 auto; }
  .leaf { max-width: 280px; }
  .float-card--a { left: -10%; }
  .float-card--b { right: -10%; }

  .about, .services, .work, .contact { padding: 80px 0; }
  .about__grid, .contact__grid { grid-template-columns: 1fr; gap: 48px; }
  .work__grid { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }

  .footer__inner { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .container, .nav__inner, .hero__grid { padding-inline: 20px; }

  .brand__name-1, .brand__name-2 { font-size: 15px; }
  .brand__name { flex-direction: row; gap: 6px; }

  .hero__stats { grid-template-columns: 1fr; gap: 16px; }
  .hero__stats dt { font-size: 30px; }

  .hero__actions { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }

  .contact__form { padding: 24px; grid-template-columns: 1fr; }
  .service { padding: 28px 24px; }

  .impact-list li { font-size: 16px; padding: 14px 20px; }

  .float-card { padding: 10px 14px; min-width: 130px; }
  .float-card__value { font-size: 13px; }
}
