:root {
  --green: #036c35;
  --green-dark: #024928;
  --red: #a50e2e;
  --paper: #f7f5f0;
  --surface: #fffdf8;
  --white: #ffffff;
  --ink: #111111;
  --graphite: #4d524d;
  --muted: #73786f;
  --line: #d8d2c7;
  --dark: #0f1511;
  --container: 1200px;
  --serif: "Noto Serif SC", "Songti SC", STSong, SimSun, serif;
  --sans: "Noto Sans SC", "Microsoft YaHei", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--graphite);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
}

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

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

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

.container {
  width: min(100% - 64px, var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  padding: 14px 32px;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(216, 210, 199, 0.78);
  backdrop-filter: blur(12px);
}

.brand img {
  width: 212px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--ink);
  font-size: 14px;
  white-space: nowrap;
}

.site-nav a {
  transition: color 180ms ease;
}

.site-nav a:hover {
  color: var(--green);
}

.nav-cta {
  padding: 10px 16px;
  color: var(--white) !important;
  background: var(--green);
  border-radius: 6px;
}

.nav-toggle {
  display: none;
}

.section {
  padding: 118px 0;
  scroll-margin-top: 96px;
}

.section-tight {
  padding: 32px 0 80px;
}

.hero {
  min-height: calc(100dvh - 80px);
  padding-top: 72px;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  gap: 64px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--green);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.1;
}

h1 {
  max-width: 800px;
  font-size: clamp(48px, 5.8vw, 76px);
}

h2 {
  font-size: clamp(34px, 4.6vw, 56px);
}

h3 {
  font-size: 24px;
}

.hero-lede {
  max-width: 560px;
  margin: 32px 0 0;
  color: var(--graphite);
  font-size: 18px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

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

.button:active {
  transform: translateY(0);
}

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

.button-primary:hover {
  background: var(--green-dark);
}

.button-secondary {
  color: var(--ink);
  background: transparent;
  border-color: var(--line);
}

.button-secondary:hover {
  color: var(--green);
  border-color: var(--green);
}

.hero-visual {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 36%;
  background: linear-gradient(0deg, rgba(247, 245, 240, 0.9), rgba(247, 245, 240, 0));
  pointer-events: none;
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

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

.metric {
  min-height: 172px;
  padding: 30px 26px;
  border-right: 1px solid var(--line);
}

.metric:last-child {
  border-right: 0;
}

.metric strong {
  display: block;
  color: var(--green);
  font-family: var(--serif);
  font-size: clamp(46px, 5.6vw, 78px);
  font-weight: 500;
  line-height: 0.95;
}

.metric span {
  display: block;
  max-width: 220px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.rich-copy p,
.team-stack p,
.case-copy p,
.contact-section p,
.line-list p {
  margin: 0;
  font-size: 17px;
  line-height: 1.85;
}

.editorial-block {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 72px;
  align-items: start;
}

.side-label {
  margin: 10px 0 0;
  padding-top: 18px;
  color: var(--green);
  font-size: 14px;
  font-weight: 600;
  border-top: 1px solid var(--green);
}

.editorial-main {
  max-width: 900px;
}

.editorial-main h2 {
  max-width: 820px;
}

.editorial-main .rich-copy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  margin-top: 42px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}

.portfolio-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px;
  gap: 54px;
  align-items: end;
  margin-bottom: 48px;
}

.portfolio-head h2 {
  max-width: 820px;
}

.portfolio-head p {
  max-width: 560px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.portfolio-count {
  padding-top: 18px;
  border-top: 1px solid var(--green);
}

.portfolio-count span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.portfolio-count strong {
  display: block;
  margin-top: 12px;
  color: var(--green);
  font-family: var(--serif);
  font-size: 72px;
  font-weight: 500;
  line-height: 0.9;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.9fr 0.72fr;
  grid-template-rows: 320px 238px;
  gap: 16px;
}

.portfolio-card,
.portfolio-note {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.portfolio-card {
  position: relative;
  overflow: hidden;
  min-height: 0;
}

.portfolio-card:first-child {
  grid-row: span 2;
}

.portfolio-card:nth-child(2) {
  grid-column: span 2;
}

.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.02);
}

.portfolio-card div {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 34px;
  color: rgba(255, 255, 255, 0.84);
  background: linear-gradient(0deg, rgba(4, 18, 12, 0.92), rgba(4, 18, 12, 0.32), transparent);
}

.portfolio-card span {
  display: block;
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 600;
}

.portfolio-card h3 {
  color: var(--white);
  font-family: var(--sans);
  font-size: 28px;
  font-weight: 600;
}

.portfolio-card p,
.portfolio-note p {
  margin: 16px 0 0;
  line-height: 1.72;
}

.portfolio-card p {
  max-width: 460px;
  font-size: 15px;
}

.portfolio-note {
  display: flex;
  min-height: 0;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
}

.portfolio-note h3 {
  max-width: 220px;
  font-family: var(--sans);
  font-size: 24px;
  font-weight: 600;
}

.portfolio-note p {
  color: var(--muted);
  font-size: 15px;
}

.portfolio-note.is-muted {
  background: transparent;
}

.case-section {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.case-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 56px;
  align-items: center;
}

.case-copy p {
  margin-top: 28px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 30px;
  color: var(--green);
  font-weight: 600;
}

.text-link::after {
  content: "";
  width: 30px;
  height: 1px;
  margin-left: 12px;
  background: currentColor;
}

.case-photo {
  margin: 0;
}

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

.case-photo figcaption {
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
}

.team-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 72px;
  align-items: start;
}

