:root {
  --color-warm-white: #fbfaf4;
  --color-rice-grey: #f3f7ed;
  --color-ink-green: #12372a;
  --color-night-green: #0b241b;
  --color-leaf: #2f6f57;
  --color-text: #1b2b23;
  --color-muted: #66736d;
  --color-line: #dfe4d8;
  --color-clay: #b65f37;
  --color-grain: #c8892b;
  --color-grain-hover: #b97822;
  --color-white: #fffef9;
  --color-panel: #ffffff;
  --font-sans: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", sans-serif;
  --font-latin: Inter, Avenir, "Helvetica Neue", Arial, sans-serif;
  --container: 1180px;
  --container-wide: 1360px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --shadow-soft: 0 18px 50px rgba(18, 55, 42, 0.08);
  --header-height: 76px;
}

main [id] {
  scroll-margin-top: calc(var(--header-height) + 20px);
}

/* Lifestyle overview */
.lifestyle-overview-hero__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: 38% center;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.lifestyle-intro,
.lifestyle-relationship {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  gap: 72px;
  align-items: center;
}

.lifestyle-intro--reverse {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
}

.lifestyle-intro__media,
.lifestyle-relationship__media {
  margin: 0;
}

.lifestyle-intro__media img,
.lifestyle-relationship__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.lifestyle-intro__copy h2,
.lifestyle-relationship__copy h2 {
  margin: 0 0 24px;
  color: var(--color-ink-green);
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  line-height: 1.18;
}

.lifestyle-intro__copy > p:last-child,
.lifestyle-relationship__copy > p:last-child {
  margin: 0;
  color: var(--color-muted);
  font-size: 1.06rem;
  line-height: 1.9;
}

.lifestyle-people-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.lifestyle-person-card {
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 38px rgba(18, 55, 42, 0.045);
}

.lifestyle-person-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.lifestyle-person-card div {
  padding: 22px;
}

.lifestyle-person-card h3 {
  margin: 0 0 10px;
  color: var(--color-ink-green);
  font-size: 1.16rem;
  line-height: 1.4;
}

.lifestyle-person-card p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

.lifestyle-page .lifestyle-overview-card img {
  height: auto;
  aspect-ratio: 4 / 3;
}

.lifestyle-page .lifestyle-overview-card div {
  padding: 22px;
}

.lifestyle-page .lifestyle-overview-card h3 {
  margin-bottom: 8px;
}

.lifestyle-relationship {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
}

.lifestyle-entry-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.lifestyle-entry-card {
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 38px rgba(18, 55, 42, 0.045);
}

.lifestyle-entry-card > img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.lifestyle-entry-card--people > img {
  object-position: center 42%;
}

.lifestyle-entry-card__body {
  padding: 26px;
}

.lifestyle-entry-card__body > span {
  color: var(--color-grain);
  font-family: var(--font-latin);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.lifestyle-entry-card h3 {
  margin: 10px 0;
  color: var(--color-ink-green);
  font-size: 1.35rem;
  line-height: 1.35;
}

.lifestyle-entry-card p {
  margin: 0;
  color: var(--color-muted);
}

.lifestyle-entry-card__actions {
  gap: 10px;
}

@media (max-width: 860px) {
  .lifestyle-intro,
  .lifestyle-intro--reverse,
  .lifestyle-relationship,
  .lifestyle-entry-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .lifestyle-intro--reverse .lifestyle-intro__media {
    order: -1;
  }

  .lifestyle-people-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .lifestyle-people-grid {
    grid-template-columns: 1fr;
  }

  .lifestyle-person-card div,
  .lifestyle-entry-card__body {
    padding: 20px;
  }

  .lifestyle-entry-card__actions .btn {
    flex: 1 1 auto;
  }
}

* {
  box-sizing: border-box;
}

html {
  color: var(--color-text);
  background: var(--color-warm-white);
  font-family: var(--font-sans);
  line-height: 1.65;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--color-warm-white);
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

.site-shell {
  min-height: 100vh;
  padding-top: var(--header-height);
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.container-wide {
  width: min(100% - 40px, var(--container-wide));
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--color-leaf);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-hero {
  padding: 96px 0 72px;
  background:
    linear-gradient(120deg, rgba(47, 111, 87, 0.12), transparent 48%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(251, 250, 244, 0)),
    var(--color-warm-white);
  border-bottom: 1px solid var(--color-line);
}

.home-hero {
  min-height: calc(100vh - var(--header-height));
  display: grid;
  align-items: center;
  padding: 78px 0;
  background:
    linear-gradient(120deg, rgba(47, 111, 87, 0.14), transparent 52%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.64), rgba(251, 250, 244, 0)),
    var(--color-warm-white);
  border-bottom: 1px solid var(--color-line);
}

.home-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.82fr);
  gap: 68px;
  align-items: center;
}

.home-hero__copy h1 {
  margin: 0;
  max-width: 780px;
  color: var(--color-ink-green);
  font-size: clamp(3.2rem, 7.2vw, 6.8rem);
  font-weight: 780;
  line-height: 0.98;
}

.home-hero__copy > p:not(.eyebrow) {
  max-width: 720px;
  margin: 30px 0 0;
  color: var(--color-muted);
  font-size: clamp(1.08rem, 1.5vw, 1.28rem);
  line-height: 1.9;
}

.home-hero__media {
  position: relative;
  min-height: 610px;
}

.home-hero__media img {
  position: absolute;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.home-hero__image-main {
  inset: 0 62px 70px 0;
  width: calc(100% - 62px);
  height: calc(100% - 70px);
}

.home-hero__image-top,
.home-hero__image-bottom {
  border: 6px solid var(--color-warm-white);
}

.home-hero__image-top {
  top: 42px;
  right: 0;
  width: 42%;
  height: 32%;
}

.home-hero__image-bottom {
  right: 32px;
  bottom: 0;
  width: 54%;
  height: 34%;
}

.home-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 68px;
  align-items: start;
}

.home-intro h2 {
  margin: 0;
  color: var(--color-ink-green);
  font-size: clamp(2rem, 3.8vw, 3.25rem);
  line-height: 1.18;
}

.home-capabilities {
  margin-top: 54px;
}

.home-village-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.home-section-action {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.home-life-section {
  align-items: center;
}

.home-business-section {
  align-items: center;
}

.home-business-section > div:first-child > p:not(.eyebrow) {
  margin: 20px 0 0;
  color: var(--color-muted);
  font-size: 1.06rem;
  line-height: 1.88;
}

.home-business-cards {
  display: grid;
  gap: 16px;
}

.home-business-cards a {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 8px 18px;
  padding: 22px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 38px rgba(18, 55, 42, 0.045);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.home-business-cards a:hover {
  transform: translateY(-2px);
  border-color: rgba(47, 111, 87, 0.32);
  box-shadow: 0 18px 48px rgba(18, 55, 42, 0.08);
}

.home-business-cards span {
  grid-row: span 2;
  color: var(--color-grain);
  font-family: var(--font-latin);
  font-size: 0.82rem;
  font-weight: 820;
  letter-spacing: 0.08em;
}

.home-business-cards strong {
  color: var(--color-ink-green);
  font-size: 1.14rem;
}

.home-business-cards p {
  margin: 0;
  color: var(--color-muted);
}

.page-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.7fr);
  gap: 56px;
  align-items: end;
}

.page-title {
  margin: 0;
  max-width: 760px;
  color: var(--color-ink-green);
  font-size: clamp(2.35rem, 5vw, 4.4rem);
  line-height: 1.1;
  font-weight: 760;
}

.page-lede {
  margin: 28px 0 0;
  max-width: 720px;
  color: var(--color-muted);
  font-size: clamp(1.05rem, 1.4vw, 1.24rem);
  line-height: 1.8;
}

.hero-note {
  padding: 24px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 44px rgba(18, 55, 42, 0.06);
}

.hero-note p {
  margin: 0;
  color: var(--color-muted);
}

.hero-media {
  align-self: stretch;
}

.hero-media img {
  width: 100%;
  height: clamp(260px, 25vw, 360px);
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.villages-overview-hero {
  padding-bottom: 86px;
}

.village-collage {
  display: grid;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 10px;
  height: 420px;
}

/* Temporary route placeholders */
.placeholder-hero {
  min-height: calc(100svh - 164px);
  display: flex;
  align-items: center;
}

.placeholder-hero__inner {
  width: 100%;
  max-width: 780px;
  padding-block: 24px;
}

.placeholder-hero .page-title {
  max-width: 720px;
}

.placeholder-hero .btn-row {
  margin-top: 34px;
}

@media (max-width: 720px) {
  .placeholder-hero {
    min-height: calc(100svh - 132px);
  }
}

.village-collage__item {
  position: relative;
  min-height: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

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

.village-collage__item:hover img {
  transform: scale(1.025);
}

.village-collage__item span {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 14px;
  color: #fff;
  background: rgba(11, 36, 27, 0.78);
}

.village-collage__item strong {
  font-size: 1rem;
}

.village-collage__item small {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.76rem;
}

.village-collage__item--zhangma img {
  object-position: center 78%;
}

.village-collage__item--hongtian img {
  object-position: center 46%;
}

.village-collage__item--daqian img {
  object-position: center 58%;
}

.section {
  padding: 88px 0;
}

.section--soft {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(243, 247, 237, 0)),
    var(--color-rice-grey);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(280px, 0.55fr);
  gap: 48px;
  margin-bottom: 40px;
  align-items: end;
}

.section-heading h2 {
  margin: 0;
  color: var(--color-ink-green);
  font-size: clamp(1.75rem, 3vw, 2.55rem);
  line-height: 1.22;
}

.section-heading p {
  margin: 0;
  color: var(--color-muted);
}

.grid {
  display: grid;
  gap: 24px;
}

.grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  min-height: 100%;
  padding: 28px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 14px 38px rgba(18, 55, 42, 0.045);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

a.card:hover {
  border-color: rgba(47, 111, 87, 0.32);
  box-shadow: 0 18px 48px rgba(18, 55, 42, 0.08);
  transform: translateY(-2px);
}

.card h3 {
  margin: 0 0 12px;
  color: var(--color-ink-green);
  font-size: 1.22rem;
  line-height: 1.35;
}

.card p {
  margin: 0;
  color: var(--color-muted);
}

.card__meta {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--color-leaf);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-weight: 700;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  background: var(--color-ink-green);
  color: var(--color-white);
  box-shadow: 0 14px 30px rgba(18, 55, 42, 0.18);
}

.btn--primary:hover {
  background: var(--color-night-green);
}

.btn--accent {
  background: var(--color-grain);
  color: #251d12;
  box-shadow: 0 14px 30px rgba(200, 137, 43, 0.2);
}

.btn--accent:hover {
  background: var(--color-grain-hover);
}

.btn--outline {
  border-color: var(--color-ink-green);
  color: var(--color-ink-green);
}

.btn--outline:hover {
  background: var(--color-leaf);
  border-color: var(--color-leaf);
  color: var(--color-white);
}

.btn--disabled,
.btn--disabled:hover {
  cursor: not-allowed;
  opacity: 0.72;
  transform: none;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.tag {
  display: inline-flex;
  padding: 6px 10px;
  border: 1px solid var(--color-line);
  border-radius: 999px;
  color: var(--color-muted);
  font-size: 0.84rem;
  background: rgba(255, 255, 255, 0.78);
}

.placeholder-panel {
  padding: 44px;
  border: 1px dashed rgba(47, 111, 87, 0.28);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.66);
}

.placeholder-panel h2,
.placeholder-panel h3 {
  margin-top: 0;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1fr);
  gap: 72px;
  align-items: start;
}

.split-section--reverse {
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.72fr);
  align-items: center;
}

.split-section h2,
.callout-section h2 {
  margin: 0;
  color: var(--color-ink-green);
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  line-height: 1.18;
}

.rich-copy p {
  margin: 0;
  color: var(--color-muted);
  font-size: 1.06rem;
  line-height: 1.9;
}

.rich-copy p + p {
  margin-top: 18px;
}

.rich-copy h2 {
  margin: 0 0 22px;
}

.source-note {
  color: rgba(102, 115, 109, 0.78);
  font-size: 0.82rem;
}

.source-note--block {
  width: min(100% - 40px, var(--container));
  margin: 22px auto 0;
}

.image-brief {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  padding: 28px;
  border: 1px dashed rgba(47, 111, 87, 0.36);
  border-radius: var(--radius-md);
  background:
    linear-gradient(135deg, rgba(47, 111, 87, 0.12), rgba(200, 137, 43, 0.08)),
    rgba(255, 255, 255, 0.68);
}

.image-brief span {
  color: var(--color-leaf);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.image-brief strong {
  color: var(--color-ink-green);
  font-size: 1.4rem;
  line-height: 1.3;
}

.image-brief p {
  margin: 0;
  color: var(--color-muted);
}

.image-card {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  background: var(--color-panel);
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.village-case-list {
  display: grid;
  gap: 28px;
}

.village-case-card {
  display: grid;
  grid-template-columns: minmax(300px, 0.42fr) minmax(0, 1fr);
  gap: 34px;
  align-items: stretch;
  padding: 18px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 38px rgba(18, 55, 42, 0.04);
}

.village-case-card--reverse {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
}

.village-case-card--reverse img {
  order: 2;
}

.village-case-card > img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.village-case-card__image--hongtian {
  object-position: center 45%;
}

.village-case-card > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 18px 18px 18px 0;
}

.village-case-card--reverse > div {
  padding: 18px 0 18px 18px;
}

.village-case-card span {
  color: var(--color-grain);
  font-family: var(--font-latin);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.village-case-card h3 {
  margin: 12px 0 8px;
  color: var(--color-ink-green);
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  line-height: 1.18;
}

.village-case-card p {
  margin: 0;
  color: var(--color-muted);
}

.village-case-card__lead {
  color: var(--color-ink-green) !important;
  font-size: 1.08rem;
  font-weight: 760;
  margin-bottom: 14px !important;
}

.village-case-card .tag-list {
  margin: 22px 0 22px;
}

.overview-capabilities {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: var(--color-line);
}

.overview-capabilities article {
  padding: 30px;
  background: rgba(255, 255, 255, 0.8);
}

.overview-capabilities span {
  color: var(--color-grain);
  font-family: var(--font-latin);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.overview-capabilities h3 {
  margin: 14px 0 10px;
  color: var(--color-ink-green);
  font-size: 1.2rem;
  line-height: 1.35;
}

.overview-capabilities p {
  margin: 0;
  color: var(--color-muted);
}

.lifestyle-hero {
  padding-bottom: 86px;
}

.lifestyle-hero__media {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 14px;
  align-items: stretch;
}

.lifestyle-hero__media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.lifestyle-hero__media img:last-child {
  min-height: 0;
  height: 76%;
  align-self: end;
}

.lifestyle-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: min(100% - 40px, var(--container));
  margin: 0 auto 36px;
}

.lifestyle-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 14px;
  border: 1px solid var(--color-line);
  border-radius: 999px;
  color: var(--color-muted);
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  font-weight: 700;
}

.lifestyle-nav a.is-current,
.lifestyle-nav a:hover {
  border-color: rgba(47, 111, 87, 0.38);
  color: var(--color-ink-green);
  background: rgba(243, 247, 237, 0.9);
}

.lifestyle-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: min(100% - 40px, var(--container));
  margin: 0 auto 36px;
}

.lifestyle-tabs a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 13px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  color: var(--color-muted);
  background: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
  font-weight: 760;
}

.lifestyle-tabs a:hover {
  border-color: rgba(47, 111, 87, 0.36);
  color: var(--color-ink-green);
}

.lifestyle-card {
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 38px rgba(18, 55, 42, 0.045);
}

.lifestyle-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.lifestyle-card__body {
  padding: 24px;
}

.lifestyle-card span,
.lifestyle-feature span,
.lifestyle-story span {
  color: var(--color-grain);
  font-family: var(--font-latin);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lifestyle-card h3,
.lifestyle-feature h2,
.lifestyle-feature h3,
.lifestyle-story h3 {
  margin: 10px 0 10px;
  color: var(--color-ink-green);
  font-size: 1.24rem;
  line-height: 1.35;
}

.lifestyle-card p,
.lifestyle-feature p,
.lifestyle-story p {
  margin: 0;
  color: var(--color-muted);
}

.lifestyle-feature {
  display: grid;
  grid-template-columns: minmax(320px, 0.54fr) minmax(0, 1fr);
  gap: 34px;
  align-items: stretch;
  padding: 18px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 38px rgba(18, 55, 42, 0.04);
}

.lifestyle-feature + .lifestyle-feature {
  margin-top: 24px;
}

.lifestyle-feature--reverse {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.54fr);
}

.lifestyle-feature--reverse .lifestyle-feature__media {
  order: 2;
}

.lifestyle-feature__media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.lifestyle-feature__media img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.lifestyle-feature__media img:first-child {
  grid-row: span 2;
}

.lifestyle-feature__media--single {
  grid-template-columns: 1fr;
}

.lifestyle-feature__media--single img,
.lifestyle-feature__media--single img:first-child {
  min-height: 360px;
  grid-row: auto;
}

.lifestyle-feature__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px 18px;
}

.lifestyle-feature__copy p + p {
  margin-top: 14px;
}

.lifestyle-pillars {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: var(--color-line);
}

.lifestyle-pillars article {
  padding: 26px;
  background: rgba(255, 255, 255, 0.82);
}

.lifestyle-pillars h3 {
  margin: 0 0 10px;
  color: var(--color-ink-green);
  font-size: 1.12rem;
}

.lifestyle-pillars p {
  margin: 0;
  color: var(--color-muted);
}

.lifestyle-story-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.lifestyle-story {
  display: grid;
  grid-template-columns: minmax(160px, 0.42fr) minmax(0, 1fr);
  gap: 20px;
  align-items: stretch;
  padding: 14px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.78);
}

.lifestyle-story img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.lifestyle-story div {
  align-self: center;
  padding: 10px 10px 10px 0;
}

.lifestyle-note {
  padding: 26px;
  border-left: 3px solid var(--color-grain);
  background: rgba(255, 255, 255, 0.74);
  color: var(--color-muted);
}

.lifestyle-note strong {
  color: var(--color-ink-green);
}

