@charset "UTF-8";
/* ============================================================
   style.css — スターター基盤
   構成: 1.トークン → 2.リセット/ベース → 3.レイアウト
        → 4.コンポーネント → 5.モーション → 6.停止ポリシー
   触り方は TEMPLATE-GUIDE.md 参照。トークン以外の削除は慎重に。
   ============================================================ */

/* ---------- 1. トークン(案件ごとに必ず引き直す) ---------- */
:root {
  /* 色: 岡田豊個人HP(Fulfillブルー系・白ベースのコーポレート) */
  --color-bg: #ffffff;          /* 地 */
  --color-bg-alt: #F2F6FA;      /* 交互セクションの薄青地 */
  --color-surface: #ffffff;     /* 面(カード・フォーム) */
  --color-text: #1F2937;        /* 本文 */
  --color-navy: #1A2A44;        /* 締め色(見出し・帯) */
  --color-muted: #5C6B80;       /* 補助テキスト */
  --color-accent: #2B62D9;      /* 主張色(CTA・強調) Fulfillブルー */
  --color-cyan: #00BCD4;        /* グラデ終端のシアン */
  --color-accent-ink: #ffffff;  /* accent上の文字色(コントラスト4.5:1確保) */
  --color-line: #D8E0EA;        /* 罫線 */
  --grad: linear-gradient(100deg, var(--color-accent), var(--color-cyan));

  /* タイポ: 見出しも本文もゴシック(きれいめコーポレート)。英字ラベルはMontserrat */
  --font-display: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --font-en: "Montserrat", "Noto Sans JP", sans-serif;
  --font-body: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;

  /* 型: 8px系。値を変えても系は守る */
  --space: 8px;
  --section-pad: clamp(64px, 12vw, 128px);
  --container: 1120px;
  --container-narrow: 760px;
  --radius: 0px;                /* 直角基調(角丸カードのAI感を避ける) */

  /* 階層: z-indexは必ずこの変数経由 */
  --z-header: 100;
  --z-nav: 200;
  --z-modal: 1000;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --duration: 0.8s;
}

/* ---------- 2. リセット/ベース ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.9;                 /* 日本語本文の床 */
  font-size: 16px;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
  overflow-wrap: anywhere;          /* 長いURL・英単語のはみ出し事故防止 */
}

p, li, dd { text-wrap: pretty; }    /* 最終行1〜2文字残りの改行事故防止 */

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

a { color: inherit; }
a:hover { opacity: 0.7; transition: opacity 0.3s; }

:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.4;                 /* 見出しは本文より詰める */
  letter-spacing: 0.04em;
  color: var(--color-navy);
  word-break: auto-phrase;          /* 熟語の泣き別れ防止(対応ブラウザのみ) */
}

/* ---------- 3. レイアウト ---------- */
.container { width: min(var(--container), 100% - 48px); margin-inline: auto; }
.container--narrow { width: min(var(--container-narrow), 100% - 48px); margin-inline: auto; }

.section { padding-block: var(--section-pad); }
.section--tight { padding-block: calc(var(--section-pad) * 0.6); }

/* セクション見出し: シグネチャー「×」+ グラデ細罫線 */
.section-head { margin-bottom: calc(var(--space) * 7); }
.section-head__en {
  display: flex;
  align-items: center;
  gap: calc(var(--space) * 1.5);
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: calc(var(--space) * 2);
}
.section-head__en::before {
  content: "×";
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section-head__title { font-size: clamp(26px, 4.2vw, 40px); position: relative; padding-bottom: calc(var(--space) * 3); }
.section-head__title::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 56px; height: 3px;
  background: var(--grad);
}
.section-head--center { text-align: center; }
.section-head--center .section-head__en { justify-content: center; }
.section-head--center .section-head__title { text-wrap: balance; }
.section-head--center .section-head__title::after { left: 50%; transform: translateX(-50%); }

/* ---------- 4. コンポーネント ---------- */

