/* ============================================================
   ATGROC corporate site — static, no build step.
   Palette: deep green #2c5145 / cream #faf6ef / soft pink #f6ddd3
   Breakpoints: <=767 phone / 768-1023 tablet / >=1024 desktop
   Fonts: local Noto Sans only (webfonts/), never a remote CDN.
   ============================================================ */

:root {
  --green: #2c5145;
  --green-deep: #23423a;
  --cream: #faf6ef;
  --pink: #f6ddd3;
  --pink-soft: #fbeee7;
  --ink: #33413c;
  --clay: #c98d76;
  --line: rgba(44, 81, 69, 0.18);
  --maxw: 1320px;

  /* CJK / Thai face is swapped per language (see html[lang] rules below);
     every family here is served from /webfonts — no remote font ever. */
  --cjk: "Noto Sans";
  --font-ui: "Noto Sans", var(--cjk), system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-display: Georgia, "Times New Roman", "Noto Sans", var(--cjk), serif;
}

html[lang="zh-CN"] { --cjk: "Noto Sans SC"; }
html[lang="zh-TW"] { --cjk: "Noto Sans TC"; }
html[lang="ja"]    { --cjk: "Noto Sans JP"; }
html[lang="ko"]    { --cjk: "Noto Sans KR"; }
html[lang="th"]    { --cjk: "Noto Sans Thai"; }

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-ui);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.85;
  font-size: 16px;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

h1, h2, h3, .logo, .footer-logo, .hero h1 { font-family: var(--font-display); }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.container.narrow { max-width: 860px; }

.section { padding: 96px 0; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- inline SVG icon system ---------- */
.ico {
  width: 1em;
  height: 1em;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  vertical-align: -0.14em;
}
.ico-sprite { display: none; }

/* ---------- section labels / titles ---------- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}
.section-label .ico { width: 1.15em; height: 1.15em; opacity: 0.8; }
.section-label.light, .section-title.light { color: var(--cream); }

.section-title {
  font-size: clamp(28px, 3.4vw, 46px);
  font-weight: 600;
  line-height: 1.35;
  color: var(--green-deep);
  margin-bottom: 44px;
  /* dictionary strings may carry "\n" so each language picks its own line break */
  white-space: pre-line;
}

/* ============ Header ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 246, 239, 0.94);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
  min-height: 66px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.logo {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--green-deep);
  text-decoration: none;
  padding: 10px 0;
  white-space: nowrap;
}
.logo-dot { color: var(--clay); }

.site-nav { display: flex; gap: 2px; margin-left: auto; }
.site-nav a {
  text-decoration: none;
  font-size: 15px;
  letter-spacing: 0.06em;
  color: var(--ink);
  padding: 12px 13px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-radius: 6px;
  white-space: nowrap;
}
.site-nav a:hover, .site-nav a:focus-visible { background: var(--pink-soft); color: var(--green-deep); }

.btn-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 8px 22px;
  background: var(--green);
  color: var(--cream);
  border-radius: 999px;
  text-decoration: none;
  font-size: 15px;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.btn-contact:hover { background: var(--green-deep); }

/* ---------- language switcher ---------- */
.lang { position: relative; }
.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  min-width: 44px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap;
}
.lang-btn:hover { background: var(--pink-soft); }
.lang-btn .ico-globe { width: 1.25em; height: 1.25em; }
.lang-btn .ico-chev { width: 0.85em; height: 0.85em; opacity: 0.65; transition: transform 0.2s ease; }
.lang-btn[aria-expanded="true"] .ico-chev { transform: rotate(180deg); }

.lang-menu {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  min-width: 190px;
  max-height: 70vh;
  overflow-y: auto;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(44, 81, 69, 0.18);
  padding: 8px;
  z-index: 60;
}
.lang.open .lang-menu { display: block; }
.lang-menu button {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: none;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  text-align: left;
  border-radius: 8px;
  cursor: pointer;
}
.lang-menu button:hover, .lang-menu button:focus-visible { background: var(--pink-soft); }
.lang-menu button[aria-current="true"] { color: var(--green-deep); font-weight: 600; }
.lang-menu button .ico { width: 1em; height: 1em; opacity: 0; }
.lang-menu button[aria-current="true"] .ico { opacity: 1; }

