:root {
  /* 核心色彩 - 绿色系 (St. Mary's Green) */
  --green: #628733;
  --green-dark: #4d6a28;
  --green-light: #7ea44b;
  --green-soft: #f4f7f0;

  /* 核心色彩 - 金色系 (Academy Gold) */
  --gold: #e5b12a;
  --gold-dark: #a67c14;
  --gold-light: #f5dc94;
  --gold-soft: #fdfaf0;

  /* 辅助色彩 */
  --blue: #1c497c;
  --ink: #121611;
  --text: #2d332b;
  --muted: #666e63;
  --paper: #ffffff;
  --cream: #faf9f6;
  --line: rgba(18, 22, 17, 0.08);
  --line-strong: rgba(18, 22, 17, 0.15);

  /* 布局控制 */
  --container-width: 1200px;
  --section-padding: 100px;

  /* 锐利设计语言 */
  --radius-xs: 2px;
  --radius-sm: 4px;
  --radius-md: 0px;
  /* 故意设置为0，体现硬朗感 */
  --radius-full: 0px;

  /* 极简阴影 */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.02);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.06);

  /* 动效 */
  --transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  /* Header height */
}

body {
  margin: 0;
  color: var(--text);
  background: var(--cream);
  font-family: "Noto Sans SC", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  overflow-x: hidden;
}

:root {
  --green-950: #1c270f;
  --green-900: #2a3d19;
  --green-800: #3b5523;
  --green-700: #4d6a28;
  --green-600: #628733;
  --green-500: #7ea44b;
  --gold-600: #8e6a12;
  --gold-500: #e5b12a;
  --gold-300: #f4d889;
  --gold-100: #fbf4de;
  --paper: #ffffff;
  --cream: #f7f3ea;
  --mist: #eef2e7;
  --ink: #333;
  --text: #293023;
  --muted: #65705d;
  --line: rgba(17, 21, 15, 0.1);
  --line-strong: rgba(17, 21, 15, 0.18);
  --shadow-soft: 0 18px 60px rgba(18, 25, 13, 0.08);
  --shadow-card: 0 28px 90px rgba(18, 25, 13, 0.22);
  --radius: 24px;
  --radius-lg: 32px;
  --container-width: 1180px;
  --section-padding: clamp(52px, 7vw, 92px);
  --transition: 180ms ease;
}

* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  color: var(--text);
  background:
          radial-gradient(circle at top left, rgba(229, 177, 42, 0.18), transparent 28%),
          linear-gradient(180deg, #fbf8f0 0%, #f3f4ee 46%, #faf8f2 100%);
  font-family: 'Inter', "Noto Sans SC", sans-serif;
  font-size: 14px;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.18;
  background-image:
          linear-gradient(rgba(17, 21, 15, 0.05) 1px, transparent 1px),
          linear-gradient(90deg, rgba(17, 21, 15, 0.05) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.75), transparent 82%);
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

button {
  font: inherit;
}

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

.lang-only {
  display: none !important;
}

html[data-language="en"] .lang-only[data-lang="en"],
html[data-language="zh"] .lang-only[data-lang="zh"] {
  display: inline !important;
}

.lang-stack>.lang-only {
  display: none !important;
}

html[data-language="en"] .lang-stack>.lang-only[data-lang="en"],
html[data-language="zh"] .lang-stack>.lang-only[data-lang="zh"] {
  display: block !important;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  height: 68px;
}

.brand {
  display: flex;
  align-items: center;
  min-width: 0;
  transition: var(--transition);
}

.brand:hover {
  opacity: 0.8;
}

.brand img {
  height: 32px;
  width: auto;
  object-fit: contain;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 32px;
  min-width: 0;
}

.language-switcher {
  display: flex;
  background: rgba(18, 22, 17, 0.04);
  padding: 3px;
  border-radius: 999px;
  border: 1px solid rgba(18, 22, 17, 0.02);
}

