:root {
  --green-900: #173b24;
  --green-700: #315f2f;
  --green-600: #4f7d3a;
  --cream: #f7f3e8;
  --cream-2: #eef4e7;
  --text: #3f453f;
  --white: #ffffff;
  --line: rgba(23, 59, 36, .16);
  --shadow: 0 18px 45px rgba(23, 59, 36, .14);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 78px;
  padding: 14px clamp(18px, 4vw, 48px);
  background: linear-gradient(90deg, #092815, var(--green-900));
  color: var(--white);
  box-shadow: 0 8px 26px rgba(7, 27, 13, .22);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: .9;
}

.brand strong,
.brand em,
h1,
h2,
h3,
summary,
.button {
  letter-spacing: 0;
}

.brand strong {
  display: block;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 900;
}

.brand em {
  display: block;
  color: #98c36c;
  font-size: clamp(.8rem, 1.5vw, 1rem);
  font-style: normal;
  font-weight: 900;
}

.brand-mark {
  display: grid;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
}

.brand-mark svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.brand-mark path:first-child {
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.5vw, 30px);
  font-size: .88rem;
  font-weight: 800;
}

.site-nav a {
  color: var(--white);
  text-decoration: none;
}

.site-nav a:not(.nav-cta):hover {
  color: #cce4af;
}

.nav-cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: var(--radius);
  background: var(--green-600);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.2);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: var(--radius);
  background: transparent;
  color: var(--white);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.section-pad {
  padding: clamp(58px, 8vw, 100px) clamp(18px, 4vw, 48px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(380px, 1.14fr);
  align-items: center;
  gap: clamp(42px, 6vw, 88px);
  max-width: calc(var(--max) + 96px);
  min-height: calc(100vh - 78px);
  margin: 0 auto;
}

.hero-copy {
  max-width: 630px;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--green-900);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-weight: 900;
  line-height: .93;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(3.8rem, 8.5vw, 6.9rem);
}

h2 {
  font-size: clamp(2.35rem, 5.8vw, 4.25rem);
}

h3 {
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
}

.hero p {
  max-width: 580px;
  margin: 24px 0 0;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  font-size: .96rem;
  font-weight: 900;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--green-600);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(79, 125, 58, .25);
}

.button-secondary {
  border-color: var(--green-600);
  background: transparent;
  color: var(--green-900);
}

.button-light {
  background: var(--white);
  color: var(--green-900);
}

.button-outline-light {
  border-color: rgba(255,255,255,.65);
  color: var(--white);
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 34px 0 0;
  list-style: none;
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 58px;
  color: var(--green-900);
  font-size: .88rem;
  font-weight: 900;
}

.mini-icon {
  display: inline-grid;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--green-900);
  color: var(--white);
  font-weight: 900;
}

.hero-visual picture,
.hero-visual img {
  display: block;
}

.hero-visual img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 24px 58px rgba(23, 59, 36, .24);
}


.band {
  background: var(--cream-2);
  border-block: 1px solid var(--line);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
}

.section-heading p {
  margin: 16px auto 0;
  font-size: clamp(1rem, 2vw, 1.15rem);
}

.step-grid,
.pricing-grid,
.benefit-grid {
  display: grid;
  max-width: var(--max);
  margin: 0 auto;
  gap: 18px;
}

.step-grid {
  grid-template-columns: repeat(3, 1fr);
}

.step-card,
.price-card,
.benefit-grid article,
.next-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.step-card {
  position: relative;
  padding: 34px 26px 28px;
}

.step-number {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 50%;
  background: var(--green-900);
  color: var(--white);
  font-weight: 900;
}

.step-card p,
.price-card p,
.benefit-grid p {
  margin: 12px 0 0;
}

.pricing-grid {
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
}

.price-card {
  display: flex;
  flex-direction: column;
  min-height: 360px;
  padding: 26px;
}

