:root {
  --ink: #26312d;
  --muted: #6b746f;
  --forest: #254936;
  --sage: #7c8a58;
  --gold: #bea14a;
  --clay: #a66e4f;
  --paper: #fbfaf5;
  --cream: #f3efe4;
  --mist: #eef3e7;
  --white: #ffffff;
  --line: #d9ddcf;
  --shadow: 0 22px 70px rgba(38, 49, 45, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", Arial, sans-serif;
  line-height: 1.72;
  overflow-x: hidden;
}

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

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

p,
h1,
h2,
h3,
figure,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3,
p,
li,
blockquote,
figcaption {
  overflow-wrap: anywhere;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: 76px;
  width: 100%;
  max-width: 100vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(18px, 4vw, 56px);
  background: rgba(251, 250, 245, 0.84);
  border-bottom: 1px solid rgba(217, 221, 207, 0.78);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(251, 250, 245, 0.96);
  box-shadow: 0 12px 34px rgba(38, 49, 45, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--forest);
  font-weight: 800;
  white-space: nowrap;
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(38, 49, 45, 0.78);
  font-size: 15px;
  font-weight: 650;
}

.site-nav a {
  transition: color 160ms ease, background 160ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--forest);
}

.nav-cta {
  padding: 10px 16px;
  color: var(--white);
  background: var(--forest);
  border-radius: 8px;
}

.nav-cta:hover {
  color: var(--white);
  background: #1d3b2c;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  flex-shrink: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.menu-button span {
  display: block;
  height: 2px;
  margin: 4px 0;
  background: var(--forest);
}

.hero {
  min-height: 100svh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 128px clamp(22px, 5vw, 72px) 72px;
  background: var(--forest);
}

.hero-visual {
  position: absolute;
  inset: 0;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 720px;
  min-height: calc(100svh - 200px);
  padding: clamp(28px, 5vw, 64px) 0;
}

.hero::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(251, 250, 245, 0.92) 0%, rgba(251, 250, 245, 0.72) 34%, rgba(251, 250, 245, 0.18) 58%, rgba(251, 250, 245, 0) 78%),
    linear-gradient(0deg, rgba(38, 49, 45, 0.14), rgba(38, 49, 45, 0.02));
  content: "";
}

.hero h1 {
  font-size: clamp(28px, 3.6vw, 48px);
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--sage);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin-bottom: 24px;
  color: var(--forest);
  font-size: clamp(21px, 2.9vw, 39px);
  line-height: 1.12;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 20px;
  color: var(--forest);
  font-size: clamp(15px, 2vw, 26px);
  line-height: 1.18;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 14px;
  color: var(--forest);
  font-size: clamp(13px, 1.3vw, 17px);
  line-height: 1.24;
}

.service-card h3 {
  font-size: clamp(20px, 2.4vw, 30px);
}

.hero-content p {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
}

.button {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  margin-top: 26px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(38, 49, 45, 0.14);
}

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

.section {
  padding: clamp(72px, 9vw, 124px) clamp(20px, 5vw, 72px);
}

.section-inner {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(34px, 7vw, 90px);
}

.section-title h2 {
  margin-bottom: 0;
}

.flow-copy p,
.problem-list p,
.experience p,
.cta-copy p {
  color: var(--muted);
  font-size: 18px;
}

.flow-copy p:last-child,
.problem-list p:last-child {
  margin-bottom: 0;
}

.mission-pair {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.mission-pair span {
  display: block;
  padding: 18px 20px;
  color: var(--forest);
  background: var(--mist);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  font-weight: 800;
}

.services,
.tinted {
  background: var(--cream);
}

.center-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

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

.service-card {
  overflow: hidden;
  display: grid;
  grid-template-rows: 330px 1fr;
  background: var(--white);
  border: 1px solid rgba(217, 221, 207, 0.9);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.service-card:hover img {
  transform: scale(1.035);
}

.service-card > div {
  padding: clamp(24px, 3vw, 34px);
}

.service-kicker {
  margin-bottom: 12px;
  color: var(--clay);
  font-weight: 800;
}

.service-card p:not(.service-kicker) {
  color: var(--muted);
}

.service-card ul {
  display: grid;
  gap: 8px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  color: var(--ink);
}

.service-card li::before,
.check-list li::before {
  color: var(--gold);
  content: "✓";
  font-weight: 900;
  margin-right: 8px;
}

.text-link {
  display: inline-block;
  margin-top: 24px;
  color: var(--forest);
  font-weight: 900;
}

.text-link::after {
  content: " →";
}

.why {
  background: var(--paper);
}

.large-copy p {
  font-size: clamp(19px, 2.2vw, 24px);
  color: var(--ink);
}

.experience {
  background: var(--forest);
  color: var(--white);
}

.experience h2,
.experience .eyebrow {
  color: var(--white);
}

.experience p {
  color: rgba(255, 255, 255, 0.74);
}

.experience-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 7vw, 90px);
  align-items: center;
}

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

