.page-about {
  --about-band-gold: #D4AF37;
  --about-band-gold-light: #E8C96A;
  --about-navy-deep: #060F26;
  --about-navy: #0A1E3F;
  --about-navy-light: #122A52;
  --about-navy-card: #1B3B6F;
  --about-pearl: #F5F0E6;
  --about-red: #8B0000;
  --about-silver: #B0B0B0;
  --about-line-gold: rgba(212, 175, 55, 0.32);
  --about-card-glow: rgba(212, 175, 55, 0.14);
  position: relative;
  overflow: hidden;
  background: var(--about-navy-deep);
  color: var(--about-pearl);
  font-family: var(--font-body);
  line-height: 1.75;
}

.page-about .container {
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: 1.25rem;
  position: relative;
  z-index: 2;
}

.page-about a {
  color: var(--about-pearl);
  text-decoration: none;
}

.page-about h1,
.page-about h2,
.page-about h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--about-pearl);
}

.page-about h2 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  letter-spacing: 0.01em;
}

.page-about h3 {
  font-size: 1.125rem;
  letter-spacing: 0.03em;
}

.page-about .section-marker {
  display: inline-flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 1.25rem;
}

.page-about .section-marker .section-index {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--about-band-gold);
  border: 1px solid var(--about-line-gold);
  border-radius: 6px;
  padding: 0.25rem 0.625rem;
  line-height: 1.4;
}

.page-about .section-marker .section-tag {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--about-band-gold-light);
}

.page-about .section-marker.light .section-index {
  border-color: rgba(232, 201, 106, 0.4);
  color: var(--about-band-gold-light);
}

.page-about .media-frame {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--about-navy-light);
  border-radius: var(--radius-md);
  box-shadow: 0 18px 50px rgba(3, 8, 22, 0.55);
}

.page-about .media-frame::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, transparent 50%, rgba(212, 175, 55, 0.34) 50%);
  border-radius: 0 var(--radius-md) 0 0;
  pointer-events: none;
}

.page-about .media-frame[data-ratio="4:3"] {
  aspect-ratio: 4 / 3;
}

.page-about .media-frame[data-ratio="3:2"] {
  aspect-ratio: 3 / 2;
}

.page-about .media-frame[data-ratio="1200:500"] {
  aspect-ratio: 1200 / 500;
}

.page-about .media-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.page-about .media-frame:hover img {
  transform: scale(1.03);
}

.page-about [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.page-about [data-reveal][data-visible] {
  opacity: 1;
  transform: translateY(0);
}

.page-about .breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.75rem;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
}

.page-about .breadcrumb-link {
  color: rgba(245, 240, 230, 0.72);
  transition: color 0.2s ease;
}

.page-about .breadcrumb-link:hover {
  color: var(--about-band-gold-light);
}

.page-about .breadcrumb-sep {
  color: rgba(212, 175, 55, 0.55);
}

.page-about .breadcrumb-current {
  color: var(--about-band-gold-light);
  font-weight: 600;
}

.page-about .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.04em;
  border-radius: var(--radius-full);
  padding: 0.75rem 1.75rem;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.page-about .btn-gold-outline {
  border: 1px solid rgba(212, 175, 55, 0.75);
  color: var(--about-band-gold-light);
  background: rgba(212, 175, 55, 0.06);
}

.page-about .btn-gold-outline:hover {
  background: rgba(212, 175, 55, 0.16);
  border-color: var(--about-band-gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.16);
}

.page-about .btn-text {
  padding: 0.75rem 0;
  color: rgba(245, 240, 230, 0.8);
  border-bottom: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 0;
}

.page-about .btn-text:hover {
  color: var(--about-band-gold-light);
  border-color: var(--about-band-gold-light);
}

.page-about .btn-arrow {
  margin-left: 0.375rem;
  transition: transform 0.25s ease;
}

.page-about .btn-text:hover .btn-arrow {
  transform: translateX(4px);
}

.page-about .about-hero {
  position: relative;
  padding-top: calc(var(--header-offset, 96px) + 3rem);
  padding-bottom: 4rem;
  overflow: hidden;
}

