:root {
  color-scheme: light;
  --paper: #f5f6f2;
  --wash: #e6e9df;
  --ink: #11120f;
  --muted: #696d64;
  --line: #d3d8ce;
  --moss: #4f6243;
  --brick: #a7563e;
  --white: #ffffff;
  --charcoal: #171815;
  --shadow: 0 24px 70px rgba(17, 18, 15, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, Avenir, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

@keyframes heroImageIn {
  from {
    transform: scale(1.08);
    opacity: 0.72;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes heroTextIn {
  from {
    transform: translate3d(0, 34px, 0);
    opacity: 0;
  }

  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes lineIn {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

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

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

p,
h1,
h2,
h3,
dl,
dd,
figure,
blockquote {
  margin: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 2rem;
  min-height: 74px;
  padding: 0 5%;
  color: var(--white);
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(245, 246, 242, 0.94);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}

.brand {
  font-weight: 800;
  font-size: 1rem;
}

.desktop-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 0.92rem;
}

.desktop-nav a {
  display: inline-flex;
  gap: 0.35rem;
  align-items: center;
  color: inherit;
  opacity: 0.86;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  opacity: 1;
}

.desktop-nav span {
  color: var(--brick);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border: 1px solid currentColor;
  border-radius: 4px;
  padding: 0.55rem 0.8rem;
  font-size: 0.88rem;
  font-weight: 750;
}

.menu-button,
.menu-close {
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
}

.menu-button span {
  display: block;
  width: 26px;
  height: 2px;
  background: currentColor;
}

.menu-button span + span {
  margin-top: 6px;
}

.menu-panel {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  align-content: center;
  min-height: 100svh;
  padding: 2rem 7%;
  background: var(--charcoal);
  color: var(--white);
  transform: translateY(-100%);
  transition: transform 320ms ease;
}

.menu-panel.is-open {
  transform: translateY(0);
}

.menu-close {
  position: absolute;
  top: 1.6rem;
  right: 7%;
  padding: 0.7rem 0;
  color: var(--white);
}

.menu-panel nav {
  display: grid;
  gap: 1rem;
}

.menu-panel a {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  align-items: baseline;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  padding: 1rem 0;
  font-size: 2.6rem;
  font-weight: 700;
}

.menu-panel span {
  color: #c77759;
  font-size: 1rem;
  font-weight: 600;
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 88svh;
  overflow: hidden;
  background: var(--charcoal);
  color: var(--white);
}

.hero-premium {
  min-height: 94svh;
}

.hero > img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  animation: heroImageIn 1400ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.52);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.2rem;
  max-width: 960px;
  padding: 9rem 5% 4.5rem;
}

.hero-content > * {
  animation: heroTextIn 820ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-content > *:nth-child(2) {
  animation-delay: 90ms;
}

.hero-content > *:nth-child(3) {
  animation-delay: 180ms;
}

.hero-content > *:nth-child(4) {
  animation-delay: 270ms;
}

.eyebrow {
  color: var(--brick);
  font-size: 0.92rem;
  font-weight: 700;
}

.hero .eyebrow {
  color: #f2b39d;
}

h1 {
  max-width: 12ch;
  font-size: 6.2rem;
  line-height: 0.95;
  font-weight: 800;
}

h2 {
  font-size: 3.2rem;
  line-height: 1.05;
  font-weight: 750;
}

h3 {
  font-size: 1.1rem;
  line-height: 1.25;
}

.hero-copy {
  max-width: 680px;
  font-size: 1.28rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-top: 0.4rem;
}

.hero-metrics {
  position: absolute;
  z-index: 2;
  right: 5%;
  bottom: 4.5rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(110px, 1fr));
  gap: 0.75rem;
  max-width: 520px;
  color: var(--white);
}

.hero-metrics div {
  border-top: 1px solid rgba(255, 255, 255, 0.45);
  padding-top: 0.85rem;
}

.hero-metrics span {
  display: block;
  font-size: 1.7rem;
  line-height: 1;
  font-weight: 800;
}

.hero-metrics p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid currentColor;
  border-radius: 4px;
  padding: 0.8rem 1.1rem;
  font-weight: 700;
}

.button.light {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}

.button.ghost {
  color: var(--white);
}

.intro-band,
.projects-index,
.process-section {
  padding: 5rem 5%;
}

.section-kicker {
  position: relative;
  display: grid;
  grid-template-columns: 4rem 1fr;
  align-items: center;
  border-top: 0;
  padding-top: 1rem;
  margin-bottom: 2rem;
  color: var(--muted);
  font-weight: 700;
}

.section-kicker::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: var(--line);
  transform: scaleX(0);
  transform-origin: left;
}

.section-kicker.is-visible::before {
  animation: lineIn 850ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.section-kicker span {
  color: var(--brick);
}

.intro-grid,
.section-heading,
.process-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  gap: 3rem;
  align-items: start;
}

.intro-copy,
.section-heading p {
  display: grid;
  gap: 1rem;
  color: var(--muted);
  font-size: 1.08rem;
}

.studio-quote {
  margin-top: 2.2rem;
  max-width: 760px;
  border-left: 2px solid var(--brick);
  padding-left: 1.1rem;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.35;
}

.studio-strip {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 1rem;
  margin-top: 3rem;
}

.studio-strip img {
  height: 360px;
  object-fit: cover;
  border-radius: 6px;
  filter: saturate(0.9);
  transition: filter 500ms ease, transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.studio-strip img:hover {
  filter: saturate(1.04);
  transform: translateY(-8px) scale(1.015);
}

.studio-strip img:nth-child(2) {
  margin-top: 3rem;
}

.studio-strip img:nth-child(3) {
  margin-top: 1.5rem;
}

.projects-index {
  position: relative;
  background: var(--white);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 3rem;
}

.work-card {
  display: grid;
  gap: 0.55rem;
  min-width: 0;
}

.work-card.large {
  grid-column: span 2;
}

.work-card img {
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  border-radius: 6px;
  background: var(--wash);
  transition: transform 820ms cubic-bezier(0.16, 1, 0.3, 1), filter 420ms ease;
}

.work-card.large img {
  aspect-ratio: 16 / 9;
}

.work-card span {
  color: var(--brick);
  font-size: 0.86rem;
  font-weight: 760;
}

.work-card h3 {
  font-size: 1.45rem;
}

.work-card p {
  color: var(--muted);
}

.work-card:hover img,
.work-card:focus-visible img {
  filter: saturate(1.06);
  transform: translateY(-8px) scale(1.012);
}

.all-work {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.project-table.compact {
  margin-top: 4rem;
}

.project-table {
  display: grid;
  margin-top: 3rem;
  border-top: 1px solid var(--line);
}

.project-row {
  position: relative;
  display: grid;
  grid-template-columns: 4rem minmax(12rem, 1.2fr) minmax(9rem, 0.7fr) minmax(12rem, 1fr) 5rem;
  gap: 1.2rem;
  align-items: center;
  min-height: 92px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  transition: color 240ms ease, padding-left 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.project-row::before {
  content: "";
  position: absolute;
  inset: auto 0 -1px 0;
  height: 2px;
  background: var(--brick);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.project-row:hover,
.project-row:focus-visible {
  color: var(--moss);
  padding-left: 0.8rem;
}

.project-row:hover::before,
.project-row:focus-visible::before {
  transform: scaleX(1);
}

.project-number,
.project-type,
.project-location,
.project-year {
  color: var(--muted);
}

.project-name {
  font-size: 1.55rem;
  font-weight: 750;
}

.project-preview {
  pointer-events: none;
  position: fixed;
  z-index: 40;
  top: 8rem;
  left: 5%;
  width: 330px;
  aspect-ratio: 4 / 3;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0) scale(0.94);
  transition: opacity 160ms ease, transform 320ms cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow);
}

.project-preview.is-visible {
  opacity: 1;
  transform: translate3d(-50%, -50%, 0) scale(1);
}

.project-preview img {
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

.project-feature {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: 3rem;
  padding: 5rem 5%;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.project-feature.accent {
  background: var(--wash);
}

.project-meta {
  position: sticky;
  top: 98px;
  align-self: start;
  display: grid;
  gap: 1.5rem;
}

.project-meta h2 {
  font-size: 2.8rem;
}

.project-meta p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.03rem;
}

.project-meta dl {
  display: grid;
  gap: 1rem;
  padding-top: 0.5rem;
}

.project-meta div {
  display: grid;
  gap: 0.15rem;
  border-top: 1px solid var(--line);
  padding-top: 0.8rem;
}

.project-meta dt {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
}

.project-meta dd {
  font-size: 1rem;
  font-weight: 650;
}

.project-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-items: start;
}

.project-gallery figure {
  overflow: hidden;
  border-radius: 6px;
  background: #d8ddd3;
  clip-path: inset(0 0 0 0 round 6px);
}

.project-gallery figure.wide {
  grid-column: 1 / -1;
}

.project-gallery img {
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  transition: transform 820ms cubic-bezier(0.16, 1, 0.3, 1), filter 500ms ease;
}

.project-gallery figure.wide img {
  aspect-ratio: 16 / 9;
}

.project-gallery figure:hover img {
  filter: saturate(1.05);
  transform: scale(1.035);
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 54px, 0);
  transition: opacity 820ms cubic-bezier(0.16, 1, 0.3, 1), transform 820ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.project-gallery figure.reveal,
.studio-strip img.reveal {
  transform: translate3d(0, 64px, 0) scale(0.985);
}

.project-gallery figure.reveal.is-visible,
.studio-strip img.reveal.is-visible {
  transform: translate3d(0, 0, 0) scale(1);
}

.studio-strip img.reveal.is-visible:hover {
  transform: translateY(-8px) scale(1.015);
}

.project-gallery figure.reveal img,
.studio-strip img.reveal {
  transition-delay: var(--reveal-delay, 0ms);
}

.process-section {
  background: var(--white);
}

.services-section {
  padding: 5rem 5%;
  background: var(--paper);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  margin-top: 3rem;
  border: 1px solid var(--line);
}

.service-item {
  display: grid;
  gap: 1rem;
  min-height: 280px;
  padding: 1.4rem;
  background: var(--paper);
}

.service-item span {
  color: var(--brick);
  font-weight: 800;
}

.service-item h3 {
  align-self: end;
  font-size: 1.45rem;
}

.service-item p {
  color: var(--muted);
}

.cta-strip {
  display: grid;
  gap: 1.2rem;
  padding: 5rem 5%;
  background: var(--moss);
  color: var(--white);
}

.cta-strip h2 {
  max-width: 860px;
}

.cta-strip .eyebrow {
  color: #f2b39d;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.floating-contact {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 70;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  padding: 0.72rem 1rem;
  background: var(--brick);
  color: var(--white);
  box-shadow: var(--shadow);
  font-size: 0.9rem;
  font-weight: 800;
}

.subpage-hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 68svh;
  overflow: hidden;
  background: var(--charcoal);
  color: var(--white);
}

.subpage-hero > img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  animation: heroImageIn 1400ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.project-page-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 2rem;
  align-items: end;
  min-height: 88svh;
  padding: 8rem 5% 4rem;
  background: var(--charcoal);
  color: var(--white);
}

.project-page-copy {
  display: grid;
  gap: 1rem;
}

.project-page-copy h1 {
  max-width: 11ch;
}

.project-page-copy p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.2rem;
}