/* ヘッダー */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: var(--z-header);
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px clamp(20px, 4vw, 48px);
  transition: background 0.4s, box-shadow 0.4s;
}
/* すりガラスは疑似要素に持たせる。ヘッダー本体にbackdrop-filterを付けると
   中の全画面ナビ(position:fixed)の基準がヘッダー自身になり、スクロール後に
   メニューが数十pxの帯に潰れる(iPhone実機で発生した罠。pitfalls.md 9参照) */
.site-header::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: color-mix(in srgb, var(--color-bg) 88%, transparent);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.4s;
}
.site-header.is-scrolled::before { opacity: 1; }
.site-header.is-scrolled {
  box-shadow: 0 1px 0 var(--color-line);
}
.site-header__logo { font-family: var(--font-display); font-size: 20px; text-decoration: none; }

.global-nav ul { display: flex; gap: calc(var(--space) * 4); list-style: none; padding: 0; }
.global-nav a { text-decoration: none; font-size: 14px; letter-spacing: 0.08em; }
.global-nav a[aria-current="page"] {
  color: var(--color-accent);
  border-bottom: 1px solid currentColor;
}

/* ハンバーガー(SP) */
.nav-toggle {
  display: none;
  width: 44px; height: 44px;           /* タップ領域44px確保 */
  background: none; border: none; cursor: pointer;
  position: relative; z-index: calc(var(--z-nav) + 1);
}
.nav-toggle span {
  display: block; width: 24px; height: 2px; margin: 5px auto;
  background: var(--color-text); transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 767px) {
  .nav-toggle { display: block; }
  .global-nav {
    position: fixed; inset: 0; z-index: var(--z-nav);
    background: var(--color-bg);
    display: grid; place-content: center;
    opacity: 0; visibility: hidden; transition: opacity 0.4s, visibility 0.4s;
  }
  .global-nav.is-open { opacity: 1; visibility: visible; }
  .global-nav ul { flex-direction: column; text-align: center; gap: calc(var(--space) * 4); }
  .global-nav a { font-size: 20px; }
}

/* ヒーロー(トップ): スプリット型(左コピー×右ポートレート) */
.hero {
  min-height: 100svh;                  /* svh: モバイルのアドレスバー事故防止 */
  display: flex; align-items: center;
  padding: calc(var(--space) * 14) 0 calc(var(--space) * 8);
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(43, 98, 217, 0.06), rgba(0, 188, 212, 0.05) 55%, transparent 75%),
    var(--color-bg);
}
/* 背景の大きな「×」モチーフ */
.hero::before, .hero::after {
  content: "";
  position: absolute;
  width: min(44vw, 560px); height: 4px;
  background: var(--grad);
  opacity: 0.14;
  right: -6vw; top: 32%;
  pointer-events: none;
}
.hero::before { transform: rotate(45deg); }
.hero::after { transform: rotate(-45deg); }

.hero__inner {
  display: grid;
  gap: calc(var(--space) * 6);
  align-items: center;
}
.hero__label {
  display: flex; align-items: center; gap: calc(var(--space) * 1.5);
  font-family: var(--font-en); font-weight: 600;
  font-size: 12px; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: calc(var(--space) * 3);
}
.hero__label::before { content: ""; width: 36px; height: 2px; background: var(--grad); }
.hero__title {
  font-size: clamp(27px, 5.2vw, 52px);
  line-height: 1.35;
  text-wrap: balance;
}
.hero__title em {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__lead { margin-top: calc(var(--space) * 4); max-width: 32em; color: var(--color-muted); }
.hero__cross { color: var(--color-accent); font-weight: 700; }
.hero__actions { display: flex; flex-wrap: wrap; gap: calc(var(--space) * 2); margin-top: calc(var(--space) * 5); }
.hero__photo { position: relative; width: min(72vw, 300px); justify-self: center; }
.hero__photo img { width: 100%; }
.hero__photo::before {
  content: "";
  position: absolute; inset: 14px -14px -14px 14px;
  background: var(--grad);
  opacity: 0.16;
  z-index: -1;
}
.hero__photo::after {
  content: "";
  position: absolute; inset: 0;
  border: 1px solid var(--color-line);
  pointer-events: none;
}
.hero__photo figcaption {
  position: absolute; left: 0; bottom: -34px;
  font-family: var(--font-en); font-weight: 600;
  font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--color-muted);
}
@media (min-width: 768px) {
  .hero__inner { grid-template-columns: 1.25fr 1fr; gap: calc(var(--space) * 8); }
  .hero__photo { width: min(34vw, 420px); justify-self: end; }
}

