@font-face {
  font-family: "MiSans";
  src: url("./assets/fonts/misans-regular.woff2?v=20260426-1") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "MiSans";
  src: url("./assets/fonts/misans-semibold.woff2?v=20260426-1") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "MiSans";
  src: url("./assets/fonts/misans-bold.woff2?v=20260426-1") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --sky-top: #0c4fa0;
  --sky-mid: #2990ff;
  --sky-bottom: #eefbff;
  --grass-a: #d5ff7f;
  --grass-b: #8dd93e;
  --brand-green: #7cc93e;
  --brand-green-deep: #3f8f22;
  --brand-blue: #0b3f88;
  --ink: #15304f;
  --muted: rgba(21, 48, 79, 0.72);
  --line: rgba(12, 63, 136, 0.12);
  --surface: rgba(255, 255, 255, 0.78);
  --shadow: 0 24px 60px rgba(17, 72, 128, 0.14);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.92), transparent 28%),
    linear-gradient(180deg, #fbfeff 0%, #ecf9ff 32%, #f8fff2 100%);
  font-family: "MiSans", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}

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

button {
  font: inherit;
}

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 5vw;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(12, 63, 136, 0.08);
}

.brand-mark {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-symbol {
  display: block;
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.brand-copy {
  display: flex;
  flex-direction: column;
}

.brand-title {
  display: flex;
  align-items: center;
  gap: 8px;
}

.brand-sub-logo {
  display: block;
  width: auto;
  height: 1.35rem;
  object-fit: contain;
}

.brand-copy strong {
  font-family: "MiSans", "PingFang SC", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
}

.brand-copy span {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.08em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 0.98rem;
}

.site-nav a {
  position: relative;
  padding-bottom: 6px;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand-green), #96db3e);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 16px;
  background: rgba(12, 63, 136, 0.06);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--ink);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle span + span {
  margin-top: 6px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
  min-height: 0;
  aspect-ratio: 3 / 2;
  padding: 40px 5vw 24px;
  overflow: hidden;
  background: #082852;
}

.hero-carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: block;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0;
  animation-duration: 8s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

.hero-slide-a {
  background-image: url("./assets/images/hero/hero-slide-1.jpg?v=20260427-5");
  background-image: image-set(
    url("./assets/images/hero/hero-slide-1.webp?v=20260427-5") type("image/webp"),
    url("./assets/images/hero/hero-slide-1.jpg?v=20260427-5") type("image/jpeg")
  );
  animation-name: heroSlideA;
}

.hero-slide-b {
  background-image: url("./assets/images/hero/hero-slide-2.jpg?v=20260427-6");
  background-image: image-set(
    url("./assets/images/hero/hero-slide-2.webp?v=20260427-6") type("image/webp"),
    url("./assets/images/hero/hero-slide-2.jpg?v=20260427-6") type("image/jpeg")
  );
  animation-name: heroSlideB;
}

@keyframes heroSlideA {
  0%, 45% { opacity: 1; }
  50%, 95% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes heroSlideB {
  0%, 45% { opacity: 0; }
  50%, 95% { opacity: 1; }
  100% { opacity: 0; }
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding: 34px 36px 38px;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(5, 24, 54, 0.58), rgba(11, 47, 99, 0.3));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 22px 54px rgba(4, 27, 59, 0.22);
  backdrop-filter: blur(10px);
}

.eyebrow {
  margin: 0 0 16px;
  color: rgba(232, 245, 255, 0.92);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.hero-copy h1,
.section-head h2,
.strength-panel h2 {
  margin: 0;
  font-family: "MiSans", "PingFang SC", sans-serif;
  line-height: 1.1;
}

.hero-copy h1 {
  font-size: clamp(2.6rem, 5vw, 4.9rem);
  color: white;
  font-weight: 700;
  line-height: 1.16;
  text-shadow: 0 12px 32px rgba(3, 16, 38, 0.34);
}

.hero-text {
  max-width: 540px;
  margin: 26px 0 0;
  color: rgba(244, 250, 255, 0.96);
  font-size: 1.06rem;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 152px;
  padding: 16px 28px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

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

.button-primary {
  color: white;
  background: linear-gradient(135deg, var(--brand-green), #96de43);
  box-shadow: 0 18px 32px rgba(102, 180, 45, 0.26);
}

.button-secondary {
  color: white;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.34);
  backdrop-filter: blur(10px);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 20, 45, 0.72) 0%, rgba(7, 35, 73, 0.5) 34%, rgba(10, 54, 108, 0.18) 64%, rgba(10, 54, 108, 0.08) 100%),
    linear-gradient(180deg, rgba(8, 40, 84, 0.3) 0%, rgba(12, 63, 136, 0.18) 55%, rgba(16, 88, 170, 0.06) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-visual {
  display: none;
}

.sun-halo {
  position: absolute;
  right: -6%;
  top: 6%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.58) 0%, rgba(255, 255, 255, 0) 70%);
}

.cloud {
  position: absolute;
  border-radius: 999px;
  filter: blur(3px);
  background: rgba(255, 255, 255, 0.36);
}

.cloud-a {
  top: 12%;
  left: 12%;
  width: 150px;
  height: 42px;
}

.cloud-b {
  top: 24%;
  left: 38%;
  width: 190px;
  height: 52px;
}

.cloud-c {
  top: 18%;
  right: 14%;
  width: 126px;
  height: 36px;
}

.field {
  position: absolute;
  left: -6%;
  right: -8%;
  bottom: -10%;
  height: 40%;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  background:
    radial-gradient(circle at 30% 14%, rgba(255, 255, 255, 0.32), transparent 20%),
    linear-gradient(180deg, rgba(221, 255, 156, 0.96), rgba(126, 202, 42, 0.98));
  box-shadow: inset 0 24px 50px rgba(255, 255, 255, 0.38);
}

.field::before,
.field::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.field::before {
  bottom: 26%;
  height: 62px;
}

.field::after {
  bottom: 10%;
  height: 90px;
}

.windmill {
  position: absolute;
  bottom: 22%;
  width: 160px;
  height: 390px;
  opacity: 0.9;
}

.windmill-left {
  right: 18%;
  transform: scale(0.72);
}

.windmill-right {
  right: -1%;
  bottom: 18%;
}

.mast {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 16px;
  height: 300px;
  margin-left: -8px;
  border-radius: 999px;
  background: linear-gradient(180deg, #f5fbff, #c2d6e4);
}

.hub {
  position: absolute;
  left: 50%;
  top: 52px;
  width: 34px;
  height: 34px;
  margin-left: -17px;
  border-radius: 50%;
  background: linear-gradient(180deg, white, #bfd1db);
  z-index: 2;
}

.blade {
  position: absolute;
  left: 50%;
  top: 66px;
  width: 14px;
  height: 160px;
  margin-left: -7px;
  border-radius: 999px 999px 40px 40px;
  transform-origin: center 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(216, 230, 238, 0.92));
}

.blade-a {
  transform: rotate(18deg) translateY(-120px);
}

.blade-b {
  transform: rotate(138deg) translateY(-120px);
}

.blade-c {
  transform: rotate(258deg) translateY(-120px);
}

.globe-system {
  position: absolute;
  right: 14%;
  bottom: 7%;
  width: min(34vw, 480px);
  aspect-ratio: 1 / 1.2;
}

.globe {
  position: absolute;
  left: 50%;
  top: 16%;
  width: 74%;
  aspect-ratio: 1;
  transform: translateX(-50%);
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.18) 28%, transparent 29%),
    linear-gradient(180deg, #c8f3ff 0%, #71d4ff 55%, #2592df 100%);
  border: 8px solid rgba(240, 252, 255, 0.72);
  box-shadow: 0 28px 60px rgba(5, 76, 146, 0.2);
}

.continent {
  position: absolute;
  background: linear-gradient(180deg, #c5db59, #5f9630);
  border-radius: 50%;
}

.continent-a {
  left: 15%;
  top: 22%;
  width: 26%;
  height: 20%;
  border-radius: 48% 52% 48% 52%;
  transform: rotate(-18deg);
}

.continent-b {
  right: 18%;
  top: 28%;
  width: 30%;
  height: 24%;
  border-radius: 42% 58% 60% 40%;
  transform: rotate(24deg);
}

.continent-c {
  left: 34%;
  bottom: 18%;
  width: 26%;
  height: 28%;
  border-radius: 50% 44% 56% 54%;
  transform: rotate(8deg);
}

.leaf-ring {
  position: absolute;
  bottom: 0;
  width: 44%;
  height: 78%;
  border: 24px solid var(--brand-green);
  border-top: 0;
  border-radius: 50% 50% 44% 44%;
  filter: drop-shadow(0 16px 26px rgba(44, 118, 23, 0.16));
}

.ring-left {
  left: 9%;
  transform: rotate(17deg);
}

.ring-right {
  right: 9%;
  transform: rotate(-17deg);
}

.leaf-ring::before {
  content: "";
  position: absolute;
  top: -24px;
  left: 50%;
  width: 80px;
  height: 46px;
  border-radius: 80% 0 80% 0;
  background: linear-gradient(135deg, #9adf42, #5aa22d);
}

.ring-left::before {
  transform: translateX(-12%) rotate(-32deg);
}

.ring-right::before {
  transform: translateX(-90%) rotate(122deg);
}

.leaf {
  position: absolute;
  display: block;
  background: linear-gradient(135deg, #b2f04d, #5ba327);
  border-radius: 80% 0 80% 0;
  box-shadow: 0 12px 18px rgba(60, 139, 25, 0.18);
}

.leaf-a {
  top: 2%;
  left: 16%;
  width: 36px;
  height: 22px;
  transform: rotate(-18deg);
}

.leaf-b {
  top: -3%;
  right: 28%;
  width: 44px;
  height: 26px;
  transform: rotate(12deg);
}

.leaf-c {
  top: 14%;
  right: 8%;
  width: 28px;
  height: 18px;
  transform: rotate(42deg);
}

.section,
.stats {
  position: relative;
  z-index: 1;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  width: min(1180px, 90vw);
  margin: -34px auto 0;
}

.stats article,
.feature-card,
.service-card,
.strength-panel,
.contact-bar {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.stats article {
  padding: 22px 24px;
  border-radius: 24px;
  text-align: center;
}

.stats strong {
  display: block;
  color: var(--brand-blue);
  font-size: 2rem;
}

.stats span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.95rem;
}

.section {
  width: min(1180px, 90vw);
  margin: 0 auto;
  padding: 110px 0 0;
}

.section-head {
  max-width: 760px;
}

.section-head h2,
.strength-panel h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.page-title {
  margin: 0;
  font-size: clamp(2.2rem, 4.4vw, 4rem);
  line-height: 1.12;
}

.section-head > p:last-child {
  color: var(--muted);
  line-height: 1.9;
}

.intro-grid,
.service-grid {
  display: grid;
  gap: 22px;
  margin-top: 34px;
}

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

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

.feature-card,
.service-card {
  padding: 28px;
  border-radius: var(--radius-md);
}

.feature-card h3,
.service-card h3 {
  margin: 0 0 14px;
  font-size: 1.24rem;
}

.feature-card p,
.service-card p,
.strength-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
}

.service-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border-radius: 16px;
  color: white;
  background: linear-gradient(135deg, var(--brand-blue), #2d8ceb);
  font-weight: 800;
}

.honor-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  width: min(980px, 100%);
  margin: 34px auto 0;
}

.honor-card {
  display: grid;
  grid-template-columns: minmax(180px, 220px) 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px;
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(237, 248, 255, 0.78));
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow: 0 24px 60px rgba(17, 72, 128, 0.15);
}

.honor-frame {
  position: relative;
  padding: 0;
}

.honor-media {
  display: block;
  border-radius: 18px;
  overflow: hidden;
}

.honor-frame::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 22px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.9), transparent 42%),
    linear-gradient(135deg, rgba(12, 63, 136, 0.08), rgba(124, 201, 62, 0.18));
  pointer-events: none;
}

