@charset "UTF-8";

/* ============================================================
   株式会社TrustLink 公式サイト
   ============================================================ */

:root {
  --navy:        #0E2A47;
  --navy-deep:   #081C31;
  --navy-mid:    #1B4269;
  --gold:        #B8964F;
  --gold-light:  #D4B978;
  --ink:         #1A1F26;
  --muted:       #5A6472;
  --line:        #E2E6EB;
  --bg:          #FFFFFF;
  --bg-alt:      #F6F7F9;

  --serif: "Hiragino Mincho ProN", "HiraMinProN-W3", "Yu Mincho", YuMincho,
           "Noto Serif JP", "MS PMincho", serif;
  --sans:  "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", YuGothic,
           "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI",
           "Meiryo", sans-serif;

  --wrap: 1080px;
  --gut: clamp(20px, 5vw, 40px);
}

*, *::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.9;
  color: var(--ink);
  background: var(--bg);
  font-feature-settings: "palt" 1;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--navy-mid); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap {
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gut);
}

.narrow { max-width: 820px; }

/* ---------- ヘッダー ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  text-decoration: none;
  flex-shrink: 0;
}
.brand:hover { text-decoration: none; }
.brand img { width: auto; height: 42px; }

@media (max-width: 520px) {
  .brand img { height: 34px; }
}

.nav-toggle { display: none; }
.nav-toggle-label { display: none; }

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a {
  position: relative;
  display: inline-block;
  padding: 6px 0;
  font-size: .92rem;
  letter-spacing: .04em;
  color: var(--ink);
  text-decoration: none;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after { transform: scaleX(1); }

.nav-cta a,
.nav-cta a:hover {
  background: var(--navy);
  color: #fff;
  padding: 11px 22px;
  border-radius: 2px;
  text-decoration: none;
  font-size: .88rem;
  letter-spacing: .06em;
  transition: background .25s ease;
}
.nav-cta a::after { display: none; }
.nav-cta a:hover { background: var(--navy-mid); }

/* ---------- ヒーロー ---------- */

.hero {
  position: relative;
  background:
    radial-gradient(1200px 500px at 78% 12%, rgba(184,150,79,.16), transparent 62%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #fff;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 45%, transparent 85%);
}

.hero-inner {
  padding-block: clamp(72px, 13vw, 132px);
  max-width: 760px;
}

.hero-eyebrow {
  display: inline-block;
  margin: 0 0 26px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(212, 185, 120, .55);
  font-size: .78rem;
  letter-spacing: .22em;
  color: var(--gold-light);
}

.hero h1 {
  margin: 0 0 28px;
  font-family: var(--serif);
  font-size: clamp(1.85rem, 5.4vw, 3.1rem);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: .03em;
}

.hero p {
  margin: 0 0 40px;
  font-size: clamp(.96rem, 2.2vw, 1.06rem);
  line-height: 2.1;
  color: rgba(255, 255, 255, .84);
  max-width: 40em;
}

/* ---------- ボタン ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 34px;
  border: 0;
  border-radius: 2px;
  font-family: var(--sans);
  font-size: .95rem;
  letter-spacing: .08em;
  cursor: pointer;
  text-decoration: none;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.btn:hover { text-decoration: none; }
.btn::after { content: "→"; font-size: .95em; }

.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { background: var(--gold-light); color: var(--navy-deep); }

.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-mid); }

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, .45);
  color: #fff;
  background: transparent;
}
.btn-ghost:hover { background: rgba(255, 255, 255, .1); }

.btn-row { display: flex; flex-wrap: wrap; gap: 16px; }

/* ---------- セクション ---------- */

.section { padding-block: clamp(64px, 10vw, 104px); }
.section-alt { background: var(--bg-alt); }

.section-head { margin-bottom: clamp(40px, 6vw, 60px); }
.section-head.center { text-align: center; }

.section-label {
  display: block;
  margin-bottom: 14px;
  font-size: .74rem;
  letter-spacing: .24em;
  color: var(--gold);
}

.section-head h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 4vw, 2.05rem);
  font-weight: 600;
  line-height: 1.55;
  letter-spacing: .04em;
  color: var(--navy);
}

.section-head h2 + p {
  margin: 22px 0 0;
  color: var(--muted);
  max-width: 46em;
}
.section-head.center h2 + p { margin-inline: auto; }

.rule {
  width: 44px;
  height: 2px;
  margin: 20px 0 0;
  background: var(--gold);
  border: 0;
}
.section-head.center .rule { margin-inline: auto; }

/* ---------- 事業領域カード ---------- */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 24px;
}

