/* 合肥庐阳志远艺文学校 — 官网样式 */
:root {
  --ink: #0f1c24;
  --ink-soft: #1a2e3a;
  --ink-muted: #3d5563;
  --stone: #f3efe6;
  --stone-deep: #e7e0d2;
  --paper: #faf8f3;
  --brass: #b0893f;
  --brass-light: #d4af61;
  --brass-deep: #8a6a2b;
  --line: rgba(15, 28, 36, 0.12);
  --white: #ffffff;
  --shadow-soft: 0 18px 48px rgba(15, 28, 36, 0.12);
  --font-display: "Noto Serif SC", "Songti SC", "STSong", serif;
  --font-body: "Source Han Sans SC", "Noto Sans SC", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  --nav-h: 72px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.school-body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
  border: 0;
  background: none;
  cursor: pointer;
}

.school-wrap {
  min-height: 100vh;
}

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

/* Nav */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

.site-nav.is-solid,
.site-nav:hover {
  background: rgba(250, 248, 243, 0.96);
  box-shadow: 0 1px 0 var(--line);
}

.site-nav.menu-open {
  background: var(--paper);
  box-shadow: none;
}

.site-nav .container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  width: min(1180px, calc(100% - 40px));
  height: 100%;
}

.nav-desktop {
  margin-left: auto;
}

.brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.7rem;
  position: relative;
  z-index: 120;
}

.brand-logo {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(15, 28, 36, 0.18);
  background: #2f7eb8;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.brand-mark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.28rem;
  letter-spacing: 0.08em;
  color: var(--white);
  line-height: 1.15;
  transition: color 0.35s var(--ease);
}

.brand-sub {
  font-size: 0.64rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.2;
  transition: color 0.35s var(--ease);
}

.site-nav.is-solid .brand-mark,
.site-nav:hover .brand-mark,
.site-nav.menu-open .brand-mark {
  color: var(--ink);
}

.site-nav.is-solid .brand-sub,
.site-nav:hover .brand-sub,
.site-nav.menu-open .brand-sub {
  color: var(--ink-muted);
}

.nav-desktop .nav-links,
.nav-panel .nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-desktop .nav-links a {
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.88);
  transition: color 0.25s ease;
}

.nav-desktop .nav-links a:hover {
  color: var(--brass-light);
}

.site-nav.is-solid .nav-desktop .nav-links a,
.site-nav:hover .nav-desktop .nav-links a {
  color: var(--ink-soft);
}

.site-nav.is-solid .nav-desktop .nav-links a:hover,
.site-nav:hover .nav-desktop .nav-links a:hover {
  color: var(--brass-deep);
}

.nav-panel {
  display: none;
}

.nav-desktop .nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: var(--white) !important;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), color 0.3s var(--ease);
}

.nav-desktop .nav-cta:hover {
  background: var(--brass);
  border-color: var(--brass);
}

.site-nav.is-solid .nav-desktop .nav-cta,
.site-nav:hover .nav-desktop .nav-cta {
  border-color: var(--ink);
  color: var(--ink) !important;
}

.site-nav.is-solid .nav-desktop .nav-cta:hover,
.site-nav:hover .nav-desktop .nav-cta:hover {
  background: var(--ink);
  color: var(--white) !important;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  position: relative;
  z-index: 120;
  flex-shrink: 0;
}

.nav-toggle span {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease), background 0.3s var(--ease);
}

.nav-toggle span:nth-child(1) { top: 16px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 26px; }

.site-nav.is-solid .nav-toggle span,
.site-nav:hover .nav-toggle span,
.site-nav.menu-open .nav-toggle span {
  background: var(--ink);
}

.site-nav.menu-open .nav-toggle span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.site-nav.menu-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-nav.menu-open .nav-toggle span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.nav-tools {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: 0.35rem;
  position: relative;
  z-index: 120;
  flex-shrink: 0;
}

.nav-qr-btn {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: color 0.3s var(--ease), background 0.3s var(--ease);
}

.nav-qr-btn:hover,
.nav-qr-btn.is-open {
  color: var(--brass-light);
}

.site-nav.is-solid .nav-qr-btn,
.site-nav:hover .nav-qr-btn,
.site-nav.menu-open .nav-qr-btn {
  color: var(--ink);
}

.site-nav.is-solid .nav-qr-btn:hover,
.site-nav:hover .nav-qr-btn:hover,
.site-nav.is-solid .nav-qr-btn.is-open,
.site-nav:hover .nav-qr-btn.is-open {
  color: var(--brass-deep);
}

