:root {
  --ink: #222222;
  --muted: #7b7b7b;
  --soft: #f8f8f8;
  --line: #e8e8e8;
  --paper: #ffffff;
  --night: #070714;
  --warm: #eee9df;
  --accent: #c8a96a;
  --max: 1180px;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  width: min(calc(100% - 40px), var(--max));
  margin: 18px auto 0;
  padding: 12px 14px;
  border: 1px solid rgba(232, 232, 232, 0.82);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(18px);
}

.brand,
.site-nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-size: 14px;
  font-weight: 650;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--night);
  color: var(--paper);
  font-size: 11px;
}

.site-nav {
  gap: 8px;
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: #3d3d3d;
  font-size: 13px;
}

.site-nav a:hover {
  background: var(--soft);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
}

.menu-toggle span {
  display: block;
  width: 16px;
  height: 1px;
  margin: 5px auto;
  background: var(--ink);
}

.section-shell {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  min-height: 760px;
  margin-top: 28px;
  padding: 0 0 0 92px;
  border-radius: var(--radius);
  background: #f4f4f4;
}

.hero::before {
  position: absolute;
  top: 206px;
  bottom: 150px;
  left: 24px;
  z-index: 2;
  width: 1px;
  content: "";
  background: rgba(107, 107, 107, 0.22);
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: 650px;
  padding-top: 122px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.4;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(96px, 14vw, 214px);
  font-weight: 300;
  line-height: 0.9;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 4.6vw, 68px);
  font-weight: 400;
  line-height: 1.02;
}

h3 {
  margin-bottom: 12px;
  font-size: 24px;
  font-weight: 480;
  line-height: 1.1;
}

p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}

.hero-lede {
  max-width: 560px;
  color: #343434;
  font-size: clamp(21px, 2.2vw, 32px);
  font-weight: 500;
  line-height: 1.25;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 650;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button-dark {
  background: var(--night);
  color: var(--paper);
}

.button-light {
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
}

.hero-visual {
  position: relative;
  min-height: 760px;
}

.hero-visual img {
  position: absolute;
  right: -46px;
  bottom: 0;
  width: min(760px, 58vw);
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  filter: grayscale(1);
  mix-blend-mode: multiply;
}

.hero-stats {
  position: absolute;
  top: 96px;
  left: 132px;
  z-index: 3;
  display: flex;
  gap: 36px;
}

.hero-stats div {
  max-width: 150px;
}

.hero-stats strong {
  display: block;
  color: #3a3a3a;
  font-size: clamp(48px, 4vw, 72px);
  font-weight: 300;
  line-height: 1;
}

.hero-stats span {
  color: #6b6b6b;
  font-size: 15px;
  line-height: 1.4;
}

.hero-scroll {
  position: absolute;
  bottom: 58px;
  left: 132px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #4d4d4d;
  font-size: 20px;
  font-weight: 600;
}

.hero-scroll span {
  font-size: 22px;
  line-height: 1;
}

.about,
.services,
.showcase,
.experience,
.cta,
.gallery {
  margin-top: 24px;
  padding: 104px 0;
}

.services {
  padding-top: 72px;
}

.showcase {
  padding-top: 48px;
}

.cta {
  padding-top: 68px;
  padding-bottom: 56px;
}

.gallery {
  padding-top: 44px;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 56px;
}

.section-heading.narrow {
  max-width: 680px;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading.centered p:last-child {
  max-width: 660px;
  margin: 22px auto 0;
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) 312px minmax(0, 0.95fr);
  gap: 64px;
  align-items: start;
  padding-top: 72px;
  padding-bottom: 72px;
  padding-right: 34px;
  padding-left: 34px;
  border-radius: var(--radius);
  background: #eeeeee;
}

.about-copy {
  position: relative;
  min-height: auto;
}

.about-copy h2 {
  margin-bottom: 28px;
  font-size: clamp(38px, 4.5vw, 64px);
}

.about-copy p {
  max-width: 680px;
  color: #8a8a8a;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.72;
}

.about-arrow {
  display: none;
  position: absolute;
  right: 80px;
  bottom: 30px;
  width: 220px;
  height: 220px;
  transform: rotate(-28deg);
}

.about-arrow::before,
.about-arrow::after {
  position: absolute;
  content: "";
}

.about-arrow::before {
  inset: 52px 20px 20px 52px;
  border-top: 14px solid rgba(34, 34, 34, 0.045);
  border-right: 14px solid rgba(34, 34, 34, 0.045);
  border-radius: 0 130px 0 0;
}

.about-arrow::after {
  top: 44px;
  right: 4px;
  width: 70px;
  height: 70px;
  border-top: 14px solid rgba(34, 34, 34, 0.045);
  border-right: 14px solid rgba(34, 34, 34, 0.045);
  transform: rotate(45deg);
}

.about-card {
  display: flex;
  min-height: 620px;
  flex-direction: column;
  padding: 28px 28px 28px;
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.03);
}