.price-card.featured {
  border-color: rgba(79, 125, 58, .55);
  background: linear-gradient(180deg, #fff 0%, #f4f9ed 100%);
}

.card-note {
  color: var(--green-600);
  font-size: .86rem;
  font-weight: 900;
}

.price-card ul {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 18px 0;
  list-style: none;
}

.price-card li {
  padding-bottom: 9px;
  border-bottom: 1px solid var(--line);
}

.price-card .button {
  width: 100%;
  margin-top: auto;
}

.addon-price {
  color: var(--green-600);
  font-size: 2.3rem;
  font-weight: 900;
  line-height: 1;
}

.pricing-disclaimer {
  max-width: 860px;
  margin: 24px auto 0;
  color: #586056;
  text-align: center;
  font-size: .95rem;
}

.service-area {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(420px, 1.28fr);
  align-items: center;
  gap: clamp(28px, 5vw, 68px);
  max-width: calc(var(--max) + 96px);
  margin: 0 auto;
}

.area-copy p {
  margin: 18px 0 0;
}

.area-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  margin: 24px 0;
  list-style: none;
}

.area-list li {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream-2);
  color: var(--green-900);
  font-weight: 800;
}

.map-card {
  margin: 0;
}

.map-card svg {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f4f0dd;
  box-shadow: var(--shadow);
}

.map-card figcaption {
  margin-top: 10px;
  color: #5b6458;
  font-size: .9rem;
  text-align: center;
}

.map-shape {
  fill: #e8edd8;
  stroke: var(--green-600);
  stroke-width: 4;
}

.map-road,
.route,
.arrow {
  fill: none;
  stroke-linecap: round;
}

.map-road {
  stroke: #c4cba9;
  stroke-width: 3;
  stroke-dasharray: 12 10;
}

.route {
  stroke: var(--green-600);
  stroke-width: 4;
  stroke-dasharray: 10 10;
}

.map-trees {
  fill: #8eb264;
}

.map-water {
  fill: #a6d2c4;
}

.city circle {
  fill: var(--green-900);
}

.city text {
  fill: var(--green-900);
  font-size: 19px;
  font-weight: 900;
}

.arrow {
  stroke: var(--green-600);
  stroke-width: 4;
}

.approx {
  fill: var(--green-600);
  font-size: 22px;
  font-weight: 900;
  transform: rotate(-12deg);
  transform-origin: 444px 76px;
}

.benefit-grid {
  grid-template-columns: repeat(4, 1fr);
}

.benefit-grid article {
  padding: 26px;
}

.benefit-grid span {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 50%;
  background: var(--green-900);
  color: var(--white);
  font-size: 1.35rem;
  font-weight: 900;
}

.faq-list {
  display: grid;
  max-width: 960px;
  margin: 0 auto;
  gap: 10px;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 24px rgba(23, 59, 36, .08);
}

summary {
  position: relative;
  min-height: 56px;
  padding: 16px 52px 16px 18px;
  color: var(--green-900);
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  position: absolute;
  right: 18px;
  top: 17px;
  content: "+";
  font-size: 1.35rem;
}

details[open] summary::after {
  content: "-";
}

details p {
  margin: 0;
  padding: 0 18px 18px;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, .55fr);
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
  background:
    linear-gradient(90deg, rgba(23, 59, 36, .92), rgba(23, 59, 36, .82)),
    radial-gradient(circle at 12% 25%, rgba(238, 244, 231, .38), transparent 23%),
    var(--green-900);
  color: var(--white);
}

.final-cta > * {
  max-width: var(--max);
}

.final-cta h2,
.final-cta h3 {
  color: var(--white);
}

.final-cta p {
  max-width: 720px;
  margin: 18px 0 0;
  font-size: 1.12rem;
}

.next-card {
  padding: 26px;
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.28);
  box-shadow: none;
}

.next-card ol {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
  counter-reset: steps;
}

.next-card li {
  display: grid;
  grid-template-columns: 34px 1fr;
  column-gap: 12px;
  counter-increment: steps;
}

.next-card li::before {
  content: counter(steps);
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--cream-2);
  color: var(--green-900);
  font-weight: 900;
}

.next-card strong,
.next-card span {
  grid-column: 2;
}

.next-card strong {
  color: var(--white);
}

.next-card span {
  color: rgba(255,255,255,.82);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr .9fr .8fr;
  gap: 30px;
  padding: 38px clamp(18px, 4vw, 48px) 28px;
  background: #082514;
  color: rgba(255,255,255,.82);
}

.site-footer > * {
  max-width: 420px;
}

