:root {
  --ink: #121514;
  --muted: #5d6561;
  --line: rgba(18, 21, 20, 0.12);
  --paper: #fbfbf8;
  --soft: #f1f4ef;
  --sage: #2f6658;
  --sage-soft: #dcebe6;
  --clay: #b46a45;
  --gold: #b58a3d;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(18, 21, 20, 0.10);
  --radius: 8px;
  --max: 1160px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.site-shell {
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 251, 248, 0.86);
  border-bottom: 1px solid rgba(18, 21, 20, 0.08);
  backdrop-filter: saturate(180%) blur(18px);
}

.nav {
  width: min(100% - 40px, var(--max));
  height: 54px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

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

.brand-mark {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(18, 21, 20, 0.72);
  font-size: 14px;
}

.nav-links a {
  transition: color 160ms ease;
}

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

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 15px;
  border: 1px solid rgba(47, 102, 88, 0.22);
  border-radius: 999px;
  color: var(--sage);
  background: rgba(220, 235, 230, 0.52);
}

.mobile-menu {
  display: none;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
}

.mobile-menu span,
.mobile-menu::before,
.mobile-menu::after {
  content: "";
  width: 16px;
  height: 1.5px;
  border-radius: 999px;
  background: currentColor;
  display: block;
}

.mobile-menu {
  flex-direction: column;
  gap: 4px;
}

.section {
  padding: 92px 0;
}

.section.tight {
  padding: 64px 0;
}

.inner {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: min(720px, calc(92vh - 54px));
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #f7f4ee;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(251, 251, 248, 0.92) 0%, rgba(251, 251, 248, 0.72) 36%, rgba(251, 251, 248, 0.12) 70%);
  pointer-events: none;
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  padding: 92px 0 82px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--sage);
  font-size: 14px;
  font-weight: 700;
}

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

h1 {
  max-width: 680px;
  margin-bottom: 20px;
  font-size: clamp(52px, 8vw, 104px);
  line-height: 0.95;
  font-weight: 760;
}

.hero-lede {
  max-width: 620px;
  margin-bottom: 34px;
  color: rgba(18, 21, 20, 0.72);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.45;
}

.hero-actions,
.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-size: 15px;
  font-weight: 650;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button.secondary {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(18, 21, 20, 0.14);
  color: var(--ink);
}

.button.sage {
  background: var(--sage);
}

.section-kicker {
  max-width: 720px;
  margin-bottom: 38px;
}

.section-kicker h2 {
  margin-bottom: 14px;
  font-size: clamp(34px, 4.8vw, 64px);
  line-height: 1.04;
  font-weight: 740;
}

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

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

.promise-card,
.article-card,
.contact-panel,
.form-panel,
.detail-card,
.scene-card,
.feedback-card {
  background: var(--white);
  border: 1px solid rgba(18, 21, 20, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 1px 0 rgba(18, 21, 20, 0.03);
}

.promise-card {
  min-height: 248px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.promise-card strong {
  color: var(--sage);
  font-size: 13px;
}

.promise-card h3 {
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.16;
}

.promise-card p,
.article-card p,
.detail-card p,
.scene-card figcaption,
.feedback-card p {
  color: var(--muted);
}

.band {
  background: var(--soft);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}

.portrait-stage {
  position: relative;
  min-height: 520px;
  display: grid;
  align-content: end;
  padding: 36px;
  background: linear-gradient(145deg, #e7eee8, #fff9ef);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.photo-stage {
  padding: 0;
  background: #e8ece6;
}

.photo-stage > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.photo-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 21, 20, 0.02), rgba(18, 21, 20, 0.34));
}

.portrait-note {
  position: relative;
  z-index: 1;
  max-width: 340px;
  padding: 22px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
}

.profile-note {
  max-width: calc(100% - 48px);
  margin: 0 24px 24px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.profile-avatar {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 28px rgba(18, 21, 20, 0.18);
  flex: 0 0 auto;
}

.profile-note strong {
  display: block;
  font-size: 18px;
  line-height: 1.2;
}

.profile-note span {
  display: block;
  margin-top: 4px;
  color: rgba(18, 21, 20, 0.62);
  font-size: 14px;
}

.portrait-note p {
  margin-bottom: 0;
  color: rgba(18, 21, 20, 0.72);
}

.about-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.05;
}

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

.facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.fact {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.fact b {
  display: block;
  margin-bottom: 4px;
  font-size: 24px;
}

.fact span {
  color: var(--muted);
  font-size: 14px;
}

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

.scene-card {
  margin: 0;
  overflow: hidden;
}

.scene-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.scene-card figcaption {
  padding: 18px;
  font-size: 15px;
}

.feedback-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.feedback-card {
  padding: 14px;
}

.feedback-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: contain;
  border-radius: calc(var(--radius) - 2px);
  background: #f7f8f5;
  border: 1px solid rgba(18, 21, 20, 0.06);
}