.page-about .about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 78% 22%, rgba(27, 59, 111, 0.6) 0%, transparent 55%),
    radial-gradient(ellipse at 12% 70%, rgba(14, 77, 90, 0.25) 0%, transparent 45%),
    linear-gradient(180deg, #060F26 0%, #081631 100%);
  z-index: 0;
}

.page-about .about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-size: 44px 44px;
  background-image:
    linear-gradient(rgba(212, 175, 55, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 175, 55, 0.05) 1px, transparent 1px);
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 78%);
  z-index: 0;
}

.page-about .hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.25rem;
  align-items: center;
}

.page-about .hero-copy {
  position: relative;
  z-index: 1;
}

.page-about .hero-overline {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  letter-spacing: 0.16em;
  color: var(--about-band-gold);
}

.page-about .overline-rule {
  width: 3rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.8), transparent);
}

.page-about .hero-copy h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  letter-spacing: -0.01em;
  margin-bottom: 1.375rem;
}

.page-about .hero-title-em {
  display: block;
  color: var(--about-band-gold-light);
  font-size: clamp(1.375rem, 3vw, 2.125rem);
  margin-top: 0.75rem;
}

.page-about .hero-lead {
  font-size: 1.0625rem;
  line-height: 1.85;
  color: rgba(245, 240, 230, 0.78);
  max-width: 34rem;
}

.page-about .hero-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.page-about .hero-panel-card {
  background: linear-gradient(150deg, rgba(27, 59, 111, 0.82), rgba(10, 30, 63, 0.9));
  border: 1px solid rgba(212, 175, 55, 0.24);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.375rem;
  box-shadow: 0 14px 40px rgba(3, 8, 22, 0.45);
  backdrop-filter: blur(6px);
}

.page-about .hero-panel-card.alt {
  background: linear-gradient(160deg, rgba(212, 175, 55, 0.15), rgba(10, 30, 63, 0.85));
}

.page-about .panel-label {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(245, 240, 230, 0.62);
  margin-bottom: 0.625rem;
}

.page-about .panel-num {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--about-band-gold-light);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.page-about .panel-unit {
  font-size: 1rem;
  margin-left: 0.25rem;
  color: rgba(245, 240, 230, 0.72);
}

.page-about .panel-note {
  font-size: 0.8125rem;
  line-height: 1.6;
  color: rgba(245, 240, 230, 0.52);
  margin-top: 0.625rem;
}

.page-about .hero-panel-gridline {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: auto;
  max-width: 400px;
  z-index: -1;
  opacity: 0.8;
}

.page-about .hero-band {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2.5rem;
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.18), rgba(212, 175, 55, 0.05) 30%, rgba(212, 175, 55, 0.18));
  display: flex;
  align-items: center;
  overflow: hidden;
  white-space: nowrap;
  transform: skewY(-1deg) translateY(50%);
  z-index: 1;
}

.page-about .hero-band span {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  letter-spacing: 0.5em;
  color: rgba(232, 201, 106, 0.4);
  margin-right: 4rem;
}

.page-about .about-section {
  position: relative;
  padding: 4.5rem 0;
}

.page-about .story-section {
  background: linear-gradient(180deg, #081631 0%, #0A1E3F 100%);
}

.page-about .story-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.45), transparent);
}

.page-about .story-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.page-about .story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.page-about .story-image-wrap {
  position: relative;
}

.page-about .img-coord-tag {
  position: absolute;
  bottom: 0.875rem;
  left: 0.875rem;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: rgba(245, 240, 230, 0.8);
  background: rgba(6, 15, 38, 0.75);
  border: 1px solid rgba(212, 175, 55, 0.35);
  padding: 0.25rem 0.625rem;
  border-radius: 4px;
  backdrop-filter: blur(4px);
  z-index: 1;
}

.page-about .story-copy .body-lead {
  font-size: 1.0625rem;
  color: var(--about-band-gold-light);
  margin-bottom: 1.25rem;
  line-height: 1.8;
}

