/* North Dallas Renovations - homepage concept
   Palette taken from their own site tokens and their own logo file.
   --steel, --slate, --steel-soft, --mist are verbatim from their live CSS :root.
   --stone is sampled from their logo lockup. --ink is their slate deepened for band use. */

:root {
  --ink:        #16262e;
  --ink-2:      #1e3540;
  --slate:      #2d4e5f;
  --steel:      #34657f;
  --steel-soft: #869aa7;
  --mist:       #bdd6e6;
  --mist-2:     #c9d8e2;
  --stone:      #5d5e5a;
  --stone-deep: #4a4b47;
  --paper:      #f2f4f5;
  --paper-2:    #e7ebed;
  --white:      #ffffff;

  --hair-dark:  rgba(189, 214, 230, 0.22);
  --hair-light: rgba(22, 38, 46, 0.14);

  --font-display: "Podkova", Georgia, "Times New Roman", serif;
  --font-body:    "Ruda", "Helvetica Neue", Arial, sans-serif;

  --wrap:      min(90%, 1100px);
  --wrap-wide: min(94vw, 1480px);
  --pad-y:     clamp(4.5rem, 9vw, 8.5rem);
  --pad-y-sm:  clamp(3rem, 6vw, 5.5rem);
  --nav-h:     5.25rem;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--stone-deep);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.72;
  letter-spacing: 0.005em;
  overflow-x: hidden;
}

/* height:auto is load-bearing: the intrinsic height attributes on these
   img tags are presentational hints that otherwise defeat aspect-ratio */
img { max-width: 100%; height: auto; display: block; }

a { color: inherit; }

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

.band--dark :focus-visible { outline-color: var(--mist); }

/* ---------- type ---------- */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  margin: 0;
  letter-spacing: -0.022em;
  line-height: 1.1;
  color: var(--ink);
}

.band--dark h1, .band--dark h2, .band--dark h3, .band--dark h4 { color: var(--white); }

.h-sect {
  font-size: clamp(1.95rem, 3.6vw, 3.05rem);
  max-width: 19ch;
}

.lead {
  font-size: clamp(1.0625rem, 1.35vw, 1.1875rem);
  line-height: 1.75;
  max-width: 62ch;
}

p { margin: 0 0 1.15em; max-width: 68ch; }
p:last-child { margin-bottom: 0; }

.label {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--steel);
  margin: 0 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.label::after {
  content: "";
  height: 1px;
  flex: 1;
  max-width: 5rem;
  background: currentColor;
  opacity: 0.55;
}

.band--dark .label { color: var(--mist); }

/* ---------- bands ---------- */

.band { padding: var(--pad-y) 0; position: relative; }
.band--dark  { background: var(--ink);   color: var(--mist-2); }
.band--dark2 { background: var(--ink-2); color: var(--mist-2); }
.band--paper { background: var(--paper); color: var(--stone-deep); }
.band--white { background: var(--white); color: var(--stone-deep); }

.wrap      { width: var(--wrap);      margin-inline: auto; }
.wrap-wide { width: var(--wrap-wide); margin-inline: auto; }

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 3rem;
  padding: 0.75rem 1.6rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  background: var(--steel);
  color: var(--white);
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
  cursor: pointer;
}

.btn:hover { background: var(--slate); }

.btn__tick {
  width: 1.5rem;
  height: 1px;
  background: currentColor;
  transition: width 0.3s var(--ease);
  flex: none;
}

.btn:hover .btn__tick { width: 2.25rem; }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--hair-light);
}

.btn--ghost:hover { background: transparent; border-color: var(--steel); color: var(--steel); }

.band--dark .btn--ghost, .band--dark2 .btn--ghost, .hero .btn--ghost {
  color: var(--white);
  border-color: rgba(189, 214, 230, 0.45);
}

.band--dark .btn--ghost:hover, .band--dark2 .btn--ghost:hover, .hero .btn--ghost:hover {
  color: var(--mist);
  border-color: var(--mist);
}

/* ---------- nav ---------- */

.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease);
  border-bottom: 1px solid transparent;
}

/* scrim so the white nav type still reads while the bar is transparent
   over the light half of the hero photograph */