.feedback-card p {
  margin: 14px 2px 2px;
  font-size: 14px;
  line-height: 1.55;
}

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

.article-card {
  min-height: 276px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.article-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 46px rgba(18, 21, 20, 0.09);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
  color: rgba(18, 21, 20, 0.52);
  font-size: 13px;
}

.article-card h3 {
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.18;
}

.text-link {
  color: var(--sage);
  font-weight: 700;
}

.contact-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 28px;
  align-items: stretch;
}

.contact-panel,
.form-panel {
  padding: 32px;
}

.contact-panel {
  display: grid;
  align-content: center;
  background: var(--ink);
  color: var(--white);
}

.contact-panel p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.72);
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.contact-item {
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-item span {
  display: block;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

.contact-item b {
  display: block;
  margin-top: 3px;
  font-size: 16px;
}

.form-grid {
  display: grid;
  gap: 14px;
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  color: rgba(18, 21, 20, 0.74);
  font-size: 14px;
  font-weight: 650;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(18, 21, 20, 0.14);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  padding: 11px 12px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field textarea {
  min-height: 122px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(47, 102, 88, 0.62);
  box-shadow: 0 0 0 4px rgba(47, 102, 88, 0.10);
}

.form-status {
  min-height: 22px;
  color: var(--sage);
  font-size: 14px;
}

.page-hero {
  padding: 86px 0 58px;
  border-bottom: 1px solid rgba(18, 21, 20, 0.08);
}

.page-hero h1 {
  max-width: 860px;
  font-size: clamp(44px, 7vw, 88px);
}

.page-hero p {
  max-width: 720px;
  color: var(--muted);
  font-size: 20px;
}

.article-list {
  display: grid;
  gap: 18px;
}

.article-row {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.article-row time {
  color: rgba(18, 21, 20, 0.52);
  font-size: 14px;
}

.article-row h2 {
  margin-bottom: 6px;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.15;
}

.article-row p {
  margin-bottom: 0;
  color: var(--muted);
}

.article-detail {
  max-width: 820px;
  margin: 0 auto;
}

.article-detail h1 {
  max-width: 820px;
  font-size: clamp(42px, 6vw, 76px);
}

.detail-card {
  padding: 34px;
}

.detail-card .lead {
  color: var(--ink);
  font-size: 22px;
  line-height: 1.5;
}

.detail-card p {
  font-size: 18px;
}

.site-footer {
  padding: 34px 0;
  border-top: 1px solid rgba(18, 21, 20, 0.10);
  color: rgba(18, 21, 20, 0.58);
  font-size: 13px;
}

.footer-inner {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
}

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

.footer-links a {
  color: rgba(18, 21, 20, 0.68);
}

.hidden {
  display: none !important;
}

@media (max-width: 880px) {
  .nav {
    width: min(100% - 28px, var(--max));
  }

  .mobile-menu {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 61px;
    display: none;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 42px rgba(18, 21, 20, 0.12);
  }

  .nav-links.is-open {
    display: grid;
    gap: 14px;
  }

  .nav-cta {
    justify-self: start;
  }

  .hero {
    min-height: 660px;
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(251, 251, 248, 0.96) 0%, rgba(251, 251, 248, 0.70) 52%, rgba(251, 251, 248, 0.24) 100%);
  }

  .hero-content {
    width: min(100% - 32px, var(--max));
    padding: 76px 0 56px;
  }

  .inner {
    width: min(100% - 32px, var(--max));
  }

  .section {
    padding: 72px 0;
  }

  .promise-grid,
  .article-grid,
  .scene-grid,
  .feedback-grid,
  .split,
  .contact-strip {
    grid-template-columns: 1fr;
  }

  .portrait-stage {
    min-height: 390px;
  }

  .article-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .article-row .text-link {
    justify-self: start;
  }
}

@media (max-width: 560px) {
  .brand span:last-child {
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  h1 {
    font-size: 52px;
  }

  .hero-lede,
  .page-hero p {
    font-size: 18px;
  }

  .hero-actions,
  .action-row {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .promise-card,
  .article-card,
  .contact-panel,
  .form-panel,
  .detail-card,
  .scene-card,
  .feedback-card {
    padding: 22px;
  }

  .scene-card {
    padding: 0;
  }

  .profile-note {
    max-width: calc(100% - 32px);
    margin: 0 16px 16px;
  }

  .profile-avatar {
    width: 58px;
    height: 58px;
  }

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

  .footer-inner {
    display: grid;
  }
}
