:root {
  --cream: #f7f2e8;
  --paper: #fffaf0;
  --ink: #0b0b0c;
  --muted: #625f59;
  --line: #191919;
  --red: #ff3b24;
  --lime: #dfff18;
  --blue: #0048ff;
  --soft: #eee7da;
  --shadow: 0 22px 70px rgba(11, 11, 12, 0.12);
  --radius: 8px;
  --display: Impact, "Arial Black", "Franklin Gothic Heavy", sans-serif;
  --sans: "Segoe UI", Arial, sans-serif;
  --serif: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--cream);
  color: var(--ink);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(11, 11, 12, 0.035) 1px, transparent 1px) 0 0 / 72px 72px,
    var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.45;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(14px, 3vw, 38px);
  min-height: 86px;
  padding: 16px clamp(18px, 4vw, 64px);
  border-bottom: 1px solid rgba(25, 25, 25, 0.18);
  background: rgba(247, 242, 232, 0.93);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  box-shadow: 0 14px 40px rgba(11, 11, 12, 0.08);
}

.brand {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  overflow: hidden;
}

.brand img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 5vw, 74px);
  text-transform: uppercase;
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.site-nav a {
  position: relative;
  padding: 10px 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.talk-button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 13px 24px;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: transparent;
  text-transform: uppercase;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.talk-button,
.button.primary {
  border-color: var(--red);
  color: #fff;
  background: var(--red);
}

.button.dark {
  border-color: #000;
  color: #fff;
  background: #000;
}

.button.ghost {
  background: transparent;
}

.talk-button::after,
.arrow-link::after,
.button.arrow::after {
  content: "->";
  font-weight: 950;
  letter-spacing: 0;
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  width: max-content;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-transform: uppercase;
  font-weight: 950;
  letter-spacing: 0.08em;
}

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

.menu-toggle b {
  margin-left: 2px;
  font-size: 0.84rem;
}

.flash,
.notice {
  width: min(1220px, calc(100% - 32px));
  margin: 18px auto 0;
  padding: 14px 16px;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  font-weight: 800;
}

.notice {
  width: 100%;
  margin: 0 0 18px;
}

.flash-success,
.notice.success {
  border-color: #137d4d;
  color: #0d5d39;
}

.flash-danger,
.notice.danger {
  border-color: #a71919;
  color: #a71919;
}

.notice.warning {
  border-color: #bd8200;
  color: #795300;
}

.muted {
  color: var(--muted);
}

.page-shell,
.section,
.page-hero,
.compact {
  width: min(1760px, calc(100% - clamp(32px, 7vw, 128px)));
  margin-inline: auto;
}

.section {
  padding: clamp(52px, 8vw, 104px) 0;
}

.compact {
  width: min(860px, calc(100% - 32px));
  padding: 72px 0;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  align-items: end;
  gap: clamp(24px, 4vw, 70px);
  min-height: calc(100vh - 86px);
  padding: clamp(36px, 6vw, 82px) clamp(18px, 4vw, 64px) 0;
  overflow: hidden;
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  padding-bottom: clamp(52px, 8vw, 118px);
}

.hero-title {
  max-width: 980px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(6.4rem, 21vw, 26rem);
  font-weight: 950;
  line-height: 0.76;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero-title span {
  display: block;
}

.hero-copy p {
  max-width: 690px;
  margin: 26px 0 0;
  font-size: clamp(1.2rem, 2vw, 2.15rem);
  line-height: 1.18;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 34px;
}

.hero-art {
  position: relative;
  min-height: clamp(360px, 48vw, 680px);
}

.shape-circle {
  position: absolute;
  width: min(34vw, 520px);
  aspect-ratio: 1;
  right: 12%;
  bottom: 24%;
  border-radius: 50%;
  background: var(--red);
}

.shape-paper {
  position: absolute;
  right: 0;
  bottom: 9%;
  width: min(32vw, 560px);
  aspect-ratio: 1.45;
  background: var(--lime);
  transform: rotate(20deg);
  box-shadow: var(--shadow);
}

.shape-blue {
  position: absolute;
  right: 9%;
  bottom: 50%;
  width: min(10vw, 170px);
  aspect-ratio: 0.78;
  background: var(--blue);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 70%, 0 100%);
}

.shape-stroke {
  position: absolute;
  right: 0;
  bottom: 12%;
  width: min(36vw, 620px);
  height: 80px;
  transform: rotate(12deg);
}

.shape-stroke::before,
.shape-stroke::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 28px;
  border-radius: 999px;
  background: #050505;
}

