:root {
  --ink: #101010;
  --ink-soft: #2f2f2f;
  --muted: #676767;
  --paper: #d9d9d6;
  --panel: #f7f7f4;
  --panel-soft: #eeeeeb;
  --white: #ffffff;
  --line: rgba(16, 16, 16, 0.12);
  --line-strong: rgba(16, 16, 16, 0.24);
  --radius-xl: 28px;
  --radius-lg: 12px;
  --radius: 8px;
  --shadow: 0 20px 56px rgba(0, 0, 0, 0.06);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

main,
section,
div,
article {
  min-width: 0;
}

h1,
h2,
h3,
p,
span,
strong,
li,
a,
button {
  overflow-wrap: break-word;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 22px;
  left: 50%;
  display: grid;
  width: min(1120px, calc(100% - 44px));
  min-height: 58px;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 7px 8px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  background: rgba(247, 247, 244, 0.78);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
  transform: translateX(-50%);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled,
.site-header.menu-active {
  border-color: var(--line);
  background: rgba(247, 247, 244, 0.96);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--ink);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong,
.brand-copy small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-copy strong {
  font-size: 0.84rem;
  line-height: 1.1;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 4px;
}

.nav-links a {
  padding: 8px 11px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  transition: color 180ms ease, background 180ms ease;
}

.nav-links a:hover {
  color: var(--ink);
  background: var(--white);
}

.header-cta {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 16px;
  color: var(--white);
  background: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  white-space: nowrap;
}

.icon-button {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: var(--white);
  cursor: pointer;
}

.icon-button svg {
  width: 18px;
  height: 18px;
}

.nav-toggle {
  display: none;
}

main {
  padding: 18px 0 0;
}

.hero,
.section,
.contact-section,
.site-footer {
  width: min(1320px, calc(100% - 44px));
  margin-inline: auto;
}

.hero,
.section,
.contact-section {
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: var(--radius-xl);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.hero {
  position: relative;
  display: grid;
  min-height: 680px;
  align-items: center;
  overflow: hidden;
  margin-top: 18px;
  padding: 112px 44px 36px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 44px 118px;
  height: 1px;
  background: var(--line);
}

.hero-media {
  position: absolute;
  inset: 0;
  opacity: 0.025;
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(1) contrast(1.08);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(920px, 100%);
  max-width: 100%;
  margin: 0 auto 66px;
  text-align: center;
}

.hero-profile {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  padding: 5px 12px 5px 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  font-size: 0.78rem;
  font-weight: 900;
}

.hero-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(1);
}

.eyebrow,
.section-kicker,
.muted-label {
  display: inline-block;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.45;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 840px;
  margin: 14px auto 16px;
  font-size: clamp(3.25rem, 6vw, 4.7rem);
  line-height: 1;
  letter-spacing: 0;
  overflow-wrap: break-word;
  text-wrap: balance;
}

.hero p {
  width: min(680px, 100%);
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.68;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 15px;
  font-size: 0.82rem;
  font-weight: 900;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.button svg {
  width: 16px;
  height: 16px;
}

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

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

.hero-stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
  overflow: hidden;
}

.stat-card {
  min-height: 108px;
  padding: 22px;
  border-right: 1px solid var(--line);
}

.stat-card:last-child {
  border-right: 0;
}

.stat-card strong,
.stat-card span {
  display: block;
}

.stat-card strong {
  font-size: 1.44rem;
  line-height: 1.08;
}

.stat-card span {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 750;
  line-height: 1.45;
}

.section,
.contact-section {
  margin-top: 18px;
  padding: 76px 44px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.58fr);
  gap: 36px;
  align-items: end;
  margin-bottom: 36px;
  min-width: 0;
}

.section-heading.centered {
  width: min(860px, 100%);
  grid-template-columns: 1fr;
  gap: 18px;
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.about-copy h2,
.contact-copy h2 {
  margin: 12px 0 0;
  font-size: clamp(2.35rem, 4.2vw, 3.12rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.section-heading p,
.about-copy p,
.contact-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.68;
}

.trust-grid,
.value-grid,
.skills-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.mini-card,
.value-card,
.skill-group,
.service-card,
.profile-panel,
.section-cta,
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.mini-card,
.value-card,
.skill-group {
  padding: 22px;
}

.mini-card svg {
  width: 38px;
  height: 38px;
  margin-bottom: 22px;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.mini-card h3,
.value-card h3,
.skill-group h3,
.service-card h3,
.process-item h3,
.timeline-item h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.18;
}

.mini-card p,
.value-card p,
.process-item p,
.timeline-item p,
.service-card p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.62;
}

.filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.chip {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 16px;
  color: var(--muted);
  background: var(--white);
  font-size: 0.82rem;
  font-weight: 900;
  cursor: pointer;
}

.chip.is-active {
  color: var(--white);
  background: var(--ink);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  min-width: 0;
}

.project-card {
  display: grid;
  min-width: 0;
  min-height: 474px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.project-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.11);
}

.project-card.is-featured {
  grid-column: span 2;
}

.project-image {
  position: relative;
  min-height: 282px;
  overflow: hidden;
  background: var(--poster-bg);
}

.project-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 36%, rgba(0, 0, 0, 0.18));
  pointer-events: none;
}