/* 下層ページヘッダー */
.page-header { padding: calc(var(--section-pad) * 1.2) 0 calc(var(--section-pad) * 0.5); }
.page-header__en {
  font-size: 13px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--color-accent);
}
.page-header__title { font-size: clamp(32px, 5vw, 56px); margin-top: calc(var(--space) * 1); }

.breadcrumb { padding-block: calc(var(--space) * 2); font-size: 12px; color: var(--color-muted); }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 0.6em; list-style: none; padding: 0; }
.breadcrumb li:not(:last-child)::after { content: "/"; margin-left: 0.6em; }
.breadcrumb a { text-decoration: none; }

/* ボタン */
.button {
  display: inline-block;
  padding: 16px 44px;
  background: var(--color-accent); color: var(--color-accent-ink);
  border: 1px solid var(--color-accent); border-radius: var(--radius);
  font-size: 15px; letter-spacing: 0.08em; text-decoration: none;
  cursor: pointer; transition: background 0.3s, color 0.3s;
}
.button:hover { background: transparent; color: var(--color-accent); opacity: 1; }
.button:disabled { opacity: 0.5; cursor: wait; }

/* フォーム */
.form { display: grid; gap: calc(var(--space) * 4); }
.form__field { display: grid; gap: calc(var(--space) * 1); }
.form__field label { font-size: 14px; font-weight: 600; }
.form__field .required { color: var(--color-accent); font-size: 12px; margin-left: 0.5em; }
.form input, .form textarea {
  font: inherit; padding: 14px 16px;
  background: var(--color-surface);
  border: 1px solid var(--color-line); border-radius: var(--radius);
}
.form input:focus, .form textarea:focus { border-color: var(--color-accent); outline: none; }
.form [aria-invalid="true"] { border-color: #c0392b; }
.form__error { color: #c0392b; font-size: 13px; min-height: 1.2em; }
.form__hp { position: absolute; left: -9999px; }  /* ハニーポット: 削除禁止 */

/* フッター */
.site-footer {
  padding: calc(var(--space) * 8) 0 calc(var(--space) * 4);
  border-top: 1px solid var(--color-line);
  font-size: 13px; color: var(--color-muted);
}

/* ---------- 5. モーション基盤 ---------- */
/* JSが .is-inview を付ける。演出を変えるならこのクラスのtransform/opacityだけ触る */
.js-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--duration) var(--ease-out), transform var(--duration) var(--ease-out);
}
.js-reveal.is-inview { opacity: 1; transform: none; }
.js-reveal[data-delay="1"] { transition-delay: 0.1s; }
.js-reveal[data-delay="2"] { transition-delay: 0.2s; }
.js-reveal[data-delay="3"] { transition-delay: 0.3s; }

/* ---------- 6. モーション停止(SKILL.mdのポリシー実装。削除禁止) ---------- */
.motion-stop {
  display: none;
  position: fixed; right: 16px; bottom: 16px; z-index: var(--z-modal);
  padding: 10px 16px; font-size: 12px;
  background: var(--color-surface); border: 1px solid var(--color-line);
  border-radius: 999px; cursor: pointer;
}
@media (prefers-reduced-motion: reduce) {
  .motion-stop { display: block; }     /* reduced-motion環境にだけボタンを出す */
}
html.is-motion-off .js-reveal,
html.is-motion-off *[class] {
  transition-duration: 0.01ms !important;
  animation-duration: 0.01ms !important;
  animation-iteration-count: 1 !important;
}
html.is-motion-off .js-reveal { opacity: 1; transform: none; }