.page-about .story-copy p {
  color: rgba(245, 240, 230, 0.72);
  margin-bottom: 1rem;
}

.page-about .fact-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 0.75rem;
}

.page-about .fact-list li {
  position: relative;
  padding-left: 1.375rem;
  font-size: 0.9375rem;
  color: rgba(245, 240, 230, 0.75);
}

.page-about .fact-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 0.625rem;
  height: 0.625rem;
  background: var(--about-band-gold);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  opacity: 0.8;
}

.page-about .timeline-section {
  background: linear-gradient(180deg, #0A1E3F 0%, #060F26 55%, #081631 100%);
}

.page-about .timeline-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 44%;
  height: 100%;
  background: repeating-linear-gradient(135deg, rgba(139, 0, 0, 0.13) 0px, rgba(139, 0, 0, 0.13) 1px, transparent 1px, transparent 14px);
  pointer-events: none;
  clip-path: polygon(0 0, 22% 0, 100% 100%, 0 100%);
}

.page-about .section-head {
  position: relative;
  margin-bottom: 2.5rem;
}

.page-about .timeline-heading {
  font-size: clamp(1.875rem, 4.5vw, 2.75rem);
  margin-bottom: 0.875rem;
}

.page-about .timeline-intro {
  max-width: 36rem;
  color: rgba(245, 240, 230, 0.66);
  font-size: 1.0625rem;
  line-height: 1.8;
}

.page-about .timeline-wrap {
  position: relative;
}

.page-about .timeline-banner {
  margin-bottom: 2.5rem;
  border-radius: var(--radius-md);
}

.page-about .timeline-list {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}

.page-about .timeline-list::before {
  content: "";
  position: absolute;
  top: 0.5rem;
  bottom: 0.5rem;
  left: 0.9375rem;
  width: 1px;
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.65), rgba(212, 175, 55, 0.12), rgba(212, 175, 55, 0.65));
}

.page-about .timeline-item {
  position: relative;
  padding: 0 0 2rem 3.25rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
}

.page-about .timeline-item:last-child {
  padding-bottom: 0;
}

.page-about .timeline-item::before {
  content: "";
  position: absolute;
  left: 0.4375rem;
  top: 0.5625rem;
  width: 1.0625rem;
  height: 1.0625rem;
  background: var(--about-navy-deep);
  border: 2px solid var(--about-band-gold);
  border-radius: 50%;
  z-index: 1;
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.12), 0 4px 16px rgba(212, 175, 55, 0.28);
}

.page-about .timeline-ym {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--about-band-gold-light);
  line-height: 1.2;
}

.page-about .timeline-card {
  background: linear-gradient(145deg, rgba(27, 59, 111, 0.55), rgba(10, 30, 63, 0.85));
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.375rem;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.page-about .timeline-card:hover {
  transform: translateX(4px);
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: 0 12px 30px rgba(3, 8, 22, 0.5), 0 0 0 1px rgba(212, 175, 55, 0.12);
}

.page-about .timeline-card h3 {
  margin-bottom: 0.375rem;
}

.page-about .timeline-card p {
  font-size: 0.9375rem;
  color: rgba(245, 240, 230, 0.68);
  margin: 0;
}

.page-about .philosophy-section {
  background: linear-gradient(180deg, #081631 0%, #0A1E3F 100%);
}

.page-about .philosophy-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.4), transparent);
}

.page-about .philosophy-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.page-about .philosophy-card {
  position: relative;
  background: linear-gradient(150deg, rgba(27, 59, 111, 0.45), rgba(10, 30, 63, 0.8));
  border: 1px solid rgba(212, 175, 55, 0.17);
  border-radius: var(--radius-md);
  padding: 2rem 1.625rem;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.page-about .philosophy-card:hover {
  border-color: rgba(212, 175, 55, 0.42);
  box-shadow: 0 14px 36px rgba(3, 8, 22, 0.5), 0 0 0 1px rgba(212, 175, 55, 0.1);
  transform: translateY(-3px);
}

.page-about .philosophy-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 3.5rem;
  height: 3.5rem;
  background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.2), transparent 70%);
}

