.page-about {
  --kiwi: #6B8E23;
  --yellow: #FFD700;
  --orange: #FF8C00;
  --deep-teal: #004D40;
  --wine: #800020;
  --indigo: #3B1F6E;
  --cream: #FDF5E6;
  --ink: #1A1A1A;
  --white: #FFFFFF;
  --graphite: #37474F;

  --container-max-s: 1140px;
  --radius-soft: 30px;
  --radius-mid: 18px;
  --font-stack: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Segoe UI", Arial, sans-serif;
  --display-stack: "Arial Black", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;

  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-stack);
  line-height: 1.7;
  overflow-x: clip;
}

.page-about .container {
  width: min(100% - 40px, var(--container-max-s));
  margin-inline: auto;
}

.page-about img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-about .breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--graphite);
  padding-top: 120px;
  padding-bottom: 24px;
  letter-spacing: 0.04em;
}

.page-about .breadcrumb span[aria-current="page"] {
  color: var(--kiwi);
  font-weight: 600;
}

.hero-about {
  display: grid;
  gap: 48px;
  padding-bottom: 0;
}

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

.hero-about .eyebrow {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}

.hero-about h1 {
  font-family: var(--display-stack);
  font-size: clamp(2.4rem, 8vw, 4.5rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--deep-teal);
  margin: 0 0 24px;
  max-width: 800px;
}

.hero-about-lead {
  font-size: 1.125rem;
  max-width: 640px;
  margin-bottom: 44px;
  color: var(--graphite);
}

.hero-about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.hero-stat-item {
  background: var(--white);
  border-radius: var(--radius-mid);
  padding: 20px 12px 18px;
  text-align: center;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(107, 142, 35, 0.25) inset;
}

.stat-num {
  display: block;
  font-family: var(--display-stack);
  font-size: clamp(1.9rem, 6vw, 3rem);
  font-weight: 900;
  color: var(--kiwi);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.stat-num span {
  font-size: 0.65em;
  vertical-align: super;
  color: var(--orange);
}

.stat-label {
  display: block;
  font-size: 0.8125rem;
  color: var(--graphite);
  margin-top: 8px;
  letter-spacing: 0.06em;
}

.hero-about-visual {
  position: relative;
  min-height: 260px;
  border-radius: var(--radius-soft);
  background: linear-gradient(145deg, var(--kiwi) 0%, #5A7A1E 42%, var(--deep-teal) 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-2deg);
}

.hero-about-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.12) 0, transparent 18%),
    radial-gradient(circle at 70% 70%, rgba(255, 215, 0, 0.16) 0, transparent 22%);
}

.kiwi-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px dashed rgba(255, 255, 255, 0.35);
}

.kiwi-ring-1 {
  width: 240px;
  height: 240px;
}

.kiwi-ring-2 {
  width: 190px;
  height: 190px;
  border-style: solid;
  border-color: rgba(253, 245, 230, 0.5);
  border-width: 1px;
}

.kiwi-ring-3 {
  width: 140px;
  height: 140px;
  background: rgba(255, 215, 0, 0.18);
  border: 1px solid rgba(255, 215, 0, 0.5);
}

.kiwi-seed-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  place-items: center;
  padding: 48px;
  opacity: 0.8;
  z-index: 1;
}

.kiwi-seed-grid i {
  width: 14px;
  height: 24px;
  border-radius: 60% 40% 50% 50%;
  background: var(--cream);
  transform: rotate(38deg);
}

.kiwi-seed-grid i:nth-child(even) {
  transform: rotate(-24deg);
  background: var(--yellow);
}

.kiwi-orbit-text {
  position: absolute;
  z-index: 3;
  font-family: var(--display-stack);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.28);
  transform: rotate(-8deg);
}

.origin-section {
  margin-top: 64px;
  padding: 72px 0;
  background:
    radial-gradient(circle at 90% 30%, rgba(255, 140, 0, 0.10) 0, transparent 30%),
    radial-gradient(circle at 5% 70%, rgba(107, 142, 35, 0.14) 0, transparent 26%),
    var(--cream);
}

.origin-inner {
  display: grid;
  gap: 48px;
  align-items: center;
}

