:root {
  color-scheme: light;
  --orange: #ff7a1a;
  --orange-dark: #e95b00;
  --orange-soft: #fff2e8;
  --ink: #1c140d;
  --ink-soft: #4a3b2c;
  --line: rgba(28, 20, 13, 0.1);
  --bg: #fff9f4;
  --shadow: 0 18px 60px rgba(255, 122, 26, 0.15);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", "Noto Sans SC", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top, #fff7ef 0%, #fff 45%, #fff2e5 100%);
  line-height: 1.6;
}

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

.hero {
  min-height: 100vh;
  padding: 32px 6vw 64px;
  background: linear-gradient(120deg, rgba(255, 122, 26, 0.18), transparent 55%);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-mark {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--orange);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  letter-spacing: 1px;
}

.brand-name {
  font-family: "ZCOOL XiaoWei", serif;
  font-size: 22px;
  letter-spacing: 1px;
}

.brand-tag {
  font-size: 12px;
  color: var(--ink-soft);
}

.nav-links {
  display: flex;
  gap: 24px;
  font-weight: 600;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: border 0.2s ease;
}

.nav-links a:hover {
  border-bottom-color: var(--orange);
}

.hero-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  align-items: center;
}

.hero-copy h1 {
  font-family: "ZCOOL XiaoWei", serif;
  font-size: clamp(36px, 5vw, 56px);
  margin: 16px 0 12px;
}

.hero-copy h1 span {
  color: var(--orange-dark);
}

.pill {
  display: inline-block;
  padding: 6px 14px;
  background: var(--orange-soft);
  border-radius: 999px;
  font-size: 13px;
  color: var(--orange-dark);
  font-weight: 600;
}

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

.btn {
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 10px 20px rgba(255, 122, 26, 0.35);
}

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

.btn.ghost {
  border: 1px solid var(--line);
  background: #fff;
}

.hero-metrics {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
}

.metric-value {
  font-size: 22px;
  font-weight: 700;
  color: var(--orange-dark);
}

.metric-label {
  font-size: 12px;
  color: var(--ink-soft);
}

.hero-card {
  background: #fff;
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 122, 26, 0.2);
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.card-title {
  font-weight: 700;
}

.card-subtitle {
  font-size: 12px;
  color: var(--ink-soft);
}

.badge {
  background: var(--orange-soft);
  color: var(--orange-dark);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.timeline {
  display: grid;
  gap: 12px;
}

.timeline-item {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: 16px;
  background: #fff7f0;
}

.timeline-item .time {
  font-weight: 700;
  color: var(--orange-dark);
  min-width: 64px;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  font-size: 13px;
  color: var(--ink-soft);
}

.section {
  padding: 84px 6vw;
  background: #fff;
}

.section.alt {
  background: var(--bg);
}

.section-head {
  max-width: 680px;
  margin-bottom: 36px;
}

.section-head h2 {
  font-family: "ZCOOL XiaoWei", serif;
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 12px;
}

.section-head p {
  color: var(--ink-soft);
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.mission-card {
  padding: 24px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

.mission-card h3 {
  margin-top: 0;
}

.business-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.business-card {
  padding: 26px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(255, 122, 26, 0.15);
  box-shadow: 0 15px 30px rgba(255, 122, 26, 0.08);
}

.business-card h3 {
  margin-top: 0;
  color: var(--orange-dark);
}

.business-card ul {
  padding-left: 18px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.gallery-card {
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.06);
}

.gallery-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  background: #f2f2f2;
}

.gallery-caption {
  padding: 12px 14px;
  font-size: 13px;
  color: var(--ink-soft);
}

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.job-card {
  padding: 22px;
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
}

.job-title {
  font-weight: 700;
  font-size: 18px;
}

.job-meta {
  font-size: 12px;
  color: var(--ink-soft);
  margin: 6px 0 12px;
}

.jobs-cta {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 18px 22px;
  border-radius: 16px;
  background: var(--orange-soft);
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  align-items: stretch;
}

.location-list {
  display: grid;
  gap: 16px;
  max-height: 620px;
  overflow: auto;
  padding-right: 6px;
}

.location-item {
  padding: 18px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line);
}

.location-item span {
  font-size: 12px;
  color: var(--ink-soft);
}

.map-card {
  background: #fff;
  border-radius: 20px;
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.map-card iframe {
  border: 0;
  width: 100%;
  min-height: 360px;
  flex: 1;
}

.map-image {
  position: relative;
  width: 100%;
  min-height: 320px;
  background: #fff7f0;
  flex: 1;
  overflow: hidden;
}

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

.pin {
  position: absolute;
  left: var(--x);
  top: var(--y);
  transform: translate(-50%, -100%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 6px rgba(255, 122, 26, 0.18);
  cursor: pointer;
}

.pin span {
  position: absolute;
  left: 50%;
  bottom: 140%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 6px 10px;
  white-space: nowrap;
  font-size: 12px;
  color: var(--ink);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.pin:hover span {
  opacity: 1;
}

.map-note {
  padding: 12px 16px;
  font-size: 12px;
  color: var(--ink-soft);
  background: #fff7f0;
}

.footer {
  padding: 40px 6vw 60px;
  background: #1c140d;
  color: #fff6ee;
  display: grid;
  gap: 16px;
}

.footer-brand {
  font-family: "ZCOOL XiaoWei", serif;
  font-size: 22px;
}

.footer-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #fff;
  font-size: 13px;
}

.footer-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
}

@media (max-width: 720px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    flex-wrap: wrap;
  }

  .hero {
    padding-top: 24px;
  }
}
