:root {
  color-scheme: light;
  --ink: #17211d;
  --muted: #5f6e67;
  --line: #d9e3de;
  --paper: #f7faf8;
  --panel: #ffffff;
  --green: #0f6d54;
  --green-dark: #0a483a;
  --teal: #23878b;
  --gold: #b88a3d;
  --shadow: 0 24px 70px rgba(23, 33, 29, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Microsoft YaHei", "PingFang SC", "Segoe UI", Arial, sans-serif;
  background: var(--paper);
  overflow-x: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(20px, 5vw, 72px);
  background: rgba(247, 250, 248, 0.9);
  border-bottom: 1px solid rgba(217, 227, 222, 0.72);
  backdrop-filter: blur(18px);
}

.site-header.compact {
  position: sticky;
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  color: #fff;
  font-weight: 800;
  background: linear-gradient(135deg, var(--green), var(--teal));
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(15, 109, 84, 0.25);
}

.brand strong,
.brand small {
  display: block;
  white-space: nowrap;
}

.brand strong {
  font-size: 17px;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.3vw, 30px);
  color: #2a3934;
  font-size: 15px;
}

.nav a {
  position: relative;
  padding: 8px 0;
}

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

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

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.65fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: end;
  min-height: calc(100vh - 72px);
  padding: clamp(64px, 9vw, 118px) clamp(20px, 5vw, 72px) clamp(48px, 7vw, 84px);
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(35, 135, 139, 0.28), transparent 28%),
    radial-gradient(circle at 70% 80%, rgba(184, 138, 61, 0.18), transparent 26%),
    linear-gradient(110deg, rgba(10, 72, 58, 0.96), rgba(15, 109, 84, 0.86) 52%, rgba(247, 250, 248, 0.96) 53%);
}

.hero::before {
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  pointer-events: none;
  content: "";
  background: linear-gradient(0deg, rgba(247, 250, 248, 1), rgba(247, 250, 248, 0));
}

.hero-panel,
.hero-info {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.hero-panel {
  max-width: 780px;
  color: #fff;
}

.eyebrow,
.section-title p {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 1.08;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.hero-copy {
  max-width: 640px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.8;
  overflow-wrap: break-word;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  font-weight: 700;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

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

.button.primary {
  color: var(--green-dark);
  background: #fff;
}

.button.secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.hero-info {
  display: grid;
  gap: 14px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-info h2 {
  margin: 4px 6px 2px;
  color: var(--green-dark);
  font-size: 24px;
  line-height: 1.25;
}

.hero-info div {
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.hero-info span,
dt,
address span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 13px;
}

.hero-info strong {
  display: block;
  font-size: 18px;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-points span {
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
}

.section {
  padding: clamp(68px, 9vw, 110px) clamp(20px, 5vw, 72px);
}

.section-title {
  max-width: 980px;
  margin: 0 auto 30px;
}

.section-title h2,
.contact h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.18;
}

.section-title span {
  display: block;
  max-width: 760px;
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.75;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
}

.about-grid article {
  min-height: 220px;
  padding: 26px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(23, 33, 29, 0.06);
}

.about-grid h3,
.service-copy h3 {
  margin: 0 0 14px;
  font-size: 22px;
}

.about-grid p,
.service-copy p,
.service-item p,
.contact p,
.footer {
  color: var(--muted);
  line-height: 1.75;
}

.services {
  color: #fff;
  background: #102620;
}

.services .section-title {
  color: #fff;
}

.service-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 68px);
  max-width: 1120px;
  margin: 0 auto;
}

.service-copy {
  align-self: start;
  position: sticky;
  top: 104px;
}

.service-copy h3 {
  font-size: clamp(26px, 3.4vw, 42px);
  line-height: 1.22;
}

.service-copy p,
.service-item p {
  color: rgba(255, 255, 255, 0.72);
}

.service-list {
  display: grid;
  gap: 16px;
}

.service-item {
  padding: 24px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.service-item span {
  display: inline-block;
  margin-bottom: 18px;
  color: #ddbd82;
  font-weight: 800;
}

.service-item strong {
  display: block;
  font-size: 20px;
}

.adv-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1120px;
  margin: 0 auto;
}

.adv-grid article {
  min-height: 230px;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(23, 33, 29, 0.06);
}

.adv-grid article > span {
  display: inline-grid;
  place-items: center;
  min-width: 52px;
  height: 34px;
  margin-bottom: 18px;
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 800;
  background: rgba(35, 135, 139, 0.1);
  border-radius: 8px;
}

.adv-grid h3 {
  margin: 0 0 12px;
  font-size: 22px;
}

.adv-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.links {
  background: #eef5f1;
}

.link-grid,
.case-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1120px;
  margin: 0 auto;
}

.link-card,
.case-card,
.faq-grid article,
.timeline article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(23, 33, 29, 0.06);
}

