@font-face {
  font-family: "Manrope Local";
  src: url("./fonts/Manrope-Variable.ttf") format("truetype");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Outfit Local";
  src: url("./fonts/Outfit-Variable.ttf") format("truetype");
  font-weight: 200 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --canvas: #f6f0e8;
  --paper: rgba(255, 255, 255, 0.82);
  --paper-strong: rgba(255, 255, 255, 0.95);
  --ink: #14253d;
  --ink-soft: #41536c;
  --line: rgba(20, 37, 61, 0.12);
  --line-strong: rgba(20, 37, 61, 0.18);
  --accent: #f26f3a;
  --accent-deep: #ca4d1c;
  --accent-mint: #0a8f8f;
  --accent-sand: #f4c48b;
  --shadow-lg: 0 24px 60px rgba(20, 37, 61, 0.14);
  --shadow-md: 0 18px 36px rgba(20, 37, 61, 0.1);
  --shadow-sm: 0 10px 24px rgba(20, 37, 61, 0.08);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: min(1180px, calc(100vw - 32px));
  --font-body: "Aptos", "Segoe UI Variable Text", "PingFang TC", "PingFang SC", "Microsoft JhengHei", "Microsoft YaHei", "Noto Sans TC", "Noto Sans SC", sans-serif;
  --font-display: "Aptos Display", "Segoe UI Variable Display", "PingFang TC", "PingFang SC", "Microsoft JhengHei", "Microsoft YaHei", "Noto Sans TC", "Noto Sans SC", sans-serif;
  --hero-image: none;
}

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

html {
  scroll-behavior: smooth;
}

html[lang="en"] {
  --font-body: "Manrope Local", "Segoe UI Variable Text", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-display: "Outfit Local", "Manrope Local", "Segoe UI Variable Display", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(242, 111, 58, 0.18), transparent 30%),
    radial-gradient(circle at top right, rgba(10, 143, 143, 0.18), transparent 32%),
    linear-gradient(180deg, #f8f4ee 0%, #f2ede5 48%, #f8f4ee 100%);
  min-height: 100vh;
}

html[lang="en"] body {
  letter-spacing: -0.012em;
}

html[lang="en"] .brand-mobile-copy,
html[lang="en"] .footer-brand-copy span,
html[lang="en"] .eyebrow,
html[lang="en"] .card-meta,
html[lang="en"] .related-meta,
html[lang="en"] .office-meta,
html[lang="en"] .member-meta,
html[lang="en"] .footer-card-kicker,
html[lang="en"] .footer-contact-card span,
html[lang="en"] .footer-detail span {
  letter-spacing: 0.015em;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 50;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.site-shell {
  position: relative;
  isolation: isolate;
}

.site-shell::before,
.site-shell::after {
  content: "";
  position: fixed;
  inset: auto;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(70px);
  opacity: 0.35;
  z-index: -1;
}

.site-shell::before {
  top: -90px;
  right: -80px;
  background: rgba(242, 111, 58, 0.34);
}

.site-shell::after {
  bottom: -130px;
  left: -110px;
  background: rgba(10, 143, 143, 0.28);
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(246, 240, 232, 0.82);
  border-bottom: 1px solid rgba(20, 37, 61, 0.08);
}

.site-header .container {
  position: relative;
}

.header-bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 18px;
  min-height: 82px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-logo {
  display: block;
  width: min(320px, 100%);
  height: 58px;
  object-fit: contain;
}

.brand-mobile-lockup {
  display: none;
  align-items: center;
  gap: 8px;
}

.brand-logo-icon {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
}

.brand-mobile-copy {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--ink);
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
  line-height: 1.08;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.quick-pill,
.lang-link,
.menu-toggle {
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.76);
  color: var(--ink);
}

