:root {
  --bg: #f3ead8;
  --paper: #fbf4e5;
  --paper-soft: #fffaf0;
  --paper-deep: #ead9b9;
  --ink: #1e2942;
  --ink-soft: #495064;
  --gold: #a77b34;
  --gold-soft: rgba(167, 123, 52, 0.18);
  --navy: #1c2b46;
  --navy-deep: #111d34;
  --line: rgba(83, 62, 32, 0.16);
  --shadow: 0 16px 34px rgba(52, 37, 18, 0.08);
  --shadow-soft: 0 10px 24px rgba(52, 37, 18, 0.06);
  --container: 1440px;
  --radius-xl: 18px;
  --radius-lg: 8px;
  --radius-md: 6px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 255, 255, 0.74) 0%, rgba(255, 255, 255, 0) 26%),
    radial-gradient(circle at 82% 14%, rgba(181, 133, 58, 0.12) 0%, rgba(181, 133, 58, 0) 24%),
    radial-gradient(circle at 28% 74%, rgba(116, 84, 38, 0.08) 0%, rgba(116, 84, 38, 0) 28%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.24) 0%, rgba(217, 193, 150, 0.2) 42%, rgba(255, 255, 255, 0.16) 100%),
    linear-gradient(180deg, #fbf4e5 0%, #f2e6d2 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(98deg, rgba(122, 91, 44, 0.055) 0 1px, transparent 1px 16px),
    repeating-linear-gradient(8deg, rgba(255, 255, 255, 0.34) 0 1px, transparent 1px 24px),
    radial-gradient(circle at 20% 30%, rgba(167, 123, 52, 0.08) 0 1px, transparent 1px),
    radial-gradient(circle at 70% 60%, rgba(30, 41, 66, 0.045) 0 1px, transparent 1px);
  background-size: 240px 240px, 180px 180px, 26px 26px, 34px 34px;
  opacity: 0.34;
  mix-blend-mode: multiply;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 300px 300px;
  mix-blend-mode: multiply;
  opacity: 0.12;
}

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

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

.container {
  width: min(calc(100% - 72px), var(--container));
  margin: 0 auto;
  min-width: 0;
}

.site-header {
  position: relative;
  z-index: 5;
  padding: 28px 0 24px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 18px;
}

.brand-mark {
  width: 78px;
  flex: 0 0 auto;
}

.brand-copy {
  display: flex;
  align-items: center;
  gap: 26px;
}

.brand-name {
  font-family: "Cormorant Garamond", "Noto Serif JP", serif;
  font-size: clamp(52px, 4.2vw, 74px);
  line-height: 0.9;
  letter-spacing: 0.02em;
}

.brand-tag {
  padding-left: 22px;
  border-left: 1px solid rgba(30, 41, 66, 0.12);
  font-family: "Noto Sans JP", "Yu Gothic", sans-serif;
  font-size: 13px;
  line-height: 1.8;
  color: var(--ink-soft);
}

.global-nav {
  display: flex;
  align-items: stretch;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 6px 12px;
  text-align: left;
}

.nav-en {
  font-family: "Cormorant Garamond", "Noto Serif JP", serif;
  font-size: 28px;
  line-height: 1;
}

.nav-ja {
  font-family: "Noto Sans JP", "Yu Gothic", sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
}

.nav-item:hover .nav-en,
.nav-item:focus-visible .nav-en {
  color: var(--gold);
}

.nav-item-disabled {
  opacity: 0.58;
  cursor: default;
}

.hero-section {
  position: relative;
  padding: 0 0 74px;
}

.hero-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 110px;
  background: linear-gradient(to top, var(--bg) 0%, transparent 100%);
  pointer-events: none;
  z-index: 3;
}

.hero-surface {
  display: grid;
  grid-template-columns: minmax(340px, 0.42fr) minmax(0, 0.58fr);
  align-items: stretch;
  min-height: 860px;
  min-width: 0;
}

.hero-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 84px 110px;
  overflow: hidden;
  min-width: 0;
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 255, 255, 0.42) 0%, rgba(255, 255, 255, 0) 26%),
    linear-gradient(90deg, rgba(251, 244, 229, 0.98) 0%, rgba(247, 237, 216, 0.95) 64%, rgba(247, 237, 216, 0.74) 86%, rgba(247, 237, 216, 0) 100%),
    repeating-linear-gradient(102deg, rgba(122, 91, 44, 0.045) 0 1px, transparent 1px 18px);
}

.hero-ink {
  position: absolute;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: contain;
}

.hero-ink-top {
  top: -40px;
  left: -60px;
  width: 380px;
  height: 320px;
  opacity: 0.55;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 380 320' fill='none'%3E%3Cdefs%3E%3ClinearGradient id='g1' x1='0' y1='0' x2='1' y2='1'%3E%3Cstop offset='0' stop-color='%23d8b67a' stop-opacity='0.55'/%3E%3Cstop offset='1' stop-color='%23d8b67a' stop-opacity='0'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath d='M-10 30 C 90 -30, 180 80, 260 30 C 320 -10, 360 60, 380 110 L 380 0 L -10 0 Z' fill='url(%23g1)'/%3E%3Cpath d='M0 120 C 80 80, 160 160, 240 120 C 300 90, 360 150, 380 180' stroke='%23c3a56a' stroke-opacity='0.45' stroke-width='1.4' fill='none'/%3E%3Cpath d='M-20 200 C 60 170, 140 230, 220 200' stroke='%23c3a56a' stroke-opacity='0.28' stroke-width='1' fill='none'/%3E%3C/svg%3E");
}

.hero-ink-bottom {
  left: -50px;
  right: 18%;
  bottom: -20px;
  height: 260px;
  opacity: 0.95;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 900 260' preserveAspectRatio='none' fill='none'%3E%3Cdefs%3E%3ClinearGradient id='gw' x1='0' y1='0' x2='1' y2='0'%3E%3Cstop offset='0' stop-color='%23c3a56a' stop-opacity='0.55'/%3E%3Cstop offset='0.5' stop-color='%23d6b87a' stop-opacity='0.7'/%3E%3Cstop offset='1' stop-color='%23c3a56a' stop-opacity='0'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath d='M-40 220 C 120 200, 200 110, 320 110 C 410 110, 470 170, 560 170 C 650 170, 700 100, 800 100 C 870 100, 920 140, 940 150 L 940 260 L -40 260 Z' fill='url(%23gw)' opacity='0.18'/%3E%3Cpath d='M-20 178 C 122 177, 116 108, 224 108 C 294 108, 341 160, 412 160 C 490 160, 519 88, 617 88 C 714 88, 742 150, 913 144' stroke='%23b88c43' stroke-opacity='0.55' stroke-width='3' fill='none'/%3E%3Cpath d='M-40 228 C 102 227, 138 182, 244 182 C 325 182, 366 215, 453 215 C 542 215, 582 164, 670 164 C 760 164, 809 212, 930 212' stroke='%23b88c43' stroke-opacity='0.32' stroke-width='2.4' fill='none'/%3E%3Cpath d='M14 244 C 140 244, 164 209, 253 209 C 337 209, 383 241, 452 241 C 552 241, 610 198, 687 198' stroke='%23b88c43' stroke-opacity='0.22' stroke-width='2.2' fill='none'/%3E%3C/svg%3E");
}

.hero-copy h1 {
  position: relative;
  margin: 0 0 28px;
  font-size: clamp(72px, 6vw, 110px);
  line-height: 1.16;
  letter-spacing: 0.01em;
  overflow-wrap: anywhere;
}

.hero-lead {
  position: relative;
  margin: 0 0 44px;
  font-size: clamp(24px, 1.8vw, 31px);
  line-height: 2;
  color: var(--ink-soft);
}

.hero-button,
.section-button,
.cta-button,
.footer-button,
.card-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-family: "Noto Sans JP", "Yu Gothic", sans-serif;
  font-size: 18px;
  font-weight: 500;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.hero-button:hover,