.shape-stroke::before {
  top: 0;
  transform: skewX(-18deg);
}

.shape-stroke::after {
  top: 36px;
  transform: skewX(14deg);
}

.ticker {
  display: flex;
  gap: 26px;
  overflow: hidden;
  padding: 20px 0;
  border-top: 2px solid var(--line);
  border-bottom: 2px solid var(--line);
  background: var(--paper);
  white-space: nowrap;
  text-transform: uppercase;
  font-weight: 950;
  letter-spacing: 0.14em;
}

.ticker-track {
  display: flex;
  min-width: max-content;
  gap: 26px;
  animation: ticker 34s linear infinite;
}

.ticker span::after {
  content: "*";
  margin-left: 26px;
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  text-transform: uppercase;
  font-size: 0.9rem;
  font-weight: 950;
  letter-spacing: 0.18em;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

.page-hero {
  padding: clamp(58px, 8vw, 116px) 0 clamp(28px, 4vw, 52px);
}

.page-hero h1,
.section-head h2,
.split-copy h2,
.contact-copy h1,
.compact h1 {
  max-width: 1040px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.7rem, 10vw, 10rem);
  font-weight: 950;
  line-height: 0.86;
  text-transform: uppercase;
  letter-spacing: 0;
}

.section-head h2,
.split-copy h2 {
  font-size: clamp(3rem, 7vw, 7.6rem);
}

.page-hero p,
.lead {
  max-width: 820px;
  color: #252525;
  font-size: clamp(1.05rem, 1.8vw, 1.55rem);
}

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

.service-tile {
  position: relative;
  display: grid;
  align-content: space-between;
  min-height: 250px;
  padding: clamp(22px, 3vw, 38px);
  border: 2px solid var(--line);
  border-radius: var(--radius);
  background: var(--accent, var(--paper));
  color: var(--tile-text, var(--ink));
  overflow: hidden;
}

.service-tile span {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.85;
}

.service-tile h3 {
  margin: 14px 0 8px;
  font-family: var(--display);
  font-size: clamp(2.2rem, 4.6vw, 5rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.service-tile p {
  margin: 0;
  max-width: 460px;
  font-size: clamp(1rem, 1.4vw, 1.3rem);
  font-weight: 800;
}

.service-tile .arrow-mark {
  margin-top: 26px;
  font-size: clamp(3rem, 5vw, 5.8rem);
  line-height: 0.7;
}

.service-tile:nth-child(4),
.service-tile:nth-child(5) {
  --tile-text: #fff;
}

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

.project-card {
  position: relative;
  grid-column: span 6;
  min-height: clamp(280px, 24vw, 430px);
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--accent, var(--red));
  color: var(--project-text, #fff);
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.04);
}

.project-card.large {
  grid-column: span 7;
}

.project-card.small {
  grid-column: span 5;
}

.project-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  mix-blend-mode: normal;
}

.project-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.32));
  pointer-events: none;
}

.project-info {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding: clamp(18px, 3vw, 34px);
  color: #fff;
}

.project-info h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.9rem, 3vw, 4.4rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.project-info p {
  margin: 6px 0 0;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.project-info > span {
  max-width: 420px;
  font-weight: 800;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}

.filter-pill {
  min-width: 116px;
  padding: 12px 22px;
  border: 2px solid var(--line);
  border-radius: 999px;
  text-align: center;
  text-transform: uppercase;
  font-weight: 950;
}

.filter-pill.is-active {
  border-color: var(--red);
  color: #fff;
  background: var(--red);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: center;
}

.studio-hero {
  min-height: calc(100vh - 86px);
}

.studio-copy {
  padding: clamp(42px, 7vw, 100px) clamp(18px, 5vw, 90px);
}

.studio-visual {
  min-height: clamp(420px, 50vw, 720px);
  overflow: hidden;
  border-left: 2px solid var(--line);
  background: var(--red);
}

.studio-visual img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.stats-row,
.clients-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 2px solid rgba(25, 25, 25, 0.18);
  border-bottom: 2px solid rgba(25, 25, 25, 0.18);
}