.nav-qr-grid {
  width: 18px;
  height: 18px;
  display: block;
  background:
    linear-gradient(currentColor, currentColor) 0 0 / 5px 5px no-repeat,
    linear-gradient(currentColor, currentColor) 6.5px 0 / 5px 5px no-repeat,
    linear-gradient(currentColor, currentColor) 13px 0 / 5px 5px no-repeat,
    linear-gradient(currentColor, currentColor) 0 6.5px / 5px 5px no-repeat,
    linear-gradient(currentColor, currentColor) 6.5px 6.5px / 5px 5px no-repeat,
    linear-gradient(currentColor, currentColor) 13px 6.5px / 5px 5px no-repeat,
    linear-gradient(currentColor, currentColor) 0 13px / 5px 5px no-repeat,
    linear-gradient(currentColor, currentColor) 6.5px 13px / 5px 5px no-repeat,
    linear-gradient(currentColor, currentColor) 13px 13px / 5px 5px no-repeat;
}

/* 小程序码弹出层 */
.qr-layer {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  z-index: 90;
  padding: 2.5rem 1.25rem 2.75rem;
  background: rgba(243, 239, 230, 0.97);
  box-shadow: 0 18px 40px rgba(15, 28, 36, 0.1);
  transform-origin: top center;
  animation: qrDrop 0.35s var(--ease);
}

.qr-layer[hidden] {
  display: none;
}

.qr-layer-close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  width: 40px;
  height: 40px;
}

.qr-layer-close span {
  position: absolute;
  left: 10px;
  right: 10px;
  top: 50%;
  height: 1.5px;
  background: var(--ink);
}

.qr-layer-close span:first-child {
  transform: rotate(45deg);
}

.qr-layer-close span:last-child {
  transform: rotate(-45deg);
}

.qr-layer-inner {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: clamp(2rem, 6vw, 4.5rem);
  flex-wrap: wrap;
}

.qr-card {
  margin: 0;
  text-align: center;
}

.qr-card img {
  width: 168px;
  height: 168px;
  object-fit: contain;
  background: var(--white);
  padding: 0.65rem;
  box-shadow: 0 10px 28px rgba(15, 28, 36, 0.08);
}

.qr-card figcaption {
  margin-top: 0.9rem;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
}

@keyframes qrDrop {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  overflow: hidden;
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  animation: heroZoom 18s var(--ease) forwards;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(15, 28, 36, 0.82) 0%, rgba(15, 28, 36, 0.55) 48%, rgba(15, 28, 36, 0.28) 100%),
    linear-gradient(to top, rgba(15, 28, 36, 0.75) 0%, transparent 42%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: calc(var(--nav-h) + 4rem) 0 5.5rem;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 7vw, 4.8rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.06em;
  margin: 0 0 1.25rem;
  max-width: 12em;
  word-break: keep-all;
  opacity: 0;
  transform: translateY(28px);
  animation: riseIn 1s var(--ease) 0.15s forwards;
}

.hero-brand br {
  display: none;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.2vw, 2rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  margin: 0 0 1rem;
  color: var(--brass-light);
  opacity: 0;
  transform: translateY(28px);
  animation: riseIn 1s var(--ease) 0.35s forwards;
}

.hero-lead {
  max-width: 34rem;
  margin: 0 0 2.25rem;
  font-size: 1.05rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.86);
  opacity: 0;
  transform: translateY(28px);
  animation: riseIn 1s var(--ease) 0.5s forwards;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  opacity: 0;
  transform: translateY(28px);
  animation: riseIn 1s var(--ease) 0.65s forwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.8rem 1.6rem;
  letter-spacing: 0.14em;
  font-size: 0.88rem;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--brass);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--brass-deep);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: var(--white);
}

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

.btn-ink {
  background: var(--ink);
  color: var(--white);
}

.btn-ink:hover {
  background: var(--ink-soft);
}

/* Sections */
.section {
  padding: clamp(4.5rem, 9vw, 7.5rem) 0;
}

.section-head {
  max-width: 40rem;
  margin-bottom: clamp(2.5rem, 5vw, 3.75rem);
}

.eyebrow {
  display: block;
  margin-bottom: 0.75rem;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brass);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.3;
  margin: 0 0 1rem;
}

.section-desc {
  margin: 0;
  color: var(--ink-muted);
  font-size: 1.02rem;
}