.language-button {
  min-width: 44px;
  height: 28px;
  border: none;
  background: transparent;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  border-radius: 999px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.language-button.is-active {
  background: #fff;
  color: var(--green);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.language-button:not(.is-active):hover {
  color: var(--green);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  min-width: 0;
}

.main-nav a {
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 8px 16px;
  transition: var(--transition);
  position: relative;
  white-space: nowrap;
}

.main-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 20px;
  right: 20px;
  height: 1px;
  background: var(--green);
  transform: scaleX(0);
  transition: var(--transition);
}

.main-nav a:not(.nav-cta):hover,
.main-nav a:not(.nav-cta).is-current {
  color: var(--green);
}

.main-nav a:not(.nav-cta):hover::after,
.main-nav a:not(.nav-cta).is-current::after {
  transform: scaleX(1);
}

.main-nav .nav-cta {
  background: var(--green);
  color: #fff !important;
  margin-left: 8px;
  padding: 10px 22px;
  font-weight: 800;
  border-radius: 0px;
  /* 严格执行 0px 规范 */
}

.main-nav .nav-cta:hover,
.main-nav .nav-cta.is-current {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 12px;
  border: 1px solid rgba(17, 21, 15, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  border-radius: 999px;
  background: var(--green-800);
  transition: var(--transition);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: calc(100vh - 92px);
  padding: clamp(72px, 10vw, 124px) 0 88px;
  overflow: hidden;
  background: var(--ink);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.35));
}

/* Hero Section - Minimalist Editorial */
.hero-minimal {
  position: relative;
  min-height: 80vh;
  /* 降低高度 */
  display: flex;
  align-items: center;
  background-color: var(--green-dark);
  color: #fff;
  overflow: hidden;
  padding: 100px 0 70px;
  /* 增加上下呼吸感 */
}

/* 极简深色背景与微光 */
.hm-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url('assets/hero-students-banner.png') center 20% / cover no-repeat;
}

.hm-bg::after {
  content: "";
  /* position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(18, 22, 17, 0.92) 0%, rgba(42, 61, 25, 0.8) 100%);
  mix-blend-mode: multiply; */
}

.hm-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background: linear-gradient(to bottom, rgba(123, 161, 114, 0.5) 0%, transparent 40%, rgba(144, 182, 134, 0.8) 100%); */
}

.hm-glow {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(229, 177, 42, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
}

/* 容器布局：修复贴边 */
.hm-container {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.hm-content {
  max-width: 780px;
  padding: 16px 0 16px 40px;
  /* 增加左侧间距 */
  border-left: 1px solid rgba(229, 177, 42, 0.4);
  /* 增加垂直装饰线 */
}

/* 品牌小标题 */
.hm-brand {
  display: flex;
  align-items: center;
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 0;
}

/* 巨型主标题 */
.hm-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: 1.02;
  font-weight: 800;
  margin-top:0;
  margin-bottom: 24px;
  color: #fff;
}

/* 简介正文 */
.hm-desc {
  font-size: clamp(0.9rem, 1.4vw, 1rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 36px;
  max-width: 520px;
}

/* 极简探索按钮 */
.hm-actions {
  display: flex;
}

.hm-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: var(--transition);
}

.hm-btn i {
  color: var(--gold);
  transition: transform 0.3s ease;
}

.hm-btn:hover {
  border-bottom-color: var(--gold);
  color: var(--gold);
}

.hm-btn:hover i {
  transform: translateX(6px);
}

/* 右侧排版水印：弱化处理 */
.hm-visual {
  position: absolute;
  right: -2%;
  bottom: 10%;
  pointer-events: none;
  user-select: none;
  z-index: 1;
}

.hm-watermark {
  font-family: 'Inter', sans-serif;
  font-size: 28vw;
  /* 缩小尺寸 */
  font-weight: 800;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.02);
  /* 降低透明度 */
  letter-spacing: -0.06em;
}

/* 全局 Section 基础 */
.section {
  position: relative;
  padding: var(--section-padding) 0;
}