.origin-copy .section-number,
.milestone-head .section-number,
.team-head .section-number,
.cert-head .section-number {
  font-family: var(--display-stack);
  font-size: 5rem;
  font-weight: 900;
  line-height: 0.9;
  margin: 0 0 10px;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(59, 31, 110, 0.35);
  letter-spacing: 0.06em;
  user-select: none;
}

.origin-copy .section-number {
  -webkit-text-stroke: 1.5px rgba(107, 142, 35, 0.5);
}

.origin-copy .section-tagline,
.milestone-head .section-tagline,
.team-head .section-tagline,
.cert-head .section-tagline {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 6px;
}

.origin-copy h2,
.milestone-head h2,
.team-head h2,
.cert-head h2 {
  font-family: var(--display-stack);
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 20px;
}

.origin-copy > p:not(.section-tagline, .section-number, .origin-emph) {
  color: var(--graphite);
  margin-bottom: 14px;
}

.origin-emph {
  font-size: 1.125rem;
  color: var(--deep-teal);
  border-left: 4px solid var(--kiwi);
  padding: 8px 0 8px 18px;
  margin-top: 24px;
}

.origin-visual img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-soft);
  box-shadow: var(--shadow-lg, 0 12px 40px rgba(0, 0, 0, 0.2));
  transform: rotate(1.4deg);
}

.milestone-section {
  background: var(--deep-teal);
  color: var(--cream);
  padding: 72px 0 90px;
  position: relative;
  overflow: hidden;
}

.milestone-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 100%, rgba(255, 215, 0, 0.12) 0, transparent 30%),
    radial-gradient(circle at 90% 0%, rgba(107, 142, 35, 0.18) 0, transparent 36%);
  pointer-events: none;
}

.milestone-section .container {
  position: relative;
  z-index: 2;
}

.milestone-head .section-number {
  -webkit-text-stroke: 1.5px rgba(255, 215, 0, 0.35);
}

.milestone-head h2 {
  color: var(--cream);
}

.milestone-desc {
  color: rgba(253, 245, 230, 0.8);
  max-width: 640px;
}

.milestone-visual {
  position: relative;
  margin: 44px 0 0;
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(120deg, #2B7A5C 0%, var(--deep-teal) 45%, rgba(107, 142, 35, 0.8) 100%);
  min-height: 200px;
  display: flex;
  align-items: flex-end;
  transform: rotate(-1deg);
}

.milestone-visual-bg {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(12deg, transparent 0px, transparent 24px, rgba(255, 255, 255, 0.04) 24px, rgba(255, 255, 255, 0.04) 26px),
    repeating-radial-gradient(circle at 30% 50%, transparent 0, transparent 18px, rgba(255, 215, 0, 0.05) 18px, rgba(255, 215, 0, 0.05) 20px);
}

.milestone-thumb-texture {
  position: absolute;
  width: 180px;
  height: 180px;
  right: 12%;
  top: 50%;
  border-radius: 50%;
  border: 24px solid rgba(255, 215, 0, 0.28);
  box-shadow: 0 0 0 3px rgba(253, 245, 230, 0.4), inset 0 0 0 16px rgba(255, 255, 255, 0.06);
  transform: translateY(-50%);
}

.milestone-visual-caption {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px 22px;
  background: rgba(0, 77, 64, 0.72);
  backdrop-filter: blur(4px);
  width: 100%;
}

.milestone-visual-caption .visual-label {
  font-family: var(--display-stack);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--yellow);
}

.milestone-visual-caption .visual-note {
  font-size: 0.875rem;
  color: rgba(253, 245, 230, 0.82);
}

.timeline-wrap {
  margin-top: 56px;
}

.timeline-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 20px;
  padding-bottom: 48px;
}

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

.timeline-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timeline-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 5px rgba(255, 215, 0, 0.16);
  flex-shrink: 0;
  transition: transform 0.3s ease, background 0.3s ease;
}

.timeline-line {
  flex: 1;
  width: 2px;
  background: rgba(255, 255, 255, 0.2);
  margin-top: 8px;
  min-height: 40px;
}

.timeline-item[data-active="true"] .timeline-dot {
  background: var(--orange);
  transform: scale(1.18);
}