.hero-button:focus-visible,
.section-button:hover,
.section-button:focus-visible,
.cta-button:hover,
.cta-button:focus-visible,
.footer-button:hover,
.footer-button:focus-visible,
.card-link:hover,
.card-link:focus-visible {
  transform: translateY(-2px);
}

.hero-button {
  position: relative;
  overflow: hidden;
  width: fit-content;
  min-width: 238px;
  padding: 20px 26px;
  color: #fff8ec;
  border: 1px solid rgba(196, 153, 76, 0.64);
  background:
    linear-gradient(135deg, rgba(255, 246, 224, 0.06) 0%, rgba(255, 246, 224, 0) 38%),
    repeating-linear-gradient(100deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 16px),
    linear-gradient(135deg, #16243c 0%, var(--navy-deep) 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 246, 224, 0.08),
    0 12px 24px rgba(28, 43, 70, 0.13);
}

.hero-visual {
  position: relative;
  overflow: hidden;
}

.hero-visual::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 36%;
  background: linear-gradient(90deg, var(--paper) 0%, rgba(251, 244, 229, 0.96) 18%, rgba(251, 244, 229, 0) 100%);
  z-index: 1;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(251, 244, 229, 0.18) 0%, rgba(251, 244, 229, 0.28) 100%),
    repeating-linear-gradient(104deg, rgba(255, 248, 236, 0.12) 0 1px, transparent 1px 20px),
    linear-gradient(180deg, rgba(19, 27, 45, 0.01) 0%, rgba(19, 27, 45, 0.14) 100%);
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) sepia(0.08) contrast(0.95);
}

.hero-visual picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-vertical {
  position: absolute;
  top: 94px;
  right: 22px;
  z-index: 2;
  margin: 0;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 32px;
  line-height: 1.7;
  letter-spacing: 0.2em;
  color: rgba(253, 250, 244, 0.94);
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.28);
}

.hero-vertical::after {
  content: "";
  display: block;
  width: 1px;
  height: 104px;
  margin: 18px auto 0;
  background: rgba(253, 250, 244, 0.8);
}

.strength-section,
.activity-section {
  padding: 0 0 82px;
}

.ornament-title,
.section-center-title {
  text-align: center;
}

.ornament-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 0 0 48px;
  font-size: 20px;
  letter-spacing: 0.08em;
}

.ornament-title::before,
.ornament-title::after {
  content: "";
  width: 146px;
  height: 1px;
  background: linear-gradient(90deg, rgba(30, 41, 66, 0), rgba(30, 41, 66, 0.4), rgba(30, 41, 66, 0));
}

.ornament-title strong {
  font-family: "Cormorant Garamond", "Noto Serif JP", serif;
  font-size: 56px;
  line-height: 1;
  color: var(--gold);
  font-weight: 600;
}

.strength-grid,
.activity-grid,
.cta-band-grid {
  display: grid;
  gap: 26px;
}

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

.strength-card,
.activity-card {
  position: relative;
  overflow: hidden;
  min-width: 0;
  border: 1px solid rgba(151, 111, 52, 0.22);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.48) 0%, rgba(255, 255, 255, 0) 28%),
    repeating-linear-gradient(100deg, rgba(128, 91, 39, 0.04) 0 1px, transparent 1px 18px),
    linear-gradient(180deg, var(--paper-soft) 0%, var(--paper) 100%);
  box-shadow: var(--shadow);
}

.strength-card::before,
.activity-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 80% 12%, rgba(167, 123, 52, 0.08) 0 1px, transparent 1px),
    radial-gradient(circle at 18% 76%, rgba(73, 55, 29, 0.05) 0 1px, transparent 1px);
  background-size: 24px 24px, 32px 32px;
  opacity: 0.72;
  mix-blend-mode: multiply;
}

.strength-card {
  min-height: 420px;
  padding: 38px 34px 42px;
}

.strength-card > *,
.activity-body {
  position: relative;
  z-index: 1;
}

.strength-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 74px;
  margin-bottom: 26px;
  border-radius: 999px;
  background:
    repeating-linear-gradient(100deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 16px),
    var(--navy);
}

.strength-icon img {
  width: 32px;
  height: 32px;
  filter: brightness(0) invert(1);
}

.strength-card h2 {
  margin: 0;
  font-size: 34px;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.strength-line {
  width: 88px;
  height: 3px;
  margin: 20px 0 20px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(167, 123, 52, 0.12), rgba(167, 123, 52, 0.82), rgba(167, 123, 52, 0.12));
}

.strength-card p {
  margin: 0;
  font-size: 19px;
  line-height: 2;
  color: var(--ink-soft);
  overflow-wrap: anywhere;
}

.strength-number {
  position: absolute;
  right: 20px;
  bottom: 8px;
  font-family: "Cormorant Garamond", serif;
  font-size: 96px;
  line-height: 1;
  color: rgba(167, 123, 52, 0.2);
}

.section-center-title {
  position: relative;
  width: fit-content;
  margin: 0 auto 44px;
  padding-bottom: 18px;
  font-size: 44px;
  font-weight: 500;
}

.section-center-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 76px;
  height: 3px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(167, 123, 52, 0.16), rgba(167, 123, 52, 0.86), rgba(167, 123, 52, 0.16));
}

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

.activity-card {
  display: flex;
  flex-direction: column;
}

.activity-visual {
  position: relative;
  min-height: 336px;
  overflow: hidden;
  background: #eadbc4;
}

.activity-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(251, 244, 229, 0.2) 0%, rgba(251, 244, 229, 0.34) 100%),
    repeating-linear-gradient(96deg, rgba(255, 248, 236, 0.11) 0 1px, transparent 1px 18px);
  mix-blend-mode: soft-light;
}

.activity-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) sepia(0.1) contrast(0.96);
}

.activity-visual-night::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(5, 7, 14, 0.1) 0%, rgba(5, 7, 14, 0.36) 70%, rgba(5, 7, 14, 0) 100%);
}

.activity-visual-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 72px;
  background: linear-gradient(to top, var(--paper) 0%, transparent 100%);
  pointer-events: none;
  z-index: 4;
}

.activity-overlay-title {
  position: absolute;
  left: 24px;
  top: 26px;
  z-index: 5;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 54px;
  line-height: 1.14;
  letter-spacing: 0.12em;
  color: rgba(255, 248, 236, 0.98);
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.35);
}

.activity-visual-podcast {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(135deg, rgba(16, 26, 45, 0.9) 0%, rgba(47, 33, 15, 0.42) 100%),
    radial-gradient(circle at 65% 24%, rgba(255, 220, 166, 0.32) 0%, rgba(255, 220, 166, 0) 22%),
    url("./assets/20260427_templace-hero-ai-1200.jpg") center center / cover;
}

.podcast-visual-inner {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
  color: rgba(255, 248, 236, 0.98);
}

.podcast-visual-inner img {
  width: 52px;
  height: 52px;
  filter: brightness(0) invert(1);
}

.podcast-visual-title {
  font-family: "Cormorant Garamond", "Noto Serif JP", serif;
  font-size: 54px;
  line-height: 1.08;
}

.podcast-visual-status {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 248, 236, 0.42);
  font-family: "Noto Sans JP", "Yu Gothic", sans-serif;
  font-size: 15px;
  letter-spacing: 0.12em;
}

.activity-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 24px 26px 28px;
}

.activity-body h3 {
  margin: 0 0 12px;
  font-size: 48px;
  font-weight: 500;
  overflow-wrap: anywhere;
}

.activity-body p {
  margin: 0 0 22px;
  font-size: 18px;
  line-height: 1.95;
  color: var(--ink-soft);
  overflow-wrap: anywhere;
}

.card-link {
  width: fit-content;
  margin-top: auto;
  color: var(--gold);
  text-shadow: 0 0 1px rgba(255, 250, 232, 0.28);
}

.card-link.is-disabled {
  color: rgba(30, 41, 66, 0.42);
  cursor: default;
  transform: none;
}

