/* Design Philosophy: Editorial Civic Design for explanatory pages. Prioritize reading rhythm, contrast, and structured storytelling. */
:root {
      --orange: #e87722;
      --orange-dark: #c95d10;
      --orange-light: #fff2e8;
      --green: #3b8d5a;
      --green-light: #eaf5ee;
      --navy: #1a1a2e;
      --text: #2a2a2a;
      --gray-light: #f7f7f7;
      --gray: #777;
      --border: #e5e5e5;
      --shadow: 0 14px 36px rgba(23,29,43,0.08);
      --radius-lg: 24px;
      --radius-md: 18px;
      --max-width: 1180px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: 'Noto Sans JP', sans-serif;
      color: var(--text);
      background: #fff;
      line-height: 1.8;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }
    img { max-width: 100%; display: block; }
    a { color: inherit; text-decoration: none; }
    button { font-family: inherit; }
    .container { width: min(var(--max-width), calc(100% - 160px)); margin: 0 auto; }


    .page-nav {
      background: linear-gradient(180deg, #fffaf6 0%, #ffffff 100%);
      border-bottom: 1px solid rgba(232,119,34,0.08);
    }
    .page-nav-inner {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      padding: 16px 0;
    }
    .page-nav a {
      display: inline-flex;
      align-items: center;
      padding: 10px 16px;
      border-radius: 999px;
      background: rgba(232,119,34,0.06);
      color: #7a5b44;
      font-size: 14px;
      font-weight: 700;
      transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
    }
    .page-nav a:hover {
      background: rgba(232,119,34,0.14);
      color: var(--orange-dark);
      transform: translateY(-1px);
    }

    .page-hero {
      position: relative;
      overflow: hidden;
      background:
        radial-gradient(circle at top right, rgba(232,119,34,0.22), transparent 32%),
        linear-gradient(135deg, #2d2f43 0%, #191d28 55%, #11141c 100%);
      color: #fff;
      padding: 94px 0 86px;
    }
    .page-hero::before {
      content: '';
      position: absolute;
      top: -20%;
      right: -8%;
      width: 480px;
      height: 480px;
      background: linear-gradient(135deg, rgba(255,255,255,0.14), rgba(255,255,255,0));
      border-radius: 50%;
      filter: blur(10px);
    }
    .page-hero::after {
      content: '';
      position: absolute;
      left: -5%;
      bottom: -28%;
      width: 420px;
      height: 420px;
      background: linear-gradient(135deg, rgba(232,119,34,0.18), rgba(232,119,34,0));
      border-radius: 50%;
      filter: blur(4px);
    }
    .page-hero .container { position: relative; z-index: 1; }
    .breadcrumb { font-size: 14px; color: rgba(255,255,255,0.72); margin-bottom: 20px; }
    .breadcrumb a { color: rgba(255,255,255,0.86); }
    .page-hero-tag {
      display: inline-block;
      background: var(--orange);
      color: #fff;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 0.08em;
      padding: 5px 12px;
      border-radius: 999px;
      margin-bottom: 16px;
    }
    .page-hero h1 { font-size: clamp(34px, 5vw, 48px); font-weight: 900; line-height: 1.22; margin-bottom: 18px; max-width: 14em; }
    .page-hero p { font-size: 17px; color: rgba(255,255,255,0.84); max-width: 700px; line-height: 1.95; }

/* PCのみ */
@media (min-width: 1280px) {
	
	/* ページの見出しの横幅を広げる（PC） */
	.page-hero h1 { 
		max-width: 72% !important;
	}
    .page-hero p {
		max-width: 72% !important;
	}
}

/* タブレット（Pro） */
@media (min-width: 1000px) and (max-width: 1279px) {
	
	/* ページの見出しの横幅を広げる（PC） */
	.page-hero h1 { 
		max-width: 80% !important;
	}
    .page-hero p {
		max-width: 80% !important;
	}
}

/* タブレット（Air・mini）・スマホ */
@media (max-width: 999px) {
	
	/* ページの見出しの横幅を広げる（PC） */
	.page-hero h1 { 
		max-width: 100% !important;
	}
    .page-hero p {
		max-width: 100% !important;
	}
}

    .hero-summary {
      margin-top: 30px;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
      max-width: 960px;
    }
    .hero-summary-item {
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.14);
      border-radius: 16px;
      padding: 18px 18px 16px;
      backdrop-filter: blur(8px);
    }
    .hero-summary-item .summary-label {
      display: block;
      font-size: 12px;
      letter-spacing: 0.08em;
      font-weight: 700;
      color: rgba(255,255,255,0.68);
      margin-bottom: 8px;
      text-transform: uppercase;
    }
    .hero-summary-item .summary-text {
      font-size: 15px;
      line-height: 1.8;
      color: #fff;
      font-weight: 700;
    }

    section { padding: 88px 0; }
    .section-tag { font-size: 14px; font-weight: 700; letter-spacing: 0.14em; color: var(--orange); text-transform: uppercase; margin-bottom: 12px; }
    .section-title { font-size: clamp(28px, 4vw, 38px); font-weight: 900; color: var(--text); line-height: 1.4; margin-bottom: 16px; }
    .section-desc { font-size: 16px; color: #555; line-height: 1.95; max-width: 100% !important; margin-bottom: 40px; }
    .text-emphasis { font-weight: 800; color: var(--text); }

    .philosophy { background: linear-gradient(180deg, #f7f7f7 0%, #f5f5f5 100%); }
    .message-lead {
      background: linear-gradient(135deg, #fff7f1 0%, #ffffff 100%);
      border: 1px solid rgba(232,119,34,0.15);
      border-left: 6px solid var(--orange);
      border-radius: var(--radius-lg);
      padding: 36px;
      box-shadow: 0 14px 36px rgba(23,29,43,0.08);
      margin-bottom: 36px;
    }
    .message-lead .lead-label {
      display: inline-block;
      padding: 6px 12px;
      border-radius: 999px;
      background: rgba(232,119,34,0.1);
      color: var(--orange);
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 0.08em;
      margin-bottom: 16px;
    }
    .message-lead h3 {
      font-size: clamp(30px, 5vw, 32px);
      line-height: 1.35;
      color: var(--navy);
      margin-bottom: 14px;
      font-weight: 900;
    }
    .message-lead p { font-size: 16px; color: #555; max-width: 100%; }
    .philosophy-content { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: stretch; }
    .purpose-box,
    .identity-box {
      border-radius: var(--radius-lg);
      padding: 36px;
      box-shadow: var(--shadow);
      height: 100%;
    }
    .purpose-box,
    .identity-box,
    .mission-card,
    .axis-card,
    .benefit-card,
    .timeline-content {
      position: relative;
    }
    .purpose-box::before,
    .identity-box::before,
    .method-intro::before,
    .history .timeline-content::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      border-radius: 999px 999px 0 0;
      background: linear-gradient(90deg, var(--orange) 0%, rgba(232,119,34,0.18) 100%);
    }
    .purpose-box { background: #fff; border-top: 5px solid var(--orange); }
    .purpose-box .label,
    .identity-box .label { font-size: 14px; font-weight: 700; letter-spacing: 0.1em; margin-bottom: 14px; }
    .purpose-box .label { color: var(--orange); }
    .identity-box .label { color: rgba(255,255,255,0.74); }
    .purpose-box .purpose-text,
    .identity-box .yori-text { font-size: 24px; font-weight: 900; line-height: 1.55; margin-bottom: 18px; }
    .purpose-box p { font-size: 15px; color: #666; }
    .identity-box {
      background: linear-gradient(135deg, var(--orange) 0%, #ef8f45 100%);
      color: #fff;
    }
    .identity-box p { font-size: 15px; color: rgba(255,255,255,0.9); margin-bottom: 18px; }

    .mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
    .mission-card { border: 1.5px solid #eee; border-radius: var(--radius-md); padding: 32px; background: #fff; box-shadow: 0 10px 26px rgba(23,29,43,0.05); }
    .mission-card .num { font-size: 44px; font-weight: 900; color: var(--orange); opacity: 0.18; line-height: 1; margin-bottom: 10px; }
    .mission-card h3 { font-size: 22px; font-weight: 800; margin-bottom: 12px; }
    .mission-card p { font-size: 15px; color: #666; line-height: 1.95; }

    .method {
      background: linear-gradient(180deg, #f8f8f8 0%, #f3f3f3 100%);
      position: relative;
    }
    .method-intro {
      background: #fff;
      border-radius: var(--radius-lg);
      padding: 32px;
      box-shadow: var(--shadow);
      margin-bottom: 28px;
      position: relative;
    }
    .method-intro p { font-size: 16px; color: #555; }
    .method-flow-note {
      margin: 20px 0 24px;
      padding: 14px 18px;
      background: rgba(232,119,34,0.08);
      border-radius: 14px;
      font-size: 14px;
      color: #6a5748;
      font-weight: 700;
    }
    .axis-grid,
    .benefit-grid,
    .office-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .axis-grid {
      position: relative;
      margin-top: 10px;
    }
    .axis-grid::after {
      content: '';
      position: absolute;
      left: 8%;
      right: 8%;
      bottom: -18px;
      height: 1px;
      background: linear-gradient(90deg, rgba(232,119,34,0) 0%, rgba(232,119,34,0.28) 20%, rgba(232,119,34,0.28) 80%, rgba(232,119,34,0) 100%);
    }
    .axis-card,
    .benefit-card,
    .office-card {
      background: #fff;
      border-radius: var(--radius-md);
      padding: 28px;
      box-shadow: var(--shadow);
      border: 1px solid rgba(0,0,0,0.04);
    }
    .axis-card { border-top: 4px solid rgba(232,119,34,0.45); }
    .benefit-card { border-top: 4px solid rgba(26,26,46,0.12); }
    .axis-card h3,
    .benefit-card h3,
    .office-card h3 { font-size: 20px; margin-bottom: 12px; font-weight: 800; }
    .axis-card p,
    .benefit-card p,
    .office-card p { font-size: 15px; color: #666; line-height: 1.95; }
    .axis-card .axis-en { display: block; font-size: 14px; color: var(--orange); font-weight: 700; letter-spacing: 0.06em; margin-bottom: 10px; }

    .method-collaboration {
      margin-top: 28px;
      background: linear-gradient(135deg, #fff 0%, #fff8f3 100%);
      border: 1px solid rgba(232,119,34,0.12);
      border-radius: var(--radius-lg);
      padding: 32px;
      box-shadow: var(--shadow);
    }
    .method-collaboration h3 { font-size: 24px; font-weight: 800; margin-bottom: 20px; }
    .collaboration-diagram {
      display: grid;
      grid-template-columns: 1fr auto 1fr auto 1fr;
      gap: 16px;
      align-items: center;
      margin-bottom: 24px;
    }
    .collab-node,
    .collab-center {
      border-radius: var(--radius-md);
      padding: 20px;
      text-align: center;
      min-height: 128px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 8px;
    }
    .collab-node {
      background: #fff;
      border: 1px solid rgba(232,119,34,0.18);
    }
    .collab-center {
      background: var(--orange);
      color: #fff;
      font-weight: 800;
      box-shadow: var(--shadow);
    }
    .collab-arrow {
      font-size: 28px;
      color: var(--orange);
      font-weight: 900;
    }
    .collab-node strong,
    .collab-center strong { font-size: 18px; line-height: 1.4; }
    .collab-node span,
    .collab-center span { font-size: 14px; line-height: 1.6; color: inherit; }
    .support-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
      margin-bottom: 20px;
    }
    .support-box {
      background: #fff;
      border-radius: var(--radius-md);
      padding: 24px;
      border-left: 4px solid var(--orange);
    }
    .support-box h4 { font-size: 18px; font-weight: 800; margin-bottom: 8px; }
    .support-box p { font-size: 15px; color: #666; }
    .sector-list {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin: 16px 0 18px;
    }
    .sector-list span {
      padding: 9px 14px;
      border-radius: 999px;
      background: var(--orange-light);
      color: var(--orange-dark);
      font-size: 14px;
      font-weight: 700;
    }
    .method-summary {
      background: var(--navy);
      color: #fff;
      border-radius: var(--radius-md);
      padding: 24px;
    }
    .method-summary p { color: rgba(255,255,255,0.9); font-size: 15px; }
    .method-graphic {
      margin-top: 34px;
      background: #fff;
      border-radius: var(--radius-lg);
      padding: 20px;
      box-shadow: 0 18px 40px rgba(23,29,43,0.09);
      border: 1px solid rgba(232,119,34,0.12);
      position: relative;
    }
    .method-graphic::before {
      content: 'Visual Overview';
      position: absolute;
      top: -13px;
      left: 24px;
      padding: 4px 10px;
      border-radius: 999px;
      background: var(--orange);
      color: #fff;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }
    .method-graphic img {
      width: 100%;
      height: auto;
      border-radius: 12px;
      max-height: 400px;
      object-fit: cover;
    }
    .method-graphic figcaption {
      margin-top: 14px;
      font-size: 14px;
      color: #666;
      text-align: center;
      line-height: 1.8;
    }

    .benefits {
      margin-top: 36px;
      padding-top: 24px;
      position: relative;
    }
    .benefits::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 120px;
      height: 3px;
      background: linear-gradient(90deg, var(--orange) 0%, rgba(232,119,34,0.18) 100%);
      border-radius: 999px;
    }
    .benefit-card .benefit-no {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: var(--orange);
      color: #fff;
      font-size: 16px;
      font-weight: 900;
      margin-bottom: 16px;
    }

    .history { background: linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%); }
    .timeline { position: relative; padding-left: 40px; }
    .timeline::before { content: ''; position: absolute; left: 16px; top: 0; bottom: 0; width: 2px; background: var(--orange); opacity: 0.3; }
    .timeline-item { position: relative; margin-bottom: 40px; }
    .timeline-item:last-child { margin-bottom: 0; }
    .timeline-item::before {
      content: '';
      position: absolute;
      left: -32px;
      top: 6px;
      width: 16px;
      height: 16px;
      background: var(--orange);
      border-radius: 50%;
      border: 3px solid #fff;
      box-shadow: 0 0 0 2px var(--orange);
    }
    .timeline-phase { font-size: 14px; font-weight: 700; color: var(--orange); letter-spacing: 0.08em; margin-bottom: 8px; }
    .timeline-title { font-size: 24px; font-weight: 800; margin-bottom: 12px; }
    .timeline-content { background: var(--gray-light); border-radius: var(--radius-md); padding: 28px 30px; box-shadow: 0 10px 26px rgba(23,29,43,0.05); }
    .timeline-content p { font-size: 15px; color: #555; line-height: 1.95; max-width: 58em; }
    .timeline-kpi { display: flex; gap: 24px; margin-top: 18px; flex-wrap: wrap; }
    .kpi-item { text-align: center; min-width: 100px; }
    .kpi-item .num { font-size: 28px; font-weight: 900; color: var(--orange); }
    .kpi-item .label { font-size: 14px; color: #888; }

    .team { background: var(--gray-light); }
    .team-grid {
      display: grid !important;
      grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
      gap: 24px !important;
      justify-content: initial !important;
      align-content: start;
    }
    .team-grid > * {
      width: auto !important;
      max-width: none !important;
      margin: 0 !important;
      flex: initial !important;
    }
    .team-grid > br,
    .team-grid > p {
      display: none !important;
    }
    .team-card {
      background: #fff;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 10px 26px rgba(23,29,43,0.06);
      border: 1px solid rgba(0,0,0,0.05);
      display: flex;
      flex-direction: column;
      height: 100%;
      cursor: pointer;
      transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
      padding: 0;
      text-align: left;
      color: inherit;
      appearance: none;
    }
    .team-card:hover,
    .team-card:focus-visible {
      transform: translateY(-6px);
      box-shadow: 0 18px 38px rgba(23,29,43,0.14);
      border-color: rgba(232,119,34,0.28);
      outline: none;
    }
    .team-card-media {
      height: 220px;
      background: linear-gradient(135deg,#e8e8e8,#d0d0d0);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 40px;
      color: #bbb;
      overflow: hidden;
    }
    .team-card-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
      display: block;
      transition: transform 0.35s ease;
    }
    .team-card:hover .team-card-media img,
    .team-card:focus-visible .team-card-media img {
      transform: scale(1.03);
    }
    .team-card-body {
      padding: 20px 20px 22px;
      display: flex;
      flex-direction: column;
      gap: 8px;
      flex: 1;
    }
    .team-role {
      align-self: flex-start;
      display: inline-flex;
      padding: 5px 10px;
      border-radius: 999px;
      background: var(--orange-light);
      font-size: 11px;
      font-weight: 800;
      color: var(--orange);
      letter-spacing: 0.08em;
      margin-bottom: 2px;
      text-transform: uppercase;
    }
    .team-name { font-size: 18px; font-weight: 800; margin-bottom: 0; line-height: 1.5; }
    .team-detail { font-size: 14px; color: #777; line-height: 1.75; }
    .team-card-hint {
      margin-top: 10px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      font-weight: 700;
      color: var(--orange);
    }
    .team-modal {
      position: fixed;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 24px;
      background: rgba(11,17,28,0.72);
      backdrop-filter: blur(8px);
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity 0.25s ease, visibility 0.25s ease;
      z-index: 300;
    }
    .team-modal.is-open {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
    }
    .team-modal-dialog {
      width: min(960px, 100%);
      max-height: min(88vh, 860px);
      overflow: auto;
      background: #fff;
      border-radius: 24px;
      box-shadow: 0 32px 60px rgba(11,17,28,0.22);
      position: relative;
    }
    .team-modal-close {
      position: sticky;
      top: 18px;
      margin-left: auto;
      margin-right: 18px;
      margin-top: 18px;
      width: 44px;
      height: 44px;
      border: 0;
      border-radius: 999px;
      background: rgba(26,26,46,0.08);
      color: var(--navy);
      font-size: 24px;
      line-height: 1;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 2;
    }
    .team-modal-content {
      padding: 8px 36px 40px;
      display: grid;
      grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
      gap: 32px;
      align-items: start;
    }
    .team-modal-media {
      background: linear-gradient(180deg, #f8f8f8 0%, #f3f3f3 100%);
      border-radius: 20px;
      overflow: hidden;
      border: 1px solid rgba(23,29,43,0.08);
    }
    .team-modal-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      aspect-ratio: 4 / 5;
      display: block;
    }
    .team-modal-role {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 14px;
      border-radius: 999px;
      background: rgba(232,119,34,0.1);
      color: var(--orange);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 18px;
    }
    .team-modal-name {
      font-size: clamp(28px, 4vw, 38px);
      line-height: 1.3;
      font-weight: 900;
      color: var(--navy);
      margin-bottom: 14px;
    }
    .team-modal-position {
      font-size: 16px;
      line-height: 1.9;
      color: #555;
      margin-bottom: 22px;
      white-space: pre-line;
    }
    .team-modal-bio {
      font-size: 15px;
      line-height: 2;
      color: #444;
      white-space: pre-line;
    }
    body.modal-open {
      overflow: hidden;
    }

    .office { background: #fff; }
    .office-lead {
      background: linear-gradient(135deg, #fff8f3 0%, #ffffff 100%);
      border: 1px solid rgba(232,119,34,0.12);
      border-radius: var(--radius-lg);
      padding: 30px;
      box-shadow: var(--shadow);
      margin-bottom: 24px;
    }
    .office-lead p { font-size: 16px; color: #555; }
    .office-layout {
      display: grid;
      grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
      gap: 24px;
      align-items: stretch;
    }
    .office-card,
    .office-map {
      background: transparent;
      border-radius: 0;
      box-shadow: none;
      border: 0;
      overflow: visible;
      height: 100%;
    }
    .office-card {
      padding: 0;
      display: flex;
    }
    .office-info-table {
      width: 100%;
      border-collapse: collapse;
      table-layout: fixed;
      height: 100%;
    }
    .office-info-table th,
    .office-info-table td {
      border: 1px solid #e7e2dc;
      padding: 20px 18px;
      vertical-align: top;
      font-size: 15px;
      line-height: 1.8;
    }
    .office-info-table th {
      width: 30%;
      background: #f6f3ef;
      color: #3d352f;
      font-weight: 800;
      text-align: center;
      white-space: nowrap;
    }
    .office-info-table td {
      background: #fff;
      color: #444;
      font-weight: 500;
    }
    .office-map {
      padding: 0;
      display: flex;
      min-height: 100%;
    }
    .office-map-frame {
      position: relative;
      width: 100%;
      height: 100%;
      min-height: 100%;
      flex: 1;
      overflow: hidden;
      background: #f3f3f3;
    }
    .office-map-frame iframe {
      width: 100%;
      height: 100%;
      min-height: 100%;
      border: 0;
      display: block;
    }


    @media (max-width: 1100px) {
      .container { width: min(var(--max-width), calc(100% - 64px)); }
      .hero-summary,
      .mission-grid,
      .philosophy-content,
      .axis-grid,
      .benefit-grid,
      .team-grid,
      .office-layout { grid-template-columns: repeat(2, 1fr); }
      .team-modal-content { grid-template-columns: 1fr; }
      .team-modal-media { max-width: 360px; }
      .collaboration-diagram { grid-template-columns: 1fr; }
      .collab-arrow { transform: rotate(90deg); justify-self: center; }
      .team-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
      }
    }

    @media (max-width: 767px) {
      .container { width: min(var(--max-width), calc(100% - 40px)); }
      .page-hero { padding: 74px 0 66px; }
      .page-hero h1 { font-size: 32px; }
      .page-hero p,
      .section-desc,
      .message-lead p,
      .method-intro p,
      .timeline-content p,
      .office-lead p { font-size: 14px; }
      .hero-summary,
      .mission-grid,
      .philosophy-content,
      .axis-grid,
      .benefit-grid,
      .team-grid,
      .office-layout,
      .support-grid { grid-template-columns: 1fr; }
      section { padding: 72px 0; }
      .message-lead,
      .purpose-box,
      .identity-box,
      .method-intro,
      .method-collaboration,
      .timeline-content,
      .office-lead { padding: 24px; }
      .office-info-table th,
      .office-info-table td { display: block; width: 100%; font-size: 14px; }
      .office-map-frame iframe { min-height: 300px; }
      .team-card-media { height: 220px; }
      .team-modal { padding: 16px; }
      .team-modal-dialog { border-radius: 20px; max-height: 92vh; }
      .team-modal-close { top: 14px; margin-right: 14px; margin-top: 14px; }
      .team-modal-content { padding: 4px 20px 28px; gap: 22px; }
      .team-modal-role,
      .team-card-hint { font-size: 12px; }
      .team-modal-position,
      .team-modal-bio { font-size: 12px; }
      .timeline { padding-left: 28px; }
      .timeline-item::before { left: -24px; }
      .page-nav-inner { padding: 14px 0; }
      .team-grid {
        grid-template-columns: 1fr !important;
      }
      nav a,
      .page-nav a,
      .section-tag,
      .timeline-phase,
      .kpi-item .label { font-size: 12px; }
    }