.honor-frame img {
  position: relative;
  display: block;
  width: 100%;
  max-width: 220px;
  margin: 0 auto;
  aspect-ratio: 0.707 / 1;
  object-fit: contain;
  object-position: center;
  padding: 8px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 18px;
  border: 1px solid rgba(16, 70, 124, 0.1);
  box-shadow: 0 10px 24px rgba(12, 63, 136, 0.12);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.honor-media:hover img,
.honor-media:focus-visible img {
  transform: scale(1.08);
  box-shadow: 0 18px 34px rgba(12, 63, 136, 0.2);
}

.honor-copy {
  padding: 6px 4px 6px 0;
}

.honor-tag {
  margin: 0 0 10px;
  color: var(--brand-blue);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.honor-copy h3 {
  margin: 0;
  font-size: 1.08rem;
}

.honor-copy p:last-child {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

.calendar-layout {
  display: grid;
  grid-template-columns: minmax(260px, 320px) minmax(0, 1fr);
  gap: 26px;
  align-items: start;
  margin-top: 34px;
}

.page-hero {
  padding-top: 42px;
  padding-bottom: 0;
}

.page-hero-calendar .section-head {
  max-width: 880px;
}

.page-hero-calendar .section-head > p:last-child {
  margin-top: 14px;
}

.calendar-listing,
.article-page {
  padding-top: 42px;
}

.calendar-list-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.calendar-list-card {
  display: block;
  padding: 28px 30px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.calendar-list-card:hover,
.calendar-list-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(12, 63, 136, 0.14);
  box-shadow: 0 26px 58px rgba(12, 63, 136, 0.14);
}

.calendar-list-top {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.calendar-list-type {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--brand-blue);
  background: rgba(12, 63, 136, 0.06);
  border: 1px solid rgba(12, 63, 136, 0.08);
  font-size: 0.84rem;
  font-weight: 700;
}

.calendar-list-card h2 {
  margin: 18px 0 0;
  font-size: 1.34rem;
  line-height: 1.5;
}

.calendar-list-card p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.9;
}

.calendar-list-thumb {
  display: block;
  width: 100%;
  margin-top: 18px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 20px;
}

.calendar-list-meta {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: 22px;
  color: rgba(21, 48, 79, 0.58);
  font-size: 0.9rem;
}

.calendar-sidebar-label {
  margin: 0 0 16px;
  color: var(--brand-blue);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.calendar-item {
  width: 100%;
  padding: 22px 22px 20px;
  border: 1px solid rgba(12, 63, 136, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 44px rgba(12, 63, 136, 0.08);
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.calendar-item:hover,
.calendar-item:focus-visible,
.calendar-item.is-active {
  transform: translateY(-2px);
  border-color: rgba(12, 63, 136, 0.16);
  box-shadow: 0 24px 54px rgba(12, 63, 136, 0.14);
}

.calendar-item-date,
.calendar-item-source {
  display: block;
}

.calendar-item-date {
  color: var(--brand-blue);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.calendar-item strong {
  display: block;
  margin-top: 14px;
  font-size: 1.02rem;
  line-height: 1.6;
}

.calendar-item-source {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.9rem;
}

.calendar-content {
  min-width: 0;
}

.calendar-article {
  display: none;
  padding: 34px 36px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.calendar-article.is-active {
  display: block;
}

.calendar-article-standalone {
  display: block;
}

.calendar-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: rgba(21, 48, 79, 0.56);
  font-size: 0.92rem;
}

.calendar-breadcrumb a {
  color: var(--brand-blue);
  font-weight: 700;
}

.calendar-article-kicker {
  margin: 0;
  color: var(--brand-blue);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.calendar-article-head h2,
.calendar-article-head h3 {
  margin: 16px 0 0;
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  line-height: 1.28;
}

.calendar-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.calendar-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--brand-blue);
  background: rgba(12, 63, 136, 0.06);
  border: 1px solid rgba(12, 63, 136, 0.08);
  font-size: 0.9rem;
  font-weight: 700;
}

.calendar-lead {
  margin: 28px 0 0;
  padding: 22px 24px;
  border-radius: 22px;
  color: rgba(21, 48, 79, 0.9);
  background: linear-gradient(135deg, rgba(12, 63, 136, 0.06), rgba(124, 201, 62, 0.1));
  border: 1px solid rgba(12, 63, 136, 0.08);
  font-size: 1.04rem;
  line-height: 1.9;
}

.calendar-highlight-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.calendar-highlight-list span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  color: white;
  background: linear-gradient(135deg, var(--brand-blue), #2d8ceb);
  font-size: 0.9rem;
  font-weight: 700;
}

.calendar-article-body {
  display: grid;
  gap: 20px;
  margin-top: 28px;
}

.calendar-article-body p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.95;
}

.calendar-article-body h2,
.calendar-article-body h3,
.calendar-article-body h4 {
  margin: 0;
  color: var(--brand-blue);
  line-height: 1.4;
}

.calendar-article-body ul,
.calendar-article-body ol {
  margin: 0;
  padding-left: 1.4rem;
  color: var(--muted);
  line-height: 1.9;
}

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

.calendar-article-body code {
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(12, 63, 136, 0.08);
  color: var(--brand-blue);
  font-size: 0.92em;
}

.calendar-article-body a {
  color: var(--brand-blue);
  font-weight: 700;
}

.calendar-article-body hr {
  width: 100%;
  height: 1px;
  margin: 4px 0;
  border: 0;
  background: rgba(12, 63, 136, 0.08);
}

.calendar-table-wrap {
  width: 100%;
  overflow-x: auto;
  border-radius: 22px;
  border: 1px solid rgba(12, 63, 136, 0.08);
  background: rgba(255, 255, 255, 0.84);
}

.calendar-markdown-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.75;
}

.calendar-markdown-table th,
.calendar-markdown-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(12, 63, 136, 0.08);
  vertical-align: top;
}

.calendar-markdown-table th {
  color: var(--brand-blue);
  font-weight: 800;
  background: rgba(12, 63, 136, 0.05);
  white-space: nowrap;
}

.calendar-markdown-table tr:last-child td {
  border-bottom: 0;
}

.calendar-markdown-table td code,
.calendar-markdown-table th code {
  white-space: nowrap;
}

.calendar-quote {
  margin: 0;
  padding: 24px 26px;
  border-left: 4px solid var(--brand-green);
  border-radius: 0 22px 22px 0;
  background: rgba(12, 63, 136, 0.04);
  color: var(--ink);
  font-size: 1.04rem;
  line-height: 1.9;
}

.calendar-subsection {
  padding: 22px 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(12, 63, 136, 0.08);
}

.calendar-subsection h4 {
  margin: 0 0 12px;
  color: var(--brand-blue);
  font-size: 1.02rem;
}

.calendar-subsection h3 {
  margin: 0 0 12px;
  color: var(--brand-blue);
  font-size: 1.08rem;
}

.calendar-subsection p {
  margin: 0;
}

.calendar-article-image {
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(12, 63, 136, 0.08);
}

.calendar-article-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.calendar-article-footer {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(12, 63, 136, 0.08);
  color: rgba(21, 48, 79, 0.62);
  font-size: 0.92rem;
}

.calendar-empty {
  display: grid;
  gap: 14px;
  justify-items: start;
}

.calendar-empty h2,
.calendar-empty p {
  margin: 0;
}

.strength-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 42px;
  border-radius: var(--radius-lg);
}

.strength-media {
  margin: 28px 0 0;
  overflow: hidden;
  width: min(72%, 360px);
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
}

.strength-media img {
  display: block;
  width: 100%;
  height: auto;
}

.strength-list {
  display: grid;
  gap: 18px;
}

.strength-list p {
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--line);
}

