:root {
  --ink: #17211f;
  --muted: #64716d;
  --paper: #fbfaf6;
  --white: #ffffff;
  --line: rgba(23, 33, 31, 0.12);
  --accent: #2d6a58;
  --accent-strong: #0d4f43;
  --gold: #d49b42;
  --coral: #c7654f;
  --shadow: 0 22px 60px rgba(18, 30, 28, 0.16);
  font-family: Inter, "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(20px, 5vw, 56px);
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled,
.site-header.solid {
  background: rgba(251, 250, 246, 0.94);
  color: var(--ink);
  box-shadow: 0 10px 30px rgba(20, 28, 25, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 21px;
  line-height: 1;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 15px;
  font-weight: 700;
}

.site-nav a {
  opacity: 0.86;
}

.site-nav a:hover {
  opacity: 1;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #17211f;
}

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

.hero-media {
  background-image: url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1800&q=82");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(10, 22, 19, 0.88), rgba(10, 22, 19, 0.45) 52%, rgba(10, 22, 19, 0.16)),
    linear-gradient(0deg, rgba(10, 22, 19, 0.88), rgba(10, 22, 19, 0.02) 45%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(860px, 100%);
  padding: 0 clamp(22px, 7vw, 88px) 11vh;
  color: var(--white);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(56px, 11vw, 142px);
  line-height: 0.88;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 660px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(20px, 3vw, 32px);
  line-height: 1.35;
  font-weight: 650;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 850;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button.primary {
  background: var(--gold);
  color: #1e1710;
}

.button.primary.dark {
  background: var(--ink);
  color: var(--white);
}

.button.ghost {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}

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

.section,
.section-band {
  padding: clamp(72px, 10vw, 124px) 0;
}

.section-band {
  background: var(--white);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.8fr);
  gap: clamp(32px, 7vw, 96px);
  align-items: start;
}

h2 {
  margin: 0;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.25;
}

p {
  font-size: 17px;
}

.intro-grid p:last-child {
  margin: 32px 0 0;
  color: var(--muted);
  font-size: 19px;
}

.section-head {
  max-width: 720px;
  margin-bottom: 42px;
}

.section-head.compact {
  max-width: 620px;
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.focus-card {
  min-height: 286px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.card-number {
  display: inline-block;
  margin-bottom: 54px;
  color: var(--coral);
  font-weight: 900;
}

.focus-card p {
  margin: 16px 0 0;
  color: var(--muted);
}

.split-section {
  padding-top: 0;
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.visual-panel {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.visual-panel img {
  aspect-ratio: 4 / 5;
  height: 100%;
  object-fit: cover;
}

.content-panel {
  padding: 12px 0;
}

.steps {
  display: grid;
  gap: 22px;
  margin-top: 38px;
}

.step {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 16px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.step span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-weight: 900;
}

.step p {
  margin: 8px 0 0;
  color: var(--muted);
}

.notes {
  background: #eef3ef;
}

.note-list {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.note-list a {
  display: flex;
  align-items: center;
  min-height: 76px;
  padding: 18px 22px;
  background: #eef3ef;
  font-size: 20px;
  font-weight: 800;
}

.note-list a:hover {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: clamp(28px, 6vw, 78px);
  align-items: start;
}

.contact-box {
  padding: 30px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-box p {
  margin-top: 0;
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  margin-top: 20px;
  color: var(--accent-strong);
  font-weight: 850;
}

.social-links,
.profile-links,
.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-links {
  margin-top: 22px;
}

.social-links a,
.profile-links a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--accent-strong);
  font-size: 14px;
  font-weight: 850;
}

.social-links a:hover,
.profile-links a:hover {
  background: #eef3ef;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 5vw, 56px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

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

.footer-links a {
  font-weight: 800;
}

.about-page {
  background: var(--paper);
}

.about-hero {
  padding: 150px 0 86px;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: clamp(34px, 7vw, 92px);
  align-items: end;
}

.about-hero h1 {
  margin: 0;
  font-size: clamp(54px, 10vw, 118px);
  line-height: 0.94;
  letter-spacing: 0;
}

.about-lead {
  max-width: 760px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.34;
  font-weight: 720;
}

.profile-card {
  padding: 30px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.profile-label {
  margin: 0 0 18px;
  color: var(--coral);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.profile-card h2 {
  font-size: 32px;
}

.profile-links {
  margin-top: 26px;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.9fr);
  gap: clamp(34px, 7vw, 92px);
}

.story-copy p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 19px;
}

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

.credentials-grid.experience-grid {
  grid-template-columns: repeat(2, 1fr);
}

.credentials-grid article {
  min-height: 250px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.credentials-grid p {
  color: var(--muted);
}

.philosophy {
  max-width: 900px;
}

.timeline-grid,
.other-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(320px, 1fr);
  gap: clamp(34px, 7vw, 92px);
}

.career-list {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.career-item {
  padding: 24px;
  background: var(--white);
}

.career-item span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--coral);
  font-size: 14px;
  font-weight: 900;
}

.career-item p {
  margin: 8px 0 0;
  color: var(--muted);
}

.highlight-list {
  display: grid;
  gap: 12px;
}

.highlight-list p {
  margin: 0;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-weight: 820;
}

.principle-list {
  display: grid;
  gap: 1px;
  margin: 36px 0 28px;
  background: var(--line);
  border: 1px solid var(--line);
}

.principle-list p {
  margin: 0;
  padding: 18px 20px;
  background: var(--white);
  font-size: 21px;
  font-weight: 850;
}

.policy-page {
  background: var(--paper);
}

.policy-main {
  padding: 130px 20px 80px;
}

.policy-content {
  width: min(820px, 100%);
  margin: 0 auto;
  padding: clamp(30px, 6vw, 64px);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.policy-content h1 {
  margin: 0 0 10px;
  font-size: clamp(40px, 8vw, 76px);
  line-height: 1;
}

.policy-content section {
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.policy-content h2 {
  font-size: 25px;
}

.policy-content p {
  color: var(--muted);
}

.policy-content a {
  color: var(--accent-strong);
  font-weight: 800;
}

.muted,
.policy-note {
  color: var(--muted);
}

.policy-note {
  margin-top: 36px;
  padding: 18px;
  border-left: 4px solid var(--gold);
  background: var(--paper);
}

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

  .intro-grid,
  .split-grid,
  .contact-grid,
  .about-hero-grid,
  .story-grid,
  .timeline-grid,
  .other-grid {
    grid-template-columns: 1fr;
  }

  .credentials-grid,
  .credentials-grid.experience-grid {
    grid-template-columns: 1fr;
  }

  .visual-panel img {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 14px 20px;
  }

  .nav-toggle {
    display: inline-grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid currentColor;
    border-radius: 6px;
    background: transparent;
    color: inherit;
  }

  .nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: currentColor;
  }

  .site-nav {
    position: absolute;
    top: 70px;
    right: 20px;
    display: none;
    width: min(280px, calc(100vw - 40px));
    padding: 14px;
    border-radius: 8px;
    background: var(--white);
    color: var(--ink);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
    gap: 4px;
  }

  .site-nav a {
    padding: 12px;
  }

  .desktop-only {
    display: none;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-content {
    padding: 0 20px 72px;
  }

  .hero-copy {
    font-size: 21px;
  }

  .button {
    width: 100%;
  }

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

  .focus-card {
    min-height: auto;
  }

  .card-number {
    margin-bottom: 34px;
  }

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