.quick-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.quick-pill strong {
  font-size: 0.78rem;
  color: var(--ink-soft);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.quick-pill span {
  font-weight: 700;
  font-size: 0.92rem;
}

.quick-pill:hover,
.lang-link:hover,
.menu-toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(242, 111, 58, 0.38);
  background: rgba(255, 255, 255, 0.92);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.lang-link {
  padding: 10px 12px;
  font-size: 0.88rem;
  font-weight: 700;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.lang-link.is-active {
  background: linear-gradient(120deg, rgba(242, 111, 58, 0.92), rgba(202, 77, 28, 0.92));
  color: #fff;
  border-color: rgba(202, 77, 28, 0.68);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  gap: 4px;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle-line {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.22s ease, opacity 0.2s ease;
}

.site-header[data-menu-open="true"] .menu-toggle-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-header[data-menu-open="true"] .menu-toggle-line:nth-child(2) {
  opacity: 0;
}

.site-header[data-menu-open="true"] .menu-toggle-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.main-nav-wrap {
  padding-bottom: 16px;
}

.main-nav,
.group-nav {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
}

.main-nav::-webkit-scrollbar,
.group-nav::-webkit-scrollbar {
  display: none;
}

.nav-link,
.group-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 11px 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(20, 37, 61, 0.1);
  color: var(--ink-soft);
  white-space: nowrap;
  font-weight: 700;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.nav-link:hover,
.group-link:hover {
  transform: translateY(-1px);
  border-color: rgba(10, 143, 143, 0.34);
  color: var(--ink);
}

.nav-link.is-active,
.group-link.is-active {
  background: linear-gradient(120deg, rgba(20, 37, 61, 0.95), rgba(48, 68, 92, 0.95));
  color: #fff;
  border-color: rgba(20, 37, 61, 0.88);
}

.hero {
  position: relative;
  padding: 42px 0 22px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 540px;
  background:
    linear-gradient(180deg, rgba(246, 240, 232, 0.22), rgba(246, 240, 232, 0.8)),
    linear-gradient(135deg, rgba(20, 37, 61, 0.16), rgba(20, 37, 61, 0)),
    var(--hero-image);
  background-size: cover;
  background-position: center;
  opacity: 0.82;
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(320px, 0.86fr);
  gap: 28px;
  align-items: center;
}

.hero-copy {
  padding: 10px 0 18px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(20, 37, 61, 0.1);
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.3vw, 3.95rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  max-width: 14ch;
}

.hero-summary {
  max-width: 65ch;
  margin: 18px 0 0;
  font-size: 0.98rem;
  line-height: 1.8;
  color: var(--ink-soft);
}

.chip-row,
.hero-actions,
.section-cta-row,
.floating-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.chip-row {
  margin-top: 22px;
}

.chip {
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(20, 37, 61, 0.1);
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-actions {
  margin-top: 26px;
}

.hero-compact {
  padding: 24px 0 14px;
}

.hero-compact::before {
  height: 430px;
  opacity: 0.78;
}

.hero-compact .hero-grid {
  grid-template-columns: minmax(0, 1.24fr) minmax(320px, 0.76fr);
  gap: 24px;
}

.hero-compact .hero-copy {
  padding: 0 0 10px;
}

.hero-compact h1 {
  font-size: clamp(1.9rem, 3.4vw, 3.05rem);
  max-width: 14.5ch;
}

.hero-compact .hero-summary {
  max-width: 56ch;
  margin-top: 14px;
  font-size: 0.95rem;
  line-height: 1.7;
}

.hero-compact .chip-row {
  margin-top: 16px;
  gap: 10px;
}

.hero-compact .chip {
  padding: 8px 12px;
  font-size: 0.84rem;
}

.hero-compact .hero-actions {
  margin-top: 18px;
}

.hero-compact .button {
  min-height: 46px;
  padding: 0 18px;
}

.hero-compact .hero-media {
  aspect-ratio: 16 / 8.6;
}

.hero-compact .hero-stats {
  gap: 10px;
  padding: 12px;
}

.hero-compact .stat-card {
  padding: 13px 14px;
}

.hero-compact .stat-card strong {
  font-size: 1.22rem;
}

.hero-compact .stat-card span {
  font-size: 0.88rem;
  line-height: 1.52;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  filter: saturate(1.05);
}

.button-primary {
  background: linear-gradient(130deg, var(--accent) 0%, var(--accent-deep) 100%);
  color: #fff;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.76);
  color: var(--ink);
  border: 1px solid rgba(20, 37, 61, 0.12);
}

.hero-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.72));
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow-lg);
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 37, 61, 0) 0%, rgba(20, 37, 61, 0.08) 100%),
    linear-gradient(120deg, rgba(242, 111, 58, 0.12), rgba(10, 143, 143, 0.08));
  pointer-events: none;
}

.hero-media {
  aspect-ratio: 10 / 7.2;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-stats {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 14px;
}

.stat-card {
  padding: 15px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(20, 37, 61, 0.08);
}

.stat-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: -0.03em;
}

.stat-card span {
  display: block;
  margin-top: 6px;
  color: var(--ink-soft);
  line-height: 1.6;
  font-size: 0.92rem;
}

.group-shell {
  position: relative;
  padding: 14px 0 20px;
}

.hero + .group-shell {
  margin-top: 8px;
}