/* Standardized Section Headers */
.section h2,
.section-heading h2 {
  font-family: 'Montserrat', 'Inter', sans-serif;
  font-size: clamp(1.6rem, 4.2vw, 2.4rem);
  line-height: 1.12;
  margin-top: 10px;
  margin-bottom: 20px;
  color: var(--ink);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold-500);
  margin-bottom: 12px;
}

.section-heading {
  max-width: 860px;
  margin-bottom: 48px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  margin-top: 0;
  max-width: 720px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
  letter-spacing: 0.01em;
}

.section-heading.center p:not(.eyebrow) {
  margin-inline: auto;
}

.intro-band {
  background:
          radial-gradient(ellipse at top right, rgba(229, 177, 42, 0.12), transparent 38%),
          radial-gradient(ellipse at bottom left, rgba(98, 135, 51, 0.09), transparent 36%),
          linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.1));
  border-bottom: 1px solid var(--line);
}

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

.text-panel {
  position: relative;
  padding: 30px;
  border: 1px solid rgba(17, 21, 15, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.text-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--green-600), rgba(126, 164, 75, 0));
}

.accent-panel::before {
  background: linear-gradient(90deg, var(--gold-500), rgba(244, 216, 137, 0));
}

.panel-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(98, 135, 51, 0.1);
  color: var(--green-800);
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
}

.accent-panel .panel-kicker {
  background: rgba(229, 177, 42, 0.14);
  color: var(--gold-600);
}

.text-panel h3 {
  margin-top: 16px;
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.45rem;
}

.text-panel p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 1rem;
}

.mini-points {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

/* 新的 mini-point 布局 */
.mini-point-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 16px;
  border: 1px solid rgba(17, 21, 15, 0.06);
  border-radius: 12px;
  background: rgba(17, 21, 15, 0.03);
  transition: background 0.2s ease;
}

.mini-point-item:hover {
  background: rgba(229, 177, 42, 0.07);
}

.mini-point-label {
  flex-shrink: 0;
  min-width: 110px;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(229, 177, 42, 0.16);
  color: var(--gold-600);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.6;
}
html[lang="en"] .mini-point-label{
  min-width: 150px;
}
.mini-point-item strong {
  display: block;
  color: var(--ink);
  font-size: 0.96rem;
  line-height: 1.55;
}

/* 旧式 mini-points（向后兼容） */
.mini-points>div:not(.mini-point-item) {
  padding: 18px 20px;
  border: 1px solid rgba(17, 21, 15, 0.06);
  border-radius: 20px;
  background: rgba(17, 21, 15, 0.04);
}

.mini-points>div:not(.mini-point-item)>span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mini-points>div:not(.mini-point-item)>strong {
  display: block;
  color: var(--ink);
  line-height: 1.55;
}

/* overview 引言块 */
.overview-quote {
  margin: 16px 0 0;
  padding: 10px 16px;
  border: 0;
  border-left: 3px solid var(--gold-500);
  border-radius: 0 8px 8px 0;
  background: linear-gradient(90deg, rgba(229, 177, 42, 0.1), rgba(229, 177, 42, 0.03));
  color: var(--gold-600);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.8;
}

/* ============================================================
   Mission Grid — 编辑排版风格（纯文字，无图片图标）
   布局：顶部标识行 / 超大印刷装饰字 + 双段落正文 / 三栏关键词
   ============================================================ */

/* Mission Section - 宣言式设计 */
.mission-grid {
  position: relative;
  padding: var(--section-padding) 0;
  background-color: var(--green-dark);
  color: #fff;
  overflow: hidden;
}

.mission-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-5deg);
  font-size: 20rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.02);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
}

.mission-manifesto {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  margin-bottom: 70px;
  align-items: start;
}

.mm-header {
  display: flex;
  gap: 32px;
}

.mm-vertical-label {
  writing-mode: vertical-lr;
  transform: rotate(180deg);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.3em;
  color: var(--gold);
  border-left: 1px solid var(--gold);
  padding-right: 12px;
  opacity: 0.8;
}