.activity-actions {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.section-button {
  overflow: hidden;
  min-width: 396px;
  padding: 20px 30px;
  color: #fff8ec;
  border: 1px solid rgba(196, 153, 76, 0.6);
  background:
    linear-gradient(135deg, rgba(255, 246, 224, 0.055) 0%, rgba(255, 246, 224, 0) 44%),
    repeating-linear-gradient(100deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 16px),
    linear-gradient(135deg, #16243c 0%, var(--navy-deep) 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 246, 224, 0.08),
    0 12px 24px rgba(28, 43, 70, 0.12);
}

.section-button-secondary {
  color: var(--ink);
  border-color: rgba(151, 111, 52, 0.32);
  background: rgba(255, 250, 240, 0.72);
  box-shadow: none;
}

.section-button-secondary:hover,
.section-button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.94);
}

.collab-banner {
  padding: 20px 0 32px;
}

.collab-banner-inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 36px;
  padding: 36px 44px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 10% 18%, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 26%),
    repeating-linear-gradient(100deg, rgba(128, 91, 39, 0.04) 0 1px, transparent 1px 18px),
    linear-gradient(135deg, rgba(167, 123, 52, 0.12) 0%, rgba(167, 123, 52, 0.04) 100%),
    var(--paper);
  border: 1px solid rgba(151, 111, 52, 0.3);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.collab-banner-inner::after {
  content: "";
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 260px;
  height: 200px;
  pointer-events: none;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 260 200' fill='none'%3E%3Cpath d='M40 130 C 60 110, 90 110, 110 130 C 100 150, 60 150, 40 130 Z' stroke='%23b88c43' stroke-opacity='0.55' stroke-width='1.5'/%3E%3Cpath d='M120 90 C 140 70, 170 70, 190 90 C 180 110, 140 110, 120 90 Z' stroke='%23b88c43' stroke-opacity='0.45' stroke-width='1.2'/%3E%3Cpath d='M180 150 C 200 130, 230 130, 250 150 C 240 170, 200 170, 180 150 Z' stroke='%23b88c43' stroke-opacity='0.35' stroke-width='1.2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

.collab-banner-copy {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
}

.collab-banner-eyebrow {
  display: inline-block;
  margin-bottom: 8px;
  font-family: "Cormorant Garamond", "Noto Serif JP", serif;
  font-size: 18px;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
}

.collab-banner-copy h2 {
  margin: 0 0 10px;
  font-size: 30px;
  font-weight: 600;
  color: var(--ink);
}

.collab-banner-copy p {
  margin: 0;
  font-size: 16px;
  line-height: 1.95;
  color: var(--ink-soft);
}

.collab-banner-copy strong {
  color: var(--gold);
  font-weight: 700;
}

.collab-banner-button {
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex: 0 0 auto;
  min-width: 246px;
  padding: 18px 24px;
  font-family: "Noto Sans JP", "Yu Gothic", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #fff8ec;
  border: 1px solid rgba(196, 153, 76, 0.58);
  background:
    linear-gradient(135deg, rgba(255, 246, 224, 0.055) 0%, rgba(255, 246, 224, 0) 44%),
    repeating-linear-gradient(100deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 16px),
    linear-gradient(135deg, #16243c 0%, var(--navy-deep) 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 246, 224, 0.08),
    0 10px 22px rgba(28, 43, 70, 0.14);
  transition: transform 180ms ease;
}

.collab-banner-button:hover,
.collab-banner-button:focus-visible {
  transform: translateY(-2px);
}

.cta-band {
  padding: 10px 0 0;
}

.cta-band-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  border-radius: 0;
}

.cta-panel {
  display: flex;
  gap: 26px;
  min-height: 292px;
  padding: 50px 42px;
  position: relative;
  overflow: hidden;
}

.cta-panel-instagram {
  background:
    repeating-linear-gradient(100deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 18px),
    linear-gradient(135deg, rgba(21, 33, 57, 0.97) 0%, rgba(23, 34, 56, 0.96) 100%);
  color: #fff8ec;
}

.cta-panel-podcast {
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 255, 255, 0.42) 0%, rgba(255, 255, 255, 0) 28%),
    repeating-linear-gradient(98deg, rgba(128, 91, 39, 0.05) 0 1px, transparent 1px 18px),
    linear-gradient(180deg, #e3d1ab 0%, #cdb584 100%);
  color: var(--ink);
}

.cta-panel-decor {
  position: absolute;
  pointer-events: none;
}

.cta-panel-decor-instagram {
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 280' fill='none'%3E%3Cg stroke='%23c9a665' stroke-opacity='0.55' stroke-width='1.2' fill='none' stroke-linecap='round'%3E%3Cpath d='M380 60 C 410 40, 460 40, 490 60 C 480 80, 420 80, 380 60 Z'/%3E%3Cpath d='M430 60 C 445 50, 470 50, 480 60' /%3E%3Cpath d='M450 110 C 480 90, 540 90, 570 110 C 560 130, 500 130, 450 110 Z'/%3E%3Cpath d='M500 110 C 515 100, 545 100, 555 110' /%3E%3Cpath d='M360 170 C 390 150, 460 150, 490 170 C 480 190, 410 190, 360 170 Z'/%3E%3Cpath d='M410 170 C 430 160, 460 160, 470 170' /%3E%3Cpath d='M460 230 C 490 210, 560 210, 590 230 C 580 250, 510 250, 460 230 Z'/%3E%3Cpath d='M510 230 C 525 220, 555 220, 565 230' /%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right -10px center;
  background-size: auto 100%;
  opacity: 0.85;
}

.cta-panel-decor-podcast {
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 280' fill='none'%3E%3Cg stroke='%23a07a3a' stroke-opacity='0.55' stroke-width='1.4' fill='none' stroke-linecap='round'%3E%3Cpath d='M340 70 C 365 55, 405 55, 430 70 C 420 88, 360 88, 340 70 Z'/%3E%3Cpath d='M380 70 C 395 62, 415 62, 425 70' /%3E%3Cpath d='M430 130 C 460 110, 520 110, 555 130 C 540 152, 470 152, 430 130 Z'/%3E%3Cpath d='M480 130 C 495 120, 525 120, 540 130' /%3E%3C/g%3E%3Cg fill='%23a07a3a' fill-opacity='0.32'%3E%3Cpath d='M450 250 L 450 200 L 470 175 L 530 175 L 550 200 L 550 250 Z'/%3E%3Cpath d='M460 175 L 510 145 L 540 175 Z'/%3E%3Cpath d='M495 145 L 495 130' stroke='%23a07a3a' stroke-opacity='0.6' stroke-width='2'/%3E%3Crect x='487' y='118' width='16' height='12' rx='2'/%3E%3C/g%3E%3Cg stroke='%23a07a3a' stroke-opacity='0.45' stroke-width='1' fill='none'%3E%3Cpath d='M450 215 H 550' /%3E%3Cpath d='M455 230 H 545' /%3E%3Cpath d='M462 245 H 538' /%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right -20px bottom -10px;
  background-size: 70% auto;
  opacity: 0.95;
}

.cta-icon-wrap {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 74px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  flex: 0 0 auto;
}

.cta-icon-wrap svg {
  width: 36px;
  height: 36px;
}

.cta-icon-instagram {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.cta-icon-podcast {
  color: #4a3617;
  border-color: rgba(74, 54, 23, 0.32);
  background: rgba(255, 255, 255, 0.18);
}

.cta-button.is-disabled {
  opacity: 0.65;
  cursor: default;
}

.cta-button.is-disabled:hover {
  transform: none;
}

.cta-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}

.cta-content h3 {
  margin: 0 0 16px;
  font-size: 48px;
  font-weight: 500;
}

.cta-content p {
  margin: 0 0 28px;
  font-size: 19px;
  line-height: 1.95;
}

.cta-panel-instagram p {
  color: rgba(255, 255, 255, 0.84);
}

.cta-panel-podcast p {
  color: rgba(58, 42, 16, 0.85);
}

.cta-button {
  overflow: hidden;
  min-width: 282px;
  padding: 18px 22px;
  border: 1px solid transparent;
}