.project-page-cover {
  display: grid;
  place-items: center;
  overflow: visible;
  border-radius: 6px;
}

.project-page-cover img {
  width: auto;
  max-width: 100%;
  max-height: min(620px, 68svh);
  aspect-ratio: auto;
  height: auto;
  object-fit: contain;
}

.project-brief {
  padding: 5rem 5%;
  background: var(--paper);
}

.project-brief-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.7fr);
  gap: 3rem;
}

.project-brief h2 {
  font-size: 2.2rem;
  line-height: 1.18;
}

.project-story {
  display: grid;
  gap: 1.4rem;
}

.project-story blockquote {
  max-width: 720px;
  border-left: 2px solid var(--brick);
  padding-left: 1rem;
  color: var(--moss);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.3vw, 2.15rem);
  line-height: 1.28;
}

.details-list {
  display: grid;
  gap: 1rem;
}

.details-list div {
  border-top: 1px solid var(--line);
  padding-top: 0.85rem;
}

.details-list dt {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.details-list dd {
  font-weight: 700;
}

.scope-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding: 2rem 0 0;
  margin: 0;
  list-style: none;
}

.scope-list li {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.55rem 0.8rem;
  color: var(--muted);
}

.project-page-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-items: start;
  padding: 0 5% 5rem;
  background: var(--paper);
}