.metric-icon {
  display: grid;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
}

.metric-icon svg,
.note-icon svg {
  width: 20px;
  height: 20px;
}

.bridge-image {
  width: min(100%, 230px);
  height: 104px;
  margin: 0 auto 20px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.about-card blockquote {
  margin: 0 0 42px;
  color: #232323;
  font-size: clamp(26px, 2vw, 42px);
  font-style: italic;
  font-weight: 300;
  line-height: 1.05;
  text-align: center;
}

.about-card blockquote span {
  display: block;
  white-space: nowrap;
}

.about-portrait {
  flex: 1;
  min-height: 0;
  border-radius: 6px;
  object-fit: cover;
  object-position: 51% 34%;
}

.about-aside {
  display: grid;
  gap: 32px;
  padding-top: 72px;
}

.about-note {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 22px;
  align-items: start;
}

.note-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  font-size: 19px;
  line-height: 1;
}

.note-icon path {
  fill: currentColor;
}

.about-note p {
  color: #8a8a8a;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.72;
}

.about-closing {
  margin: 0 0 0 66px;
  color: #8a8a8a;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.72;
}

.project-grid,
.image-row {
  display: grid;
  gap: 22px;
}

.section-heading.services-heading {
  display: flex;
  max-width: none;
  align-items: end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.services-heading h2 {
  max-width: 680px;
}

.service-controls {
  display: flex;
  gap: 10px;
  margin-bottom: 4px;
}

.slider-button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  font-size: 27px;
  line-height: 1;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.slider-button:hover {
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-2px);
}

.service-grid {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  padding: 2px 0 14px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.service-grid::-webkit-scrollbar {
  display: none;
}

.service-card {
  position: relative;
  overflow: hidden;
  display: flex;
  min-height: 360px;
  flex: 0 0 calc((100% - 44px) / 3);
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  border-radius: var(--radius);
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.76)), var(--service-image);
  background-position: center;
  background-size: cover;
  color: var(--paper);
  scroll-snap-align: start;
}

.service-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(0, 0, 0, 0.18);
  transition: background 180ms ease;
}

.service-card:hover::before {
  background: rgba(0, 0, 0, 0.05);
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-card span {
  display: block;
  margin-bottom: auto;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
}

.service-card h3 {
  margin-bottom: 14px;
  color: var(--paper);
  font-size: clamp(26px, 2.4vw, 38px);
  line-height: 1;
}

.service-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
  line-height: 1.55;
}

.showcase {
  padding: 72px 34px;
  border-radius: var(--radius);
  background: #f4f4f4;
}