.nav::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(22, 38, 46, 0.82) 0%, rgba(22, 38, 46, 0.55) 60%, rgba(22, 38, 46, 0) 100%);
  pointer-events: none;
  transition: opacity 0.35s var(--ease);
}

.nav.is-solid {
  background: rgba(22, 38, 46, 0.97);
  border-bottom-color: var(--hair-dark);
}

.nav.is-solid::before { opacity: 0; }

.nav__inner {
  position: relative;
  z-index: 1;
  width: var(--wrap-wide);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.5rem);
}

.nav__logo { margin-right: auto; display: block; line-height: 0; }

.nav__logo img {
  width: auto;
  height: 3.15rem;
  max-width: 11rem;
  object-fit: contain;
}

.nav__links { display: flex; align-items: center; gap: clamp(1rem, 2.2vw, 2.1rem); }

.nav__link {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  padding: 0.6rem 0;
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease);
}

.nav__link:hover { color: var(--mist); border-bottom-color: var(--mist); }

.nav__tel {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.nav__tel:hover { color: var(--mist); }

.burger {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid var(--hair-dark);
  cursor: pointer;
  padding: 0;
}

.burger span {
  display: block;
  width: 1.15rem;
  height: 1px;
  background: var(--white);
  position: relative;
}

.burger span::before, .burger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--white);
}

.burger span::before { top: -0.34rem; }
.burger span::after  { top:  0.34rem; }

/* drawer is a body-level sibling of the nav so its own close control
   shares its stacking context and can never be painted over */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  padding: 1.5rem clamp(1.5rem, 6vw, 3rem) 3rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-1.25rem);
  transition: opacity 0.32s var(--ease), transform 0.32s var(--ease), visibility 0.32s;
}

.drawer.is-open { opacity: 1; visibility: visible; transform: none; }

.drawer__top { display: flex; align-items: center; justify-content: space-between; }

.drawer__top img { width: auto; height: 3rem; max-width: 10rem; object-fit: contain; }

.drawer__close {
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid var(--hair-dark);
  color: var(--white);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  font-family: var(--font-body);
}

.drawer__links {
  margin-top: auto;
  margin-bottom: auto;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.drawer__links a {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 7vw, 2.4rem);
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--hair-dark);
}

.drawer__tel {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--mist);
  text-decoration: none;
}

/* ---------- hero ---------- */

.hero {
  background: var(--ink);
  color: var(--mist-2);
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 53fr) minmax(0, 47fr);
  align-items: stretch;
  position: relative;
  overflow: hidden;
}

.hero__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + clamp(2rem, 5vw, 4rem)) clamp(1.75rem, 5vw, 5.5rem) clamp(2.5rem, 5vw, 4rem)
           max(clamp(1.75rem, 5vw, 5.5rem), calc((100vw - min(94vw, 1480px)) / 2));
}

.hero__rule {
  height: 1px;
  width: 0;
  background: var(--steel-soft);
  margin-bottom: 2rem;
}

.hero h1 {
  font-size: clamp(2.3rem, 4.35vw, 3.9rem);
  line-height: 1.08;
  letter-spacing: -0.028em;
  color: var(--white);
  max-width: 17ch;
}

.hero__sub {
  margin: clamp(1.5rem, 2.5vw, 2.15rem) 0 0;
  font-size: clamp(1.0625rem, 1.25vw, 1.1875rem);
  line-height: 1.72;
  color: var(--mist-2);
  max-width: 46ch;
}

.hero__cta { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: clamp(1.9rem, 3vw, 2.6rem); }

.hero__meta {
  margin-top: clamp(2.4rem, 5vw, 4rem);
  padding-top: 1.5rem;
  border-top: 1px solid var(--hair-dark);
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem clamp(1.25rem, 3vw, 2.75rem);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--steel-soft);
}

.hero__media { position: relative; overflow: hidden; min-height: 45vh; }

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
}

.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(22, 38, 46, 0.75) 0%, rgba(22, 38, 46, 0.18) 32%, rgba(22, 38, 46, 0) 52%);
  pointer-events: none;
}