/* About */
.about {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(243, 239, 230, 0.65), transparent 42%),
    var(--paper);
  padding: clamp(3.75rem, 7vw, 5.5rem) 0;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(12rem, 0.85fr) minmax(0, 1.35fr);
  gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: start;
}

.about-head {
  padding-top: 0.15rem;
}

.about-head .eyebrow {
  margin-bottom: 0.85rem;
  opacity: 0;
  transform: translateY(12px);
  animation: aboutFadeIn 0.5s var(--ease) forwards;
}

.about-title {
  font-size: clamp(1.9rem, 3.6vw, 2.75rem);
  letter-spacing: 0.12em;
  margin: 0;
  line-height: 1.25;
  opacity: 0;
  transform: translateY(14px);
  animation: aboutFadeIn 0.5s var(--ease) 0.06s forwards;
}

.about-title::after {
  content: "";
  display: block;
  width: 2.5rem;
  height: 3px;
  margin-top: 1rem;
  background: var(--brass);
}

.about-body {
  padding-top: 0.15rem;
}

.about-lead {
  margin: 0;
  max-width: 38rem;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  line-height: 1.85;
  opacity: 0;
  transform: translateY(14px);
  animation: aboutFadeIn 0.5s var(--ease) 0.1s forwards;
}

.about-points {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 1.35rem 0 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem 1.25rem;
  opacity: 0;
  transform: translateY(14px);
  animation: aboutFadeIn 0.5s var(--ease) 0.16s forwards;
}

.about-points li {
  position: relative;
  padding-right: 0.75rem;
}

.about-points li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0.15rem;
  right: 0;
  bottom: 0.15rem;
  width: 1px;
  background: var(--line);
}

.about-points span {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: var(--ink-muted);
}

.about-points strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.4;
  color: var(--ink);
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
  opacity: 0;
  transform: translateY(12px);
  animation: aboutFadeIn 0.5s var(--ease) 0.22s forwards;
}

@keyframes aboutFadeIn {
  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-head .eyebrow,
  .about-title,
  .about-lead,
  .about-points,
  .about-actions {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

@media (max-width: 900px) {
  .about-layout {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .about-points {
    grid-template-columns: 1fr 1fr;
  }

  .about-points li:nth-child(2n)::after {
    display: none;
  }
}

@media (max-width: 560px) {
  .about-points {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .about-points li {
    padding: 0 0 1rem;
    border-bottom: 1px solid var(--line);
  }

  .about-points li:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .about-points li::after {
    display: none;
  }
}

/* Advantages */
.advantages {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.advantages-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.advantages-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.advantages-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(15, 28, 36, 0.88) 0%, rgba(15, 28, 36, 0.62) 48%, rgba(15, 28, 36, 0.45) 100%),
    linear-gradient(to top, rgba(15, 28, 36, 0.55), transparent 55%);
}

.advantages .container {
  position: relative;
  z-index: 1;
}

.advantages .eyebrow {
  color: var(--brass-light);
}

.advantages .section-desc {
  color: rgba(255, 255, 255, 0.78);
}

.adv-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.adv-item {
  display: grid;
  grid-template-columns: 5.5rem 10rem 1fr;
  gap: 1.5rem;
  align-items: start;
  padding: 1.85rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.adv-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--brass-light);
  letter-spacing: 0.08em;
  line-height: 1.2;
}

.adv-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.08em;
  margin: 0;
  line-height: 1.35;
}

.adv-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  max-width: 46rem;
}

/* Campus */
.campus {
  background: var(--stone);
}

.campus-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: stretch;
}

.campus-visual {
  overflow: hidden;
  min-height: 480px;
}

.campus-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 480px;
}

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

.facility-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid rgba(15, 28, 36, 0.12);
}

.facility-list li:first-child {
  border-top: 1px solid rgba(15, 28, 36, 0.12);
}

.facility-index {
  font-family: var(--font-display);
  color: var(--brass);
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  padding-top: 0.2rem;
}

.facility-list h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  margin: 0 0 0.35rem;
  font-weight: 600;
}

.facility-list p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.96rem;
}

/* Goal band */
.goal {
  position: relative;
  padding: clamp(4rem, 8vw, 6rem) 0;
  background-color: var(--ink);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--white);
  text-align: center;
}

.goal-quote {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  letter-spacing: 0.12em;
  line-height: 1.45;
  margin: 0 auto 1rem;
  max-width: 18em;
}

