/* =========================================================
   Coker Construction — Peoria, AZ
   Design direction: "By Water" — Instrument Serif modern
   editorial display (with its distinctive high-contrast italic),
   Plus Jakarta Sans humanist geometric body, tracked uppercase
   utility labels. Cool stone/limestone palette with deep lake
   blue + copper-rust accents. Lake Pleasant wave bands as the
   hero signature; em-dash prefix numbering ("—01") throughout.

   Built to read like a modern studio with a confident,
   contemporary voice — distinct from Goodyear's architectural
   feel and Waddell's pastoral feel.
   ========================================================= */

:root {
  /* Palette — cool stone with lake-blue + copper accents */
  --paper: #EEEAE2;
  --paper-deep: #DCD5C6;
  --ink: #0F1518;
  --ink-soft: #4A535C;
  --lake: #1E4E68;
  --lake-bright: #2E6F8F;
  --copper: #A85838;
  --copper-soft: #C97650;
  --gray: #7A848E;
  --rule: rgba(15, 21, 24, 0.15);
  --rule-strong: rgba(15, 21, 24, 0.4);

  /* Type */
  --serif: "Instrument Serif", "Cormorant Garamond", "Times New Roman", Georgia, serif;
  --sans: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Spacing */
  --gutter: clamp(1.5rem, 5vw, 4.5rem);
  --section-y: clamp(4.5rem, 10vw, 8.5rem);
  --max: 1200px;
}

/* Reset / base */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { max-width: 100%; display: block; }
a {
  color: var(--lake);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  text-decoration-color: rgba(30, 78, 104, 0.4);
  transition: text-decoration-color 0.15s ease, color 0.15s ease;
}
a:hover { color: var(--copper); text-decoration-color: var(--copper); }

/* Eyebrow — tracked uppercase sans (third distinct utility style) */
.eyebrow {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lake);
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}
.eyebrow::before {
  content: "—";
  color: var(--lake);
  font-weight: 400;
  letter-spacing: 0;
}

/* Type — Instrument Serif lives for italics */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--ink);
}
h1 { font-size: clamp(3rem, 7vw, 5.4rem); line-height: 0.98; letter-spacing: -0.025em; }
h2 { font-size: clamp(2.2rem, 4.6vw, 3.5rem); line-height: 1.05; letter-spacing: -0.02em; }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.8rem); line-height: 1.18; }
h4 { font-size: 1.1rem; line-height: 1.3; }

/* Italic carries the personality — Instrument Serif's italic is very distinctive */
h1 em, h2 em { font-style: italic; color: var(--copper); font-weight: 400; }

p { margin: 0 0 1.15em; }
p.lead {
  font-size: clamp(1.1rem, 1.65vw, 1.3rem);
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 60ch;
  font-weight: 400;
}

/* Layout primitives */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: var(--section-y) 0; position: relative; }
.section--paper-deep { background: var(--paper-deep); }
.section--ink {
  background: var(--ink);
  color: var(--paper);
}
.section--ink h1, .section--ink h2, .section--ink h3 { color: var(--paper); }
.section--ink p { color: rgba(238, 234, 226, 0.78); }
.section--ink .eyebrow { color: var(--copper-soft); }
.section--ink .eyebrow::before { color: var(--copper-soft); }
.section--ink a { color: var(--copper-soft); }
.section--ink a:hover { color: var(--copper-soft); text-decoration-color: var(--copper-soft); }

.rule { border: 0; height: 1px; background: var(--rule); margin: 2.5rem 0; }
.rule--strong { background: var(--rule-strong); }

/* Hairline + dot rule — modern editorial divider */
.divider-dot {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 3.5rem 0;
}
.divider-dot::before, .divider-dot::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--rule-strong);
}
.divider-dot::after {
  background: var(--rule);
}
.divider-dot span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--copper);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(238, 234, 226, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
}
.brand {
  text-decoration: none;
  color: var(--ink);
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
}
.brand strong {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1;
}
.brand span {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lake);
  line-height: 1;
}
.nav {
  display: flex;
  gap: 2rem;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.nav a {
  text-decoration: none;
  color: var(--ink);
  padding: 0.4rem 0;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s ease;
}
.nav a:hover, .nav a[aria-current="page"] { border-bottom-color: var(--copper); }
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  color: var(--ink);
}