.page-about .philosophy-num {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(212, 175, 55, 0.6);
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 6px;
  padding: 0.25rem 0.625rem;
  display: inline-block;
  margin-bottom: 1.25rem;
}

.page-about .philosophy-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.page-about .philosophy-card p {
  color: rgba(245, 240, 230, 0.68);
  font-size: 0.9375rem;
  margin: 0;
}

.page-about .credential-section {
  background: linear-gradient(180deg, #0A1E3F 0%, #060F26 100%);
  padding-bottom: 5rem;
}

.page-about .credential-inner {
  position: relative;
  background: linear-gradient(150deg, rgba(27, 59, 111, 0.35) 0%, rgba(6, 15, 38, 0.55) 50%, rgba(139, 0, 0, 0.14) 100%);
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: var(--radius-lg);
  padding: 2.5rem 1.5rem;
}

.page-about .credential-inner h2 {
  margin-bottom: 0.875rem;
}

.page-about .credential-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}

.page-about .credential-card {
  background: rgba(10, 30, 63, 0.72);
  border: 1px solid rgba(212, 175, 55, 0.16);
  border-radius: var(--radius-md);
  padding: 1.625rem 1.5rem;
  text-align: center;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.page-about .credential-card:hover {
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 12px 30px rgba(3, 8, 22, 0.55), 0 0 0 1px rgba(212, 175, 55, 0.1);
  transform: translateY(-2px);
}

.page-about .credential-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.page-about .credential-card h3 {
  font-size: 1.0625rem;
  margin-bottom: 0.375rem;
}

.page-about .credential-val {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--about-band-gold-light);
  letter-spacing: 0.04em;
  margin-bottom: 0.625rem;
}

.page-about .credential-card p:last-child {
  font-size: 0.875rem;
  color: rgba(245, 240, 230, 0.6);
  margin: 0;
}

.page-about .trust-note {
  margin-top: 2rem;
  padding: 1.25rem 1.5rem;
  background: rgba(212, 175, 55, 0.07);
  border-left: 3px solid var(--about-band-gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.page-about .trust-note p {
  margin: 0;
  font-size: 0.9375rem;
  color: rgba(245, 240, 230, 0.72);
}

.page-about .fujian-section {
  background: linear-gradient(180deg, #060F26 0%, #081631 100%);
}

.page-about .fujian-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-45deg, rgba(139, 0, 0, 0.07) 0, rgba(139, 0, 0, 0.07) 2px, transparent 2px, transparent 16px);
  pointer-events: none;
  clip-path: polygon(58% 0, 100% 0, 100% 100%, 42% 100%);
}

.page-about .fujian-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.page-about .fujian-copy {
  position: relative;
}

.page-about .fujian-copy h2 {
  margin-bottom: 1rem;
}

.page-about .fujian-copy .body-lead {
  color: var(--about-band-gold-light);
  font-size: 1.0625rem;
  margin-bottom: 1.75rem;
}

.page-about .fujian-list {
  list-style: none;
  margin: 0 0 2.25rem;
  padding: 0;
  display: grid;
  gap: 0.875rem;
}

.page-about .fujian-list li {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.25rem;
  background: rgba(27, 59, 111, 0.3);
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.page-about .fujian-list li:hover {
  border-color: rgba(212, 175, 55, 0.35);
  background: rgba(27, 59, 111, 0.44);
}

.page-about .list-key {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9375rem;
  letter-spacing: 0.05em;
  color: var(--about-band-gold-light);
}

.page-about .list-desc {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(245, 240, 230, 0.72);
}

.page-about .fujian-action {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
}

.page-about .fujian-visual {
  position: relative;
}

.page-about .fujian-img-frame {
  box-shadow: 0 18px 48px rgba(3, 8, 22, 0.6), 0 0 0 1px rgba(212, 175, 55, 0.12);
}

.page-about .fujian-coordinate {
  position: absolute;
  bottom: -0.875rem;
  right: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  background: rgba(6, 15, 38, 0.9);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: var(--radius-full);
  padding: 0.5rem 1.125rem;
  box-shadow: 0 8px 24px rgba(3, 8, 22, 0.45);
}

.page-about .fujian-coordinate .coord-dot {
  width: 0.625rem;
  height: 0.625rem;
  background: var(--about-band-gold);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.2), 0 0 12px rgba(212, 175, 55, 0.6);
}

.page-about .coord-label {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(245, 240, 230, 0.85);
}

.page-about .journey-section {
  background: linear-gradient(180deg, #081631 0%, #0A1E3F 100%);
}

.page-about .journey-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.45), transparent);
}

