@charset "utf-8";
/* 株式会社アドバンス コーポレートサイト
   目的は取引先・仕入先・金融機関向けの信用。落ち着いた紺・白・淡グレーで、
   情報が読み取りやすいことを最優先にする。装飾は最小限。 */

/* 配色は三上さんのGmailアバターのグラデーション（#344056→#627194→#D9E0EE）を
   参考にしたスレートブルー系。そのまま使うのではなく色味だけ寄せ、
   本文コントラストは WCAG AA（4.5:1）以上を実測で確保している。 */
:root {
  --ink: #1c2637;          /* 見出し・本文の基本色（白背景で 15.20:1） */
  --ink-soft: #4b5871;     /* 補助テキスト（7.16:1） */
  --ink-thin: #626e88;     /* さらに薄い補助（白 5.12:1／淡背景 4.73:1） */
  --accent: #3d5480;       /* リンク・罫の強調（7.56:1） */
  --line: #e1e5ec;
  --line-soft: #edf0f5;
  --bg: #ffffff;
  --bg-alt: #f4f6fa;
  --bg-deep: #2c3a52;      /* CTA グラデーションの起点 */
  --bg-deep-2: #54648a;    /* CTA グラデーションの終点（白文字 5.89:1） */
  --wrap: 1080px;
  --narrow: 760px;
  /* 箇条書きのチェックマーク。mask で使うので中の色は問わない（形だけ利用） */
  --check: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 12.5l5.2 5.2L20 6.6'/%3E%3C/svg%3E");
  /* select の下向き矢印（ブラウザ既定の矢印を消して差し替える） */
  --caret: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234b5871' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9.5l6 6 6-6'/%3E%3C/svg%3E");
  --serif: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  --sans: "Noto Sans JP", -apple-system, "Hiragino Kaku Gothic ProN",
          "Yu Gothic", Meiryo, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.95;
  color: var(--ink);
  background: var(--bg);
  font-feature-settings: "palt";
  text-rendering: optimizeLegibility;
}

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

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
a:focus-visible,
button:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--bg-deep); color: #fff; padding: .8em 1.4em;
}
.skip:focus { left: 0; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.wrap.narrow { max-width: var(--narrow); }

/* ---------------------------------------------------------------- ヘッダー */
.head {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.head-in {
  max-width: var(--wrap); margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  min-height: 74px; gap: 20px;
}
.brand { display: flex; align-items: center; gap: 13px; line-height: 1.3; }
.brand:hover { text-decoration: none; }
.brand-mark { width: auto; height: 36px; }
.brand-txt { display: block; }
.brand-ja {
  display: block; font-family: var(--serif); font-weight: 600;
  font-size: 1.06rem; letter-spacing: .06em; color: var(--ink);
}
.brand-en {
  display: block; font-size: .62rem; letter-spacing: .22em;
  color: var(--ink-thin); margin-top: .15em;
}
.nav ul {
  display: flex; gap: 30px; list-style: none; margin: 0; padding: 0;
}
.nav a {
  font-size: .86rem; letter-spacing: .05em; color: var(--ink);
  padding: 4px 0; position: relative;
}
.nav a:hover { text-decoration: none; color: var(--accent); }
.nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: var(--accent);
  transform: scaleX(0); transition: transform .25s;
}
.nav a:hover::after,
.nav a[aria-current="page"]::after { transform: scaleX(1); }
.nav a[aria-current="page"] { color: var(--accent); }

.navbtn {
  display: none; width: 44px; height: 44px; border: 0; background: none;
  cursor: pointer; padding: 12px 9px;
}
.navbtn span {
  display: block; height: 1px; background: var(--ink); margin: 6px 0;
  transition: transform .25s, opacity .2s;
}
.navbtn[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbtn[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.navbtn[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------------------------------------------------------------- ヒーロー */
.hero { position: relative; background: var(--bg-alt); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 38% 50%; }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg,
    rgba(255, 255, 255, .96) 0%,
    rgba(255, 255, 255, .9) 40%,
    rgba(255, 255, 255, .45) 70%,
    rgba(255, 255, 255, .22) 100%);
}
.hero-in { position: relative; padding: 132px 24px 138px; }
.hero-en {
  margin: 0 0 26px; font-size: .68rem; letter-spacing: .3em;
  color: var(--ink-thin);
}
.hero-h {
  margin: 0 0 30px; font-family: var(--serif); font-weight: 600;
  font-size: clamp(2rem, 5.2vw, 3.1rem); line-height: 1.5;
  letter-spacing: .04em;
}
.hero-lead {
  margin: 0; max-width: 34em; font-size: 1rem; color: var(--ink-soft);
}

/* ---------------------------------------------------------------- 下層見出し */
.ph { padding: 84px 0 62px; border-bottom: 1px solid var(--line-soft); }
.ph-en {
  margin: 0 0 14px; font-size: .66rem; letter-spacing: .3em;
  color: var(--ink-thin);
}
.ph-en a { color: var(--ink-thin); }
.ph-ja {
  margin: 0; font-family: var(--serif); font-weight: 600;
  font-size: clamp(1.6rem, 3.6vw, 2.3rem); line-height: 1.5;
  letter-spacing: .04em;
}
.ph-lead { margin: 22px 0 0; max-width: 40em; color: var(--ink-soft); }

/* ---------------------------------------------------------------- セクション */
.sec { padding: 92px 0; }
.sec.alt { background: var(--bg-alt); }
.sec-en {
  margin: 0 0 12px; font-size: .66rem; letter-spacing: .3em;
  color: var(--ink-thin); text-align: center;
}
.sec-h {
  margin: 0 0 48px; font-family: var(--serif); font-weight: 600;
  font-size: clamp(1.4rem, 3vw, 1.8rem); letter-spacing: .05em;
  text-align: center;
}
.sec-h.left { text-align: left; margin-bottom: 28px; }
.sec .sec-en + .sec-h { margin-top: 0; }
.split-txt .sec-en { text-align: left; }
.lead-c { text-align: center; color: var(--ink-soft); margin: -30px 0 40px; }
.h4 {
  margin: 40px 0 14px; font-size: .98rem; font-weight: 700;
  letter-spacing: .04em; padding-left: 12px;
  border-left: 3px solid var(--accent);
}

.creed {
  margin: 0 0 34px; padding: 34px 30px; background: var(--bg-alt);
  border-left: 3px solid var(--accent);
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(1.1rem, 2.6vw, 1.4rem); line-height: 1.85;
  letter-spacing: .04em;
}

/* ---------------------------------------------------------------- カード */
.cards { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; }
.card { margin: 0; }
.card-img { margin-bottom: 24px; overflow: hidden; background: var(--line-soft); }
.card-img img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.card-no {
  margin: 0 0 6px; font-size: .74rem; letter-spacing: .22em;
  color: var(--ink-thin);
}
.card-h {
  margin: 0 0 14px; font-family: var(--serif); font-weight: 600;
  font-size: 1.16rem; letter-spacing: .04em;
}
.card p { margin: 0 0 14px; font-size: .94rem; color: var(--ink-soft); }
/* 事業が1本立てなのでトップでは見出しを大きめに置く */
.card-h.big {
  font-size: clamp(1.25rem, 2.6vw, 1.5rem); margin-bottom: 20px;
}
.card-more { margin: 0; font-size: .9rem; }
.card-more a::after { content: " →"; }
/* 事業内容の箇条書き直後に来るリンクは、リストの一項目に見えないよう間を空ける */
.split-txt .card-more { margin-top: 32px; }

/* 事業内容の左右分割 */
.split { display: grid; grid-template-columns: 0.85fr 1fr; gap: 56px; align-items: start; }
.split.rev .split-img { order: 2; }
.split-img { position: sticky; top: 110px; background: var(--line-soft); }
.split-img img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.split-txt p { color: var(--ink-soft); }
.split-txt > p:first-of-type { color: var(--ink); }

.ticks { margin: 0; padding: 0; list-style: none; }
.ticks li {
  position: relative; padding: 11px 0 11px 26px;
  border-bottom: 1px solid var(--line);
  font-size: .94rem; color: var(--ink-soft);
}
.ticks li::before {
  content: ""; position: absolute; left: 1px; top: 1.2em;
  width: 15px; height: 15px; background: var(--accent);
  -webkit-mask: var(--check) no-repeat center / contain;
  mask: var(--check) no-repeat center / contain;
}

/* ---------------------------------------------------------------- アイコン */
.ic { width: 27px; height: 27px; display: block; }
.ci-ic { margin: 0 0 14px; color: var(--accent); }
.ci-ic .ic { width: 25px; height: 25px; }

/* 事業内容の下に置く4つの要点 */
.feats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 36px;
  margin-top: 66px; padding-top: 56px; border-top: 1px solid var(--line);
}
.feat { color: var(--accent); }
.feat h3 {
  margin: 17px 0 10px; font-size: .95rem; font-weight: 700;
  letter-spacing: .03em; color: var(--ink); line-height: 1.7;
}
.feat p { margin: 0; font-size: .85rem; line-height: 1.85; color: var(--ink-soft); }

/* ---------------------------------------------------------------- 会社情報表 */
.tw { overflow-x: auto; }
.facts { width: 100%; border-collapse: collapse; font-size: .94rem; }
.facts th, .facts td {
  text-align: left; vertical-align: top; padding: 18px 20px;
  border-top: 1px solid var(--line);
}
.facts tr:last-child th, .facts tr:last-child td { border-bottom: 1px solid var(--line); }
.facts th {
  width: 15em; font-weight: 500; color: var(--ink);
  background: var(--bg-alt); letter-spacing: .04em;
}
.sec.alt .facts th { background: #fff; }
.facts td { color: var(--ink-soft); }

.note {
  margin: 26px 0 0; font-size: .84rem; line-height: 1.85; color: var(--ink-thin);
}
.more { margin: 44px 0 0; text-align: center; }

/* 沿革 */
.hist { margin: 0; padding: 0; list-style: none; }
.hist li {
  display: grid; grid-template-columns: 9em 1fr; gap: 20px;
  padding: 20px 0; border-top: 1px solid var(--line);
}
.hist li:last-child { border-bottom: 1px solid var(--line); }
.hy { font-weight: 500; letter-spacing: .04em; }
.ht { color: var(--ink-soft); font-size: .94rem; }

.rep-name {
  margin: 0 0 20px; font-family: var(--serif); font-weight: 600;
  font-size: 1.1rem; letter-spacing: .04em;
}

/* 拠点 */
.offices { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; }
.office p { margin: 0 0 6px; font-size: .94rem; color: var(--ink-soft); }
.office .h4 { margin-top: 0; }
.office-tel, .office-note { color: var(--ink-thin) !important; font-size: .88rem !important; }

/* ---------------------------------------------------------------- ブランド */
/* ブランド一覧（ロゴ＋説明の横並び） */
.brandbox {
  display: grid; grid-template-columns: 300px 1fr; gap: 48px; align-items: center;
  padding: 48px 0; border-top: 1px solid var(--line);
}
.brandbox:last-of-type { border-bottom: 1px solid var(--line); }
.brand-logo {
  display: flex; align-items: center; justify-content: center;
  padding: 34px 28px; background: var(--bg-alt); min-height: 168px;
}
.brand-logo img { max-height: 100px; width: auto; }

/* トップの「取り扱いブランド」 */
.brandrow { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.brandcard {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 20px; padding: 52px 32px; border: 1px solid var(--line); background: #fff;
  transition: border-color .25s, box-shadow .25s;
}
.brandcard:hover {
  border-color: var(--accent); text-decoration: none;
  box-shadow: 0 2px 18px rgba(28, 38, 55, .07);
}
.brandcard img { max-height: 86px; width: auto; }
.brandcard span {
  font-size: .74rem; letter-spacing: .2em; color: var(--ink-thin);
}
.brand-h {
  margin: 0 0 16px; font-family: var(--serif); font-weight: 600;
  font-size: 1.5rem; letter-spacing: .06em;
  display: flex; align-items: baseline; gap: 16px; flex-wrap: wrap;
}
.brand-h span {
  font-family: var(--sans); font-size: .72rem; font-weight: 400;
  letter-spacing: .18em; color: var(--ink-thin);
  border: 1px solid var(--line); padding: .3em .9em; border-radius: 2px;
}
.brandbox p { margin: 0; color: var(--ink-soft); font-size: .96rem; }

/* ---------------------------------------------------------------- お知らせ */
.news { margin: 0; padding: 0; list-style: none; }
.news li {
  display: grid; grid-template-columns: 11em 1fr; gap: 20px;
  padding: 22px 0; border-top: 1px solid var(--line);
}
.news li:last-child { border-bottom: 1px solid var(--line); }
.news time { font-size: .86rem; color: var(--ink-thin); letter-spacing: .06em; }
.nt { font-size: .96rem; }

.art-date {
  display: block; font-size: .86rem; color: var(--ink-thin);
  letter-spacing: .06em; margin-bottom: 12px;
}
.art-h {
  margin: 0; font-family: var(--serif); font-weight: 600;
  font-size: clamp(1.35rem, 3.2vw, 1.85rem); line-height: 1.6;
  letter-spacing: .03em;
}

/* ---------------------------------------------------------------- 文書ページ */
.doc h2 {
  margin: 56px 0 18px; font-family: var(--serif); font-weight: 600;
  font-size: 1.16rem; letter-spacing: .05em;
  padding-bottom: 12px; border-bottom: 1px solid var(--line);
}
.doc > p:first-child { margin-top: 0; }
.doc h3 {
  margin: 32px 0 10px; font-size: .98rem; font-weight: 700;
  letter-spacing: .03em;
}
.doc p { margin: 0 0 18px; font-size: .94rem; color: var(--ink-soft); }
.doc ul { margin: 0 0 18px; padding-left: 1.4em; }
.doc li { font-size: .94rem; color: var(--ink-soft); margin-bottom: 8px; }
.doc .box {
  background: var(--bg-alt); padding: 22px 24px; border-left: 3px solid var(--accent);
  color: var(--ink);
}
.doc .right { text-align: right; }
.doc .sig {
  margin-top: 40px; padding-top: 22px; border-top: 1px solid var(--line);
  font-size: .88rem; color: var(--ink-thin);
}
.doc .dl { margin: 30px 0 0; }
.doc .dl a {
  display: inline-block; padding: 14px 24px; border: 1px solid var(--accent);
  font-size: .9rem; letter-spacing: .04em;
}
.doc .dl a::before { content: "▸ "; }
.doc .dl a:hover { background: var(--accent); color: #fff; text-decoration: none; }
.doc sup { font-size: .7em; }

/* ---------------------------------------------------------------- お問い合わせ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.ci .h4 { margin-top: 0; }
.ci-big {
  margin: 0 0 10px; font-family: var(--serif); font-size: 1.4rem;
  letter-spacing: .04em; word-break: break-all;
}
.ci-note { margin: 0; font-size: .86rem; color: var(--ink-thin); }
/* ---------------------------------------------------------------- フォーム */
.cform { margin: 0; position: relative; }
.cf { margin-bottom: 26px; }
.cf label {
  display: block; margin-bottom: 9px; font-size: .88rem; font-weight: 500;
  letter-spacing: .04em;
}
.req {
  display: inline-block; margin-left: 10px; padding: .22em .62em;
  font-size: .64rem; font-weight: 400; letter-spacing: .12em;
  color: #fff; background: var(--accent); border-radius: 2px;
  vertical-align: 2px;
}
.cf input, .cf select, .cf textarea {
  width: 100%; padding: 14px 16px; font-family: inherit; font-size: .96rem;
  color: var(--ink); background: #fff;
  border: 1px solid var(--line); border-radius: 2px;
  transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none; appearance: none;
}
.cf textarea { line-height: 1.85; resize: vertical; min-height: 190px; }
.cf select {
  background-image: var(--caret); background-repeat: no-repeat;
  background-position: right 15px center; background-size: 13px;
  padding-right: 44px; cursor: pointer;
}
.cf input:focus, .cf select:focus, .cf textarea:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(61, 84, 128, .13);
}

/* honeypot。display:none にすると自動入力を避けられる場合があるので画面外へ送る */
.cf-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.cf-privacy { margin: 4px 0 26px; font-size: .84rem; color: var(--ink-thin); }
.cf-submit { margin: 0; text-align: center; }
.cf-submit .btn { min-width: 262px; cursor: pointer; font-family: inherit; }
.cf-submit .btn:disabled { opacity: .5; cursor: default; }
.cf-msg { margin: 22px 0 0; text-align: center; font-size: .9rem; line-height: 1.85; }
.cf-msg.is-err { color: #a8433e; }
.cf-done {
  margin: 0; padding: 52px 24px; text-align: center; background: #fff;
  border: 1px solid var(--line); font-size: 1rem; line-height: 2;
}

/* ---------------------------------------------------------------- CTA / ボタン */
.btn {
  display: inline-block; padding: 16px 40px; background: var(--bg-deep);
  color: #fff; font-size: .9rem; letter-spacing: .08em; border: 1px solid var(--bg-deep);
  transition: background .2s, color .2s;
}
.btn:hover { background: #24355a; text-decoration: none; }
.btn.ghost { background: none; color: var(--ink); border-color: var(--ink); }
.btn.ghost:hover { background: var(--ink); color: #fff; }

.cta {
  padding: 92px 0; color: #fff; text-align: center;
  background: linear-gradient(135deg, var(--bg-deep) 0%, var(--bg-deep-2) 100%);
}
.cta-h {
  margin: 0 0 18px; font-family: var(--serif); font-weight: 600;
  font-size: clamp(1.3rem, 2.8vw, 1.7rem); letter-spacing: .06em;
}
.cta p { margin: 0 0 34px; color: rgba(255, 255, 255, .8); font-size: .94rem; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin: 0 !important; }
.cta .btn { background: #fff; color: var(--bg-deep); border-color: #fff; }
.cta .btn:hover { background: rgba(255, 255, 255, .86); }
.cta .btn.ghost { background: none; color: #fff; border-color: rgba(255, 255, 255, .5); }
.cta .btn.ghost:hover { background: rgba(255, 255, 255, .12); }

/* ---------------------------------------------------------------- フッター */
.foot { background: var(--bg-alt); border-top: 1px solid var(--line); padding: 68px 0 0; }
.foot-in { display: grid; grid-template-columns: 1fr auto; gap: 48px; }
.foot-logo { width: auto; height: 52px; margin-bottom: 18px; }
.foot-name {
  margin: 0 0 14px; font-family: var(--serif); font-weight: 600;
  font-size: 1.04rem; letter-spacing: .06em;
}
.foot-addr { margin: 0 0 12px; font-size: .84rem; color: var(--ink-soft); line-height: 1.9; }
.foot-no { margin: 0; font-size: .78rem; color: var(--ink-thin); letter-spacing: .03em; }
.foot-nav { display: flex; gap: 48px; }
.foot-nav ul { list-style: none; margin: 0; padding: 0; }
.foot-nav li { margin-bottom: 11px; }
.foot-nav a { font-size: .84rem; color: var(--ink-soft); }
.copy {
  margin: 56px 0 0; padding: 22px 24px; text-align: center;
  font-size: .74rem; letter-spacing: .06em; color: var(--ink-thin);
  border-top: 1px solid var(--line);
}

/* ---------------------------------------------------------------- レスポンシブ */
@media (max-width: 1000px) {
  .feats { grid-template-columns: 1fr 1fr; gap: 34px 30px; }
}

@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split.rev .split-img { order: 0; }
  .split-img { position: static; }
  .foot-in { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 760px) {
  body { font-size: 15px; line-height: 1.9; }
  .head-in { min-height: 64px; }
  .navbtn { display: block; }
  .nav {
    position: fixed; inset: 64px 0 auto; background: #fff;
    border-bottom: 1px solid var(--line);
    max-height: 0; overflow: hidden; transition: max-height .3s ease;
  }
  .nav.is-open { max-height: 70vh; overflow-y: auto; }
  .nav ul { flex-direction: column; gap: 0; padding: 8px 0 20px; }
  .nav li { border-top: 1px solid var(--line-soft); }
  .nav li:first-child { border-top: 0; }
  .nav a { display: block; padding: 16px 24px; font-size: .94rem; }
  .nav a::after { display: none; }

  .hero-in { padding: 82px 24px 88px; }
  .hero-bg::after {
    background: linear-gradient(180deg,
      rgba(255, 255, 255, .95) 0%,
      rgba(255, 255, 255, .86) 55%,
      rgba(255, 255, 255, .5) 100%);
  }
  .sec { padding: 64px 0; }
  .ph { padding: 54px 0 42px; }
  .sec-h { margin-bottom: 34px; }
  .lead-c { margin-top: -20px; }
  .cards, .offices, .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .feats { grid-template-columns: 1fr; gap: 32px; margin-top: 48px; padding-top: 42px; }
  .brandrow { grid-template-columns: 1fr; gap: 20px; }
  .brandcard { padding: 40px 24px; }
  .brandbox { grid-template-columns: 1fr; gap: 26px; padding: 38px 0; }
  .brand-logo { min-height: 140px; padding: 28px 22px; }
  .brand-mark { height: 31px; }
  .foot-logo { height: 56px; margin-bottom: 16px; }
  .creed { padding: 26px 22px; }

  /* 表は縦積みにする */
  .facts, .facts tbody, .facts tr, .facts th, .facts td { display: block; width: auto; }
  .facts tr { border-top: 1px solid var(--line); padding: 16px 0; }
  .facts tr:last-child { border-bottom: 1px solid var(--line); }
  .facts th {
    background: none !important; padding: 0 0 4px; width: auto;
    font-size: .78rem; color: var(--ink-thin); letter-spacing: .06em;
  }
  .facts th br { display: none; }
  .facts td { padding: 0; border: 0; }

  .news li, .hist li { grid-template-columns: 1fr; gap: 6px; }
  .cf-submit .btn { width: 100%; min-width: 0; }
  .cf textarea { min-height: 168px; }
  .cta { padding: 64px 0; }
  .cta-btns { flex-direction: column; }
  .cta-btns .btn { width: 100%; }
  .foot { padding-top: 52px; }
  .foot-nav { flex-direction: column; gap: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

@media print {
  .head, .foot-nav, .cta, .navbtn, .skip { display: none; }
  body { font-size: 11pt; }
  .sec { padding: 20px 0; }
  a { color: var(--ink); }
}