/* ============================================================
   7. サイト固有コンポーネント(岡田豊 個人HP)
   ============================================================ */

/* 汎用 */
.section--alt { background: var(--color-bg-alt); }
.button--ghost {
  background: transparent; color: var(--color-accent);
  border: 1px solid var(--color-accent);
}
.button--ghost:hover { background: var(--color-accent); color: var(--color-accent-ink); }
.button--large { padding: 18px 56px; font-size: 16px; }
.text-muted { color: var(--color-muted); }

/* 数字スタッツ(信頼の帯) */
.stats {
  display: grid; gap: 0;
  border-block: 1px solid var(--color-line);
}
.stats__item {
  padding: calc(var(--space) * 4) calc(var(--space) * 3);
  text-align: center;
}
.stats__item + .stats__item { border-top: 1px solid var(--color-line); }
.stats__num {
  font-family: var(--font-en); font-weight: 700;
  font-size: clamp(30px, 4vw, 40px); line-height: 1.2;
  color: var(--color-navy);
}
.stats__num small { font-size: 0.5em; font-weight: 700; margin-left: 2px; }
.stats__label { font-size: 13px; color: var(--color-muted); margin-top: calc(var(--space) * 1); }
@media (min-width: 768px) {
  .stats { grid-template-columns: repeat(3, 1fr); }
  .stats__item + .stats__item { border-top: 0; border-left: 1px solid var(--color-line); }
}

/* できること: 罫線グリッド(角丸カードを使わない) */
.svc-grid {
  display: grid;
  border: 1px solid var(--color-line);
  background: var(--color-surface);
}
.svc-grid__item {
  padding: calc(var(--space) * 5) calc(var(--space) * 4);
  border-top: 1px solid var(--color-line);
  text-decoration: none;
  transition: background 0.3s;
  position: relative;
}
.svc-grid__item:first-child { border-top: 0; }
a.svc-grid__item:hover { background: var(--color-bg-alt); opacity: 1; }
.svc-grid__icon { display: block; width: 40px; height: 40px; color: var(--color-accent); margin-bottom: calc(var(--space) * 2.5); }
.svc-grid__icon svg { width: 100%; height: 100%; }
.svc-grid__title { font-size: 17px; font-weight: 700; color: var(--color-navy); }
.svc-grid__desc { font-size: 13.5px; color: var(--color-muted); margin-top: calc(var(--space) * 1.5); line-height: 1.8; }
@media (min-width: 768px) {
  .svc-grid { grid-template-columns: repeat(3, 1fr); }
  .svc-grid__item { border-top: 0; }
  .svc-grid__item:nth-child(n + 4) { border-top: 1px solid var(--color-line); }
  .svc-grid__item:not(:nth-child(3n + 1)) { border-left: 1px solid var(--color-line); }
}

/* 引用の帯(破調: 紺のフルブリード) */
.quote-band {
  background: var(--color-navy);
  color: #fff;
  padding-block: calc(var(--section-pad) * 0.85);
  position: relative;
  overflow: hidden;
}
.quote-band::before, .quote-band__deco::before {
  content: "×";
  position: absolute;
  font-family: var(--font-en); font-weight: 700;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0.35;
  line-height: 1;
  pointer-events: none;
}
.quote-band::before { font-size: clamp(160px, 24vw, 300px); right: -0.1em; bottom: -0.25em; }
.quote-band__deco::before { font-size: clamp(60px, 9vw, 110px); left: 4%; top: 10%; opacity: 0.18; }
.quote-band__quote {
  font-size: clamp(22px, 3.6vw, 34px);
  font-weight: 700; line-height: 1.65;
  color: #fff;
  text-wrap: balance;
  position: relative;
}
.quote-band__name { margin-top: calc(var(--space) * 4); font-size: 14px; color: rgba(255, 255, 255, 0.72); }