.site-footer h2 {
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  font-size: .9rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.site-footer p {
  margin: 10px 0 0;
}

.site-footer a {
  color: var(--white);
}

.city-hero {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, 1.05fr);
  align-items: center;
  gap: clamp(32px, 5vw, 70px);
  max-width: calc(var(--max) + 96px);
  margin: 0 auto;
}

.city-hero > div,
.city-content {
  max-width: 820px;
}

.city-hero p:not(.local-label),
.city-content p {
  margin: 18px 0 0;
  font-size: clamp(1.03rem, 2vw, 1.16rem);
}

.local-label {
  margin: 0 0 14px;
  color: var(--green-600);
  font-weight: 900;
  text-transform: uppercase;
}

.city-hero-image,
.city-hero-image img {
  display: block;
}

.city-hero-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.local-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: var(--max);
  margin: 28px auto 0;
}

.local-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 26px rgba(23, 59, 36, .1);
}

.local-grid p {
  margin: 12px 0 0;
}

.local-edge .local-grid {
  margin-top: 0;
}

.local-edge article {
  border-top: 5px solid var(--green-600);
}

.local-steps {
  display: grid;
  gap: 14px;
  padding-left: 1.2rem;
  margin: 22px 0 0;
}

.city-content details {
  margin-top: 10px;
}

.footer-brand {
  margin-bottom: 12px;
}

.copyright {
  grid-column: 1 / -1;
  max-width: none;
  margin-top: 10px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.16);
  font-size: .9rem;
}

.booking-hero {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, .55fr);
  align-items: center;
  gap: clamp(28px, 5vw, 60px);
  max-width: calc(var(--max) + 96px);
  margin: 0 auto;
}

.booking-hero p:not(.local-label) {
  max-width: 760px;
  margin: 20px 0 0;
  font-size: clamp(1.05rem, 2vw, 1.22rem);
}

.booking-steps {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.booking-steps h2 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: .95rem;
  line-height: 1.2;
}

.booking-steps ol {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
  counter-reset: booking-steps;
}

.booking-steps li {
  display: grid;
  grid-template-columns: 34px 1fr;
  column-gap: 12px;
  counter-increment: booking-steps;
}

.booking-steps li::before {
  content: counter(booking-steps);
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--green-900);
  color: var(--white);
  font-weight: 900;
}

.booking-steps strong,
.booking-steps span {
  grid-column: 2;
}

.booking-steps span {
  color: #5a6358;
}

.booking-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
  align-items: start;
  gap: clamp(20px, 4vw, 34px);
  max-width: var(--max);
  margin: 0 auto;
}

.booking-form {
  display: grid;
  gap: 18px;
}