.hero__cap {
  position: absolute;
  left: 0;
  bottom: 0;
  max-width: 100%;
  background: var(--ink);
  color: var(--mist-2);
  padding: 0.85rem 1.4rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* ---------- intro ---------- */

.intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}

.intro__body p { max-width: 60ch; }

.intro__figure { position: relative; }

.intro__figure img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }

.intro__figure figcaption {
  margin-top: 0.9rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--steel);
}

/* ---------- services ---------- */

.svc {
  display: grid;
  grid-template-columns: minmax(0, 47fr) minmax(0, 53fr);
  gap: clamp(2rem, 4.5vw, 4.5rem);
  align-items: center;
  padding: clamp(2.5rem, 5vw, 4.25rem) 0;
  border-top: 1px solid var(--hair-light);
}

.svc:nth-child(even) .svc__media { order: 2; }

.svc__media img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }

.svc__media figcaption {
  margin-top: 0.8rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone);
}

.svc__n {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--steel);
  display: block;
  margin-bottom: 0.9rem;
}

.svc h3 { font-size: clamp(1.5rem, 2.35vw, 2.05rem); margin-bottom: 0.9rem; }

.svc p { max-width: 46ch; }

.svc--draw .svc__media img {
  aspect-ratio: auto;
  background: var(--white);
  border: 1px solid var(--hair-light);
  padding: clamp(0.75rem, 2vw, 1.5rem);
}

/* ---------- work index ---------- */

.work__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
  margin-top: clamp(2.25rem, 4vw, 3.25rem);
}

.work__list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--hair-dark); }

.work__row {
  width: 100%;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.25rem;
  text-align: left;
  background: none;
  border: 0;
  border-bottom: 1px solid var(--hair-dark);
  color: var(--mist-2);
  padding: clamp(1.05rem, 2.2vw, 1.6rem) 0;
  cursor: pointer;
  font-family: var(--font-body);
  transition: color 0.28s var(--ease), padding-left 0.28s var(--ease);
}

.work__row:hover, .work__row.is-active { color: var(--white); padding-left: 0.75rem; }

.work__title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.015em;
}

.work__kind {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--steel-soft);
  white-space: nowrap;
  flex: none;
}

.work__row.is-active .work__kind { color: var(--mist); }

.work__stage { position: relative; aspect-ratio: 4 / 3; background: var(--ink-2); overflow: hidden; }

.work__stage img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}

.work__stage img.is-shown { opacity: 1; }

.work__thumb { display: none; }

/* ---------- process ---------- */

.proc__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.steps { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--hair-light); }

.steps li {
  display: grid;
  grid-template-columns: 3.5rem minmax(0, 1fr);
  gap: 1.25rem;
  align-items: baseline;
  padding: clamp(0.95rem, 2vw, 1.35rem) 0;
  border-bottom: 1px solid var(--hair-light);
}

.steps b {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--steel);
}

.steps span {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.85vw, 1.5rem);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.015em;
}

.aside { border-top: 1px solid var(--hair-light); }

.aside div {
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--hair-light);
  font-size: 0.98rem;
  line-height: 1.6;
}

.aside strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.2rem;
}

/* ---------- recognition ---------- */

.awards { list-style: none; margin: clamp(2rem, 4vw, 3rem) 0 0; padding: 0; border-top: 1px solid var(--hair-dark); }

.awards li {
  display: grid;
  grid-template-columns: 8.5rem minmax(0, 1fr);
  gap: 1.25rem;
  align-items: baseline;
  padding: clamp(0.95rem, 2vw, 1.4rem) 0;
  border-bottom: 1px solid var(--hair-dark);
}

.awards b {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--mist);
  white-space: nowrap;
}

.awards span {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.75vw, 1.4rem);
  font-weight: 500;
  color: var(--white);
  letter-spacing: -0.012em;
}

/* ---------- area ---------- */

.area__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

.area__list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--hair-light); }

.area__list li {
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--hair-light);
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  font-weight: 500;
  color: var(--ink);
}

.addr { font-style: normal; line-height: 1.85; }

.addr a {
  color: var(--steel);
  text-decoration: none;
  border-bottom: 1px solid var(--hair-light);
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
}

.addr a:hover { border-bottom-color: var(--steel); }

/* ---------- contact ---------- */