/* mobile copy of the switcher, lives inside the hamburger panel */
.lang-mobile { display: none; }

.hamburger {
  display: none;
  width: 48px;
  height: 48px;
  border: none;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--green-deep);
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============ Hero ============ */
.hero {
  background: var(--green);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.hero-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 84px 28px 104px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}
.hero-copy { position: relative; min-width: 0; }
.hero-vertical {
  position: absolute;
  left: 0;
  top: 2px;
  writing-mode: vertical-rl;
  font-size: 14px;
  letter-spacing: 0.32em;
  opacity: 0.6;
  border-left: 1px solid rgba(250, 246, 239, 0.35);
  padding-left: 14px;
  max-height: 260px;
  white-space: nowrap;
  overflow: hidden;
  pointer-events: none;
}
.hero h1 {
  font-size: clamp(34px, 3.9vw, 58px);
  line-height: 1.28;
  font-weight: 600;
  margin-bottom: 22px;
  overflow-wrap: break-word;
  white-space: pre-line;
}
.hero-sub { max-width: 46ch; opacity: 0.88; margin-bottom: 34px; }
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 10px 30px;
  border: 1px solid rgba(250, 246, 239, 0.6);
  border-radius: 999px;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: 0.1em;
  font-size: 15px;
}
.hero-cta:hover { background: rgba(250, 246, 239, 0.12); }

/* photo collage — absolutely placed inside a fixed-ratio box so it can
   never overlap the copy or overflow the viewport at any width. */
.hero-collage {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin-left: auto;
  aspect-ratio: 1 / 0.9;
  min-width: 0;
}
.hero-collage figure {
  position: absolute;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
}
.hero-collage img { width: 100%; height: 100%; object-fit: cover; }
.collage-main {
  left: 0; top: 0;
  width: 80%; height: 64%;
  border-radius: 16px;
}
.collage-sub1 {
  right: 0; bottom: 0;
  width: 42%; height: 48%;
  border-radius: 50% 50% 16px 16px / 40% 40% 16px 16px;
  border: 5px solid var(--cream);
  z-index: 2;
}
.collage-sub2 {
  left: 1%; bottom: 1%;
  width: 33%; height: 40%;
  border-radius: 14px;
  transform: rotate(-3deg);
  border: 5px solid var(--cream);
  z-index: 1;
}

/* doodles */
.doodle { position: absolute; color: var(--pink); }
.doodle-star { width: 34px; top: -18px; right: 4%; }
.doodle-bird { width: 56px; bottom: -26px; left: 0; color: rgba(250, 246, 239, 0.8); }
.doodle-star2 { width: 30px; margin: 36px auto 0; display: block; color: var(--green); opacity: 0.5; position: static; }

/* ============ zigzag dividers (triangle wave) ============ */
.zigzag { height: 26px; width: 100%; }
.zigzag-green-to-cream,
.zigzag-cream-to-pinkish,
.zigzag-pinkish-to-cream,
.zigzag-cream-to-green,
.zigzag-green-to-cream2 {
  --zz-top: var(--green);
  --zz-bottom: var(--cream);
  background:
    linear-gradient(135deg, var(--zz-top) 25%, transparent 25%) 0 0 / 28px 26px,
    linear-gradient(225deg, var(--zz-top) 25%, transparent 25%) 0 0 / 28px 26px,
    var(--zz-bottom);
}
.zigzag-cream-to-pinkish { --zz-top: var(--cream); --zz-bottom: var(--pink-soft); }
.zigzag-pinkish-to-cream { --zz-top: var(--pink-soft); --zz-bottom: var(--cream); }
.zigzag-cream-to-green { --zz-top: var(--cream); --zz-bottom: var(--green); }
.zigzag-green-to-cream2 { --zz-top: var(--green); --zz-bottom: var(--cream); }