.team-intro {
  position: sticky;
  top: 120px;
}

.team-intro p {
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.85;
}

.team-stack {
  display: grid;
  gap: 16px;
}

.team-stack article {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.64);
}

.team-stack h3 {
  margin-bottom: 16px;
  font-family: var(--sans);
  font-size: 21px;
  font-weight: 600;
}

.principle {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.principle-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: 60px;
  align-items: start;
}

.principle blockquote {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(34px, 5vw, 62px);
  font-weight: 500;
  line-height: 1.12;
}

.principle blockquote span {
  display: block;
  color: var(--red);
  font-size: 0.9em;
  line-height: 0.75;
}

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

.line-list p {
  padding: 24px 0;
  color: var(--graphite);
  border-bottom: 1px solid var(--line);
}

.honors .section-head {
  max-width: 760px;
  margin-bottom: 48px;
}

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

.honor-list article {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.honor-list span {
  color: var(--red);
  font-size: 13px;
  font-weight: 600;
}

.honor-list p {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.25;
}

.contact-section {
  background: var(--surface);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 64px;
}

.contact-section h2 {
  margin-bottom: 28px;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
}

.contact-form .full {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fbfaf7;
  border: 1px solid var(--line);
  border-radius: 6px;
  outline: none;
  transition: border-color 160ms ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--green);
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.scribble-line {
  display: block;
  width: min(620px, 72%);
  height: 8px;
  margin-top: 12px;
  background: var(--red);
  border-radius: 999px;
  transform: rotate(-0.35deg) skewX(-12deg);
  transform-origin: left center;
  opacity: 0.86;
}

.scribble-line.compact {
  width: min(300px, 74%);
  height: 6px;
}

.stories-section {
  overflow: hidden;
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.story-intro {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 72px;
  align-items: start;
  margin-bottom: 92px;
}

.story-side-copy {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.55;
  border-left: 3px solid var(--red);
}

.story-title {
  justify-self: center;
}

.story-title h2,
.contact-editorial h2 {
  font-size: clamp(64px, 9vw, 124px);
  line-height: 0.95;
}

.story-title .scribble-line {
  margin-left: 8px;
}

.rail-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.rail-head h3 {
  font-family: var(--sans);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.rail-controls {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: var(--graphite);
  font-size: 20px;
}

.rail-controls button {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  color: var(--graphite);
  background: transparent;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition:
    color 180ms ease,
    background-color 180ms ease;
}

.rail-controls button:hover {
  color: var(--red);
  background: rgba(165, 14, 46, 0.08);
}

.story-rail {
  display: flex;
  gap: 24px;
  width: min(100% - 64px, var(--container));
  margin: 0 auto;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.story-rail::-webkit-scrollbar {
  display: none;
}

.story-card {
  position: relative;
  flex: 0 0 min(520px, 82vw);
  height: 520px;
  overflow: hidden;
  color: var(--white);
  border-radius: 8px;
  scroll-snap-align: start;
}

.story-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 18, 13, 0.88), rgba(7, 18, 13, 0.18));
  transition:
    background-color 180ms ease,
    opacity 180ms ease;
}

.story-card.is-active::after {
  background: rgba(165, 14, 46, 0.84);
}

.story-card:hover::after {
  background: rgba(3, 108, 53, 0.82);
}

.story-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-card-content {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  padding: 36px;
}

.story-mark {
  margin: 52px auto auto;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(46px, 5vw, 74px);
  line-height: 0.95;
  text-align: center;
}

.story-card-content span {
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 700;
}

.story-card-content h3 {
  max-width: 380px;
  color: var(--white);
  font-family: var(--sans);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.18;
}

.story-card-content p:not(.story-mark) {
  max-width: 370px;
  margin: 16px 0 0;
  font-size: 16px;
  line-height: 1.7;
}

.story-card-content a {
  display: inline-flex;
  width: fit-content;
  margin-top: 26px;
  font-size: 17px;
  font-weight: 700;
}

.recognition-head {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.55fr);
  gap: 72px;
  align-items: end;
  margin-bottom: 46px;
}