.cta-button-outline {
  border-color: rgba(196, 153, 76, 0.58);
  color: #fff8ec;
  background:
    repeating-linear-gradient(100deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 16px),
    rgba(17, 29, 52, 0.28);
  box-shadow: inset 0 0 0 1px rgba(255, 246, 224, 0.08);
}

.cta-button-light {
  color: #4a3617;
  border-color: rgba(139, 97, 39, 0.38);
  background:
    repeating-linear-gradient(100deg, rgba(128, 91, 39, 0.035) 0 1px, transparent 1px 16px),
    rgba(255, 250, 232, 0.5);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.site-footer {
  position: relative;
  margin-top: 0;
  padding: 54px 0 26px;
  color: #fff8ec;
  background:
    repeating-linear-gradient(100deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 18px),
    linear-gradient(180deg, #182844 0%, #101a2f 100%);
}

.footer-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr 0.8fr;
  gap: 40px;
  padding-bottom: 28px;
}

.footer-ornament {
  position: absolute;
  right: 10px;
  bottom: 0;
  width: 220px;
  opacity: 0.12;
  pointer-events: none;
}

.footer-ornament img {
  width: 100%;
  filter: brightness(0) invert(1);
}

.footer-column {
  position: relative;
  z-index: 1;
}

.footer-column h4 {
  margin: 0 0 18px;
  font-family: "Cormorant Garamond", "Noto Serif JP", serif;
  font-size: 34px;
  font-weight: 600;
}

.footer-column p,
.footer-list,
.footer-social-link,
.footer-muted,
.footer-email {
  font-family: "Noto Sans JP", "Yu Gothic", sans-serif;
  font-size: 15px;
  line-height: 2;
  color: rgba(255, 255, 255, 0.82);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.footer-brand img {
  width: 64px;
  filter: brightness(0) invert(1);
}

.footer-brand span {
  font-family: "Cormorant Garamond", "Noto Serif JP", serif;
  font-size: 56px;
  line-height: 1;
}

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

.footer-list a:hover,
.footer-list a:focus-visible,
.footer-social-link:hover,
.footer-social-link:focus-visible {
  color: #fff;
}

.footer-button {
  overflow: hidden;
  min-width: 246px;
  padding: 16px 22px;
  color: #fff8ec;
  border: 1px solid rgba(196, 153, 76, 0.46);
  background:
    repeating-linear-gradient(100deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 16px),
    rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 0 0 1px rgba(255, 246, 224, 0.06);
}

.footer-follow {
  display: flex;
  flex-direction: column;
}

.footer-social-link {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 6px;
}

.footer-muted {
  color: rgba(255, 255, 255, 0.52);
}

.footer-email {
  margin-top: 10px;
}

.copyright {
  margin: 0;
  padding-top: 20px;
  text-align: center;
  font-family: "Noto Sans JP", "Yu Gothic", sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.48);
}

.subpage-main {
  padding: 28px 0 82px;
}

.subpage-hero {
  position: relative;
  overflow: hidden;
  margin-bottom: 36px;
  padding: 72px 64px;
  border: 1px solid rgba(151, 111, 52, 0.24);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 28%),
    repeating-linear-gradient(100deg, rgba(128, 91, 39, 0.04) 0 1px, transparent 1px 18px),
    linear-gradient(135deg, rgba(251, 244, 229, 0.98) 0%, rgba(234, 217, 185, 0.88) 100%);
  box-shadow: var(--shadow-soft);
}

.subpage-hero::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -100px;
  width: 420px;
  height: 320px;
  pointer-events: none;
  opacity: 0.34;
  background: url("./assets/Templace_Lucide_100icons/place/landmark.svg") center / contain no-repeat;
  filter: sepia(1) saturate(0.7) opacity(0.8);
}

.subpage-eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  font-family: "Cormorant Garamond", "Noto Serif JP", serif;
  font-size: 22px;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
}

.subpage-hero h1 {
  position: relative;
  z-index: 1;
  margin: 0 0 22px;
  font-size: clamp(48px, 5vw, 76px);
  line-height: 1.22;
  overflow-wrap: anywhere;
}

.subpage-lead {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0;
  font-size: 21px;
  line-height: 2;
  color: var(--ink-soft);
  overflow-wrap: anywhere;
}

.content-grid,
.article-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.content-panel,
.article-panel {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border: 1px solid rgba(151, 111, 52, 0.22);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.48) 0%, rgba(255, 255, 255, 0) 28%),
    repeating-linear-gradient(100deg, rgba(128, 91, 39, 0.04) 0 1px, transparent 1px 18px),
    linear-gradient(180deg, var(--paper-soft) 0%, var(--paper) 100%);
  box-shadow: var(--shadow-soft);
}

.content-panel-wide {
  grid-column: 1 / -1;
}

.content-panel h2,
.article-panel h2 {
  margin: 0 0 14px;
  font-size: 34px;
  line-height: 1.45;
}

.content-panel h3,
.article-panel h3 {
  margin: 0 0 12px;
  font-size: 26px;
  line-height: 1.55;
}

.content-panel p,
.article-panel p,
.content-list,
.timeline-list {
  margin: 0;
  font-size: 17px;
  line-height: 2;
  color: var(--ink-soft);
  overflow-wrap: anywhere;
}

.content-list,
.timeline-list {
  padding-left: 1.2em;
}

.content-list li + li,
.timeline-list li + li {
  margin-top: 8px;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.metric-item {
  padding: 20px;
  border: 1px solid rgba(151, 111, 52, 0.18);
  border-radius: var(--radius-md);
  background: rgba(255, 250, 240, 0.52);
}

.metric-item strong {
  display: block;
  margin-bottom: 6px;
  font-size: 28px;
  color: var(--gold);
}

.metric-item span {
  display: block;
  font-family: "Noto Sans JP", "Yu Gothic", sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-soft);
}

.article-panel {
  display: flex;
  flex-direction: column;
  min-height: 260px;
  padding: 0;
}

.article-panel-media {
  position: relative;
  display: flex;
  min-height: 240px;
  align-items: flex-end;
  padding: 22px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.64) 100%),
    var(--article-card-image, image-set(url("./assets/images/site-heroes/articles-hero-1800.webp") type("image/webp"), url("./assets/images/site-heroes/articles-hero.jpg") type("image/jpeg"))) center center / cover;
}

.article-panel-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(143, 106, 48, 0.22) 0 1px, transparent 1px 22px);
  opacity: 0.7;
}

.article-panel-media span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  font-family: "Noto Sans JP", "Yu Gothic", sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
}

.article-panel-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 30px;
}

.article-panel-body p {
  margin-bottom: 32px;
}

.article-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
  font-family: "Noto Sans JP", "Yu Gothic", sans-serif;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--gold);
}

.article-status {
  display: inline-flex;
  width: fit-content;
  margin-top: auto;
  margin-left: auto;
  padding: 8px 12px;
  border: 1px solid rgba(151, 111, 52, 0.24);
  border-radius: 999px;
  font-family: "Noto Sans JP", "Yu Gothic", sans-serif;
  font-size: 13px;
  color: var(--ink-soft);
}

.article-detail-container {
  max-width: 980px;
}

.article-detail {
  padding: 56px;
  border: 1px solid rgba(151, 111, 52, 0.22);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.48) 0%, rgba(255, 255, 255, 0) 28%),
    repeating-linear-gradient(100deg, rgba(128, 91, 39, 0.04) 0 1px, transparent 1px 18px),
    linear-gradient(180deg, var(--paper-soft) 0%, var(--paper) 100%);
  box-shadow: var(--shadow-soft);
}

.article-back-link {
  display: inline-flex;
  margin-bottom: 26px;
  font-family: "Noto Sans JP", "Yu Gothic", sans-serif;
  font-size: 14px;
  color: var(--gold);
}

.article-detail-header {
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(151, 111, 52, 0.2);
}

.article-detail-header h1 {
  margin: 0 0 20px;
  font-size: clamp(42px, 4.8vw, 70px);
  line-height: 1.28;
  overflow-wrap: anywhere;
}

.article-detail-header p {
  margin: 0;
  font-size: 19px;
  line-height: 2;
  color: var(--ink-soft);
}