.project-image img {
  width: 100%;
  height: 100%;
  min-height: 282px;
  object-fit: cover;
  transition: transform 360ms ease;
}

.project-card:hover .project-image img {
  transform: scale(1.03);
}

.project-image img.is-broken {
  opacity: 0;
}

.project-link {
  position: absolute;
  z-index: 2;
  top: 16px;
  right: 16px;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--white);
}

.project-link svg {
  width: 18px;
  height: 18px;
}

.project-info {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 22px;
}

.project-info h3 {
  margin: 0;
  font-size: 1.38rem;
  line-height: 1.12;
  overflow-wrap: break-word;
}

.project-info p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.6;
}

.project-role {
  display: grid;
  gap: 6px;
  padding-top: 6px;
}

.project-role span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.project-role strong {
  font-size: 0.92rem;
  line-height: 1.36;
}

.case-button {
  width: max-content;
  margin-top: 6px;
}

.empty-state {
  margin: 22px 0 0;
  color: var(--muted);
  font-weight: 800;
}

.section-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 24px;
  padding: 18px 20px;
}

.section-cta p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.45;
}

.value-card span,
.process-item > span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--white);
  background: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
}

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

.process-item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.process-item > span {
  margin: 0;
}

.timeline {
  display: grid;
  gap: 12px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 24px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.timeline-item > span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
}

.timeline-item strong {
  display: block;
  margin-top: 8px;
  font-size: 0.94rem;
}

.skill-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.skill-cloud span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 11px;
  color: var(--ink-soft);
  background: var(--panel-soft);
  font-size: 0.78rem;
  font-weight: 850;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 22px;
}

.service-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.service-top svg {
  width: 38px;
  height: 38px;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.service-top span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border-radius: 999px;
  padding: 0 12px;
  color: var(--white);
  background: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  white-space: nowrap;
}

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

.service-card li,
.case-content li {
  position: relative;
  padding-left: 20px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.45;
}

.service-card li::before,
.case-content li::before {
  content: "";
  position: absolute;
  top: 0.64em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ink);
}

.service-link {
  width: 100%;
  margin-top: auto;
  white-space: normal;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  gap: 40px;
  align-items: start;
}

.profile-panel {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 18px;
  padding: 22px;
}

.avatar {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(1);
}

.profile-panel strong,
.profile-panel span {
  display: block;
}

.profile-panel strong {
  margin-top: 6px;
  line-height: 1.35;
}

.profile-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.profile-links a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 12px;
  font-size: 0.8rem;
  font-weight: 900;
}

.profile-links svg {
  width: 16px;
  height: 16px;
}

.about-copy {
  width: min(900px, 100%);
}

.about-copy p {
  margin-top: 20px;
}

.faq-list {
  display: grid;
  gap: 8px;
}

.faq-item {
  overflow: hidden;
}

.faq-item button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 0;
  padding: 20px 22px;
  color: var(--ink);
  background: transparent;
  font-size: 1rem;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.faq-item svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  transition: transform 180ms ease;
}

.faq-item.is-open svg {
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 180ms ease;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer p {
  min-height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0 22px;
  color: var(--muted);
  line-height: 1.68;
}

.faq-item.is-open .faq-answer p {
  padding-bottom: 20px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) auto;
  gap: 40px;
  align-items: end;
  color: var(--white);
  background: var(--ink);
}

.contact-section .section-kicker,
.contact-section p {
  color: rgba(255, 255, 255, 0.68);
}

.contact-copy {
  max-width: 760px;
}

.contact-copy p {
  margin-top: 22px;
}

.contact-actions {
  justify-content: flex-end;
}

.contact-section .button.primary {
  color: var(--ink);
  background: var(--white);
}

.contact-section .button.ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
}

.case-modal[hidden] {
  display: none;
}

.case-modal {
  position: fixed;
  z-index: 80;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
}

.case-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
}

.case-dialog {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  max-height: min(860px, calc(100vh - 48px));
  overflow: auto;
  border-radius: var(--radius-lg);
  background: var(--panel);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.32);
}