.mm-title-wrap h2 {
  margin-top: 16px;
  color: #fff;
}

.mm-title-wrap h2 em {
  font-style: normal;
  color: var(--gold-light);
}

.mm-body {
  padding-top: 40px;
}

.mm-body p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}

.mm-body strong {
  color: #fff;
  font-weight: 700;
  border-bottom: 2px solid var(--gold);
}

/* 现代支柱卡片 */
.mission-pillars-modern {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.mp-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.mp-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--gold);
  transform: translateY(-5px);
}

.mp-icon-box {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: var(--gold);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.mp-content h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-family: "Source Serif 4", serif;
  font-size: 1.35rem;
  color: #fff;
}

.mp-content p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
}



/* 学术项目 - 意境图简约设计 */
.program-section {
  background: var(--paper);
  padding: var(--section-padding) 0;
}

.program-atmosphere-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
  background: #fff;
  align-items: stretch;
  border: 1px solid var(--line);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.03);
}

.program-mood-content {
  padding: 40px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pm-lead {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 32px;
}

.program-features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.pfl-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  transition: var(--transition);
  background: #fff;
}

.pfl-item:hover {
  border-color: var(--green-600);
  background: var(--green-soft);
  transform: translateY(-2px);
}

.pfl-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--green-soft);
  color: var(--green-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  border-radius: 2px;
}

.pfl-item:hover .pfl-icon {
  background: var(--green-600);
  color: #fff;
}

.pfl-text strong {
  display: block;
  font-size: 0.9rem;
  color: var(--ink);
  line-height: 1.3;
}

.program-mood-image {
  position: relative;
  min-height: 400px;
}

.program-mood-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left;
}

.mood-overlay-left {
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, transparent 60%, rgba(255, 255, 255, 0.1));
}

.program-outro-compact {
  margin-top: 24px;
  padding: 0 20px;
  border-left: 3px solid var(--line);
}

.program-outro-compact p {
  font-size: 0.85rem;
  color: var(--muted);
  font-style: italic;
  margin: 0;
}

/* Faculty & Leadership Section */
.faculty-section {
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.faculty-intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  margin-bottom: 60px;
  align-items: start;
}

.fi-lead {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--muted);
}

.fi-highlights {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.fi-highlight-item {
  display: flex;
  gap: 20px;
}

.fih-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: var(--green-soft);
  color: var(--green-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  border-radius: 50%;
}

.fih-text strong {
  display: block;
  font-size: 1rem;
  color: var(--ink);
  margin-bottom: 4px;
}

.fih-text p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.leader-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition);
}

.leader-card:hover {
  border-color: var(--green-600);
  box-shadow: var(--shadow-md);
  transform: translateY(-8px);
}

.lc-image {
  position: relative;
  width: 140px;
  height: 140px;
  margin: 0 auto 24px;
}

.lc-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--paper);
  box-shadow: 0 0 0 1px var(--line);
  position: relative;
  z-index: 2;
}

.lc-accent {
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px dashed var(--gold);
  opacity: 0.3;
  animation: lc-rotate 20s linear infinite;
}

@keyframes lc-rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.lc-info h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--ink);
}

.lc-title {
  color: var(--green-600);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.lc-divider {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 16px;
}

.lc-desc {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 992px) {
  .faculty-intro-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .leadership-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}


@media (max-width: 992px) {
  .program-atmosphere-layout {
    grid-template-columns: 1fr;
  }

  .program-mood-image {
    min-height: 300px;
    order: -1;
  }

  .program-mood-content {
    padding: 40px 30px;
  }

  .program-features-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

/* Facts Section - 现代权威数据排版 */
.facts-modern-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.facts-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.facts-card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-md);
}

.fc-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.fc-header i {
  font-size: 1.4rem;
  color: var(--gold);
}

.fc-header h3 {
  font-family: "Source Serif 4", serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  color: var(--ink);
}