.article-detail-body {
  font-size: 18px;
  line-height: 2.1;
  color: var(--ink-soft);
}

.article-detail-body h2 {
  margin: 46px 0 18px;
  font-size: 34px;
  line-height: 1.45;
  color: var(--ink);
}

.article-detail-body h3 {
  margin: 34px 0 14px;
  font-size: 26px;
  line-height: 1.55;
  color: var(--ink);
}

.article-detail-body p,
.article-detail-body ul,
.article-detail-body ol,
.article-detail-body blockquote {
  margin: 0 0 24px;
}

.article-detail-body ul,
.article-detail-body ol {
  padding-left: 1.35em;
}

.article-detail-body li + li {
  margin-top: 8px;
}

.article-detail-body a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.article-detail-body code {
  padding: 0.1em 0.35em;
  border-radius: 4px;
  background: rgba(151, 111, 52, 0.12);
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.92em;
}

.article-detail-body blockquote {
  padding: 18px 22px;
  border-left: 4px solid var(--gold);
  background: rgba(255, 250, 240, 0.64);
}

.article-detail-footer {
  display: grid;
  gap: 24px;
  margin-top: 42px;
  padding-top: 28px;
  border-top: 1px solid rgba(151, 111, 52, 0.2);
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.article-tags span {
  display: inline-flex;
  padding: 8px 12px;
  border: 1px solid rgba(151, 111, 52, 0.24);
  border-radius: 999px;
  font-family: "Noto Sans JP", "Yu Gothic", sans-serif;
  font-size: 13px;
  color: var(--ink-soft);
}

.subpage-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

@media (max-width: 1320px) {
  .brand-copy {
    gap: 20px;
  }

  .brand-name {
    font-size: clamp(46px, 4vw, 64px);
  }

  .nav-en {
    font-size: 24px;
  }

  .hero-copy {
    padding-inline: 62px;
  }

  .strength-card h2,
  .activity-body h3,
  .cta-content h3 {
    font-size: 38px;
  }
}

@media (max-width: 1180px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .global-nav {
    justify-content: flex-start;
  }

  .hero-surface,
  .strength-grid,
  .activity-grid,
  .content-grid,
  .article-grid,
  .cta-band-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero-surface {
    min-height: 0;
  }

  .hero-copy {
    padding: 86px 42px 70px;
  }

  .hero-copy::after {
    right: 0;
  }

  .hero-visual {
    min-height: 620px;
  }

  .hero-vertical {
    top: auto;
    bottom: 22px;
    right: 22px;
    writing-mode: horizontal-tb;
    letter-spacing: 0.08em;
    font-size: 22px;
  }

  .hero-vertical::after {
    width: 86px;
    height: 1px;
    margin: 10px 0 0 auto;
  }

  .cta-panel {
    min-height: 0;
  }

  .footer-ornament {
    display: none;
  }

  .content-panel-wide {
    grid-column: auto;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 32px), 358px);
    margin-left: 16px;
    margin-right: auto;
  }

  .site-header {
    padding-top: 18px;
  }

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

  .brand-mark {
    width: 48px;
    height: 48px;
    margin-top: 0;
    object-fit: contain;
  }

  .brand-copy {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .brand-name {
    font-size: 54px;
    line-height: 0.92;
  }

  .brand-tag {
    padding-left: 0;
    border-left: 0;
  }

  .global-nav {
    width: 100%;
    gap: 10px 18px;
    justify-content: flex-start;
  }

  .nav-item {
    flex: 0 1 auto;
    padding: 4px 0;
  }

  .nav-en {
    font-size: 20px;
  }

  .hero-section {
    padding-bottom: 56px;
  }

  .hero-copy {
    padding: 58px 28px 54px;
  }

  .hero-copy h1 {
    font-size: 50px;
    line-height: 1.18;
  }

  .hero-lead {
    font-size: 18px;
  }

  .hero-button,
  .section-button,
  .cta-button,
  .footer-button {
    min-width: 0;
    width: 100%;
    font-size: 16px;
  }

  .hero-button {
    width: min(100%, 280px);
  }

  .hero-visual {
    min-height: 420px;
  }

  .hero-vertical {
    left: 22px;
    max-width: calc(100% - 44px);
    text-align: right;
  }

  .ornament-title {
    gap: 10px;
    font-size: 16px;
  }

  .ornament-title::before,
  .ornament-title::after {
    width: 56px;
  }

  .ornament-title strong {
    font-size: 42px;
  }

  .strength-card,
  .activity-body,
  .cta-panel,
  .footer-column {
    padding-right: 0;
  }

  .strength-card {
    min-height: 0;
    padding: 28px 24px 36px;
  }

  .strength-card h2,
  .section-center-title,
  .activity-body h3,
  .cta-content h3,
  .footer-column h4 {
    font-size: 32px;
  }

  .strength-card h2 {
    font-size: 28px;
  }

  .strength-card p,
  .activity-body p,
  .cta-content p {
    font-size: 16px;
  }

  .activity-visual {
    min-height: 260px;
  }

  .activity-overlay-title {
    font-size: 36px;
  }

  .podcast-visual-title {
    font-size: 40px;
  }

  .cta-panel {
    gap: 18px;
    padding: 34px 24px;
  }

  .cta-icon-wrap {
    width: 60px;
    height: 60px;
  }

  .footer-inner {
    gap: 28px;
  }

  .footer-brand span {
    font-size: 44px;
  }

  .subpage-main {
    padding-top: 12px;
  }

  .subpage-hero {
    padding: 46px 26px;
  }

  .subpage-hero h1 {
    font-size: 38px;
    overflow-wrap: anywhere;
  }

  .subpage-lead {
    font-size: 17px;
  }

  .content-panel,
  .article-panel {
    padding: 26px 22px;
  }

  .article-detail {
    padding: 34px 22px;
  }

  .content-panel h2,
  .article-panel h2 {
    font-size: 28px;
  }

  .article-detail-header h1 {
    font-size: 36px;
  }

  .article-detail-body {
    font-size: 16px;
  }

  .article-detail-body h2 {
    font-size: 28px;
  }

  .content-panel h3,
  .article-panel h3 {
    font-size: 23px;
  }

  .metric-row {
    grid-template-columns: 1fr;
  }
}

/* Modern editorial refresh */
:root {
  --bg: #ffffff;
  --paper: #ffffff;
  --paper-soft: #f7f7f4;
  --paper-deep: #e8e5dc;
  --ink: #151515;
  --ink-soft: #5a5c5f;
  --gold: #8f6a30;
  --gold-soft: rgba(143, 106, 48, 0.12);
  --navy: #202735;
  --navy-deep: #121722;
  --line: rgba(21, 21, 21, 0.12);
  --shadow: 0 24px 60px rgba(17, 24, 39, 0.08);
  --shadow-soft: 0 18px 42px rgba(17, 24, 39, 0.06);
  --container: 1240px;
  --radius-xl: 8px;
  --radius-lg: 8px;
  --radius-md: 6px;
}

body {
  background: #fff;
  color: var(--ink);
  font-family: "Noto Sans JP", "Yu Gothic", sans-serif;
}

body::before,
body::after,
.hero-ink,
.hero-section::after,
.strength-card::before,
.activity-card::before,
.collab-banner-inner::after,
.cta-panel-decor,
.subpage-hero::after,
.footer-ornament {
  display: none;
}

.container {
  width: min(calc(100% - 56px), var(--container));
}

.site-header {
  padding: 22px 0;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(21, 21, 21, 0.08);
}

.header-inner {
  align-items: center;
}

.brand-mark {
  width: 54px;
}

.brand-copy {
  gap: 18px;
}

.brand-name {
  font-size: clamp(42px, 4vw, 58px);
  letter-spacing: 0;
}

.brand-tag,
.nav-ja,
.content-panel p,
.article-panel p,
.content-list,
.timeline-list,
.activity-body p,
.strength-card p,
.subpage-lead,
.article-detail-body,
.article-detail-header p {
  font-family: "Noto Sans JP", "Yu Gothic", sans-serif;
}