.case-close {
  position: sticky;
  z-index: 3;
  top: 18px;
  float: right;
  margin: 18px 18px 0 0;
}

.case-cover {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1fr);
  gap: 24px;
  align-items: end;
  padding: 32px;
}

.case-cover img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  object-fit: cover;
}

.case-cover h2 {
  margin: 12px 0;
  font-size: clamp(2.2rem, 4.8vw, 3rem);
  line-height: 1;
}

.case-cover p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.case-content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0 32px 32px;
}

.case-content section {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  background: var(--white);
}

.case-content h3 {
  margin: 0 0 12px;
  font-size: 1rem;
}

.case-content p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.case-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0 32px 32px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px 4px 34px;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 850;
}

.site-footer a {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--panel);
}

.site-footer svg {
  width: 18px;
  height: 18px;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: transform 180ms ease;
}

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

@media (max-width: 1180px) {
  .site-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .nav-links,
  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: grid !important;
    justify-self: end;
    margin-left: auto;
    color: var(--white);
    background: var(--ink);
    border-color: var(--ink);
  }

  .site-header.menu-active {
    align-items: start;
    border-radius: 28px;
  }

  .site-header.menu-active .nav-links {
    display: grid;
    flex: 0 0 100%;
    width: 100%;
    justify-content: stretch;
    gap: 6px;
    padding: 10px 0 4px;
  }

  .site-header.menu-active .nav-links a {
    background: var(--white);
  }

  .hero h1 {
    font-size: 3.6rem;
  }

  .section-heading,
  .contact-section,
  .about-layout {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 20px;
  }

  .trust-grid,
  .value-grid,
  .skills-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .project-card.is-featured {
    grid-column: span 1;
  }

  .contact-actions {
    justify-content: flex-start;
  }

  .profile-panel {
    position: static;
  }
}

@media (max-width: 760px) {
  :root {
    --radius-xl: 22px;
    --radius-lg: 10px;
    --radius: 8px;
  }

  .site-header,
  .hero,
  .section,
  .contact-section,
  .site-footer {
    width: calc(100% - 24px);
    max-width: 1680px;
  }

  .site-header {
    top: 12px;
  }

  .brand-copy small {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 96px 18px 20px;
  }

  .hero,
  .section,
  .contact-section {
    overflow: hidden;
  }

  .hero::after {
    display: none;
  }

  .hero-content {
    margin-bottom: 28px;
  }

  .hero h1 {
    max-width: 310px;
    font-size: 1.9rem;
    line-height: 1.06;
  }

  .hero p {
    max-width: 310px;
    font-size: 0.95rem;
  }

  .hero .eyebrow {
    display: block;
    max-width: 282px;
    margin-inline: auto;
    text-align: center;
  }

  .hero-actions,
  .contact-actions {
    width: 100%;
    max-width: 300px;
    margin-inline: auto;
  }

  .button {
    width: 100%;
    white-space: normal;
  }

  .hero-stats,
  .trust-grid,
  .value-grid,
  .skills-grid,
  .service-grid,
  .project-grid,
  .case-content,
  .case-cover {
    grid-template-columns: 1fr;
  }

  .filter-group {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .chip {
    width: 100%;
  }

  .stat-card {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stat-card:last-child {
    border-bottom: 0;
  }

  .section,
  .contact-section {
    padding: 56px 18px;
  }

  .section-heading h2,
  .about-copy h2,
  .contact-copy h2 {
    max-width: 340px;
    font-size: 2rem;
    line-height: 1.02;
    overflow-wrap: break-word;
  }

  .section-heading p,
  .about-copy p,
  .contact-copy p {
    max-width: 340px;
  }

  .project-card {
    min-height: auto;
    width: 100%;
    max-width: 100%;
  }

  .project-image,
  .project-image img {
    min-height: 240px;
  }

  .project-link {
    top: 12px;
    right: 12px;
  }

  .section-cta {
    display: grid;
  }

  .process-item {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 20px;
  }

  .case-modal {
    padding: 12px;
  }

  .case-cover,
  .case-content,
  .case-actions {
    padding-left: 18px;
    padding-right: 18px;
  }

  .case-cover h2 {
    font-size: 2.1rem;
  }

  .site-footer {
    display: grid;
    justify-items: start;
  }
}

@media (max-width: 420px) {
  .brand-copy strong {
    max-width: 150px;
  }

  .hero h1 {
    max-width: 300px;
    font-size: 1.76rem;
  }

  .project-info h3 {
    font-size: 1.42rem;
  }
}