.showcase > * {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

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

.project-card {
  overflow: hidden;
  grid-column: span 2;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.project-card:nth-last-child(2) {
  grid-column: 2 / span 2;
}

.project-card:last-child {
  grid-column: 4 / span 2;
}

.project-accordion {
  gap: 18px;
}

.project-item {
  display: flex;
  flex-direction: column;
}

.project-toggle {
  position: relative;
  overflow: hidden;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: var(--paper);
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.project-card img {
  height: 250px;
  object-fit: cover;
  transition: transform 220ms ease;
}

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

.award-ribbon {
  position: absolute;
  top: 250px;
  right: 22px;
  z-index: 2;
  display: block;
  width: 58px;
  height: 80px;
  transform: translateY(-50%);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 96 132'%3E%3Cpath fill='%23f5a21a' d='M28 67h20v65L36 111 18 125z'/%3E%3Cpath fill='%23f5a21a' d='M48 67h20l10 58-18-14-12 21z'/%3E%3Cpath fill='%23f5a21a' d='M48 3l7 6 9-3 5 8 9 1 2 9 8 5-2 9 5 8-5 8 2 9-8 5-2 9-9 1-5 8-9-3-7 6-7-6-9 3-5-8-9-1-2-9-8-5 2-9-5-8 5-8-2-9 8-5 2-9 9-1 5-8 9 3z'/%3E%3Ccircle cx='48' cy='45' r='31' fill='none' stroke='white' stroke-width='5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.16));
}

.project-summary {
  position: relative;
  padding: 22px;
}

.project-summary h3 {
  margin-bottom: 10px;
  font-size: 23px;
}

.project-summary p:last-child {
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.6;
}

.project-plus {
  position: absolute;
  top: 202px;
  left: 18px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: rgba(244, 244, 244, 0.88);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  color: var(--ink);
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.project-toggle[aria-expanded="true"] .project-plus {
  transform: rotate(45deg);
  background: var(--paper);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
}

.project-details {
  max-height: 0;
  overflow: hidden;
  padding: 0 22px;
  border-top: 0 solid var(--line);
  transition: max-height 260ms ease, padding 260ms ease, border-width 200ms ease;
}

.project-item.is-open .project-details {
  max-height: 2400px;
  padding: 16px 22px 20px;
  border-top-width: 1px;
}

.project-details p {
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 1.55;
}

.project-details p:last-child {
  margin-bottom: 0;
}

.project-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.case-video-link,
.case-pdf-link {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid rgba(34, 34, 34, 0.14);
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease;
}

.case-video-link:hover,
.case-pdf-link:hover {
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-1px);
}

.tag {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.experience {
  display: block;
  padding: 72px 34px;
  border-radius: var(--radius);
  background: #eeeeee;
}

.awards-intro {
  max-width: 720px;
  margin-bottom: 36px;
}

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

.award-card {
  display: grid;
  grid-template-rows: 86px 72px 40px 1fr;
  min-height: 196px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.award-year {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 0;
  color: var(--accent);
  font-size: 28px;
  font-weight: 360;
  line-height: 1;
}

.award-year::after {
  display: block;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cg fill='none' stroke='%23c8a96a' stroke-linecap='round' stroke-linejoin='round' stroke-width='2.7'%3E%3Cpath d='M25 52C13 45 9 30 18 14'/%3E%3Cpath d='M39 52c12-7 16-22 7-38'/%3E%3Cpath d='M20 19c-5 0-8-2-10-6 5-1 9 1 12 4'/%3E%3Cpath d='M17 28c-5 1-9-1-12-4 5-2 9-1 13 2'/%3E%3Cpath d='M18 37c-5 2-9 1-13-2 4-3 9-3 13 0'/%3E%3Cpath d='M23 46c-4 3-9 3-13 1 3-4 8-5 13-3'/%3E%3Cpath d='M44 19c5 0 8-2 10-6-5-1-9 1-12 4'/%3E%3Cpath d='M47 28c5 1 9-1 12-4-5-2-9-1-13 2'/%3E%3Cpath d='M46 37c5 2 9 1 13-2-4-3-9-3-13 0'/%3E%3Cpath d='M41 46c4 3 9 3 13 1-3-4-8-5-13-3'/%3E%3Cpath d='M32 22l2.5 5.3L40 28l-4 3.9.9 5.6-4.9-2.6-4.9 2.6.9-5.6-4-3.9 5.5-.7L32 22z'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.92;
}

.award-card.no-laurel .award-year::after {
  content: none;
}

.award-card h3 {
  align-self: start;
  margin-bottom: 10px;
  font-size: 19px;
  font-weight: 560;
  line-height: 1.12;
}

.award-card p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.45;
}

.pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  padding-top: 2px;
}

.award-card .pills {
  align-self: end;
  justify-content: flex-start;
  padding-top: 0;
}

.pills span {
  padding: 7px 10px;
  border: 1px solid #e3e3e3;
  border-radius: 999px;
  color: var(--ink);
  background: #f0f0f0;
  font-size: 11px;
  white-space: nowrap;
}

.cta-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  min-height: 320px;
  place-items: center;
  border-radius: var(--radius);
  background: var(--night);
  text-align: center;
}