.recognition-head p {
  margin: 0;
  padding-left: 18px;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.65;
  border-left: 3px solid var(--red);
}

.recognition-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.recognition-card {
  display: flex;
  min-height: 232px;
  flex-direction: column;
  justify-content: space-between;
  grid-column: span 2;
  padding: 28px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.recognition-card:nth-child(-n + 2) {
  grid-column: span 3;
}

.recognition-card.is-emphasis {
  color: var(--white);
  background: var(--red);
  border-color: var(--red);
}

.recognition-card span {
  color: var(--red);
  font-size: 13px;
  font-weight: 700;
}

.recognition-card.is-emphasis span,
.recognition-card.is-emphasis strong,
.recognition-card.is-emphasis p,
.recognition-card.is-emphasis a {
  color: var(--white);
}

.recognition-card strong {
  display: block;
  margin: 28px 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 500;
  line-height: 1.18;
}

.recognition-card div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(115, 120, 111, 0.26);
}

.recognition-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.recognition-card a {
  flex: 0 0 auto;
  padding: 9px 16px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.recognition-card.is-emphasis div {
  border-top-color: rgba(255, 255, 255, 0.28);
}

.recognition-card.is-emphasis a {
  border-color: rgba(255, 255, 255, 0.5);
}

.contact-editorial {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 72px;
  align-items: start;
  margin-bottom: 72px;
}

.contact-side-copy {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.6;
  border-left: 3px solid var(--red);
}

.contact-editorial h2 {
  text-align: right;
}

.contact-line {
  margin-left: auto;
}

.contact-board {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1.3fr);
  gap: 76px;
  align-items: start;
  padding-top: 42px;
  border-top: 1px solid var(--line);
}

.contact-routes {
  position: sticky;
  top: 120px;
  display: grid;
  gap: 24px;
}

.contact-routes a {
  width: fit-content;
  color: var(--red);
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.2;
}

