:root {
  --ink: #171717;
  --paper: #fbfaf8;
  --white: #ffffff;
  --soft: #f6f3ee;
  --line: rgba(23, 23, 23, 0.12);
  --muted: #6f6a62;
  --warm: #9b7a4d;
  --dark: #151515;
  --max: 1180px;
  --sans: -apple-system, BlinkMacSystemFont, "SF Pro Display", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.homepage-v3 {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

.homepage-v3 a {
  color: inherit;
  text-decoration: none;
}

.homepage-v3 button,
.homepage-v3 a {
  -webkit-tap-highlight-color: transparent;
}

.homepage-v3 :focus-visible {
  outline: 2px solid var(--warm);
  outline-offset: 4px;
}

.mobile-only {
  display: none;
}

.homepage-v3 .container {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: 58px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(250, 248, 244, 0.74);
  color: var(--ink);
  backdrop-filter: saturate(180%) blur(18px);
}

.nav {
  display: flex;
  height: 58px;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: baseline;
  margin-right: auto;
  white-space: nowrap;
}

.brand span {
  font-size: 19px;
  font-weight: 700;
}

.brand small {
  margin-left: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(23, 23, 23, 0.72);
  font-size: 13px;
}

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

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

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 19px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 620;
  white-space: nowrap;
  transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

.nav-cta {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 999px;
  font-size: 13px;
  line-height: 1;
  white-space: nowrap;
}

.homepage-v3 .nav-cta,
.homepage-v3 .button--dark {
  background: var(--ink);
  color: var(--white);
}

.button--dark:hover,
.nav-cta:hover {
  background: #35312d;
  border-color: #35312d;
}

.homepage-v3 .button--line {
  background: rgba(251, 250, 248, 0.58);
  color: var(--ink);
}

.button--line:hover {
  background: var(--paper);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--warm);
  font-size: 13px;
  font-weight: 650;
}

.eyebrow--light {
  color: #c7a777;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
  padding-bottom: 0;
  font-size: 14px;
  font-weight: 650;
}

.text-link span {
  transition: transform 160ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.hero {
  min-height: 100svh;
  padding: 112px 0 36px;
  display: flex;
  align-items: stretch;
  background:
    radial-gradient(circle at 20% 15%, rgba(183, 122, 88, 0.14), transparent 28%),
    linear-gradient(180deg, #fbfaf8 0%, #f2eee7 100%);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 54px;
  align-items: center;
}

.hero__content {
  min-width: 0;
}

.hero__positioning {
  margin: 0 0 18px;
  color: var(--warm);
  font-size: 13px;
  font-weight: 650;
}

.hero h1 {
  max-width: 560px;
  margin: 0;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 760;
  line-height: 1.08;
  overflow-wrap: break-word;
}

.hero__copy {
  max-width: 500px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.78;
}

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

.hero__panel {
  height: 680px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #ded8ce;
  box-shadow: 0 32px 80px rgba(45, 37, 29, 0.18);
}

.hero__image {
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.principles {
  padding: 116px 0;
  background: var(--white);
}

.statement {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 40px;
  align-items: start;
}

.statement h2,
.section-head h2,
.delivery h2,
.evidence h2,
.next-step h2 {
  margin: 0;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 740;
  line-height: 1.2;
}

.statement h2 {
  max-width: 860px;
}

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

.datum-grid::before {
  display: none;
}

.datum-grid article {
  min-height: 220px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.datum-grid article + article {
  padding-left: 26px;
}

.datum-grid article:last-child {
  padding-right: 26px;
}

.datum-grid span,
.system-item__copy > span {
  color: var(--warm);
  font-size: 11px;
  font-weight: 700;
}

.datum-grid h3 {
  max-width: 320px;
  margin: 16px 0 8px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.28;
}

.datum-grid p {
  max-width: 330px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.systems {
  padding: 116px 0;
  background: var(--soft);
}

.section-head {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 430px);
  gap: 40px;
  align-items: end;
  margin-bottom: 52px;
}

.section-head > p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.85;
}

.section-head--compact {
  grid-template-columns: 1fr auto;
}

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

.system-item {
  grid-column: span 4;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.system-item__media {
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--soft);
}

.system-item__media img {
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.system-item__media:hover img {
  transform: scale(1.018);
}

.system-item__copy {
  display: flex;
  flex: 1;
  min-height: 260px;
  flex-direction: column;
  padding: 22px;
}

.system-item__copy h3 {
  margin: 15px 0 12px;
  font-size: 24px;
  font-weight: 700;
}

.system-item__copy p {
  min-height: 0;
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.system-item__copy .text-link {
  margin-top: auto;
}

.real-case {
  padding: 116px 0;
  background: var(--paper);
}

.case-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(350px, 0.6fr);
  gap: 14px;
  min-height: 620px;
}

.case-feature__media {
  overflow: hidden;
  border-radius: 8px;
  background: #d8d2ca;
}

.case-feature__media img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 500ms ease;
}

.case-feature__media:hover img {
  transform: scale(1.012);
}

.case-feature__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.case-feature__copy h3 {
  margin: 0 0 26px;
  font-size: 38px;
  font-weight: 720;
  line-height: 1.28;
}

.case-feature__copy > p:not(.eyebrow) {
  margin: 0 0 38px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
}

.case-feature dl {
  margin: 0 0 42px;
}

.case-feature dl div {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 14px;
  padding: 7px 0;
  font-size: 13px;
}

.case-feature dl div:last-child {
  border-bottom: 0;
}

.case-feature dt {
  color: var(--muted);
}

.case-feature dd {
  margin: 0;
  font-weight: 650;
}

.delivery {
  padding: 116px 0;
  background: var(--white);
}

.delivery__grid {
  display: grid;
  grid-template-columns: minmax(420px, 0.92fr) minmax(0, 1.08fr);
  gap: 54px;
  align-items: start;
}

.delivery h2 {
  max-width: 600px;
}

.delivery__intro {
  max-width: 600px;
  margin: 25px 0 46px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.85;
}

.delivery__steps {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.delivery__steps li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 20px;
  min-height: 112px;
  align-items: center;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.delivery__steps li > span {
  color: var(--warm);
  font-size: 12px;
  font-weight: 700;
}

.delivery__steps h3 {
  margin: 0 0 7px;
  font-size: 20px;
  font-weight: 700;
}

.delivery__steps p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.delivery__media {
  position: sticky;
  top: 104px;
  margin: 0;
}

.delivery__media img {
  aspect-ratio: 4 / 5;
  height: auto;
  min-height: 700px;
  object-fit: cover;
  object-position: 62% center;
  border-radius: 8px;
}

.delivery__media figcaption {
  padding: 12px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.evidence {
  padding: 118px 0 110px;
  background: var(--dark);
  color: var(--white);
}

.evidence__head {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: 78px;
  align-items: end;
}

.evidence__head > p {
  margin: 0;
  color: #bcb7b0;
  font-size: 15px;
  line-height: 1.85;
}

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

.facts > div {
  min-height: 178px;
  padding: 24px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.facts > div:last-child {
  border-right: 0;
}

.facts strong {
  display: block;
  margin-bottom: 36px;
  font-size: 48px;
  font-weight: 560;
}

.facts small {
  font-size: 20px;
  font-weight: 550;
}

.facts span {
  color: #c6c1bb;
  font-size: 14px;
}

.credentials {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 40px;
  margin-top: 64px;
}

.credentials > p {
  margin: 0;
  color: #c7a777;
  font-size: 13px;
  font-weight: 700;
}

.credentials ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.credentials li {
  min-height: 58px;
  padding: 18px 20px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: #dedbd6;
  font-size: 14px;
}

.next-step {
  padding: 116px 0;
  background: var(--paper);
}

.next-step__grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 14px;
}

.knowledge,
.contact-prompt {
  min-height: 520px;
  padding: 42px;
}

.contact-prompt {
  border-radius: 8px;
  background: var(--dark);
  color: var(--white);
}

.knowledge h2,
.contact-prompt h2 {
  max-width: 560px;
}

.knowledge__links {
  display: grid;
  gap: 12px;
  margin-top: 55px;
}

.knowledge__links a {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 18px;
  min-height: 72px;
  align-items: center;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.knowledge__links span {
  color: var(--warm);
  font-size: 11px;
  font-weight: 700;
}

.knowledge__links strong {
  font-size: 16px;
  font-weight: 630;
}

.knowledge__links b {
  font-size: 18px;
  font-weight: 450;
  transition: transform 160ms ease;
}

.knowledge__links a:hover b {
  transform: translateX(4px);
}

.contact-prompt > p:not(.eyebrow) {
  max-width: 540px;
  margin: 30px 0 36px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 16px;
  line-height: 1.85;
}

.contact-prompt__phone {
  display: block;
  width: fit-content;
  margin-top: 42px;
  font-size: 30px;
  font-weight: 610;
}

.homepage-v3 .contact-prompt .button--dark {
  border-color: var(--white);
  background: var(--white);
  color: var(--dark);
}

footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--dark);
}

.footer-row {
  display: flex;
  min-height: 94px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 22px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.62);
}

@media (max-width: 1120px) {
  .homepage-v3 .container {
    width: min(var(--max), calc(100% - 48px));
  }

  .nav-links {
    gap: 17px;
    font-size: 13px;
  }

  .hero__grid {
    gap: 38px;
  }

  .case-feature {
    grid-template-columns: minmax(0, 1.35fr) minmax(340px, 0.75fr);
  }

  .case-feature__copy {
    padding-left: 38px;
  }

  .delivery__grid {
    gap: 58px;
  }

  .knowledge,
  .contact-prompt {
    padding: 36px;
  }
}

@media (max-width: 980px) {
  .hero {
    min-height: 0;
    padding-top: 92px;
  }

  .hero__grid {
    max-width: 880px;
    grid-template-columns: 1fr;
  }

  .hero__content {
    max-width: 640px;
  }

  .hero__panel {
    height: 520px;
  }
}

@media (max-width: 900px) {
  .site-header,
  .nav {
    height: 58px;
  }

  .nav-links {
    display: flex;
  }

  .statement,
  .credentials {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .datum-grid {
    margin-top: 58px;
  }

  .datum-grid article {
    padding-right: 22px;
  }

  .datum-grid article + article {
    padding-left: 22px;
  }

  .datum-grid h3 {
    margin-top: 16px;
    font-size: 20px;
  }

  .section-head,
  .evidence__head {
    grid-template-columns: 1fr;
    gap: 25px;
    align-items: start;
  }

  .section-head > p,
  .evidence__head > p {
    max-width: 620px;
  }

  .case-feature {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .case-feature__media {
    aspect-ratio: 4 / 3;
  }

  .case-feature__copy {
    padding: 36px;
  }

  .case-feature__copy > p:not(.eyebrow) {
    max-width: 680px;
  }

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

  .delivery__media {
    position: static;
  }

  .delivery__media img {
    aspect-ratio: 16 / 9;
    min-height: 0;
  }

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

  .facts > div:nth-child(2) {
    border-right: 0;
  }

  .facts > div:nth-child(-n + 2) {
    border-bottom: 0;
  }

  .next-step__grid {
    grid-template-columns: 1fr;
  }

  .knowledge,
  .contact-prompt {
    min-height: 0;
    padding: 38px;
  }

  .contact-prompt {
    border-top: 0;
    border-left: 0;
    box-shadow: none;
  }
}

@media (max-width: 720px) {
  .homepage-v3 .container {
    width: calc(100% - 32px);
  }

  .mobile-only {
    display: initial;
  }

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

  .brand small {
    display: none;
  }

  .nav-cta {
    min-height: 32px;
    padding: 0 12px;
    font-size: 12px;
  }

  .hero {
    min-height: 0;
    padding: 88px 0 28px;
  }

  .hero__grid {
    gap: 32px;
  }

  .hero__positioning {
    margin-bottom: 18px;
    font-size: 12px;
    line-height: 1.6;
  }

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

  .hero__copy {
    max-width: 520px;
    margin-top: 23px;
    font-size: 17px;
    line-height: 1.75;
  }

  .hero__panel {
    height: 420px;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 30px;
  }

  .hero__actions .button {
    padding: 0 10px;
    font-size: 13px;
  }

  .principles,
  .systems,
  .real-case,
  .delivery,
  .evidence {
    padding: 80px 0;
  }

  .statement h2,
  .section-head h2,
  .delivery h2,
  .evidence h2,
  .next-step h2 {
    font-size: 31px;
    line-height: 1.28;
  }

  .statement h2 br {
    display: initial;
  }

  .statement h2 {
    font-size: 28px;
  }

  .datum-grid {
    grid-template-columns: 1fr;
    margin-top: 50px;
  }

  .datum-grid article,
  .datum-grid article + article {
    min-height: 0;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
  }

  .datum-grid h3 {
    max-width: none;
    margin: 22px 0 10px;
  }

  .datum-grid p {
    max-width: 520px;
  }

  .section-head {
    margin-bottom: 34px;
  }

  .section-head--compact {
    grid-template-columns: 1fr;
  }

  .systems__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .system-item {
    grid-column: auto;
  }

  .system-item__copy {
    min-height: 0;
  }

  .system-item__copy p {
    min-height: 0;
  }

  .case-feature__copy h3 {
    font-size: 30px;
  }

  .case-feature dl div {
    grid-template-columns: 84px 1fr;
  }

  .delivery__steps li {
    position: relative;
    display: block;
    min-height: 142px;
    padding: 52px 20px 20px;
  }

  .delivery__steps li > span {
    position: absolute;
    top: 18px;
    left: 20px;
  }

  .delivery__steps p {
    font-size: 13px;
  }

  .facts {
    margin-top: 48px;
  }

  .facts > div {
    min-height: 154px;
    padding: 25px 18px;
  }

  .facts strong {
    margin-bottom: 27px;
    font-size: 40px;
  }

  .facts small {
    font-size: 16px;
  }

  .credentials {
    margin-top: 48px;
  }

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

  .knowledge,
  .contact-prompt {
    padding: 30px;
  }

  .contact-prompt__phone {
    font-size: 26px;
  }

  .footer-row {
    min-height: 140px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }

  .footer-links {
    justify-content: flex-start;
    gap: 12px 18px;
  }
}

@media (max-width: 390px) {
  .hero h1 {
    font-size: 40px;
  }

  .hero__copy {
    font-size: 16px;
  }

  .facts > div {
    padding-right: 12px;
    padding-left: 12px;
  }

  .facts span {
    font-size: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .homepage-v3 *,
  .homepage-v3 *::before,
  .homepage-v3 *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
