﻿:root {
  color-scheme: light;
  --ink: #111111;
  --muted: #6c6f73;
  --line: #deddda;
  --panel: #fbfbfa;
  --paper: #f2f1ee;
  --soft: #ffffff;
  --accent: #f28a12;
  --accent-strong: #ffcf00;
  --shadow: 0 24px 80px rgba(32, 31, 29, 0.13);
  --radius-lg: 28px;
  --radius-md: 16px;
  --radius-sm: 10px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Aptos", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(130deg, rgba(255, 255, 255, 0.94), rgba(235, 234, 230, 0.7)),
    repeating-linear-gradient(24deg, rgba(17, 17, 17, 0.022) 0 1px, transparent 1px 22px),
    var(--paper);
  letter-spacing: 0;
}

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

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

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

button,
.button {
  border: 0;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

button:active,
.button:active {
  transform: translateY(1px);
}

:focus-visible {
  outline: 3px solid rgba(227, 27, 35, 0.35);
  outline-offset: 3px;
}

.page-bg {
  min-height: 100dvh;
  padding: 22px;
}

.site-shell {
  max-width: 1440px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: clip;
  backdrop-filter: blur(16px);
}

.nav {
  min-height: 78px;
  display: grid;
  grid: auto / 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 18px clamp(18px, 5vw, 62px);
  border-bottom: 1px solid rgba(17, 17, 17, 0.07);
  background: rgba(255, 255, 255, 0.62);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 760;
  white-space: nowrap;
}

.logo-brand img {
  width: clamp(220px, 22vw, 360px);
  height: 52px;
  object-fit: contain;
  object-position: left center;
}

.footer-logo img {
  width: min(380px, 100%);
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2.2vw, 34px);
  font-size: 14px;
  color: #222;
}

.nav-item {
  position: relative;
}

.nav-links a,
.nav-item > a {
  padding: 10px 0;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover,
.nav-links a[aria-current="page"],
.nav-item:focus-within > a,
.nav-item:hover > a {
  border-color: var(--ink);
}

.nav-menu {
  position: absolute;
  left: 50%;
  top: calc(100% + 16px);
  z-index: 15;
  width: 300px;
  display: grid;
  gap: 4px;
  padding: 14px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(17, 17, 17, 0.1);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 54px rgba(17, 17, 17, 0.16);
  opacity: 0;
  transform: translate(-50%, 8px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -18px;
  height: 18px;
}

.has-menu:hover .nav-menu,
.has-menu:focus-within .nav-menu {
  opacity: 1;
  transform: translate(-50%, 0);
  pointer-events: auto;
}

.nav-menu a {
  padding: 11px 12px;
  border: 0;
  border-radius: var(--radius-sm);
  color: #2d2f31;
  line-height: 1.25;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  background: #f3f2ef;
  border: 0;
}

.nav-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
}

.button.primary {
  background: #111;
  color: #fff;
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.18);
}

.button.primary:hover {
  background: #2a2a2a;
}

.button.secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.68);
  color: var(--ink);
}

.button.secondary:hover {
  border-color: var(--ink);
  background: #fff;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
  align-items: center;
  justify-content: center;
}

.menu-button span {
  width: 18px;
  height: 2px;
  background: currentColor;
  display: block;
  box-shadow: 0 6px 0 currentColor, 0 -6px 0 currentColor;
}

.mobile-menu {
  display: none;
}

.hero {
  min-height: calc(100dvh - 124px);
  display: grid;
  align-items: center;
  padding: clamp(42px, 7vw, 90px) clamp(18px, 5vw, 70px) 32px;
  position: relative;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1010px;
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 700;
  color: #252525;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(38px, 5.8vw, 72px);
  line-height: 1.04;
  letter-spacing: 0;
  text-wrap: balance;
}

.headline-soft {
  display: inline;
  padding: 0 0.08em 0.08em;
  border-radius: 12px;
  background: rgba(17, 17, 17, 0.06);
}