/* ============ About ============ */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  gap: 60px;
  align-items: center;
}
.about-text p + p { margin-top: 18px; }
.about-img img {
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(44, 81, 69, 0.16);
}

/* ============ What we do（恢复原版式：粉底居中 + 圆形图标；外形改柔和圆角窗，不用拱形碑） ============ */
.whatwedo { padding: 0; }
.whatwedo-band { background: var(--pink-soft); padding: 80px 0 88px; }
.whatwedo .section-title { margin-bottom: 52px; }

.arch-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
}
.arch-card {
  background: var(--pink);
  /* 原 160px 顶圆 = 拱形碑；改为四角统一柔圆「窗」形 */
  border-radius: 32px;
  padding: 48px 32px 40px;
  text-align: center;
  box-shadow: 0 10px 24px rgba(44, 81, 69, 0.10);
}
.arch-icon {
  width: 84px;
  height: 84px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
}
.arch-icon .ico { width: 46px; height: 46px; stroke-width: 1.6; }
.arch-card h3 {
  font-size: 20px;
  color: var(--green-deep);
  margin-bottom: 12px;
  letter-spacing: 0.03em;
}
.arch-card p { font-size: 15px; text-align: left; }

/* ============ Brands ============ */
.brand-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 60px;
  align-items: center;
  padding: 52px 0;
}
.brand-row + .brand-row { border-top: 1px dashed var(--line); }
.brand-row-reverse .brand-text { order: 2; }
.brand-row-reverse .brand-img { order: 1; }

.brand-no {
  font-size: 13px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 8px;
}
.brand-text h3 {
  font-size: 32px;
  color: var(--green-deep);
  margin-bottom: 16px;
}
.brand-text p + p { margin-top: 14px; }
.brand-img img {
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(44, 81, 69, 0.16);
}
.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  min-height: 44px;
  padding: 10px 24px;
  border: 1px solid var(--green);
  border-radius: 999px;
  color: var(--green-deep);
  text-decoration: none;
  font-size: 15px;
  letter-spacing: 0.04em;
}
.brand-link:hover { background: var(--green); color: var(--cream); }
.brand-link .url { opacity: 0.7; font-size: 13px; letter-spacing: 0.02em; }
.brand-link:hover .url { opacity: 0.85; }

/* ============ News ============ */
.news { padding: 0; }
.news-band { background: var(--green); padding: 80px 0 88px; }
/* 与上方品牌区同宽：跟 .container 走，不再额外收窄 */
.news-list { list-style: none; width: 100%; }
.news-list li { border-bottom: 1px solid rgba(250, 246, 239, 0.22); }
.news-item {
  display: grid;
  /* 日期 / 标签 固定列宽，避免 DOUJINCCHI 比「お知らせ」宽时把标题列挤歪 */
  grid-template-columns: 120px 168px minmax(0, 1fr) 24px;
  gap: 28px;
  align-items: center;
  padding: 22px 6px;
  color: var(--cream);
  text-decoration: none;
}
.news-item:hover { background: rgba(250, 246, 239, 0.07); }
.news-item time { font-size: 14px; letter-spacing: 0.06em; opacity: 0.75; white-space: nowrap; }
.news-tag {
  justify-self: start;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(250, 246, 239, 0.14);
  border: 1px solid rgba(250, 246, 239, 0.3);
  border-radius: 8px;
  padding: 4px 12px;
  white-space: nowrap;
  line-height: 1.6;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news-tag .ico { width: 0.95em; height: 0.95em; }
.news-item .news-text { font-size: 15px; min-width: 0; }
.news-item .news-text strong { display: block; font-weight: 600; }
.news-item .news-text span { display: block; opacity: 0.78; font-size: 14px; }
.news-item .ico-chev-r { width: 18px; height: 18px; opacity: 0.6; justify-self: end; }
.news-item:hover .ico-chev-r { opacity: 1; }

/* ============ News article page ============ */
.article { padding: 64px 0 96px; }
.article-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  color: var(--green);
  text-decoration: none;
  font-size: 15px;
  letter-spacing: 0.04em;
}
.article-back:hover { color: var(--green-deep); text-decoration: underline; }
.article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: 26px 0 14px;
}
.article-meta time { font-size: 14px; letter-spacing: 0.06em; color: var(--green); opacity: 0.8; }
.article-meta .news-tag {
  color: var(--green);
  background: var(--pink-soft);
  border-color: var(--line);
}
.article h1 {
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.35;
  color: var(--green-deep);
  font-weight: 600;
  margin-bottom: 30px;
}
.article-figure { margin: 0 0 32px; }
.article-figure img {
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(44, 81, 69, 0.16);
  width: 100%;
}
.article-body p + p { margin-top: 18px; }
.article-nav {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 52px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.article-nav a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 10px 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--green-deep);
  text-decoration: none;
  font-size: 15px;
  max-width: 100%;
}
.article-nav a:hover { background: var(--pink-soft); }
.article-nav a span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 34ch; }
.article-nav a[hidden] { display: none; }