.goal-text {
  margin: 0 auto;
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.78);
}

/* Contact */
.contact {
  background: var(--paper);
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: stretch;
  padding-top: 0.5rem;
}

.contact-main {
  display: flex;
  flex-direction: column;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 1.75rem;
}

.contact-info-block {
  padding: 1.25rem 1.35rem;
  background: var(--white);
  border: 1px solid var(--line);
}

.contact-info-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  color: var(--brass);
  margin-bottom: 0.55rem;
}

.contact-info-value {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.12rem;
  line-height: 1.55;
  letter-spacing: 0.04em;
  color: var(--ink);
}

.contact-info-value a {
  color: inherit;
  text-decoration: none;
}

.contact-info-value a:hover {
  color: var(--brass-deep);
}

.contact-info-note {
  margin: 0.65rem 0 0;
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--muted);
}

.contact-phone-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.contact-phone-card {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.85rem 0.95rem;
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--ink);
  text-decoration: none;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease), transform 0.25s var(--ease);
}

.contact-phone-card:hover {
  border-color: var(--brass);
  background: rgba(184, 150, 90, 0.08);
  transform: translateY(-1px);
}

.contact-phone-name {
  font-size: 0.82rem;
  color: var(--muted);
}

.contact-phone-num {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--ink);
}

.contact-main-actions {
  margin-top: auto;
  padding-top: 1.5rem;
}

.contact-visual {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.home-contact-map {
  flex: 1 1 auto;
  min-height: clamp(220px, 32vw, 360px);
}

.home-contact-map-overlay {
  justify-content: flex-end;
}

.contact-list {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
}

.contact-list li {
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
}

.contact-list li:first-child {
  border-top: 1px solid var(--line);
}

.contact-list span {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  color: var(--brass);
  margin-bottom: 0.35rem;
}

.contact-list strong {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
}

.contact-list .contact-phones {
  font-family: var(--font-body);
  font-size: 1rem;
  letter-spacing: 0;
}

.contact-list .contact-phone-line {
  color: var(--ink);
}

.contact-aside {
  background: var(--ink);
  color: var(--white);
  padding: clamp(1.35rem, 3vw, 1.85rem) clamp(1.5rem, 3vw, 2rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  flex-shrink: 0;
}

.contact-aside-copy {
  flex: 1;
  min-width: 0;
}

.contact-aside h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.08em;
  margin: 0 0 0.45rem;
}

.contact-aside p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  line-height: 1.55;
}

.contact-aside .btn-primary {
  flex-shrink: 0;
  align-self: center;
}

/* Footer */
.site-footer {
  background: var(--ink-soft);
  color: rgba(255, 255, 255, 0.65);
  padding: 2rem 0;
  font-size: 0.88rem;
}

.site-footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  align-items: center;
}