.industry-list span {
  min-height: 72px;
  display: flex;
  align-items: center;
  padding: 18px 20px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  font-weight: 800;
}

.voices {
  background: var(--paper);
}

.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

figure {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

blockquote {
  width: 100%;
  margin: 0 0 22px;
  color: var(--ink);
  font-size: 18px;
}

figcaption {
  display: block;
  width: 100%;
  margin: 0;
  color: var(--sage);
  font-weight: 900;
  text-align: left;
}

.cta-section {
  background: var(--mist);
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.66fr);
  gap: clamp(30px, 6vw, 78px);
  align-items: center;
  padding: clamp(30px, 6vw, 58px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.check-list,
.feature-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.feature-list li {
  color: var(--ink);
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 5vw, 70px);
  min-height: 82svh;
  padding: 128px clamp(20px, 5vw, 72px) 72px;
  align-items: center;
  background: var(--paper);
}

.page-copy {
  width: 100%;
  max-width: 620px;
}

.page-copy p {
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
}

.page-hero img {
  width: 100%;
  height: min(66svh, 680px);
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.problem-list {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

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

.columns > div {
  padding: clamp(26px, 4vw, 40px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.feature-list li {
  position: relative;
  padding: 16px 18px;
  background: var(--mist);
  border-radius: 8px;
  font-weight: 760;
}

.feature-list.accent li {
  background: #f5eadf;
}

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

.meaning-grid article {
  padding: clamp(26px, 4vw, 42px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.meaning-grid span {
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--white);
  background: var(--forest);
  border-radius: 50%;
  font-size: 24px;
  font-weight: 900;
}

.meaning-grid p {
  color: var(--muted);
  font-size: 18px;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 22px;
  padding: 24px clamp(20px, 5vw, 72px);
  color: rgba(38, 49, 45, 0.7);
  background: var(--paper);
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.site-footer a {
  color: var(--forest);
  font-weight: 800;
}

@media (max-width: 960px) {
  .menu-button {
    display: block;
    position: absolute;
    top: 17px;
    right: max(20px, calc(100vw - 360px));
  }

  .site-nav {
    position: fixed;
    top: 76px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .hero {
    display: block;
    min-height: 100svh;
    padding: 88px 0 0;
  }

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

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

  .nav-cta {
    text-align: center;
  }

  .page-hero,
  .split,
  .experience-grid,
  .cta-panel,
  .columns {
    grid-template-columns: 1fr;
  }

  .hero-content {
    width: calc(100vw - 80px);
    max-width: 320px;
    min-height: calc(100svh - 180px);
    padding: 64px 0 52px 20px;
    background: transparent;
  }

  .hero-content > * {
    max-width: 100%;
  }

  .service-grid,
  .voice-grid,
  .meaning-grid {
    grid-template-columns: 1fr;
  }

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

  .page-hero img {
    height: 48svh;
    order: -1;
  }
}

@media (max-width: 560px) {
  .site-header {
    height: 68px;
    padding-right: 20px;
  }

  .site-nav {
    top: 68px;
  }

  .brand span {
    font-size: 15px;
  }

  .section {
    padding-left: 20px;
    padding-right: 40px;
  }

  .hero-content,
  .page-hero {
    padding-left: 20px;
    padding-right: 40px;
  }

  .section-inner,
  .page-copy,
  .problem-list,
  .columns > div,
  .cta-panel {
    width: calc(100vw - 110px);
    max-width: 300px;
  }

  .page-hero img {
    width: calc(100vw - 80px);
  }

  h1 {
    font-size: 20px;
  }

  h2 {
    font-size: 15px;
  }

  .hero h1 {
    font-size: 24px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .service-card h3 {
    font-size: 24px;
  }

  .button {
    width: 100%;
    min-width: 0;
  }

  .hero .button {
    width: 100%;
    min-width: 0;
  }

  .service-card {
    grid-template-rows: 240px 1fr;
  }

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

  .cta-panel,
  .problem-list,
  .columns > div,
  figure {
    padding: 22px;
  }
}