.contact {
  padding-bottom: 100px;
}

.contact-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
  padding: 26px 30px;
  border-radius: 24px;
}

.contact-bar a {
  font-weight: 700;
}

.contact-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 24px;
  align-items: stretch;
  margin-top: 24px;
}

.contact-info-card,
.contact-qr-card {
  position: relative;
  overflow: visible;
  border-radius: 28px;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.contact-info-card {
  padding: 28px 30px;
}

.contact-kicker {
  margin: 0 0 12px;
  color: var(--brand-blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.contact-info-card h3,
.contact-qr-card h3 {
  margin: 0;
  font-size: 1.4rem;
}

.contact-info-card > p:last-of-type {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.85;
}

.contact-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.contact-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--brand-blue);
  background: rgba(12, 63, 136, 0.07);
  border: 1px solid rgba(12, 63, 136, 0.08);
  font-size: 0.92rem;
  font-weight: 700;
}

.contact-qr-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 188px;
  align-items: center;
  column-gap: 20px;
  row-gap: 12px;
  padding: 28px 30px;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-qr-card:hover,
.contact-qr-card:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 28px 68px rgba(17, 72, 128, 0.18);
}

.contact-qr-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(12, 63, 136, 0.07);
  border: 1px solid rgba(12, 63, 136, 0.08);
  color: var(--brand-blue);
  font-size: 0.92rem;
  font-weight: 800;
}