.brand-tag {
  font-size: 12px;
  line-height: 1.7;
}

.global-nav {
  gap: 2px 10px;
}

.nav-item {
  padding: 8px 6px;
}

.nav-en {
  font-family: "Noto Sans JP", "Yu Gothic", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
}

.nav-ja {
  font-size: 10px;
  letter-spacing: 0.04em;
}

.hero-section {
  padding: 0 0 96px;
  background: #fff;
  overflow: hidden;
}

.hero-section .hero-surface {
  width: min(100vw, 1720px);
  margin-right: 0;
  margin-left: auto;
}

.hero-surface {
  grid-template-columns: minmax(390px, 0.46fr) minmax(0, 0.62fr);
  min-height: min(760px, calc(100vh - 110px));
}

.hero-copy {
  z-index: 2;
  justify-content: center;
  margin-right: -8vw;
  padding: 96px 10vw 96px max(40px, calc((100vw - var(--container)) / 2));
  background: linear-gradient(90deg, #fff 0%, #fff 62%, rgba(255, 255, 255, 0.86) 82%, rgba(255, 255, 255, 0) 100%);
}

.hero-copy h1 {
  max-width: 620px;
  margin-bottom: 28px;
  font-size: clamp(58px, 6.5vw, 108px);
  line-height: 1.08;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 520px;
  margin-bottom: 34px;
  font-size: clamp(18px, 1.55vw, 24px);
  line-height: 2;
  color: var(--ink-soft);
}

.hero-visual {
  min-height: 620px;
  margin-right: 0;
  background: #111;
}

.hero-visual::before {
  display: none;
}

.hero-visual::after {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(18, 23, 34, 0.04) 48%, rgba(18, 23, 34, 0.2) 100%);
  mix-blend-mode: normal;
}

.hero-visual img,
.activity-visual img {
  filter: none;
  transition: transform 700ms ease, filter 700ms ease;
}

.hero-visual:hover img,
.activity-card:hover .activity-visual img {
  transform: scale(1.03);
}

.hero-vertical {
  right: 34px;
  bottom: 34px;
  top: auto;
  writing-mode: horizontal-tb;
  font-family: "Noto Sans JP", "Yu Gothic", sans-serif;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.92);
}

.hero-vertical::after {
  width: 96px;
  height: 1px;
  margin: 12px 0 0 auto;
}

.hero-button,
.section-button,
.cta-button,
.footer-button,
.card-link,
.collab-banner-button {
  border-radius: 0;
  letter-spacing: 0;
}

.hero-button,
.section-button,
.collab-banner-button {
  color: #fff;
  border: 1px solid #061226;
  background: #061226;
  box-shadow: none;
}

.hero-button,
.section-button {
  min-width: 260px;
  padding: 17px 22px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-button-secondary {
  color: var(--ink);
  border: 1px solid rgba(21, 21, 21, 0.18);
  background: rgba(255, 255, 255, 0.86);
}

.section-button-secondary,
.cta-button-light {
  color: var(--ink);
  border: 1px solid rgba(21, 21, 21, 0.2);
  background: #fff;
}

.hero-button span:last-child,
.section-button span:last-child,
.cta-button span:last-child,
.footer-button span:last-child,
.card-link span:last-child,
.collab-banner-button span:last-child {
  transition: transform 180ms ease;
}

.hero-button:hover span:last-child,
.section-button:hover span:last-child,
.cta-button:hover span:last-child,
.footer-button:hover span:last-child,
.card-link:hover span:last-child,
.collab-banner-button:hover span:last-child {
  transform: translateX(4px);
}

.strength-section,
.activity-section {
  padding: 96px 0;
}

.home-accent-section {
  padding: 0 0 72px;
  background: #f7f7f4;
}

.strength-section,
.subpage-main {
  position: relative;
  background: #f7f7f4;
}

.strength-section::before,
.subpage-main::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(110deg, rgba(143, 106, 48, 0.06) 0 1px, transparent 1px 22px),
    radial-gradient(ellipse at 18% 8%, rgba(143, 106, 48, 0.11) 0%, rgba(143, 106, 48, 0) 34%),
    radial-gradient(ellipse at 86% 68%, rgba(21, 21, 21, 0.05) 0%, rgba(21, 21, 21, 0) 36%);
  opacity: 0.8;
}

.strength-section > .container,
.subpage-main > .container {
  position: relative;
  z-index: 1;
}

.activity-section,
.collab-banner,
.cta-band {
  background: #fff;
}

.ornament-title {
  justify-content: flex-start;
  gap: 12px;
  margin-bottom: 30px;
  text-align: left;
  font-family: "Noto Sans JP", "Yu Gothic", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
}

.ornament-title::before,
.ornament-title::after,
.section-center-title::after,
.strength-line {
  display: none;
}

.ornament-title strong {
  font-family: "Noto Sans JP", "Yu Gothic", sans-serif;
  font-size: 16px;
  color: var(--ink);
}

.section-center-title {
  width: 100%;
  margin: 0 0 34px;
  padding-bottom: 0;
  text-align: left;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.25;
}

.strength-grid,
.activity-grid,
.content-grid,
.article-grid {
  gap: 18px;
}

.strength-card,
.activity-card,
.content-panel,
.article-panel,
.article-detail,
.subpage-hero,
.collab-banner-inner {
  border: 1px solid rgba(21, 21, 21, 0.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: none;
}

.strength-card {
  min-height: 320px;
  padding: 30px;
  display: flex;
  flex-direction: column;
}

.strength-icon {
  display: none;
}

.strength-card h2 {
  max-width: 12em;
  min-height: 92px;
  font-size: clamp(25px, 2.2vw, 32px);
  line-height: 1.45;
}

.strength-card p {
  flex: 1 1 auto;
  font-size: 16px;
  line-height: 2;
}

.strength-number {
  right: 24px;
  bottom: 18px;
  font-family: "Cormorant Garamond", serif;
  font-size: 74px;
  color: rgba(21, 21, 21, 0.08);
}

.activity-card {
  overflow: hidden;
}

.activity-visual {
  min-height: 390px;
  background: #111;
}

.activity-visual::before,
.activity-visual-fade {
  display: none;
}

.activity-visual-night::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.45) 100%);
}

.activity-overlay-title,
.podcast-visual-title {
  font-size: clamp(36px, 4vw, 52px);
}

.activity-body {
  padding: 28px;
}

.activity-body h3 {
  font-size: clamp(28px, 3vw, 42px);
}

.card-link {
  color: var(--ink);
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
}

.collab-banner {
  padding: 28px 0 64px;
}

.collab-banner-inner {
  padding: 34px;
}

.collab-banner-copy h2 {
  font-size: clamp(26px, 3vw, 38px);
}

.cta-band {
  padding: 0;
}

.cta-band-grid {
  border-radius: 0;
  gap: 0;
}

.cta-panel {
  min-height: 260px;
  padding: 46px;
}

.cta-panel-instagram {
  background: #061226;
}

.cta-panel-podcast {
  background: #f0eee8;
}

.cta-icon-wrap {
  display: none;
}

.cta-content h3 {
  font-size: clamp(30px, 3.5vw, 44px);
}

.cta-content p {
  font-size: 16px;
}

.cta-button {
  min-width: 220px;
  padding: 15px 18px;
}

.cta-button-outline {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: transparent;
}

.site-footer {
  background: linear-gradient(180deg, #061226 0%, #101722 100%);
}

.subpage-main {
  padding: 42px 0 96px;
}

.subpage-hero {
  margin-bottom: 22px;
  padding: clamp(42px, 6vw, 78px);
}

.subpage-hero-media {
  isolation: isolate;
  display: flex;
  width: 100vw;
  min-height: clamp(420px, 56vw, 620px);
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: -42px;
  margin-bottom: 34px;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(42px, 7vw, 88px) max(28px, calc((100vw - var(--container)) / 2));
  overflow: hidden;
  color: #fff;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(6, 18, 38, 0.82) 0%, rgba(6, 18, 38, 0.56) 42%, rgba(6, 18, 38, 0.18) 100%),
    image-set(url("./assets/images/site-heroes/about-hero-1800.webp") type("image/webp"), url("./assets/images/site-heroes/about-hero.jpg") type("image/jpeg")) center center / cover;
  box-shadow: none;
}

.subpage-hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(143, 106, 48, 0.24) 0 1px, transparent 1px 24px),
    radial-gradient(ellipse at 84% 14%, rgba(255, 255, 255, 0.14) 0%, transparent 30%);
  opacity: 0.74;
}