.hero p {
  max-width: 840px;
  margin: 0 auto 24px;
  color: var(--muted);
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.hero-visual {
  margin: -10px auto 4px;
  width: min(980px, 100%);
  min-height: 250px;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.hero-visual img {
  width: min(920px, 100%);
  filter: drop-shadow(0 34px 55px rgba(15, 15, 15, 0.18));
  animation: floatCargo 7s ease-in-out infinite;
}

.hero-carousel {
  width: min(1040px, 100%);
  min-height: 370px;
  align-content: center;
  gap: 14px;
  pointer-events: auto;
}

.hero-carousel-viewport {
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(255, 255, 255, 0.48);
  box-shadow: 0 24px 62px rgba(32, 31, 29, 0.12);
}

.hero-carousel-track {
  display: flex;
  transition: transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.hero-slide {
  flex: 0 0 100%;
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background: #f8f5ef;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  filter: none;
  animation: none;
}

.hero-slide-copy {
  position: absolute;
  left: clamp(16px, 4vw, 44px);
  bottom: clamp(16px, 4vw, 34px);
  max-width: min(380px, calc(100% - 32px));
  display: grid;
  gap: 7px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 42px rgba(32, 31, 29, 0.13);
  text-align: left;
}

.hero-slide-copy strong {
  font-size: clamp(16px, 1.55vw, 21px);
  line-height: 1.12;
}

.hero-slide-copy span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.hero-carousel-controls {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.hero-dot {
  width: 34px;
  height: 8px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.16);
}

.hero-dot.is-active,
.hero-dot:hover {
  background: var(--accent);
}

.hero-foot {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: #6f7377;
  font-size: 13px;
  padding-top: 24px;
}

.section {
  padding: clamp(54px, 8vw, 112px) clamp(18px, 5vw, 70px);
}

.section + .section {
  border-top: 1px solid rgba(17, 17, 17, 0.07);
}

.compact-section {
  padding-top: clamp(42px, 6vw, 78px);
  padding-bottom: clamp(42px, 6vw, 78px);
}

.section-narrow {
  max-width: 1120px;
  margin: 0 auto;
}

.section h2 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: 0;
  text-wrap: balance;
}

.lead {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.62;
}

.service-grid {
  display: grid;
  grid: auto / repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.home-service-grid {
  grid: auto / repeat(4, minmax(0, 1fr));
}

.section-action {
  margin-top: 22px;
}

.service-card {
  min-height: 390px;
  padding: 16px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.58);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
}

.service-card:nth-child(2),
.service-card:nth-child(4) {
  background: rgba(245, 245, 243, 0.82);
}

.service-card h3,
.solution-item h3,
.news-card h3 {
  font-size: 24px;
  line-height: 1.1;
  margin-bottom: 12px;
}

.service-card-media {
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(17, 17, 17, 0.06);
  background: #f7f6f3;
}

.service-card-media img {
  width: 100%;
  aspect-ratio: 1.32 / 1;
  object-fit: cover;
  transition: transform 220ms ease;
}

.service-card-media:hover img {
  transform: scale(1.025);
}

.service-card p,
.solution-item p,
.news-card p {
  color: var(--muted);
  line-height: 1.55;
}

.mini-list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  color: #343638;
  font-size: 14px;
}

.mini-list li {
  display: flex;
  gap: 8px;
}

.mini-list li::before {
  content: "";
  flex: 0 0 6px;
  height: 6px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.media-band {
  display: grid;
  grid: auto / minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.media-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: #f9f9f8;
  box-shadow: 0 18px 48px rgba(32, 31, 29, 0.1);
}

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

.media-frame.large {
  grid-row: span 2;
}

.media-frame.large img {
  aspect-ratio: 1 / 1;
}

.image-mosaic {
  display: grid;
  grid: auto / minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 14px;
  align-items: stretch;
}

.compact-link-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.compact-link-list a {
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(255, 255, 255, 0.7);
  color: #292b2d;
  font-weight: 700;
}

.compact-link-list a:hover {
  border-color: var(--accent);
  background: #fff;
}

.text-link {
  display: inline-flex;
  width: fit-content;
  color: var(--accent);
  font-weight: 800;
}

.text-link:hover {
  color: #111;
}

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

.solution-item {
  display: grid;
  grid: auto / 150px minmax(0, 1fr) 168px;
  gap: 24px;
  align-items: center;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.solution-item span {
  color: #a4a3a0;
  font-size: 18px;
}

.solution-thumb {
  width: 168px;
  aspect-ratio: 1.25 / 1;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: #f7f6f3;
}

.detail-stack {
  display: grid;
  gap: 18px;
}

.detail-row {
  display: grid;
  grid: auto / minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: center;
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.68);
}

.detail-row:nth-child(even) .detail-media {
  order: 2;
}

.detail-media {
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: #f7f6f3;
}

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

.detail-copy h2 {
  font-size: clamp(30px, 4vw, 54px);
}

.detail-index {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--accent);
  font-weight: 800;
}

.detail-button {
  margin-top: 22px;
}

.metric-grid {
  display: grid;
  grid: auto / repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.metric {
  min-height: 146px;
  padding: 22px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: #fff;
}

.metric strong {
  display: block;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1;
}

.metric span {
  display: block;
  color: var(--muted);
  margin-top: 12px;
  line-height: 1.45;
}

.process {
  display: grid;
  grid: auto / repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.process-step {
  padding: 24px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(17, 17, 17, 0.08);
}

.process-step b {
  display: block;
  color: var(--accent);
  margin-bottom: 28px;
}

.process-step h3 {
  margin-bottom: 10px;
}

.split-panel {
  display: grid;
  grid: auto / 1fr 1fr;
  gap: 14px;
  margin-top: 34px;
}

.content-grid {
  display: grid;
  grid: auto / 1fr 1fr;
  gap: 14px;
  margin: 30px 0;
}

.quiet-panel {
  border-radius: var(--radius-md);
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(255, 255, 255, 0.68);
  padding: clamp(24px, 4vw, 42px);
}

.info-panel h2 {
  margin-bottom: 14px;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.08;
}

.info-panel .mini-list {
  margin-top: 0;
}

.quiet-panel.dark {
  background: #111;
  color: #fff;
}

.quiet-panel.dark p,
.quiet-panel.dark li {
  color: #d2d2d2;
}

.quote-strip {
  border-radius: var(--radius-lg);
  background: #111;
  color: #fff;
  padding: clamp(28px, 5vw, 58px);
  display: grid;
  grid: auto / 1.2fr auto;
  align-items: center;
  gap: 28px;
}

.quote-strip p {
  color: #d6d6d6;
  max-width: 720px;
  line-height: 1.55;
}

.quote-strip .button {
  background: #fff;
  color: #111;
}

.news-grid {
  display: grid;
  grid: auto / repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.news-card {
  min-height: 420px;
  padding: 14px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(255, 255, 255, 0.72);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
}

.news-card img {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(17, 17, 17, 0.06);
  background: #f7f6f3;
}

.news-card time {
  color: #8d8f92;
  font-size: 14px;
}

.news-card a {
  font-weight: 800;
}

.article-hero {
  display: grid;
  grid: auto / minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(44px, 6.4vw, 82px) clamp(18px, 5vw, 70px);
}

.article-hero time {
  display: block;
  color: var(--muted);
  margin: 18px 0 14px;
}

.article-hero h1 {
  max-width: 860px;
  font-size: clamp(34px, 4.5vw, 56px);
  line-height: 1.08;
}

.article-hero p {
  max-width: 720px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.58;
}

.back-link {
  display: inline-flex;
  color: var(--accent);
  font-weight: 800;
}

.article-body {
  max-width: 820px;
  margin: 0 auto;
}

.article-body.expanded-article {
  max-width: 1120px;
}

.article-body > p {
  color: #44474a;
  font-size: 19px;
  line-height: 1.78;
}

.article-body > p + p {
  margin-top: 24px;
}

.workflow-strip {
  margin: 34px 0 10px;
  padding: clamp(22px, 4vw, 38px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(255, 255, 255, 0.56);
}

.workflow-strip h2 {
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.05;
}

.workflow-strip .process {
  grid: auto / repeat(2, minmax(0, 1fr));
}

.article-cta {
  margin-top: 42px;
  padding: clamp(24px, 4vw, 42px);
  border-radius: var(--radius-md);
  background: #111;
  color: #fff;
}

.article-cta h2 {
  font-size: clamp(28px, 4vw, 46px);
}

.article-cta p {
  color: #d6d6d6;
  line-height: 1.6;
}

.page-hero {
  padding: clamp(44px, 6.4vw, 82px) clamp(18px, 5vw, 70px);
}

.page-hero h1 {
  max-width: 980px;
  font-size: clamp(34px, 4.7vw, 58px);
  line-height: 1.08;
}

.page-hero p {
  max-width: 780px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.58;
}

.real-photo-grid {
  display: grid;
  grid: auto / minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 14px;
  align-items: stretch;
}

.real-photo-card {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 18px 48px rgba(32, 31, 29, 0.1);
}

.real-photo-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  min-height: 0;
  object-fit: cover;
}

.real-photo-card.large {
  grid-row: span 2;
}

.real-photo-card figcaption {
  padding: 14px 16px 16px;
  color: #5f6265;
  font-size: 14px;
  line-height: 1.45;
}

.about-photo-pair {
  display: grid;
  grid: auto / repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.about-photo-pair .real-photo-card img {
  aspect-ratio: 16 / 10;
}

.contact-layout {
  display: grid;
  grid: auto / minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 18px;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.form-honey {
  display: none;
}

.field-grid {
  display: grid;
  grid: auto / 1fr 1fr;
  gap: 14px;
}

label {
  display: grid;
  gap: 8px;
  color: #2e3133;
  font-weight: 700;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid #cfcfca;
  background: #fff;
  color: var(--ink);
  border-radius: var(--radius-sm);
  padding: 13px 14px;
  min-height: 48px;
}

textarea {
  resize: vertical;
  min-height: 140px;
}

.form-status {
  min-height: 24px;
  color: var(--muted);
  font-weight: 700;
}

.form-status[data-tone="error"] {
  color: #b0141b;
}

.form-status[data-tone="success"] {
  color: #126b39;
}

.site-footer {
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  padding: 34px clamp(18px, 5vw, 70px);
  background: rgba(255, 255, 255, 0.62);
}

.footer-grid {
  display: grid;
  grid: auto / 1.3fr repeat(3, 0.7fr);
  gap: 28px;
}

.footer-grid p,
.footer-grid a {
  color: var(--muted);
  line-height: 1.55;
}

.footer-note {
  margin: 26px 0 0;
  max-width: 880px;
  color: #6f7377;
  font-size: 13px;
  line-height: 1.55;
}

.footer-grid h3 {
  margin-bottom: 12px;
  font-size: 15px;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  color: #8b8d90;
  font-size: 13px;
}

.cookie-banner {
  position: fixed;
  z-index: 20;
  right: 22px;
  bottom: 22px;
  width: min(420px, calc(100vw - 44px));
  border-radius: var(--radius-md);
  border: 1px solid rgba(17, 17, 17, 0.12);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 48px rgba(17, 17, 17, 0.16);
  padding: 18px;
  display: none;
}

.cookie-banner.is-visible {
  display: block;
}

.cookie-banner p {
  color: var(--muted);
  line-height: 1.5;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.fade-in {
  opacity: 0;
  transform: translateY(16px);
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 560ms ease, transform 560ms ease;
}

@keyframes floatCargo {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 1100px) {
  .service-grid {
    grid: auto / repeat(2, minmax(0, 1fr));
  }

  .home-service-grid {
    grid: auto / repeat(2, minmax(0, 1fr));
  }

  .metric-grid,
  .process {
    grid: auto / repeat(2, minmax(0, 1fr));
  }

  .news-grid,
  .footer-grid {
    grid: auto / 1fr 1fr;
  }
}

@media (max-width: 840px) {
  .page-bg {
    padding: 10px;
  }

  .site-shell {
    border-radius: 22px;
  }

  .nav {
    grid: auto / 1fr auto;
    min-height: 70px;
    padding: 14px 16px;
  }

  .nav-links {
    display: none;
  }

  .menu-button {
    display: inline-flex;
  }

  .nav-actions .button {
    display: none;
  }

  .mobile-menu {
    display: none;
    padding: 4px 16px 18px;
    border-bottom: 1px solid rgba(17, 17, 17, 0.07);
    background: rgba(255, 255, 255, 0.82);
  }

  .mobile-menu.is-open {
    display: grid;
    gap: 8px;
  }

  .mobile-menu a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  }

  .mobile-sub-link {
    padding: 10px 0 10px 18px !important;
    color: var(--muted);
    font-size: 14px;
  }

  .mobile-menu .button {
    margin-top: 8px;
    width: 100%;
  }

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

  h1 {
    font-size: clamp(34px, 10.5vw, 52px);
  }

  .page-hero h1,
  .article-hero h1 {
    font-size: clamp(32px, 9vw, 46px);
  }

  .hero p,
  .page-hero p,
  .lead {
    font-size: 16px;
  }

  .hero-visual {
    min-height: 180px;
    margin-top: 4px;
  }

  .hero-carousel {
    min-height: 270px;
  }

  .hero-slide,
  .hero-slide img {
    min-height: 260px;
  }

  .hero-slide-copy {
    position: relative;
    left: auto;
    bottom: auto;
    margin: -94px 12px 12px;
    max-width: none;
  }

  .hero-foot,
  .footer-bottom {
    flex-direction: column;
  }

  .media-band,
  .article-hero,
  .solution-item,
  .detail-row,
  .split-panel,
  .content-grid,
  .quote-strip,
  .contact-layout,
  .field-grid,
  .image-mosaic,
  .real-photo-grid,
  .about-photo-pair {
    grid: auto / 1fr;
  }

  .real-photo-card.large {
    grid-row: auto;
  }

  .solution-thumb {
    width: 100%;
    max-width: 320px;
  }

  .detail-row:nth-child(even) .detail-media {
    order: 0;
  }

  .logo-brand img {
    width: min(230px, 58vw);
    height: 46px;
  }

  .service-grid,
  .metric-grid,
  .process,
  .workflow-strip .process,
  .news-grid,
  .footer-grid {
    grid: auto / 1fr;
  }

  .quote-strip .button {
    width: 100%;
  }
}