@media (max-width: 760px) {
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--paper);
    padding: 1rem var(--gutter) 1.5rem;
    border-bottom: 1px solid var(--rule);
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 0.85rem 0; border-bottom: 1px solid var(--rule); letter-spacing: 0.12em; }
  .nav-toggle { display: block; }
}

/* Hero — distinct from prior cities: large headline left, then wave-band signature full-width, then stats below */
.hero {
  padding: clamp(4rem, 9vw, 8rem) 0 clamp(2rem, 3vw, 3rem);
  position: relative;
}
.hero__eyebrow { margin-bottom: 1.5rem; }
.hero__title { max-width: 18ch; margin-bottom: 1.75rem; }
.hero__lead { max-width: 56ch; margin-bottom: 2rem; }

/* Lake wave signature — full bleed within wrap */
.wave {
  width: 100%;
  height: auto;
  margin: 3rem 0;
  color: var(--lake);
  opacity: 0.95;
}

/* Hero stats — 4-column grid, modern */
.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--rule-strong);
}
.hero__stat {
  padding-right: 1.5rem;
}
.hero__stat:not(:last-child) {
  border-right: 1px solid var(--rule);
  margin-right: 1.5rem;
}
.hero__stat dt {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lake);
  margin-bottom: 0.5rem;
}
.hero__stat dd {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.3;
}

@media (max-width: 780px) {
  .hero__stats { grid-template-columns: repeat(2, 1fr); gap: 1.5rem 0; }
  .hero__stat { padding-right: 0; padding-bottom: 1rem; }
  .hero__stat:not(:last-child) { border-right: 0; margin-right: 0; border-bottom: 1px solid var(--rule); }
  .hero__stat:nth-child(2) { border-right: 0 !important; margin-right: 0 !important; }
}

/* CTA buttons — squared with sharp corners, modern */
.cta-row { display: flex; flex-wrap: wrap; gap: 0.9rem; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1.05rem 1.65rem;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  border-radius: 2px;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  cursor: pointer;
}
.btn:hover { background: var(--lake); border-color: var(--lake); color: var(--paper); text-decoration: none; }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn__arrow { display: inline-block; font-size: 1rem; transition: transform 0.15s ease; }
.btn:hover .btn__arrow { transform: translateX(4px); }

/* Two-column layouts */
.cols-2 {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr);
  gap: clamp(2rem, 5vw, 4.5rem);
}
@media (max-width: 820px) { .cols-2 { grid-template-columns: 1fr; } }

.section__header { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section__header h2 { margin-top: 0.8rem; max-width: 22ch; }

/* Services — modern editorial with oversized thin-italic numerals (third distinct treatment) */
.services-list { list-style: none; padding: 0; margin: 0; }
.service {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr) minmax(0, 1.4fr);
  gap: 1.5rem 2.5rem;
  padding: 2.25rem 0;
  border-top: 1px solid var(--rule);
  align-items: start;
}
.service:last-child { border-bottom: 1px solid var(--rule); }
.service__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 3.4rem;
  font-weight: 400;
  line-height: 0.85;
  color: var(--copper);
  letter-spacing: -0.04em;
  font-feature-settings: "lnum";
}
.service__title {
  font-family: var(--serif);
  font-size: 1.7rem;
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0;
}
.service__desc {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  padding-top: 0.3rem;
}

@media (max-width: 700px) {
  .service { grid-template-columns: 1fr; gap: 0.7rem; padding: 1.75rem 0; }
  .service__num { font-size: 2.2rem; }
}