.contact-qr-icon {
  position: relative;
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-radius: 4px;
}

.contact-qr-icon::before,
.contact-qr-icon::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  background: currentColor;
  border-radius: 1px;
}

.contact-qr-icon::before {
  left: 2px;
  top: 2px;
}

.contact-qr-icon::after {
  right: 2px;
  bottom: 2px;
}

.contact-qr-card h3 {
  margin-top: 0;
  max-width: 16ch;
}

.contact-qr-preview {
  position: static;
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  width: 100%;
  margin-top: 0;
  padding: 12px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(12, 63, 136, 0.08);
  box-shadow: 0 22px 54px rgba(12, 63, 136, 0.18);
}

.contact-qr-preview img {
  display: block;
  width: 100%;
  border-radius: 16px;
}

.site-footer {
  margin-top: auto;
  padding: 24px 5vw 34px;
  color: rgba(21, 48, 79, 0.56);
  text-align: center;
  font-size: 0.92rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 28px;
  }

  .hero-copy {
    max-width: none;
    padding: 30px 28px 32px;
  }

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

  .globe-system {
    right: 50%;
    bottom: 2%;
    width: min(70vw, 420px);
    transform: translateX(50%);
  }

  .stats,
  .intro-grid,
  .service-grid,
  .strength-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .honor-gallery {
    grid-template-columns: 1fr;
  }

  .calendar-layout {
    grid-template-columns: 1fr;
  }

  .calendar-list-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .site-header {
    flex-wrap: wrap;
    gap: 12px;
    padding: 14px 20px;
  }

  .nav-toggle {
    display: block;
    margin-left: auto;
  }

  .site-nav {
    display: none;
    width: 100%;
    padding: 14px;
    gap: 6px;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(12, 63, 136, 0.08);
    box-shadow: 0 18px 36px rgba(12, 63, 136, 0.12);
    backdrop-filter: blur(18px);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    width: 100%;
    padding: 12px 10px;
    border-radius: 14px;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    background: rgba(12, 63, 136, 0.05);
  }

  .nav-open .nav-toggle span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .nav-open .nav-toggle span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .hero {
    min-height: auto;
    padding: 22px 20px 18px;
  }

  .hero-copy h1 {
    font-size: clamp(2.05rem, 8.5vw, 3rem);
  }

  .hero-text {
    max-width: none;
    font-size: 0.96rem;
    line-height: 1.78;
  }

  .hero-actions {
    flex-wrap: nowrap;
    flex-direction: column;
    gap: 12px;
  }

  .button {
    width: 100%;
    min-width: 0;
    padding: 15px 22px;
  }

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

  .windmill-left {
    right: 6%;
  }

  .windmill-right {
    right: -12%;
    transform: scale(0.76);
  }

  .stats,
  .intro-grid,
  .service-grid,
  .strength-panel {
    grid-template-columns: 1fr;
  }

  .calendar-article {
    padding: 28px 24px;
    border-radius: 24px;
  }

  .page-hero {
    padding-top: 28px;
  }

  .calendar-list-card {
    padding: 24px 22px;
    border-radius: 24px;
  }

  .calendar-list-card h2 {
    font-size: 1.18rem;
  }

  .calendar-article-head h2,
  .calendar-article-head h3 {
    font-size: clamp(1.6rem, 6vw, 2.1rem);
  }

  .calendar-listing,
  .article-page {
    padding-top: 28px;
  }

  .calendar-lead,
  .calendar-subsection,
  .calendar-quote {
    padding: 20px 18px;
  }

  .calendar-article-body p,
  .calendar-quote {
    font-size: 0.96rem;
    line-height: 1.82;
  }

  .calendar-markdown-table {
    min-width: 620px;
    font-size: 0.94rem;
  }

  .stats {
    gap: 14px;
    margin-top: 18px;
  }

  .stats article,
  .feature-card,
  .service-card {
    padding: 22px 20px;
  }

  .section {
    padding-top: 88px;
  }

  .section-head h2,
  .strength-panel h2 {
    font-size: clamp(1.8rem, 7vw, 2.4rem);
    line-height: 1.2;
  }

  .section-head > p:last-child,
  .feature-card p,
  .service-card p,
  .strength-list p,
  .calendar-item-source,
  .honor-copy p:last-child {
    font-size: 0.95rem;
    line-height: 1.75;
  }

  .honor-card {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 16px;
  }

  .honor-frame img {
    max-width: 220px;
  }

  .honor-copy {
    padding: 0;
    text-align: left;
  }

  .strength-panel {
    gap: 24px;
    padding: 26px 22px;
  }

  .contact-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 22px 20px;
  }

  .contact-showcase {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .contact-info-card,
  .contact-qr-card {
    padding: 24px 22px;
    border-radius: 24px;
  }

  .contact-qr-card {
    grid-template-columns: 1fr;
    row-gap: 14px;
  }

  .contact-qr-preview {
    grid-column: auto;
    grid-row: auto;
    width: min(240px, 100%);
    margin-top: 0;
  }
}