/* ============ Company ============ */
.company-table { border-top: 1px solid var(--line); }
.company-table > div {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 20px;
  padding: 18px 6px;
  border-bottom: 1px solid var(--line);
}
.company-table dt {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
}
.company-table dt .ico { width: 1.15em; height: 1.15em; opacity: 0.85; }
.company-table dd { min-width: 0; overflow-wrap: break-word; }
.company-table dd a { color: var(--green-deep); }

/* ============ Footer ============ */
.site-footer {
  background: var(--green-deep);
  color: var(--cream);
  padding: 60px 0 44px;
}
.footer-inner { text-align: center; }
.footer-logo { font-size: 24px; font-weight: 700; letter-spacing: 0.12em; margin-bottom: 8px; }
.footer-addr { font-size: 13px; opacity: 0.72; letter-spacing: 0.03em; margin-bottom: 20px; }
.footer-addr a { color: inherit; }
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2px 4px;
  margin-bottom: 14px;
}
.footer-nav a {
  color: var(--cream);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.08em;
  padding: 12px 13px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 6px;
}
.footer-nav a:hover { background: rgba(250, 246, 239, 0.1); }
.footer-brands {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 10px;
  margin-bottom: 22px;
  padding-top: 14px;
  border-top: 1px solid rgba(250, 246, 239, 0.14);
}
.footer-brands a {
  color: var(--cream);
  opacity: 0.85;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.04em;
  padding: 12px 14px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 6px;
}
.footer-brands a:hover { opacity: 1; background: rgba(250, 246, 239, 0.1); }
.copyright { font-size: 13px; opacity: 0.6; letter-spacing: 0.06em; }

/* ============================================================
   Toast（底部轻提示，替代系统 alert）
   ============================================================ */
.site-toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 1000;
  max-width: min(92vw, 360px);
  padding: 14px 22px;
  border-radius: 999px;
  background: var(--green-deep);
  color: var(--cream);
  font-size: 15px;
  letter-spacing: 0.04em;
  line-height: 1.35;
  text-align: center;
  box-shadow: 0 10px 28px rgba(35, 66, 58, 0.28);
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, 12px);
  transition: opacity 0.28s ease, transform 0.28s ease;
}
.site-toast.is-in {
  opacity: 1;
  transform: translate(-50%, 0);
}
.site-toast.is-out {
  opacity: 0;
  transform: translate(-50%, 8px);
}

/* ============================================================
   Wide desktop guards
   ============================================================ */
@media (max-width: 1199px) {
  /* the vertical rail turns into a plain kicker before it can crowd the title */
  .hero-vertical {
    position: static;
    writing-mode: horizontal-tb;
    max-height: none;
    border-left: none;
    border-top: 1px solid rgba(250, 246, 239, 0.35);
    padding: 12px 0 0;
    margin-bottom: 16px;
    letter-spacing: 0.26em;
    font-size: 13px;
    white-space: normal;
  }
}
@media (min-width: 1200px) {
  .hero-copy { padding-left: 74px; }
}

/* ============================================================
   Tablet 768–1023
   ============================================================ */