.hero-compact + .group-shell {
  margin-top: 18px;
  padding-top: 18px;
  padding-bottom: 28px;
}

.hero-compact + .group-shell::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(20, 37, 61, 0), rgba(20, 37, 61, 0.12), rgba(20, 37, 61, 0));
}

.group-shell .container {
  display: grid;
  gap: 14px;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--accent-deep);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.page-section {
  padding: 32px 0;
}

.group-shell + .page-section {
  padding-top: 14px;
}

.section-shell {
  position: relative;
  border-radius: var(--radius-xl);
  padding: 28px;
  background: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.section-shell.is-soft {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 251, 247, 0.86));
}

.section-shell.is-alert {
  background:
    linear-gradient(135deg, rgba(242, 111, 58, 0.15), rgba(255, 255, 255, 0.92)),
    rgba(255, 255, 255, 0.9);
}

.section-head {
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
}

.section-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2vw, 2.3rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.section-head p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.8;
  max-width: 72ch;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(240px, 0.86fr);
  gap: 24px;
}

.story-body {
  display: grid;
  gap: 14px;
}

.story-body p,
.story-body li,
.card-text,
.step-card p,
.office-card p,
.member-card p,
.related-card p,
.faq-item p,
.footer-note,
.cta-panel p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.85;
}

.story-body ul,
.card-points,
.footer-link-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.story-body li,
.card-points li {
  position: relative;
  padding-left: 22px;
}

.story-body li::before,
.card-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.82em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(120deg, var(--accent) 0%, var(--accent-deep) 100%);
}

.story-side {
  display: grid;
  gap: 12px;
  align-content: start;
}

.side-chip {
  padding: 14px 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(20, 37, 61, 0.08);
  font-weight: 700;
  color: var(--ink);
}

.card-grid,
.related-grid,
.office-grid,
.member-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.card,
.related-card,
.office-card,
.member-card,
.quote-card {
  height: 100%;
  border-radius: var(--radius-lg);
  padding: 20px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(20, 37, 61, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.card-tag,
.member-badge,
.office-badge,
.quote-role {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(20, 37, 61, 0.07);
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 700;
}

.card-meta,
.related-meta,
.office-meta,
.member-meta {
  display: block;
  margin-bottom: 12px;
  color: var(--accent-deep);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.card h3,
.related-card h3,
.office-card h3,
.member-card h3,
.step-card h3,
.quote-card h3,
.cta-panel h2 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 1.22rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.card-text,
.step-card p,
.related-card p {
  margin-bottom: 14px;
}

.card-points {
  display: grid;
  gap: 10px;
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.step-card {
  position: relative;
  height: 100%;
  padding: 22px 18px 18px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(20, 37, 61, 0.08);
}

.step-number {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  border-radius: 15px;
  background: linear-gradient(145deg, rgba(242, 111, 58, 0.95), rgba(202, 77, 28, 0.95));
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.step-tag {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--accent-deep);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border-radius: var(--radius-md);
  border: 1px solid rgba(20, 37, 61, 0.08);
  background: rgba(255, 255, 255, 0.82);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 800;
  line-height: 1.5;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item[open] summary {
  border-bottom: 1px solid rgba(20, 37, 61, 0.08);
}

.faq-answer {
  padding: 0 20px 18px;
}

.related-card,
.office-card,
.member-card {
  display: flex;
  flex-direction: column;
}

.related-card {
  justify-content: space-between;
}

.related-card .button,
.cta-panel .button,
.floating-actions .button {
  width: fit-content;
}

.member-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.member-card-head {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 12px;
}

.member-avatar {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(20, 37, 61, 0.92), rgba(48, 68, 92, 0.92));
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.member-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.12rem;
  line-height: 1.2;
}

.member-langs,
.office-hours {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(20, 37, 61, 0.08);
  font-size: 0.92rem;
}

.cta-block {
  padding: 18px 0 42px;
}

.cta-panel {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(20, 37, 61, 0.96), rgba(36, 54, 74, 0.96)),
    linear-gradient(135deg, rgba(242, 111, 58, 0.2), rgba(10, 143, 143, 0.15));
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.cta-panel::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  right: -120px;
  bottom: -140px;
  background: rgba(242, 111, 58, 0.32);
  filter: blur(30px);
}

.cta-panel p {
  color: rgba(255, 255, 255, 0.82);
  max-width: 70ch;
}

.cta-panel .button-secondary {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}

.site-footer {
  padding: 18px 0 52px;
}

.footer-shell {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(242, 111, 58, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.86));
  border: 1px solid rgba(20, 37, 61, 0.08);
  box-shadow: var(--shadow-sm);
}

.footer-shell::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -120px;
  top: -150px;
  border-radius: 50%;
  background: rgba(10, 143, 143, 0.1);
  filter: blur(20px);
  pointer-events: none;
}

.footer-head {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(300px, 0.9fr);
  gap: 22px;
  align-items: stretch;
}

.footer-brand-panel,
.footer-info-card,
.footer-column {
  position: relative;
  border-radius: 26px;
  border: 1px solid rgba(20, 37, 61, 0.08);
}

.footer-brand-panel {
  padding: 26px;
  background:
    linear-gradient(135deg, rgba(20, 37, 61, 0.96), rgba(36, 54, 74, 0.94)),
    linear-gradient(135deg, rgba(242, 111, 58, 0.18), rgba(10, 143, 143, 0.12));
  color: #fff;
  box-shadow: var(--shadow-md);
}

.footer-brand-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.footer-logo {
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
}

.footer-brand-copy {
  display: grid;
  gap: 6px;
}

.footer-brand-copy strong,
.footer-column h3 {
  display: block;
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.14rem;
  line-height: 1.2;
}

.footer-brand-copy span,
.footer-card-kicker,
.footer-contact-card span,
.footer-detail span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.footer-brand-panel .footer-note {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.82);
  max-width: 58ch;
}