.card {
  display: flex;
  flex-direction: column;
  padding: 40px 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 3px solid var(--navy);
  transition: transform .3s ease, box-shadow .3s ease, border-top-color .3s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(14, 42, 71, .1);
  border-top-color: var(--gold);
}

.card-num {
  font-family: var(--serif);
  font-size: 1.7rem;
  line-height: 1;
  color: var(--gold);
  letter-spacing: .04em;
}

.card h3 {
  margin: 18px 0 14px;
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 600;
  line-height: 1.6;
  color: var(--navy);
}

.card p {
  margin: 0;
  font-size: .93rem;
  line-height: 2;
  color: var(--muted);
}

/* ---------- 進め方（ステップ） ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 0;
  counter-reset: step;
}

.step {
  position: relative;
  padding: 30px 26px 30px 0;
  counter-increment: step;
}
.step + .step { padding-left: 26px; border-left: 1px solid var(--line); }

.step::before {
  content: "STEP 0" counter(step);
  display: block;
  margin-bottom: 12px;
  font-size: .7rem;
  letter-spacing: .2em;
  color: var(--gold);
}

.step h3 {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
}

.step p {
  margin: 0;
  font-size: .89rem;
  line-height: 1.95;
  color: var(--muted);
}

/* ---------- 理念の抜粋 ---------- */

.quote {
  padding: clamp(36px, 6vw, 56px);
  background: #fff;
  border-left: 3px solid var(--gold);
  box-shadow: 0 2px 24px rgba(14, 42, 71, .06);
}

.quote p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.02rem, 2.6vw, 1.24rem);
  line-height: 2.2;
  letter-spacing: .03em;
  color: var(--navy);
}

/* ---------- 値リスト（行動指針） ---------- */

.values { margin: 0; padding: 0; list-style: none; counter-reset: v; }

.values li {
  position: relative;
  counter-increment: v;
  padding: 26px 0 26px 66px;
  border-bottom: 1px solid var(--line);
  line-height: 2;
}
.values li:first-child { border-top: 1px solid var(--line); }

.values li::before {
  content: "0" counter(v);
  position: absolute;
  left: 0;
  top: 26px;
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--gold);
  letter-spacing: .04em;
}

/* ---------- 会社概要テーブル ---------- */

.info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .96rem;
}

.info-table th,
.info-table td {
  padding: 22px 8px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
  line-height: 1.95;
}

.info-table tr:first-child th,
.info-table tr:first-child td { border-top: 1px solid var(--line); }

.info-table th {
  width: 210px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: .04em;
}

.info-table td { color: var(--ink); }
.info-table ul { margin: 0; padding-left: 1.2em; }
.info-table li + li { margin-top: 6px; }

/* ---------- ページ見出し ---------- */

.page-head {
  position: relative;
  padding-block: clamp(52px, 9vw, 84px);
  background:
    radial-gradient(900px 380px at 82% 20%, rgba(184,150,79,.14), transparent 62%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #fff;
}
.page-head::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 45%, transparent 85%);
}

.page-head .section-label { color: var(--gold-light); }

.page-head h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.6rem, 4.4vw, 2.3rem);
  font-weight: 600;
  letter-spacing: .06em;
}

/* ---------- パンくず ---------- */

.crumbs {
  padding-block: 16px;
  font-size: .8rem;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
}
.crumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0; padding: 0;
  list-style: none;
}
.crumbs li + li::before { content: "／"; margin-right: 10px; color: var(--line); }
.crumbs a { color: var(--muted); }

/* ---------- 本文（プライバシーポリシー等） ---------- */

.prose h2 {
  margin: 56px 0 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 1.22rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: .04em;
}
.prose h2:first-child { margin-top: 0; }
.prose p { margin: 0 0 18px; }
.prose ul { margin: 0 0 18px; padding-left: 1.4em; }
.prose li { margin-bottom: 8px; }

.prose .meta {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: .88rem;
  color: var(--muted);
}

/* ---------- フォーム ---------- */

.form { max-width: 680px; }

.field { margin-bottom: 28px; }

.field label {
  display: block;
  margin-bottom: 10px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: .04em;
}

.req, .opt {
  display: inline-block;
  margin-left: 10px;
  padding: 3px 9px;
  border-radius: 2px;
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .08em;
  vertical-align: 2px;
}
.req { background: var(--gold); color: #fff; }
.opt { background: var(--bg-alt); color: var(--muted); border: 1px solid var(--line); }

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: #fff;
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field textarea { min-height: 190px; resize: vertical; }

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--navy-mid);
  box-shadow: 0 0 0 3px rgba(27, 66, 105, .12);
}