.timeline-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(253, 245, 230, 0.14);
  border-radius: var(--radius-mid);
  padding: 22px 22px 20px;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.timeline-item[data-active="true"] .timeline-card {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 215, 0, 0.45);
}

.timeline-year {
  font-family: var(--display-stack);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.timeline-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--cream);
  margin: 0 0 8px;
}

.timeline-card p:last-child {
  color: rgba(253, 245, 230, 0.76);
  font-size: 0.9375rem;
  margin-bottom: 0;
}

.team-section {
  padding: 76px 0 60px;
  background: var(--cream);
}

.team-head .section-number {
  -webkit-text-stroke: 1.5px rgba(0, 77, 64, 0.4);
}

.team-desc {
  color: var(--graphite);
  max-width: 640px;
  margin-bottom: 36px;
}

.team-grid {
  display: grid;
  gap: 24px;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-soft);
  padding: 30px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  position: relative;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.09);
}

.team-card-accent {
  background: linear-gradient(140deg, var(--kiwi) 0%, #567A1E 60%, var(--deep-teal) 130%);
  color: var(--cream);
}

.team-card-accent p {
  color: rgba(253, 245, 230, 0.85) !important;
}

.team-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 22px;
  background: rgba(255, 215, 0, 0.16);
  position: relative;
  margin-bottom: 20px;
}

.team-card-icon .tci-shape {
  position: absolute;
  inset: 18px 12px;
  border-radius: 50%;
  background: var(--cream);
}

.team-card-icon .tci-core {
  position: absolute;
  width: 8px;
  height: 14px;
  border-radius: 50%;
  background: var(--kiwi);
  left: 27px;
  top: 14px;
  transform: rotate(27deg);
  box-shadow: 10px 12px 0 -2px var(--kiwi), -8px 18px 0 -2px var(--kiwi), 3px 26px 0 -2px var(--kiwi);
}

.team-card-icon .tci-shape-2 {
  background: var(--deep-teal);
  inset: 18px 12px;
  border-radius: 18px;
}

.team-card-icon .tci-core-2 {
  background: var(--yellow);
  box-shadow: 9px -10px 0 -2px var(--yellow), 20px 2px 0 -2px var(--yellow), 2px 18px 0 -2px var(--yellow);
}

.team-card h3 {
  font-family: var(--display-stack);
  font-size: 1.25rem;
  margin: 0 0 12px;
  color: var(--ink);
}

.team-card-accent h3 {
  color: var(--cream);
}

.team-card p {
  color: var(--graphite);
  font-size: 0.9375rem;
  margin-bottom: 0;
}

.team-note {
  margin-top: 32px;
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
  background: var(--indigo);
  border-radius: var(--radius-mid);
  padding: 28px;
  color: rgba(253, 245, 230, 0.88);
  font-size: 0.9375rem;
}

.team-note p {
  margin: 0;
}

.cert-section {
  padding: 76px 0 88px;
  background:
    linear-gradient(160deg, rgba(107, 142, 35, 0.09) 0%, transparent 34%),
    var(--white);
}

.cert-head .section-number {
  -webkit-text-stroke: 1.5px rgba(128, 0, 32, 0.28);
}

.cert-head h2 {
  margin-bottom: 32px;
}

.cert-head .section-tagline {
  color: var(--wine);
}

.cert-layout {
  display: grid;
  gap: 20px;
}

.cert-card {
  border: 1px solid rgba(107, 142, 35, 0.22);
  border-radius: var(--radius-mid);
  padding: 30px;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cert-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.1);
}

.cert-card-main {
  background: linear-gradient(130deg, var(--wine) 0%, #5E1A25 75%);
  color: var(--cream);
  border-color: transparent;
}

.cert-card-main p {
  color: rgba(253, 245, 230, 0.86);
}

.cert-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0;
  color: var(--ink);
}

.cert-card-main h3 {
  color: var(--cream);
}

.cert-card p {
  font-size: 0.9375rem;
  color: var(--graphite);
  margin-bottom: 0;
}

.cert-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: var(--yellow);
  color: var(--deep-teal);
  display: grid;
  place-items: center;
  margin-bottom: 6px;
}