.stat,
.client-name {
  padding: 28px clamp(16px, 2vw, 34px);
  border-right: 1px solid rgba(25, 25, 25, 0.18);
}

.stat:last-child,
.client-name:last-child {
  border-right: 0;
}

.stat strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(3.8rem, 8vw, 8rem);
  line-height: 0.8;
}

.stat span,
.client-name {
  text-transform: uppercase;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.clients-row {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  background: rgba(255, 250, 240, 0.68);
}

.client-name {
  display: grid;
  place-items: center;
  min-height: 118px;
  color: #6f6b64;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.8vw, 3rem);
  letter-spacing: 0;
  text-transform: none;
}

.process-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 2px solid var(--line);
  border-bottom: 2px solid var(--line);
}

.process-item {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 148px;
  padding: 24px;
  border-right: 2px solid var(--line);
}

.process-item:last-child {
  border-right: 0;
}

.process-icon {
  display: grid;
  place-items: center;
  width: 72px;
  aspect-ratio: 1;
  border: 3px solid var(--line);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 2.2rem;
}

.process-item h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.process-item p {
  margin: 4px 0 0;
  color: #232323;
  font-weight: 800;
}

.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.journal-card {
  display: grid;
  min-height: 420px;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper);
}

.journal-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 2px solid var(--line);
}

.journal-card-content {
  display: grid;
  align-content: space-between;
  gap: 20px;
  padding: 22px;
}

.journal-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2rem, 3vw, 3.4rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.journal-meta {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--red);
  text-transform: uppercase;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  min-height: calc(100vh - 86px);
}

.contact-copy {
  display: grid;
  align-content: center;
  padding: clamp(40px, 7vw, 110px) clamp(18px, 5vw, 90px);
}

.contact-copy h1 {
  max-width: 820px;
}

.contact-copy p {
  max-width: 620px;
  font-size: clamp(1.15rem, 1.9vw, 1.7rem);
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}

.contact-line {
  display: grid;
  grid-template-columns: 120px 24px 1fr;
  gap: 18px;
  align-items: center;
  font-size: clamp(1rem, 1.6vw, 1.35rem);
}

.contact-line strong {
  text-transform: uppercase;
  font-weight: 950;
}

.contact-line em {
  color: var(--red);
  font-style: normal;
  font-weight: 950;
}

.contact-panel {
  display: grid;
  align-content: center;
  padding: clamp(28px, 5vw, 90px);
  background: var(--red);
}

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

.request-form label {
  display: grid;
  gap: 9px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 950;
  letter-spacing: 0.06em;
}

.request-form input,
.request-form select,
.request-form textarea {
  width: 100%;
  min-height: 58px;
  padding: 14px 16px;
  border: 2px solid rgba(255, 255, 255, 0.34);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--paper);
  outline: none;
}

.admin-form {
  padding: 22px;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.admin-form label {
  color: var(--ink);
}

.admin-form input,
.admin-form select,
.admin-form textarea,
.admin-actions select {
  border-color: var(--line);
}

.admin-actions select {
  min-height: 52px;
  padding: 10px 14px;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.check-row {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 58px;
  color: var(--ink);
  text-transform: none;
  letter-spacing: 0;
}

.check-row input {
  width: auto;
  min-height: auto;
}

.request-form textarea {
  min-height: 190px;
  resize: vertical;
}

.request-form input:focus,
.request-form select:focus,
.request-form textarea:focus {
  border-color: #000;
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.14);
}

.span-2 {
  grid-column: 1 / -1;
}

.admin-page {
  background: #f2eee5;
}

.admin-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.admin-card,
.table-wrap,
.detail-panel {
  border: 2px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.05);
}

.admin-card {
  padding: 22px;
}

.admin-card span {
  color: var(--muted);
  text-transform: uppercase;
  font-weight: 950;
  letter-spacing: 0.1em;
}