.cta-panel img,
.cta-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
  filter: grayscale(1);
}

.cta-panel::after {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(7, 7, 20, 0.38);
}

.cta-panel div {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 48px 24px;
}

.cta-panel h2 {
  margin-bottom: 28px;
  color: var(--paper);
}

.cta-panel .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.image-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.image-row img {
  height: 430px;
  border-radius: var(--radius);
  object-fit: cover;
}

.footer {
  margin-top: 64px;
  background: var(--ink);
  color: var(--paper);
}

.footer-inner,
.footer-bottom {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.footer-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: end;
  padding: 76px 0;
}

.footer h2 {
  max-width: 680px;
  color: var(--paper);
}

.mail-link {
  justify-self: end;
  display: block;
  width: min(100%, 300px);
}

.mail-link img {
  display: block;
  width: 100%;
  height: auto;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}

.footer-bottom a {
  color: inherit;
}

.footer-bottom a:hover {
  color: var(--paper);
}

@media (max-width: 980px) {
  .hero,
  .about,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 760px;
    padding-left: 72px;
  }

  .hero::before {
    top: 136px;
    bottom: 102px;
  }

  .hero-copy {
    align-self: start;
    padding-top: 214px;
  }

  .hero-stats {
    top: 62px;
    left: 112px;
    gap: 28px;
  }

  .hero-stats div {
    max-width: 138px;
  }

  .hero-visual {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 76%;
    min-height: 500px;
  }

  .hero-visual img {
    right: 0;
    width: 100%;
    object-fit: contain;
    object-position: right bottom;
  }

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

  .project-card,
  .project-card:nth-last-child(2),
  .project-card:last-child {
    grid-column: auto;
  }

  .service-card {
    flex-basis: calc((100% - 22px) / 2);
  }

  .about {
    gap: 28px;
  }

  .about-copy {
    min-height: auto;
  }

  .about-arrow {
    display: none;
  }

  .about-card {
    min-height: 560px;
  }

  .about-aside {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 0;
    align-items: start;
  }

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

  .pills {
    justify-content: flex-start;
  }

  .mail-link {
    justify-self: start;
  }
}

@media (min-width: 721px) and (max-width: 980px) {
  .hero-visual {
    right: 0;
    width: 80%;
  }

  .hero-visual img {
    right: 0;
  }
}