.site-footer a:hover {
  color: var(--brass-light);
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

@keyframes riseIn {
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes heroZoom {
  to {
    transform: scale(1);
  }
}

/* Mobile */
@media (max-width: 960px) {
  .campus-layout,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .contact-visual {
    order: -1;
  }

  .home-contact-map {
    min-height: 260px;
  }

  .contact-aside {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-aside .btn-primary {
    align-self: stretch;
    text-align: center;
  }

  .contact-phone-grid {
    grid-template-columns: 1fr;
  }

  .adv-item {
    grid-template-columns: 3.5rem 1fr;
    gap: 0.65rem 1rem;
  }

  .adv-text {
    grid-column: 2;
  }

  .campus-visual,
  .campus-visual img {
    min-height: 300px;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-h: 64px;
  }

  .brand-logo {
    width: 38px;
    height: 38px;
    border-radius: 9px;
  }

  .brand-mark {
    font-size: 1.1rem;
  }

  .brand-sub {
    font-size: 0.58rem;
    letter-spacing: 0.12em;
  }

  .nav-toggle {
    display: block;
  }

  .nav-desktop {
    display: none;
  }

  .nav-tools {
    margin-left: auto;
  }

  /* 独立全屏层，不放在顶栏内，避免裁切与重叠 */
  .nav-panel {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    height: 100dvh;
    z-index: 90;
    background: var(--paper);
    padding: calc(var(--nav-h) + 1.5rem) 1.75rem 2.5rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translate3d(100%, 0, 0);
    transition: transform 0.4s var(--ease), opacity 0.35s var(--ease), visibility 0.4s;
  }

  body.nav-open .nav-panel {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translate3d(0, 0, 0);
  }

  .nav-panel .nav-links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }

  .nav-panel .nav-links li {
    width: 100%;
    border-bottom: 1px solid var(--line);
  }

  .nav-panel .nav-links a {
    display: block;
    width: 100%;
    padding: 1.15rem 0;
    color: var(--ink);
    font-family: var(--font-display);
    font-size: 1.35rem;
    letter-spacing: 0.1em;
    line-height: 1.4;
  }

  .nav-panel .nav-links .nav-cta {
    display: flex;
    margin-top: 1.75rem;
    margin-bottom: 0.5rem;
    padding: 0.9rem 1.25rem;
    border: 1px solid var(--ink);
    color: var(--ink);
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .nav-panel .nav-links li:has(.nav-cta) {
    border-bottom: 0;
  }

  .hero-content {
    padding-bottom: 4rem;
  }

  .hero-brand br {
    display: inline;
  }

  .hero-actions {
    width: 100%;
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .about-meta {
    grid-template-columns: 1fr;
  }

  .adv-item {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .adv-text {
    grid-column: auto;
  }

  .site-footer .container {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Active nav: light gold on transparent hero, deep brass on solid / hover */
.site-nav .nav-links a.is-active {
  color: var(--brass-light);
}

.site-nav.is-solid .nav-links a.is-active,
.site-nav:hover .nav-links a.is-active {
  color: var(--brass-deep);
}

.page-hero {
  position: relative;
  min-height: 42vh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--nav-h) + 2rem) 0 3rem;
  color: var(--white);
  background: var(--ink);
  overflow: hidden;
}

.page-hero-plain {
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-soft) 100%);
}

.page-hero-media {
  position: absolute;
  inset: 0;
}

.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(15, 28, 36, 0.82), rgba(15, 28, 36, 0.35));
}

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

.page-hero-content > * {
  opacity: 0;
  transform: translateY(18px);
  animation: pageHeroIn 0.5s var(--ease) forwards;
}

.page-hero-content > *:nth-child(2) {
  animation-delay: 0.06s;
}

.page-hero-content > *:nth-child(3) {
  animation-delay: 0.12s;
}

@keyframes pageHeroIn {
  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-hero-content > * {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

.page-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: 0.06em;
  margin: 0 0 0.75rem;
}

.page-subtitle {
  margin: 0;
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.78);
}

.page-body .narrow {
  width: min(820px, calc(100% - 40px));
}

.rich-content {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--ink-soft);
}

.rich-content h3 {
  font-family: var(--font-display);
  margin: 2rem 0 0.75rem;
  letter-spacing: 0.06em;
}

.rich-content p {
  margin: 0 0 1.1rem;
}

.rich-content img {
  margin: 1rem 0;
  border-radius: 2px;
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

/* 关于学校：左文右图 */
.profile-page {
  padding: 3rem 0 4.5rem;
  background:
    radial-gradient(ellipse 70% 50% at 100% 0%, rgba(176, 137, 63, 0.08), transparent 55%),
    var(--paper);
}

.profile-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}

.profile-name {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.6vw, 1.9rem);
  letter-spacing: 0.06em;
  line-height: 1.35;
}

.profile-name-en {
  margin: 0 0 1.75rem;
  color: var(--ink-muted);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.profile-content {
  max-width: 38rem;
}

.profile-content p {
  text-align: justify;
}

.profile-actions {
  border-top: 0;
  padding-top: 0.5rem;
}

.profile-visual {
  position: relative;
  padding-top: 1.5rem;
}

.profile-accent {
  position: relative;
  z-index: 2;
  width: min(88%, 20rem);
  margin: 0 0 -2.75rem 0;
  padding: 1.35rem 1.4rem 1.45rem;
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}

.profile-accent-main {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  line-height: 1.45;
}

.profile-accent-sub {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
}

.profile-photo {
  position: relative;
  z-index: 1;
  margin-left: 12%;
  overflow: hidden;
  background: var(--stone-deep);
}

.profile-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

@media (max-width: 900px) {
  .profile-layout {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

  .profile-visual {
    order: -1;
    max-width: 28rem;
  }

  .profile-accent {
    width: min(92%, 18rem);
    margin-bottom: -2.25rem;
  }

  .profile-photo {
    margin-left: 8%;
  }
}

/* 办学优势：叠压图文（类名与首页 .adv-item 隔离） */
.adv-page {
  position: relative;
  padding: 3rem 0 4.5rem;
  overflow: hidden;
  background: var(--paper);
}

.adv-bg {
  position: absolute;
  inset: 0;
  opacity: 0.07;
  pointer-events: none;
}

.adv-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.2);
}