/* 核心指标样式 */
.fc-metrics {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.metric-item {
  display: flex;
  flex-direction: column;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.metric-item:last-child {
  border-bottom: none;
}

.m-val {
  font-family: "Source Serif 4", serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
  margin-bottom: 4px;
}

.m-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

/* 列表样式 */
.fc-table-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fc-table-list li {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.fc-table-list li:last-child {
  border-bottom: none;
}

.ft-key {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
}

.ft-val {
  font-weight: 700;
  color: var(--ink);
  text-align: right;
}

/* 联系卡片强调色 */
.facts-card.contact-card {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: #fff;
}

.facts-card.contact-card h3 {
  color: #fff;
}

.fc-contact-info {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
}

.fc-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.fc-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
}

.fc-link i {
  color: var(--gold);
}

.fc-link:hover {
  color: var(--gold);
}

.support-section {
  background: linear-gradient(180deg, rgba(98, 135, 51, 0.06), rgba(98, 135, 51, 0.02));
}

.support-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 40px;
  align-items: start;
}

.support-copy h2 {
  margin-top: 18px;
}

.support-copy p:not(.eyebrow) {
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.05rem;
}

.support-outro {
  margin-top: 36px;
  padding-top: 26px;
  border-top: 2px solid rgba(17, 21, 15, 0.08);
}

.support-outro p {
  margin: 0;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.8;
}

.support-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.support-row {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 18px 24px;
  border: 1px solid rgba(17, 21, 15, 0.08);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 4px 18px rgba(18, 25, 13, 0.04);
  transition: var(--transition);
}

.support-row:hover {
  transform: translateX(6px);
  border-color: rgba(98, 135, 51, 0.3);
  background: rgba(98, 135, 51, 0.03);
}

.support-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(98, 135, 51, 0.1);
  color: var(--green-600);
  font-size: 1.25rem;
}

.support-row h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.4;
}

/* Enrichment Section - 重构为非对称网格 */
.enrichment-section {
  padding: var(--section-padding) 0;
  background-color: var(--cream);
  overflow: hidden;
}

.enrichment-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 64px;
}

.ei-header h2 {
  margin-top: 16px;
}

.ei-copy p {
  max-width: 480px;
  margin: 0;
  font-size: 1.15rem;
  color: var(--muted);
  line-height: 1.7;
}

/* 重构：更紧凑的 Bento Grid */
.enrichment-grid-new {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 16px;
  align-items: stretch;
}

.em-card-new {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 30px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: var(--transition);
}

.em-featured {
  min-height: 400px;
  padding: 40px;
  background: var(--ink);
  border: none;
}

.em-card-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.em-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;

  filter: grayscale(0.1) contrast(1.1);
  transition: var(--transition);
}

.em-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(18, 22, 17, 0.55) 10%, transparent 100%);
}

.em-card-content {
  position: relative;
  z-index: 2;
}

.em-icon-new {
  width: 52px;
  height: 52px;
  background: var(--gold);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 24px;
}

.em-tag-new {
  display: block;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-300);
  margin-bottom: 8px;
}

.em-featured h3 {
  margin: 0;
  font-family: "Source Serif 4", serif;
  font-size: 1.8rem;
  line-height: 1.2;
  color: #fff;
  max-width: 380px;
}

/* 右侧列表项样式 - 彻底紧凑 */
.em-items-wrap {
  display: grid;
  grid-template-rows: repeat(4, 1fr);
  gap: 12px;
}

.em-item-small {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: #fff;
  border: 1px solid var(--line);
  transition: var(--transition);
}

.em-item-small:hover {
  border-color: var(--green-500);
  background: var(--mist);
  transform: translateX(4px);
}

.em-item-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--mist);
  color: var(--green-600);
  font-size: 1.1rem;
}

.em-item-tag {
  display: block;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 2px;
}