.booking-panel,
.estimate-card,
.booking-confirmation {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.booking-panel {
  padding: 24px;
}

.booking-panel legend {
  padding: 0 8px;
  color: var(--green-900);
  font-weight: 900;
}

.form-grid {
  display: grid;
  gap: 16px;
}

.form-grid.two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.field,
.check-row {
  display: grid;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

.field span,
.check-row span {
  color: var(--green-900);
  font-size: .9rem;
  font-weight: 900;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(23, 59, 36, .28);
  border-radius: var(--radius);
  background: #fffefa;
  color: var(--text);
  font: inherit;
}

.field input,
.field select {
  padding: 0 12px;
}

.field textarea {
  min-height: 118px;
  padding: 12px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 3px solid rgba(79, 125, 58, .2);
  border-color: var(--green-600);
}

.check-row {
  grid-template-columns: 22px 1fr;
  align-items: center;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid rgba(23, 59, 36, .28);
  border-radius: var(--radius);
  background: #fffefa;
}

.check-row input {
  width: 18px;
  height: 18px;
  accent-color: var(--green-600);
}

.booking-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.booking-actions p {
  max-width: 520px;
  margin: 0;
  color: #5a6358;
  font-size: .94rem;
}

.estimate-card {
  position: sticky;
  top: 100px;
  padding: 26px;
}

.estimate-label {
  margin: 0 0 12px;
  color: var(--green-600);
  font-size: .85rem;
  font-weight: 900;
  text-transform: uppercase;
}

.estimate-card output {
  display: block;
  color: var(--green-900);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 900;
  line-height: .95;
  text-transform: uppercase;
}

.estimate-card p:not(.estimate-label) {
  margin: 16px 0 0;
}

.estimate-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.estimate-list span {
  padding: 10px 12px;
  border-radius: var(--radius);
  background: var(--cream-2);
  color: var(--green-900);
  font-size: .92rem;
  font-weight: 900;
}

.booking-confirmation {
  max-width: 760px;
  margin: 24px auto 0;
  padding: 30px;
  text-align: center;
}

.booking-confirmation p {
  margin: 16px auto 0;
}

.booking-confirmation .button {
  margin-top: 22px;
}

.hidden-frame {
  position: absolute;
  width: 1px;
  height: 1px;
  border: 0;
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 1020px) {
  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border-radius: var(--radius);
    background: var(--green-900);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 10px 8px;
  }

  .nav-cta {
    margin-top: 4px;
  }

  .nav-toggle {
    display: block;
  }

  .hero,
  .service-area,
  .final-cta,
  .city-hero,
  .booking-hero,
  .booking-shell {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 54px;
  }

  .pricing-grid,
  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .estimate-card {
    position: static;
    order: -1;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 68px;
    padding: 12px 16px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }

  .brand strong {
    font-size: 1.18rem;
  }

  .brand em {
    font-size: .72rem;
  }

  .site-nav {
    left: 10px;
    right: 10px;
  }

  .section-pad {
    padding: 44px 18px;
  }

  .hero {
    gap: 22px;
    padding-top: 36px;
    padding-bottom: 44px;
  }

  h1 {
    font-size: clamp(3rem, 14.5vw, 4.4rem);
    line-height: .9;
  }

  h2 {
    font-size: clamp(2.15rem, 11vw, 3.25rem);
  }

  h3 {
    font-size: 1.35rem;
  }

  .hero p {
    margin-top: 16px;
    font-size: 1.04rem;
    line-height: 1.48;
  }

  .button-row {
    gap: 10px;
    margin-top: 22px;
  }

  .button {
    min-height: 52px;
    padding-inline: 18px;
  }

  .hero-visual img {
    aspect-ratio: 4 / 3;
    border-radius: 18px;
    box-shadow: 0 16px 34px rgba(23, 59, 36, .18);
    object-position: center;
  }

  .trust-list,
  .step-grid,
  .pricing-grid,
  .benefit-grid,
  .local-grid,
  .area-list,
  .form-grid.two-col,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero-copy .button,
  .final-cta .button {
    width: 100%;
  }

  .trust-list li {
    min-height: 46px;
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(238, 244, 231, .7);
    font-size: .9rem;
  }

  .mini-icon {
    flex-basis: 30px;
    width: 30px;
    height: 30px;
  }

  .section-heading {
    margin-bottom: 26px;
    text-align: left;
  }

  .section-heading p {
    font-size: 1rem;
  }

  .step-card,
  .price-card,
  .benefit-grid article,
  .next-card {
    box-shadow: 0 10px 26px rgba(23, 59, 36, .1);
  }

  .step-card,
  .price-card,
  .benefit-grid article,
  .booking-panel,
  .estimate-card {
    padding: 22px;
  }

  .booking-actions {
    display: grid;
  }

  .booking-actions .button {
    width: 100%;
  }

  .price-card {
    min-height: auto;
  }

  .price-card .button {
    margin-top: 20px;
  }

  .service-area {
    gap: 28px;
  }

  .area-copy p {
    margin-top: 14px;
  }

  .map-card svg {
    min-height: 260px;
    box-shadow: 0 10px 26px rgba(23, 59, 36, .1);
  }

  .city text {
    font-size: 14px;
  }

  .approx {
    display: none;
  }

  .final-cta {
    padding-block: 48px;
  }

  .final-cta p {
    font-size: 1.02rem;
  }

  .site-footer {
    gap: 24px;
  }

  .city-hero {
    gap: 24px;
  }

  .city-hero-image {
    order: -1;
  }

  .city-hero-image img {
    aspect-ratio: 4 / 3;
    border-radius: 18px;
  }

  .copyright {
    grid-column: auto;
  }
}

@media (max-width: 430px) {
  .brand {
    gap: 8px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }

  .brand strong {
    font-size: 1.05rem;
  }

  .brand em {
    font-size: .68rem;
  }

  h1 {
    font-size: clamp(2.75rem, 15vw, 3.75rem);
  }

  .hero-copy {
    max-width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