.project-page-gallery figure {
  display: grid;
  place-items: center;
  align-self: start;
  overflow: visible;
  border-radius: 6px;
  padding: clamp(0.45rem, 1vw, 0.75rem);
  background: var(--wash);
}

.project-page-gallery figure.wide {
  grid-column: 1 / -1;
}

.project-page-gallery img {
  width: auto;
  max-width: 100%;
  max-height: min(760px, 74svh);
  aspect-ratio: auto;
  height: auto;
  object-fit: contain;
  transition: filter 420ms ease;
}

.project-page-gallery figure.wide img {
  aspect-ratio: auto;
  max-height: min(700px, 68svh);
}

.project-page-gallery figure.portrait img {
  max-height: min(720px, 72svh);
}

.project-page-gallery figure:hover img {
  filter: saturate(1.05);
}

.next-project {
  display: grid;
  gap: 1rem;
  padding: 5rem 5%;
  background: var(--white);
}

.next-project a {
  display: grid;
  grid-template-columns: 4rem 1fr auto;
  gap: 1rem;
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1.4rem 0;
}

.next-project span,
.next-project em {
  color: var(--muted);
  font-style: normal;
}

.next-project strong {
  font-size: 2rem;
}

.process-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.process-list article {
  display: grid;
  grid-template-columns: 3.2rem 0.48fr 1fr;
  gap: 1rem;
  align-items: start;
  border-bottom: 1px solid var(--line);
  padding: 1.2rem 0;
}