.subpage-hero-activities {
  background:
    linear-gradient(90deg, rgba(6, 18, 38, 0.82) 0%, rgba(6, 18, 38, 0.5) 42%, rgba(6, 18, 38, 0.2) 100%),
    image-set(url("./assets/images/site-heroes/activities-hero-1800.webp") type("image/webp"), url("./assets/images/site-heroes/activities-hero.jpg") type("image/jpeg")) center center / cover;
}

.subpage-hero-temples {
  background:
    linear-gradient(90deg, rgba(6, 18, 38, 0.84) 0%, rgba(6, 18, 38, 0.55) 42%, rgba(6, 18, 38, 0.18) 100%),
    image-set(url("./assets/images/site-heroes/temple-support-hero-1800.webp") type("image/webp"), url("./assets/images/site-heroes/temple-support-hero.jpg") type("image/jpeg")) center center / cover;
}

.subpage-hero-articles {
  background:
    linear-gradient(90deg, rgba(6, 18, 38, 0.82) 0%, rgba(6, 18, 38, 0.54) 42%, rgba(6, 18, 38, 0.18) 100%),
    image-set(url("./assets/images/site-heroes/articles-hero-1800.webp") type("image/webp"), url("./assets/images/site-heroes/articles-hero.jpg") type("image/jpeg")) center center / cover;
}

.subpage-hero-media .subpage-eyebrow,
.subpage-hero-media h1,
.subpage-hero-media .subpage-lead {
  max-width: 780px;
  color: #fff;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.28);
}

.subpage-hero-media .subpage-eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.subpage-hero-media .subpage-lead {
  color: rgba(255, 255, 255, 0.88);
}

.hero-title-accent {
  color: var(--gold);
}

.editorial-accent {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(190px, 0.28fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: end;
  margin: 28px 0;
  padding: clamp(34px, 5vw, 58px);
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 24px),
    linear-gradient(120deg, #061226 0%, #172238 100%);
  color: #fff;
}

.editorial-accent::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold) 0%, rgba(255, 255, 255, 0.24) 100%);
}

.editorial-accent-copy {
  max-width: 820px;
}

.editorial-accent-kicker {
  display: inline-flex;
  margin-bottom: 18px;
  font-family: "Noto Sans JP", "Yu Gothic", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--gold);
}

.editorial-accent h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.38;
  color: #fff;
}

.editorial-accent p {
  margin: 20px 0 0;
  max-width: 780px;
  font-size: 18px;
  line-height: 2;
  color: rgba(255, 255, 255, 0.84);
}

.editorial-accent-visual {
  position: relative;
  align-self: stretch;
  min-height: 190px;
}

.editorial-accent-visual::before,
.editorial-accent-visual::after,
.accent-visual-line,
.accent-visual-panel,
.accent-visual-rule {
  content: "";
  position: absolute;
  display: block;
}

.editorial-accent-visual::before {
  inset: 0 18px 0 auto;
  width: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.editorial-accent-visual::after {
  right: 0;
  bottom: 18px;
  width: 72%;
  height: 1px;
  background: var(--gold);
}

.accent-visual-line {
  top: 0;
  right: 42px;
  width: 1px;
  height: 74%;
  background: var(--gold);
}

.accent-visual-panel {
  right: 58px;
  bottom: 40px;
  width: min(120px, 70%);
  height: 44%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
}

.accent-visual-rule {
  top: 26px;
  right: 0;
  width: 58%;
  height: 1px;
  background: rgba(255, 255, 255, 0.22);
}

.subpage-eyebrow,
.article-meta,
.article-back-link {
  color: var(--gold);
}

.subpage-hero h1,
.article-detail-header h1 {
  font-size: clamp(42px, 5vw, 68px);
  letter-spacing: 0;
}

.content-grid,
.article-grid {
  align-items: stretch;
}

.content-panel,
.article-panel {
  padding: 30px;
}

.content-panel h2,
.article-panel h2,
.article-detail-body h2 {
  font-size: clamp(26px, 2.5vw, 34px);
}

.content-panel h2::before,
.article-panel h2::before,
.article-detail-body h2::before {
  content: "";
  display: block;
  width: 36px;
  height: 2px;
  margin-bottom: 16px;
  background: var(--ink);
}

.activity-topic-grid {
  align-items: stretch;
}

.activity-topic-card {
  isolation: isolate;
  min-height: 280px;
  border-color: rgba(21, 21, 21, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 1) 56%),
    var(--activity-topic-tint, #f7f7f4);
}

.activity-topic-card::after {
  content: attr(data-label);
  position: absolute;
  right: 24px;
  top: 18px;
  z-index: -1;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(72px, 9vw, 120px);
  line-height: 1;
  color: var(--activity-topic-number, rgba(21, 21, 21, 0.07));
}

.activity-topic-card h2 {
  padding-right: 76px;
}

.activity-topic-card h2::before {
  width: 52px;
  height: 3px;
  background: var(--activity-topic-accent, var(--gold));
}

.activity-topic-card-night {
  --activity-topic-accent: #061226;
  --activity-topic-tint: #eef1f4;
  --activity-topic-number: rgba(6, 18, 38, 0.1);
}

.activity-topic-card-podcast {
  --activity-topic-accent: #8f6a30;
  --activity-topic-tint: #f3eee4;
  --activity-topic-number: rgba(143, 106, 48, 0.14);
}

.activity-topic-card-report {
  --activity-topic-accent: #52616f;
  --activity-topic-tint: #eef0ef;
  --activity-topic-number: rgba(82, 97, 111, 0.12);
}

.activity-topic-card-collab {
  --activity-topic-accent: #a65f35;
  --activity-topic-tint: #f4ece7;
  --activity-topic-number: rgba(166, 95, 53, 0.13);
}

.metric-item {
  border: 1px solid rgba(21, 21, 21, 0.1);
  border-radius: 8px;
  background: #f7f7f4;
}

.article-detail {
  padding: clamp(32px, 5vw, 58px);
}

.article-detail-main {
  background: #f7f7f4;
}

.article-detail-container {
  max-width: var(--container);
}

.article-detail-layout {
  display: grid;
  grid-template-columns: 276px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.article-side-panel {
  position: sticky;
  top: 24px;
  display: grid;
  gap: 16px;
}

.article-side-card,
.article-toc {
  border: 1px solid rgba(21, 21, 21, 0.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(6, 18, 38, 0.06);
}

.article-side-card {
  padding: 22px;
}

.article-side-label,
.article-toc-title,
.article-block-kicker {
  margin: 0 0 14px;
  font-family: "Noto Sans JP", "Yu Gothic", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--gold);
}

.article-side-meta {
  display: grid;
  gap: 16px;
  margin: 0;
}

.article-side-meta div {
  display: grid;
  gap: 5px;
}

.article-side-meta dt {
  font-family: "Noto Sans JP", "Yu Gothic", sans-serif;
  font-size: 12px;
  color: rgba(21, 21, 21, 0.54);
}

.article-side-meta dd {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
}

.article-side-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.article-side-tags span {
  padding: 6px 9px;
  border-radius: 999px;
  background: #f7f7f4;
  font-family: "Noto Sans JP", "Yu Gothic", sans-serif;
  font-size: 12px;
  color: var(--ink-soft);
}

.article-toc {
  padding: 22px;
}

.article-toc-main {
  margin: 0 0 18px;
}

.article-toc ol {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 22px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: article-toc;
}

.article-toc li {
  counter-increment: article-toc;
}

.article-toc a {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 9px;
  align-items: start;
  font-family: "Noto Sans JP", "Yu Gothic", sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink);
}

.article-toc a::before {
  content: counter(article-toc, decimal-leading-zero);
  color: var(--gold);
}

.article-back-link-inline {
  display: none;
}

.article-detail {
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.article-detail-hero {
  isolation: isolate;
  position: relative;
  display: flex;
  min-height: clamp(420px, 55vw, 600px);
  flex-direction: column;
  justify-content: flex-end;
  margin: 0 0 26px;
  padding: clamp(36px, 6vw, 72px);
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(6, 18, 38, 0.84) 0%, rgba(6, 18, 38, 0.54) 42%, rgba(6, 18, 38, 0.16) 100%),
    var(--article-hero-image, image-set(url("./assets/images/site-heroes/article-jien-hero-1800.webp") type("image/webp"), url("./assets/images/site-heroes/article-jien-hero.jpg") type("image/jpeg"))) center center / cover;
}

.article-detail-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(115deg, rgba(143, 106, 48, 0.22) 0 1px, transparent 1px 24px);
}