.field .hint {
  margin: 8px 0 0;
  font-size: .82rem;
  color: var(--muted);
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 32px;
  padding: 20px 22px;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  font-size: .9rem;
  line-height: 1.9;
}
.consent input { width: 18px; height: 18px; margin-top: 6px; flex-shrink: 0; }

.contact-direct {
  margin-top: 56px;
  padding: 32px;
  background: var(--bg-alt);
  border: 1px solid var(--line);
}
.contact-direct h2 {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
}
.contact-direct dl {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 12px 20px;
  margin: 0;
  font-size: .94rem;
}
.contact-direct dt { color: var(--muted); }
.contact-direct dd { margin: 0; }

/* ---------- CTA 帯 ---------- */

.cta-band {
  position: relative;
  padding-block: clamp(60px, 9vw, 92px);
  background:
    radial-gradient(900px 400px at 20% 30%, rgba(184,150,79,.18), transparent 62%),
    linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: #fff;
  text-align: center;
}

.cta-band h2 {
  margin: 0 0 20px;
  font-family: var(--serif);
  font-size: clamp(1.4rem, 3.6vw, 1.95rem);
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: .04em;
}

.cta-band p {
  margin: 0 auto 36px;
  max-width: 40em;
  color: rgba(255, 255, 255, .82);
  font-size: .97rem;
}

.cta-band .btn-row { justify-content: center; }

/* ---------- フッター ---------- */

.site-footer {
  padding-block: 56px 0;
  background: var(--navy-deep);
  color: rgba(255, 255, 255, .72);
  font-size: .89rem;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 44px;
}

.footer-brand { max-width: 340px; }
.footer-brand .brand { margin-bottom: 22px; }
.footer-brand .brand img { height: 86px; width: auto; }
.footer-brand address {
  font-style: normal;
  line-height: 2;
  color: rgba(255, 255, 255, .62);
}

.footer-nav ul { margin: 0; padding: 0; list-style: none; }
.footer-nav li { margin-bottom: 12px; }
.footer-nav a { color: rgba(255, 255, 255, .78); }
.footer-nav a:hover { color: var(--gold-light); text-decoration: none; }

.copyright {
  padding-block: 22px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: .8rem;
  color: rgba(255, 255, 255, .5);
  letter-spacing: .04em;
}

/* ---------- レスポンシブ ---------- */

@media (max-width: 860px) {
  .nav-toggle-label {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    padding: 0 9px;
    cursor: pointer;
  }
  .nav-toggle-label span {
    display: block;
    height: 1.5px;
    background: var(--navy);
    transition: transform .3s ease, opacity .3s ease;
  }

  .site-nav {
    position: absolute;
    left: 0; right: 0; top: 100%;
    max-height: 0;
    overflow: hidden;
    background: #fff;
    border-bottom: 1px solid transparent;
    transition: max-height .35s ease, border-color .35s ease;
  }
  .nav-toggle:checked ~ .site-nav {
    max-height: 520px;
    border-bottom-color: var(--line);
  }
  .nav-toggle:checked ~ .nav-toggle-label span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav-toggle:checked ~ .nav-toggle-label span:nth-child(2) { opacity: 0; }
  .nav-toggle:checked ~ .nav-toggle-label span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px var(--gut) 24px;
  }
  .site-nav li { border-top: 1px solid var(--line); }
  .site-nav a { display: block; padding: 16px 0; font-size: .96rem; }
  .site-nav a::after { display: none; }

  .nav-cta { border-top: 0 !important; margin-top: 18px; }
  .nav-cta a { display: block; text-align: center; padding: 15px; }

  .header-inner { position: relative; }

  .step { padding: 26px 0; }
  .step + .step { padding-left: 0; border-left: 0; border-top: 1px solid var(--line); }

  .info-table th, .info-table td { display: block; width: 100%; }
  .info-table th { padding-bottom: 4px; border-bottom: 0; }
  .info-table tr:first-child td { border-top: 0; }
  .info-table td { padding-top: 0; }

  .contact-direct dl { grid-template-columns: 1fr; gap: 4px; }
  .contact-direct dt { margin-top: 12px; }
}

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

/* ---------- 印刷 ---------- */

@media print {
  .site-header, .cta-band, .nav-toggle-label, .btn-row { display: none; }
  body { color: #000; }
}

/* ============================================================
   追加コンポーネント（2026-08-09 リニューアル）
   ============================================================ */

/* ---------- 事業の2本立て ---------- */

.service-block {
  display: grid;
  grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 56px);
  padding-block: clamp(40px, 6vw, 56px);
  border-top: 1px solid var(--line);
}
.service-block:last-child { border-bottom: 1px solid var(--line); }