.page-about .journey-inner {
  position: relative;
}

.page-about .journey-inner h2 {
  margin-bottom: 2rem;
}

.page-about .journey-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.page-about .journey-card {
  position: relative;
  display: block;
  background: linear-gradient(150deg, rgba(27, 59, 111, 0.4), rgba(10, 30, 63, 0.75));
  border: 1px solid rgba(212, 175, 55, 0.16);
  border-radius: var(--radius-md);
  padding: 1.875rem 1.625rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.page-about .journey-card:hover {
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: 0 14px 34px rgba(3, 8, 22, 0.5), 0 0 0 1px rgba(212, 175, 55, 0.08);
  transform: translateY(-3px);
}

.page-about .journey-no {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(212, 175, 55, 0.55);
  border: 1px solid rgba(212, 175, 55, 0.24);
  border-radius: 6px;
  padding: 0.25rem 0.625rem;
  display: inline-block;
  margin-bottom: 1rem;
}

.page-about .journey-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.page-about .journey-card p {
  font-size: 0.9375rem;
  color: rgba(245, 240, 230, 0.64);
  margin: 0 0 1.25rem;
}

.page-about .journey-link {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--about-band-gold-light);
}

.page-about .journey-link span {
  display: inline-block;
  transition: transform 0.25s ease;
}

.page-about .journey-card:hover .journey-link span {
  transform: translateX(4px);
}

@media (min-width: 768px) {
  .page-about .hero-panel {
    padding-right: 2rem;
  }

  .page-about .philosophy-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .page-about .credential-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .page-about .timeline-item {
    display: grid;
    grid-template-columns: 5.5rem 1fr;
    gap: 1.25rem;
    align-items: start;
  }

  .page-about .timeline-item::before {
    left: 0.5625rem;
  }

  .page-about .timeline-list::before {
    left: 1.125rem;
  }

  .page-about .timeline-ym {
    text-align: right;
    padding-top: 1.25rem;
  }

  .page-about .timeline-card {
    max-width: 34rem;
  }

  .page-about .fujian-list li {
    grid-template-columns: 8rem 1fr;
    gap: 1rem;
    align-items: baseline;
  }

  .page-about .journey-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .page-about .container {
    padding-inline: 2rem;
  }

  .page-about .about-hero {
    padding-top: calc(var(--header-offset, 96px) + 5rem);
    padding-bottom: 7rem;
  }

  .page-about .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 4rem;
  }

  .page-about .story-layout {
    grid-template-columns: 3.5rem 1fr;
    gap: 3rem;
  }

  .page-about .story-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3.5rem;
    align-items: center;
  }

  .page-about .story-copy .body-lead {
    font-size: 1.125rem;
  }

  .page-about .timeline-section {
    padding: 6.5rem 0;
  }

  .page-about .timeline-wrap {
    padding-left: 5rem;
  }

  .page-about .timeline-wrapp {
    max-width: 100%;
  }

  .page-about .fujian-section {
    padding: 6.5rem 0;
  }

  .page-about .fujian-layout {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 4rem;
    align-items: center;
  }

  .page-about .journey-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1440px) {
  .page-about .about-hero::before {
    background:
      radial-gradient(ellipse at 70% 20%, rgba(27, 59, 111, 0.55) 0%, transparent 50%),
      radial-gradient(ellipse at 15% 80%, rgba(14, 77, 90, 0.22) 0%, transparent 40%),
      linear-gradient(180deg, #060F26 0%, #081631 100%);
  }
}