.article-detail-hero h1,
.article-detail-hero p,
.article-detail-hero .article-meta {
  max-width: 820px;
  color: #fff;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.32);
}

.article-detail-hero .article-meta {
  color: rgba(255, 255, 255, 0.78);
}

.article-detail-body {
  display: grid;
  gap: 0;
  padding: clamp(34px, 5vw, 64px);
  border: 1px solid rgba(21, 21, 21, 0.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(6, 18, 38, 0.05);
}

.article-intro-block {
  margin: 0 0 clamp(34px, 5vw, 58px);
  padding: clamp(30px, 4vw, 48px);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 24px),
    #061226;
  color: rgba(255, 255, 255, 0.84);
}

.article-intro-block h2 {
  margin-top: 0;
  color: #fff;
}

.article-intro-block h2::before {
  background: rgba(255, 255, 255, 0.72);
}

.article-intro-block p {
  max-width: 820px;
}

.article-content-block {
  padding: 0;
  border: 0;
  background: transparent;
}

.article-content-block + .article-content-block {
  margin-top: clamp(28px, 4vw, 46px);
  border-top: 1px solid rgba(21, 21, 21, 0.1);
}

.article-content-block h2 {
  scroll-margin-top: 24px;
}

.article-content-block h2:first-child {
  margin-top: 0;
}

.article-detail-body blockquote {
  border-left-color: var(--ink);
  background: #f7f7f4;
}

@keyframes templaceRise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.strength-card,
.activity-card,
.content-panel,
.article-panel,
.collab-banner-inner,
.subpage-hero,
.cta-panel {
  animation: templaceRise 560ms ease both;
}

@media (prefers-reduced-motion: reduce) {
  .strength-card,
  .activity-card,
  .content-panel,
  .article-panel,
  .collab-banner-inner,
  .subpage-hero,
  .cta-panel,
  .hero-visual img,
  .activity-visual img {
    animation: none;
    transition: none;
  }
}

@media (max-width: 1180px) {
  .article-detail-layout {
    grid-template-columns: 1fr;
  }

  .article-detail {
    order: 1;
  }

  .article-side-panel {
    order: 2;
    position: static;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: start;
  }

  .article-side-panel .article-back-link {
    display: none;
  }

  .article-back-link-inline {
    display: inline-flex;
    margin-bottom: 18px;
  }

  .hero-section .hero-surface {
    width: min(calc(100% - 56px), var(--container));
    margin: 0 auto;
  }

  .hero-copy {
    margin-right: 0;
    padding: 72px 44px;
    background: #fff;
  }

  .hero-visual {
    margin-right: 0;
    min-height: 560px;
  }

  .editorial-accent {
    grid-template-columns: 1fr;
  }

  .editorial-accent-visual {
    min-height: 120px;
  }
}

@media (max-width: 760px) {
  .container,
  .hero-section .hero-surface {
    width: min(calc(100% - 32px), 430px);
    margin-left: auto;
    margin-right: auto;
  }

  .hero-surface {
    grid-template-columns: minmax(0, 1fr);
  }

  .site-header {
    padding: 18px 0;
  }

  .brand-name {
    font-size: 44px;
  }

  .global-nav {
    gap: 8px 14px;
  }

  .hero-section {
    padding-bottom: 56px;
  }

  .hero-copy {
    padding: 50px 0 34px;
  }

  .hero-copy h1 {
    font-size: 48px;
  }

  .hero-visual {
    min-height: 360px;
  }

  .hero-visual img {
    object-position: 72% center;
  }

  .hero-vertical {
    display: none;
  }

  .article-side-panel {
    grid-template-columns: 1fr;
  }

  .article-toc ol {
    grid-template-columns: 1fr;
  }

  .article-detail-hero {
    min-height: 420px;
    padding: 32px 24px;
    background-position: center center, right center;
    background-size: auto, cover;
    box-shadow: inset 0 0 0 100vmax rgba(6, 18, 38, 0.34);
  }

  .article-detail-hero h1 {
    font-size: 27px;
    max-width: min(100%, 300px);
    line-height: 1.5;
    overflow-wrap: anywhere;
    word-break: break-all;
    line-break: anywhere;
  }

  .article-detail-hero p,
  .article-detail-hero .article-meta {
    max-width: min(100%, 300px);
    line-height: 1.95;
    overflow-wrap: anywhere;
    word-break: break-all;
    line-break: anywhere;
  }

  .article-intro-block,
  .article-side-card,
  .article-toc {
    padding: 24px;
  }

  .article-detail-body {
    padding: 24px;
  }

  .article-intro-block {
    margin-bottom: 34px;
    padding: 24px;
  }

  .article-content-block {
    padding-top: 34px;
  }

  .strength-section,
  .activity-section {
    padding: 64px 0;
  }

  .strength-card,
  .activity-body,
  .content-panel,
  .article-panel,
  .subpage-hero {
    padding: 24px;
  }

  .strength-card h2 {
    min-height: 0;
  }

  .subpage-hero-media {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    min-height: 420px;
    padding: 42px 24px;
    background-position: center center, right center;
    background-size: auto, cover;
    box-shadow: inset 0 0 0 100vmax rgba(6, 18, 38, 0.38);
  }

  .subpage-hero-media h1 {
    max-width: min(100%, 300px);
    font-size: 27px;
    line-height: 1.5;
    overflow-wrap: anywhere;
    word-break: break-all;
    line-break: anywhere;
  }

  .subpage-hero-media .subpage-lead {
    max-width: min(100%, 300px);
    font-size: 16px;
    line-height: 1.95;
    overflow-wrap: anywhere;
    word-break: break-all;
    line-break: anywhere;
  }

  .hero-actions,
  .activity-actions,
  .subpage-actions,
  .cta-actions {
    width: 100%;
    align-items: stretch;
  }

  .collab-banner-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .collab-banner-copy {
    width: 100%;
  }

  .hero-button,
  .section-button,
  .cta-button,
  .footer-button,
  .card-link,
  .collab-banner-button {
    box-sizing: border-box;
    max-width: 100%;
    min-width: 0;
    white-space: normal;
  }

  .section-button,
  .cta-button,
  .collab-banner-button {
    width: 100%;
  }

  .hero-button span:first-child,
  .section-button span:first-child,
  .cta-button span:first-child,
  .footer-button span:first-child,
  .card-link span:first-child,
  .collab-banner-button span:first-child {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .hero-button span:last-child,
  .section-button span:last-child,
  .cta-button span:last-child,
  .footer-button span:last-child,
  .card-link span:last-child,
  .collab-banner-button span:last-child {
    flex: 0 0 auto;
  }

  .editorial-accent {
    margin: 22px 0;
    padding: 28px 24px;
  }

  .editorial-accent h2 {
    font-size: 26px;
    line-height: 1.48;
  }

  .editorial-accent p {
    font-size: 16px;
  }

  .editorial-accent-visual {
    min-height: 86px;
  }

  .cta-panel {
    padding: 34px 24px;
  }
}

@media (max-width: 900px) {
  .subpage-hero-media {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}