.link-card {
  min-height: 230px;
  padding: 28px;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.link-card:hover {
  border-color: rgba(15, 109, 84, 0.36);
  box-shadow: 0 18px 42px rgba(23, 33, 29, 0.1);
  transform: translateY(-3px);
}

.link-card.featured {
  color: #fff;
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  border-color: rgba(255, 255, 255, 0.16);
}

.link-card > span,
.case-card > span,
.timeline article > span {
  display: inline-grid;
  place-items: center;
  min-width: 58px;
  height: 34px;
  margin-bottom: 18px;
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 800;
  background: rgba(35, 135, 139, 0.1);
  border-radius: 8px;
}

.link-card.featured > span {
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
}

.link-card h3,
.case-card h2,
.faq-grid h2,
.timeline h2 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.3;
}

.link-card p,
.case-card p,
.faq-grid p,
.timeline p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.link-card.featured p {
  color: rgba(255, 255, 255, 0.78);
}

.page-hero {
  padding: clamp(76px, 9vw, 120px) clamp(20px, 5vw, 72px) clamp(54px, 7vw, 82px);
  color: #fff;
  background:
    radial-gradient(circle at 82% 16%, rgba(35, 135, 139, 0.32), transparent 30%),
    linear-gradient(135deg, var(--green-dark), var(--green) 64%, var(--teal));
}

.page-hero h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1.1;
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.75;
}

.knowledge-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  gap: clamp(28px, 5vw, 70px);
  align-items: end;
}

.process-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: center;
}

.process-figure {
  margin: 0;
  width: 100%;
  max-width: 720px;
  justify-self: end;
  padding: 10px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.process-figure img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.hero-metric-panel {
  display: grid;
  gap: 14px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-metric-panel div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 8px;
}

.hero-metric-panel span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 13px;
}

.hero-metric-panel strong {
  display: block;
  color: var(--green-dark);
  font-size: 18px;
  line-height: 1.45;
}

.detail-section {
  padding-top: clamp(52px, 7vw, 82px);
}

.knowledge-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1120px;
  margin: 0 auto;
}

.knowledge-grid article,
.system-card,
.check-layout article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(23, 33, 29, 0.06);
}

.knowledge-grid article {
  min-height: 250px;
  padding: 26px;
}

.knowledge-grid article > span,
.system-card > span {
  display: inline-grid;
  place-items: center;
  min-width: 52px;
  height: 34px;
  margin-bottom: 18px;
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 800;
  background: rgba(35, 135, 139, 0.1);
  border-radius: 8px;
}

.knowledge-grid h2,
.system-card h2,
.check-layout h2 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.3;
}

.knowledge-grid p,
.system-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.cleanroom-systems {
  color: #fff;
  background: #102620;
}

.cleanroom-systems .section-title span {
  color: rgba(255, 255, 255, 0.68);
}

.system-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 18px;
  max-width: 1120px;
  margin: 0 auto;
}

.system-card {
  min-height: 220px;
  padding: 28px;
  color: var(--ink);
}

.system-card.large {
  grid-row: span 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100%;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(10, 72, 58, 0.08), rgba(10, 72, 58, 0.92)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 42px),
    linear-gradient(135deg, var(--green), var(--teal));
  border-color: rgba(255, 255, 255, 0.16);
}

.system-card.large > span {
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
}

.system-card.large p {
  color: rgba(255, 255, 255, 0.78);
}

.check-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 1120px;
  margin: 0 auto;
}

.check-layout article {
  padding: 28px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
  padding: 0;
  color: var(--muted);
  line-height: 1.7;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 24px;
}

.check-list li::before {
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 8px;
  height: 8px;
  content: "";
  background: var(--green);
  border-radius: 50%;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto;
}

.process-grid article,
.prep-layout article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(23, 33, 29, 0.06);
}

.process-grid article {
  display: flex;
  flex-direction: column;
  min-height: 310px;
  padding: 24px;
}

.process-grid span,
.prep-note > span {
  display: inline-grid;
  place-items: center;
  align-self: flex-start;
  min-width: 52px;
  height: 34px;
  margin-bottom: 18px;
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 800;
  background: rgba(35, 135, 139, 0.1);
  border-radius: 8px;
}

.process-grid h2,
.prep-layout h2 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.3;
}

.process-grid p,
.prep-layout p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.process-grid strong {
  display: block;
  margin-top: auto;
  padding-top: 22px;
  color: var(--green-dark);
  line-height: 1.5;
}

.process-board {
  background: #eef5f1;
}

.prep-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1120px;
  margin: 0 auto;
}

.prep-layout article {
  padding: 28px;
}

.prep-note {
  color: #fff;
  background-color: var(--green-dark);
  background:
    linear-gradient(180deg, rgba(10, 72, 58, 0.08), rgba(10, 72, 58, 0.92)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 42px),
    linear-gradient(135deg, var(--green), var(--teal));
  border-color: rgba(255, 255, 255, 0.16);
}

.prep-note h2 {
  color: #fff;
}

.prep-note > span {
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
}