.adv-stage {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: stretch;
}

.adv-feature {
  position: relative;
  margin-left: -10%;
  background: var(--stone-deep);
  min-height: 100%;
}

.adv-feature img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  display: block;
}

.adv-panel {
  position: relative;
  z-index: 2;
  background: var(--white);
  padding: clamp(1.85rem, 3.2vw, 2.65rem);
  box-shadow: 0 24px 60px rgba(15, 28, 36, 0.12);
  align-self: center;
}

.adv-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem 1.35rem;
}

.adv-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0.2rem 0.3rem;
}

.adv-card-icon {
  width: 3.15rem;
  height: 3.15rem;
  margin: 0 auto 0.9rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brass);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  box-shadow: 0 8px 18px rgba(176, 137, 63, 0.28);
}

.adv-card-title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.35;
  color: var(--ink);
}

.adv-card-title::after {
  content: "";
  display: block;
  width: 1.4rem;
  height: 2px;
  margin: 0.6rem auto 0.75rem;
  background: var(--brass);
}

.adv-card-text {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.88rem;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.adv-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

@media (max-width: 960px) {
  .adv-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .adv-stage {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .adv-feature {
    margin-left: 0;
    order: -1;
  }

  .adv-feature img {
    min-height: 0;
    aspect-ratio: 16 / 9;
    height: auto;
  }

  .adv-panel {
    margin-top: -2.5rem;
  }
}

@media (max-width: 560px) {
  .adv-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* 联系我们：信息 + 地图 */
.contact-page {
  padding: clamp(2.5rem, 5vw, 3.5rem) 0 clamp(3rem, 6vw, 4.5rem);
  background:
    radial-gradient(ellipse 60% 45% at 0% 0%, rgba(176, 137, 63, 0.07), transparent 55%),
    var(--paper);
}

.contact-page .contact-panel {
  padding-top: 0;
}

.contact-page .contact-extra {
  margin-top: 1.25rem;
  padding: 1.25rem 1.35rem;
  background: var(--white);
  border: 1px solid var(--line);
}

.contact-meta strong {
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.5;
}

.contact-meta a {
  color: var(--brass-deep);
}

.contact-phones {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  font-weight: 600;
}

.contact-phone-line {
  display: block;
  color: var(--ink);
  text-decoration: none;
  line-height: 1.5;
}

.contact-phone-line:hover {
  color: var(--brass-deep);
}

.contact-extra {
  margin-top: 0;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 1.75rem;
}

.contact-map {
  min-height: 26rem;
  background: var(--ink-soft);
  overflow: hidden;
}

.contact-map-card {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 26rem;
  color: var(--white);
  overflow: hidden;
}

.contact-map-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.contact-map-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}

.contact-map-card:hover .contact-map-media img {
  transform: scale(1.04);
}

.contact-map-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 1.5rem 1.25rem;
  background:
    linear-gradient(180deg, rgba(15, 28, 36, 0.12) 20%, rgba(15, 28, 36, 0.72) 100%);
  text-align: center;
}

.contact-map-pin {
  position: absolute;
  left: 50%;
  top: 42%;
  width: 1.25rem;
  height: 1.25rem;
  margin: -0.9rem 0 0 -0.625rem;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  background: var(--brass);
  box-shadow: 0 8px 20px rgba(15, 28, 36, 0.4);
}

.contact-map-pin::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0.4rem;
  height: 0.4rem;
  margin: -0.2rem 0 0 -0.2rem;
  border-radius: 50%;
  background: var(--white);
}

.contact-map-label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  max-width: 22rem;
}

.contact-map-label strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.06em;
}

.contact-map-label span {
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.82);
}

.contact-map-cta {
  margin-top: 0.95rem;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.45);
  font-size: 0.86rem;
  letter-spacing: 0.06em;
  background: rgba(15, 28, 36, 0.35);
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease);
}

.contact-map-card:hover .contact-map-cta {
  background: var(--brass);
  border-color: var(--brass);
}

.contact-call-btn {
  display: none;
}

.contact-call-bar {
  display: none;
}

@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-map-card {
    min-height: 18rem;
  }
}