/* 実績・ニュースの行(罫線リスト) */
.row-list { border-top: 1px solid var(--color-line); }
.row-list__item {
  display: grid; gap: calc(var(--space) * 1);
  padding: calc(var(--space) * 4) calc(var(--space) * 1);
  border-bottom: 1px solid var(--color-line);
  text-decoration: none;
  transition: background 0.3s;
}
a.row-list__item:hover { background: var(--color-bg-alt); opacity: 1; }
.row-list__meta {
  display: flex; align-items: center; gap: calc(var(--space) * 2);
  font-size: 12px;
}
.row-list__date { font-family: var(--font-en); font-weight: 600; letter-spacing: 0.08em; color: var(--color-muted); }
.row-list__tag {
  display: inline-block;
  padding: 3px 12px;
  border: 1px solid var(--color-accent);
  color: var(--color-accent);
  font-size: 11px; letter-spacing: 0.08em;
}
.row-list__title { font-weight: 700; font-size: 16px; color: var(--color-navy); }
.row-list__desc { font-size: 13.5px; color: var(--color-muted); }
@media (min-width: 768px) {
  .row-list__item { grid-template-columns: 200px 1fr; gap: calc(var(--space) * 4); align-items: start; }
  .row-list__meta { flex-direction: column; align-items: flex-start; gap: calc(var(--space) * 1.5); }
  .row-list__body { min-width: 0; }
}