.contact-form {
  grid-template-columns: 1fr 1fr;
  gap: 0 48px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.contact-form label {
  gap: 12px;
  margin-bottom: 30px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.contact-form label span {
  font-size: 16px;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  min-height: 52px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  font-size: 19px;
}

.contact-form textarea {
  min-height: 142px;
  padding-top: 8px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 0;
  border-color: transparent;
}

.contact-form label:focus-within {
  border-bottom-color: var(--green);
}

.submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 2px;
}

.submit-row .button {
  flex: 0 0 auto;
  min-height: 52px;
  padding: 12px 24px;
  border-radius: 999px;
}

.site-footer {
  padding: 72px 0 56px;
  color: rgba(255, 255, 255, 0.72);
  background: var(--dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 0.7fr;
  gap: 48px;
  align-items: start;
}

.site-footer img {
  width: 220px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 6px;
}

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

.footer-statement strong {
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 500;
  line-height: 1.18;
}

.site-footer nav {
  display: grid;
  gap: 12px;
}

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

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

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

@media (max-width: 1024px) {
  .container {
    width: min(100% - 48px, var(--container));
  }

  .hero-grid,
  .editorial-block,
  .story-intro,
  .team-layout,
  .principle-grid,
  .recognition-head,
  .contact-editorial,
  .contact-board,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .story-title {
    justify-self: start;
  }

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

  .recognition-card,
  .recognition-card:nth-child(-n + 2) {
    grid-column: span 1;
  }

  .contact-editorial h2 {
    text-align: left;
  }

  .contact-line {
    margin-left: 0;
  }

  .contact-routes {
    position: static;
  }

  .editorial-main .rich-copy {
    grid-template-columns: 1fr;
  }

  .portfolio-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .portfolio-card,
  .portfolio-card:first-child,
  .portfolio-card:nth-child(2) {
    grid-column: auto;
    grid-row: auto;
  }

  .portfolio-card {
    min-height: 380px;
  }

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

  .metric:nth-child(2) {
    border-right: 0;
  }

  .metric:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .team-intro {
    position: static;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 72px;
    padding: 12px 20px;
  }

  .brand img {
    width: 168px;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    padding: 0;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 6px;
  }

  .nav-toggle span {
    width: 18px;
    height: 1px;
    background: var(--ink);
  }

  .site-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    display: none;
    padding: 18px 24px 28px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
  }

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

  .nav-cta {
    width: max-content;
  }

  .container {
    width: min(100% - 40px, var(--container));
  }

  .section {
    padding: 76px 0;
  }

  .section-tight {
    padding: 20px 0 64px;
  }

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

  h1 {
    font-size: clamp(38px, 11.8vw, 46px);
  }

  h2 {
    font-size: 34px;
  }

  .story-title h2 {
    font-size: clamp(50px, 15vw, 68px);
  }

  .contact-editorial h2 {
    font-size: clamp(42px, 12.5vw, 50px);
    white-space: nowrap;
  }

  .hero-lede {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
  }

  .hero-visual img {
    aspect-ratio: 1 / 1;
  }

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

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

  .metric:last-child {
    border-bottom: 0;
  }

  .portfolio-head {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .portfolio-count {
    width: 140px;
  }

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

  .portfolio-card {
    min-height: 420px;
  }

  .portfolio-card div {
    padding: 26px;
  }

  .story-intro,
  .contact-editorial {
    gap: 34px;
    margin-bottom: 52px;
  }

  .story-side-copy,
  .contact-side-copy,
  .recognition-head p {
    font-size: 17px;
  }

  .story-rail {
    width: min(100% - 40px, var(--container));
  }

  .story-card {
    height: 470px;
  }

  .story-card-content {
    padding: 26px;
  }

  .story-mark {
    margin-top: 44px;
    font-size: 44px;
  }

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

  .recognition-card,
  .recognition-card:nth-child(-n + 2) {
    grid-column: span 1;
    min-height: 220px;
  }

  .contact-board {
    gap: 42px;
  }

  .contact-routes {
    gap: 16px;
  }

  .honor-list article {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .contact-form {
    grid-template-columns: 1fr;
    padding: 0;
    gap: 0;
  }

  .submit-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
  }

  .submit-row.full .button {
    display: flex;
    width: 100%;
    inline-size: 100%;
    min-width: 100%;
    max-width: 100%;
    flex-basis: auto;
    justify-self: stretch;
  }

  .footer-grid {
    gap: 34px;
  }
}

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

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