.prep-note p {
  color: rgba(255, 255, 255, 0.78);
}

.case-card,
.faq-grid article {
  padding: 28px;
}

.featured-work {
  background: #fff;
}

.featured-case,
.real-case {
  max-width: 1120px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(23, 33, 29, 0.08);
  overflow: hidden;
}

.featured-case {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  align-items: stretch;
}

.featured-case-media {
  min-height: 360px;
  background: #e9f0ef;
}

.featured-case-media img,
.case-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-case-media.is-missing,
.case-gallery figure.is-missing {
  display: grid;
  place-items: center;
  min-height: 260px;
  background:
    linear-gradient(135deg, rgba(15, 109, 84, 0.1), rgba(35, 135, 139, 0.14)),
    #e9f0ef;
}

.featured-case-media.is-missing img,
.case-gallery figure.is-missing img {
  display: none;
}

.featured-case-media.is-missing::before,
.case-gallery figure.is-missing::before {
  padding: 0 24px;
  color: var(--green-dark);
  font-weight: 800;
  text-align: center;
  content: "项目效果图";
}

.featured-case-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(26px, 4vw, 46px);
}

.featured-case-copy > span,
.real-case-head span {
  display: inline-grid;
  place-items: center;
  min-width: 74px;
  height: 34px;
  margin-bottom: 18px;
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 800;
  background: rgba(35, 135, 139, 0.1);
  border-radius: 8px;
}

.featured-case-copy h3,
.real-case-head h2 {
  margin: 0 0 14px;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.22;
}

.featured-case-copy p,
.real-case-head p,
.case-gallery figcaption {
  color: var(--muted);
  line-height: 1.75;
}

.featured-case-copy .button.primary {
  margin-top: 26px;
  color: #fff;
  background: var(--green);
  border-color: var(--green);
}

.real-case {
  padding: clamp(18px, 3vw, 28px);
}

.real-case-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.65fr);
  gap: 22px;
  align-items: end;
  padding: 6px 6px 24px;
}

.real-case-head p {
  margin: 0;
}

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

.case-gallery figure {
  position: relative;
  min-height: 220px;
  margin: 0;
  overflow: hidden;
  background: #e9f0ef;
  border-radius: 8px;
}

.case-gallery-feature {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 454px;
}

.case-gallery figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 10px 12px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  background: rgba(10, 72, 58, 0.72);
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.spec-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  color: var(--muted);
  line-height: 1.65;
  list-style: none;
}

.spec-list li {
  padding-left: 16px;
  border-left: 3px solid rgba(15, 109, 84, 0.22);
}

.timeline {
  display: grid;
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
}

.timeline article {
  display: grid;
  grid-template-columns: 76px minmax(0, 0.45fr) minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  padding: 24px;
}

.timeline article > span {
  margin-bottom: 0;
}

.subpage-cta {
  margin-top: 0;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 28px;
  align-items: center;
  margin: 0 clamp(20px, 5vw, 72px) clamp(42px, 6vw, 72px);
  padding: clamp(28px, 5vw, 48px);
  color: #fff;
  background: linear-gradient(135deg, var(--green-dark), var(--green) 62%, var(--teal));
  border-radius: 8px;
}

.contact p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.78);
}

address {
  padding: 22px;
  font-style: normal;
  line-height: 1.7;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
}

address span {
  color: rgba(255, 255, 255, 0.72);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero,
  .service-layout,
  .adv-grid,
  .link-grid,
  .case-grid,
  .faq-grid,
  .knowledge-hero,
  .process-hero,
  .knowledge-grid,
  .system-layout,
  .check-layout,
  .process-grid,
  .prep-layout,
  .featured-case,
  .real-case-head,
  .contact {
    grid-template-columns: 1fr;
  }

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

  .case-gallery-feature {
    grid-column: span 2;
    grid-row: auto;
    min-height: 360px;
  }

  .process-grid article {
    min-height: auto;
  }

  .system-card.large {
    grid-row: auto;
    min-height: 320px;
  }

  .timeline article {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    background:
      radial-gradient(circle at 78% 10%, rgba(35, 135, 139, 0.24), transparent 30%),
      linear-gradient(180deg, rgba(10, 72, 58, 0.96), rgba(15, 109, 84, 0.88));
  }

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

  .adv-grid article {
    min-height: auto;
  }

  .service-copy {
    position: static;
  }

  .footer {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .brand small {
    white-space: normal;
  }

  .hero {
    padding-top: 52px;
  }

  .hero h1 {
    font-size: 34px;
    line-height: 1.14;
  }

  .hero-copy {
    max-width: min(100%, 320px);
    word-break: break-all;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .case-gallery {
    grid-template-columns: 1fr;
  }

  .case-gallery-feature {
    grid-column: auto;
    min-height: 260px;
  }

  .case-gallery figure,
  .featured-case-media {
    min-height: 240px;
  }

  .about-grid article {
    min-height: auto;
  }
}