.em-item-content h4 {
  margin: 0;
  font-family: "Source Serif 4", serif;
  font-size: 0.95rem;
  color: var(--ink);
  line-height: 1.3;
}

/* 交互增强 */
.em-featured:hover .em-card-bg img {
  transform: scale(1.05);
  opacity: 0.6;
}

@media (max-width: 1180px) {
  .enrichment-grid-new {
    grid-template-columns: 1fr;
  }

  .em-featured {
    min-height: 320px;
  }
}

@media (max-width: 640px) {
  .em-item-small {
    padding: 12px 16px;
  }
}

.enrichment-outro {
  margin-top: 48px;
  padding: 32px;
  border-left: 4px solid var(--gold);
  background: var(--mist);
}

.enrichment-outro p {
  margin: 0;
  font-weight: 700;
  color: var(--green-800);
  font-size: 1.1rem;
}

/* Philosophy Section - 沉浸式氛围设计 */
.philosophy-section {
  position: relative;
  padding: 68px 0;
  background-color: var(--ink);
  color: #fff;
  overflow: hidden;
}

.philosophy-bg-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.philosophy-bg-img {
  width: 100%;
  height: 100%;
}

.philosophy-bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  filter: grayscale(1) brightness(0.8);
}

.philosophy-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, transparent 0%, rgba(18, 22, 17, 0.8) 100%),
  linear-gradient(to bottom, var(--ink) 0%, transparent 20%, transparent 80%, var(--ink) 100%);
}

.philosophy-content {
  position: relative;
  z-index: 10;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.philosophy-meta {
  margin-bottom: 44px;
}

.philosophy-label {
  margin-top: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  opacity: 0.8;
}

.philosophy-quote {
  position: relative;
  padding: 0 40px;
}

.quote-mark {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 6rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.15;
  user-select: none;
}

.quote-mark.open {
  top: -40px;
  left: -20px;
}

.quote-mark.close {
  bottom: -80px;
  right: -20px;
}

.philosophy-quote blockquote {
  margin: 0;
  padding: 0;
}

.philosophy-quote .p-en {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  line-height: 1.4;
  margin-bottom: 20px;
  color: #fff;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.philosophy-quote .p-zh {
  font-size: 1.15rem;
  line-height: 2;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.05em;
  margin-bottom: 40px;
}

.p-divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 32px;
  opacity: 0.5;
}

.philosophy-quote .p-sub {
  font-size: 0.95rem;
  opacity: 0.7;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

.philosophy-quote strong {
  color: var(--gold-light);
  font-weight: 700;
}

/* 毕业生板块 - 意境图简约设计 */
.outcomes-section {
  background: #fff;
  padding: var(--section-padding) 0;
  overflow: hidden;
}

.outcome-atmosphere-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: #fff;
  align-items: stretch;
  border: 1px solid var(--line);
}

.outcome-mood-image {
  position: relative;
  min-height: 400px;
}

.outcome-mood-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mood-overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, rgba(255, 255, 255, 0.1));
}

.outcome-mood-content {
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.omc-header h2 {
  margin-top: 16px;
}

.omc-lead {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 32px;
}

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

.omc-simple-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 16px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
}

.omc-simple-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 900;
}

@media (max-width: 992px) {
  .outcome-atmosphere-layout {
    grid-template-columns: 1fr;
  }

  .outcome-mood-image {
    min-height: 300px;
  }

  .outcome-mood-content {
    padding: 40px 30px;
  }
}

/* Site Footer - 深色调高端页脚 */
.site-footer {
  padding: 70px 0 0;
  background: var(--green-950);
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 50px;
  padding-bottom: 50px;
}

.footer-col h4 {
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 32px;
}

.footer-logo {
  display: block;
  width: auto;
  margin-bottom: 24px;
}

.footer-credo {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.55);
  max-width: 340px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-nav a {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  transition: var(--transition);
}

.footer-nav a:hover,
.footer-nav a.is-current {
  color: var(--gold);
  transform: translateX(6px);
}