.admin-card strong {
  display: block;
  margin-top: 16px;
  font-family: var(--display);
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: 0.8;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.table-wrap {
  overflow: auto;
}

table {
  width: 100%;
  min-width: 880px;
  border-collapse: collapse;
}

th,
td {
  padding: 16px;
  border-bottom: 1px solid rgba(25, 25, 25, 0.18);
  text-align: start;
  vertical-align: top;
}

th {
  color: #fff;
  background: #000;
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
}

tr:last-child td {
  border-bottom: 0;
}

td span {
  color: var(--muted);
}

.text-link {
  color: var(--red);
  font-weight: 950;
  text-transform: uppercase;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 12px;
  border-radius: 999px;
  color: #fff;
  background: var(--blue);
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 950;
}

.detail-panel {
  padding: 24px;
}

.detail-list {
  display: grid;
  gap: 12px;
  margin: 0;
}

.detail-list div {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 16px;
}

.detail-list dt {
  color: var(--muted);
  font-weight: 950;
}

.detail-list dd {
  margin: 0;
}

.message-block {
  white-space: pre-line;
}

.setup-list {
  margin: 0 0 24px;
  padding-inline-start: 24px;
}

code {
  padding: 2px 6px;
  border-radius: 5px;
  background: var(--soft);
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 28px clamp(18px, 4vw, 64px);
  border-top: 2px solid rgba(25, 25, 25, 0.18);
  background: var(--paper);
}

.footer-logo img {
  width: min(170px, 38vw);
  height: 64px;
  object-fit: cover;
  object-position: center;
}

.site-footer nav,
.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  text-transform: uppercase;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.site-footer nav {
  justify-content: center;
}

.footer-meta {
  justify-content: flex-end;
  font-size: 0.9rem;
}

@media (max-width: 1180px) {
  .service-grid,
  .process-strip,
  .journal-grid,
  .admin-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-art {
    min-height: 360px;
  }

  .shape-circle {
    width: min(54vw, 460px);
  }

  .shape-paper,
  .shape-stroke {
    width: min(58vw, 520px);
  }

  .shape-blue {
    width: min(18vw, 150px);
  }

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

  .studio-visual {
    border-left: 0;
    border-top: 2px solid var(--line);
  }
}

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: auto auto auto;
    min-height: 76px;
  }

  .brand,
  .brand img {
    width: 48px;
    height: 48px;
  }

  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-self: center;
  }

  .menu-toggle b {
    display: none;
  }

  .site-nav {
    position: fixed;
    inset: 76px 0 auto;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 18px;
    border-bottom: 2px solid var(--line);
    background: var(--paper);
  }

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

  .site-nav a {
    padding: 15px 0;
    border-bottom: 1px solid rgba(25, 25, 25, 0.15);
    font-size: 1.1rem;
  }

  .talk-button {
    min-height: 44px;
    padding: 10px 13px;
    font-size: 0.72rem;
  }

  .hero {
    padding-top: 34px;
  }

  .hero-title {
    font-size: clamp(5.4rem, 31vw, 11rem);
  }

  .service-grid,
  .process-strip,
  .journal-grid,
  .admin-grid,
  .stats-row,
  .clients-row,
  .request-form {
    grid-template-columns: 1fr;
  }

  .process-item,
  .stat,
  .client-name {
    border-right: 0;
    border-bottom: 1px solid rgba(25, 25, 25, 0.18);
  }

  .process-item:last-child,
  .stat:last-child,
  .client-name:last-child {
    border-bottom: 0;
  }

  .work-grid {
    grid-template-columns: 1fr;
  }

  .project-card,
  .project-card.large,
  .project-card.small {
    grid-column: auto;
  }

  .section-head {
    display: grid;
    align-items: start;
  }

  .filter-row {
    justify-content: flex-start;
  }

  .filter-pill {
    min-width: 0;
  }

  .contact-layout {
    min-height: auto;
  }

  .contact-panel {
    padding: 28px 18px;
  }

  .contact-line {
    grid-template-columns: 92px 18px 1fr;
    gap: 10px;
  }

  .span-2 {
    grid-column: auto;
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .site-footer nav,
  .footer-meta {
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  .page-shell,
  .section,
  .page-hero {
    width: min(100% - 28px, 1760px);
  }

  .page-hero h1,
  .section-head h2,
  .split-copy h2,
  .contact-copy h1,
  .compact h1 {
    font-size: clamp(3.2rem, 17vw, 5.8rem);
  }

  .service-tile {
    min-height: 220px;
  }

  .project-info {
    display: grid;
  }
}