@media (max-width: 560px) {
  .brand-copy span {
    display: none;
  }

  .brand-mark {
    gap: 10px;
    min-width: 0;
  }

  .brand-symbol {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
  }

  .brand-title {
    gap: 6px;
    min-width: 0;
  }

  .brand-copy strong {
    font-size: 1.05rem;
  }

  .brand-sub-logo {
    height: 1rem;
  }

  .hero,
  .section {
    width: auto;
  }

  .hero-copy {
    padding: 20px 18px 22px;
    border-radius: 22px;
  }

  .eyebrow {
    margin-bottom: 12px;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }

  .hero-copy h1 {
    font-size: clamp(1.8rem, 9vw, 2.3rem);
  }

  .hero-text {
    margin-top: 18px;
    font-size: 0.92rem;
  }

  .stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: calc(100vw - 40px);
    gap: 12px;
    margin-top: 16px;
  }

  .stats article {
    padding: 18px 14px;
    border-radius: 18px;
  }

  .stats strong {
    font-size: 1.5rem;
  }

  .stats span {
    font-size: 0.82rem;
    line-height: 1.5;
  }

  .section {
    padding: 72px 20px 0;
  }

  .section-head {
    max-width: none;
  }

  .section-head h2,
  .strength-panel h2 {
    font-size: 1.65rem;
  }

  .page-title {
    font-size: 1.9rem;
  }

  .calendar-sidebar-label {
    margin-bottom: 12px;
    font-size: 0.72rem;
  }

  .calendar-item {
    padding: 18px 16px;
    border-radius: 20px;
  }

  .calendar-list-card {
    padding: 20px 18px;
    border-radius: 20px;
  }

  .calendar-list-card h2 {
    font-size: 1.04rem;
  }

  .calendar-list-meta {
    flex-direction: column;
    gap: 8px;
    margin-top: 18px;
    font-size: 0.84rem;
  }

  .calendar-item strong {
    font-size: 0.96rem;
  }

  .calendar-meta {
    gap: 8px;
    margin-top: 16px;
  }

  .calendar-meta span,
  .calendar-highlight-list span {
    min-height: 32px;
    padding: 0 12px;
    font-size: 0.82rem;
  }

  .calendar-article {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .calendar-lead {
    margin-top: 22px;
    font-size: 0.95rem;
  }

  .calendar-article-body {
    gap: 16px;
    margin-top: 22px;
  }

  .calendar-markdown-table th,
  .calendar-markdown-table td {
    padding: 12px 14px;
  }

  .calendar-article-footer {
    margin-top: 22px;
    padding-top: 16px;
    font-size: 0.84rem;
  }

  .calendar-breadcrumb {
    margin-bottom: 16px;
    font-size: 0.84rem;
  }

  .calendar-listing,
  .article-page {
    padding-top: 22px;
  }

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

  .field {
    height: 34%;
  }

  .globe-system {
    width: 86vw;
  }

  .feature-card,
  .service-card {
    padding: 20px 18px;
  }

  .feature-card h3,
  .service-card h3,
  .honor-copy h3 {
    font-size: 1rem;
  }

  .service-card span {
    width: 40px;
    height: 40px;
    margin-bottom: 14px;
    border-radius: 14px;
    font-size: 0.92rem;
  }

  .honor-gallery {
    margin-top: 24px;
    gap: 14px;
  }

  .honor-card {
    padding: 14px;
    border-radius: 20px;
  }

  .honor-frame img {
    max-width: 180px;
  }

  .honor-tag {
    margin-bottom: 8px;
    font-size: 0.68rem;
  }

  .strength-panel {
    padding: 22px 18px;
    border-radius: 24px;
  }

  .strength-media {
    margin-top: 20px;
    width: min(78%, 300px);
    border-radius: 16px;
  }

  .strength-list p {
    padding: 14px 16px;
    border-radius: 14px;
  }

  .contact {
    padding-bottom: 72px;
  }

  .contact-bar {
    padding: 18px 16px;
    border-radius: 18px;
  }

  .contact-info-card,
  .contact-qr-card {
    padding: 20px 18px;
    border-radius: 20px;
  }

  .contact-info-card h3,
  .contact-qr-card h3 {
    font-size: 1.12rem;
  }

  .contact-qr-card h3 {
    max-width: none;
  }

  .contact-tags {
    gap: 8px;
    margin-top: 18px;
  }

  .contact-tags span {
    min-height: 34px;
    padding: 0 12px;
    font-size: 0.84rem;
  }

  .contact-qr-badge {
    min-height: 38px;
    padding: 0 14px;
    font-size: 0.84rem;
  }

  .contact-qr-preview {
    width: min(210px, 100%);
    margin-top: 16px;
    padding: 10px;
    border-radius: 18px;
  }

  .site-footer {
    padding: 0 20px 26px;
    font-size: 0.82rem;
    line-height: 1.6;
  }

  .windmill {
    display: none;
  }
}

@media (max-width: 380px) {
  .stats {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    font-size: 1.7rem;
  }

  .button {
    padding-inline: 18px;
  }
}