@media (max-width: 1100px) {
  .about {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .about-copy p {
    max-width: none;
  }

  .about-card {
    max-width: 420px;
    min-height: 560px;
    margin: 0 auto;
  }

  .about-aside {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 34px;
    padding-top: 0;
  }

  .footer-inner {
    padding: 52px 0 42px;
  }

  .footer h2 {
    max-width: 560px;
    font-size: clamp(38px, 4.8vw, 54px);
  }

  .mail-link {
    width: min(100%, 260px);
  }

  .footer-bottom {
    padding: 18px 0 28px;
  }
}

@media (max-width: 720px) {
  .site-header {
    width: min(calc(100% - 24px), var(--max));
    margin-top: 12px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--paper);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
  }

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

  .section-shell,
  .showcase > *,
  .footer-inner,
  .footer-bottom {
    width: min(calc(100% - 24px), var(--max));
  }

  .hero {
    min-height: 690px;
    padding: 0 20px 0 48px;
  }

  .hero::before {
    top: 96px;
    bottom: 82px;
    left: 16px;
  }

  h1 {
    font-size: clamp(82px, 24vw, 128px);
  }

  .hero-copy {
    padding-top: 176px;
  }

  .hero-visual {
    width: 92%;
    min-height: 390px;
  }

  .hero-visual img {
    right: -18px;
    width: 100%;
    object-fit: contain;
    object-position: right bottom;
  }

  .hero-stats {
    top: 34px;
    left: 86px;
    right: 24px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 18px;
  }

  .hero-stats div {
    max-width: none;
  }

  .hero-stats strong {
    font-size: 34px;
  }

  .hero-stats span {
    display: block;
    font-size: 10px;
    line-height: 1.24;
    overflow-wrap: normal;
    word-break: normal;
  }

  .hero-scroll {
    bottom: 38px;
    left: 48px;
    font-size: 15px;
  }

  .about,
  .services,
  .showcase,
  .experience,
  .cta,
  .gallery {
    padding: 76px 0;
  }

  .services {
    padding-top: 56px;
  }

  .showcase {
    padding-top: 42px;
  }

  .cta {
    padding-top: 54px;
    padding-bottom: 36px;
  }

  .gallery {
    padding-top: 34px;
  }

  .about {
    gap: 34px;
    padding: 56px 24px;
  }

  .about-copy h2 {
    margin-bottom: 24px;
  }

  .about-copy p {
    max-width: none;
    line-height: 1.62;
  }

  .showcase {
    padding-right: 20px;
    padding-left: 20px;
  }

  .showcase > * {
    width: 100%;
  }

  .experience {
    padding-right: 20px;
    padding-left: 20px;
  }

  .about-aside,
  .award-wall,
  .project-grid,
  .image-row {
    grid-template-columns: 1fr;
  }

  .services-heading {
    align-items: start;
  }

  .about-card {
    min-height: 520px;
    padding: 24px;
  }

  .about-portrait {
    max-height: 360px;
    object-position: 51% 34%;
  }

  .about-aside {
    gap: 26px;
  }

  .about-note {
    grid-template-columns: 30px 1fr;
    gap: 14px;
  }

  .note-icon {
    width: 30px;
    height: 30px;
  }

  .note-icon svg {
    width: 15px;
    height: 15px;
  }

  .about-note p,
  .about-copy p {
    font-size: 15px;
  }

  .about-note p {
    line-height: 1.58;
  }

  .service-grid,
  .project-grid,
  .image-row {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 330px;
    flex-basis: min(84vw, 340px);
  }

  .project-card img,
  .image-row img {
    height: 260px;
  }

  .award-ribbon {
    top: 260px;
    right: 18px;
    width: 50px;
    height: 70px;
  }

  .project-plus {
    top: 212px;
    left: 16px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  .hero {
    padding-right: 14px;
    padding-left: 42px;
  }

  .hero-stats {
    left: 74px;
    right: 14px;
    column-gap: 12px;
  }

  .hero-stats strong {
    font-size: 32px;
  }

  .hero-stats span {
    font-size: 9.5px;
    line-height: 1.22;
  }
}

@media (max-width: 370px) {
  .hero-stats {
    left: 66px;
    column-gap: 8px;
  }

  .hero-stats strong {
    font-size: 30px;
  }

  .hero-stats span {
    font-size: 9px;
  }
}