/* Neighborhoods — three-zone arrangement (south/central/north) acknowledging Peoria's geography */
.zone {
  margin-bottom: 3rem;
}
.zone__label {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lake);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.zone__label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--rule);
  margin-left: 0.5rem;
}
.neighborhoods {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
}
.neighborhood {
  background: var(--paper);
  padding: 1.5rem 1.5rem 1.6rem;
  border-left: 2px solid var(--lake);
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.neighborhood:hover { border-left-color: var(--copper); }
.section--paper-deep .neighborhood { background: var(--paper); }
.neighborhood__name {
  font-family: var(--serif);
  font-size: 1.3rem;
  line-height: 1.2;
  margin-bottom: 0.4rem;
}
.neighborhood__tag {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray);
}
.neighborhood__note {
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin: 0.75rem 0 0;
  line-height: 1.55;
}

/* Process — em-dash + zero-padded number prefix (matches editorial style) */
.process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  margin-top: 2rem;
}
.process__step {
  padding: 0 1.75rem 0 0;
  position: relative;
  counter-increment: phase;
}
.process__step:not(:last-child) {
  border-right: 1px solid rgba(238, 234, 226, 0.15);
  margin-right: 1.75rem;
}
.process__step::before {
  content: "— " counter(phase, decimal-leading-zero);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper-soft);
  display: block;
  margin-bottom: 1rem;
}
.process { counter-reset: phase; }
.process__step h3 { font-size: 1.3rem; margin-bottom: 0.6rem; }
.process__step p { font-size: 0.95rem; color: rgba(238, 234, 226, 0.75); margin: 0; }

@media (max-width: 720px) {
  .process__step { padding-right: 0; padding-bottom: 1.75rem; }
  .process__step:not(:last-child) { border-right: 0; margin-right: 0; border-bottom: 1px solid rgba(238, 234, 226, 0.15); margin-bottom: 1.75rem; }
}

/* FAQ */
.faq { }
.faq__item {
  border-top: 1px solid var(--rule);
}
.faq__item:last-child { border-bottom: 1px solid var(--rule); }
.faq__q {
  width: 100%;
  background: none;
  border: 0;
  text-align: left;
  padding: 1.85rem 0;
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.3;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}
.faq__q::after {
  content: "+";
  font-family: var(--sans);
  font-weight: 400;
  font-size: 1.4rem;
  color: var(--lake);
  transition: transform 0.2s ease;
  flex-shrink: 0;
  width: 24px;
  text-align: center;
}
.faq__item[open] .faq__q::after { content: "−"; }
.faq__a {
  padding: 0 0 1.85rem;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 68ch;
}
.faq__a p:last-child { margin-bottom: 0; }
.faq__item summary { list-style: none; }
.faq__item summary::-webkit-details-marker { display: none; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info dl { margin: 0; }
.contact-info dt {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lake);
  margin-top: 1.75rem;
}
.contact-info dt:first-of-type { margin-top: 0; }
.contact-info dd { margin: 0.45rem 0 0; font-size: 1.05rem; }

.form { display: grid; gap: 1.4rem; }
.field { display: flex; flex-direction: column; }
.field > label {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lake);
  margin-bottom: 0.55rem;
}
.field input, .field select, .field textarea {
  font-family: var(--sans);
  font-size: 1rem;
  padding: 0.95rem 1rem;
  border: 1px solid var(--rule-strong);
  background: var(--paper);
  color: var(--ink);
  border-radius: 2px;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 2px solid var(--lake);
  outline-offset: 0;
  border-color: var(--lake);
}
.field textarea { min-height: 150px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
@media (max-width: 580px) { .field-row { grid-template-columns: 1fr; } }
.form__submit { justify-self: start; margin-top: 0.5rem; }
.form__msg {
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--lake);
  margin-top: 1rem;
}
.form__msg--error { color: var(--copper); }

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