.process-list span {
  color: var(--brick);
  font-weight: 800;
}

.process-list p {
  color: var(--muted);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(240px, 0.8fr) auto;
  gap: 3rem;
  padding: 5rem 5% 2rem;
  background: var(--charcoal);
  color: var(--white);
}

.site-footer h2 {
  max-width: 12ch;
}

.site-footer address,
.site-footer nav {
  display: grid;
  gap: 0.65rem;
  align-content: start;
  font-style: normal;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #f2b39d;
}

.copyright {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  padding-top: 1.5rem;
  color: rgba(255, 255, 255, 0.68);
}

@media (max-width: 1020px) {
  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: grid;
  }

  h1 {
    font-size: 4.1rem;
  }

  h2 {
    font-size: 2.5rem;
  }

  .intro-grid,
  .section-heading,
  .process-grid,
  .project-feature,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .project-meta {
    position: static;
  }

  .project-row {
    grid-template-columns: 3rem 1fr 5rem;
    min-height: 86px;
  }

  .project-type,
  .project-location {
    display: none;
  }

  .project-preview {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .hero-metrics,
  .work-grid,
  .all-work,
  .service-grid,
  .project-page-hero,
  .project-brief-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero-metrics {
    position: relative;
    right: auto;
    bottom: auto;
    margin: 0 5% 3rem;
    max-width: none;
  }

  .work-card.large {
    grid-column: auto;
  }

  .process-list article {
    grid-template-columns: 3rem 1fr;
  }

  .process-list p {
    grid-column: 2;
  }
}

@media (max-width: 820px) {
  h1 {
    font-size: 3.35rem;
  }

  .hero-content {
    max-width: 680px;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 66px;
    padding: 0 1rem;
  }

  .hero {
    min-height: 86svh;
  }

  .hero-content {
    padding: 7rem 1rem 3rem;
  }

  h1 {
    font-size: 3.1rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-copy {
    font-size: 1.08rem;
  }

  .intro-band,
  .projects-index,
  .process-section,
  .services-section,
  .project-brief,
  .project-feature,
  .site-footer {
    padding: 4rem 1rem;
  }

  .cta-strip,
  .next-project {
    padding: 4rem 1rem;
  }

  .project-page-hero {
    padding: 7rem 1rem 3rem;
  }

  .project-page-gallery {
    grid-template-columns: 1fr;
    padding: 0 1rem 4rem;
  }

  .section-kicker {
    grid-template-columns: 3rem 1fr;
  }

  .studio-strip,
  .project-gallery {
    grid-template-columns: 1fr;
  }

  .service-item {
    min-height: auto;
  }

  .studio-strip img,
  .studio-strip img:nth-child(2),
  .studio-strip img:nth-child(3) {
    height: auto;
    aspect-ratio: 4 / 3;
    margin-top: 0;
  }

  .project-row {
    grid-template-columns: 2.4rem minmax(0, 1fr);
    gap: 0.8rem;
    padding: 1rem 0;
  }

  .project-name {
    font-size: 1.25rem;
  }

  .project-year {
    grid-column: 2;
  }

  .project-gallery figure.wide {
    grid-column: auto;
  }

  .project-page-gallery figure.wide {
    grid-column: auto;
  }

  .project-gallery figure.wide img,
  .project-gallery img,
  .project-page-gallery figure.wide img,
  .project-page-gallery img {
    aspect-ratio: auto;
  }

  .next-project a {
    grid-template-columns: 1fr;
  }

  .next-project strong {
    font-size: 1.45rem;
  }

  .floating-contact {
    right: 1rem;
    bottom: 1rem;
  }

  .menu-panel a {
    grid-template-columns: 2.8rem 1fr;
    font-size: 2rem;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 2.85rem;
  }

  .hero-actions {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