.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}

.form { display: grid; gap: 1.1rem; }

.form__row { display: grid; gap: 1.1rem; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }

.field { display: block; }

.field > span {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 0.5rem;
}

.field input, .field select, .field textarea {
  width: 100%;
  min-height: 3rem;
  padding: 0.7rem 0.9rem;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--hair-light);
  border-radius: 2px;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.field textarea { min-height: 7.5rem; resize: vertical; }

.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5 6 6.5 11 1.5' fill='none' stroke='%2334657f' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 0.75rem;
  padding-right: 2.5rem;
}

.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--steel);
  box-shadow: 0 2px 10px rgba(52, 101, 127, 0.16);
}

.form__note { font-size: 0.85rem; color: var(--stone); margin: 0; }

.form__done {
  display: none;
  padding: 1.4rem;
  border: 1px solid var(--steel);
  background: var(--white);
  font-size: 1.0625rem;
}

/* ---------- footer ---------- */

.foot { background: var(--ink); color: var(--mist-2); padding: var(--pad-y-sm) 0 2.25rem; }

.foot__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}

.foot__logo img { width: auto; height: 4rem; max-width: 13rem; object-fit: contain; }

.foot h4 {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--steel-soft);
  margin-bottom: 1.1rem;
}

.foot ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.15rem; }

.foot li { line-height: 1.7; }

.foot a {
  color: var(--mist-2);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
}

.foot a:hover { color: var(--white); }

.foot__legal {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding-top: 1.4rem;
  border-top: 1px solid var(--hair-dark);
  font-size: 0.78rem;
  color: var(--steel-soft);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: space-between;
}

/* ---------- 404 ---------- */

.err {
  min-height: 100vh;
  min-height: 100svh;
  background: var(--ink);
  color: var(--mist-2);
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 3rem) 0 4rem;
}

.err__code {
  font-family: var(--font-display);
  font-size: clamp(5rem, 18vw, 12rem);
  font-weight: 700;
  line-height: 0.9;
  color: rgba(189, 214, 230, 0.16);
  letter-spacing: -0.04em;
}

.err h1 { font-size: clamp(1.9rem, 4vw, 3rem); margin: 1.5rem 0 1rem; color: var(--white); }

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

html.js .reveal { opacity: 0; transform: translateY(1.5rem); }

@media (prefers-reduced-motion: reduce) {
  html.js .reveal { opacity: 1 !important; transform: none !important; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* ---------- responsive ---------- */

@media (max-width: 1024px) {
  .nav__links { display: none; }
  .nav__tel { display: none; }
  .burger { display: flex; }

  .hero {
    grid-template-columns: minmax(0, 1fr);
    min-height: 0;
    height: auto;
  }

  .hero__text {
    padding: calc(var(--nav-h) + clamp(2.5rem, 8vw, 4rem)) clamp(1.5rem, 5vw, 3rem) clamp(2.5rem, 6vw, 3.5rem);
  }

  .hero h1 { max-width: 20ch; }
  .hero__sub { max-width: 56ch; }
  .hero__media { min-height: 0; height: 58vh; }

  .intro__grid,
  .work__grid,
  .proc__grid,
  .area__grid,
  .contact__grid { grid-template-columns: minmax(0, 1fr); }

  .work__stage { display: none; }
  .work__row { display: block; padding-bottom: 0; }
  .work__row:hover, .work__row.is-active { padding-left: 0; }
  .work__kind { display: block; margin-bottom: 0.5rem; }
  .work__thumb { display: block; margin: 1rem 0 1.25rem; aspect-ratio: 3 / 2; object-fit: cover; width: 100%; }

  .foot__grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .foot__logo { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  .svc { grid-template-columns: minmax(0, 1fr); }
  .svc:nth-child(even) .svc__media { order: 0; }
  .form__row { grid-template-columns: minmax(0, 1fr); }
  .steps li { grid-template-columns: 2.75rem minmax(0, 1fr); gap: 0.9rem; }
  .awards li { grid-template-columns: minmax(0, 1fr); gap: 0.3rem; }
  .foot__grid { grid-template-columns: minmax(0, 1fr); }
  .hero__media { height: 46vh; }
}