/* Services checkbox group */
.field--services { border: 0; padding: 0; margin: 0; }
.field--services legend {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lake);
  margin-bottom: 0.8rem;
  padding: 0;
}
.field__hint {
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin-left: 0.5rem;
}
.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.6rem 1rem;
  border: 1px solid var(--rule-strong);
  border-radius: 2px;
  padding: 1.15rem;
  background: var(--paper);
}
.checkbox {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  cursor: pointer;
  font-size: 0.96rem;
  padding: 0.3rem 0;
}
.checkbox input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 1.15rem;
  height: 1.15rem;
  border: 1.5px solid var(--ink-soft);
  background: var(--paper);
  border-radius: 2px;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  margin: 0;
}
.checkbox input[type="checkbox"]:checked {
  background: var(--lake);
  border-color: var(--lake);
}
.checkbox input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 4px;
  height: 9px;
  border: solid var(--paper);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.checkbox input[type="checkbox"]:focus-visible {
  outline: 2px solid var(--lake);
  outline-offset: 2px;
}

.recaptcha-notice {
  font-family: var(--sans);
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-top: 0.85rem;
  line-height: 1.5;
}
.recaptcha-notice a { color: var(--lake); }
.grecaptcha-badge { visibility: hidden !important; }

/* Footer */
.site-footer {
  background: var(--ink);
  color: var(--paper);
  padding: 4.5rem 0 2rem;
}
.site-footer a { color: var(--paper); text-decoration: none; }
.site-footer a:hover { color: var(--copper-soft); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
.footer-col h4 {
  color: var(--copper-soft);
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 0.55rem; font-size: 0.96rem; }
.footer-brand p { color: rgba(238, 234, 226, 0.72); font-size: 0.95rem; max-width: 34ch; }
.footer-bottom {
  border-top: 1px solid rgba(238, 234, 226, 0.15);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(238, 234, 226, 0.55);
}

/* Page-specific intro (subpages) */
.page-intro {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0 clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid var(--rule);
}
.page-intro h1 { max-width: 20ch; margin-bottom: 1.2rem; }
.page-intro p.lead { max-width: 60ch; }

/* Pull quote */
.pullquote {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.2vw, 2.3rem);
  line-height: 1.25;
  font-style: italic;
  color: var(--ink);
  padding: 2.2rem 2rem;
  border-left: 3px solid var(--copper);
  background: var(--paper);
  margin: 2.5rem 0;
  max-width: 38ch;
}
.section--paper-deep .pullquote { background: var(--paper); }
.pullquote cite {
  display: block;
  margin-top: 1.2rem;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-style: normal;
  color: var(--lake);
}

/* Stats — minimal */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0;
  margin: 2.5rem 0;
  border-top: 1px solid var(--rule-strong);
  border-bottom: 1px solid var(--rule);
}
.stat {
  padding: 2rem 1.5rem;
  border-right: 1px solid var(--rule);
}
.stat:last-child { border-right: 0; }
@media (max-width: 700px) {
  .stat { border-right: 0; border-bottom: 1px solid var(--rule); padding: 1.5rem 0; }
  .stat:last-child { border-bottom: 0; }
}
.stat__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 3rem;
  line-height: 1;
  color: var(--copper);
  margin-bottom: 0.4rem;
}
.stat__label {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray);
}

/* Focus states */
:focus-visible {
  outline: 2px solid var(--lake);
  outline-offset: 2px;
}

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


/* ──────────────────────────────────────────────────────────────
   SEO upgrade — split hero hierarchy
   .hero__h1 is the new keyword-targeted H1 (smaller, top of hero)
   .hero__tagline carries the original display copy (large, italic)
   ────────────────────────────────────────────────────────────── */
.hero__h1 {
  font-family: var(--display);
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.1;
  margin: 0 0 1.5rem;
  color: var(--ink-soft, var(--ink));
}

.hero__tagline {
  font-family: var(--display);
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1;
  margin: 0 0 1.75rem;
  color: var(--ink);
  max-width: 18ch;
}

.hero__tagline em {
  font-style: italic;
  color: var(--copper);
}