.lifestyle-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.lifestyle-overview-card {
  overflow: hidden;
  min-height: 100%;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 38px rgba(18, 55, 42, 0.045);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.lifestyle-overview-card:hover {
  transform: translateY(-2px);
  border-color: rgba(47, 111, 87, 0.32);
  box-shadow: 0 18px 48px rgba(18, 55, 42, 0.08);
}

.lifestyle-overview-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.lifestyle-overview-card div {
  padding: 24px;
}

.lifestyle-overview-card span {
  color: var(--color-grain);
  font-family: var(--font-latin);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lifestyle-overview-card h3 {
  margin: 10px 0 10px;
  color: var(--color-ink-green);
  font-size: 1.25rem;
  line-height: 1.35;
}

.lifestyle-overview-card p {
  margin: 0;
  color: var(--color-muted);
}

.lifestyle-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.lifestyle-gallery img,
.lifestyle-gallery a {
  display: block;
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  background: var(--color-rice-grey);
}

.lifestyle-gallery a {
  overflow: hidden;
}

.lifestyle-gallery a img {
  height: 100%;
  transition: transform 180ms ease;
}

.lifestyle-gallery a:hover img {
  transform: scale(1.03);
}

.event-list {
  display: grid;
  gap: 24px;
}

.event-list-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
  padding: 16px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 38px rgba(18, 55, 42, 0.045);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.event-list-card:hover {
  transform: translateY(-2px);
  border-color: rgba(47, 111, 87, 0.32);
  box-shadow: 0 18px 48px rgba(18, 55, 42, 0.08);
}

.event-list-card img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.event-list-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 16px 12px 16px 0;
}

.event-list-card span {
  color: var(--color-grain);
  font-family: var(--font-latin);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.event-list-card h2,
.event-list-card h3 {
  margin: 12px 0 10px;
  color: var(--color-ink-green);
  font-size: clamp(1.45rem, 2.6vw, 2.1rem);
  line-height: 1.22;
}

.event-list-card p {
  margin: 0;
  color: var(--color-muted);
}

.event-list-card .tag-list {
  margin: 20px 0 0;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.plan-card {
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 38px rgba(18, 55, 42, 0.045);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.plan-card:hover {
  transform: translateY(-2px);
  border-color: rgba(47, 111, 87, 0.32);
  box-shadow: 0 18px 48px rgba(18, 55, 42, 0.08);
}

.plan-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.plan-card__body {
  padding: 24px;
}

.plan-card span,
.plan-feature span,
.plan-path span {
  color: var(--color-grain);
  font-family: var(--font-latin);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plan-card h3,
.plan-feature h3,
.plan-path h3 {
  margin: 10px 0 10px;
  color: var(--color-ink-green);
  line-height: 1.32;
}

.plan-card h3 {
  font-size: 1.24rem;
}

.plan-card p,
.plan-feature p,
.plan-path p {
  margin: 0;
  color: var(--color-muted);
}

.plan-feature {
  display: grid;
  grid-template-columns: minmax(320px, 0.56fr) minmax(0, 1fr);
  gap: 42px;
  align-items: center;
}

.plan-feature--reverse {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.56fr);
}

.plan-feature--reverse figure {
  order: 2;
}

.plan-feature figure {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.plan-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.plan-feature h3 {
  font-size: clamp(1.75rem, 3vw, 2.45rem);
}

.plan-feature p + p {
  margin-top: 16px;
}

.plan-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: var(--color-line);
}

.plan-benefits article {
  padding: 28px;
  background: rgba(255, 255, 255, 0.82);
}

.plan-benefits h3 {
  margin: 0 0 10px;
  color: var(--color-ink-green);
  font-size: 1.12rem;
}

.plan-benefits p {
  margin: 0;
  color: var(--color-muted);
}

.plan-path-list {
  display: grid;
  gap: 18px;
}

.plan-path {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 26px;
  padding: 26px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.76);
}

.plan-audience {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(0, 1fr);
  gap: 32px;
  align-items: stretch;
}

.plan-audience > div {
  padding: 32px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.78);
}

.plan-audience h3 {
  margin: 0 0 16px;
  color: var(--color-ink-green);
}

/* Plans: progressive product journey */
.plan-journey {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(40, 54, 43, 0.16);
  border: 1px solid rgba(40, 54, 43, 0.16);
}

.plan-journey a {
  min-height: 360px;
  padding: 34px 28px;
  background: var(--paper, #fffdf8);
  color: inherit;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: background-color 180ms ease, transform 180ms ease;
}

.plan-journey a:hover { background: #f4f0e7; transform: translateY(-4px); }
.plan-journey a.is-core { background: #28362b; color: #fff; }
.plan-journey b { font: 500 2.8rem/1 Georgia, serif; color: var(--accent, #a44f2d); }
.plan-journey span { margin-top: 46px; color: #807768; font-size: 0.78rem; }
.plan-journey .is-core span { color: #c9c3b8; }
.plan-journey h3 { margin: 8px 0 12px; font-size: 1.45rem; }
.plan-journey p { margin: 0; color: #5e625c; line-height: 1.75; }
.plan-journey .is-core p { color: #d9ddd8; }
.plan-journey em { margin-top: auto; padding-top: 28px; color: var(--accent, #a44f2d); font-style: normal; font-size: 0.78rem; }

.plans-loop,
.village-experience-head,
.booking-flow {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: center;
}

.plans-loop figure { margin: 0; }
.plans-loop img,
.village-experience-head > img { width: 100%; height: 520px; object-fit: cover; }
.plans-loop h2,
.village-experience-head h2,
.booking-flow h2 { margin: 8px 0 20px; }
.plans-loop p:not(.eyebrow),
.village-experience-head p:not(.eyebrow),
.booking-flow p:not(.eyebrow) { color: #5d625c; line-height: 1.9; }

.plan-principles { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }
.plan-principles article { border-top: 1px solid rgba(40,54,43,.25); padding-top: 20px; }
.plan-principles span { color: var(--accent, #a44f2d); font-family: Georgia, serif; }
.plan-principles h3 { margin: 24px 0 8px; }
.plan-principles p { color: #62665f; line-height: 1.7; }

/* Plans overview: four independent ways into rural life */
.plans-overview-hero .page-hero__grid {
  align-items: center;
}

.plans-overview-title {
  max-width: 820px;
}

.plans-overview-hero__media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 10px;
  height: 420px;
}

.plans-overview-hero__media img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 14px 34px rgba(18, 55, 42, 0.08);
}

.plans-overview-hero__media img:nth-child(1) { object-position: center 48%; }
.plans-overview-hero__media img:nth-child(2) { object-position: center 44%; }
.plans-overview-hero__media img:nth-child(3) { object-position: center 58%; }
.plans-overview-hero__media img:nth-child(4) { object-position: center 56%; }

.plans-overview-intro {
  align-items: start;
}

.plans-overview-programs,
.plans-overview-choose {
  scroll-margin-top: calc(var(--header-height) + 20px);
}

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

.plans-overview-card {
  overflow: hidden;
  border: 1px solid rgba(40, 54, 43, 0.16);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 38px rgba(18, 55, 42, 0.05);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.plans-overview-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(18, 55, 42, 0.09);
}

.plans-overview-card > a {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}

.plans-overview-card figure {
  margin: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--color-line);
}

.plans-overview-card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.plans-overview-card:nth-child(2) figure img { object-position: center 42%; }
.plans-overview-card:nth-child(3) figure img { object-position: center 58%; }
.plans-overview-card:nth-child(4) figure img { object-position: center 56%; }
.plans-overview-card:hover figure img { transform: scale(1.018); }

.plans-overview-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 30px;
}

.plans-overview-card__kicker {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 0;
  color: #7a746b;
  font-size: 0.82rem;
}

.plans-overview-card__kicker span {
  color: var(--accent, #a44f2d);
  font: 500 1.25rem/1 Georgia, serif;
}

.plans-overview-card h3 {
  margin: 16px 0 12px;
  color: var(--color-ink-green);
  font-size: clamp(1.65rem, 2.4vw, 2.15rem);
}

.plans-overview-card__body > p:not(.plans-overview-card__kicker) {
  margin: 0;
  color: #5e625c;
  line-height: 1.82;
}

.plans-overview-card dl {
  margin: 26px 0 0;
  border-top: 1px solid rgba(40, 54, 43, 0.16);
}

.plans-overview-card dl div {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(40, 54, 43, 0.16);
}

.plans-overview-card dt {
  color: var(--color-ink-green);
  font-weight: 700;
}

.plans-overview-card dd {
  margin: 0;
  color: #666961;
  line-height: 1.65;
}

.plans-overview-card__link {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: auto;
  padding-top: 28px;
  color: var(--accent, #a44f2d);
  font-weight: 700;
}

.plans-overview-card__link b {
  font-size: 1.15rem;
  transition: transform 180ms ease;
}

.plans-overview-card:hover .plans-overview-card__link b {
  transform: translateX(4px);
}

.plans-overview-choice-list {
  margin-top: 48px;
  border-top: 1px solid rgba(40, 54, 43, 0.2);
}

.plans-overview-choice-list a {
  display: grid;
  grid-template-columns: 56px minmax(320px, 1.25fr) minmax(280px, 0.9fr) 28px;
  gap: 24px;
  align-items: center;
  padding: 25px 14px;
  border-bottom: 1px solid rgba(40, 54, 43, 0.2);
  color: inherit;
  text-decoration: none;
  transition: padding-left 180ms ease, background-color 180ms ease;
}

.plans-overview-choice-list a:hover {
  padding-left: 24px;
  background: rgba(237, 242, 233, 0.68);
}

.plans-overview-choice-list b {
  color: var(--accent, #a44f2d);
  font: 500 1.45rem/1 Georgia, serif;
}

.plans-overview-choice-list h3 {
  margin: 0;
  color: var(--color-ink-green);
  font-size: 1.08rem;
}

.plans-overview-choice-list p {
  margin: 0;
  color: #666961;
  line-height: 1.65;
}

.plans-overview-choice-list span {
  color: var(--accent, #a44f2d);
  font-size: 1.2rem;
}

.plans-overview-start .callout-section {
  box-shadow: 0 18px 44px rgba(18, 55, 42, 0.06);
}

@media (max-width: 980px) {
  .plans-overview-grid {
    grid-template-columns: 1fr;
  }

  .plans-overview-choice-list a {
    grid-template-columns: 48px minmax(0, 1fr) 24px;
  }

  .plans-overview-choice-list p {
    grid-column: 2 / 3;
  }

  .plans-overview-choice-list span {
    grid-column: 3;
    grid-row: 1 / 3;
  }
}

@media (max-width: 720px) {
  .plans-overview-hero__media {
    height: 320px;
  }

  .plans-overview-grid {
    margin-top: 34px;
  }

  .plans-overview-card__body {
    padding: 24px 22px 26px;
  }

  .plans-overview-card dl div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .plans-overview-choice-list {
    margin-top: 32px;
  }

  .plans-overview-choice-list a,
  .plans-overview-choice-list a:hover {
    grid-template-columns: 34px minmax(0, 1fr) 20px;
    gap: 10px;
    padding: 22px 4px;
  }

  .plans-overview-choice-list h3 {
    font-size: 1rem;
    line-height: 1.55;
  }

  .plans-overview-choice-list p {
    line-height: 1.7;
  }
}

.plan-section-nav {
  position: sticky;
  top: 76px;
  z-index: 5;
  display: flex;
  justify-content: center;
  gap: 4px;
  padding: 14px;
  background: rgba(250,248,242,.96);
  box-shadow: 0 8px 24px rgba(29,37,31,.08);
}
.plan-section-nav a { padding: 10px 22px; color: #314037; text-decoration: none; font-size: .9rem; }
.plan-section-nav a:hover { background: #e9e5db; }
.village-experience-head--reverse > div { order: 2; }
.village-experience-head--reverse > img { order: 1; }

.experience-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; margin-top: 48px; }
.experience-grid article { background: #fff; padding-bottom: 24px; }
.experience-grid img { width: 100%; height: 230px; object-fit: cover; }
.experience-grid span,
.experience-grid h3,
.experience-grid p { margin-left: 22px; margin-right: 22px; }
.experience-grid span { display: block; margin-top: 20px; color: var(--accent, #a44f2d); font-size: .76rem; }
.experience-grid h3 { margin-top: 8px; margin-bottom: 8px; }
.experience-grid p { color: #62665f; line-height: 1.7; }

/* Plans: rural first visit */
.village-experience-page [id] {
  scroll-margin-top: calc(var(--header-height) + 88px);
}

.experience-hero {
  padding-top: 78px;
  padding-bottom: 64px;
}

.experience-hero .page-hero__grid {
  align-items: center;
}

.experience-hero .page-lede {
  max-width: 650px;
}

.experience-hero__villages {
  height: 400px;
}

.experience-section-nav {
  max-width: 720px;
}

.experience-intro {
  padding-bottom: clamp(78px, 9vw, 116px);
}

.experience-quick-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(40, 54, 43, 0.2);
  border-bottom: 1px solid rgba(40, 54, 43, 0.2);
}

.experience-quick-grid a {
  min-width: 0;
  padding: 28px 30px 30px;
  color: inherit;
  text-decoration: none;
  transition: background-color 180ms ease;
}

.experience-quick-grid a + a {
  border-left: 1px solid rgba(40, 54, 43, 0.2);
}

.experience-quick-grid a:hover {
  background: rgba(231, 238, 227, 0.66);
}

.experience-quick-grid span,
.experience-quick-grid em {
  color: var(--color-grain);
  font-size: 0.78rem;
  font-style: normal;
}

.experience-quick-grid h3 {
  margin: 38px 0 10px;
  color: var(--color-ink-green);
  font-size: 1.4rem;
}

.experience-quick-grid p {
  min-height: 3.5em;
  margin: 0 0 24px;
  color: var(--color-muted);
  line-height: 1.75;
}

.experience-village {
  padding: clamp(82px, 9vw, 124px) 0;
  border-top: 1px solid rgba(40, 54, 43, 0.12);
}

.experience-village--soft {
  background: #edf2e9;
}

.experience-village__layout {
  display: grid;
  grid-template-columns: 54px minmax(0, 0.94fr) minmax(340px, 1fr);
  gap: clamp(28px, 4vw, 66px);
  align-items: center;
}

.experience-village__layout--reverse .experience-village__media {
  grid-column: 2;
  grid-row: 1;
}

.experience-village__layout--reverse .experience-village__copy {
  grid-column: 3;
  grid-row: 1;
}

.experience-village__index {
  align-self: start;
  padding-top: 4px;
  color: var(--color-grain);
  font: 500 2rem/1 var(--font-latin);
}

.experience-village__copy h2 {
  margin: 8px 0 22px;
  color: var(--color-ink-green);
  font-size: clamp(2rem, 3.35vw, 3.15rem);
  line-height: 1.18;
}

.experience-village__lede {
  margin: 0;
  color: var(--color-muted);
  font-size: 1.02rem;
  line-height: 1.9;
}

.experience-village__media {
  min-width: 0;
  min-height: 500px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-sm);
}

.experience-village__media img {
  display: block;
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center;
}

.experience-village__media--hongtian img {
  object-position: center 45%;
}

.experience-village__facts {
  margin: 30px 0 0;
  padding: 0;
  border-top: 1px solid rgba(40, 54, 43, 0.2);
  list-style: none;
}

.experience-village__facts li {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(40, 54, 43, 0.2);
}

.experience-village__facts strong {
  color: var(--color-grain);
  font-size: 0.82rem;
}

.experience-village__facts span {
  color: var(--color-muted);
  line-height: 1.68;
}

.experience-village__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  margin-top: 26px;
}

.experience-village__actions .text-link {
  font-size: 0.92rem;
}

.experience-gallery {
  margin-top: clamp(64px, 8vw, 104px);
  padding-top: 40px;
  border-top: 1px solid rgba(40, 54, 43, 0.22);
}

.experience-gallery__heading {
  display: grid;
  grid-template-columns: minmax(180px, 0.4fr) minmax(0, 1fr);
  gap: 36px;
  align-items: baseline;
}

.experience-gallery__heading h3 {
  margin: 0;
  color: var(--color-ink-green);
  font-size: clamp(1.75rem, 3vw, 2.55rem);
}

.experience-gallery__group {
  margin-top: 38px;
}

.experience-gallery__group + .experience-gallery__group {
  margin-top: 54px;
}

.experience-gallery__label {
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(40, 54, 43, 0.18);
  color: var(--color-grain);
  font-size: 0.82rem;
  font-weight: 700;
}

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

.experience-gallery figure {
  min-width: 0;
  margin: 0;
}

.experience-gallery img {
  display: block;
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.experience-gallery img.experience-gallery__image--bar {
  object-position: center 58%;
}

.experience-gallery img.experience-gallery__image--member-center {
  object-position: center 62%;
}

.experience-gallery img.experience-gallery__image--sunset {
  object-position: center 64%;
}

.experience-gallery img.experience-gallery__image--cafe {
  object-position: center 46%;
}

.experience-gallery img.experience-gallery__image--piano-room {
  object-position: center 68%;
}

.experience-gallery img.experience-gallery__image--temple {
  object-position: center 64%;
}

.experience-gallery img.experience-gallery__image--farm-work {
  object-position: center 66%;
}

.experience-gallery img.experience-gallery__image--daqian-restaurant {
  object-position: center 54%;
}

.experience-gallery img.experience-gallery__image--daqian-museum {
  object-position: center 58%;
}

.experience-gallery img.experience-gallery__image--daqian-village-work {
  object-position: center 64%;
}

.experience-gallery img.experience-gallery__image--daqian-tomato {
  object-position: center 66%;
}

.experience-gallery figcaption {
  margin-top: 15px;
  color: var(--color-muted);
  line-height: 1.72;
}

.experience-offers {
  margin-top: clamp(64px, 8vw, 104px);
  padding-top: 40px;
  border-top: 1px solid rgba(40, 54, 43, 0.22);
}

.experience-offers--booking {
  margin-top: 0;
  margin-bottom: clamp(56px, 5vw, 68px);
  padding-top: 0;
  padding-bottom: clamp(56px, 5vw, 68px);
  border-top: 0;
  border-bottom: 1px solid rgba(40, 54, 43, 0.2);
}

.experience-offers__heading {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(300px, 0.62fr);
  gap: 48px;
  align-items: end;
}

.experience-offers__heading h3 {
  margin: 8px 0 0;
  color: var(--color-ink-green);
  font-size: clamp(1.75rem, 3vw, 2.55rem);
}

.experience-offers__heading > p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.8;
}

.experience-offer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 36px;
}

.experience-offer {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 32px;
  border: 1px solid rgba(40, 54, 43, 0.18);
  border-top: 3px solid var(--color-grain);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.82);
}

.experience-offer--stay {
  background: #fff;
}

.experience-offer__topline {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: start;
}

.experience-offer__topline > span {
  color: var(--color-grain);
  font-size: 0.82rem;
  font-weight: 700;
}

.experience-offer__topline > strong {
  color: var(--color-ink-green);
  font: 500 2.4rem/1 var(--font-latin);
}

.experience-offer__topline small {
  margin-left: 4px;
  font: 600 0.82rem/1 var(--font-sans);
}

.experience-offer h4 {
  margin: 32px 0 10px;
  color: var(--color-ink-green);
  font-size: 1.35rem;
}

.experience-offer > p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.75;
}

.experience-offer ul {
  display: grid;
  gap: 11px;
  margin: 24px 0 30px;
  padding: 0;
  list-style: none;
}

.experience-offer li {
  position: relative;
  padding-left: 22px;
  color: #414b44;
  line-height: 1.68;
}

.experience-offer li::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-leaf);
  content: "";
}

.experience-offer__note {
  display: block;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(40, 54, 43, 0.16);
  color: #777c75;
  line-height: 1.65;
}

.experience-booking {
  background: #e7eee3;
}

.experience-booking__choices {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: end;
  padding-top: 44px;
  border-top: 1px solid rgba(40, 54, 43, 0.2);
}

.experience-booking__choices h2 {
  margin: 8px 0 14px;
  color: var(--color-ink-green);
}

.experience-booking__choices p:not(.eyebrow) {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.8;
}

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

.experience-booking__buttons .btn {
  min-width: 0;
  padding-right: 18px;
  padding-left: 18px;
  white-space: nowrap;
}

.booking-flow { align-items: start; margin-bottom: 52px; }
.booking-flow ol { margin: 0; padding: 0; list-style: none; }
.booking-flow li { display: grid; grid-template-columns: 54px 1fr; gap: 18px; padding: 18px 0; border-bottom: 1px solid rgba(40,54,43,.18); }
.booking-flow li b { color: var(--accent, #a44f2d); font: 500 1.25rem Georgia, serif; }
.booking-flow li span { color: #62665f; line-height: 1.6; }
.booking-flow li strong { display: block; margin-bottom: 3px; color: #27342c; }

.new-resident-ways { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.new-resident-ways article { min-height: 280px; padding: 30px 26px; background: #fff; border-top: 3px solid #a44f2d; }
.new-resident-ways span,
.club-directions span { color: var(--accent, #a44f2d); font-size: .76rem; }
.new-resident-ways h3 { margin: 52px 0 12px; }
.new-resident-ways p { color: #62665f; line-height: 1.75; }

.club-directions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
.club-directions article { display: grid; grid-template-rows: 320px 1fr; background: #fff; }
.club-directions img { width: 100%; height: 100%; object-fit: cover; }
.club-directions article > div { padding: 30px; }
.club-directions h3 { margin: 8px 0 12px; }
.club-directions p { color: #62665f; line-height: 1.75; }

.co-creation-club-cases .project-cases__intro h2,
.new-resident-cases .project-cases__intro h2 {
  margin: 8px 0 0;
  color: var(--color-ink-green);
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  line-height: 1.22;
}

.co-creation-club-page .page-title span,
.new-resident-page .page-title span {
  display: block;
  white-space: nowrap;
}

.text-link.club-case__link,
.text-link.new-resident-case__link {
  display: flex;
  width: fit-content;
  margin: 20px 0 0 auto;
  font-size: .94rem;
  line-height: 1.7;
}

.club-participation {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 42px;
  border-top: 1px solid rgba(40, 54, 43, .2);
  border-bottom: 1px solid rgba(40, 54, 43, .2);
}

.club-participation article {
  min-width: 0;
  min-height: 220px;
  padding: 26px 24px 28px;
}

.club-participation article + article { border-left: 1px solid rgba(40, 54, 43, .2); }
.club-participation span { color: var(--accent, #a44f2d); font-family: Georgia, serif; }
.club-participation h3 { margin: 44px 0 10px; color: #2d3931; font-size: 1.08rem; }
.club-participation p { margin: 0; color: #62665f; line-height: 1.72; }

.club-growth {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(320px, .72fr);
  gap: clamp(42px, 8vw, 112px);
  align-items: start;
}

.club-growth h2 {
  margin: 8px 0 18px;
  color: var(--color-ink-green);
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  line-height: 1.22;
}

.club-growth__intro > p:not(.eyebrow) { margin: 0; color: #62665f; font-size: 1.02rem; line-height: 1.85; }
.club-growth__relations { margin: 0; border-top: 1px solid rgba(40, 54, 43, .2); }
.club-growth__relations > div { display: grid; grid-template-columns: 90px 1fr; gap: 20px; padding: 17px 0; border-bottom: 1px solid rgba(40, 54, 43, .2); }
.club-growth__relations dt { color: var(--accent, #a44f2d); font-weight: 700; }
.club-growth__relations dd { margin: 0; color: #62665f; line-height: 1.7; }

@media (max-width: 980px) {
  .plan-journey,
  .plan-principles,
  .new-resident-ways { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .experience-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .experience-village__layout {
    grid-template-columns: 48px minmax(0, 1fr);
  }
  .experience-village__media,
  .experience-village__layout--reverse .experience-village__media {
    grid-column: 2;
    grid-row: auto;
  }
  .experience-village__copy,
  .experience-village__layout--reverse .experience-village__copy {
    grid-column: 2;
    grid-row: auto;
  }
  .experience-village__index { grid-column: 1; grid-row: 1; }
  .experience-village__media,
  .experience-village__media img { min-height: 0; height: 390px; }
  .experience-gallery__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .experience-booking__choices { grid-template-columns: 1fr; }
  .club-participation { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .club-participation article:nth-child(3) { border-top: 1px solid rgba(40, 54, 43, .2); border-left: 0; }
  .club-participation article:nth-child(4) { border-top: 1px solid rgba(40, 54, 43, .2); }
}

@media (max-width: 720px) {
  .co-creation-club-page .page-title { font-size: clamp(2rem, 9vw, 2.65rem); }
  .new-resident-page .page-title { font-size: clamp(1.9rem, 8vw, 2.55rem); }
  .plan-journey,
  .plan-principles,
  .new-resident-ways,
  .experience-grid,
  .club-directions,
  .plans-loop,
  .village-experience-head,
  .booking-flow,
  .club-participation,
  .club-growth { grid-template-columns: 1fr; }
  .experience-hero { padding: 42px 0 38px; }
  .experience-hero .page-hero__grid { gap: 32px; }
  .experience-hero__villages { height: 280px; }
  .experience-quick-grid,
  .experience-offer-grid,
  .experience-offers__heading,
  .experience-village__layout,
  .experience-booking__choices,
  .experience-booking__buttons { grid-template-columns: 1fr; }
  .experience-quick-grid a { padding: 24px 8px; }
  .experience-quick-grid a + a { border-top: 1px solid rgba(40, 54, 43, 0.2); border-left: 0; }
  .experience-quick-grid h3 { margin-top: 22px; }
  .experience-quick-grid p { min-height: 0; }
  .experience-village { padding: 72px 0; }
  .experience-village__index,
  .experience-village__copy,
  .experience-village__layout--reverse .experience-village__copy,
  .experience-village__media,
  .experience-village__layout--reverse .experience-village__media {
    grid-column: 1;
    grid-row: auto;
  }
  .experience-village__index { font-size: 1.5rem; }
  .experience-village__copy h2 { font-size: 2rem; }
  .experience-village__media,
  .experience-village__media img { height: 300px; }
  .experience-village__facts li { grid-template-columns: 1fr; gap: 5px; }
  .experience-village__actions { flex-direction: column; align-items: flex-start; }
  .experience-gallery__heading,
  .experience-gallery__grid { grid-template-columns: 1fr; }
  .experience-gallery__heading { gap: 8px; }
  .experience-gallery img { height: 240px; }
  .experience-gallery__grid { gap: 30px; }
  .experience-offer { padding: 26px 22px; }
  .experience-booking__buttons .btn { width: 100%; }
  .plan-journey a { min-height: 300px; }
  .plans-loop img,
  .village-experience-head > img { height: 340px; }
  .village-experience-head--reverse > div,
  .village-experience-head--reverse > img { order: initial; }
  .plan-section-nav { top: 64px; justify-content: flex-start; overflow-x: auto; }
  .plan-section-nav a { white-space: nowrap; padding: 9px 14px; }
  .club-directions article { grid-template-rows: 240px 1fr; }
  .club-participation article { min-height: 0; padding: 22px 0 24px; }
  .club-participation article + article,
  .club-participation article:nth-child(3),
  .club-participation article:nth-child(4) { border-top: 1px solid rgba(40, 54, 43, .2); border-left: 0; }
  .club-participation h3 { margin-top: 24px; }
  .club-growth__relations > div { grid-template-columns: 72px 1fr; gap: 14px; }
}

/* Business: partner-based cooperation model */
.partner-paths { display: grid; border-top: 1px solid rgba(40,54,43,.2); }
.partner-paths a { display: grid; grid-template-columns: 100px 1fr; gap: 28px; padding: 28px 18px; border-bottom: 1px solid rgba(40,54,43,.2); color: inherit; text-decoration: none; transition: background-color 180ms ease, padding-left 180ms ease; }
.partner-paths a:hover { padding-left: 28px; background: rgba(255,255,255,.7); }
.partner-paths b { color: var(--accent, #a44f2d); font: 500 2.1rem/1 Georgia, serif; }
.partner-paths a > div { display: grid; grid-template-columns: 130px minmax(210px,.8fr) minmax(260px,1.2fr) 170px; gap: 24px; align-items: center; }
.partner-paths span { color: #7e8179; font-size: .76rem; text-transform: uppercase; }
.partner-paths h3 { margin: 0; font-size: 1.35rem; }
.partner-paths p { margin: 0; color: #61655f; line-height: 1.65; }
.partner-paths em { color: var(--accent, #a44f2d); font-style: normal; font-size: .8rem; text-align: right; }

.business-system { display: grid; grid-template-columns: minmax(0,1fr) minmax(360px,.85fr); gap: clamp(40px,8vw,110px); align-items: start; }
.business-system h2 { margin: 8px 0 18px; }
.business-system p:not(.eyebrow) { color: #60655f; line-height: 1.85; }
.business-system ol { margin: 0; padding: 0; list-style: none; counter-reset: business-step; }
.business-system li { display: grid; grid-template-columns: 110px 1fr; gap: 20px; padding: 17px 0; border-bottom: 1px solid rgba(40,54,43,.2); }
.business-system li b { color: #2d3931; }
.business-system li span { color: #686c66; line-height: 1.55; }

.section--dark { background: #203126; color: #fff; }
.section--dark .eyebrow { color: #c98251; }
.business-model { display: grid; grid-template-columns: minmax(260px,.7fr) minmax(0,1.3fr); gap: clamp(40px,8vw,100px); align-items: center; }
.business-model h2 { margin: 8px 0 16px; }
.business-model p:not(.eyebrow) { color: #cad1cc; line-height: 1.75; }
.business-model__items { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); border-top: 1px solid rgba(255,255,255,.18); }
.business-model__items span { padding: 18px 8px; border-bottom: 1px solid rgba(255,255,255,.18); color: #edf0ed; }

/* Business overview */
.business-overview__hero .page-title { max-width: 670px; }
.business-overview__hero-media { overflow: hidden; }
.business-overview__hero-media img { width: 100%; height: 430px; object-fit: cover; object-position: center; }
.business-overview__thesis h2,
.business-overview__paths h2,
.business-overview__loop h2 { color: var(--color-ink-green); }
.business-overview__path-list { display: grid; border-top: 1px solid rgba(40, 54, 43, .2); }
.business-overview__path-list a { display: grid; grid-template-columns: 76px 94px minmax(170px, .72fr) minmax(260px, 1.25fr) 150px; gap: 24px; align-items: center; padding: 27px 18px; border-bottom: 1px solid rgba(40, 54, 43, .2); color: inherit; text-decoration: none; transition: background-color 180ms ease, padding-left 180ms ease; }
.business-overview__path-list a:hover { padding-left: 28px; background: rgba(255, 255, 255, .7); }
.business-overview__path-list b { color: var(--accent, #a44f2d); font: 500 2rem/1 Georgia, serif; }
.business-overview__path-list span { color: #7e8179; font-size: .76rem; text-transform: uppercase; }
.business-overview__path-list h3 { margin: 0; color: #2d3931; font-size: 1.24rem; }
.business-overview__path-list p { margin: 0; color: #61655f; line-height: 1.7; }
.business-overview__path-list em { color: var(--accent, #a44f2d); font-size: .8rem; font-style: normal; text-align: right; }

.business-overview__loop-head { display: grid; grid-template-columns: minmax(0, .72fr) minmax(280px, .58fr); gap: clamp(38px, 8vw, 120px); align-items: end; }
.business-overview__loop-head h2 { margin: 8px 0 0; }
.business-overview__loop-head > p { margin: 0; color: #62665f; line-height: 1.85; }
.business-overview__loop-list { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 1px; margin-top: 48px; padding: 1px; list-style: none; background: rgba(40, 54, 43, .16); }
.business-overview__loop-list li { position: relative; min-height: 350px; overflow: hidden; background: #fff; }
.business-overview__loop-list li:not(:last-child)::after { content: "→"; position: absolute; z-index: 1; top: 46%; right: -14px; color: var(--accent, #a44f2d); }
.business-overview__loop-list img { display: block; width: 100%; height: 142px; object-fit: cover; }
.business-overview__loop-list li > div { padding: 19px 20px 24px; }
.business-overview__loop-list span { color: var(--accent, #a44f2d); font: 500 1rem/1 Georgia, serif; }
.business-overview__loop-list h3 { margin: 30px 0 10px; color: #2d3931; font-size: 1.06rem; }
.business-overview__loop-list p { margin: 0; color: #62665f; line-height: 1.7; }

.partner-offer { display: grid; grid-template-columns: minmax(250px,.7fr) minmax(0,1.3fr); gap: clamp(40px,8vw,100px); align-items: start; }
.partner-offer h2 { margin: 8px 0 16px; }
.partner-offer > div:first-child > p:not(.eyebrow) { color: #62665f; line-height: 1.8; }
.partner-offer__grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 1px; background: rgba(40,54,43,.16); border: 1px solid rgba(40,54,43,.16); }
.partner-offer__grid article { min-height: 260px; padding: 28px 22px; background: #fff; }
.partner-offer__grid span,
.brand-services span,
.operation-flow span { color: var(--accent, #a44f2d); font-family: Georgia, serif; }
.partner-offer__grid h3 { margin: 68px 0 10px; font-size: 1.15rem; }
.partner-offer__grid p { color: #62665f; line-height: 1.7; }

.brand-services { display: grid; grid-template-columns: repeat(5,minmax(0,1fr)); gap: 1px; background: rgba(40,54,43,.16); border: 1px solid rgba(40,54,43,.16); }
.brand-services article { min-height: 260px; padding: 28px 22px; background: #fff; }
.brand-services h3 { margin: 62px 0 10px; font-size: 1.08rem; }
.brand-services p { color: #62665f; line-height: 1.7; }

.operation-flow { display: grid; grid-template-columns: repeat(5,minmax(0,1fr)); gap: 20px; }
.operation-flow article { position: relative; min-height: 260px; padding: 28px 22px; background: #fff; border-top: 3px solid #a44f2d; }
.operation-flow article:not(:last-child)::after { content: "→"; position: absolute; right: -17px; top: 48%; z-index: 1; color: #a44f2d; }
.operation-flow h3 { margin: 58px 0 10px; font-size: 1.08rem; }
.operation-flow p { color: #62665f; line-height: 1.7; }

@media (max-width: 1080px) {
  .partner-paths a > div { grid-template-columns: 100px minmax(180px,.8fr) 1.2fr; }
  .partner-paths em { display: none; }
  .brand-services,
  .operation-flow { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .operation-flow article::after { display: none; }
  .business-overview__path-list a { grid-template-columns: 62px 84px minmax(160px, .7fr) 1.3fr; }
  .business-overview__path-list em { display: none; }
  .business-overview__loop-list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .business-overview__loop-list li::after { display: none; }
}

/* Join the family: annual countryside membership */
.membership-page {
  --membership-paper: #fbfaf4;
  --membership-soft: #f1f5ec;
  --membership-leaf: #2f5d47;
  --membership-leaf-deep: #183d2e;
  --membership-clay: #a85236;
  --membership-gold: #a67c38;
  --membership-line: #d6ddce;
  background: var(--membership-paper);
  color: #26342d;
}

.membership-page h1,
.membership-page h2,
.membership-page h3,
.membership-page p,
.membership-page a,
.membership-page li,
.membership-page span,
.membership-page strong,
.membership-page time {
  letter-spacing: 0;
}

.membership-page .eyebrow {
  color: var(--membership-clay);
}

.membership-hero {
  padding: 72px 0 28px;
  background: #edf2e8;
  border-bottom: 1px solid var(--membership-line);
}

.membership-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(400px, 0.98fr);
  align-items: center;
  gap: 64px;
}

.membership-hero__product {
  margin: 14px 0 5px;
  color: var(--membership-leaf);
  font-size: 20px;
  font-weight: 700;
}

.membership-hero h1 {
  max-width: 720px;
  margin: 0;
  color: var(--membership-leaf-deep);
  font-size: 56px;
  line-height: 1.16;
}

.membership-hero__lede {
  max-width: 650px;
  margin: 24px 0 0;
  color: #4a5a51;
  font-size: 18px;
  line-height: 1.9;
}

.membership-hero__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 670px;
  margin: 34px 0 30px;
  border-top: 1px solid #bdc9b9;
  border-bottom: 1px solid #bdc9b9;
}

.membership-hero__facts div {
  min-width: 0;
  padding: 17px 18px 16px 0;
}

.membership-hero__facts div + div {
  padding-left: 18px;
  border-left: 1px solid #bdc9b9;
}

.membership-hero__facts strong,
.membership-hero__facts span {
  display: block;
}

.membership-hero__facts strong {
  color: var(--membership-leaf-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  line-height: 1.15;
}

.membership-hero__facts span {
  margin-top: 5px;
  color: #66736b;
  font-size: 13px;
}

.membership-image-slot {
  position: relative;
  display: flex;
  min-height: 370px;
  padding: 34px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background: #e1e7dc;
  border: 1px dashed #91a18f;
  border-radius: 4px;
  color: #3f5147;
}

.membership-image-slot::before,
.membership-image-slot::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.membership-image-slot::before {
  inset: 18px;
  border: 1px solid rgba(86, 105, 91, 0.22);
}

.membership-image-slot::after {
  top: 30px;
  right: 30px;
  width: 54px;
  height: 38px;
  border-top: 1px solid rgba(86, 105, 91, 0.32);
  border-right: 1px solid rgba(86, 105, 91, 0.32);
}

.membership-image-slot span,
.membership-image-slot strong,
.membership-image-slot small {
  position: relative;
  z-index: 1;
}

.membership-image-slot span {
  width: fit-content;
  margin-bottom: auto;
  padding: 6px 9px;
  border: 1px solid #a7b3a4;
  color: #5d6c63;
  font-size: 12px;
  font-weight: 700;
}

.membership-image-slot strong {
  max-width: 520px;
  color: #304239;
  font-size: 17px;
  line-height: 1.65;
}

.membership-image-slot small {
  display: block;
  max-width: 560px;
  margin-top: 7px;
  color: #64736a;
  font-size: 12px;
  line-height: 1.65;
}

.membership-image-slot--hero {
  min-height: 460px;
  background: #dbe4d7;
}

.membership-image-slot--wide {
  min-height: 0;
  aspect-ratio: 16 / 7;
}

.membership-image-slot--activity {
  min-height: 0;
  aspect-ratio: 3 / 2;
  padding: 24px;
}

.membership-section-nav {
  position: sticky;
  z-index: 20;
  top: var(--header-height);
  background: rgba(251, 250, 244, 0.96);
  border-bottom: 1px solid var(--membership-line);
}

.membership-section-nav .container {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 32px;
  overflow-x: auto;
  scrollbar-width: none;
}

.membership-section-nav .container::-webkit-scrollbar {
  display: none;
}

.membership-section-nav a {
  flex: 0 0 auto;
  color: #4f5d55;
  font-size: 14px;
  font-weight: 600;
}

.membership-section-nav a:hover,
.membership-section-nav a:focus-visible {
  color: var(--membership-clay);
}

.membership-page section[id] {
  scroll-margin-top: calc(var(--header-height) + 55px);
}

.membership-heading h2,
.membership-feature h2,
.membership-festival h2,
.membership-join h2 {
  margin: 10px 0 0;
  color: var(--membership-leaf-deep);
  font-size: 40px;
  line-height: 1.3;
}

.membership-heading > p:last-child {
  max-width: 760px;
  margin: 19px 0 0;
  color: #617067;
  font-size: 16px;
  line-height: 1.9;
}

.membership-heading--center {
  text-align: center;
}

.membership-heading--center > p:last-child {
  margin-right: auto;
  margin-left: auto;
}

.membership-intro__grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  gap: 86px;
}

.membership-intro__copy {
  padding-top: 22px;
}

.membership-values {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  align-items: center;
  gap: 34px;
  margin-top: 66px;
  padding-top: 26px;
  border-top: 1px solid var(--membership-line);
}

.membership-values__lead {
  margin: 0;
  color: var(--membership-leaf-deep);
  font-weight: 700;
}

.membership-values ul {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.membership-values li {
  min-width: 0;
  padding: 10px 5px;
  border-left: 1px solid var(--membership-line);
  color: var(--membership-clay);
  text-align: center;
  font-weight: 700;
}

.membership-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 50px;
  background: var(--membership-line);
  border: 1px solid var(--membership-line);
}

.membership-benefits article {
  min-height: 270px;
  padding: 30px;
  background: #fff;
}

.membership-benefits__number {
  display: block;
  color: var(--membership-gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
}

.membership-benefits h3 {
  margin: 37px 0 10px;
  color: var(--membership-leaf-deep);
  font-size: 20px;
  line-height: 1.5;
}

.membership-benefits p {
  margin: 0;
  color: #66736b;
  font-size: 14px;
  line-height: 1.85;
}

.membership-feature__grid,
.membership-festival-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  align-items: center;
  gap: 82px;
}

.membership-feature__copy > p:not(.eyebrow),
.membership-festival-grid > div:last-child > p:not(.eyebrow) {
  margin: 22px 0 0;
  color: #607067;
  font-size: 16px;
  line-height: 1.9;
}

.membership-detail-list,
.membership-festival-list {
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--membership-line);
}

.membership-detail-list li,
.membership-festival-list li {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--membership-line);
}

.membership-detail-list strong,
.membership-festival-list strong {
  color: var(--membership-clay);
}

.membership-detail-list span,
.membership-festival-list span {
  color: #65726a;
}

.membership-monthly-intro {
  margin-top: 42px;
}

.membership-calendar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 28px;
  background: var(--membership-line);
  border: 1px solid var(--membership-line);
  gap: 1px;
}

.membership-calendar article {
  min-height: 136px;
  padding: 22px;
  background: #fff;
}

.membership-calendar time {
  color: var(--membership-clay);
  font-weight: 700;
}

.membership-calendar p {
  margin: 20px 0 0;
  color: #58675e;
  font-size: 14px;
  line-height: 1.7;
}

.membership-data-note {
  margin-top: 18px;
  color: #778178;
  font-size: 12px;
}

.membership-experience-list {
  display: grid;
  gap: 28px;
  margin-top: 50px;
}

.membership-experience-list article {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  align-items: stretch;
  gap: 0;
  background: #fff;
  border: 1px solid var(--membership-line);
  border-radius: 4px;
  overflow: hidden;
}

.membership-experience-list article > div:last-child {
  display: flex;
  min-width: 0;
  padding: 38px 42px;
  flex-direction: column;
  justify-content: center;
}

.membership-experience-list__index {
  color: var(--membership-gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
}

.membership-experience-list h3 {
  margin: 12px 0 12px;
  color: var(--membership-leaf-deep);
  font-size: 26px;
}

.membership-experience-list p {
  margin: 0;
  color: #5c6b62;
  line-height: 1.85;
}

.membership-experience-list article > div:last-child > strong {
  margin-top: 22px;
  color: var(--membership-clay);
  font-size: 14px;
}

.membership-day-flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 50px;
  border-top: 1px solid var(--membership-line);
}

.membership-day-flow p {
  position: relative;
  margin: 0;
  padding: 23px 18px 0 0;
}

.membership-day-flow p::before {
  position: absolute;
  top: -5px;
  left: 0;
  width: 9px;
  height: 9px;
  background: var(--membership-clay);
  border-radius: 50%;
  content: "";
}

.membership-day-flow time,
.membership-day-flow span {
  display: block;
}

.membership-day-flow time {
  color: var(--membership-leaf-deep);
  font-weight: 700;
}

.membership-day-flow span {
  margin-top: 6px;
  color: #728078;
  font-size: 13px;
}

.membership-festival-grid {
  grid-template-columns: minmax(420px, 1.05fr) minmax(0, 0.95fr);
}

.membership-activity-list {
  display: flex;
  margin-top: 36px;
  padding: 0;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
}

.membership-activity-list li {
  padding: 10px 15px;
  background: #edf2e9;
  border: 1px solid var(--membership-line);
  color: #46584e;
  font-size: 14px;
}

.membership-join {
  padding: 80px 0;
  background: #e7eee2;
  border-top: 1px solid var(--membership-line);
}

.membership-join__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 72px;
}

.membership-join__inner > div:first-child > p:last-child {
  max-width: 700px;
  margin: 20px 0 0;
  color: #596960;
  line-height: 1.85;
}

.membership-join__action {
  display: flex;
  min-width: 200px;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.membership-join__back {
  color: #52635a;
  font-size: 13px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 980px) {
  .membership-hero__inner,
  .membership-intro__grid,
  .membership-feature__grid,
  .membership-festival-grid {
    grid-template-columns: 1fr;
  }

  .membership-hero__inner,
  .membership-feature__grid,
  .membership-festival-grid {
    gap: 46px;
  }

  .membership-hero h1 {
    font-size: 48px;
  }

  .membership-image-slot--hero {
    min-height: 400px;
  }

  .membership-intro__grid {
    gap: 20px;
  }

  .membership-intro__copy {
    padding-top: 0;
  }

  .membership-values {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .membership-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .membership-calendar {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .membership-feature__grid .membership-image-slot {
    order: -1;
  }
}

@media (max-width: 760px) {
  .membership-hero {
    padding: 58px 0 42px;
  }

  .membership-hero h1 {
    font-size: 38px;
  }

  .membership-hero__lede {
    font-size: 16px;
  }

  .membership-hero__facts {
    grid-template-columns: 1fr;
  }

  .membership-hero__facts div {
    padding: 14px 0;
  }

  .membership-hero__facts div + div {
    padding-left: 0;
    border-top: 1px solid #bdc9b9;
    border-left: 0;
  }

  .membership-image-slot--hero {
    min-height: 360px;
  }

  .membership-section-nav .container {
    justify-content: flex-start;
    gap: 24px;
  }

  .membership-heading h2,
  .membership-feature h2,
  .membership-festival h2,
  .membership-join h2 {
    font-size: 32px;
  }

  .membership-values ul {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid var(--membership-line);
  }

  .membership-values li {
    border-bottom: 1px solid var(--membership-line);
  }

  .membership-benefits,
  .membership-calendar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .membership-benefits article {
    min-height: 250px;
    padding: 24px;
  }

  .membership-experience-list article {
    grid-template-columns: 1fr;
  }

  .membership-experience-list article > div:last-child {
    padding: 28px;
  }

  .membership-day-flow {
    grid-template-columns: 1fr;
    border-top: 0;
    border-left: 1px solid var(--membership-line);
  }

  .membership-day-flow p {
    padding: 0 0 24px 24px;
  }

  .membership-day-flow p::before {
    top: 5px;
    left: -5px;
  }

  .membership-join__inner {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 34px;
  }

  .membership-join__action {
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .membership-hero h1 {
    font-size: 34px;
  }

  .membership-image-slot {
    min-height: 300px;
    padding: 24px;
  }

  .membership-image-slot--wide,
  .membership-image-slot--activity {
    min-height: 250px;
    aspect-ratio: auto;
  }

  .membership-values ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .membership-benefits,
  .membership-calendar {
    grid-template-columns: 1fr;
  }

  .membership-benefits article {
    min-height: 0;
  }

  .membership-benefits h3 {
    margin-top: 20px;
  }

  .membership-calendar article {
    min-height: 0;
  }

  .membership-detail-list li,
  .membership-festival-list li {
    grid-template-columns: 70px minmax(0, 1fr);
    gap: 12px;
  }

  .membership-experience-list article > div:last-child {
    padding: 24px;
  }
}

/* Business: weekend host */
.weekend-host-role {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1fr);
  gap: clamp(38px, 8vw, 112px);
  align-items: center;
}

.weekend-host-role__image {
  margin: 0;
}

.weekend-host-role__image img {
  display: block;
  width: 100%;
  height: 390px;
  object-fit: cover;
}

.weekend-host-role h2 {
  margin: 8px 0 18px;
  color: var(--color-ink-green);
}

.weekend-host-role__copy > p:not(.eyebrow) {
  color: var(--color-muted);
  line-height: 1.85;
}

.weekend-host-page section[id] {
  scroll-margin-top: var(--header-height);
}

.weekend-host-hero .page-hero__grid {
  align-items: center;
}

.weekend-host-hero__media {
  margin: 0;
}

.weekend-host-hero__media img {
  display: block;
  width: 100%;
  height: 458px;
  object-fit: cover;
  object-position: center;
}

.weekend-host-hero__note {
  margin: 26px 0 0;
  color: var(--color-clay);
  font-size: 0.88rem;
  font-weight: 700;
}

.weekend-host-role__copy {
  max-width: 660px;
}

.weekend-host-role__image img {
  height: 460px;
}

.weekend-host-principles,
.weekend-host-options,
.weekend-host-flow {
  display: grid;
  border-top: 1px solid var(--color-line);
}

.weekend-host-principles {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.weekend-host-principles article,
.weekend-host-options article,
.weekend-host-flow article {
  min-width: 0;
  padding: 28px 24px 30px;
  border-right: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
}

.weekend-host-principles article:last-child,
.weekend-host-options article:last-child,
.weekend-host-flow article:last-child {
  border-right: 0;
}

.weekend-host-principles span,
.weekend-host-options__eyebrow,
.weekend-host-flow span {
  display: block;
  color: var(--color-clay);
  font-family: Georgia, "Times New Roman", serif;
}

.weekend-host-principles h3,
.weekend-host-options h3,
.weekend-host-flow h3 {
  margin: 24px 0 10px;
  color: var(--color-ink-green);
}

.weekend-host-principles p,
.weekend-host-options p,
.weekend-host-flow p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.75;
}

.weekend-host-themes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 32px auto 0;
  padding: 1px;
  list-style: none;
  background: var(--color-line);
}

.weekend-host-themes li {
  min-width: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.82);
}

.weekend-host-themes img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.weekend-host-themes li > div {
  padding: 19px 20px 24px;
}

.weekend-host-themes strong {
  display: block;
  margin: 0 0 8px;
  color: var(--color-ink-green);
  font-size: 1.06rem;
}

.weekend-host-themes span {
  display: block;
  color: var(--color-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.weekend-host-options {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.weekend-host-options article {
  min-height: 360px;
  padding: 36px;
  background: rgba(255, 255, 255, 0.72);
}

.weekend-host-options article:last-child {
  background: #edf3ec;
}

.weekend-host-options h3 {
  margin-top: 14px;
  font-size: 1.55rem;
}

.weekend-host-options ul {
  margin: 28px 0 0;
}

.weekend-host-options__note {
  margin-top: 25px !important;
  color: var(--color-clay) !important;
  font-size: 0.85rem;
}

.weekend-host-flow {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.weekend-host-flow article {
  position: relative;
  min-height: 210px;
}

.weekend-host-flow article:not(:last-child)::after {
  position: absolute;
  right: -8px;
  top: 29px;
  z-index: 1;
  color: var(--color-clay);
  content: "→";
}

.text-link.weekend-host__creator-link {
  display: flex;
  justify-content: flex-end;
  width: fit-content;
  max-width: calc(100% - 40px);
  margin: 28px max(20px, calc((100% - var(--container)) / 2)) 0 auto;
  text-align: right;
  font-size: 0.94rem;
  line-height: 1.7;
}

@media (max-width: 860px) {
  .weekend-host-role {
    grid-template-columns: 1fr;
  }

  .weekend-host-themes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .weekend-host-principles,
  .weekend-host-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .weekend-host-principles article:nth-child(2),
  .weekend-host-flow article:nth-child(2) {
    border-right: 0;
  }

  .weekend-host-principles article:last-child,
  .weekend-host-flow article:last-child {
    border-right: 1px solid var(--color-line);
  }

  .weekend-host-flow article:nth-child(2)::after {
    display: none;
  }
}

@media (max-width: 620px) {
  .weekend-host-role__image img,
  .weekend-host-hero__media img {
    height: 300px;
  }

  .weekend-host-principles,
  .weekend-host-options,
  .weekend-host-flow,
  .weekend-host-themes {
    grid-template-columns: 1fr;
  }

  .weekend-host-principles article,
  .weekend-host-flow article,
  .weekend-host-principles article:last-child,
  .weekend-host-flow article:last-child {
    min-height: 0;
    border-right: 0;
  }

  .weekend-host-options article {
    min-height: 0;
    padding: 28px 22px;
    border-right: 0;
  }

  .weekend-host-flow article::after {
    display: none;
  }
}


@media (max-width: 760px) {
  .partner-paths a { grid-template-columns: 48px 1fr; gap: 12px; padding: 22px 4px; }
  .partner-paths a:hover { padding-left: 4px; }
  .partner-paths b { font-size: 1.45rem; }
  .partner-paths a > div { display: block; }
  .partner-paths h3 { margin: 5px 0 8px; }
  .partner-paths p { font-size: .9rem; }
  .business-system,
  .business-model,
  .partner-offer { grid-template-columns: 1fr; }
  .business-system li { grid-template-columns: 90px 1fr; }
  .business-overview__path-list a { grid-template-columns: 46px minmax(0, 1fr) auto; gap: 12px; padding: 22px 4px; }
  .business-overview__path-list a:hover { padding-left: 4px; }
  .business-overview__path-list b { font-size: 1.45rem; }
  .business-overview__path-list span,
  .business-overview__path-list p { display: none; }
  .business-overview__path-list h3 { margin: 0; font-size: 1.1rem; }
  .business-overview__path-list em { display: block; color: var(--accent, #a44f2d); font-size: .76rem; line-height: 1.35; text-align: right; white-space: nowrap; }
  .business-overview__path-list em::after { content: " →"; }
  .business-overview__hero-media img { height: 300px; }
  .business-overview__loop-head,
  .business-overview__loop-list { grid-template-columns: 1fr; }
  .business-overview__loop-list { gap: 1px; margin-top: 32px; }
  .business-overview__loop-list li { min-height: 0; }
  .business-overview__loop-list img { height: 200px; }
  .business-overview__loop-list li > div { padding: 18px 18px 24px; }
  .business-overview__loop-list h3 { margin-top: 26px; }
  .partner-offer__grid,
  .brand-services,
  .operation-flow { grid-template-columns: 1fr; }
  .partner-offer__grid article,
  .brand-services article,
  .operation-flow article { min-height: 210px; }
  .business-model__items { grid-template-columns: 1fr; }
}

/* Business: project co-creation */
.project-hero__media img { width: 100%; height: 430px; object-fit: cover; object-position: center 72%; }

.project-positioning h2 {
  margin: 0;
  color: var(--color-ink-green);
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  line-height: 1.22;
}

.project-positioning__copy {
  margin-top: 30px;
}

.project-positioning__copy p {
  margin: 0;
  color: #62665f;
  font-size: 1.04rem;
  line-height: 1.85;
}

.project-capability-heading,
.project-cases__intro {
  display: grid;
  grid-template-columns: minmax(0, .75fr) minmax(280px, .55fr);
  gap: 48px;
  margin-bottom: 32px;
  align-items: end;
}

.project-capability-heading > div > p:last-child {
  margin: 0;
  color: var(--color-ink-green);
  font: 500 1.32rem/1.3 Georgia, "Times New Roman", serif;
}

.project-capability-heading > p,
.project-cases__intro > p {
  margin: 0;
  color: #62665f;
}

.project-capabilities {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(40,54,43,.16);
  background: rgba(40,54,43,.16);
}

.project-capabilities article {
  min-height: 210px;
  padding: 24px 22px;
  background: #fff;
}

.project-capabilities span { color: var(--accent, #a44f2d); font-family: Georgia, serif; }
.project-capabilities h3 { margin: 42px 0 10px; font-size: 1.08rem; }
.project-capabilities p { margin: 0; color: #62665f; line-height: 1.7; }

.project-cases__intro h2 { margin: 0; color: #2d3931; font-size: 1.15rem; font-weight: 600; }
.project-case-list { display: grid; gap: 76px; }
.project-case { border-top: 1px solid rgba(40,54,43,.2); padding-top: 28px; }
.project-case__heading { display: flex; justify-content: space-between; gap: 28px; align-items: baseline; margin-bottom: 28px; }
.project-case__heading span { color: var(--accent, #a44f2d); font-size: .76rem; letter-spacing: .06em; text-transform: uppercase; }
.project-case__heading h3 { margin: 8px 0 0; font-size: clamp(1.65rem, 3vw, 2.45rem); }
.project-case__heading > p { margin: 0; color: #62665f; font-size: .9rem; }
.project-case__body { display: grid; grid-template-columns: minmax(0, 1.03fr) minmax(0, .97fr); gap: clamp(34px, 6vw, 84px); align-items: center; }
.project-case--reverse .project-case__body > :first-child { order: 2; }
.project-case--reverse .project-case__body > :last-child { order: 1; }
.project-case__media { min-height: 420px; margin: 0; overflow: hidden; }
.project-case__media img { width: 100%; height: 420px; object-fit: cover; }
.project-case__copy > p { margin: 0 0 28px; color: #2d3931; font-size: 1.08rem; line-height: 1.9; }
.project-case__copy dl { margin: 0; border-top: 1px solid rgba(40,54,43,.2); }
.project-case__copy dl > div { display: grid; grid-template-columns: 92px 1fr; gap: 18px; padding: 14px 0; border-bottom: 1px solid rgba(40,54,43,.2); }
.project-case__copy dt { color: var(--accent, #a44f2d); font-size: .82rem; }
.project-case__copy dd { margin: 0; color: #62665f; line-height: 1.65; }
.project-case__gallery { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin-top: 20px; }
.project-case__gallery img { width: 100%; height: 170px; object-fit: cover; }
.project-process { background: #fff; }
.project-process__heading { max-width: 680px; }
.project-process__heading h2 { margin: 8px 0 18px; }
.project-process__heading > p:not(.eyebrow) { margin: 0; color: #62665f; line-height: 1.85; }
.project-process__steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); margin: 50px 0 0; padding: 0; list-style: none; border-top: 1px solid rgba(40,54,43,.2); border-bottom: 1px solid rgba(40,54,43,.2); }
.project-process__steps li { position: relative; min-height: 190px; padding: 24px 22px 26px; }
.project-process__steps li + li { border-left: 1px solid rgba(40,54,43,.2); }
.project-process__steps li:not(:last-child)::after { content: "→"; position: absolute; z-index: 1; top: -14px; right: -12px; width: 24px; height: 24px; color: var(--accent, #a44f2d); background: #fff; font: 1.1rem/24px Georgia, serif; text-align: center; }
.project-process__steps b { display: block; color: var(--accent, #a44f2d); font: 1rem/1 Georgia, serif; }
.project-process__steps strong { display: block; margin-top: 38px; color: #2d3931; font-size: 1.05rem; }
.project-process__steps span { display: block; margin-top: 10px; color: #62665f; line-height: 1.7; }

@media (max-width: 1080px) {
  .project-capabilities { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .project-process__steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .project-process__steps li:nth-child(3) { border-left: 0; border-top: 1px solid rgba(40,54,43,.2); }
  .project-process__steps li:nth-child(4) { border-top: 1px solid rgba(40,54,43,.2); }
  .project-process__steps li:nth-child(2)::after { display: none; }
}

@media (max-width: 760px) {
  .project-hero__media img { height: 300px; }
  .project-case__media,
  .project-case__media img { min-height: 300px; height: 300px; }
  .project-capabilities,
  .project-case__body,
  .project-process__steps,
  .project-capability-heading,
  .project-cases__intro { grid-template-columns: 1fr; }
  .project-capability-heading,
  .project-cases__intro { gap: 18px; }
  .project-case-list { gap: 58px; }
  .project-case__heading { display: block; }
  .project-case__heading > p { margin-top: 10px; }
  .project-case--reverse .project-case__body > :first-child,
  .project-case--reverse .project-case__body > :last-child { order: initial; }
  .project-case__gallery { gap: 10px; }
  .project-case__gallery img { height: 120px; }
  .project-case__copy dl > div { grid-template-columns: 78px 1fr; gap: 12px; }
  .project-process__steps { margin-top: 36px; }
  .project-process__steps li { min-height: 0; padding: 20px 0 24px; }
  .project-process__steps li + li,
  .project-process__steps li:nth-child(3),
  .project-process__steps li:nth-child(4) { border-left: 0; border-top: 1px solid rgba(40,54,43,.2); }
  .project-process__steps li::after { display: none; }
  .project-process__steps strong { margin-top: 24px; }
}

/* Business: living and life */
.living-hero .page-hero__grid { align-items: center; }
.living-hero__media img { width: 100%; height: 430px; object-fit: cover; object-position: 54% center; }

.living-positioning h2 { max-width: 920px; margin: 0; color: var(--color-ink-green); font-size: clamp(1.9rem, 3.2vw, 3rem); line-height: 1.22; }
.living-positioning > p:last-child { max-width: 960px; margin: 28px 0 0; color: #62665f; font-size: 1.05rem; line-height: 1.85; }

.living-paths { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid rgba(40,54,43,.2); border-bottom: 1px solid rgba(40,54,43,.2); }
.living-paths article { min-height: 245px; padding: 28px 30px; }
.living-paths article + article { border-left: 1px solid rgba(40,54,43,.2); }
.living-paths span,
.living-entry__steps b { color: var(--accent, #a44f2d); font-family: Georgia, serif; }
.living-paths h3 { margin: 56px 0 12px; color: #2d3931; font-size: 1.26rem; }
.living-paths p { max-width: 480px; margin: 0; color: #62665f; line-height: 1.75; }

.living-stories__intro { display: grid; grid-template-columns: minmax(0, .75fr) minmax(280px, .55fr); gap: 48px; margin-bottom: 36px; align-items: end; }
.living-stories__intro h2 { margin: 0; color: #2d3931; font-size: 1.18rem; font-weight: 600; }
.living-stories__intro > p { margin: 0; color: #62665f; }
.living-story-list { display: grid; gap: 76px; }
.living-story { border-top: 1px solid rgba(40,54,43,.2); padding-top: 28px; }
.living-story__heading { display: flex; justify-content: space-between; gap: 28px; align-items: baseline; margin-bottom: 28px; }
.living-story__heading span { color: var(--accent, #a44f2d); font-size: .76rem; letter-spacing: .06em; text-transform: uppercase; }
.living-story__heading h3 { margin: 8px 0 0; color: #2d3931; font-size: clamp(1.65rem, 3vw, 2.45rem); }
.living-story__heading > p { margin: 0; color: #62665f; font-size: .9rem; }
.living-story__body { display: grid; grid-template-columns: minmax(0, 1.03fr) minmax(0, .97fr); gap: clamp(34px, 6vw, 84px); align-items: center; }
.living-story--reverse .living-story__body > :first-child { order: 2; }
.living-story--reverse .living-story__body > :last-child { order: 1; }
.living-story__media { min-height: 420px; margin: 0; overflow: hidden; }
.living-story__media img { width: 100%; height: 420px; object-fit: cover; }
.living-story--reverse .living-story__media img { object-position: 64% center; }
.living-story__copy > p { margin: 0 0 28px; color: #2d3931; font-size: 1.08rem; line-height: 1.9; }
.living-story__copy dl { margin: 0; border-top: 1px solid rgba(40,54,43,.2); }
.living-story__copy dl > div { display: grid; grid-template-columns: 92px 1fr; gap: 18px; padding: 14px 0; border-bottom: 1px solid rgba(40,54,43,.2); }
.living-story__copy dt { color: var(--accent, #a44f2d); font-size: .82rem; }
.living-story__copy dd { margin: 0; color: #62665f; line-height: 1.65; }

.living-relationship__heading { max-width: 780px; }
.living-relationship__heading h2 { margin: 8px 0 0; color: var(--color-ink-green); }
.living-relationship__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 48px; margin-top: 50px; }
.living-relationship__grid > div { padding-top: 20px; border-top: 1px solid rgba(40,54,43,.2); }
.living-relationship__grid h3 { margin: 0 0 12px; color: #2d3931; font-size: 1.18rem; }
.living-relationship__grid p { max-width: 520px; margin: 0; color: #62665f; line-height: 1.8; }

.living-entry__steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 48px; padding: 0; list-style: none; border-top: 1px solid rgba(40,54,43,.2); border-bottom: 1px solid rgba(40,54,43,.2); }
.living-entry__steps li { min-height: 190px; padding: 24px 28px 26px; }
.living-entry__steps li + li { border-left: 1px solid rgba(40,54,43,.2); }
.living-entry__steps b { display: block; font-size: 1rem; }
.living-entry__steps strong { display: block; margin-top: 40px; color: #2d3931; font-size: 1.05rem; }
.living-entry__steps span { display: block; margin-top: 10px; color: #62665f; line-height: 1.7; }

@media (max-width: 1080px) {
  .living-story__body { grid-template-columns: 1fr; }
  .living-story--reverse .living-story__body > :first-child,
  .living-story--reverse .living-story__body > :last-child { order: initial; }
}

@media (max-width: 760px) {
  .living-hero__media img { height: 300px; }
  .living-story__media,
  .living-story__media img { min-height: 300px; height: 300px; }
  .living-paths,
  .living-stories__intro,
  .living-relationship__grid,
  .living-entry__steps { grid-template-columns: 1fr; }
  .living-paths article + article,
  .living-entry__steps li + li { border-top: 1px solid rgba(40,54,43,.2); border-left: 0; }
  .living-paths article { min-height: 0; padding: 24px 0 28px; }
  .living-paths h3 { margin-top: 36px; }
  .living-stories__intro { gap: 18px; }
  .living-story-list { gap: 58px; }
  .living-story__heading { display: block; }
  .living-story__heading > p { margin-top: 10px; }
  .living-story__copy dl > div { grid-template-columns: 78px 1fr; gap: 12px; }
  .living-relationship__grid { gap: 28px; margin-top: 36px; }
  .living-entry__steps { margin-top: 36px; }
  .living-entry__steps li { min-height: 0; padding: 20px 0 24px; }
  .living-entry__steps strong { margin-top: 24px; }
}

/* Business: enterprise and creation */
.creator-hero .page-hero__grid { align-items: center; }
.creator-hero__media img { width: 100%; height: 430px; object-fit: cover; object-position: 52% center; }

.creator-positioning h2 { max-width: 980px; margin: 0; color: var(--color-ink-green); font-size: clamp(1.9rem, 3.2vw, 3rem); line-height: 1.22; }
.creator-positioning > p:last-child { max-width: 960px; margin: 28px 0 0; color: #62665f; font-size: 1.05rem; line-height: 1.85; }

.creator-capabilities { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1px; border: 1px solid rgba(40,54,43,.16); background: rgba(40,54,43,.16); }
.creator-capabilities article { min-height: 220px; padding: 24px 22px; background: #fff; }
.creator-capabilities span,
.creator-forms span { color: var(--accent, #a44f2d); font-family: Georgia, serif; }
.creator-capabilities h3 { margin: 46px 0 10px; color: #2d3931; font-size: 1.08rem; }
.creator-capabilities p { margin: 0; color: #62665f; line-height: 1.7; }

.creator-case__intro { display: grid; grid-template-columns: minmax(0, .75fr) minmax(280px, .55fr); gap: 48px; margin-bottom: 36px; align-items: end; }
.creator-case__intro h2 { margin: 0; color: #2d3931; font-size: 1.18rem; font-weight: 600; }
.creator-case__intro > p { margin: 0; color: #62665f; }
.creator-case__story { border-top: 1px solid rgba(40,54,43,.2); padding-top: 28px; }
.creator-case__heading { display: flex; justify-content: space-between; gap: 28px; align-items: baseline; margin-bottom: 28px; }
.creator-case__heading span { color: var(--accent, #a44f2d); font-size: .76rem; letter-spacing: .06em; text-transform: uppercase; }
.creator-case__heading h3 { margin: 8px 0 0; color: #2d3931; font-size: clamp(1.65rem, 3vw, 2.45rem); }
.creator-case__heading > p { margin: 0; color: #62665f; font-size: .9rem; }
.creator-case__body { display: grid; grid-template-columns: minmax(0, 1.03fr) minmax(0, .97fr); gap: clamp(34px, 6vw, 84px); align-items: center; }
.creator-case__body figure { margin: 0; }
.creator-case__media { min-height: 420px; overflow: hidden; }
.creator-case__media img { width: 100%; height: 420px; object-fit: cover; }
.creator-case__copy > p { margin: 0 0 28px; color: #2d3931; font-size: 1.08rem; line-height: 1.9; }
.creator-case__copy dl { margin: 0; border-top: 1px solid rgba(40,54,43,.2); }
.creator-case__copy dl > div { display: grid; grid-template-columns: 92px 1fr; gap: 18px; padding: 14px 0; border-bottom: 1px solid rgba(40,54,43,.2); }
.creator-case__copy dt { color: var(--accent, #a44f2d); font-size: .82rem; }
.creator-case__copy dd { margin: 0; color: #62665f; line-height: 1.65; }
.creator-case__gallery { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin-top: 20px; }
.creator-case__gallery img { width: 100%; height: 170px; object-fit: cover; }
.text-link.creator-case__host-link { display: flex; width: fit-content; margin: 18px 0 0 auto; font-size: .94rem; line-height: 1.7; }

.creator-forms { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid rgba(40,54,43,.2); border-bottom: 1px solid rgba(40,54,43,.2); }
.creator-forms article { min-height: 230px; padding: 26px 28px; }
.creator-forms article + article { border-left: 1px solid rgba(40,54,43,.2); }
.creator-forms h3 { margin: 52px 0 12px; color: #2d3931; font-size: 1.18rem; }
.creator-forms p { max-width: 360px; margin: 0; color: #62665f; line-height: 1.75; }

.creator-partnership__heading { max-width: 800px; }
.creator-partnership__heading h2 { margin: 8px 0 0; color: var(--color-ink-green); }
.creator-partnership__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 48px; margin-top: 50px; }
.creator-partnership__grid > div { padding-top: 20px; border-top: 1px solid rgba(40,54,43,.2); }
.creator-partnership__grid h3 { margin: 0 0 12px; color: #2d3931; font-size: 1.18rem; }
.creator-partnership__grid p { max-width: 520px; margin: 0; color: #62665f; line-height: 1.8; }

@media (max-width: 1080px) {
  .creator-capabilities { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .creator-case__body { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .creator-hero__media img { height: 300px; }
  .creator-case__media,
  .creator-case__media img { min-height: 300px; height: 300px; }
  .creator-capabilities,
  .creator-case__intro,
  .creator-forms,
  .creator-partnership__grid { grid-template-columns: 1fr; }
  .creator-case__intro { gap: 18px; }
  .creator-case__heading { display: block; }
  .creator-case__heading > p { margin-top: 10px; }
  .creator-case__copy dl > div { grid-template-columns: 78px 1fr; gap: 12px; }
  .creator-case__gallery { gap: 10px; }
  .creator-case__gallery img { height: 120px; }
  .creator-forms article { min-height: 0; padding: 24px 0 28px; }
  .creator-forms article + article { border-top: 1px solid rgba(40,54,43,.2); border-left: 0; }
  .creator-forms h3 { margin-top: 36px; }
  .creator-partnership__grid { gap: 28px; margin-top: 36px; }
}

/* Business: brands and products */
.brand-hero .page-hero__grid { align-items: center; }
.brand-hero__media img { width: 100%; height: 430px; object-fit: cover; object-position: 56% center; }

.brand-positioning h2 { max-width: 940px; margin: 0; color: var(--color-ink-green); font-size: clamp(1.9rem, 3.2vw, 3rem); line-height: 1.22; }
.brand-positioning > p:last-child { max-width: 960px; margin: 28px 0 0; color: #62665f; font-size: 1.05rem; line-height: 1.85; }

.brand-paths { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid rgba(40,54,43,.2); border-bottom: 1px solid rgba(40,54,43,.2); }
.brand-paths article { min-height: 270px; padding: 28px 30px; }
.brand-paths article + article { border-left: 1px solid rgba(40,54,43,.2); }
.brand-paths span,
.brand-capabilities span { color: var(--accent, #a44f2d); font-family: Georgia, serif; }
.brand-paths h3 { margin: 52px 0 12px; color: #2d3931; font-size: 1.2rem; }
.brand-paths p { max-width: 500px; margin: 0; color: #62665f; line-height: 1.75; }

.brand-capabilities { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1px; border: 1px solid rgba(40,54,43,.16); background: rgba(40,54,43,.16); }
.brand-capabilities article { min-height: 220px; padding: 24px 22px; background: #fff; }
.brand-capabilities h3 { margin: 46px 0 10px; color: #2d3931; font-size: 1.08rem; }
.brand-capabilities p { margin: 0; color: #62665f; line-height: 1.7; }

.brand-cases__intro { display: grid; grid-template-columns: minmax(0, .75fr) minmax(280px, .55fr); gap: 48px; margin-bottom: 36px; align-items: end; }
.brand-cases__intro h2 { margin: 0; color: #2d3931; font-size: 1.18rem; font-weight: 600; }
.brand-cases__intro > p { margin: 0; color: #62665f; }
.brand-case-list { display: grid; gap: 76px; }
.brand-case { border-top: 1px solid rgba(40,54,43,.2); padding-top: 28px; }
.brand-case__heading { display: flex; justify-content: space-between; gap: 28px; align-items: baseline; margin-bottom: 28px; }
.brand-case__heading span { color: var(--accent, #a44f2d); font-size: .76rem; letter-spacing: .06em; text-transform: uppercase; }
.brand-case__heading h3 { margin: 8px 0 0; color: #2d3931; font-size: clamp(1.65rem, 3vw, 2.45rem); }
.brand-case__heading > p { margin: 0; color: #62665f; font-size: .9rem; }
.brand-case__body { display: grid; grid-template-columns: minmax(0, 1.03fr) minmax(0, .97fr); gap: clamp(34px, 6vw, 84px); align-items: center; }
.brand-case--reverse .brand-case__body > :first-child { order: 2; }
.brand-case--reverse .brand-case__body > :last-child { order: 1; }
.brand-case__body figure { margin: 0; }
.brand-case__media { min-height: 420px; overflow: hidden; }
.brand-case__media img { width: 100%; height: 420px; object-fit: cover; }
.brand-case__copy > p { margin: 0 0 28px; color: #2d3931; font-size: 1.08rem; line-height: 1.9; }
.brand-case__copy dl { margin: 0; border-top: 1px solid rgba(40,54,43,.2); }
.brand-case__copy dl > div { display: grid; grid-template-columns: 92px 1fr; gap: 18px; padding: 14px 0; border-bottom: 1px solid rgba(40,54,43,.2); }
.brand-case__copy dt { color: var(--accent, #a44f2d); font-size: .82rem; }
.brand-case__copy dd { margin: 0; color: #62665f; line-height: 1.65; }
.brand-case__gallery { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin-top: 20px; }
.brand-case__gallery img { width: 100%; height: 170px; object-fit: cover; }

.brand-partnership__heading { max-width: 850px; }
.brand-partnership__heading h2 { margin: 8px 0 0; color: var(--color-ink-green); }
.brand-partnership__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 48px; margin-top: 50px; }
.brand-partnership__grid > div { padding-top: 20px; border-top: 1px solid rgba(40,54,43,.2); }
.brand-partnership__grid h3 { margin: 0 0 12px; color: #2d3931; font-size: 1.18rem; }
.brand-partnership__grid p { max-width: 520px; margin: 0; color: #62665f; line-height: 1.8; }

@media (max-width: 1080px) {
  .brand-capabilities { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .brand-case__body { grid-template-columns: 1fr; }
  .brand-case--reverse .brand-case__body > :first-child,
  .brand-case--reverse .brand-case__body > :last-child { order: initial; }
}

@media (max-width: 760px) {
  .brand-hero__media img { height: 300px; }
  .brand-case__media,
  .brand-case__media img { min-height: 300px; height: 300px; }
  .brand-paths,
  .brand-capabilities,
  .brand-cases__intro,
  .brand-partnership__grid { grid-template-columns: 1fr; }
  .brand-paths article { min-height: 0; padding: 24px 0 28px; }
  .brand-paths article + article { border-top: 1px solid rgba(40,54,43,.2); border-left: 0; }
  .brand-paths h3 { margin-top: 36px; }
  .brand-cases__intro { gap: 18px; }
  .brand-case-list { gap: 58px; }
  .brand-case__heading { display: block; }
  .brand-case__heading > p { margin-top: 10px; }
  .brand-case__copy dl > div { grid-template-columns: 78px 1fr; gap: 12px; }
  .brand-case__gallery { gap: 10px; }
.brand-case__gallery img { height: 120px; }
  .brand-partnership__grid { gap: 28px; margin-top: 36px; }
}

/* Business: village partners */
.village-partner-hero .page-hero__grid { align-items: center; }
.village-partner-hero__media img { width: 100%; height: 430px; object-fit: cover; object-position: center; }
.village-partner-question h2,
.village-partner-system h2,
.village-partner-method h2,
.village-partner-start h2 { color: var(--color-ink-green); }

.village-partner-system__visuals { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; margin-top: 44px; }
.village-partner-system__media { min-height: 290px; overflow: hidden; }
.village-partner-system__media img { width: 100%; height: 290px; object-fit: cover; }
.village-partner-system__items { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 1px; margin-top: 22px; border: 1px solid rgba(40, 54, 43, .16); background: rgba(40, 54, 43, .16); }
.village-partner-system__items article { min-height: 250px; padding: 24px 20px; background: #fff; }
.village-partner-system__items span,
.village-partner-method__flow span { color: var(--accent, #a44f2d); font-family: Georgia, serif; }
.village-partner-system__items h3 { margin: 56px 0 10px; color: #2d3931; font-size: 1.05rem; }
.village-partner-system__items p { margin: 0; color: #62665f; line-height: 1.7; }

.village-partner-method__flow { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 20px; }
.village-partner-method__flow article { position: relative; min-height: 260px; padding: 28px 22px; border-top: 3px solid var(--accent, #a44f2d); background: #fff; }
.village-partner-method__flow article:not(:last-child)::after { content: "→"; position: absolute; z-index: 1; right: -17px; top: 48%; color: var(--accent, #a44f2d); }
.village-partner-method__flow h3 { margin: 58px 0 10px; color: #2d3931; font-size: 1.08rem; }
.village-partner-method__flow p { margin: 0; color: #62665f; line-height: 1.7; }

.village-partner-proof { padding-bottom: clamp(72px, 10vw, 140px); }
.village-partner-proof__heading { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, .72fr); gap: clamp(36px, 8vw, 126px); align-items: end; }
.village-partner-proof__heading h2 { margin: 8px 0 0; color: var(--color-ink-green); font-size: clamp(2rem, 3.8vw, 3.55rem); line-height: 1.18; }
.village-partner-proof__heading > p { margin: 0; color: #62665f; line-height: 1.9; }
.village-partner-proof__main { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(300px, .95fr); gap: clamp(34px, 7vw, 98px); align-items: center; margin-top: 54px; }
.village-partner-proof__media { min-height: 470px; overflow: hidden; }
.village-partner-proof__media img { width: 100%; height: 470px; object-fit: cover; }
.village-partner-proof__summary { border-top: 1px solid rgba(40, 54, 43, .2); }
.village-partner-proof__summary > div { padding: 18px 0; border-bottom: 1px solid rgba(40, 54, 43, .2); }
.village-partner-proof__summary span { color: var(--accent, #a44f2d); font-size: .78rem; }
.village-partner-proof__summary p { margin: 8px 0 0; color: #2d3931; line-height: 1.78; }
.village-partner-proof__gallery { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; margin-top: 20px; }
.village-partner-proof__gallery img { width: 100%; height: 170px; object-fit: cover; }

.village-partner-start__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; margin-top: 48px; border: 1px solid rgba(40, 54, 43, .18); background: rgba(40, 54, 43, .18); }
.village-partner-start__grid > div { padding: 32px; background: #fff; }
.village-partner-start__grid h3 { margin: 0 0 18px; color: #2d3931; font-size: 1.12rem; }

@media (max-width: 1080px) {
  .village-partner-system__items,
  .village-partner-method__flow { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .village-partner-method__flow article::after { display: none; }
  .village-partner-proof__main { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .village-partner-hero__media img { height: 300px; }
  .village-partner-system__visuals,
  .village-partner-system__items,
  .village-partner-method__flow,
  .village-partner-proof__heading,
  .village-partner-start__grid { grid-template-columns: 1fr; }
  .village-partner-system__media,
  .village-partner-system__media img { min-height: 220px; height: 220px; }
  .village-partner-system__items article,
  .village-partner-method__flow article { min-height: 210px; }
  .village-partner-proof__main { margin-top: 36px; }
  .village-partner-proof__media,
  .village-partner-proof__media img { min-height: 320px; height: 320px; }
  .village-partner-proof__gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .village-partner-proof__gallery img { height: 135px; }
  .village-partner-start__grid > div { padding: 26px 22px; }
}

/* Renewed homepage */
.home-hero--renewed .home-hero__copy > p:not(.eyebrow) { max-width: 680px; }
.home-system-words { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 24px; margin-top: 64px; }
.home-system-words article { padding-top: 20px; border-top: 1px solid rgba(40,54,43,.22); }
.home-system-words span { color: var(--accent, #a44f2d); font-family: Georgia, serif; }
.home-system-words h3 { margin: 26px 0 8px; }
.home-system-words p { color: #62665f; line-height: 1.7; }

.home-village-grid--renewed .image-feature-card img { height: 390px; }
.home-life-band { background: #f8f5ed; }
.home-life-intro { display: grid; grid-template-columns: minmax(280px,.75fr) minmax(0,1.25fr); gap: clamp(50px,9vw,130px); align-items: start; }
.home-life-intro > div:first-child > p:not(.eyebrow) { color: #62665f; line-height: 1.8; }
.home-life-intro h2 { margin: 8px 0 18px; }
.home-life-menu { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); border-top: 1px solid rgba(40,54,43,.2); }
.home-life-menu a { display: grid; grid-template-columns: 84px 1fr; gap: 4px 18px; padding: 22px 12px; border-bottom: 1px solid rgba(40,54,43,.2); color: inherit; text-decoration: none; transition: background-color 180ms ease; }
.home-life-menu a:nth-child(odd) { border-right: 1px solid rgba(40,54,43,.2); }
.home-life-menu a:hover { background: #fff; }
.home-life-menu span { grid-row: 1 / 3; color: var(--accent, #a44f2d); font-size: .72rem; }
.home-life-menu strong { font-size: 1rem; }
.home-life-menu small { color: #747870; line-height: 1.5; }

.home-plan-journey a { min-height: 330px; }
.home-proof { display: grid; grid-template-columns: minmax(0,1.05fr) minmax(0,.95fr); gap: clamp(50px,8vw,110px); align-items: center; }
.home-proof__image img { width: 100%; height: 610px; object-fit: cover; }
.home-proof__copy h2 { margin: 8px 0 18px; }
.home-proof__copy > p:not(.eyebrow) { color: #62665f; line-height: 1.85; }
.home-proof__facts { margin: 32px 0; border-top: 1px solid rgba(40,54,43,.2); }
.home-proof__facts div { display: grid; grid-template-columns: 110px 1fr; gap: 20px; align-items: center; padding: 16px 0; border-bottom: 1px solid rgba(40,54,43,.2); }
.home-proof__facts strong { color: #27372d; font-size: 1rem; }
.home-proof__facts span { color: #686c66; line-height: 1.55; }

.home-business-renewed .section-heading h2 { color: #fff; }
.home-business-renewed .section-heading > p { color: #cbd1cc; }
.home-partners { display: grid; grid-template-columns: repeat(5,minmax(0,1fr)); border-top: 1px solid rgba(255,255,255,.2); border-bottom: 1px solid rgba(255,255,255,.2); }
.home-partners a { min-height: 230px; padding: 24px 20px; border-right: 1px solid rgba(255,255,255,.2); color: #fff; text-decoration: none; transition: background-color 180ms ease; }
.home-partners a:last-child { border-right: 0; }
.home-partners a:hover { background: rgba(255,255,255,.08); }
.home-partners span { color: #c98251; font-family: Georgia, serif; }
.home-partners div { margin-top: 70px; }
.home-partners strong { display: block; font-size: 1.08rem; }
.home-partners p { margin: 10px 0 0; color: #cbd1cc; line-height: 1.65; }
.home-business-renewed .home-section-action .btn--outline { border-color: rgba(255,255,255,.7); color: #fff; }

.home-final-paths > .container > h2 { max-width: 760px; margin: 8px 0 38px; }
.home-final-paths__grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 22px; }
.home-final-paths__grid a { min-height: 300px; padding: 30px; background: #fff; color: inherit; text-decoration: none; display: flex; flex-direction: column; border-top: 3px solid #a44f2d; transition: transform 180ms ease, box-shadow 180ms ease; }
.home-final-paths__grid a:hover { transform: translateY(-4px); box-shadow: 0 18px 36px rgba(34,45,37,.1); }
.home-final-paths__grid span { color: var(--accent, #a44f2d); font-size: .72rem; }
.home-final-paths__grid h3 { margin: 48px 0 10px; }
.home-final-paths__grid p { color: #62665f; line-height: 1.7; }
.home-final-paths__grid em { margin-top: auto; color: #2d4034; font-style: normal; font-size: .84rem; }

@media (max-width: 980px) {
  .home-system-words,
  .home-partners { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .home-partners a { border-bottom: 1px solid rgba(255,255,255,.2); }
  .home-proof { grid-template-columns: 1fr 1fr; gap: 42px; }
}

@media (max-width: 720px) {
  .home-system-words,
  .home-life-intro,
  .home-life-menu,
  .home-proof,
  .home-partners,
  .home-final-paths__grid { grid-template-columns: 1fr; }
  .home-life-menu a:nth-child(odd) { border-right: 0; }
  .home-plan-journey a { min-height: 280px; }
  .home-proof__image img { height: 390px; }
  .home-partners a { min-height: 170px; border-right: 0; }
  .home-partners div { margin-top: 42px; }
  .home-final-paths__grid a { min-height: 260px; }
}

.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.check-list li {
  position: relative;
  padding-left: 22px;
  color: var(--color-muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--color-grain);
}

.contact-hero .page-hero__grid {
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.78fr);
  align-items: center;
}

.contact-hero__media {
  margin: 0;
}

.contact-hero__media img {
  height: clamp(360px, 34vw, 470px);
  object-position: center 62%;
}

.contact-title__brand {
  white-space: nowrap;
}

.contact-route-card span,
.contact-tips > article > span {
  color: var(--color-grain);
  font-family: var(--font-latin);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-route-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.contact-route-card {
  min-height: 100%;
  padding: 30px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 14px 38px rgba(18, 55, 42, 0.045);
}

.contact-route-card h3 {
  margin: 18px 0 12px;
  color: var(--color-ink-green);
  font-size: 1.38rem;
  line-height: 1.3;
}

.contact-route-card p {
  margin: 0;
  color: var(--color-muted);
}

.contact-route-card .check-list {
  margin: 22px 0 0;
}

.contact-connect__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.62fr);
  gap: clamp(42px, 7vw, 88px);
  align-items: start;
}

.contact-prep {
  display: flex;
  flex-direction: column;
}

.contact-prep h2 {
  max-width: 720px;
  margin: 0;
  color: var(--color-ink-green);
  font-size: clamp(2rem, 3.8vw, 3.25rem);
  line-height: 1.18;
}

.contact-prep__lede {
  max-width: 720px;
  margin: 24px 0 34px;
  color: var(--color-muted);
  font-size: 1.06rem;
  line-height: 1.88;
}

.contact-tips {
  display: grid;
  gap: 14px;
}

.contact-tips article {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 20px 0;
  border-top: 1px solid rgba(47, 111, 87, 0.18);
}

.contact-tips article:last-child {
  border-bottom: 1px solid rgba(47, 111, 87, 0.18);
}

.contact-tips h3 {
  margin: 0 0 6px;
  color: var(--color-ink-green);
  font-size: 1.06rem;
  line-height: 1.5;
}

.contact-tips p {
  margin: 0;
  color: var(--color-muted);
}

.contact-prep__form-action {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 34px;
}

.contact-prep__form-action .btn {
  flex: 0 0 auto;
}

.contact-advisor-card {
  position: relative;
  display: grid;
  gap: 24px;
  padding: 36px;
  overflow: hidden;
  color: var(--color-muted);
  border: 1px solid rgba(47, 111, 87, 0.2);
  border-radius: var(--radius-md);
  background: #edf3e9;
  box-shadow: 0 18px 48px rgba(18, 55, 42, 0.09);
}

.contact-advisor-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  content: "";
  background: var(--color-grain);
}

.contact-advisor-card .eyebrow {
  color: var(--color-grain);
}

.contact-advisor-card h3 {
  margin: 0;
  color: var(--color-ink-green);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.2;
}

.contact-advisor-card__qr {
  width: min(100%, 260px);
  margin: 0 auto;
  padding: 12px 12px 10px;
  border: 1px solid rgba(47, 111, 87, 0.14);
  border-radius: var(--radius-sm);
  background: #fff;
}

.contact-advisor-card__qr img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
}

.contact-advisor-card__qr figcaption {
  padding-top: 8px;
  color: #52625a;
  font-size: 0.86rem;
  text-align: center;
}

.contact-advisor-card__details {
  display: grid;
  gap: 0;
  margin: 0;
  border-top: 1px solid rgba(47, 111, 87, 0.18);
}

.contact-advisor-card__details div {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(47, 111, 87, 0.18);
}

.contact-advisor-card__details dt {
  color: var(--color-muted);
}

.contact-advisor-card__details dd {
  margin: 0;
  color: var(--color-ink-green);
  font-weight: 700;
}

@media (max-width: 860px) {
  .contact-hero .page-hero__grid,
  .contact-connect__grid {
    grid-template-columns: 1fr;
  }

  .contact-hero__media img {
    height: 300px;
  }

  .contact-connect__grid {
    gap: 42px;
  }

  .contact-prep__form-action {
    margin-top: 30px;
  }
}

@media (max-width: 620px) {
  .contact-hero__media img {
    height: 230px;
  }

  .contact-advisor-card {
    padding: 28px 22px;
  }

  .contact-advisor-card__qr {
    width: min(100%, 230px);
  }

  .contact-prep__form-action .btn {
    width: 100%;
  }
}

.image-card--wide {
  aspect-ratio: 16 / 9;
}

.mini-card {
  padding: 24px;
  border-top: 2px solid var(--color-leaf);
  background: rgba(255, 255, 255, 0.7);
}

.mini-card span,
.capability-list span {
  color: var(--color-grain);
  font-family: var(--font-latin);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.mini-card h3,
.capability-list h3 {
  margin: 14px 0 10px;
  font-size: 1.08rem;
  line-height: 1.35;
}

.mini-card p,
.capability-list p {
  margin: 0;
  color: var(--color-muted);
}

.vision-card {
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 38px rgba(18, 55, 42, 0.045);
}

.vision-card > div:last-child {
  padding: 22px;
}

.vision-card__media {
  height: 126px;
  background:
    linear-gradient(135deg, rgba(47, 111, 87, 0.18), rgba(200, 137, 43, 0.12)),
    var(--color-rice-grey);
  border-bottom: 1px solid var(--color-line);
}

.vision-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vision-card span {
  color: var(--color-grain);
  font-family: var(--font-latin);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.vision-card h3 {
  margin: 12px 0 8px;
  color: var(--color-ink-green);
  font-size: 1.08rem;
  line-height: 1.35;
}

.vision-card p {
  margin: 0;
  color: var(--color-muted);
}

.section--capabilities {
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.86), rgba(243, 247, 237, 0.72) 46%, rgba(47, 111, 87, 0.12)),
    var(--color-rice-grey);
}

.capability-list {
  display: grid;
  border-top: 1px solid rgba(47, 111, 87, 0.2);
}

.capability-list article {
  display: grid;
  grid-template-columns: 90px minmax(220px, 0.36fr) minmax(0, 1fr);
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(47, 111, 87, 0.16);
  align-items: baseline;
}

.callout-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 48px;
  align-items: end;
  padding: 48px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: var(--color-panel);
  box-shadow: var(--shadow-soft);
}

.callout-section p {
  max-width: 780px;
  margin: 18px 0 0;
  color: var(--color-muted);
  line-height: 1.85;
}

.callout-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.section--zhangma {
  background:
    linear-gradient(90deg, rgba(243, 247, 237, 0.72), rgba(255, 255, 255, 0.7)),
    var(--color-warm-white);
}

/* About */
.about-hero {
  padding-top: 112px;
  padding-bottom: 88px;
}

.about-hero .page-hero__grid {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.76fr);
  align-items: center;
}

.about-hero .page-title {
  max-width: 820px;
}

.about-hero__media {
  position: relative;
  min-height: 470px;
}

.about-hero__media img {
  height: 100%;
  min-height: 470px;
}

.about-hero__media p {
  position: absolute;
  right: -18px;
  bottom: 30px;
  width: min(78%, 330px);
  margin: 0;
  padding: 22px 24px;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 680;
  line-height: 1.75;
  background: rgba(11, 36, 27, 0.92);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
}

.about-definition__lead {
  display: grid;
  grid-template-columns: minmax(240px, 0.55fr) minmax(0, 1fr);
  gap: 72px;
  align-items: start;
}

.about-definition__lead h2,
.about-life__copy h2,
.about-culture-band h2,
.about-zhangma__copy h2,
.about-future h2 {
  margin: 0;
  color: var(--color-ink-green);
  font-size: 3rem;
  line-height: 1.18;
}

.rich-copy--large p {
  font-size: 1.12rem;
}

.about-roles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  margin-top: 72px;
}

.about-roles article {
  padding-top: 24px;
  border-top: 2px solid rgba(47, 111, 87, 0.3);
}

.about-roles span,
.about-method__steps > li > span {
  color: var(--color-grain);
  font-family: var(--font-latin);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.about-roles h3 {
  margin: 18px 0 12px;
  color: var(--color-ink-green);
  font-size: 1.3rem;
  line-height: 1.4;
}

.about-roles p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.85;
}

.about-village-view .section-heading {
  margin-bottom: 58px;
}

.about-beliefs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
}

.about-beliefs article {
  padding: 36px 32px 38px;
  border-right: 1px solid var(--color-line);
}

.about-beliefs article:first-child {
  padding-left: 0;
}

.about-beliefs article:last-child {
  padding-right: 0;
  border-right: 0;
}

.about-beliefs__label {
  margin: 0 0 28px;
  color: var(--color-grain);
  font-size: 0.84rem;
  font-weight: 760;
}

.about-beliefs h3 {
  margin: 0 0 16px;
  color: var(--color-ink-green);
  font-size: 1.3rem;
  line-height: 1.45;
}

.about-beliefs article > p:last-child {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.86;
}

.about-life__grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.86fr) minmax(0, 1fr);
  gap: 80px;
  align-items: center;
}

.about-life__media {
  position: relative;
  min-height: 600px;
  margin: 0;
}

.about-life__media::after {
  content: "";
  position: absolute;
  right: -24px;
  bottom: -24px;
  width: 56%;
  height: 42%;
  border: 1px solid rgba(200, 137, 43, 0.48);
  border-radius: var(--radius-md);
  z-index: -1;
}

.about-life__media img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.about-life__lede {
  margin: 28px 0 18px;
  color: var(--color-ink-green);
  font-size: 1.18rem;
  font-weight: 650;
  line-height: 1.8;
}

.about-life__copy > p:not(.eyebrow, .about-life__lede) {
  margin: 0 0 18px;
  color: var(--color-muted);
  line-height: 1.9;
}

.text-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin-top: 12px;
  color: var(--color-leaf);
  font-weight: 760;
}

.text-link span {
  transition: transform 160ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.about-culture-band {
  color: rgba(255, 255, 255, 0.78);
  background: var(--color-night-green);
}

.about-culture-band .eyebrow {
  color: #d9ae6c;
}

.about-culture-band h2 {
  color: #fff;
}

.about-culture-band__grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.58fr) minmax(0, 1fr);
  gap: 80px;
  align-items: start;
}

.about-culture-band__copy {
  padding-left: 46px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.about-culture-band__copy p {
  margin: 0 0 20px;
  line-height: 1.9;
}

.about-culture-band__copy .about-quote {
  margin-bottom: 28px;
  color: #fff;
  font-size: 1.72rem;
  font-weight: 650;
  line-height: 1.65;
}

.villages-life-band {
  color: var(--color-muted);
  background: #e7eee3;
}

.villages-life-band .eyebrow {
  color: var(--color-grain);
}

.villages-life-band h2,
.villages-life-band .about-culture-band__copy .about-quote {
  color: var(--color-ink-green);
}

.villages-life-band .about-culture-band__copy {
  border-left-color: rgba(18, 55, 42, 0.18);
}

.about-method__steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 58px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
}

.about-method__steps li {
  padding: 30px 26px 34px;
  border-right: 1px solid var(--color-line);
}

.about-method__steps li:first-child {
  padding-left: 0;
}

.about-method__steps li:last-child {
  padding-right: 0;
  border-right: 0;
}

.about-method__steps h3 {
  margin: 42px 0 12px;
  color: var(--color-ink-green);
  font-size: 1.14rem;
  line-height: 1.5;
}

.about-method__steps p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.82;
}

.about-zhangma__grid {
  display: grid;
  grid-template-columns: minmax(380px, 0.92fr) minmax(0, 1fr);
  gap: 72px;
  align-items: center;
}

.about-zhangma__media img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.about-zhangma__lede {
  margin: 26px 0 16px;
  color: var(--color-ink-green);
  font-size: 1.16rem;
  font-weight: 680;
  line-height: 1.75;
}

.about-zhangma__copy > p:not(.eyebrow, .about-zhangma__lede) {
  margin: 0 0 17px;
  color: var(--color-muted);
  line-height: 1.9;
}

.about-proof-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 20px;
  margin: 28px 0 30px;
  border-top: 1px solid rgba(47, 111, 87, 0.2);
}

.about-proof-list span {
  position: relative;
  padding: 14px 0 14px 18px;
  color: var(--color-ink-green);
  font-size: 0.94rem;
  font-weight: 700;
  border-bottom: 1px solid rgba(47, 111, 87, 0.16);
}

.about-proof-list span::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--color-grain);
  border-radius: 50%;
}

.about-future {
  text-align: center;
}

.about-future__inner > h2 {
  max-width: 900px;
  margin-inline: auto;
}

.about-future__inner > p:not(.eyebrow) {
  max-width: 760px;
  margin: 28px auto 0;
  color: var(--color-muted);
  font-size: 1.08rem;
  line-height: 1.9;
}

.about-future__links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 52px;
  text-align: left;
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
}

.about-future__links a {
  min-height: 150px;
  padding: 28px;
  border-right: 1px solid var(--color-line);
  transition: color 160ms ease, background 160ms ease;
}

.about-future__links a:last-child {
  border-right: 0;
}

.about-future__links a:hover {
  color: #fff;
  background: var(--color-leaf);
}

.about-future__links span,
.about-future__links strong {
  display: block;
}

.about-future__links span {
  margin-bottom: 26px;
  color: var(--color-muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.about-future__links a:hover span {
  color: rgba(255, 255, 255, 0.72);
}

.about-future__links strong {
  color: var(--color-ink-green);
  font-size: 1.1rem;
  line-height: 1.5;
}

.about-future__links a:hover strong {
  color: #fff;
}

.zhangma-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 48px;
  align-items: end;
}

.zhangma-section h2 {
  margin: 0;
  color: var(--color-ink-green);
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  line-height: 1.18;
}

.zhangma-section p:not(.eyebrow) {
  max-width: 780px;
  margin: 18px 0 0;
  color: var(--color-muted);
  line-height: 1.85;
}

.village-hero {
  position: relative;
  min-height: min(720px, calc(100vh - var(--header-height)));
  display: grid;
  align-items: end;
  padding: 110px 0 82px;
  overflow: hidden;
  border-bottom: 1px solid var(--color-line);
  background: var(--color-ink-green);
}

.village-hero::before,
.village-hero::after {
  position: absolute;
  inset: 0;
  content: "";
}

.village-hero--zhangma::before {
  background:
    linear-gradient(90deg, rgba(11, 36, 27, 0.84), rgba(18, 55, 42, 0.58) 42%, rgba(251, 250, 244, 0.18)),
    linear-gradient(180deg, rgba(11, 36, 27, 0.12), rgba(11, 36, 27, 0.62)),
    url("../images/villages/zhangma/hero-village.webp") center bottom / cover;
  transform: scale(1.02);
}

.village-hero--hongtian::before {
  background:
    linear-gradient(90deg, rgba(11, 36, 27, 0.82), rgba(18, 55, 42, 0.52) 42%, rgba(251, 250, 244, 0.08)),
    linear-gradient(180deg, rgba(11, 36, 27, 0.1), rgba(11, 36, 27, 0.6)),
    url("../images/villages/hongtian/hero.webp") center / cover;
  transform: scale(1.02);
}

.village-hero--daqian::before {
  background:
    linear-gradient(90deg, rgba(11, 36, 27, 0.82), rgba(18, 55, 42, 0.5) 42%, rgba(251, 250, 244, 0.08)),
    linear-gradient(180deg, rgba(11, 36, 27, 0.08), rgba(11, 36, 27, 0.62)),
    url("../images/villages/daqian/hero.webp") center / cover;
  transform: scale(1.02);
}

.village-hero::after {
  background: linear-gradient(180deg, transparent, rgba(11, 36, 27, 0.16));
}

.village-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 56px;
  align-items: end;
}

.village-hero .eyebrow,
.village-hero .page-title {
  color: var(--color-white);
}

.village-hero .page-lede {
  color: rgba(255, 254, 249, 0.82);
}

.village-hero .btn--outline {
  border-color: rgba(255, 254, 249, 0.7);
  color: var(--color-white);
}

.village-hero .btn--outline:hover {
  border-color: var(--color-white);
  background: rgba(255, 254, 249, 0.12);
}

.village-hero__facts {
  padding: 24px;
  border: 1px solid rgba(255, 254, 249, 0.24);
  border-radius: var(--radius-md);
  background: rgba(11, 36, 27, 0.34);
  color: var(--color-white);
  backdrop-filter: blur(14px);
}

.village-hero__facts dl {
  display: grid;
  gap: 18px;
  margin: 0;
}

.village-hero__facts div {
  display: grid;
  gap: 4px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 254, 249, 0.16);
}

.village-hero__facts div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.village-hero__facts dt {
  color: rgba(255, 254, 249, 0.58);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.village-hero__facts dd {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 700;
}

.zhangma-page section[id],
.hongtian-page section[id],
.daqian-page section[id] {
  scroll-margin-top: calc(var(--header-height) + 20px);
}

.village-intro {
  align-items: center;
}

.village-method-grid .mini-card {
  min-height: 210px;
  border: 1px solid var(--color-line);
  border-top: 2px solid var(--color-leaf);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.78);
}

.hongtian-day-section .section-heading {
  margin-bottom: 54px;
}

.hongtian-rhythm-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
}

.hongtian-rhythm-grid article {
  min-height: 270px;
  padding: 30px 24px 34px;
  border-right: 1px solid var(--color-line);
}

.hongtian-rhythm-grid article:first-child {
  padding-left: 0;
}

.hongtian-rhythm-grid article:last-child {
  padding-right: 0;
  border-right: 0;
}

.hongtian-rhythm-grid span {
  color: var(--color-grain);
  font-size: 0.82rem;
  font-weight: 800;
}

.hongtian-rhythm-grid h3 {
  margin: 44px 0 12px;
  color: var(--color-ink-green);
  font-size: 1.18rem;
}

.hongtian-rhythm-grid p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.82;
}

.hongtian-stay-section .proof-stats span {
  font-size: 1.08rem;
  line-height: 1.25;
}

.zhangma-question .section-heading {
  margin-bottom: 54px;
}

.zhangma-use-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
}

.zhangma-use-grid article {
  min-height: 280px;
  padding: 30px 24px 34px;
  border-right: 1px solid var(--color-line);
}

.zhangma-use-grid article:first-child {
  padding-left: 0;
}

.zhangma-use-grid article:last-child {
  padding-right: 0;
  border-right: 0;
}

.zhangma-use-grid span,
.zhangma-story-list span {
  color: var(--color-grain);
  font-family: var(--font-latin);
  font-size: 0.78rem;
  font-weight: 800;
}

.zhangma-use-grid h3 {
  margin: 44px 0 12px;
  color: var(--color-ink-green);
  font-size: 1.18rem;
}

.zhangma-use-grid p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.82;
}

.zhangma-people-section .section-heading {
  margin-bottom: 56px;
}

.zhangma-people-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.72fr) minmax(0, 1fr);
  gap: 72px;
  align-items: start;
}

.zhangma-people-grid--text-only {
  grid-template-columns: 1fr;
}

.zhangma-people-grid figure {
  position: sticky;
  top: calc(var(--header-height) + 28px);
  margin: 0;
}

.zhangma-people-grid figure img {
  width: 100%;
  height: 650px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.zhangma-people-grid figcaption {
  padding: 16px 2px 0;
  color: var(--color-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.zhangma-story-list {
  border-top: 1px solid var(--color-line);
}

.zhangma-story-list article {
  display: grid;
  grid-template-columns: 150px minmax(210px, 0.68fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid var(--color-line);
}

.zhangma-story-list h3 {
  margin: 0;
  color: var(--color-ink-green);
  font-size: 1.12rem;
  line-height: 1.55;
}

.zhangma-story-list p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.86;
}

.zhangma-community-band {
  color: var(--color-muted);
  background: #e7eee3;
}

.zhangma-community-band .eyebrow {
  color: var(--color-grain);
}

.zhangma-community-band h2,
.zhangma-community-band .about-culture-band__copy .about-quote {
  color: var(--color-ink-green);
}

.zhangma-community-band .about-culture-band__copy {
  border-left-color: rgba(18, 55, 42, 0.18);
}

.zhangma-community-band .about-quote {
  max-width: 760px;
}

.zhangma-proof-section .proof-panel {
  align-items: start;
}

.zhangma-proof-section .proof-panel--text-only {
  grid-template-columns: 1fr;
}

.zhangma-proof-section .proof-panel--text-only > div > p:not(.eyebrow) {
  max-width: 860px;
}

.zhangma-proof-section .proof-panel > figure {
  position: sticky;
  top: calc(var(--header-height) + 28px);
  aspect-ratio: auto;
  height: 560px;
}

.zhangma-change-list {
  margin-top: 34px;
}

.zhangma-change-list article {
  grid-template-columns: 46px 190px minmax(0, 1fr);
  gap: 18px;
  padding: 20px 0;
}

.zhangma-change-list h3 {
  margin: 0;
  font-size: 1rem;
}

.zhangma-change-list p {
  font-size: 0.94rem;
  line-height: 1.72;
}

.life-showcase {
  display: grid;
  gap: 22px;
}

.life-showcase article {
  display: grid;
  grid-template-columns: minmax(230px, 0.34fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 38px rgba(18, 55, 42, 0.04);
}

.life-showcase img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.life-showcase span {
  color: var(--color-grain);
  font-family: var(--font-latin);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.life-showcase h3 {
  margin: 10px 0 10px;
  color: var(--color-ink-green);
  font-size: 1.3rem;
  line-height: 1.35;
}

.life-showcase p {
  margin: 0;
  color: var(--color-muted);
}

.village-club-section {
  align-items: center;
}

.village-club-section > div:first-child > p:not(.eyebrow):not(.source-note) {
  margin: 0;
  color: var(--color-muted);
  font-size: 1.06rem;
  line-height: 1.9;
}

.village-club-section > div:first-child > p + p {
  margin-top: 18px;
}

.club-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.82fr);
  gap: 18px;
  align-items: end;
}

.club-gallery figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--color-panel);
  box-shadow: var(--shadow-soft);
}

.club-gallery figure:first-child {
  transform: translateY(-28px);
}

.club-gallery img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.club-gallery figcaption {
  padding: 14px 16px;
  color: var(--color-muted);
  font-size: 0.9rem;
}

.village-business-section,
.hongtian-life-section {
  align-items: center;
}

.section--proof {
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.86), rgba(243, 247, 237, 0.72) 50%, rgba(47, 111, 87, 0.14)),
    var(--color-rice-grey);
}

.proof-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.62fr);
  gap: 52px;
  align-items: center;
}

.proof-panel h2 {
  margin: 0;
  color: var(--color-ink-green);
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  line-height: 1.18;
}

.proof-panel p:not(.eyebrow):not(.source-note) {
  margin: 20px 0 0;
  color: var(--color-muted);
  font-size: 1.06rem;
  line-height: 1.9;
}

.proof-panel figure {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.proof-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.proof-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.proof-stats article {
  padding: 20px;
  border: 1px solid rgba(47, 111, 87, 0.18);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.74);
}

.proof-stats span {
  color: var(--color-ink-green);
  font-family: var(--font-latin);
  font-size: 1.45rem;
  font-weight: 820;
  line-height: 1;
}

.proof-stats p {
  margin: 12px 0 0;
  color: var(--color-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.service-list {
  display: grid;
  gap: 18px;
}

.service-list article {
  padding: 24px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 38px rgba(18, 55, 42, 0.04);
}

.service-list span {
  color: var(--color-grain);
  font-family: var(--font-latin);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.service-list h3 {
  margin: 12px 0 8px;
  color: var(--color-ink-green);
  font-size: 1.14rem;
  line-height: 1.35;
}

.service-list p {
  margin: 0;
  color: var(--color-muted);
}

.participation-grid {
  align-items: stretch;
}

.image-feature-card {
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 14px 38px rgba(18, 55, 42, 0.045);
}

.image-feature-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.image-feature-card > div {
  padding: 24px;
}

.image-feature-card span {
  color: var(--color-grain);
  font-family: var(--font-latin);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.image-feature-card h3 {
  margin: 12px 0 10px;
  color: var(--color-ink-green);
  font-size: 1.22rem;
  line-height: 1.35;
}

.image-feature-card p {
  margin: 0;
  color: var(--color-muted);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  height: var(--header-height);
  border-bottom: 1px solid rgba(223, 228, 216, 0.88);
  background: rgba(251, 250, 244, 0.88);
  backdrop-filter: blur(18px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand__mark {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  object-fit: cover;
  box-shadow: 0 8px 18px rgba(18, 55, 42, 0.12);
}

.brand__text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.brand__name {
  color: var(--color-ink-green);
  font-size: 1.06rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand__sub {
  color: var(--color-muted);
  font-family: var(--font-latin);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-nav__item {
  position: relative;
}

.site-nav__link {
  display: inline-flex;
  align-items: center;
  min-height: var(--header-height);
  color: var(--color-muted);
  font-size: 0.94rem;
  font-weight: 650;
}

.site-nav__link:hover,
.site-nav__link.is-active,
.site-nav__item.is-active > .site-nav__link {
  color: var(--color-ink-green);
}

.site-nav__link.is-active,
.site-nav__item.is-active > .site-nav__link {
  text-decoration: underline;
  text-decoration-color: var(--color-grain);
  text-decoration-thickness: 2px;
  text-underline-offset: 8px;
}

.site-subnav {
  position: absolute;
  z-index: 40;
  top: calc(100% - 8px);
  left: 50%;
  display: grid;
  min-width: 176px;
  padding: 10px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: var(--color-white);
  box-shadow: 0 22px 60px rgba(18, 55, 42, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.site-nav__item:hover .site-subnav,
.site-nav__item:focus-within .site-subnav {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.site-subnav a {
  display: block;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  color: var(--color-muted);
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
}

.site-subnav a:hover {
  color: var(--color-ink-green);
  background: var(--color-rice-grey);
}

.site-header__cta {
  min-width: max-content;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--color-ink-green);
}

.site-footer {
  color: rgba(255, 254, 249, 0.84);
  background:
    linear-gradient(135deg, rgba(47, 111, 87, 0.18), transparent 46%),
    var(--color-night-green);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(220px, 1.35fr) repeat(5, minmax(120px, 1fr));
  gap: 32px;
  padding: 70px 0 48px;
}

.site-footer h2,
.site-footer h3 {
  margin: 0 0 16px;
  color: var(--color-white);
}

.site-footer h3 a {
  color: var(--color-white);
}

.site-footer p,
.site-footer a {
  color: rgba(255, 254, 249, 0.72);
}

.site-footer a:hover {
  color: var(--color-white);
}

.footer-links {
  display: grid;
  gap: 10px;
}

@media (max-width: 1180px) and (min-width: 861px) {
  .site-footer__inner {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 36px 24px;
  }

  .site-footer__brand {
    grid-column: 1 / -1;
  }
}

.footer-slogan {
  margin: 0;
  color: var(--color-white);
  font-weight: 760;
}

.footer-note {
  margin: 14px 0 0;
  max-width: 220px;
  font-size: 0.88rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 254, 249, 0.14);
  color: rgba(255, 254, 249, 0.56);
  font-size: 0.88rem;
}

.footer-bottom a {
  color: inherit;
}

@media (max-width: 1080px) {
  .site-nav,
  .site-header__cta {
    display: none;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    display: none;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px 20px 28px;
    border-bottom: 1px solid var(--color-line);
    background: var(--color-warm-white);
    box-shadow: var(--shadow-soft);
    max-height: calc(100vh - var(--header-height));
    overflow: auto;
  }

  body.nav-open .site-nav {
    display: grid;
  }

  .site-nav__item {
    border-bottom: 1px solid rgba(223, 228, 216, 0.72);
  }

  .site-nav__link {
    min-height: auto;
    padding: 12px 0;
    font-size: 1.02rem;
  }

  .site-nav > .site-nav__link {
    border-bottom: 1px solid rgba(223, 228, 216, 0.72);
  }

  .site-subnav {
    position: static;
    min-width: 0;
    padding: 0 0 12px 14px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .site-subnav a {
    padding: 7px 0;
    color: var(--color-muted);
    font-size: 0.92rem;
  }

  .site-subnav a:hover {
    background: transparent;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 68px;
  }

  .container,
  .container-wide {
    width: min(100% - 32px, var(--container));
  }

  .page-hero {
    padding: 64px 0 52px;
  }

  .page-hero__grid,
  .home-hero__grid,
  .home-intro,
  .home-village-grid,
  .about-definition__lead,
  .about-roles,
  .about-beliefs,
  .about-life__grid,
  .about-culture-band__grid,
  .about-method__steps,
  .about-zhangma__grid,
  .about-future__links,
  .zhangma-use-grid,
  .hongtian-rhythm-grid,
  .zhangma-people-grid,
  .zhangma-story-list article,
  .section-heading,
  .split-section,
  .split-section--reverse,
  .lifestyle-feature,
  .lifestyle-feature--reverse,
  .lifestyle-pillars,
  .lifestyle-overview-grid,
  .lifestyle-story-grid,
  .event-list-card,
  .plan-grid,
  .plan-feature,
  .plan-feature--reverse,
  .plan-benefits,
  .plan-path,
  .plan-audience,
  .contact-route-grid,
  .contact-action-grid,
  .form-placeholder,
  .village-case-card,
  .village-case-card--reverse,
  .overview-capabilities,
  .grid--2,
  .grid--3,
  .grid--4 {
    grid-template-columns: 1fr;
  }

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

  .site-footer__brand {
    grid-column: 1 / -1;
  }

  .zhangma-use-grid {
    border-bottom: 0;
  }

  .zhangma-use-grid article,
  .zhangma-use-grid article:first-child,
  .zhangma-use-grid article:last-child {
    min-height: 0;
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid var(--color-line);
  }

  .zhangma-use-grid h3 {
    margin-top: 18px;
  }

  .hongtian-rhythm-grid {
    border-bottom: 0;
  }

  .hongtian-rhythm-grid article,
  .hongtian-rhythm-grid article:first-child,
  .hongtian-rhythm-grid article:last-child {
    min-height: 0;
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid var(--color-line);
  }

  .hongtian-rhythm-grid h3 {
    margin-top: 18px;
  }

  .zhangma-people-grid {
    gap: 36px;
  }

  .zhangma-people-grid figure,
  .zhangma-proof-section .proof-panel > figure {
    position: static;
  }

  .zhangma-people-grid figure img,
  .zhangma-proof-section .proof-panel > figure {
    height: 360px;
  }

  .zhangma-story-list article {
    gap: 10px;
  }

  .about-hero {
    padding-top: 68px;
    padding-bottom: 58px;
  }

  .about-hero .page-hero__grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .about-hero__media,
  .about-hero__media img {
    min-height: 0;
    height: 360px;
  }

  .about-hero__media p {
    right: -8px;
    bottom: 20px;
  }

  .about-definition__lead,
  .about-life__grid,
  .about-culture-band__grid,
  .about-zhangma__grid {
    gap: 38px;
  }

  .about-definition__lead h2,
  .about-life__copy h2,
  .about-culture-band h2,
  .about-zhangma__copy h2,
  .about-future h2 {
    font-size: 2.25rem;
  }

  .about-culture-band__copy .about-quote {
    font-size: 1.42rem;
  }

  .about-roles {
    gap: 28px;
    margin-top: 50px;
  }

  .about-beliefs {
    border-bottom: 0;
  }

  .about-beliefs article,
  .about-beliefs article:first-child,
  .about-beliefs article:last-child {
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid var(--color-line);
  }

  .about-beliefs__label {
    margin-bottom: 16px;
  }

  .about-life__media,
  .about-life__media img {
    min-height: 0;
    height: 430px;
  }

  .about-life__media::after {
    right: -10px;
    bottom: -12px;
  }

  .about-culture-band__copy {
    padding: 30px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 0;
  }

  .about-method__steps {
    border-bottom: 0;
  }

  .about-method__steps li,
  .about-method__steps li:first-child,
  .about-method__steps li:last-child {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 16px;
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid var(--color-line);
  }

  .about-method__steps h3 {
    margin: 0 0 8px;
  }

  .about-zhangma__media img {
    height: 380px;
  }

  .about-future__links a {
    min-height: 0;
    padding: 24px 4px;
    border-right: 0;
    border-bottom: 1px solid var(--color-line);
  }

  .about-future__links a:last-child {
    border-bottom: 0;
  }

  .about-future__links span {
    margin-bottom: 10px;
  }

  .section {
    padding: 64px 0;
  }

  .home-hero {
    min-height: auto;
    padding: 64px 0 56px;
  }

  .home-hero__grid {
    gap: 40px;
  }

  .home-hero__copy h1 {
    font-size: clamp(3rem, 18vw, 4.6rem);
  }

  .home-hero__media {
    min-height: 340px;
  }

  .home-hero__image-main {
    inset: 0 38px 58px 0;
    width: calc(100% - 38px);
    height: calc(100% - 58px);
  }

  .home-hero__image-top {
    top: 24px;
    width: 42%;
    height: 30%;
  }

  .home-hero__image-bottom {
    right: 18px;
    width: 54%;
    height: 32%;
  }

  .home-hero__image-top,
  .home-hero__image-bottom {
    border-width: 4px;
  }

  .placeholder-panel {
    padding: 28px;
  }

  .image-brief {
    min-height: 260px;
  }

  .hero-media img {
    height: 220px;
  }

  .village-collage {
    height: 280px;
  }

  .villages-overview-hero {
    padding: 40px 0 36px;
  }

  .villages-overview-hero .page-hero__grid {
    gap: 32px;
  }

  .village-collage__item span {
    padding: 8px 12px;
  }

  .village-case-card,
  .village-case-card--reverse {
    gap: 0;
  }

  .village-case-card--reverse img {
    order: 0;
  }

  .lifestyle-hero__media {
    grid-template-columns: 1fr;
  }

  .lifestyle-hero__media img,
  .lifestyle-hero__media img:last-child {
    min-height: 0;
    height: 240px;
  }

  .lifestyle-feature--reverse .lifestyle-feature__media {
    order: 0;
  }

  .lifestyle-feature__media {
    grid-template-columns: 1fr;
  }

  .lifestyle-feature__media img,
  .lifestyle-feature__media img:first-child {
    min-height: 0;
    height: 220px;
    grid-row: auto;
  }

  .lifestyle-feature__copy {
    padding: 18px 4px 4px;
  }

  .lifestyle-story {
    grid-template-columns: 1fr;
  }

  .lifestyle-story img {
    height: 240px;
    min-height: 0;
  }

  .lifestyle-story div {
    padding: 4px;
  }

  .event-list-card {
    gap: 0;
  }

  .event-list-card img {
    min-height: 0;
    height: 230px;
  }

  .event-list-card__body {
    padding: 22px 4px 4px;
  }

  .plan-feature--reverse figure {
    order: 0;
  }

  .plan-feature {
    gap: 24px;
  }

  .plan-feature figure {
    aspect-ratio: 16 / 10;
  }

  .plan-path {
    gap: 8px;
  }

  .lifestyle-nav,
  .lifestyle-tabs,
  .source-note--block {
    width: min(100% - 32px, var(--container));
  }

  .lifestyle-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lifestyle-gallery img,
  .lifestyle-gallery a {
    height: 132px;
  }

  .village-case-card > img {
    min-height: 240px;
    height: 260px;
  }

  .village-case-card > div,
  .village-case-card--reverse > div {
    padding: 22px 4px 4px;
  }

  .capability-list article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .callout-section,
  .zhangma-section,
  .village-hero__inner,
  .life-showcase article,
  .proof-panel {
    grid-template-columns: 1fr;
  }

  .village-hero {
    min-height: auto;
    padding: 72px 0 44px;
  }

  .village-hero__inner {
    gap: 34px;
  }

  .village-hero__facts {
    padding: 18px;
  }

  .life-showcase article {
    padding: 14px;
  }

  .life-showcase img {
    height: 220px;
  }

  .club-gallery,
  .proof-stats {
    grid-template-columns: 1fr;
  }

  .club-gallery figure:first-child {
    transform: none;
  }

  .club-gallery img {
    height: 260px;
  }

  .callout-actions {
    justify-content: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

/* Membership page keeps the final handoff light without changing the global footer. */
.membership-page-body .site-footer {
  color: #526159;
  background: #f6f7f1;
  border-top: 1px solid #d6ddce;
}

.membership-page-body .site-footer h2,
.membership-page-body .site-footer h3,
.membership-page-body .site-footer h3 a,
.membership-page-body .footer-slogan {
  color: #183d2e;
}

.membership-page-body .site-footer p,
.membership-page-body .site-footer a {
  color: #647169;
}

.membership-page-body .site-footer a:hover {
  color: #a85236;
}

.membership-page-body .footer-bottom {
  border-top-color: #d6ddce;
  color: #778178;
}

/* Join the family: content components aligned with the standard site shell. */
.family-membership-page section[id] {
  scroll-margin-top: var(--header-height);
}

.family-membership-hero__media img {
  object-position: 28% center;
}

.family-membership-title span:nth-child(3) {
  display: block;
}

.family-membership-title span {
  white-space: nowrap;
}

.family-membership-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 0.55fr)) minmax(260px, 1fr);
  align-items: stretch;
  margin-top: 54px;
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
}

.family-membership-facts > div {
  padding: 22px 24px 20px 0;
}

.family-membership-facts > div + div,
.family-membership-facts > p {
  padding-left: 24px;
  border-left: 1px solid var(--color-line);
}

.family-membership-facts strong,
.family-membership-facts span {
  display: block;
}

.family-membership-facts strong {
  color: var(--color-ink-green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.85rem;
  line-height: 1.1;
}

.family-membership-facts span {
  margin-top: 6px;
  color: var(--color-muted);
  font-size: 0.82rem;
}

.family-membership-facts > p {
  display: flex;
  margin: 0;
  align-items: center;
  color: var(--color-clay);
  font-size: 0.9rem;
  line-height: 1.8;
}

.family-membership-benefits article {
  min-height: 236px;
}

.family-membership-benefits article > span {
  display: block;
  margin-bottom: 34px;
  color: var(--color-clay);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
}

.family-image-placeholder {
  position: relative;
  display: flex;
  min-height: 360px;
  padding: 30px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border: 1px dashed #aeb8aa;
  border-radius: var(--radius-md);
  background: #edf1e9;
  color: #536158;
}

.family-image-placeholder::before {
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(102, 115, 109, 0.18);
  content: "";
  pointer-events: none;
}

.family-image-placeholder span,
.family-image-placeholder strong,
.family-image-placeholder small {
  position: relative;
  z-index: 1;
}

.family-image-placeholder span {
  width: fit-content;
  margin-bottom: auto;
  padding: 5px 8px;
  border: 1px solid #b6c0b2;
  font-size: 0.75rem;
  font-weight: 700;
}

.family-image-placeholder strong {
  color: var(--color-ink-green);
  line-height: 1.65;
}

.family-image-placeholder small {
  margin-top: 6px;
  color: var(--color-muted);
  font-size: 0.75rem;
  line-height: 1.6;
}

.family-image-placeholder--feature {
  min-height: 520px;
}

.family-image-placeholder--wide {
  min-height: 0;
  aspect-ratio: 16 / 7;
}

.family-membership-image {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: #edf1e9;
}

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

.family-membership-image--wide img {
  height: auto;
}

.family-membership-image--wide {
  margin-inline: auto;
}

.family-membership-image--activity {
  border-bottom: 1px solid var(--color-line);
  border-radius: 0;
}

.family-membership-image--activity img {
  aspect-ratio: 3 / 2;
}

.family-membership-image__treasure {
  object-position: center 62%;
}

.co-creation-club-hero__image {
  object-position: center 56%;
}

.family-membership-detail-list {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--color-line);
}

.family-membership-detail-list li {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid var(--color-line);
}

.family-membership-detail-list strong {
  color: var(--color-clay);
}

.family-membership-detail-list span {
  color: var(--color-muted);
}

.family-membership-calendar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: var(--color-line);
}

.family-membership-calendar article {
  min-height: 130px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.82);
}

.family-membership-calendar time {
  color: var(--color-clay);
  font-weight: 700;
}

.family-membership-calendar p {
  margin: 18px 0 0;
  color: var(--color-muted);
  font-size: 0.88rem;
  line-height: 1.7;
}

.family-membership-note {
  margin-top: 16px;
  color: var(--color-muted);
  font-size: 0.78rem;
}

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

.family-membership-experiences article {
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.82);
}

.family-image-placeholder--activity {
  min-height: 0;
  aspect-ratio: 3 / 2;
  border: 0;
  border-bottom: 1px dashed #aeb8aa;
  border-radius: 0;
}

.family-membership-experiences article > div:last-child {
  padding: 28px;
}

.family-membership-experiences b {
  color: var(--color-clay);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
}

.family-membership-experiences h3 {
  margin: 12px 0 10px;
  color: var(--color-ink-green);
}

.family-membership-experiences p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.8;
}

.family-membership-experiences article > div:last-child > strong {
  display: block;
  margin-top: 18px;
  color: var(--color-clay);
  font-size: 0.86rem;
}

.family-membership-day-flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 46px;
  border-top: 1px solid var(--color-line);
}

.family-membership-day-flow p {
  position: relative;
  margin: 0;
  padding: 22px 12px 0 0;
}

.family-membership-day-flow p::before {
  position: absolute;
  top: -5px;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--color-clay);
  content: "";
}

.family-membership-day-flow time,
.family-membership-day-flow span {
  display: block;
}

.family-membership-day-flow time {
  color: var(--color-ink-green);
  font-weight: 700;
}

.family-membership-day-flow span {
  margin-top: 5px;
  color: var(--color-muted);
  font-size: 0.82rem;
}

.family-membership-festival img {
  object-position: 52% center;
}

.family-membership-activity-list {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-top: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--color-line);
}

.family-membership-activity-list li {
  padding: 18px 12px;
  border-right: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
  color: #4f5d55;
  text-align: center;
  font-size: 0.9rem;
}

@media (max-width: 980px) {
  .family-membership-facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .family-membership-facts > p {
    grid-column: 1 / -1;
    min-height: 62px;
    padding-left: 0;
    border-top: 1px solid var(--color-line);
    border-left: 0;
  }

  .family-membership-calendar {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .family-membership-activity-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .family-membership-facts {
    grid-template-columns: 1fr;
  }

  .family-membership-facts > div {
    padding: 16px 0;
  }

  .family-membership-facts > div + div {
    padding-left: 0;
    border-top: 1px solid var(--color-line);
    border-left: 0;
  }

  .family-membership-facts > p {
    grid-column: auto;
  }

  .family-membership-benefits,
  .family-membership-calendar,
  .family-membership-experiences {
    grid-template-columns: 1fr;
  }

  .family-membership-benefits article {
    min-height: 0;
  }

  .family-membership-benefits article > span {
    margin-bottom: 18px;
  }

  .family-image-placeholder--feature {
    min-height: 360px;
  }

  .family-image-placeholder--wide {
    min-height: 260px;
    aspect-ratio: auto;
  }

  .family-membership-day-flow {
    grid-template-columns: 1fr;
    border-top: 0;
    border-left: 1px solid var(--color-line);
  }

  .family-membership-day-flow p {
    padding: 0 0 22px 22px;
  }

  .family-membership-day-flow p::before {
    top: 5px;
    left: -5px;
  }

  .family-membership-activity-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .family-membership-title span {
    display: block;
  }

  .family-image-placeholder {
    padding: 24px;
  }

  .family-membership-detail-list li {
    grid-template-columns: 70px minmax(0, 1fr);
    gap: 12px;
  }
}

/* About overview: company story connected to the four main site areas */
.about-overview-hero {
  padding-top: 104px;
  padding-bottom: 86px;
}

.about-overview-hero .page-hero__grid {
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.78fr);
  align-items: center;
}

.about-overview-hero .page-title {
  max-width: 850px;
}

.about-overview-hero__media {
  margin: 0;
}

.about-overview-hero__media img {
  width: 100%;
  height: 470px;
  object-fit: cover;
  object-position: 70% 54%;
  border-radius: 6px;
  box-shadow: var(--shadow-soft);
}

.about-overview-hero__media figcaption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 2px 0;
  color: var(--color-muted);
  font-size: 0.82rem;
}

.about-overview-hero__media figcaption strong {
  color: var(--color-ink-green);
}

.about-overview-definition h2,
.about-overview-responsibility h2,
.about-overview-culture h2,
.about-overview-proof h2,
.about-overview-ending h2 {
  margin: 0;
  color: var(--color-ink-green);
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.2;
}

.about-overview-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 68px;
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
}

.about-overview-facts article {
  min-height: 150px;
  padding: 28px;
  border-right: 1px solid var(--color-line);
}

.about-overview-facts article:first-child { padding-left: 0; }
.about-overview-facts article:last-child { padding-right: 0; border-right: 0; }

.about-overview-facts strong,
.about-overview-facts span {
  display: block;
}

.about-overview-facts strong {
  color: var(--accent, #a44f2d);
  font: 500 1.8rem/1.1 Georgia, serif;
}

.about-overview-facts span {
  margin-top: 26px;
  color: #5e625c;
  line-height: 1.7;
}

.about-overview-work {
  scroll-margin-top: calc(var(--header-height) + 20px);
}

.about-overview-work-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 34px;
  margin-top: 54px;
}

.about-overview-work-grid > a {
  display: grid;
  grid-template-columns: minmax(170px, 0.72fr) minmax(0, 1fr);
  gap: 26px;
  min-height: 286px;
  padding: 28px 0;
  border-top: 1px solid rgba(40, 54, 43, 0.2);
  color: inherit;
  text-decoration: none;
}

.about-overview-work-grid img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 6px;
}

.about-overview-work-grid > a:nth-child(1) img { object-position: center 58%; }
.about-overview-work-grid > a:nth-child(2) img { object-position: center 52%; }
.about-overview-work-grid > a:nth-child(3) img { object-position: center 42%; }
.about-overview-work-grid > a:nth-child(4) img { object-position: center 54%; }

.about-overview-work-grid > a > div {
  display: flex;
  flex-direction: column;
}

.about-overview-work-grid span {
  color: var(--accent, #a44f2d);
  font-size: 0.78rem;
  font-weight: 760;
}

.about-overview-work-grid h3 {
  margin: 16px 0 10px;
  color: var(--color-ink-green);
  font-size: 1.55rem;
}

.about-overview-work-grid p {
  margin: 0;
  color: #60645d;
  line-height: 1.75;
}

.about-overview-work-grid strong {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 20px;
  color: var(--color-leaf);
  font-size: 0.9rem;
}

.about-overview-work-grid strong b {
  transition: transform 180ms ease;
}

.about-overview-work-grid > a:hover strong b {
  transform: translateX(4px);
}

.about-overview-responsibility .about-life__media {
  min-height: 560px;
}

.about-overview-responsibility .about-life__media img {
  height: 560px;
}

.about-overview-culture {
  color: var(--color-muted);
}

.about-overview-culture .eyebrow {
  color: var(--color-grain);
}

.about-overview-culture .about-culture-band__copy {
  border-left-color: rgba(18, 55, 42, 0.18);
}

.about-overview-culture .about-culture-band__copy .about-quote {
  color: var(--color-ink-green);
}

.about-overview-proof__grid {
  display: grid;
  grid-template-columns: minmax(380px, 0.92fr) minmax(0, 1fr);
  gap: clamp(46px, 7vw, 82px);
  align-items: center;
}

.about-overview-proof__media {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 10px;
  height: 570px;
}

.about-overview-proof__media img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  border-radius: 6px;
}

.about-overview-proof__media img:first-child {
  grid-row: 1 / 3;
  object-position: center;
}

.about-overview-proof__media img:nth-child(2) { object-position: center 58%; }
.about-overview-proof__media img:nth-child(3) { object-position: center; }

.about-overview-proof__copy > p:not(.eyebrow) {
  margin: 22px 0 0;
  color: #5e625c;
  line-height: 1.86;
}

.about-overview-proof__links {
  margin-top: 30px;
  border-top: 1px solid rgba(40, 54, 43, 0.18);
}

.about-overview-proof__links a {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(40, 54, 43, 0.18);
  color: inherit;
  text-decoration: none;
}

.about-overview-proof__links span {
  color: var(--color-muted);
  font-size: 0.82rem;
}

.about-overview-proof__links strong {
  color: var(--color-ink-green);
  transition: color 160ms ease;
}

.about-overview-proof__links a:hover strong {
  color: var(--color-leaf);
}

.about-overview-ending {
  text-align: center;
}

.about-overview-ending__inner {
  max-width: 980px;
}

.about-overview-ending__inner > p:not(.eyebrow) {
  max-width: 760px;
  margin: 28px auto 0;
  color: var(--color-muted);
  font-size: 1.08rem;
  line-height: 1.9;
}

.about-overview-ending .btn-row {
  justify-content: center;
}

@media (max-width: 1100px) {
  .about-overview-work-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .about-overview-hero {
    padding-top: 64px;
    padding-bottom: 56px;
  }

  .about-overview-hero .page-hero__grid,
  .about-overview-proof__grid {
    grid-template-columns: 1fr;
  }

  .about-overview-hero__media img {
    height: 410px;
  }

  .about-overview-proof__grid {
    gap: 42px;
  }

  .about-overview-proof__media {
    height: 460px;
  }
}

@media (max-width: 720px) {
  .about-overview-hero__media img {
    height: 300px;
  }

  .about-overview-hero__media figcaption {
    display: grid;
    gap: 5px;
  }

  .about-overview-facts {
    grid-template-columns: 1fr;
    margin-top: 46px;
    border-bottom: 0;
  }

  .about-overview-facts article,
  .about-overview-facts article:first-child,
  .about-overview-facts article:last-child {
    min-height: 0;
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid var(--color-line);
  }

  .about-overview-facts span {
    margin-top: 12px;
  }

  .about-overview-work-grid {
    margin-top: 34px;
  }

  .about-overview-work-grid > a {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px 0 30px;
  }

  .about-overview-work-grid img {
    height: 230px;
  }

  .about-overview-work-grid strong {
    margin-top: 22px;
  }

  .about-overview-responsibility .about-life__media,
  .about-overview-responsibility .about-life__media img {
    min-height: 0;
    height: 410px;
  }

  .about-overview-culture .about-culture-band__copy {
    border-top-color: rgba(18, 55, 42, 0.18);
  }

  .about-overview-proof__media {
    height: 330px;
  }

  .about-overview-proof__links a {
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 12px;
  }

  .about-overview-ending br {
    display: none;
  }

  .about-overview-ending .btn-row {
    align-items: stretch;
  }

  .about-overview-ending .btn {
    width: 100%;
  }
}

/* Homepage: concise visitor journey from first impression to first visit */
.home-entry-hero {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: min(760px, calc(100svh - 108px));
  overflow: hidden;
  align-items: flex-end;
  background: var(--color-ink-green);
}

.home-entry-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: rgba(8, 31, 23, 0.5);
}

.home-entry-hero__image {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 53%;
}

.home-entry-hero__inner {
  padding-top: 120px;
  padding-bottom: 76px;
}

.home-entry-hero__copy {
  max-width: 790px;
}

.home-entry-hero .eyebrow {
  color: #edc582;
}

.home-entry-hero h1 {
  margin: 0;
  color: #fff;
  font-size: 5rem;
  font-weight: 760;
  line-height: 1.08;
  letter-spacing: 0;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.18);
}

.home-entry-hero__copy > p:not(.eyebrow) {
  max-width: 720px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.18rem;
  line-height: 1.82;
}

.home-entry-hero__outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.78);
  background: rgba(8, 31, 23, 0.14);
}

.home-entry-hero__outline:hover {
  color: var(--color-ink-green);
  background: #fff;
}

.home-entry-villages {
  scroll-margin-top: calc(var(--header-height) + 20px);
}

.home-entry-village-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.home-entry-village-grid > a {
  overflow: hidden;
  border: 1px solid rgba(40, 54, 43, 0.16);
  border-radius: 6px;
  color: inherit;
  background: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.home-entry-village-grid > a:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(18, 55, 42, 0.08);
}

.home-entry-village-grid figure {
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.home-entry-village-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.home-entry-village-grid > a:nth-child(1) img { object-position: center 58%; }
.home-entry-village-grid > a:nth-child(2) img { object-position: center 58%; }
.home-entry-village-grid > a:nth-child(3) img { object-position: center; }
.home-entry-village-grid > a:hover img { transform: scale(1.018); }

.home-entry-village-grid > a > div {
  display: flex;
  min-height: 282px;
  flex-direction: column;
  padding: 26px;
}

.home-entry-village-grid span {
  color: var(--accent, #a44f2d);
  font-size: 0.76rem;
  font-weight: 760;
}

.home-entry-village-grid h3 {
  margin: 14px 0 10px;
  color: var(--color-ink-green);
  font-size: 1.65rem;
}

.home-entry-village-grid p {
  margin: 0;
  color: #5e625c;
  line-height: 1.75;
}

.home-entry-village-grid strong {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 24px;
  color: var(--color-leaf);
  font-size: 0.9rem;
}

.home-entry-village-grid strong b {
  transition: transform 180ms ease;
}

.home-entry-village-grid > a:hover strong b {
  transform: translateX(4px);
}

.home-entry-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(190px, 0.8fr);
  margin-top: 44px;
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
}

.home-entry-trust > div,
.home-entry-trust > a {
  min-height: 116px;
  padding: 24px;
  border-right: 1px solid var(--color-line);
}

.home-entry-trust > div:first-child { padding-left: 0; }

.home-entry-trust > div strong,
.home-entry-trust > div span {
  display: block;
}

.home-entry-trust > div strong {
  color: var(--accent, #a44f2d);
  font-size: 1.1rem;
}

.home-entry-trust > div span {
  margin-top: 12px;
  color: #666961;
  font-size: 0.9rem;
  line-height: 1.6;
}

.home-entry-trust > a {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding-right: 0;
  border-right: 0;
  color: var(--color-ink-green);
  font-weight: 700;
  text-decoration: none;
}

.home-entry-trust > a span {
  color: var(--accent, #a44f2d);
}

.home-entry-life__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(46px, 8vw, 110px);
  align-items: center;
}

.home-entry-life__copy h2 {
  margin: 8px 0 18px;
  color: var(--color-ink-green);
  font-size: 3rem;
  line-height: 1.2;
}

.home-entry-life__copy > p:not(.eyebrow) {
  margin: 0;
  color: #5e625c;
  font-size: 1.05rem;
  line-height: 1.86;
}

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

.home-entry-life__scenes a {
  position: relative;
  height: 245px;
  overflow: hidden;
  border-radius: 6px;
}

.home-entry-life__scenes img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.home-entry-life__scenes a:nth-child(1) img { object-position: center 58%; }
.home-entry-life__scenes a:nth-child(2) img { object-position: center 58%; }
.home-entry-life__scenes a:nth-child(3) img { object-position: center 55%; }
.home-entry-life__scenes a:nth-child(4) img { object-position: center 52%; }
.home-entry-life__scenes a:hover img { transform: scale(1.025); }

.home-entry-life__scenes a::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 48%;
  background: linear-gradient(transparent, rgba(8, 31, 23, 0.72));
}

.home-entry-life__scenes span {
  position: absolute;
  z-index: 1;
  right: 18px;
  bottom: 16px;
  left: 18px;
  color: #fff;
  font-size: 1.02rem;
  font-weight: 760;
}

.home-entry-plan-list {
  margin-top: 48px;
  border-top: 1px solid rgba(40, 54, 43, 0.2);
}

.home-entry-plan-list a {
  display: grid;
  grid-template-columns: 52px 150px 190px minmax(0, 1fr) 170px;
  gap: 22px;
  align-items: center;
  min-height: 118px;
  padding: 22px 16px;
  border-bottom: 1px solid rgba(40, 54, 43, 0.2);
  color: inherit;
  text-decoration: none;
  transition: padding-left 180ms ease, background-color 180ms ease;
}

.home-entry-plan-list a:hover {
  padding-left: 26px;
  background: rgba(237, 242, 233, 0.66);
}

.home-entry-plan-list a.is-primary {
  background: rgba(231, 238, 227, 0.62);
}

.home-entry-plan-list b {
  color: var(--accent, #a44f2d);
  font: 500 1.45rem/1 Georgia, serif;
}

.home-entry-plan-list span {
  color: #77766f;
  font-size: 0.8rem;
}

.home-entry-plan-list h3 {
  margin: 0;
  color: var(--color-ink-green);
  font-size: 1.18rem;
}

.home-entry-plan-list p {
  margin: 0;
  color: #62665f;
  line-height: 1.7;
}

.home-entry-plan-list em {
  color: var(--color-leaf);
  font-size: 0.84rem;
  font-style: normal;
  font-weight: 700;
  text-align: right;
}

.home-entry-plans__action {
  display: flex;
  justify-content: flex-end;
}

.home-entry-about-link {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
  color: var(--color-muted);
  font-size: 0.9rem;
}

.home-entry-about-link a {
  color: var(--color-leaf);
  font-weight: 700;
}

@media (max-width: 1100px) {
  .home-entry-plan-list a {
    grid-template-columns: 48px 130px 170px minmax(0, 1fr);
  }

  .home-entry-plan-list em {
    grid-column: 4;
    text-align: left;
  }
}

@media (max-width: 900px) {
  .home-entry-hero h1 {
    font-size: 3.8rem;
  }

  .home-entry-trust {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-entry-trust > div:nth-child(2) { border-right: 0; }
  .home-entry-trust > div:nth-child(3) { border-top: 1px solid var(--color-line); }
  .home-entry-trust > a { border-top: 1px solid var(--color-line); }

  .home-entry-life__grid {
    grid-template-columns: 1fr;
  }

  .home-entry-plan-list a {
    grid-template-columns: 44px minmax(0, 1fr) 24px;
    gap: 10px 16px;
    padding: 24px 10px;
  }

  .home-entry-plan-list a:hover {
    padding-left: 16px;
  }

  .home-entry-plan-list b {
    grid-row: 1 / 5;
    align-self: start;
  }

  .home-entry-plan-list span,
  .home-entry-plan-list h3,
  .home-entry-plan-list p,
  .home-entry-plan-list em {
    grid-column: 2;
  }

  .home-entry-plan-list em {
    grid-row: auto;
  }
}

@media (max-width: 720px) {
  .home-entry-hero {
    min-height: calc(100svh - 96px);
  }

  .home-entry-hero::after {
    background: rgba(8, 31, 23, 0.58);
  }

  .home-entry-hero__image {
    object-position: 64% center;
  }

  .home-entry-hero__inner {
    padding-top: 92px;
    padding-bottom: 54px;
  }

  .home-entry-hero h1 {
    font-size: 2.5rem;
  }

  .home-entry-hero__copy > p:not(.eyebrow) {
    font-size: 1.04rem;
    line-height: 1.75;
  }

  .home-entry-hero .btn-row {
    align-items: stretch;
  }

  .home-entry-hero .btn {
    width: 100%;
  }

  .home-entry-village-grid {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }

  .home-entry-village-grid > a > div {
    min-height: 0;
    padding: 24px 22px 26px;
  }

  .home-entry-village-grid strong {
    margin-top: 22px;
  }

  .home-entry-trust {
    grid-template-columns: 1fr;
    margin-top: 34px;
    border-bottom: 0;
  }

  .home-entry-trust > div,
  .home-entry-trust > a,
  .home-entry-trust > div:first-child {
    min-height: 0;
    padding: 20px 0;
    border-top: 0;
    border-right: 0;
    border-bottom: 1px solid var(--color-line);
  }

  .home-entry-life__copy h2 {
    font-size: 2.25rem;
  }

  .home-entry-life__scenes {
    gap: 8px;
  }

  .home-entry-life__scenes a {
    height: 180px;
  }

  .home-entry-life__scenes span {
    right: 12px;
    bottom: 12px;
    left: 12px;
    font-size: 0.9rem;
  }

  .home-entry-plan-list {
    margin-top: 34px;
  }

  .home-entry-plan-list a,
  .home-entry-plan-list a:hover {
    grid-template-columns: 34px minmax(0, 1fr);
    padding: 22px 4px;
  }

  .home-entry-plans__action {
    justify-content: flex-start;
  }

  .home-entry-about-link {
    display: grid;
    gap: 7px;
    justify-content: start;
  }
}