.cert-icon svg {
  width: 44px;
  height: 44px;
}

.cert-card-main .cert-icon {
  background: var(--yellow);
  color: var(--wine);
}

.cert-icon-sm {
  background: rgba(107, 142, 35, 0.14);
  color: var(--kiwi);
}

.cert-img-wrap {
  border-radius: var(--radius-mid);
  overflow: hidden;
  background: var(--deep-teal);
}

.cert-img-wrap img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.service-cta {
  padding: 72px 0;
  background: var(--deep-teal);
  color: var(--cream);
  border-radius: 0;
  position: relative;
  overflow: hidden;
}

.service-cta::before {
  content: "";
  position: absolute;
  right: -90px;
  top: -90px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 2px dashed rgba(255, 215, 0, 0.2);
}

.service-cta::after {
  content: "";
  position: absolute;
  left: 70%;
  bottom: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 140, 0, 0.24), transparent 70%);
}

.service-cta-inner {
  position: relative;
  z-index: 2;
}

.service-cta-copy h2 {
  font-family: var(--display-stack);
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  line-height: 1.15;
  margin: 0 0 14px;
}

.service-cta-copy p {
  color: rgba(253, 245, 230, 0.78);
  max-width: 520px;
  margin-bottom: 24px;
}

.cta-kicker {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 8px;
}

.btn {
  display: inline-block;
  font-family: var(--font-stack);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 999px;
  padding: 13px 28px;
  transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--yellow);
  color: var(--deep-teal);
}

.btn-primary:hover {
  background: #FFC300;
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(253, 245, 230, 0.45);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--cream);
}

.service-cta-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.text-link {
  color: var(--yellow);
  font-weight: 700;
  text-decoration: none;
  font-size: 0.9375rem;
  letter-spacing: 0.02em;
  transition: opacity 0.2s ease;
}

.text-link:hover {
  opacity: 0.75;
  text-decoration: underline dashed;
  text-underline-offset: 4px;
}

@media (min-width: 768px) {
  .hero-about {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 56px;
    padding-top: 40px;
  }

  .hero-about-visual {
    min-height: 460px;
    margin-top: 0;
  }

  .hero-about-stats {
    gap: 20px;
  }

  .origin-inner {
    grid-template-columns: 1fr 1fr;
    gap: 72px;
  }

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

  .timeline-item {
    grid-template-columns: 60px 1fr;
    gap: 32px;
  }

  .timeline-dot {
    width: 22px;
    height: 22px;
  }

  .team-grid {
    grid-template-columns: 1fr 1fr;
  }

  .team-note {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 36px;
  }

  .cert-layout {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .cert-card-main {
    grid-column: span 1;
  }

  .cert-img-wrap {
    grid-column: span 1;
  }

  .service-cta-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
  }

  .service-cta-copy {
    flex: 1;
  }

  .service-cta-links {
    flex: 0 0 42%;
    justify-content: flex-end;
  }
}

@media (min-width: 1024px) {
  .page-about .breadcrumb {
    padding-top: 140px;
    padding-bottom: 32px;
  }

  .hero-about h1 {
    font-size: 4.5rem;
  }

  .origin-section {
    padding: 100px 0;
  }

  .milestone-section {
    padding: 100px 0 120px;
  }

  .timeline-list {
    grid-template-columns: 1fr 1fr;
    column-gap: 60px;
    row-gap: 8px;
  }

  .timeline-item {
    padding-bottom: 56px;
  }

  .timeline-list .timeline-item:nth-child(even) .timeline-card {
    margin-top: 60px;
  }

  .team-section,
  .cert-section {
    padding: 100px 0;
  }

  .team-inner {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
  }

  .team-head h2 {
    margin-bottom: 18px;
  }

  .team-desc {
    margin-bottom: 0;
  }

  .team-grid {
    grid-template-columns: 1fr 1fr;
    align-content: start;
  }

  .team-note {
    grid-column: 1 / -1;
  }

  .cert-layout {
    grid-template-columns: 1.2fr 1fr 1fr;
    align-items: stretch;
  }

  .cert-img-wrap {
    grid-column: 2 / -1;
    min-height: 240px;
  }
}