/* CTAバンド(グラデ) */
.cta-band {
  background: var(--grad);
  color: #fff;
  text-align: center;
  padding-block: calc(var(--section-pad) * 0.8);
}
.cta-band__title { color: #fff; font-size: clamp(24px, 3.8vw, 36px); text-wrap: balance; }
.cta-band__lead { margin: calc(var(--space) * 3) auto calc(var(--space) * 5); max-width: 36em; color: rgba(255, 255, 255, 0.92); }
.cta-band .button {
  background: #fff; color: var(--color-accent); border-color: #fff;
}
.cta-band .button:hover { background: transparent; color: #fff; }
.cta-band__note { margin-top: calc(var(--space) * 3); font-size: 13px; color: rgba(255, 255, 255, 0.85); }

/* プロフィール */
.profile-intro {
  display: grid; gap: calc(var(--space) * 6);
  align-items: start;
}
.profile-intro__photo { position: relative; width: min(64vw, 280px); margin-inline: auto; }
.profile-intro__photo::before {
  content: "";
  position: absolute; inset: 14px -14px -14px 14px;
  background: var(--grad); opacity: 0.16; z-index: -1;
}
.profile-intro__name { font-size: clamp(28px, 4vw, 38px); }
.profile-intro__en {
  font-family: var(--font-en); font-weight: 600;
  font-size: 12px; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--color-accent);
}
.profile-intro__role { color: var(--color-muted); margin-top: calc(var(--space) * 1.5); font-size: 15px; }
@media (min-width: 768px) {
  .profile-intro { grid-template-columns: 300px 1fr; gap: calc(var(--space) * 8); }
  .profile-intro__photo { margin-inline: 0; }
}

/* 定義リスト(プロフィール基本情報) */
.def-table { border-top: 1px solid var(--color-line); }
.def-table > div {
  display: grid; grid-template-columns: 7.5em 1fr;
  gap: calc(var(--space) * 2);
  padding: calc(var(--space) * 2.5) calc(var(--space) * 1);
  border-bottom: 1px solid var(--color-line);
  font-size: 14.5px;
}
.def-table dt { font-weight: 700; color: var(--color-navy); }
.def-table dd { margin: 0; color: var(--color-text); }

/* ストーリー(タイムライン風) */
.story { border-left: 2px solid var(--color-line); padding-left: calc(var(--space) * 4); display: grid; gap: calc(var(--space) * 5); }
.story__item { position: relative; }
.story__item::before {
  content: "";
  position: absolute; left: calc(var(--space) * -4 - 7px); top: 0.5em;
  width: 12px; height: 12px;
  background: var(--grad);
}
.story__title { font-size: 17px; }
.story__text { margin-top: calc(var(--space) * 1); font-size: 14.5px; color: var(--color-text); }

/* サービス詳細(番号付きブロック) */
.svc-detail { display: grid; gap: calc(var(--space) * 8); }
.svc-detail__item {
  display: grid; gap: calc(var(--space) * 3);
  padding-top: calc(var(--space) * 6);
  border-top: 1px solid var(--color-line);
}
.svc-detail__num {
  font-family: var(--font-en); font-weight: 700;
  font-size: 13px; letter-spacing: 0.2em;
  color: var(--color-accent);
}
.svc-detail__num::after { content: " ×"; opacity: 0.6; }
.svc-detail__title { font-size: clamp(20px, 3vw, 26px); }
.svc-detail__for {
  font-size: 13.5px; color: var(--color-muted);
  padding: calc(var(--space) * 2) calc(var(--space) * 3);
  background: var(--color-bg-alt);
  border-left: 3px solid var(--color-accent);
}
.svc-detail__text { font-size: 15px; }
@media (min-width: 768px) {
  .svc-detail__item { grid-template-columns: 180px 1fr; column-gap: calc(var(--space) * 6); }
  .svc-detail__head { grid-column: 1; }
  .svc-detail__body { grid-column: 2; display: grid; gap: calc(var(--space) * 3); }
}

/* 流れステップ */
.steps { display: grid; gap: 0; border: 1px solid var(--color-line); background: var(--color-surface); }
.steps__item { padding: calc(var(--space) * 4); border-top: 1px solid var(--color-line); }
.steps__item:first-child { border-top: 0; }
.steps__num {
  font-family: var(--font-en); font-weight: 700; font-size: 12px;
  letter-spacing: 0.2em; color: var(--color-accent);
}
.steps__title { font-size: 16px; margin-top: calc(var(--space) * 1); }
.steps__text { font-size: 13.5px; color: var(--color-muted); margin-top: calc(var(--space) * 1); }
@media (min-width: 768px) {
  .steps { grid-template-columns: repeat(3, 1fr); }
  .steps__item { border-top: 0; }
  .steps__item + .steps__item { border-left: 1px solid var(--color-line); }
}

/* お問い合わせ(メール導線) */
.contact-panel {
  border: 1px solid var(--color-line);
  background: var(--color-surface);
  padding: clamp(32px, 6vw, 64px);
  text-align: center;
}
.contact-panel__mail {
  font-family: var(--font-en); font-weight: 600;
  font-size: clamp(15px, 2.6vw, 20px);
  letter-spacing: 0.04em;
  color: var(--color-navy);
  margin-top: calc(var(--space) * 3);
  display: inline-block;
}

/* フッター */
.site-footer { padding-top: calc(var(--space) * 10); }
.site-footer__grad { height: 4px; background: var(--grad); margin-bottom: calc(var(--space) * 8); }
.site-footer__inner { display: grid; gap: calc(var(--space) * 4); }
.site-footer__name { font-weight: 700; font-size: 16px; color: var(--color-navy); }
.site-footer__role { font-size: 12.5px; margin-top: 4px; }
.site-footer__nav ul { display: flex; flex-wrap: wrap; gap: calc(var(--space) * 3); list-style: none; padding: 0; }
.site-footer__nav a { text-decoration: none; font-size: 13px; }
.site-footer__copy { margin-top: calc(var(--space) * 4); font-size: 11.5px; }
@media (min-width: 768px) {
  .site-footer__inner { grid-template-columns: 1fr auto; align-items: start; }
}