.footer-address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-address p,
.footer-address a {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  line-height: 1.5;
}

.footer-address i {
  color: var(--gold);
  font-size: 1rem;
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 32px 0;
}

.fb-layout {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.35);
}

.back-to-top {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  transition: var(--transition);
}

.back-to-top:hover {
  color: #fff;
  transform: translateY(-5px);
}

@keyframes fadeRise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  animation: fadeRise 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-inner {
  animation: fadeRise 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.08s both;
}

.hero-panel {
  animation: fadeRise 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.18s both;
}

@media (max-width: 1180px) {

  .hero-layout,
  .support-layout,
  .outcome-layout {
    grid-template-columns: 1fr;
  }

  /* mission-grid 平板折叠 */
  .mission-main-row {
    grid-template-columns: 1fr;
  }

  .mission-display-col {
    padding-right: 0;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 32px;
    margin-bottom: 0;
  }

  .mission-display-word {
    font-size: clamp(4rem, 16vw, 7rem);
  }

  .mission-text-col {
    padding-left: 0;
    padding-top: 36px;
  }

  .mission-pillars {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
  }

  .mission-pillar+.mission-pillar {
    padding: 0;
    border-left: none;
  }

  .mission-pillar {
    padding: 0;
  }

  /* philosophy-content 移动端适配 */
  .philosophy-section {
    padding: 60px 0;
  }

  .quote-mark {
    font-size: 5rem;
  }

  .quote-mark.open {
    top: -20px;
    left: 0;
  }

  .quote-mark.close {
    bottom: -40px;
    right: 0;
  }

  .philosophy-quote .p-en {
    font-size: 1.5rem;
  }

  .overview-grid,
  .em-card--featured {
    padding: 40px 32px;
  }

  .em-card--featured h3 {
    font-size: 1.8rem;
  }

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

  .enrichment-intro {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }

  .enrichment-mosaic {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .em-sub-grid {
    grid-template-columns: 1fr;
  }

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

  .program-item:nth-child(odd) {
    transform: none;
  }
}

@media (max-width: 880px) {
  html {
    scroll-padding-top: 72px;
  }

  .site-header .container {
    height: 64px;
    min-height: 64px;
  }

  .header-tools {
    gap: 10px;
  }

  .menu-toggle {
    display: inline-block;
  }

  .main-nav {
    position: fixed;
    top: 64px;
    right: 12px;
    width: min(300px, calc(100vw - 24px));
    padding: 20px;
    border: 1px solid rgba(17, 21, 15, 0.1);
    border-radius: 20px;
    background: rgba(247, 243, 234, 0.97);
    box-shadow: 0 24px 60px rgba(18, 25, 13, 0.2);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    z-index: 120;
  }

  .main-nav.active {
    display: flex;
  }

  .main-nav a {
    text-align: center;
  }

  body.menu-open {
    overflow: hidden;
  }

  body.menu-open::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 80;
    background: rgba(13, 17, 10, 0.45);
    backdrop-filter: blur(4px);
  }

  .hero {
    min-height: auto;
    padding-top: 48px;
  }

  .hero-copy,
  .hero-title {
    max-width: none;
  }

  /* Mission section mobile */
  .mission-manifesto {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 40px;
  }

  .mm-header {
    gap: 16px;
  }

  .mm-vertical-label {
    display: none;
  }

  .mm-body {
    padding-top: 0;
  }

  .mm-body p {
    font-size: 0.95rem;
  }

  /* mission-pillars-modern: 2 columns on tablet */
  .mission-pillars-modern {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .hero-metrics,
  .support-cards,
  .overview-grid,
  .facts-modern-grid,
  .enrichment-grid {
    grid-template-columns: 1fr;
  }

  /* support-layout stacks on tablet */
  .support-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .mission-pillars {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .footer-logo {
    margin: 0 auto 24px;
  }

  .footer-credo {
    margin: 0 auto;
  }

  .fb-layout {
    flex-direction: column-reverse;
    gap: 20px;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--container-width), calc(100% - 24px));
  }

  /* Header / Logo */
  .site-header .container {
    height: 60px;
    min-height: 60px;
    gap: 8px;
  }

  .brand img {
    height: 28px;
    max-width: min(200px, 52vw);
  }

  .language-button {
    min-width: 36px;
    height: 26px;
    font-size: 0.66rem;
  }

  /* Hero section */
  .hero-minimal {
    padding: 80px 0 52px;
    min-height: 70vh;
  }

  .hm-content {
    padding: 12px 0 12px 20px;
    max-width: 100%;
  }

  .hm-title {
    font-size: clamp(2rem, 10vw, 3rem);
    margin-bottom: 16px;
  }

  .hm-brand {
    font-size: 0.72rem;
    margin-bottom: 16px;
  }

  .hm-desc {
    font-size: 0.88rem;
    margin-bottom: 24px;
  }

  /* Mission section full-single column */
  .mission-manifesto {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 32px;
  }

  .mission-watermark {
    font-size: 10rem;
  }

  .mission-pillars-modern {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .mp-card {
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 16px;
  }

  .mp-icon-box {
    width: 42px;
    height: 42px;
    font-size: 1.1rem;
    flex-shrink: 0;
  }

  .mp-content h3 {
    font-size: 1.05rem;
    margin-bottom: 6px;
  }

  .mp-content p {
    font-size: 0.88rem;
  }

  /* Overview grid stacks */
  .overview-grid {
    grid-template-columns: 1fr;
  }

  /* Facts grid stacks */
  .facts-modern-grid {
    grid-template-columns: 1fr;
  }

  /* Support */
  .support-layout {
    grid-template-columns: 1fr;
  }

  .support-row {
    padding: 14px 16px;
    gap: 14px;
  }

  /* Enrichment */
  .enrichment-intro {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 32px;
  }

  /* Leadership */
  .leadership-grid {
    grid-template-columns: 1fr;
  }

  /* Faculty intro */
  .faculty-intro-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  /* Program */
  .program-atmosphere-layout {
    grid-template-columns: 1fr;
  }

  .program-mood-content {
    padding: 28px 20px;
  }

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

  /* Outcome */
  .outcome-atmosphere-layout {
    grid-template-columns: 1fr;
  }

  .outcome-mood-content {
    padding: 30px 20px;
  }

  /* General */
  h1 {
    font-size: clamp(2rem, 12vw, 3.2rem);
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-panel {
    padding: 18px;
    border-radius: 0px;
  }

  .outcome-list li {
    padding-left: 48px;
  }

  /* Section padding reduction */
  .section {
    padding: clamp(40px, 8vw, 70px) 0;
  }
}

/* Extra small screens (iPhone SE etc.) */
@media (max-width: 390px) {
  .brand img {
    height: 24px;
    max-width: 48vw;
  }

  .language-button {
    min-width: 30px;
  }

  .hm-content {
    padding: 10px 0 10px 14px;
  }

  .hm-title {
    font-size: clamp(1.8rem, 9vw, 2.6rem);
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================================
   Accreditation Section - Premium Logo Grid
   ============================================================ */
.accreditation-section {
  background: var(--paper);
  border-top: 1px solid var(--line);
  padding: var(--section-padding) 0;
  position: relative;
}

.accreditation-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.accreditation-card {
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 36px 24px;
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  border-radius: 16px;
}

.accreditation-card:hover {
  border-color: var(--green-600);
  background: #fff;
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}

.accreditation-logo-wrap {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  width: 100%;
}

.accreditation-logo-wrap img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: var(--transition);
}

.accreditation-card:hover .accreditation-logo-wrap img {
  transform: scale(1.05);
}

.accreditation-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
  color: var(--ink);
  line-height: 1.3;
}

.accreditation-card p {
  margin: 8px 0 0;
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.4;
}

@media (max-width: 992px) {
  .accreditation-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 576px) {
  .accreditation-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