.btn-ghost-ink {
  border: 1px solid var(--ink);
  color: var(--ink);
}

.btn-ghost-ink:hover {
  background: var(--ink);
  color: var(--white);
}

.btn-block {
  width: 100%;
}

.home-entry {
  max-width: 40rem;
}

.home-entry-actions {
  margin-top: 1.5rem;
}

.home-campus-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.home-link-card {
  display: block;
  padding: 1.5rem 1.25rem;
  background: rgba(255, 255, 255, 0.55);
  border-bottom: 2px solid var(--brass);
}

.home-link-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.06em;
  margin-bottom: 0.35rem;
}

.home-link-card span {
  color: var(--ink-muted);
  font-size: 0.95rem;
}

/* 校园生活：子分类 Tab + 图文列表 */
.case-section {
  padding-top: clamp(2rem, 5vw, 3.5rem);
}

.case-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin: 0 0 2.25rem;
}

.case-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  padding: 0.45rem 1.15rem;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.case-tab:hover {
  border-color: var(--brass);
  color: var(--brass-deep);
}

.case-tab.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem 1.35rem;
}

.case-card {
  display: block;
  background: transparent;
  transition: transform 0.35s var(--ease);
}

.case-card:hover {
  transform: translateY(-3px);
}

.case-card-media {
  position: relative;
  overflow: hidden;
  background: var(--stone-deep);
  aspect-ratio: 5 / 4;
}

.case-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}

.case-card:hover .case-card-media img {
  transform: scale(1.03);
}

.case-card-title {
  margin: 0.85rem 0 0;
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.45;
  color: var(--ink);
}

.case-pager {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2.5rem;
}

.case-page {
  min-width: 2.4rem;
  height: 2.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.7rem;
  border: 1px solid var(--line);
  background: var(--white);
  font-size: 0.92rem;
}

.case-page.is-active,
.case-page:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.case-page.is-disabled {
  opacity: 0.4;
  cursor: default;
  pointer-events: none;
}

.case-page.is-disabled:hover {
  background: var(--white);
  border-color: var(--line);
  color: inherit;
}

.archives-gallery {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

.archives-gallery-item {
  margin: 0;
}

.archives-gallery-item img {
  width: 100%;
  height: auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.gallery-item {
  margin: 0;
  background: var(--paper);
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.gallery-item figcaption {
  padding: 1rem 0.25rem 0.5rem;
}

.gallery-item h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin: 0 0 0.35rem;
  letter-spacing: 0.04em;
}

.gallery-item p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.92rem;
}

.campus-block-alt {
  background: var(--stone);
}

.empty-tip {
  color: var(--ink-muted);
}

.appoint-form {
  background: var(--stone);
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

.appoint-form .form-row {
  margin-bottom: 1.15rem;
}

.appoint-form label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
}

.appoint-form label span {
  color: #b23b3b;
}

.appoint-form input,
.appoint-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--white);
  padding: 0.85rem 0.95rem;
  font: inherit;
  color: var(--ink);
}

.appoint-form input:focus,
.appoint-form textarea:focus {
  outline: 1px solid var(--brass);
  border-color: var(--brass);
}

.form-tip {
  margin: 1rem 0 0;
  min-height: 1.5em;
  font-size: 0.95rem;
}

.form-tip.is-ok {
  color: #2f6b3a;
}

.form-tip.is-err {
  color: #b23b3b;
}

@media (max-width: 960px) {
  .case-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .home-campus-links,
  .gallery-grid,
  .case-grid {
    grid-template-columns: 1fr;
  }

  .case-tabs {
    justify-content: flex-start;
  }

  .contact-page {
    padding-bottom: calc(4.5rem + env(safe-area-inset-bottom, 0px));
  }

  .contact-call-btn {
    display: inline-flex;
    width: 100%;
    justify-content: center;
  }

  .contact-call-bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.15rem;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 80;
    min-height: 3.25rem;
    padding: 0.65rem 1rem calc(0.65rem + env(safe-area-inset-bottom, 0px));
    background: var(--brass);
    color: var(--white);
    text-decoration: none;
    box-shadow: 0 -8px 24px rgba(15, 28, 36, 0.18);
  }

  .contact-call-bar-label {
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    opacity: 0.92;
  }

  .contact-call-bar-num {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.02em;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-media img,
  .hero-brand,
  .hero-title,
  .hero-lead,
  .hero-actions,
  .reveal {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