.service-label { position: relative; }

.service-label .num {
  display: block;
  margin-bottom: 12px;
  font-size: .74rem;
  letter-spacing: .24em;
  color: var(--gold);
}

.service-label h3 {
  margin: 0 0 14px;
  font-family: var(--serif);
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  font-weight: 600;
  line-height: 1.55;
  color: var(--navy);
}

.service-label .tag {
  display: inline-block;
  padding: 5px 12px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: var(--bg-alt);
  font-size: .76rem;
  letter-spacing: .06em;
  color: var(--muted);
}

.service-body p { margin: 0 0 22px; color: var(--muted); line-height: 2.05; }
.service-body p:last-child { margin-bottom: 0; }

.service-list { margin: 0; padding: 0; list-style: none; }

.service-list li {
  position: relative;
  padding: 12px 0 12px 26px;
  line-height: 1.9;
  border-bottom: 1px dotted var(--line);
}
.service-list li:last-child { border-bottom: 0; }

.service-list li::before {
  content: "";
  position: absolute;
  left: 4px; top: 22px;
  width: 6px; height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
}

.service-list strong {
  display: block;
  font-weight: 600;
  color: var(--ink);
}
.service-list span { font-size: .9rem; color: var(--muted); }

/* ---------- 代表者プロフィール ---------- */

.profile {
  display: grid;
  grid-template-columns: minmax(0, 300px) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
}

.profile-side {
  padding: 32px 28px;
  background: var(--navy);
  color: #fff;
}
.profile-side .role {
  font-size: .78rem;
  letter-spacing: .18em;
  color: var(--gold-light);
}
.profile-side .name {
  margin: 12px 0 0;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: .08em;
}
.profile-side .name-en {
  margin-top: 8px;
  font-size: .76rem;
  letter-spacing: .14em;
  color: rgba(255, 255, 255, .55);
}

.career { margin: 0; padding: 0; list-style: none; }

.career li {
  position: relative;
  padding: 0 0 26px 28px;
  border-left: 1px solid var(--line);
  line-height: 1.95;
}
.career li:last-child { padding-bottom: 0; border-left-color: transparent; }

.career li::before {
  content: "";
  position: absolute;
  left: -5px; top: 10px;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--gold);
}

.career strong { display: block; color: var(--navy); font-weight: 600; }
.career span { font-size: .91rem; color: var(--muted); }

/* ---------- よくある質問 ---------- */

.faq { margin: 0; padding: 0; list-style: none; }

.faq > li { border-bottom: 1px solid var(--line); }
.faq > li:first-child { border-top: 1px solid var(--line); }

.faq details { padding: 0; }

.faq summary {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 24px 40px 24px 0;
  position: relative;
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.8;
}
.faq summary::-webkit-details-marker { display: none; }

.faq summary::before {
  content: "Q";
  flex-shrink: 0;
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--gold);
  line-height: 1.7;
}

.faq summary::after {
  content: "";
  position: absolute;
  right: 8px; top: 32px;
  width: 10px; height: 10px;
  border-right: 1.5px solid var(--muted);
  border-bottom: 1.5px solid var(--muted);
  transform: rotate(45deg);
  transition: transform .25s ease;
}
.faq details[open] summary::after { transform: rotate(-135deg); }

.faq .answer {
  display: flex;
  gap: 14px;
  padding: 0 40px 26px 0;
  color: var(--muted);
  line-height: 2.05;
}
.faq .answer::before {
  content: "A";
  flex-shrink: 0;
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--navy-mid);
  line-height: 1.7;
}
.faq .answer p { margin: 0 0 12px; }
.faq .answer p:last-child { margin-bottom: 0; }

/* ---------- 対応範囲の明示 ---------- */

.scope {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.scope-box { padding: 32px 30px; border: 1px solid var(--line); background: #fff; }
.scope-box.can { border-top: 3px solid var(--navy); }
.scope-box.cannot { border-top: 3px solid var(--line); background: var(--bg-alt); }

.scope-box h3 {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--navy);
}
.scope-box.cannot h3 { color: var(--muted); }

.scope-box ul { margin: 0; padding-left: 1.3em; }
.scope-box li { margin-bottom: 10px; line-height: 1.85; font-size: .94rem; }
.scope-box.cannot li { color: var(--muted); }

@media (max-width: 860px) {
  .service-block, .profile { grid-template-columns: 1fr; }
  .service-block { padding-block: 32px; }
}