.footer-contact-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.footer-contact-card {
  display: grid;
  gap: 8px;
  min-height: 100%;
  padding: 15px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.footer-contact-card strong {
  font-family: var(--font-display);
  font-size: 1rem;
  line-height: 1.28;
  color: #fff;
  word-break: break-word;
}

.footer-contact-card:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.22);
}

.footer-info-card {
  padding: 24px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.footer-card-kicker,
.footer-info-card .footer-detail span {
  color: var(--accent-deep);
}

.footer-info-card strong {
  display: block;
  margin: 8px 0 0;
  font-family: var(--font-display);
  font-size: 1.24rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.footer-detail-list {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.footer-detail {
  display: grid;
  gap: 8px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(20, 37, 61, 0.08);
}

.footer-detail:last-of-type {
  padding-bottom: 0;
  border-bottom: 0;
}

.footer-nav-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 36px;
  margin-top: 28px;
  padding-top: 8px;
}

.footer-column {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.footer-column h3 {
  margin-bottom: 6px;
  font-size: 1rem;
}

.footer-link-list {
  display: grid;
  gap: 4px;
}

.footer-link-list a {
  display: block;
  padding: 4px 0;
  border-radius: 0;
  color: var(--ink-soft);
  background: transparent;
  border: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.footer-link-list a:hover {
  transform: none;
  color: var(--ink);
  background: transparent;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  text-decoration-color: currentColor;
}

.footer-link-list a:focus-visible {
  outline: 2px solid rgba(242, 111, 58, 0.28);
  outline-offset: 4px;
  border-radius: 8px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(20, 37, 61, 0.08);
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-bottom span:first-child {
  font-weight: 700;
  color: var(--ink);
}

.footer-bottom span:last-child {
  max-width: 72ch;
  margin-left: auto;
  text-align: right;
}

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 25;
}

.floating-actions .button {
  min-height: 46px;
  padding: 0 18px;
  box-shadow: var(--shadow-md);
}

.floating-actions .button-secondary {
  background: rgba(255, 255, 255, 0.94);
}

.page-intro-note {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.root-redirect {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.root-card {
  width: min(760px, 100%);
  padding: 32px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(20, 37, 61, 0.08);
  box-shadow: var(--shadow-lg);
}

.root-card h1 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.root-card p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.82;
}

.root-card .hero-actions {
  margin-top: 24px;
}

@media (max-width: 1080px) {
  .hero-grid,
  .story-grid,
  .footer-head {
    grid-template-columns: 1fr;
  }

  .card-grid,
  .related-grid,
  .office-grid,
  .step-grid,
  .member-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .header-bar {
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 12px;
  }

  .header-actions {
    display: flex;
    justify-content: flex-end;
    min-width: 0;
  }

  .quick-pill {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    width: 50px;
    height: 50px;
    padding: 0;
    flex: 0 0 auto;
  }

  .main-nav-wrap {
    position: absolute;
    top: calc(100% - 6px);
    left: 0;
    right: 0;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 5;
  }

  .site-header[data-menu-open="true"] .main-nav-wrap {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .main-nav {
    display: grid;
    gap: 8px;
    padding: 14px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(20, 37, 61, 0.1);
    box-shadow: var(--shadow-md);
  }

  .main-nav .nav-link {
    width: 100%;
    justify-content: flex-start;
    padding: 14px 16px;
    border-radius: 16px;
    white-space: normal;
  }

  .hero-compact::before {
    height: 360px;
  }

  .hero-compact .hero-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 920px) {
  .footer-contact-strip,
  .footer-nav-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-nav-grid {
    gap: 28px 22px;
  }
}

@media (max-width: 720px) {
  .header-bar {
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 8px;
    min-height: 78px;
  }

  .hero {
    padding-top: 28px;
  }

  .hero::before {
    height: 420px;
  }

  .section-shell,
  .cta-panel,
  .footer-shell,
  .root-card {
    padding: 22px;
  }

  .card-grid,
  .related-grid,
  .office-grid,
  .step-grid,
  .member-grid,
  .hero-stats {
    grid-template-columns: 1fr;
  }

  .footer-contact-strip,
  .footer-nav-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand-panel,
  .footer-info-card {
    border-radius: 22px;
  }

  .footer-brand-panel,
  .footer-info-card {
    padding: 20px;
  }

  .footer-nav-grid {
    gap: 22px;
    margin-top: 24px;
    padding-top: 2px;
  }

  .footer-column {
    padding: 0 0 18px;
    border-bottom: 1px solid rgba(20, 37, 61, 0.08);
  }

  .footer-column:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .footer-logo {
    width: 46px;
    height: 46px;
  }

  .footer-brand-copy strong,
  .footer-column h3 {
    font-size: 1.05rem;
  }

  .footer-info-card strong {
    font-size: 1.12rem;
  }

  .footer-bottom {
    gap: 10px;
    font-size: 0.88rem;
  }

  .footer-bottom span:last-child {
    margin-left: 0;
    text-align: left;
  }

  .brand-logo {
    display: none;
  }

  .brand-mobile-lockup {
    display: inline-flex;
    gap: 6px;
    max-width: 100%;
  }

  .brand-logo-icon {
    width: 34px;
    height: 34px;
  }

  .brand-mobile-copy {
    font-size: 0.84rem;
    letter-spacing: 0.01em;
    max-width: min(20ch, calc(100vw - 176px));
  }

  .header-actions {
    gap: 4px;
  }

  .menu-toggle {
    width: 46px;
    height: 46px;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(1.9rem, 9vw, 3.15rem);
  }

  .hero-summary {
    font-size: 0.95rem;
    line-height: 1.72;
  }

  .hero-compact {
    padding-top: 22px;
    padding-bottom: 10px;
  }

  .hero-compact::before {
    height: 320px;
  }

  .hero-compact .hero-copy {
    padding-bottom: 6px;
  }

  .hero-compact h1 {
    font-size: clamp(1.7rem, 7vw, 2.55rem);
    max-width: none;
  }

  .hero-compact .hero-summary {
    font-size: 0.92rem;
    line-height: 1.64;
  }

  .hero-compact .chip-row {
    margin-top: 14px;
    gap: 8px;
  }

  .hero-compact .chip {
    font-size: 0.8rem;
  }

  .hero-compact .hero-actions {
    margin-top: 16px;
  }

  .hero-compact .hero-stats {
    padding: 10px;
    gap: 8px;
  }

  .hero-compact .stat-card {
    padding: 12px;
  }

  .language-switcher {
    gap: 4px;
  }

  .lang-link {
    min-width: 34px;
    padding: 7px 0;
    font-size: 0.66rem;
    text-align: center;
    justify-content: center;
  }

  .floating-actions {
    left: 16px;
    right: 16px;
    bottom: 14px;
  }

  .floating-actions .button {
    flex: 1 1 0;
    justify-content: center;
  }
}

@media (max-width: 560px) {
  .header-bar {
    gap: 6px;
    min-height: 82px;
  }

  .brand-mobile-copy {
    font-size: 0.74rem;
    max-width: min(22ch, calc(100vw - 160px));
  }

  .language-switcher {
    gap: 2px;
  }

  .lang-link {
    min-width: 30px;
    padding: 7px 0;
    font-size: 0.6rem;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .main-nav {
    padding: 12px;
    border-radius: 20px;
  }

  .main-nav .nav-link {
    padding: 13px 14px;
  }
}

@media (max-width: 480px) {
  .brand-mobile-lockup {
    gap: 5px;
  }

  .brand-mobile-copy {
    display: block;
    max-width: min(22ch, calc(100vw - 154px));
    font-size: 0.72rem;
  }

  .brand-logo-icon {
    width: 34px;
    height: 34px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