@media (max-width: 1023px) {
  .section { padding: 76px 0; }
  .hero-inner { grid-template-columns: minmax(0, 1fr); padding: 60px 28px 88px; gap: 52px; }
  .hero-collage { margin: 0 auto; max-width: 560px; }
  .hero-sub { max-width: none; }
  .about-grid { grid-template-columns: minmax(0, 1fr); gap: 36px; }
  .about-img { max-width: 620px; }
  .arch-cards { gap: 20px; }
  .arch-card { padding: 40px 20px 32px; }
  .brand-row { gap: 36px; }
  .news-item { grid-template-columns: 110px 148px minmax(0, 1fr) 20px; gap: 18px; }
  .company-table > div { grid-template-columns: 190px minmax(0, 1fr); }
}

/* ============================================================
   Phone <=767
   ============================================================ */
/* ============================================================
   Collapsed header <=1023  (hamburger + language switcher inside the panel)

   Why 1023 and not 767: the header row is logo + 5 nav links + language
   button + contact button, and every one of those labels is translated.
   At 768 the English row already overflows, and ru/de/vi run far longer
   than English — no amount of padding trimming survives 13 languages.
   Collapsing the whole row into the hamburger for the entire tablet range
   is the only width-proof option, so this block sits outside the phone one.
   ============================================================ */
@media (max-width: 1023px) {
  .site-nav {
    position: absolute;
    top: 66px;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    padding: 8px 16px 16px;
    display: none;
    max-height: calc(100vh - 66px);
    overflow-y: auto;
  }
  .site-nav.open { display: flex; }
  .site-nav a { width: 100%; padding: 12px 10px; }
  .btn-contact { margin-left: auto; padding: 8px 16px; font-size: 14px; }
  .btn-contact .label { display: none; }
  .lang-desktop { display: none; }
  .lang-mobile {
    display: block;
    border-top: 1px solid var(--line);
    margin-top: 8px;
    padding-top: 10px;
  }
  .lang-mobile .lang-btn { width: 100%; justify-content: flex-start; }
  .lang-mobile .lang-menu { position: static; display: none; box-shadow: none; margin-top: 8px; max-height: 46vh; }
  .lang-mobile .lang.open .lang-menu { display: block; }
  .hamburger { display: flex; }
  .header-inner { gap: 10px; padding: 0 16px; }
}

@media (max-width: 767px) {
  .section { padding: 60px 0; }
  .container { padding: 0 20px; }

  .hero-inner { padding: 44px 20px 72px; gap: 40px; }
  .hero-collage { max-width: 460px; }
  .doodle-star { top: -14px; right: 2%; }
  .doodle-bird { width: 46px; bottom: -20px; }

  .whatwedo-band { padding: 60px 0 66px; }
  .arch-cards { grid-template-columns: minmax(0, 1fr); gap: 26px; max-width: 420px; margin-left: auto; margin-right: auto; }

  .brand-row { grid-template-columns: minmax(0, 1fr); gap: 24px; padding: 40px 0; }
  .brand-row-reverse .brand-text { order: 1; }
  .brand-row-reverse .brand-img { order: 2; }
  .brand-link { width: 100%; justify-content: center; flex-wrap: wrap; gap: 6px 10px; }

  .news-band { padding: 60px 0 66px; }
  .news-item {
    grid-template-columns: minmax(0, 1fr) 20px;
    grid-template-areas:
      "date  chev"
      "tag   chev"
      "text  text";
    gap: 8px 12px;
    padding: 18px 2px;
  }
  .news-item time { grid-area: date; }
  .news-item .news-tag { grid-area: tag; }
  .news-item .news-text { grid-area: text; }
  .news-item .ico-chev-r { grid-area: chev; align-self: center; }

  .article { padding: 40px 0 72px; }
  .article-nav { flex-direction: column; }
  .article-nav a { justify-content: center; }
  .article-nav a span { max-width: 22ch; }

  .company-table > div { grid-template-columns: minmax(0, 1fr); gap: 4px; padding: 14px 4px; }
}
