:root {
  --hhl-text: #163129;
  --hhl-muted: #4e675f;
  --hhl-bg: #f4f7f2;
  --hhl-panel: #ffffff;
  --hhl-accent: #0d955a;
  --hhl-accent-soft: #e1f2ea;
  --hhl-earth: #c8ae92;
  --hhl-earth-soft: #f4ede4;
  --hhl-border: #dbe7e0;
  --hhl-font-zh: "Source Han Sans SC", "Noto Sans SC", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  --hhl-font-en: "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

body {
  font-family: var(--hhl-font-en);
  color: var(--hhl-text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

html[lang^="zh"] body {
  font-family: var(--hhl-font-zh);
}

.hhl-wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 88px 32px;
}

.hhl-hero {
  border-radius: 0;
  background: transparent;
  border: 0;
  padding: 36px 0 10px;
}

.hhl-hero-wide {
  max-width: 1060px;
}

.hhl-kicker {
  display: inline-block;
  border: 1px solid var(--hhl-border);
  color: var(--hhl-muted);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 13px;
  text-transform: uppercase;
}

.hhl-lang-switch {
  display: inline-flex;
  gap: 8px;
  margin-top: 14px;
}

.hhl-lang-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--hhl-border);
  border-radius: 999px;
  min-height: 34px;
  padding: 6px 12px;
  text-decoration: none;
  font-size: 13px;
  color: var(--hhl-text);
  background: #fff;
}

.hhl-lang-link.is-active {
  background: var(--hhl-accent-soft);
  color: #0b5a37;
  border-color: #b8dac8;
}

.hhl-hero h1,
.hhl-heading {
  font-family: var(--hhl-font-en);
  color: var(--hhl-text);
  margin-top: 18px;
  margin-bottom: 14px;
  font-size: 56px;
  line-height: 1.08;
  font-weight: 600;
  text-wrap: balance;
}

html[lang^="zh"] .hhl-hero h1,
html[lang^="zh"] .hhl-heading {
  font-family: var(--hhl-font-zh);
  font-weight: 700;
}

.hhl-heading-md {
  font-size: 42px;
}

.hhl-lead {
  color: var(--hhl-muted);
  font-size: 24px;
  line-height: 1.5;
  font-weight: 500;
  max-width: 940px;
  text-wrap: pretty;
}

.hhl-body-lg {
  font-size: 19px;
  line-height: 1.72;
  color: var(--hhl-muted);
  max-width: 940px;
  text-wrap: pretty;
}

.hhl-section {
  padding: 76px 0 0;
}

.hhl-section-narrow {
  max-width: 980px;
}

.hhl-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
}

.hhl-feature-block {
  background: transparent;
  border: 0;
  border-top: 1px solid var(--hhl-border);
  padding: 24px 0;
}

.hhl-feature-block img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 14px;
}

.hhl-feature-block h3,
.hhl-card h3,
.hhl-cta-strip h3,
.hhl-sdg-band h3,
.hhl-media-content h3 {
  margin-top: 0;
  margin-bottom: 10px;
  color: var(--hhl-text);
  font-size: 30px;
}

.hhl-feature-block p,
.hhl-card p,
.hhl-cta-strip p,
.hhl-sdg-band p,
.hhl-media-content p {
  color: var(--hhl-muted);
  line-height: 1.65;
  text-wrap: pretty;
}

.hhl-media-stack {
  display: grid;
  gap: 54px;
}

.hhl-media-row {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 42px;
}

.hhl-media-row-reverse .hhl-media-image {
  order: 2;
}

.hhl-media-row-reverse .hhl-media-content {
  order: 1;
}

.hhl-media-image img {
  width: 100%;
  border-radius: 14px;
}

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

.hhl-card {
  background: transparent;
  border: 0;
  border-top: 1px solid var(--hhl-border);
  border-radius: 0;
  padding: 20px 0 0;
}

.hhl-inline-link {
  display: inline-flex;
  margin-top: 12px;
  color: #0a7d4b;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: border-color 140ms ease, color 140ms ease;
}

.hhl-inline-link:hover {
  border-color: currentColor;
  color: #08653d;
}

.hhl-sdg-band {
  border-top: 1px solid #dfd4c6;
  border-bottom: 1px solid #dfd4c6;
  border-radius: 0;
  padding: 26px 0;
}

.hhl-sdg-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.hhl-sdg-chip {
  border: 1px solid #d6d0c9;
  color: #5d4530;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 13px;
  background: #fffdfa;
}

.hhl-cta-strip {
  border-top: 1px solid var(--hhl-border);
  border-bottom: 1px solid var(--hhl-border);
  border-radius: 0;
  padding: 28px 0;
  background: transparent;
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
}

.hhl-cta-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hhl-market-cta {
  margin-top: 24px;
  border-top: 1px solid var(--hhl-border);
  background: transparent;
  border-radius: 0;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
  padding: 16px 0;
}

.hhl-section-intro {
  max-width: 760px;
  margin-bottom: 28px;
}

.hhl-home-problem .hhl-heading,
.hhl-section-intro .hhl-heading {
  margin-bottom: 16px;
}

.hhl-hero-meta,
.hhl-proof-chip-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hhl-hero-meta {
  margin: 24px 0 4px;
}

.hhl-path-label,
.hhl-step,
.hhl-gateway-label,
.hhl-proof-item-label {
  display: inline-flex;
  align-items: center;
  margin: 0 0 16px;
  padding: 6px 10px;
  border: 1px solid var(--hhl-border);
  border-radius: 999px;
  color: #5d4530;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hhl-proof-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid var(--hhl-border);
  border-radius: 999px;
  background: #fff;
  color: var(--hhl-text);
  font-size: 13px;
  line-height: 1.3;
}

.hhl-method-grid,
.hhl-home-gateway-grid,
.hhl-proof-evidence {
  display: grid;
  gap: 24px;
}

.hhl-method-grid,
.hhl-proof-evidence {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.hhl-method-card,
.hhl-gateway-card {
  padding-top: 24px;
}

.hhl-home-proof {
  padding-top: 84px;
}

.hhl-proof-strip {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  align-items: start;
  border-top: 1px solid var(--hhl-border);
  border-bottom: 1px solid var(--hhl-border);
  padding: 28px 0;
}

.hhl-proof-trust h3,
.hhl-proof-evidence .hhl-proof-item p {
  margin-top: 0;
}

.hhl-proof-trust h3 {
  margin-bottom: 18px;
}

.hhl-proof-item {
  border-top: 1px solid var(--hhl-border);
  padding-top: 20px;
}

.hhl-gateway-outro {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--hhl-border);
  display: flex;
  gap: 24px;
  align-items: flex-start;
  justify-content: space-between;
}

.hhl-gateway-outro-title {
  margin: 0;
  max-width: 720px;
  color: var(--hhl-text);
  font-size: 24px;
  line-height: 1.45;
}

.hhl-home-practice .hhl-media-content p,
.hhl-home-proof p,
.hhl-home-gateway p {
  max-width: none;
}

.hhl-market-note {
  color: var(--hhl-muted);
  font-size: 14px;
  margin-bottom: 10px;
}

.hhl-market-switch {
  display: inline-flex;
  gap: 8px;
  margin-bottom: 12px;
}

.hhl-switch-btn {
  border: 1px solid var(--hhl-border);
  background: #ffffff;
  color: var(--hhl-text);
  border-radius: 999px;
  padding: 8px 14px;
  cursor: pointer;
  font-size: 14px;
}

.hhl-switch-btn.is-active {
  background: var(--hhl-accent-soft);
  border-color: #b8dac8;
  color: #0b5a37;
}

.hhl-market-panel {
  display: none;
  gap: 10px;
  flex-wrap: wrap;
}

.hhl-market-panel.is-active {
  display: flex;
}

.hhl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  padding: 10px 16px;
  transition: transform 120ms ease, box-shadow 120ms ease, background-color 120ms ease, color 120ms ease, border-color 120ms ease;
}

.hhl-btn-primary {
  background: var(--hhl-accent);
  color: #fff;
  box-shadow: 0 1px 0 rgba(8, 66, 41, 0.22);
}

.hhl-btn-secondary {
  background: #fff;
  color: var(--hhl-text);
  border: 1px solid var(--hhl-border);
}

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

.hhl-btn:active {
  transform: translateY(0);
}

.hhl-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.hhl-list-item {
  padding: 18px 0;
  border-top: 1px solid var(--hhl-border);
}

.hhl-list-item h3 {
  margin: 0 0 8px;
  font-size: 24px;
}

.hhl-list-item p {
  margin: 0;
  color: var(--hhl-muted);
}

.hhl-meta {
  font-size: 12px;
  color: #6b8179;
  margin-bottom: 8px;
}

.hhl-list {
  margin: 0;
  padding-left: 18px;
}

.hhl-list li {
  margin-bottom: 10px;
  color: var(--hhl-muted);
  line-height: 1.5;
}

.hhl-title-link {
  color: var(--hhl-text);
  text-decoration: none;
}

.hhl-contact-list {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

@media (max-width: 980px) {
  .hhl-wrap {
    padding: 54px 18px;
  }

  .hhl-hero {
    padding: 24px 0 0;
  }

  .hhl-section {
    padding-top: 48px;
  }

  .hhl-two-col,
  .hhl-media-row,
  .hhl-cta-strip {
    grid-template-columns: 1fr;
    display: grid;
    gap: 16px;
  }

  .hhl-media-row-reverse .hhl-media-image,
  .hhl-media-row-reverse .hhl-media-content {
    order: initial;
  }

  .hhl-cta-actions {
    justify-content: flex-start;
  }
}

/* Signal-like home rhythm */
.hhl-page-about .hhl-hero-grid,
.hhl-signal-home .hhl-hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 44px;
  align-items: center;
}

.hhl-page-about .hhl-hero-media img,
.hhl-signal-home .hhl-hero-media img {
  width: 100%;
  border-radius: 14px;
}

.hhl-cta-strip-compact {
  margin-top: 28px;
}

.hhl-stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  border-top: 1px solid var(--hhl-border);
  border-bottom: 1px solid var(--hhl-border);
  padding-top: 22px;
  padding-bottom: 22px;
}

.hhl-stat-row h3 {
  margin: 0;
  font-size: 44px;
  line-height: 1;
  color: var(--hhl-text);
}

.hhl-stat-row p {
  margin: 8px 0 0;
  color: var(--hhl-muted);
  font-size: 14px;
}

@media (max-width: 980px) {
  .hhl-page-about .hhl-hero-grid,
  .hhl-signal-home .hhl-hero-grid,
  .hhl-proof-strip,
  .hhl-gateway-outro {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hhl-stat-row,
  .hhl-method-grid,
  .hhl-proof-evidence,
  .hhl-home-gateway-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hhl-gateway-outro {
    display: grid;
  }
}

/* Mag-like editorial layout */
.hhl-editorial-featured {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  align-items: center;
}

.hhl-editorial-featured-media img {
  width: 100%;
  border-radius: 12px;
}

.hhl-editorial-featured-content h2 {
  font-size: 40px;
  line-height: 1.18;
  margin: 6px 0 10px;
}

.hhl-list-item h4 {
  margin: 0;
  font-size: 20px;
  line-height: 1.35;
}

@media (max-width: 980px) {
  .hhl-editorial-featured {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

/* Tether-like products layout */
.hhl-page-products .hhl-product-list {
  display: grid;
  gap: 34px;
}

.hhl-product-entry {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 30px;
  align-items: start;
  border-top: 1px solid var(--hhl-border);
  padding-top: 24px;
}

.hhl-product-entry-media img {
  width: 100%;
  border-radius: 12px;
}

.hhl-product-entry-content h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 30px;
}

.hhl-product-entry-content p {
  color: var(--hhl-muted);
  line-height: 1.65;
}

@media (max-width: 980px) {
  .hhl-product-entry {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

/* Project page narrative flow */
.hhl-page-projects .hhl-project-library {
  display: grid;
  gap: 0;
}

.hhl-page-projects .hhl-list-item h3 {
  font-size: 26px;
}

/* Products / Projects launch structure */
.hhl-hero-actions {
  margin-top: 26px;
}

.hhl-evidence-grid,
.hhl-route-grid,
.hhl-case-card-grid,
.hhl-product-card-grid {
  display: grid;
  gap: 24px;
}

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

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

.hhl-case-card-grid,
.hhl-product-card-grid {
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
}

.hhl-proof-card,
.hhl-route-card,
.hhl-case-card,
.hhl-product-card {
  border-top: 1px solid var(--hhl-border);
  padding-top: 22px;
}

.hhl-proof-card h3,
.hhl-route-card h3,
.hhl-case-card h3,
.hhl-product-card h3,
.hhl-featured-case-content h3,
.hhl-product-spotlight-content h2,
.hhl-custom-flow h2 {
  margin-top: 10px;
  margin-bottom: 12px;
}

.hhl-proof-card h3,
.hhl-route-card h3,
.hhl-case-card h3,
.hhl-product-card h3,
.hhl-featured-case-content h3 {
  font-size: 28px;
  line-height: 1.2;
}

.hhl-proof-card p,
.hhl-route-card p,
.hhl-case-card p,
.hhl-product-card p,
.hhl-featured-case-content p,
.hhl-product-spotlight-content p {
  color: var(--hhl-muted);
  line-height: 1.65;
  text-wrap: pretty;
}

.hhl-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0;
}

.hhl-chip {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border: 1px solid var(--hhl-border);
  border-radius: 999px;
  color: #38574e;
  background: #ffffff;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  padding: 7px 10px;
}

.hhl-product-spotlight,
.hhl-custom-flow {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 42px;
  align-items: center;
}

.hhl-product-spotlight {
  border-top: 1px solid var(--hhl-border);
  padding-top: 40px;
}

.hhl-product-spotlight-media img,
.hhl-product-card-media img,
.hhl-featured-case-media img,
.hhl-case-card-media img {
  width: 100%;
  border-radius: 8px;
}

.hhl-product-card-media,
.hhl-case-card-media {
  margin-bottom: 16px;
}

.hhl-custom-flow {
  border-top: 1px solid var(--hhl-border);
  border-bottom: 1px solid var(--hhl-border);
  padding: 34px 0;
}

.hhl-process-list {
  counter-reset: hhl-process;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.hhl-process-list li {
  counter-increment: hhl-process;
  border-top: 1px solid var(--hhl-border);
  color: var(--hhl-muted);
  line-height: 1.6;
  padding-top: 16px;
}

.hhl-process-list li::before {
  content: counter(hhl-process, decimal-leading-zero);
  display: inline-flex;
  margin-right: 12px;
  color: #0a7d4b;
  font-weight: 700;
}

.hhl-process-list span {
  display: block;
  margin-bottom: 4px;
  color: var(--hhl-text);
  font-size: 18px;
  font-weight: 700;
}

.hhl-featured-case-grid {
  display: grid;
  gap: 34px;
}

.hhl-featured-case {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 30px;
  align-items: start;
  border-top: 1px solid var(--hhl-border);
  padding-top: 28px;
}

.hhl-route-card .hhl-btn {
  margin-top: 8px;
}

/* Cross-page rhythm unification */
.hhl-wrap {
  max-width: 1260px;
}

.hhl-wrap > .hhl-hero:first-child {
  padding-top: 22px;
}

.hhl-hero-wide {
  max-width: 1120px;
}

.hhl-hero h1 {
  max-width: 18ch;
}

.hhl-hero-copy .hhl-lead {
  max-width: 32ch;
}

.hhl-hero-copy .hhl-body-lg {
  max-width: 44ch;
}

.hhl-section {
  padding-top: 84px;
}

.hhl-media-stack {
  gap: 64px;
}

.hhl-media-row {
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.hhl-media-content h3,
.hhl-feature-block h3,
.hhl-cta-strip h3 {
  font-size: 34px;
  line-height: 1.18;
}

.hhl-cta-strip {
  padding-top: 32px;
  padding-bottom: 32px;
}

.hhl-market-cta {
  padding-top: 22px;
}

@media (max-width: 980px) {
  .hhl-wrap {
    max-width: 100%;
  }

  .hhl-hero h1,
  .hhl-hero-copy .hhl-lead,
  .hhl-hero-copy .hhl-body-lg {
    max-width: 100%;
  }

  .hhl-hero h1 {
    font-size: 40px;
    line-height: 1.12;
  }

  .hhl-lead {
    font-size: 20px;
  }

  .hhl-heading-md,
  .hhl-editorial-featured-content h2 {
    font-size: 32px;
  }

  .hhl-media-content h3,
  .hhl-feature-block h3,
  .hhl-cta-strip h3 {
    font-size: 28px;
  }

  .hhl-body-lg {
    font-size: 17px;
    line-height: 1.68;
  }

  .hhl-section {
    padding-top: 56px;
  }

  .hhl-media-stack {
    gap: 34px;
  }

  .hhl-cta-actions {
    width: 100%;
  }

  .hhl-cta-actions .hhl-btn {
    width: 100%;
  }

  .hhl-evidence-grid,
  .hhl-route-grid,
  .hhl-product-spotlight,
  .hhl-custom-flow,
  .hhl-featured-case {
    grid-template-columns: 1fr;
  }

  .hhl-product-spotlight,
  .hhl-custom-flow {
    gap: 22px;
    padding-top: 26px;
  }

  .hhl-featured-case {
    gap: 16px;
  }

  .hhl-proof-card h3,
  .hhl-route-card h3,
  .hhl-case-card h3,
  .hhl-product-card h3,
  .hhl-featured-case-content h3 {
    font-size: 24px;
  }
}

/* Final visual polish: media consistency */
.hhl-hero-media img,
.hhl-media-image img,
.hhl-product-entry-media img,
.hhl-editorial-featured-media img,
.hhl-feature-block img {
  object-fit: cover;
  border: 1px solid rgba(13, 149, 90, 0.1);
  background: #eef5f1;
}

.hhl-product-spotlight-media img,
.hhl-product-card-media img,
.hhl-featured-case-media img,
.hhl-case-card-media img {
  object-fit: cover;
  border: 1px solid rgba(13, 149, 90, 0.1);
  background: #eef5f1;
  aspect-ratio: 4 / 3;
}

.hhl-hero-media img,
.hhl-media-image img,
.hhl-product-entry-media img,
.hhl-feature-block img {
  aspect-ratio: 4 / 3;
}

.hhl-editorial-featured-media img {
  aspect-ratio: 16 / 10;
}

@media (max-width: 980px) {
  .hhl-hero-media img,
  .hhl-media-image img,
  .hhl-product-entry-media img,
  .hhl-editorial-featured-media img,
  .hhl-feature-block img,
  .hhl-product-spotlight-media img,
  .hhl-product-card-media img,
  .hhl-featured-case-media img,
  .hhl-case-card-media img {
    aspect-ratio: 16 / 11;
  }
}

/* Homepage v1 editorial redesign */
.hhl-page-home.hhl-home-v1 {
  max-width: none;
  padding: 0 0 110px;
  position: relative;
  background:
    radial-gradient(circle at top left, rgba(13, 149, 90, 0.1), transparent 32%),
    linear-gradient(180deg, #f5f7f3 0%, #f0f4ef 100%);
}

.hhl-page-home.hhl-home-v1::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 720px;
  background:
    linear-gradient(90deg, rgba(13, 149, 90, 0.08), rgba(13, 149, 90, 0) 45%),
    radial-gradient(circle at 75% 20%, rgba(200, 174, 146, 0.18), transparent 28%);
  pointer-events: none;
}

.hhl-home-shell,
.hhl-home-container {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hhl-home-shell {
  padding-top: 28px;
}

.hhl-home-nav {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) auto auto;
  gap: 18px;
  align-items: center;
  padding: 16px 20px;
  border: 1px solid rgba(22, 49, 41, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 20px 50px -38px rgba(19, 47, 38, 0.32);
  backdrop-filter: blur(14px);
}

.hhl-home-wordmark {
  display: grid;
  gap: 3px;
  color: var(--hhl-text);
  text-decoration: none;
}

.hhl-home-wordmark-mark {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hhl-home-wordmark-sub {
  font-size: 12px;
  color: #61786f;
}

.hhl-home-nav-links,
.hhl-home-nav-tools {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.hhl-home-nav-link {
  color: var(--hhl-text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 999px;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.hhl-home-nav-link:hover,
.hhl-home-nav-link.is-active {
  background: rgba(13, 149, 90, 0.1);
  color: #0a6f44;
}

.hhl-home-nav .hhl-lang-switch {
  margin-top: 0;
}

.hhl-home-nav .hhl-lang-link {
  min-height: 38px;
  padding: 6px 14px;
  background: transparent;
}

.hhl-home-nav-cta {
  min-height: 40px;
  padding-inline: 16px;
}

.hhl-home-section {
  position: relative;
  z-index: 1;
}

.hhl-home-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: 42px;
  align-items: center;
  min-height: calc(100dvh - 96px);
  padding: 62px 0 32px;
}

.hhl-home-hero-copy {
  max-width: 560px;
}

.hhl-home-overline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #4d6f62;
  margin-bottom: 18px;
}

.hhl-home-overline::before {
  content: "";
  width: 36px;
  height: 1px;
  background: rgba(13, 149, 90, 0.4);
}

.hhl-home-v1 .hhl-hero h1,
.hhl-home-v1 .hhl-heading,
.hhl-home-v1 h1,
.hhl-home-v1 h2 {
  letter-spacing: -0.045em;
}

.hhl-home-v1 .hhl-home-hero h1 {
  margin: 0;
  max-width: 8ch;
  font-size: clamp(3.5rem, 7vw, 6rem);
  line-height: 0.94;
}

.hhl-home-hero-intro {
  margin: 24px 0 0;
  font-size: 24px;
  line-height: 1.5;
  color: #28473e;
  max-width: 28ch;
}

.hhl-home-hero-note {
  margin: 18px 0 0;
  font-size: 17px;
  line-height: 1.8;
  color: var(--hhl-muted);
  max-width: 40ch;
}

.hhl-home-proof-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 0;
}

.hhl-home-hero .hhl-cta-actions {
  margin-top: 26px;
}

.hhl-home-hero-visual {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 18px;
  align-items: start;
}

.hhl-home-system-map {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(120px, 0.5fr) minmax(0, 0.9fr);
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(22, 49, 41, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.hhl-home-system-node,
.hhl-home-system-rail {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: center;
}

.hhl-home-system-node {
  color: #25483e;
  background: #ffffff;
  border: 1px solid rgba(22, 49, 41, 0.08);
}

.hhl-home-system-node-source {
  background: #f4ede4;
}

.hhl-home-system-node-value {
  background: #e5f2eb;
}

.hhl-home-system-rail {
  position: relative;
  color: #ffffff;
  background: var(--hhl-accent);
  overflow: hidden;
}

.hhl-home-system-rail::before,
.hhl-home-system-rail::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 42px;
  height: 1px;
  background: rgba(13, 149, 90, 0.34);
}

.hhl-home-system-rail::before {
  right: 100%;
}

.hhl-home-system-rail::after {
  left: 100%;
}

.hhl-home-hero-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(22, 49, 41, 0.08);
  background: rgba(255, 255, 255, 0.82);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.75),
    0 30px 60px -42px rgba(20, 44, 35, 0.4);
}

.hhl-home-hero-card img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 0;
  background: transparent;
}

.hhl-home-hero-card-main {
  grid-row: span 2;
  min-height: 100%;
}

.hhl-home-hero-card-main img {
  aspect-ratio: 4 / 5;
}

.hhl-home-hero-card-copy {
  display: grid;
  gap: 4px;
  padding: 18px 20px 22px;
}

.hhl-home-hero-card-copy span,
.hhl-home-note-label {
  font-size: 12px;
  color: #6a867b;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hhl-home-hero-card-copy strong {
  font-size: 21px;
  line-height: 1.3;
  color: var(--hhl-text);
}

.hhl-home-section-brand {
  padding-top: 56px;
}

.hhl-home-brand-grid,
.hhl-home-problem-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 42px;
  align-items: start;
}

.hhl-home-section-head {
  max-width: 560px;
}

.hhl-home-section-head .hhl-heading {
  margin: 0;
}

.hhl-home-brand-copy {
  display: grid;
  gap: 26px;
}

.hhl-home-brand-copy .hhl-body-lg,
.hhl-home-problem-detail .hhl-body-lg,
.hhl-home-proof-intro .hhl-body-lg,
.hhl-home-cta-panel .hhl-body-lg {
  max-width: none;
  margin: 0;
}

.hhl-home-brand-note,
.hhl-home-problem-callout {
  border-top: 1px solid rgba(22, 49, 41, 0.12);
  padding-top: 18px;
}

.hhl-home-brand-note p,
.hhl-home-problem-callout {
  margin: 0;
  color: #36534a;
  font-size: 18px;
  line-height: 1.7;
}

.hhl-home-section-problem,
.hhl-home-section-method,
.hhl-home-section-proof,
.hhl-home-section-trust,
.hhl-home-section-cta {
  padding-top: 104px;
}

.hhl-home-problem-copy .hhl-heading {
  margin: 0;
}

.hhl-home-problem-detail {
  display: grid;
  gap: 24px;
}

.hhl-home-section-head-narrow {
  max-width: 680px;
  margin-bottom: 34px;
}

.hhl-home-method-flow {
  position: relative;
  display: grid;
  gap: 0;
}

.hhl-home-method-flow::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 106px;
  width: 1px;
  background: linear-gradient(180deg, rgba(13, 149, 90, 0.24), rgba(13, 149, 90, 0.06));
}

.hhl-home-method-step {
  position: relative;
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 38px;
  padding: 28px 0 28px 0;
  border-top: 1px solid rgba(22, 49, 41, 0.08);
  opacity: 0;
  transform: translateY(16px);
  animation: hhl-home-rise 0.7s ease forwards;
}

.hhl-home-method-step:nth-child(2) {
  animation-delay: 0.08s;
}

.hhl-home-method-step:nth-child(3) {
  animation-delay: 0.16s;
}

.hhl-home-method-step:last-child {
  border-bottom: 1px solid rgba(22, 49, 41, 0.08);
}

.hhl-home-method-index {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 82px;
  height: 82px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(13, 149, 90, 0.16);
  color: #0d6b44;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 12px 24px -18px rgba(13, 149, 90, 0.38);
  z-index: 1;
}

.hhl-home-method-content h3,
.hhl-home-proof-card-copy h3 {
  margin: 0 0 12px;
  color: var(--hhl-text);
}

.hhl-home-method-content h3 {
  font-size: 33px;
  line-height: 1.2;
}

.hhl-home-method-content p,
.hhl-home-proof-card-copy p {
  margin: 0;
  color: var(--hhl-muted);
  line-height: 1.72;
}

.hhl-home-proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(0, 1.24fr);
  gap: 34px;
  align-items: start;
}

.hhl-home-proof-intro {
  position: relative;
}

.hhl-home-proof-intro-inner {
  position: sticky;
  top: 28px;
  padding: 28px 28px 30px;
  border-radius: 30px;
  border: 1px solid rgba(22, 49, 41, 0.08);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 24px 50px -40px rgba(22, 49, 41, 0.35);
}

.hhl-home-proof-intro .hhl-heading {
  margin: 0 0 16px;
}

.hhl-home-proof-stack {
  display: grid;
  gap: 18px;
}

.hhl-home-dual-path {
  display: grid;
  gap: 22px;
  padding: 28px;
  border-radius: 30px;
  border: 1px solid rgba(22, 49, 41, 0.08);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(244, 247, 242, 0.94)),
    radial-gradient(circle at 18% 20%, rgba(13, 149, 90, 0.12), transparent 30%);
  box-shadow: 0 24px 60px -46px rgba(22, 49, 41, 0.36);
}

.hhl-home-dual-path-head {
  max-width: 660px;
}

.hhl-home-dual-path-head h3 {
  margin: 8px 0 0;
  color: var(--hhl-text);
  font-size: 30px;
  line-height: 1.22;
  letter-spacing: -0.025em;
}

.hhl-home-dual-path-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.hhl-home-dual-path-card {
  min-height: 230px;
  display: grid;
  align-content: end;
  gap: 10px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(22, 49, 41, 0.08);
  position: relative;
  overflow: hidden;
}

.hhl-home-dual-path-card::before {
  content: "";
  position: absolute;
  inset: 18px 18px auto auto;
  width: 76px;
  height: 76px;
  border-radius: 999px;
  border: 1px solid rgba(13, 149, 90, 0.18);
  background: radial-gradient(circle, rgba(13, 149, 90, 0.14), transparent 68%);
}

.hhl-home-dual-path-card span {
  color: #6a867b;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hhl-home-dual-path-card strong {
  color: var(--hhl-text);
  font-size: 25px;
  line-height: 1.2;
}

.hhl-home-dual-path-card p {
  margin: 0;
  color: var(--hhl-muted);
  line-height: 1.62;
}

.hhl-home-proof-card {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: 0;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(22, 49, 41, 0.08);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 24px 60px -44px rgba(22, 49, 41, 0.35);
  opacity: 0;
  transform: translateY(20px);
  animation: hhl-home-rise 0.8s ease forwards;
}

.hhl-home-proof-card:nth-child(2) {
  animation-delay: 0.08s;
}

.hhl-home-proof-card:nth-child(3) {
  animation-delay: 0.16s;
}

.hhl-home-proof-card:nth-child(4) {
  animation-delay: 0.24s;
}

.hhl-home-proof-card-media img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 0;
  background: transparent;
  transform: scale(0.97);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.hhl-home-proof-card:hover .hhl-home-proof-card-media img {
  transform: scale(1);
}

.hhl-home-proof-card-copy {
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 28px 30px;
}

.hhl-home-proof-card-copy .hhl-inline-link {
  margin-top: 4px;
}

.hhl-home-trust-strip {
  display: grid;
  gap: 22px;
  padding: 28px 0;
  border-top: 1px solid rgba(22, 49, 41, 0.1);
  border-bottom: 1px solid rgba(22, 49, 41, 0.1);
}

.hhl-home-trust-items {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hhl-home-trust-item {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(22, 49, 41, 0.1);
  background: rgba(255, 255, 255, 0.82);
  color: #214238;
  font-size: 14px;
  line-height: 1.4;
}

.hhl-home-cta-panel {
  padding: 40px 42px;
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.85), rgba(241, 247, 243, 0.96)),
    linear-gradient(180deg, rgba(13, 149, 90, 0.05), rgba(13, 149, 90, 0));
  border: 1px solid rgba(22, 49, 41, 0.08);
  box-shadow: 0 24px 60px -46px rgba(22, 49, 41, 0.4);
}

.hhl-home-cta-panel .hhl-heading {
  margin: 0 0 16px;
  max-width: 20ch;
}

.hhl-home-cta-panel .hhl-cta-actions {
  margin-top: 26px;
}

@keyframes hhl-home-rise {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1100px) {
  .hhl-home-shell,
  .hhl-home-container {
    width: min(1280px, calc(100% - 32px));
  }

  .hhl-home-nav {
    grid-template-columns: 1fr;
  }

  .hhl-home-nav-links,
  .hhl-home-nav-tools {
    justify-content: space-between;
  }

  .hhl-home-hero,
  .hhl-home-brand-grid,
  .hhl-home-problem-grid,
  .hhl-home-proof-grid {
    grid-template-columns: 1fr;
  }

  .hhl-home-hero {
    min-height: auto;
    padding-top: 42px;
  }

  .hhl-home-hero-copy {
    max-width: 100%;
  }

  .hhl-home-hero-visual {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hhl-home-system-map {
    grid-template-columns: 1fr;
    border-radius: 28px;
  }

  .hhl-home-hero-card-main {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .hhl-home-hero-card-main img {
    aspect-ratio: 16 / 10;
  }

  .hhl-home-proof-intro-inner {
    position: static;
  }

  .hhl-home-proof-card {
    grid-template-columns: 1fr;
  }

  .hhl-home-dual-path-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  .hhl-page-home.hhl-home-v1 {
    padding-bottom: 72px;
  }

  .hhl-home-shell,
  .hhl-home-container {
    width: calc(100% - 24px);
  }

  .hhl-home-shell {
    padding-top: 16px;
  }

  .hhl-home-nav {
    gap: 14px;
    padding: 16px;
    border-radius: 24px;
  }

  .hhl-home-nav-links,
  .hhl-home-nav-tools,
  .hhl-home-nav .hhl-lang-switch {
    flex-wrap: wrap;
  }

  .hhl-home-nav-tools {
    gap: 10px;
  }

  .hhl-home-nav-cta {
    width: 100%;
  }

  .hhl-home-v1 .hhl-home-hero h1 {
    max-width: 100%;
    font-size: 48px;
    line-height: 1.02;
  }

  .hhl-home-hero-intro {
    font-size: 20px;
    max-width: 100%;
  }

  .hhl-home-hero-note {
    font-size: 16px;
    max-width: 100%;
  }

  .hhl-home-hero-visual {
    grid-template-columns: 1fr;
  }

  .hhl-home-system-map {
    padding: 12px;
  }

  .hhl-home-hero-card-main img,
  .hhl-home-hero-card img,
  .hhl-home-proof-card-media img {
    aspect-ratio: 16 / 11;
  }

  .hhl-home-section-brand {
    padding-top: 36px;
  }

  .hhl-home-section-problem,
  .hhl-home-section-method,
  .hhl-home-section-proof,
  .hhl-home-section-trust,
  .hhl-home-section-cta {
    padding-top: 64px;
  }

  .hhl-home-method-flow::before {
    display: none;
  }

  .hhl-home-method-step {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 22px 0;
  }

  .hhl-home-method-index {
    width: fit-content;
    height: auto;
    padding: 10px 14px;
  }

  .hhl-home-method-content h3 {
    font-size: 27px;
  }

  .hhl-home-proof-intro-inner,
  .hhl-home-cta-panel {
    padding: 24px 22px;
    border-radius: 24px;
  }

  .hhl-home-proof-card-copy {
    padding: 22px;
  }

  .hhl-home-dual-path {
    padding: 22px;
    border-radius: 24px;
  }

  .hhl-home-dual-path-head h3 {
    font-size: 25px;
  }

  .hhl-home-dual-path-card {
    min-height: auto;
  }

  .hhl-home-cta-panel .hhl-heading {
    max-width: 100%;
  }

  .hhl-home-cta-panel .hhl-cta-actions,
  .hhl-home-hero .hhl-cta-actions {
    width: 100%;
  }

  .hhl-home-cta-panel .hhl-cta-actions .hhl-btn,
  .hhl-home-hero .hhl-cta-actions .hhl-btn {
    width: 100%;
  }
}

/* Homepage v2: Salient demo-inspired preview */
.hhl-page-home.hhl-home-v2 {
  max-width: none;
  padding: 0;
  overflow-x: hidden;
  background: #f2f5ef;
  color: var(--hhl-text);
}

.hhl-home-v2 .wpb_row.full-width-section {
  width: 100%;
  margin: 0;
  position: relative;
}

.hhl-home-v2 .row_col_wrap,
.hhl-home-v2 .col.span_12 {
  width: min(1320px, calc(100% - 56px));
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hhl-home-v2 .wpb_column.column_container,
.hhl-home-v2 .vc_col-sm-3,
.hhl-home-v2 .vc_col-sm-4,
.hhl-home-v2 .vc_col-sm-5,
.hhl-home-v2 .vc_col-sm-7 {
  width: auto;
  float: none;
  margin-left: 0;
}

.hhl-salient-hero {
  min-height: 100dvh;
  padding: 28px 0 80px;
  background:
    radial-gradient(circle at 80% 12%, rgba(200, 174, 146, 0.24), transparent 28%),
    radial-gradient(circle at 10% 18%, rgba(13, 149, 90, 0.22), transparent 30%),
    linear-gradient(135deg, #f7f8f2 0%, #e7efe7 58%, #dce8df 100%);
  isolation: isolate;
}

.hhl-salient-hero .row-bg-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.hhl-salient-hero .row-bg {
  position: absolute;
  inset: -12% -8%;
  background:
    linear-gradient(110deg, transparent 0 44%, rgba(13, 149, 90, 0.08) 44% 45%, transparent 45% 100%),
    radial-gradient(circle at 62% 52%, rgba(255, 255, 255, 0.92), transparent 26%),
    repeating-linear-gradient(90deg, rgba(22, 49, 41, 0.035) 0 1px, transparent 1px 94px);
  transform: rotate(-2deg);
}

.hhl-salient-nav {
  width: min(1320px, calc(100% - 56px));
  margin: 0 auto;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
  z-index: 5;
  padding: 14px 18px;
  border: 1px solid rgba(22, 49, 41, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 24px 80px -62px rgba(22, 49, 41, 0.42);
  backdrop-filter: blur(18px);
}

.hhl-salient-wordmark {
  display: grid;
  gap: 2px;
  color: var(--hhl-text);
  text-decoration: none;
}

.hhl-salient-wordmark span {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.hhl-salient-wordmark small {
  color: #5f776e;
  font-size: 12px;
}

.hhl-salient-nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.hhl-salient-nav-actions > a:not(.nectar-button) {
  color: #26453b;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.hhl-salient-nav-button.nectar-button {
  margin: 0;
  border-radius: 999px;
}

.hhl-salient-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(380px, 0.82fr);
  gap: 52px;
  align-items: center;
  min-height: calc(100dvh - 126px);
  padding-top: 36px;
}

.hhl-salient-hero-copy {
  padding: 40px 0;
}

.hhl-salient-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  color: #496b5e;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hhl-salient-kicker::before {
  content: "";
  width: 46px;
  height: 2px;
  background: var(--hhl-accent);
}

.hhl-salient-hero h1 {
  margin: 0;
  max-width: 10ch;
  color: #122a23;
  font-size: clamp(5rem, 10vw, 10.8rem);
  line-height: 0.82;
  letter-spacing: -0.095em;
  font-weight: 800;
  text-wrap: balance;
}

.hhl-salient-hero-copy p {
  max-width: 700px;
  margin: 34px 0 0;
  color: #2e5146;
  font-size: clamp(1.25rem, 2vw, 2rem);
  line-height: 1.36;
  font-weight: 500;
  letter-spacing: -0.025em;
}

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

.hhl-home-v2 .nectar-button {
  border-radius: 999px !important;
}

.hhl-home-v2 .nectar-button.accent-color,
.hhl-home-v2 .nectar-button.regular-button.accent-color {
  background: var(--hhl-accent) !important;
  color: #ffffff !important;
  box-shadow: 0 18px 40px -24px rgba(13, 149, 90, 0.75);
}

.hhl-home-v2 .nectar-button.see-through-2 {
  border: 1px solid rgba(22, 49, 41, 0.18) !important;
  color: #1d392f !important;
  background: rgba(255, 255, 255, 0.58);
}

.hhl-salient-hero-media {
  min-height: 620px;
  position: relative;
}

.hhl-salient-orbit {
  position: relative;
  height: 560px;
  border-radius: 46px;
  background:
    radial-gradient(circle at 50% 45%, rgba(13, 149, 90, 0.16), transparent 31%),
    linear-gradient(150deg, rgba(255, 255, 255, 0.82), rgba(232, 240, 233, 0.58));
  border: 1px solid rgba(22, 49, 41, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    0 30px 90px -62px rgba(22, 49, 41, 0.56);
  overflow: hidden;
}

.hhl-salient-orbit::before,
.hhl-salient-orbit::after {
  content: "";
  position: absolute;
  inset: 70px;
  border-radius: 999px;
  border: 1px solid rgba(13, 149, 90, 0.18);
}

.hhl-salient-orbit::after {
  inset: 134px;
  border-style: dashed;
  border-color: rgba(157, 128, 92, 0.35);
}

.hhl-salient-orbit-core {
  position: absolute;
  inset: 50%;
  width: 190px;
  height: 190px;
  margin: -95px 0 0 -95px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #13362b;
  color: #fff;
  text-align: center;
  font-weight: 800;
  letter-spacing: -0.02em;
  box-shadow: 0 26px 60px -36px rgba(13, 54, 43, 0.7);
}

.hhl-salient-orbit-node {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 118px;
  min-height: 54px;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: #24483d;
  border: 1px solid rgba(22, 49, 41, 0.08);
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 18px 44px -34px rgba(22, 49, 41, 0.44);
}

.hhl-salient-orbit-node.node-a {
  left: 34px;
  top: 92px;
}

.hhl-salient-orbit-node.node-b {
  right: 44px;
  top: 76px;
}

.hhl-salient-orbit-node.node-c {
  left: 52px;
  bottom: 86px;
}

.hhl-salient-orbit-node.node-d {
  right: 42px;
  bottom: 104px;
}

.hhl-salient-proof-panel {
  position: absolute;
  right: -22px;
  bottom: 20px;
  width: min(360px, 84%);
  padding: 24px;
  border-radius: 30px;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(13, 149, 90, 0.94), rgba(19, 54, 43, 0.94)),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.26), transparent 34%);
  box-shadow: 0 30px 70px -42px rgba(13, 54, 43, 0.72);
}

.hhl-salient-proof-panel span {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hhl-salient-proof-panel strong {
  display: block;
  color: #fff;
  font-size: 28px;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.hhl-salient-proof-panel p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
}

.hhl-salient-marquee {
  padding: 30px 0;
  background: #12362b;
  color: rgba(255, 255, 255, 0.86);
}

.hhl-salient-marquee .nectar-scrolling-text h2 {
  color: inherit;
  font-size: clamp(3rem, 7vw, 7rem);
  line-height: 0.95;
  letter-spacing: -0.075em;
  font-weight: 800;
}

.hhl-salient-statement {
  padding: 130px 0 110px;
  background: #f7f8f2;
}

.hhl-salient-statement .row_col_wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 72px;
  align-items: start;
}

.hhl-salient-statement h2,
.hhl-salient-proof h2,
.hhl-salient-cta h2 {
  margin: 0;
  color: #122a23;
  font-size: clamp(3rem, 5.8vw, 6rem);
  line-height: 0.94;
  letter-spacing: -0.075em;
  font-weight: 800;
}

.hhl-salient-lead {
  margin: 0;
  color: #294b40;
  font-size: clamp(1.5rem, 2.8vw, 3.15rem);
  line-height: 1.15;
  letter-spacing: -0.06em;
  font-weight: 650;
}

.hhl-salient-method {
  padding: 0 0 125px;
  background: #f7f8f2;
}

.hhl-salient-method .row_col_wrap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 18px;
}

.hhl-home-v2 .nectar-fancy-box.hhl-nbox {
  min-height: 470px;
  border-radius: 34px !important;
  padding: 36px;
  background: #17382e;
  box-shadow: 0 30px 80px -56px rgba(18, 42, 35, 0.72);
}

.hhl-home-v2 .nectar-fancy-box.hhl-nbox::after {
  height: 8px;
  background: var(--hhl-accent);
}

.hhl-home-v2 .nectar-fancy-box.hhl-nbox .box-bg {
  background:
    radial-gradient(circle at 72% 20%, rgba(255, 255, 255, 0.16), transparent 22%),
    linear-gradient(145deg, #17382e, #102920);
}

.hhl-home-v2 .nectar-fancy-box.hhl-nbox-green .box-bg {
  background:
    radial-gradient(circle at 70% 18%, rgba(255, 255, 255, 0.2), transparent 24%),
    linear-gradient(145deg, #0d955a, #154635);
}

.hhl-home-v2 .nectar-fancy-box.hhl-nbox-earth .box-bg {
  background:
    radial-gradient(circle at 72% 18%, rgba(255, 255, 255, 0.18), transparent 24%),
    linear-gradient(145deg, #9d805c, #293e33);
}

.hhl-home-v2 .nectar-fancy-box.hhl-nbox .inner {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0;
}

.hhl-home-v2 .nectar-fancy-box.hhl-nbox h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.hhl-home-v2 .nectar-fancy-box.hhl-nbox .hover-content {
  position: static;
  max-width: 100%;
  margin-top: 24px;
  opacity: 0.78;
  transform: none;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.55;
}

.hhl-salient-proof {
  padding: 125px 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(13, 149, 90, 0.13), transparent 25%),
    linear-gradient(180deg, #e8efe8, #f7f8f2);
}

.hhl-salient-proof .row_col_wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 52px;
  align-items: start;
}

.hhl-salient-proof-sticky {
  position: sticky;
  top: 36px;
}

.hhl-salient-proof-sticky p {
  margin: 28px 0 0;
  color: #36564c;
  font-size: 20px;
  line-height: 1.68;
}

.hhl-salient-proof-stack {
  display: grid;
  gap: 20px;
}

.hhl-salient-path-card {
  min-height: 320px;
  display: grid;
  align-content: end;
  gap: 14px;
  padding: 34px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(22, 49, 41, 0.08);
  box-shadow: 0 26px 70px -56px rgba(22, 49, 41, 0.5);
  position: relative;
  overflow: hidden;
}

.hhl-salient-path-card::before {
  content: "";
  position: absolute;
  top: -90px;
  right: -74px;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(13, 149, 90, 0.18), transparent 68%);
}

.hhl-salient-path-card:nth-child(2)::before {
  background: radial-gradient(circle, rgba(157, 128, 92, 0.24), transparent 68%);
}

.hhl-salient-path-card span {
  color: #668176;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hhl-salient-path-card h3 {
  margin: 0;
  color: #122a23;
  font-size: clamp(2.4rem, 4vw, 4.6rem);
  line-height: 0.9;
  letter-spacing: -0.08em;
}

.hhl-salient-path-card p {
  max-width: 640px;
  margin: 0;
  color: #4c665d;
  font-size: 18px;
  line-height: 1.65;
}

.hhl-salient-path-wide {
  background: #14372c;
}

.hhl-salient-path-wide span,
.hhl-salient-path-wide h3,
.hhl-salient-path-wide p {
  color: #fff;
}

.hhl-salient-path-wide p {
  color: rgba(255, 255, 255, 0.76);
}

.hhl-salient-trust {
  padding: 70px 0;
  background: #102c24;
  color: #fff;
}

.hhl-salient-trust .row_col_wrap {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hhl-salient-trust .column_container {
  padding: 30px;
  background: #102c24;
}

.hhl-salient-trust strong {
  display: block;
  color: #fff;
  font-size: 25px;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.hhl-salient-trust span {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.5;
}

.hhl-salient-cta {
  padding: 140px 0 150px;
  background:
    radial-gradient(circle at 72% 18%, rgba(13, 149, 90, 0.16), transparent 28%),
    #f7f8f2;
  text-align: left;
}

.hhl-salient-cta .span_12 {
  max-width: 1040px;
}

.hhl-salient-cta h2 {
  margin-bottom: 36px;
}

@media (max-width: 1100px) {
  .hhl-home-v2 .row_col_wrap,
  .hhl-home-v2 .col.span_12,
  .hhl-salient-nav {
    width: calc(100% - 34px);
  }

  .hhl-salient-hero-grid,
  .hhl-salient-statement .row_col_wrap,
  .hhl-salient-proof .row_col_wrap {
    grid-template-columns: 1fr;
  }

  .hhl-salient-hero h1 {
    max-width: 11ch;
  }

  .hhl-salient-hero-media {
    min-height: 540px;
  }

  .hhl-salient-proof-sticky {
    position: static;
  }

  .hhl-salient-method .row_col_wrap,
  .hhl-salient-trust .row_col_wrap {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .hhl-salient-hero {
    padding-top: 16px;
  }

  .hhl-salient-nav {
    border-radius: 28px;
    flex-direction: column;
    align-items: flex-start;
  }

  .hhl-salient-nav-actions {
    width: 100%;
    flex-wrap: wrap;
  }

  .hhl-salient-hero-grid {
    min-height: auto;
    padding-top: 44px;
  }

  .hhl-salient-hero h1 {
    max-width: 100%;
    font-size: 58px;
    line-height: 0.95;
  }

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

  .hhl-salient-hero-media {
    min-height: auto;
  }

  .hhl-salient-orbit {
    height: 420px;
    border-radius: 32px;
  }

  .hhl-salient-orbit-core {
    width: 142px;
    height: 142px;
    margin: -71px 0 0 -71px;
  }

  .hhl-salient-orbit-node {
    min-width: auto;
    min-height: 44px;
    padding: 10px 12px;
    font-size: 12px;
  }

  .hhl-salient-proof-panel {
    position: relative;
    right: auto;
    bottom: auto;
    width: auto;
    margin-top: 16px;
  }

  .hhl-salient-marquee .nectar-scrolling-text h2 {
    font-size: 48px;
  }

  .hhl-salient-statement,
  .hhl-salient-proof,
  .hhl-salient-cta {
    padding: 78px 0;
  }

  .hhl-salient-statement h2,
  .hhl-salient-proof h2,
  .hhl-salient-cta h2 {
    font-size: 44px;
  }

  .hhl-salient-lead {
    font-size: 25px;
  }

  .hhl-salient-method .row_col_wrap,
  .hhl-salient-trust .row_col_wrap {
    grid-template-columns: 1fr;
  }

  .hhl-home-v2 .nectar-fancy-box.hhl-nbox {
    min-height: 330px;
    padding: 28px;
  }

  .hhl-home-v2 .nectar-fancy-box.hhl-nbox .inner {
    min-height: 270px;
  }

  .hhl-salient-path-card {
    min-height: 260px;
    padding: 26px;
  }

  .hhl-salient-path-card h3 {
    font-size: 42px;
  }
}

/* Homepage v3: white-background Salient-compatible preview */
.hhl-page-home.hhl-home-v3 {
  max-width: none;
  padding: 0;
  overflow-x: hidden;
  background: #ffffff;
  color: #182e27;
}

.hhl-home-v3 .hhl-v3-container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.hhl-home-v3 .hhl-v3-section {
  background: #ffffff;
  padding: 94px 0;
  position: relative;
}

.hhl-home-v3 .hhl-v3-hero {
  padding-top: 92px;
  padding-bottom: 88px;
}

.hhl-v3-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  gap: 58px;
  align-items: center;
}

.hhl-v3-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: #61746d;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hhl-v3-kicker::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--hhl-accent);
}

.hhl-v3-copy h1 {
  margin: 0;
  max-width: 9.8ch;
  color: #152e27;
  font-size: clamp(4rem, 7.2vw, 6.9rem);
  line-height: 0.92;
  letter-spacing: -0.075em;
  font-weight: 800;
}

.hhl-v3-lead {
  margin: 26px 0 0;
  max-width: 660px;
  color: #405850;
  font-size: clamp(1.2rem, 1.7vw, 1.7rem);
  line-height: 1.48;
  font-weight: 500;
}

.hhl-v3-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-top: 30px;
}

.hhl-home-v3 .nectar-button.accent-color,
.hhl-home-v3 .nectar-button.regular-button.accent-color {
  background: var(--hhl-accent) !important;
  color: #ffffff !important;
  border-radius: 999px !important;
  box-shadow: none;
}

.hhl-v3-text-link {
  color: #18372d;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px solid rgba(13, 149, 90, 0.45);
}

.hhl-v3-board {
  border: 1px solid rgba(24, 46, 39, 0.1);
  border-radius: 28px;
  padding: 28px;
  background: #ffffff;
  box-shadow: 0 28px 70px -60px rgba(24, 46, 39, 0.45);
}

.hhl-v3-board-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.hhl-v3-board-row span,
.hhl-v3-board-core,
.hhl-v3-board-proof {
  border: 1px solid rgba(24, 46, 39, 0.09);
  border-radius: 18px;
  background: #ffffff;
}

.hhl-v3-board-row span {
  min-height: 78px;
  display: grid;
  place-items: center;
  color: #243d35;
  font-weight: 800;
  text-align: center;
  padding: 12px;
}

.hhl-v3-board-row i {
  display: block;
  height: 2px;
  background: var(--hhl-accent);
}

.hhl-v3-board-core {
  margin-top: 14px;
  min-height: 178px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 26px;
}

.hhl-v3-board-core strong {
  color: #152e27;
  font-size: 34px;
  line-height: 1;
  letter-spacing: -0.05em;
}

.hhl-v3-board-core p,
.hhl-v3-board-proof p {
  margin: 8px 0 0;
  color: #667972;
}

.hhl-v3-board-proof {
  margin-top: 14px;
  padding: 22px;
  border-left: 4px solid var(--hhl-accent);
}

.hhl-v3-board-proof span {
  display: block;
  margin-bottom: 8px;
  color: #6c7f78;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hhl-v3-board-proof strong {
  color: #152e27;
  font-size: 25px;
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.hhl-v3-two-col {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 56px;
  align-items: start;
}

.hhl-v3-statement {
  border-top: 1px solid rgba(24, 46, 39, 0.08);
}

.hhl-v3-statement h2,
.hhl-v3-proof h2,
.hhl-v3-cta h2 {
  margin: 0;
  color: #152e27;
  font-size: clamp(2.5rem, 4.5vw, 4.7rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
  font-weight: 800;
}

.hhl-v3-statement p {
  margin: 0;
  color: #2d4940;
  font-size: clamp(1.35rem, 2.15vw, 2.35rem);
  line-height: 1.22;
  letter-spacing: -0.04em;
  font-weight: 600;
}

.hhl-v3-method {
  padding-top: 54px;
}

.hhl-v3-method-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(24, 46, 39, 0.1);
  border-bottom: 1px solid rgba(24, 46, 39, 0.1);
}

.hhl-v3-method-grid article {
  min-height: 270px;
  padding: 30px 28px;
  border-right: 1px solid rgba(24, 46, 39, 0.1);
}

.hhl-v3-method-grid article:last-child {
  border-right: 0;
}

.hhl-v3-method-grid span,
.hhl-v3-paths span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--hhl-accent);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hhl-v3-method-grid h3,
.hhl-v3-paths h3 {
  margin: 0 0 14px;
  color: #152e27;
  font-size: 30px;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.hhl-v3-method-grid p,
.hhl-v3-proof-copy p,
.hhl-v3-paths p {
  margin: 0;
  color: #5b7068;
  line-height: 1.68;
}

.hhl-v3-proof {
  border-top: 1px solid rgba(24, 46, 39, 0.08);
}

.hhl-v3-proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 48px;
  align-items: start;
}

.hhl-v3-proof-copy {
  position: sticky;
  top: 42px;
}

.hhl-v3-proof-copy p {
  margin-top: 22px;
  font-size: 18px;
}

.hhl-v3-paths {
  display: grid;
  gap: 16px;
}

.hhl-v3-paths article {
  padding: 30px;
  border: 1px solid rgba(24, 46, 39, 0.1);
  border-radius: 22px;
  background: #ffffff;
}

.hhl-v3-path-wide {
  border-left: 4px solid var(--hhl-accent) !important;
}

.hhl-v3-trust {
  padding-top: 38px;
  padding-bottom: 38px;
  border-top: 1px solid rgba(24, 46, 39, 0.08);
  border-bottom: 1px solid rgba(24, 46, 39, 0.08);
}

.hhl-v3-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(24, 46, 39, 0.08);
  border: 1px solid rgba(24, 46, 39, 0.08);
}

.hhl-v3-trust-grid div {
  min-height: 150px;
  padding: 24px;
  background: #ffffff;
}

.hhl-v3-trust-grid strong {
  display: block;
  color: #152e27;
  font-size: 23px;
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.hhl-v3-trust-grid span {
  display: block;
  margin-top: 12px;
  color: #60746d;
  font-size: 14px;
  line-height: 1.55;
}

.hhl-v3-cta {
  text-align: left;
}

.hhl-v3-cta .hhl-v3-container {
  max-width: 880px;
}

.hhl-v3-cta h2 {
  margin-bottom: 28px;
}

@media (max-width: 1100px) {
  .hhl-v3-hero-grid,
  .hhl-v3-two-col,
  .hhl-v3-proof-grid {
    grid-template-columns: 1fr;
  }

  .hhl-v3-proof-copy {
    position: static;
  }

  .hhl-v3-method-grid,
  .hhl-v3-trust-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .hhl-home-v3 .hhl-v3-container {
    width: calc(100% - 28px);
  }

  .hhl-home-v3 .hhl-v3-section,
  .hhl-home-v3 .hhl-v3-hero {
    padding: 62px 0;
  }

  .hhl-v3-copy h1 {
    max-width: 100%;
    font-size: 48px;
    line-height: 1.02;
  }

  .hhl-v3-lead {
    font-size: 19px;
  }

  .hhl-v3-board {
    padding: 18px;
  }

  .hhl-v3-board-row {
    grid-template-columns: 1fr;
  }

  .hhl-v3-board-row i {
    width: 2px;
    height: 34px;
    justify-self: center;
  }

  .hhl-v3-statement h2,
  .hhl-v3-proof h2,
  .hhl-v3-cta h2 {
    font-size: 39px;
  }

  .hhl-v3-statement p {
    font-size: 22px;
  }

  .hhl-v3-method-grid,
  .hhl-v3-trust-grid {
    grid-template-columns: 1fr;
  }

  .hhl-v3-method-grid article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(24, 46, 39, 0.1);
  }

  .hhl-v3-method-grid article:last-child {
    border-bottom: 0;
  }
}

/* WPBakery preview story visuals */
.hhl-story-figure {
  margin: 0;
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(24, 46, 39, 0.1);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 28px 70px -62px rgba(24, 46, 39, 0.5);
}

.hhl-story-figure img {
  display: block;
  width: 100%;
  height: auto;
}

.hhl-story-caption {
  margin: 0;
  padding: 16px 20px 18px;
  color: #6a7c75;
  font-size: 14px;
  line-height: 1.6;
  border-top: 1px solid rgba(24, 46, 39, 0.08);
}

.hhl-story-figure-hero {
  transform: translateY(10px);
}

@media (max-width: 999px) {
  .hhl-story-figure-hero {
    transform: none;
  }
}

/* Homepage GPT Taste redesign */
.hhl-page-home.hhl-home-gpt {
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 8% 8%, rgba(13, 149, 90, 0.12), transparent 26%),
    radial-gradient(circle at 88% 18%, rgba(175, 143, 104, 0.18), transparent 28%),
    linear-gradient(180deg, #f7f7ef 0%, #eef3ec 48%, #f7f7ef 100%);
  color: #152e27;
  position: relative;
}

.hhl-home-gpt * {
  box-sizing: border-box;
}

.hhl-gpt-grain {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(21, 46, 39, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 46, 39, 0.028) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, #000, transparent 86%);
}

.hhl-gpt-nav,
.hhl-gpt-chapter,
.hhl-gpt-trust {
  width: min(1240px, calc(100% - 48px));
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.hhl-gpt-nav {
  margin-top: 24px;
  display: grid;
  grid-template-columns: minmax(170px, 0.9fr) auto minmax(220px, 0.9fr);
  align-items: center;
  gap: 20px;
  padding: 14px 16px 14px 20px;
  border: 1px solid rgba(21, 46, 39, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 70px -56px rgba(21, 46, 39, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.hhl-gpt-brand {
  display: grid;
  gap: 2px;
  text-decoration: none;
  color: #132c24;
}

.hhl-gpt-brand strong {
  font-size: 18px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.hhl-gpt-brand span {
  color: #5d746b;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.hhl-gpt-links,
.hhl-gpt-nav-actions,
.hhl-gpt-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hhl-gpt-links {
  justify-content: center;
}

.hhl-gpt-links a,
.hhl-gpt-mini-cta,
.hhl-gpt-text-link {
  color: #18372d;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
}

.hhl-gpt-links a {
  padding: 10px 12px;
  border-radius: 999px;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.hhl-gpt-links a:hover {
  color: #0a6f44;
  background: rgba(13, 149, 90, 0.1);
  transform: translateY(-1px);
}

.hhl-gpt-nav-actions {
  justify-content: flex-end;
}

.hhl-home-gpt .hhl-lang-switch {
  margin: 0;
}

.hhl-home-gpt .hhl-lang-link {
  min-height: 36px;
  padding: 7px 11px;
  border-color: rgba(21, 46, 39, 0.1);
  background: transparent;
  font-weight: 800;
}

.hhl-gpt-mini-cta {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #152e27;
  color: #fff;
}

.hhl-gpt-chapter {
  padding-block: clamp(82px, 12vw, 168px);
}

.hhl-gpt-hero {
  min-height: calc(100dvh - 96px);
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  align-items: center;
  gap: clamp(36px, 6vw, 78px);
  padding-top: clamp(74px, 9vw, 118px);
}

.hhl-gpt-eyebrow {
  margin: 0 0 18px;
  color: #60756d;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hhl-gpt-hero h1,
.hhl-gpt-section-heading h2,
.hhl-gpt-product-copy h2,
.hhl-gpt-proof-sticky h2,
.hhl-gpt-cta h2 {
  margin: 0;
  color: #132c24;
  font-weight: 900;
  letter-spacing: -0.075em;
  text-wrap: balance;
}

.hhl-gpt-hero h1 {
  max-width: 11.4ch;
  font-size: clamp(4.2rem, 8.4vw, 8.9rem);
  line-height: 0.9;
}

.hhl-gpt-hero-lead {
  max-width: 690px;
  margin: 30px 0 0;
  color: #304d43;
  font-size: clamp(1.25rem, 1.8vw, 1.68rem);
  line-height: 1.48;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.hhl-gpt-actions {
  flex-wrap: wrap;
  margin-top: 34px;
  gap: 14px;
}

.hhl-gpt-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 900;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

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

.hhl-gpt-button:active {
  transform: translateY(0) scale(0.99);
}

.hhl-gpt-button-primary {
  background: #0d955a;
  color: #fff;
  box-shadow: 0 18px 44px -34px rgba(13, 149, 90, 0.8);
}

.hhl-gpt-button-secondary {
  background: rgba(255, 255, 255, 0.62);
  color: #152e27;
  border: 1px solid rgba(21, 46, 39, 0.13);
}

.hhl-gpt-hero-stage {
  min-height: 640px;
  position: relative;
  border-radius: 44px;
  background:
    radial-gradient(circle at 30% 18%, rgba(255, 255, 255, 0.92), transparent 28%),
    linear-gradient(145deg, #dfe9df 0%, #f8f4e9 46%, #d8e7df 100%);
  overflow: hidden;
  border: 1px solid rgba(21, 46, 39, 0.1);
  box-shadow: 0 34px 90px -70px rgba(21, 46, 39, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.hhl-gpt-hero-stage::before {
  content: "";
  position: absolute;
  inset: 9%;
  border: 1px solid rgba(21, 46, 39, 0.1);
  border-radius: 999px;
  transform: rotate(-18deg);
}

.hhl-gpt-hero-stage::after {
  content: "";
  position: absolute;
  width: 390px;
  height: 390px;
  right: -140px;
  top: -86px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(13, 149, 90, 0.2), transparent 70%);
}

.hhl-gpt-photo-card {
  position: absolute;
  left: 10%;
  top: 14%;
  right: 15%;
  bottom: 22%;
  border-radius: 38px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(21, 46, 39, 0.1), transparent 42%),
    radial-gradient(circle at 24% 18%, #f0dbc1 0 12%, transparent 13%),
    radial-gradient(circle at 72% 32%, #0d955a 0 9%, transparent 10%),
    radial-gradient(circle at 55% 68%, #b6a07e 0 18%, transparent 19%),
    radial-gradient(circle at 26% 70%, #d7ddd1 0 16%, transparent 17%),
    linear-gradient(145deg, #f8fbf3, #cfded2);
  box-shadow: 0 30px 70px -54px rgba(21, 46, 39, 0.78);
  transform: rotate(-2deg);
}

.hhl-gpt-photo-card span {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  color: #18372d;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.35;
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.54);
}

.hhl-gpt-orbit-card {
  position: absolute;
  z-index: 2;
  width: 230px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(21, 46, 39, 0.1);
  box-shadow: 0 22px 70px -54px rgba(21, 46, 39, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
}

.hhl-gpt-orbit-card strong {
  display: block;
  color: #132c24;
  font-size: 22px;
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.hhl-gpt-orbit-card span {
  display: block;
  margin-top: 8px;
  color: #61746d;
  font-size: 13px;
  line-height: 1.45;
}

.hhl-gpt-orbit-card-a {
  top: 50px;
  right: 34px;
}

.hhl-gpt-orbit-card-b {
  left: 28px;
  bottom: 44px;
}

.hhl-gpt-material-strip {
  position: absolute;
  right: 30px;
  bottom: 34px;
  display: flex;
  gap: 8px;
  transform: rotate(-4deg);
}

.hhl-gpt-material-strip i {
  width: 42px;
  height: 72px;
  border-radius: 999px;
  border: 1px solid rgba(21, 46, 39, 0.1);
  background: #fff;
}

.hhl-gpt-material-strip i:nth-child(1) { background: #0d955a; }
.hhl-gpt-material-strip i:nth-child(2) { background: #d6c0a2; }
.hhl-gpt-material-strip i:nth-child(3) { background: #eff4e8; }
.hhl-gpt-material-strip i:nth-child(4) { background: #9a7a5d; }
.hhl-gpt-material-strip i:nth-child(5) { background: #f4efe2; }

.hhl-gpt-materials {
  display: grid;
  grid-template-columns: minmax(280px, 0.52fr) minmax(0, 1fr);
  gap: clamp(36px, 6vw, 78px);
  align-items: start;
}

.hhl-gpt-section-heading {
  position: sticky;
  top: 34px;
}

.hhl-gpt-section-heading h2,
.hhl-gpt-product-copy h2,
.hhl-gpt-proof-sticky h2,
.hhl-gpt-cta h2 {
  font-size: clamp(2.6rem, 5vw, 5.6rem);
  line-height: 0.96;
}

.hhl-gpt-bento {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 16px;
}

.hhl-gpt-bento-card {
  grid-column: span 3;
  min-height: 278px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(21, 46, 39, 0.1);
  box-shadow: 0 28px 80px -66px rgba(21, 46, 39, 0.5);
  overflow: hidden;
  position: relative;
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.hhl-gpt-bento-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 34px 90px -64px rgba(21, 46, 39, 0.65);
}

.hhl-gpt-bento-tall {
  grid-row: span 2;
  min-height: 572px;
}

.hhl-gpt-bento-wide {
  grid-column: span 3;
}

.hhl-gpt-bento-dark {
  background: #14372c;
}

.hhl-gpt-bento-card h3,
.hhl-gpt-proof-stack h3 {
  margin: 0 0 12px;
  color: #132c24;
  font-size: clamp(1.75rem, 2.6vw, 2.9rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.hhl-gpt-bento-card p,
.hhl-gpt-proof-sticky p,
.hhl-gpt-proof-stack p {
  margin: 0;
  color: #566d64;
  font-size: 16px;
  line-height: 1.62;
}

.hhl-gpt-bento-dark h3,
.hhl-gpt-bento-dark p {
  color: #fff;
}

.hhl-gpt-bento-dark p {
  color: rgba(255, 255, 255, 0.72);
}

.hhl-gpt-card-media {
  position: absolute;
  inset: 24px 24px auto;
  height: 280px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 24% 30%, #0d955a 0 10%, transparent 11%),
    radial-gradient(circle at 64% 40%, #c2a987 0 15%, transparent 16%),
    radial-gradient(circle at 38% 72%, #f4eee1 0 20%, transparent 21%),
    linear-gradient(135deg, #eef6ed, #d3e3d7);
  border: 1px solid rgba(21, 46, 39, 0.08);
}

.hhl-gpt-spec-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.hhl-gpt-spec-line span {
  display: inline-flex;
  padding: 8px 10px;
  border-radius: 999px;
  background: #edf5ee;
  color: #0a6f44;
  font-size: 12px;
  font-weight: 900;
}

.hhl-gpt-product-band {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
  border-top: 1px solid rgba(21, 46, 39, 0.1);
  border-bottom: 1px solid rgba(21, 46, 39, 0.1);
}

.hhl-gpt-text-link {
  display: inline-flex;
  margin-top: 28px;
  color: #0a7d4b;
  border-bottom: 1px solid currentColor;
}

.hhl-gpt-product-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(220px, 1fr));
  gap: 14px;
  overflow: hidden;
}

.hhl-gpt-product-rail article {
  min-height: 430px;
  display: flex;
  align-items: flex-end;
  padding: 22px;
  border-radius: 999px 999px 34px 34px;
  background:
    radial-gradient(circle at 50% 22%, rgba(255,255,255,0.86), transparent 22%),
    linear-gradient(180deg, #d8e5d9, #b7c9ba);
  border: 1px solid rgba(21, 46, 39, 0.1);
  transition: transform 420ms cubic-bezier(0.16, 1, 0.3, 1), filter 420ms ease;
}

.hhl-gpt-product-rail article:nth-child(2) { background: linear-gradient(180deg, #eadcc6, #c8ad89); }
.hhl-gpt-product-rail article:nth-child(3) { background: linear-gradient(180deg, #f5f1e5, #d6dccf); }
.hhl-gpt-product-rail article:nth-child(4) { background: linear-gradient(180deg, #d4e2dc, #8fb8a5); }

.hhl-gpt-product-rail article:hover {
  transform: translateY(-10px) scale(1.015);
  filter: contrast(1.04);
}

.hhl-gpt-product-rail span {
  display: block;
  color: #132c24;
  font-size: 21px;
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.hhl-gpt-proof {
  display: grid;
  grid-template-columns: minmax(300px, 0.74fr) minmax(0, 1.26fr);
  gap: clamp(36px, 7vw, 90px);
  align-items: start;
}

.hhl-gpt-proof-sticky {
  position: sticky;
  top: 34px;
}

.hhl-gpt-proof-sticky p:not(.hhl-gpt-eyebrow) {
  margin-top: 26px;
  max-width: 540px;
  font-size: 18px;
}

.hhl-gpt-proof-stack {
  display: grid;
  gap: 18px;
}

.hhl-gpt-proof-stack article {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 34px;
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(21, 46, 39, 0.1);
  box-shadow: 0 26px 76px -68px rgba(21, 46, 39, 0.55);
}

.hhl-gpt-proof-stack span {
  display: inline-flex;
  margin-bottom: 16px;
  color: #0d955a;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hhl-gpt-proof-feature {
  background:
    radial-gradient(circle at 82% 10%, rgba(13, 149, 90, 0.28), transparent 32%),
    #132c24 !important;
}

.hhl-gpt-proof-feature h3,
.hhl-gpt-proof-feature p,
.hhl-gpt-proof-feature span {
  color: #fff;
}

.hhl-gpt-proof-feature p {
  color: rgba(255, 255, 255, 0.72);
}

.hhl-gpt-trust {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding-block: 0;
  border: 1px solid rgba(21, 46, 39, 0.1);
  background: rgba(21, 46, 39, 0.1);
}

.hhl-gpt-trust div {
  min-height: 168px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.72);
}

.hhl-gpt-trust strong {
  display: block;
  color: #132c24;
  font-size: 29px;
  line-height: 1;
  letter-spacing: -0.06em;
}

.hhl-gpt-trust span {
  display: block;
  margin-top: 14px;
  color: #5c7269;
  line-height: 1.52;
}

.hhl-gpt-cta {
  max-width: 1080px;
  padding-bottom: clamp(96px, 12vw, 170px);
}

.hhl-gpt-cta h2 {
  max-width: 990px;
}

@media (max-width: 1120px) {
  .hhl-gpt-nav {
    grid-template-columns: 1fr;
    border-radius: 34px;
  }

  .hhl-gpt-links,
  .hhl-gpt-nav-actions {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .hhl-gpt-hero,
  .hhl-gpt-materials,
  .hhl-gpt-product-band,
  .hhl-gpt-proof {
    grid-template-columns: 1fr;
  }

  .hhl-gpt-section-heading,
  .hhl-gpt-proof-sticky {
    position: static;
  }

  .hhl-gpt-hero-stage {
    min-height: 560px;
  }

  .hhl-gpt-product-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 760px) {
  .hhl-gpt-nav,
  .hhl-gpt-chapter,
  .hhl-gpt-trust {
    width: calc(100% - 28px);
  }

  .hhl-gpt-nav {
    margin-top: 14px;
    padding: 16px;
  }

  .hhl-gpt-links a {
    padding: 8px 9px;
  }

  .hhl-gpt-chapter {
    padding-block: 72px;
  }

  .hhl-gpt-hero {
    min-height: auto;
    padding-top: 58px;
  }

  .hhl-gpt-hero h1 {
    max-width: 100%;
    font-size: 54px;
    line-height: 0.98;
    letter-spacing: -0.065em;
  }

  .hhl-gpt-hero-lead {
    font-size: 19px;
  }

  .hhl-gpt-button {
    width: 100%;
  }

  .hhl-gpt-hero-stage {
    min-height: 460px;
    border-radius: 32px;
  }

  .hhl-gpt-photo-card {
    inset: 62px 22px 110px;
    border-radius: 28px;
  }

  .hhl-gpt-orbit-card {
    width: 190px;
    padding: 14px;
  }

  .hhl-gpt-orbit-card-a {
    top: 16px;
    right: 14px;
  }

  .hhl-gpt-orbit-card-b {
    left: 14px;
    bottom: 18px;
  }

  .hhl-gpt-material-strip {
    display: none;
  }

  .hhl-gpt-section-heading h2,
  .hhl-gpt-product-copy h2,
  .hhl-gpt-proof-sticky h2,
  .hhl-gpt-cta h2 {
    font-size: 42px;
    line-height: 1.02;
    letter-spacing: -0.06em;
  }

  .hhl-gpt-bento {
    grid-template-columns: 1fr;
  }

  .hhl-gpt-bento-card,
  .hhl-gpt-bento-wide,
  .hhl-gpt-bento-tall {
    grid-column: auto;
    grid-row: auto;
    min-height: 286px;
    border-radius: 28px;
    padding: 24px;
  }

  .hhl-gpt-card-media {
    height: 160px;
  }

  .hhl-gpt-product-rail,
  .hhl-gpt-trust {
    grid-template-columns: 1fr;
  }

  .hhl-gpt-product-rail article {
    min-height: 260px;
    border-radius: 34px;
  }

  .hhl-gpt-proof-stack article {
    min-height: 270px;
    padding: 26px;
    border-radius: 28px;
  }
}

/* WPBakery homepage preview rebuilt from /index editorial framework */
.hhl-index-home {
  --hhl-ink: #171a18;
  --hhl-muted: #5f6763;
  --hhl-line: rgba(23, 26, 24, 0.12);
  --hhl-soft: #f6f6f3;
  --hhl-green: #0d955a;
  background: #fff;
  color: var(--hhl-ink);
  overflow-x: hidden;
}

.hhl-index-home * {
  box-sizing: border-box;
}

.hhl-index-hero-wrap {
  background: #fff !important;
}

.hhl-index-hero {
  position: relative;
  min-height: 86vh;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}

.hhl-index-hero-bg,
.hhl-index-hero-shade {
  position: absolute;
  inset: 0;
}

.hhl-index-hero-bg {
  z-index: -2;
  background-image: url("/wp-content/themes/salient-child/assets/story/home-editorial-hero.jpg");
  background-position: center center;
  background-size: cover;
  transform: scale(1.02);
}

.hhl-index-hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(9, 10, 9, 0.74) 0%, rgba(9, 10, 9, 0.42) 42%, rgba(9, 10, 9, 0.18) 100%),
    linear-gradient(180deg, rgba(9, 10, 9, 0.22) 0%, rgba(9, 10, 9, 0.04) 54%, rgba(9, 10, 9, 0.34) 100%);
}

.hhl-index-hero-inner {
  width: min(100% - 80px, 1320px);
  min-height: 86vh;
  margin: 0 auto;
  padding: 112px 0 74px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hhl-index-kicker,
.hhl-index-product-rail span,
.hhl-index-chain-grid span {
  margin: 0;
  color: var(--hhl-green);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hhl-index-hero .hhl-index-kicker {
  color: #fff;
  opacity: 0.82;
}

.hhl-index-hero h1 {
  max-width: 1120px;
  margin: 16px 0 24px;
  color: #fff;
  font-size: 112px;
  line-height: 0.95;
  letter-spacing: 0;
  font-weight: 300;
}

.hhl-index-hero-lead {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 23px;
  line-height: 1.55;
}

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

.hhl-index-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 22px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 4px;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0;
  text-decoration: none;
  transition: transform 240ms ease, background-color 240ms ease, color 240ms ease, border-color 240ms ease;
  text-decoration: none !important;
}

.hhl-index-btn:hover {
  transform: translateY(-2px);
}

.hhl-index-btn-light {
  background: #fff;
  color: #171a18 !important;
}

.hhl-index-btn-light:hover {
  border-color: #fff;
  background: #f1f1ee;
  color: #171a18 !important;
}

.hhl-index-btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: #fff !important;
}

.hhl-index-btn-ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.16);
  color: #fff !important;
}

.hhl-index-hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 900px;
  margin-top: 64px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.5;
}

.hhl-index-hero-proof span {
  padding-right: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.28);
}

.hhl-index-hero-proof span:last-child {
  border-right: 0;
}

.hhl-index-hero .hhl-index-kicker {
  max-width: 720px;
}

.hhl-index-editorial-line {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  max-width: 920px;
}

.hhl-index-editorial-line p {
  margin: 0;
  color: var(--hhl-muted);
  font-size: 20px;
  line-height: 1.78;
}

.hhl-index-inline-photo {
  display: block;
  width: 120px;
  aspect-ratio: 1;
  border-radius: 999px;
  background-image: url("/wp-content/themes/salient-child/assets/story/home-editorial-hero.jpg");
  background-position: 76% 64%;
  background-size: 420%;
  filter: grayscale(1) contrast(1.06);
}

.hhl-index-photo {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--hhl-line);
  border-radius: 6px;
  background: #fff;
}

.hhl-index-photo img {
  display: block;
  width: 100%;
  height: auto;
  filter: saturate(0.88) contrast(1.04);
  transition: transform 700ms ease, filter 700ms ease;
}

.hhl-index-photo:hover img {
  transform: scale(1.025);
  filter: saturate(0.96) contrast(1.08);
}

.hhl-index-photo figcaption {
  margin: 0;
  padding: 14px 16px;
  border-top: 1px solid var(--hhl-line);
  color: var(--hhl-muted);
  font-size: 14px;
  line-height: 1.6;
}

.hhl-index-chain-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 1px;
  margin-top: 28px;
  border: 1px solid var(--hhl-line);
  background: var(--hhl-line);
}

.hhl-index-chain-grid article {
  min-height: 238px;
  padding: 28px;
  background: #fff;
  transition: background-color 240ms ease;
}

.hhl-index-chain-grid article:nth-child(5) {
  grid-column: span 2;
}

.hhl-index-chain-grid article:hover {
  background: var(--hhl-soft);
}

.hhl-index-chain-grid h3 {
  margin: 16px 0 14px;
  color: var(--hhl-ink);
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: 0;
  font-weight: 400;
}

.hhl-index-chain-grid p {
  margin: 0;
  color: var(--hhl-muted);
  font-size: 15px;
  line-height: 1.72;
}

.hhl-index-photo-products {
  margin-top: 12px;
}

.hhl-index-product-rail {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 8px;
  border: 1px solid var(--hhl-line);
  background: var(--hhl-line);
}

.hhl-index-product-rail > br,
.hhl-index-product-rail a br {
  display: none;
}

.hhl-index-product-rail a {
  min-height: 134px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fff;
  color: var(--hhl-ink);
  text-decoration: none;
  transition: background-color 240ms ease, color 240ms ease;
}

.hhl-index-product-rail a:hover {
  background: #171a18;
  color: #fff;
}

.hhl-index-product-rail strong {
  display: block;
  font-size: 21px;
  line-height: 1.25;
  font-weight: 400;
  letter-spacing: 0;
}

.hhl-index-trust {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--hhl-line);
  background: var(--hhl-line);
}

.hhl-index-trust div {
  min-height: 176px;
  padding: 28px;
  background: #fff;
}

.hhl-index-trust strong {
  display: block;
  margin-bottom: 18px;
  color: var(--hhl-ink);
  font-size: 25px;
  line-height: 1.12;
  letter-spacing: 0;
  font-weight: 400;
}

.hhl-index-trust span {
  display: block;
  color: var(--hhl-muted);
  font-size: 15px;
  line-height: 1.7;
}

@media (max-width: 999px) {
  .hhl-index-hero {
    min-height: 82vh;
  }

  .hhl-index-hero-bg {
    background-position: 62% center;
  }

  .hhl-index-hero-inner {
    width: min(100% - 48px, 920px);
    min-height: 82vh;
    padding: 96px 0 56px;
  }

  .hhl-index-hero h1 {
    font-size: 80px;
  }

  .hhl-index-hero-lead {
    font-size: 20px;
  }

  .hhl-index-editorial-line,
  .hhl-index-chain-grid,
  .hhl-index-product-rail,
  .hhl-index-trust {
    grid-template-columns: 1fr;
  }

  .hhl-index-chain-grid article:nth-child(5) {
    grid-column: auto;
  }
}

/* Faithful /index homepage structure inside Salient/WPBakery preview */
.hhl-react-home {
  --hohi-green: #0d955a;
  --hohi-dark: #121212;
  --hohi-gray: #f8f8f8;
  --hohi-border: #e5e5e5;
  width: 100%;
  overflow-x: hidden;
  background: #fff;
  color: var(--hohi-dark);
  font-family: "Poppins", "Noto Sans SC", sans-serif;
}

.hhl-react-home *,
.hhl-react-home *::before,
.hhl-react-home *::after {
  box-sizing: border-box;
}

.hhl-react-home br {
  display: initial;
}

.hhl-react-wrap {
  width: min(100% - 72px, 1320px);
  margin: 0 auto;
}

.hhl-react-label {
  display: block;
  margin: 0 0 40px;
  color: var(--hohi-green);
  font-size: 10px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.hhl-react-label-on-dark {
  color: var(--hohi-green);
}

.hhl-react-hero {
  position: relative;
  min-height: calc(100vh - 110px);
  padding: 120px 0 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  background: var(--hohi-dark);
  color: #fff;
}

.hhl-react-hero-bg,
.hhl-react-hero-overlay {
  position: absolute;
  inset: 0;
}

.hhl-react-hero-bg {
  z-index: -2;
  background: url("/wp-content/themes/salient-child/assets/story/home-editorial-hero.jpg") center center / cover no-repeat;
  filter: grayscale(1);
  opacity: 0.44;
  transform: scale(1.04);
}

.hhl-react-hero-overlay {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(18, 18, 18, 0.82) 0%, rgba(18, 18, 18, 0.18) 42%, rgba(18, 18, 18, 0.96) 100%),
    linear-gradient(90deg, rgba(18, 18, 18, 0.72) 0%, rgba(18, 18, 18, 0.36) 48%, rgba(18, 18, 18, 0.12) 100%);
}

.hhl-react-hero-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 56px;
  align-items: end;
  position: relative;
  z-index: 1;
}

.hhl-react-hero-title {
  grid-column: 1 / -1;
  margin-bottom: 64px;
}

.hhl-react-hero-title h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(76px, 9.6vw, 148px);
  line-height: 0.86;
  letter-spacing: 0;
  font-weight: 300;
  text-transform: uppercase;
}

.hhl-react-hero-title h1 span {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.72);
  opacity: 0.42;
}

.hhl-react-hero-copy {
  grid-column: span 7;
  padding-left: 28px;
  border-left: 2px solid var(--hohi-green);
}

.hhl-react-hero-copy p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 24px;
  line-height: 1.7;
  font-weight: 300;
}

.hhl-react-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 40px;
}

.hhl-react-btn {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 32px;
  border: 2px solid currentColor;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none !important;
  transition: transform 260ms ease, background-color 260ms ease, color 260ms ease, border-color 260ms ease;
}

.hhl-react-btn:hover {
  transform: translateY(-2px);
}

.hhl-react-btn-light {
  background: #fff;
  border-color: #fff;
  color: var(--hohi-dark) !important;
}

.hhl-react-btn-light:hover {
  background: var(--hohi-green);
  border-color: var(--hohi-green);
  color: #fff !important;
}

.hhl-react-btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff !important;
}

.hhl-react-btn-ghost:hover {
  background: #fff;
  border-color: #fff;
  color: var(--hohi-dark) !important;
}

.hhl-react-btn-dark {
  background: var(--hohi-dark);
  border-color: var(--hohi-dark);
  color: #fff !important;
}

.hhl-react-bcorp {
  grid-column: 9 / -1;
  position: relative;
  padding: 40px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(14px);
}

.hhl-react-bmark {
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #fff;
  color: var(--hohi-dark);
  font-weight: 900;
}

.hhl-react-mini {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hhl-react-bcorp h2 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 500;
  letter-spacing: 0;
}

.hhl-react-bcorp p:last-of-type {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
  line-height: 1.8;
  font-style: normal;
}

.hhl-react-bcorp div:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hhl-react-bcorp span {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hhl-react-hero-foot {
  position: absolute;
  left: 42px;
  bottom: 38px;
  display: flex;
  gap: 18px;
  align-items: center;
  color: rgba(255, 255, 255, 0.24);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hhl-react-hero-foot i {
  width: 40px;
  height: 1px;
  background: rgba(255, 255, 255, 0.16);
}

.hhl-react-section {
  padding: clamp(112px, 14vw, 240px) 0;
  background: #fff;
}

.hhl-react-project-head {
  display: grid;
  grid-template-columns: minmax(0, 8fr) minmax(220px, 4fr);
  gap: 56px;
  align-items: end;
  margin-bottom: clamp(96px, 12vw, 180px);
}

.hhl-react-project-head h2,
.hhl-react-products-head h2,
.hhl-react-ad-system h3,
.hhl-react-inquiries h2 {
  margin: 0;
  color: var(--hohi-dark);
  font-size: clamp(46px, 6.4vw, 92px);
  line-height: 1.08;
  letter-spacing: 0;
  font-weight: 300;
  text-transform: uppercase;
}

.hhl-react-project-head figure {
  aspect-ratio: 1;
  margin: 0;
  overflow: hidden;
  border-radius: 12px;
  background: var(--hohi-gray);
  transform: rotate(7deg);
  box-shadow: 0 32px 80px -62px rgba(18, 18, 18, 0.7);
}

.hhl-react-project-head img,
.hhl-react-product-media img,
.hhl-react-ad-system img,
.hhl-react-interlude img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hhl-react-project-head img {
  filter: grayscale(1);
  opacity: 0.56;
}

.hhl-react-principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(36px, 6vw, 96px);
}

.hhl-react-principles article strong {
  display: block;
  margin-bottom: 24px;
  color: rgba(18, 18, 18, 0.16);
  font-size: 84px;
  line-height: 0.9;
  font-weight: 300;
  transition: color 300ms ease;
}

.hhl-react-principles article:hover strong {
  color: var(--hohi-green);
}

.hhl-react-principles h3 {
  margin: 0 0 22px;
  color: var(--hohi-dark);
  font-size: 31px;
  line-height: 1.25;
  font-weight: 300;
  letter-spacing: 0;
}

.hhl-react-principles i {
  display: block;
  width: 100%;
  height: 2px;
  margin-bottom: 28px;
  background: rgba(18, 18, 18, 0.06);
}

.hhl-react-principles p {
  margin: 0;
  color: rgba(18, 18, 18, 0.6);
  font-size: 16px;
  line-height: 1.78;
}

.hhl-react-products {
  padding-top: 80px;
}

.hhl-react-products-head {
  margin-bottom: clamp(80px, 10vw, 150px);
  display: flex;
  gap: 42px;
  align-items: flex-end;
  justify-content: space-between;
}

.hhl-react-products-head p {
  max-width: 420px;
  margin: 0;
  color: var(--hohi-green);
  font-size: 14px;
  line-height: 1.7;
  font-weight: 800;
}

.hhl-react-product-system {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(300px, 4fr);
  gap: 72px;
  align-items: start;
}

.hhl-react-product-media figure {
  aspect-ratio: 16 / 9;
  margin: 0 0 48px;
  overflow: hidden;
  border-radius: 12px;
  background: var(--hohi-gray);
}

.hhl-react-product-media > figure img {
  filter: grayscale(1) brightness(0.94);
}

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

.hhl-react-product-grid article img {
  aspect-ratio: 1;
  margin-bottom: 16px;
  border-radius: 12px;
  background: var(--hohi-gray);
  object-fit: cover;
  object-position: right center;
  filter: grayscale(1);
  transition: transform 620ms ease, filter 620ms ease;
}

.hhl-react-product-grid article:hover img {
  transform: scale(1.04);
  filter: grayscale(0.25);
}

.hhl-react-product-grid span {
  display: block;
  margin-bottom: 6px;
  color: var(--hohi-green);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hhl-react-product-grid h3 {
  margin: 0;
  color: var(--hohi-dark);
  font-size: 13px;
  line-height: 1.4;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hhl-react-text-link {
  display: inline-flex;
  margin-top: 48px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--hohi-green);
  color: var(--hohi-dark) !important;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none !important;
}

.hhl-react-coffee-path {
  position: sticky;
  top: 120px;
}

.hhl-react-coffee-card {
  margin-bottom: 48px;
  padding: 42px;
  border-radius: 12px;
  background: var(--hohi-green);
  color: #fff;
  transform: rotate(-3deg);
  box-shadow: 0 28px 70px -52px rgba(13, 149, 90, 0.8);
}

.hhl-react-coffee-card span {
  display: block;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hhl-react-coffee-card h3 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 33px;
  line-height: 1.2;
  font-weight: 700;
}

.hhl-react-coffee-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  line-height: 1.75;
}

.hhl-react-loop-list {
  display: grid;
  gap: 30px;
}

.hhl-react-loop-list p {
  margin: 0;
  display: flex;
  gap: 24px;
  color: var(--hohi-dark);
  font-size: 24px;
  line-height: 1.25;
  font-weight: 300;
  text-transform: uppercase;
}

.hhl-react-loop-list strong {
  color: rgba(13, 149, 90, 0.34);
  font-weight: 300;
}

.hhl-react-ad-system {
  margin-top: clamp(120px, 14vw, 210px);
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 64px;
  align-items: center;
}

.hhl-react-ad-system p {
  margin: 36px 0 0;
  color: rgba(18, 18, 18, 0.78);
  font-size: 22px;
  line-height: 1.72;
  font-weight: 300;
  text-decoration: underline;
  text-decoration-color: var(--hohi-green);
  text-decoration-thickness: 2px;
  text-underline-offset: 8px;
}

.hhl-react-ad-system figure {
  position: relative;
  aspect-ratio: 16 / 10;
  margin: 0;
  overflow: hidden;
  border-radius: 12px;
  background: var(--hohi-dark);
}

.hhl-react-ad-system img {
  filter: grayscale(1);
  opacity: 0.56;
}

.hhl-react-ad-system figcaption {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 48px;
  color: rgba(255, 255, 255, 0.22);
  font-size: clamp(52px, 8vw, 112px);
  line-height: 0.95;
  font-weight: 200;
  letter-spacing: 0.16em;
  text-align: center;
  text-transform: uppercase;
}

.hhl-react-interlude {
  position: relative;
  height: min(90vh, 860px);
  min-height: 560px;
  overflow: hidden;
  background: #fff;
}

.hhl-react-interlude img {
  position: absolute;
  inset: 0;
  filter: grayscale(1) contrast(1.16) brightness(0.72);
}

.hhl-react-interlude div {
  position: absolute;
  inset: 0;
  padding: 32px;
  display: grid;
  place-items: center;
  text-align: center;
  background: rgba(18, 18, 18, 0.1);
}

.hhl-react-interlude h2 {
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(66px, 10vw, 144px);
  line-height: 0.95;
  font-weight: 300;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hhl-react-interlude p {
  margin: 0;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.hhl-react-vision {
  padding: clamp(120px, 14vw, 180px) 0;
  border-top: 1px solid rgba(18, 18, 18, 0.08);
  background: #fff;
  text-align: center;
}

.hhl-react-vision-inner {
  max-width: 980px;
}

.hhl-react-vision h2 {
  margin: 0 auto 74px;
  color: rgba(18, 18, 18, 0.78);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.62;
  font-weight: 300;
}

.hhl-react-vision div div {
  display: flex;
  gap: 44px;
  justify-content: center;
  align-items: center;
}

.hhl-react-vision i {
  display: block;
  width: 96px;
  height: 2px;
  background: var(--hohi-green);
}

.hhl-react-vision p {
  margin: 0;
  color: var(--hohi-green);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.hhl-react-inquiries {
  padding: clamp(140px, 18vw, 260px) 0;
  border-top: 1px solid rgba(18, 18, 18, 0.08);
  background: #fff;
  text-align: center;
}

.hhl-react-inquiries .hhl-react-wrap {
  max-width: 980px;
}

.hhl-react-inquiries h2 {
  margin-bottom: 58px;
  font-size: clamp(76px, 9vw, 128px);
}

.hhl-react-inquiries h2 span {
  color: var(--hohi-green);
}

@media (max-width: 1120px) {
  .hhl-react-hero-grid,
  .hhl-react-project-head,
  .hhl-react-product-system,
  .hhl-react-ad-system {
    grid-template-columns: 1fr;
  }

  .hhl-react-hero-copy,
  .hhl-react-bcorp {
    grid-column: auto;
  }

  .hhl-react-bcorp {
    max-width: 620px;
  }

  .hhl-react-coffee-path {
    position: static;
  }

  .hhl-react-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .hhl-react-wrap {
    width: min(100% - 36px, 560px);
  }

  .hhl-react-hero {
    min-height: auto;
    padding: 88px 0 64px;
  }

  .hhl-react-hero-title {
    margin-bottom: 34px;
  }

  .hhl-react-hero-title h1 {
    font-size: 50px;
    line-height: 0.94;
  }

  .hhl-react-hero-copy {
    padding-left: 18px;
  }

  .hhl-react-hero-copy p {
    font-size: 18px;
  }

  .hhl-react-actions,
  .hhl-react-btn {
    width: 100%;
  }

  .hhl-react-bcorp {
    padding: 28px;
  }

  .hhl-react-hero-foot {
    position: static;
    width: min(100% - 36px, 560px);
    margin: 38px auto 0;
    flex-wrap: wrap;
  }

  .hhl-react-section {
    padding: 92px 0;
  }

  .hhl-react-project-head {
    margin-bottom: 72px;
  }

  .hhl-react-project-head h2,
  .hhl-react-products-head h2,
  .hhl-react-ad-system h3 {
    font-size: 38px;
  }

  .hhl-react-project-head figure {
    display: none;
  }

  .hhl-react-principles,
  .hhl-react-product-grid {
    grid-template-columns: 1fr;
  }

  .hhl-react-products-head {
    display: block;
  }

  .hhl-react-products-head p {
    margin-top: 28px;
  }

  .hhl-react-product-media figure,
  .hhl-react-ad-system figure {
    border-radius: 0;
    margin-left: -18px;
    margin-right: -18px;
  }

  .hhl-react-product-grid article img {
    aspect-ratio: 16 / 9;
    object-position: center center;
  }

  .hhl-react-coffee-card {
    padding: 30px;
    transform: none;
  }

  .hhl-react-loop-list p {
    font-size: 19px;
  }

  .hhl-react-ad-system {
    margin-top: 96px;
  }

  .hhl-react-interlude {
    min-height: 420px;
    height: 68vh;
  }

  .hhl-react-vision div div {
    flex-direction: column;
    gap: 24px;
  }

  .hhl-react-vision p {
    line-height: 1.7;
  }

  .hhl-react-inquiries h2 {
    font-size: 64px;
  }
}

/* Refined Chinese WPBakery integration pass */
.hhl-react-home-cn {
  --hhl-brand: #0d955a;
  --hhl-ink: #151515;
  --hhl-muted: rgba(21, 21, 21, 0.62);
  --hhl-line: rgba(21, 21, 21, 0.12);
  --hhl-soft: #f7f7f5;
  --hhl-type-label: 12px;
  --hhl-type-body: 18px;
  --hhl-type-display: clamp(44px, 5.2vw, 86px);
  color: var(--hhl-ink);
  font-family: "Poppins", "Noto Sans SC", sans-serif;
  font-size: var(--hhl-type-body);
  line-height: 1.72;
}

.hhl-react-home-cn ::selection {
  background: var(--hhl-brand);
  color: #fff;
}

.page-id-1861 #header-outer {
  position: relative;
  z-index: 10000;
}

.page-id-1861 #header-outer,
.page-id-1861 #header-outer .container,
.page-id-1861 #header-outer .row,
.page-id-1861 #ajax-content-wrap,
.page-id-1861 #ajax-content-wrap .container-wrap,
.page-id-1861 #ajax-content-wrap .main-content,
.page-id-1861 #ajax-content-wrap .main-content > .row,
.page-id-1861 #ajax-content-wrap .main-content > .row > .col,
.page-id-1861 #ajax-content-wrap .post-area,
.page-id-1861 #ajax-content-wrap .post-area > article {
  max-width: none !important;
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.page-id-1861 #header-outer .container {
  padding-left: clamp(24px, 3vw, 42px) !important;
  padding-right: clamp(24px, 3vw, 42px) !important;
}

.page-id-1861 #ajax-content-wrap,
.page-id-1861 #ajax-content-wrap .container-wrap,
.page-id-1861 #ajax-content-wrap .main-content,
.page-id-1861 #ajax-content-wrap .post-area,
.page-id-1861 #ajax-content-wrap .post-area > article {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.hhl-react-home-cn .hhl-react-label,
.hhl-react-home-cn .hhl-react-mini,
.hhl-react-home-cn .hhl-react-btn,
.hhl-react-home-cn .hhl-react-text-link,
.hhl-react-home-cn .hhl-data-grid span,
.hhl-react-home-cn .hhl-react-product-grid span,
.hhl-react-home-cn .hhl-react-hero-foot {
  font-size: var(--hhl-type-label) !important;
  letter-spacing: 0.08em;
}

.hhl-react-home-cn p,
.hhl-react-home-cn .hhl-react-principles p,
.hhl-react-home-cn .hhl-react-products-head p,
.hhl-react-home-cn .hhl-react-product-grid p,
.hhl-react-home-cn .hhl-data-grid p,
.hhl-react-home-cn .hhl-react-bcorp p,
.hhl-react-home-cn .hhl-react-loop-list p {
  font-size: var(--hhl-type-body) !important;
}

.hhl-react-home-cn .hhl-react-hero-title h1,
.hhl-react-home-cn .hhl-react-project-head h2,
.hhl-react-home-cn .hhl-react-products-head h2,
.hhl-react-home-cn .hhl-data-head h2,
.hhl-react-home-cn .hhl-react-ad-system h3,
.hhl-react-home-cn .hhl-react-interlude h2,
.hhl-react-home-cn .hhl-react-inquiries h2 {
  font-size: var(--hhl-type-display) !important;
  letter-spacing: 0;
}

.hhl-react-home-cn .hhl-react-hero {
  min-height: calc(100dvh - 130px);
  height: calc(100dvh - 130px);
  padding: clamp(28px, 4vh, 56px) 0;
  justify-content: center;
  background: #111;
}

.hhl-wpb-home-preview .wpb_content_element,
.hhl-wpb-home-preview .wpb_wrapper > :last-child,
.hhl-wpb-home-preview .wpb_text_column.wpb_content_element {
  margin-bottom: 0 !important;
}

.hhl-wpb-home-preview .vc_column-inner,
.hhl-wpb-home-preview .wpb_wrapper {
  padding-bottom: 0 !important;
}

.hhl-wpb-home-preview .vc_row,
.hhl-wpb-home-preview .vc_row .wpb_column,
.hhl-wpb-home-preview .vc_row .vc_column-inner,
.hhl-wpb-home-preview .vc_row .wpb_wrapper {
  border: 0 !important;
  box-shadow: none !important;
}

.hhl-wpb-home-preview .wpb_text_column .wpb_wrapper > *:first-child {
  margin-top: 0;
}

.hhl-wpb-home-preview .wpb_text_column .wpb_wrapper > *:last-child {
  margin-bottom: 0;
}

.hhl-wpb-block-hero {
  position: relative;
  overflow: hidden;
  background: #111;
}

.hhl-wpb-block-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/wp-content/themes/salient-child/assets/story/home-hero-coffee-upload.jpg") center center / cover no-repeat;
  filter: contrast(1.08) brightness(0.78) saturate(0.92);
  transform: translate3d(0, var(--hhl-hero-bg-y, 0), 0) scale(var(--hhl-hero-bg-scale, 1.04));
  transform-origin: center center;
  will-change: transform;
  z-index: 0;
}

.hhl-wpb-block-hero > .row-bg-wrap {
  display: none !important;
}

.hhl-wpb-block-hero > .row_col_wrap_12 {
  position: relative;
  z-index: 1;
  width: min(100% - 72px, 1320px);
  margin: 0 auto;
  min-height: calc(100dvh - 210px);
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(28px, 3vw, 44px);
  align-items: end;
}

.hhl-wpb-block-hero > .row_col_wrap_12 > .hhl-wpb-hero-main {
  grid-column: 1 / span 7;
  align-self: start;
  padding-top: clamp(14px, 4vh, 52px);
}

.hhl-wpb-block-hero > .row_col_wrap_12 > .hhl-react-bcorp {
  grid-column: 8 / -1;
  align-self: end;
}

.hhl-wpb-hero-main > .vc_column-inner > .wpb_wrapper {
  display: flex;
  flex-direction: column;
}

.hhl-wpb-hero-label,
.hhl-wpb-hero-heading,
.hhl-wpb-hero-copy,
.hhl-wpb-hero-actions,
.hhl-wpb-bcorp-logo-block,
.hhl-wpb-bcorp-mini,
.hhl-wpb-bcorp-head,
.hhl-wpb-bcorp-body,
.hhl-wpb-bcorp-link-block {
  margin-bottom: 0 !important;
}

.hhl-react-home-cn .hhl-wpb-bcorp-column {
  display: block;
}

.hhl-react-home-cn .hhl-wpb-bcorp-column > .vc_column-inner > .wpb_wrapper {
  display: grid;
  grid-template-columns: 94px minmax(0, 1fr);
  grid-template-areas:
    "logo mini"
    "logo head"
    "logo body"
    "logo link";
  column-gap: 22px;
  row-gap: 8px;
  align-items: start;
}

.hhl-wpb-bcorp-logo-block { grid-area: logo; }
.hhl-wpb-bcorp-mini { grid-area: mini; }
.hhl-wpb-bcorp-head { grid-area: head; }
.hhl-wpb-bcorp-body { grid-area: body; }
.hhl-wpb-bcorp-link-block { grid-area: link; }

.hhl-react-home-cn .hhl-wpb-bcorp-head h2,
.hhl-react-home-cn .hhl-wpb-bcorp-body p {
  margin: 0;
}

.hhl-react-project-head > .row_col_wrap_12_inner,
.hhl-react-products-head > .row_col_wrap_12_inner,
.hhl-react-product-system > .row_col_wrap_12_inner,
.hhl-react-ad-system > .row_col_wrap_12_inner {
  display: grid;
}

.hhl-react-project-head > .row_col_wrap_12_inner {
  grid-template-columns: minmax(0, 8fr) minmax(220px, 4fr);
  gap: 56px;
  align-items: end;
}

.hhl-react-principles > .row_col_wrap_12_inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(36px, 6vw, 96px);
}

.hhl-wpb-principle-card > .vc_column-inner > .wpb_wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.hhl-wpb-principle-index strong {
  display: block;
  margin-bottom: 24px;
  color: rgba(18, 18, 18, 0.16);
  font-size: 84px;
  line-height: 0.9;
  font-weight: 300;
  transition: color 300ms ease;
}

.hhl-wpb-principle-card:hover .hhl-wpb-principle-index strong {
  color: var(--hhl-brand);
}

.hhl-wpb-principle-title h3 {
  margin: 0 0 22px;
}

.hhl-wpb-principle-divider {
  width: 100%;
  height: 2px;
  margin-bottom: 28px !important;
  background: rgba(18, 18, 18, 0.06);
}

.hhl-wpb-principle-divider .vc_empty_space {
  height: 2px !important;
  margin-bottom: 0 !important;
}

.hhl-wpb-principle-copy p {
  margin: 0;
}

.hhl-data-grid > .row_col_wrap_12_inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--hhl-line);
  background: var(--hhl-line);
}

.hhl-data-grid > .row_col_wrap_12_inner > .wpb_column {
  background: #fff;
}

.hhl-wpb-data-card > .vc_column-inner {
  padding: 28px !important;
  min-height: 156px;
  background: #fff;
}

.hhl-wpb-data-value strong {
  display: block;
  margin: 18px 0 10px;
  color: var(--hhl-ink);
  font-size: clamp(28px, 3.4vw, 52px);
  line-height: 0.9;
  font-weight: 300;
}

.hhl-wpb-data-copy p {
  margin: 0;
  color: var(--hhl-muted);
}

.hhl-react-products-head > .row_col_wrap_12_inner {
  grid-template-columns: minmax(0, 8fr) minmax(280px, 4fr);
  gap: 42px;
  align-items: end;
}

.hhl-react-product-system > .row_col_wrap_12_inner {
  grid-template-columns: minmax(0, 7fr) minmax(300px, 4fr);
  gap: 72px;
  align-items: start;
}

.hhl-react-product-grid > .row_col_wrap_12_inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--hhl-line);
  background: var(--hhl-line);
}

.hhl-react-product-grid > .row_col_wrap_12_inner > .wpb_column {
  background: #fff;
}

.hhl-wpb-product-card .wpb_text_column,
.hhl-wpb-product-card .wpb_wrapper {
  margin-bottom: 0 !important;
}

.hhl-wpb-product-card article {
  height: 100%;
}

.hhl-react-coffee-path > .vc_column-inner > .wpb_wrapper {
  display: grid;
  gap: 28px;
}

.hhl-react-ad-system > .row_col_wrap_12_inner {
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 64px;
  align-items: center;
}

.hhl-wpb-ad-figure figure,
.hhl-wpb-ad-figure figcaption {
  margin: 0;
}

.hhl-wpb-block-interlude > .row-bg-wrap {
  display: none !important;
}

.hhl-wpb-block-interlude > .row_col_wrap_12,
.hhl-wpb-block-interlude > .row_col_wrap_12 > .wpb_column,
.hhl-wpb-block-interlude > .row_col_wrap_12 > .wpb_column > .vc_column-inner,
.hhl-wpb-block-interlude > .row_col_wrap_12 > .wpb_column > .vc_column-inner > .wpb_wrapper {
  position: relative;
  min-height: min(90vh, 860px);
  height: min(90vh, 860px);
}

.hhl-wpb-block-interlude > .row_col_wrap_12 > .wpb_column > .vc_column-inner > .wpb_wrapper {
  display: grid;
  place-items: center;
  padding: 32px;
  text-align: center;
}

.hhl-wpb-block-interlude > .row_col_wrap_12 > .wpb_column > .vc_column-inner > .wpb_wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(18, 18, 18, 0.1);
}

.hhl-wpb-interlude-image {
  position: absolute !important;
  inset: 0;
  margin: 0 !important;
}

.hhl-wpb-interlude-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hhl-wpb-interlude-heading,
.hhl-wpb-interlude-copy {
  position: relative;
  z-index: 1;
}

.hhl-wpb-interlude-heading {
  margin-bottom: 18px !important;
}

.hhl-wpb-interlude-copy p {
  margin: 0;
}

.hhl-wpb-vision-footer > .row_col_wrap_12_inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 44px;
  align-items: center;
}

.hhl-wpb-vision-line .vc_empty_space {
  height: 2px !important;
  background: var(--hhl-brand);
  margin-bottom: 0 !important;
}

.hhl-wpb-vision-tag p {
  margin: 0;
}

.hhl-wpb-inquiries-inner > .row_col_wrap_12_inner {
  max-width: 980px;
  margin: 0 auto;
}

.hhl-react-home-cn .hhl-react-hero-bg {
  background-image: url("/wp-content/themes/salient-child/assets/story/home-hero-coffee-upload.jpg");
  background-position: center center;
  background-attachment: fixed;
  filter: contrast(1.08) brightness(0.78) saturate(0.92);
  opacity: 1;
  transform: scale(1.04);
  will-change: transform;
}

.hhl-react-home-cn .hhl-react-hero-overlay {
  display: none;
}

.hhl-react-home-cn .hhl-react-hero-grid {
  min-height: calc(100dvh - 210px);
  align-items: end;
  grid-template-rows: 1fr auto;
}

.hhl-react-home-cn .hhl-react-hero-title {
  grid-column: 1 / span 8;
  align-self: start;
  margin: clamp(14px, 4vh, 52px) 0 0;
  will-change: transform;
}

.hhl-react-home-cn .hhl-react-hero-title h1 {
  max-width: 1040px;
  font-size: clamp(64px, 6.8vw, 120px) !important;
  line-height: 1.2;
  font-weight: 600;
  text-transform: none;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.42);
}

.hhl-type-reveal h1 {
  animation: hhlTextReveal 1.15s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes hhlTextReveal {
  from {
    clip-path: inset(0 0 100% 0);
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    clip-path: inset(0 0 0 0);
    opacity: 1;
    transform: translateY(0);
  }
}

.hhl-react-home-cn .hhl-react-hero-copy {
  grid-column: 1 / span 6;
  align-self: end;
  max-width: 720px;
  padding-left: 0;
  border-left: 0 !important;
  border-inline-start: 0 !important;
  border-color: transparent !important;
  background: transparent;
  backdrop-filter: none;
  transform: none;
  box-shadow: none !important;
  will-change: transform;
}

.hhl-react-home-cn .hhl-react-hero-copy::before,
.hhl-react-home-cn .hhl-react-hero-copy::after {
  display: none !important;
}

.hhl-react-home-cn .hhl-react-hero-copy,
.hhl-react-home-cn .hhl-react-hero-copy * {
  border-left: 0 !important;
  border-inline-start: 0 !important;
}

.hhl-react-home-cn .hhl-react-hero-copy p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 620px;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.5);
}

.hhl-react-home-cn .hhl-react-bcorp {
  grid-column: 7 / -1;
  align-self: end;
  max-width: 560px;
  min-height: 168px;
  padding: 20px 22px;
  display: grid;
  grid-template-columns: 94px minmax(0, 1fr);
  column-gap: 22px;
  row-gap: 8px;
  align-items: start;
  background: rgba(13, 14, 13, 0.78);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 26px 80px -42px rgba(0, 0, 0, 0.9);
  will-change: transform;
}

.hhl-react-home-cn .hhl-bcorp-logo {
  display: block;
  width: 86px !important;
  max-height: 128px;
  height: auto;
  margin: 0;
  object-fit: contain;
  padding: 0;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0;
  box-shadow: none !important;
  filter: brightness(0) invert(1) grayscale(1) !important;
  -webkit-filter: brightness(0) invert(1) grayscale(1) !important;
  grid-row: 1 / span 4;
}

.hhl-react-home-cn .hhl-react-bcorp h2 {
  color: #fff;
  font-size: 22px !important;
  font-weight: 600;
  line-height: 1.28;
  margin: 2px 0 2px;
}

.hhl-react-home-cn .hhl-react-bcorp p,
.hhl-react-home-cn .hhl-react-bcorp .hhl-react-mini {
  color: rgba(255, 255, 255, 0.7);
  font-style: normal !important;
  line-height: 1.45;
}

.hhl-react-home-cn .hhl-react-bcorp .hhl-react-mini {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 11px !important;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hhl-react-home-cn .hhl-bcorp-link {
  display: inline-flex;
  margin-top: 4px;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--hhl-brand);
  color: #fff !important;
  font-size: var(--hhl-type-label) !important;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none !important;
}

.hhl-react-home-cn .hhl-bcorp-link:hover {
  color: var(--hhl-brand) !important;
}

.hhl-react-home-cn .hhl-react-hero-foot {
  display: none !important;
}

.hhl-react-home-cn,
.hhl-react-home-cn * {
  font-style: normal !important;
}

@supports (animation-timeline: scroll()) {
  .hhl-react-home-cn .hhl-react-hero-bg {
    animation: hhlHeroBgParallax linear both;
    animation-timeline: scroll(root);
    animation-range: 0 100dvh;
  }

  .hhl-react-home-cn .hhl-react-hero-title {
    animation: hhlHeroTitleParallax linear both;
    animation-timeline: scroll(root);
    animation-range: 0 100dvh;
  }

  .hhl-react-home-cn .hhl-react-hero-copy {
    animation: hhlHeroCopyParallax linear both;
    animation-timeline: scroll(root);
    animation-range: 0 100dvh;
  }

  .hhl-react-home-cn .hhl-react-bcorp {
    animation: hhlHeroCardParallax linear both;
    animation-timeline: scroll(root);
    animation-range: 0 100dvh;
  }
}

@keyframes hhlHeroBgParallax {
  from { transform: scale(1.04) translateY(0); }
  to { transform: scale(1.24) translateY(-30vh); }
}

@keyframes hhlHeroTitleParallax {
  from { transform: translateY(0) scale(1); }
  to { transform: translateY(-46vh) scale(1.04); }
}

@keyframes hhlHeroCopyParallax {
  from { transform: translateY(0); }
  to { transform: translateY(-20vh); }
}

@keyframes hhlHeroCardParallax {
  from { transform: translateY(0); }
  to { transform: translateY(-32vh); }
}

.hhl-react-home-cn .hhl-react-hero-foot,
.hhl-react-home-cn .hhl-react-label,
.hhl-react-home-cn .hhl-react-product-grid span,
.hhl-react-home-cn .hhl-data-grid span,
.hhl-react-home-cn .hhl-react-text-link {
  color: var(--hhl-brand);
}

.hhl-react-home-cn .hhl-react-section {
  padding: clamp(96px, 12vw, 190px) 0;
}

.hhl-react-home-cn .hhl-logo-card {
  aspect-ratio: 16 / 10;
  padding: 48px;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid var(--hhl-line);
  transform: rotate(3deg);
}

.hhl-react-home-cn .hhl-logo-card img {
  width: min(100%, 480px);
  height: auto;
  object-fit: contain;
  filter: none;
  opacity: 1;
}

.hhl-impact-data {
  padding-top: 0;
  background: #fff;
}

.hhl-data-head {
  max-width: 900px;
  margin-bottom: 48px;
}

.hhl-data-head h2 {
  margin: 0 0 24px;
  line-height: 1.08;
  font-weight: 300;
}

.hhl-data-head p {
  max-width: 680px;
  color: var(--hhl-muted);
}

.hhl-data-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 1px;
  border: 1px solid var(--hhl-line);
  background: var(--hhl-line);
}

.hhl-data-grid article {
  min-height: 156px;
  padding: 28px;
  background: #fff;
}

.hhl-data-grid .hhl-data-primary {
  grid-column: span 1;
}

.hhl-data-grid strong {
  display: block;
  margin: 18px 0 10px;
  color: var(--hhl-ink);
  font-size: clamp(28px, 3.4vw, 52px);
  line-height: 0.9;
  font-weight: 300;
}

.hhl-data-grid p {
  margin: 0;
  color: var(--hhl-muted);
}

.hhl-react-home-cn .hhl-react-products {
  padding-top: clamp(96px, 12vw, 180px);
}

.hhl-react-home-cn .hhl-react-product-media figure,
.hhl-react-home-cn .hhl-coffee-path-img,
.hhl-react-home-cn .hhl-react-ad-system figure {
  border: 1px solid var(--hhl-line);
  border-radius: 0;
}

.hhl-react-home-cn .hhl-react-product-media > figure img,
.hhl-react-home-cn .hhl-coffee-path-img img,
.hhl-react-home-cn .hhl-react-ad-system img {
  filter: grayscale(0.35) contrast(1.04);
}

.hhl-react-home-cn .hhl-react-ad-system figure {
  background: #f4f4f1 url("/wp-content/themes/salient-child/assets/story/home-ad-fabric-recycling.jpg") center center / cover no-repeat;
}

.hhl-react-home-cn .hhl-react-ad-system figure img {
  opacity: 0.94;
  object-position: center center;
}

.hhl-react-home-cn .hhl-react-ad-system figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.02));
  pointer-events: none;
}

.hhl-react-home-cn .hhl-react-product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--hhl-line);
  background: var(--hhl-line);
}

.hhl-react-home-cn .hhl-react-product-grid article {
  background: #fff;
}

.hhl-react-home-cn .hhl-react-product-grid a {
  display: block;
  min-height: 100%;
  padding: 16px;
  color: inherit;
  text-decoration: none !important;
}

.hhl-react-home-cn .hhl-react-product-grid article img {
  border-radius: 0;
  aspect-ratio: 1;
  filter: none;
}

.hhl-react-home-cn .hhl-react-product-grid h3,
.hhl-react-home-cn .hhl-react-principles h3 {
  font-size: var(--hhl-type-body) !important;
  line-height: 1.35;
  font-weight: 600;
}

.hhl-react-home-cn .hhl-react-product-grid p {
  margin: 10px 0 0;
  color: var(--hhl-muted);
  line-height: 1.55;
}

.hhl-react-home-cn .hhl-react-coffee-path {
  display: grid;
  gap: 28px;
}

.hhl-react-home-cn .hhl-coffee-path-img {
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.hhl-react-home-cn .hhl-coffee-path-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hhl-react-home-cn .hhl-react-loop-list p {
  color: var(--hhl-ink);
  text-transform: none;
}

.hhl-react-home-cn .hhl-react-loop-list strong {
  color: var(--hhl-brand);
}

.hhl-react-home-cn .hhl-react-ad-system figcaption {
  z-index: 1;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(32px, 4.2vw, 64px) !important;
  letter-spacing: 0.08em;
}

.hhl-react-home-cn .hhl-react-ad-system {
  grid-template-columns: minmax(0, 6fr) minmax(0, 6fr);
  gap: clamp(40px, 5vw, 72px);
}

.hhl-react-home-cn .hhl-react-ad-system h3 {
  max-width: 720px;
  line-height: 1.16;
  word-break: normal;
  overflow-wrap: anywhere;
}

.hhl-react-home-cn .hhl-react-ad-system p {
  max-width: 680px;
  text-decoration-thickness: 1px;
}

.hhl-react-home-cn .hhl-react-interlude {
  background: url("/wp-content/themes/salient-child/assets/story/home-hero-coffee-palm.jpg") center center / cover fixed;
}

.hhl-react-home-cn .hhl-react-interlude img {
  opacity: 1;
  filter: grayscale(1) contrast(1.08) brightness(0.72);
  transform: scale(1.08);
}

.hhl-react-home-cn .hhl-react-interlude div {
  background: rgba(10, 10, 10, 0.38);
}

.hhl-react-home-cn .hhl-react-interlude h2 {
  max-width: 980px;
  color: #fff;
  line-height: 1.12;
  text-transform: none;
}

.hhl-react-home-cn .hhl-react-interlude p,
.hhl-react-home-cn .hhl-react-vision p {
  font-size: var(--hhl-type-label) !important;
  color: var(--hhl-brand);
}

.hhl-react-home-cn .hhl-react-vision h2 {
  font-size: var(--hhl-type-display) !important;
  line-height: 1.18;
  color: var(--hhl-ink);
}

.hhl-react-home-cn .hhl-react-inquiries h2 {
  text-transform: none;
}

.hhl-react-home-cn .hhl-react-inquiries h2 span {
  color: var(--hhl-ink);
  text-decoration: underline;
  text-decoration-color: var(--hhl-brand);
  text-decoration-thickness: 3px;
  text-underline-offset: 10px;
}

@media (prefers-reduced-motion: reduce) {
  .hhl-type-reveal h1 {
    animation: none;
  }
}

@media (max-width: 1120px) {
  .hhl-wpb-block-hero > .row_col_wrap_12 {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hhl-wpb-block-hero > .row_col_wrap_12 > .hhl-wpb-hero-main,
  .hhl-wpb-block-hero > .row_col_wrap_12 > .hhl-react-bcorp {
    grid-column: auto;
  }

  .hhl-react-home-cn .hhl-react-hero-title,
  .hhl-react-home-cn .hhl-react-hero-copy,
  .hhl-react-home-cn .hhl-react-bcorp {
    grid-column: auto;
  }

  .hhl-react-project-head > .row_col_wrap_12_inner,
  .hhl-react-products-head > .row_col_wrap_12_inner,
  .hhl-react-product-system > .row_col_wrap_12_inner,
  .hhl-react-ad-system > .row_col_wrap_12_inner {
    grid-template-columns: 1fr;
  }

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

  .hhl-data-grid > .row_col_wrap_12_inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hhl-react-home-cn .hhl-react-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hhl-react-home-cn .hhl-react-product-grid > .row_col_wrap_12_inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .page-id-1861 #header-outer .container {
    padding-left: 22px !important;
    padding-right: 22px !important;
  }

  .hhl-wpb-block-hero > .row_col_wrap_12 {
    width: min(100% - 36px, 560px);
    gap: 16px;
    min-height: calc(100dvh - 154px);
  }

  .hhl-wpb-block-hero > .row_col_wrap_12 > .hhl-wpb-hero-main {
    padding-top: 28px;
    padding-left: 14px;
  }

  .hhl-react-home-cn {
    --hhl-type-label: 11px;
    --hhl-type-body: 16px;
    --hhl-type-display: 40px;
  }

  .hhl-react-home-cn .hhl-react-hero {
    min-height: calc(100dvh - 98px);
    height: calc(100dvh - 98px);
    padding: 28px 0;
  }

  .hhl-react-home-cn .hhl-react-hero-bg,
  .hhl-react-home-cn .hhl-react-interlude {
    background-attachment: scroll;
  }

  .hhl-react-home-cn .hhl-react-hero-title h1 {
    max-width: 292px;
    font-size: 46px !important;
    line-height: 1.2;
    font-weight: 600;
  }

  .hhl-react-home-cn .hhl-react-hero-grid {
    min-height: calc(100dvh - 154px);
    gap: 16px;
  }

  .hhl-react-home-cn .hhl-react-hero-title {
    padding-left: 14px;
  }

  .hhl-react-home-cn .hhl-react-label {
    margin-bottom: 18px;
  }

  .hhl-react-home-cn .hhl-react-hero-copy {
    padding-left: 0;
    border-left: 0 !important;
    border-inline-start: 0 !important;
    border-color: transparent !important;
    background: transparent;
    transform: none;
    box-shadow: none !important;
  }

  .hhl-react-home-cn .hhl-react-hero-copy p {
    max-width: 340px;
    font-size: 15px !important;
    line-height: 1.58;
  }

  .hhl-react-home-cn .hhl-react-actions {
    margin-top: 18px;
  }

  .hhl-react-home-cn .hhl-react-btn {
    min-height: 46px;
  }

  .hhl-react-home-cn .hhl-react-bcorp {
    max-width: none;
    min-height: 112px;
    padding: 14px;
    background: rgba(13, 14, 13, 0.84);
  }

  .hhl-react-home-cn .hhl-wpb-bcorp-column > .vc_column-inner > .wpb_wrapper {
    grid-template-columns: 62px minmax(0, 1fr);
    column-gap: 14px;
    row-gap: 4px;
  }

  .hhl-react-home-cn .hhl-bcorp-logo {
    width: 58px !important;
    max-height: 84px;
    margin-bottom: 0;
    padding: 0;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
  }

  .hhl-react-home-cn .hhl-react-bcorp h2 {
    margin: 2px 0;
    font-size: 14px !important;
  }

  .hhl-react-home-cn .hhl-react-bcorp p,
  .hhl-react-home-cn .hhl-react-bcorp .hhl-react-mini {
    font-size: 11px !important;
    line-height: 1.38;
  }

  .hhl-react-home-cn .hhl-bcorp-link {
    margin-top: 4px;
  }

  .hhl-data-grid,
  .hhl-react-home-cn .hhl-react-product-grid {
    grid-template-columns: 1fr;
  }

  .hhl-data-grid > .row_col_wrap_12_inner,
  .hhl-react-home-cn .hhl-react-product-grid > .row_col_wrap_12_inner,
  .hhl-react-home-cn .hhl-react-principles > .row_col_wrap_12_inner {
    grid-template-columns: 1fr;
  }

  .hhl-data-grid .hhl-data-primary {
    grid-column: auto;
  }

  .hhl-data-grid article {
    min-height: auto;
    padding: 22px;
  }

  .hhl-data-grid strong {
    font-size: 34px;
  }

  .hhl-react-home-cn .hhl-react-project-head h2,
  .hhl-react-home-cn .hhl-react-products-head h2,
  .hhl-react-home-cn .hhl-data-head h2,
  .hhl-react-home-cn .hhl-react-ad-system h3,
  .hhl-react-home-cn .hhl-react-vision h2,
  .hhl-react-home-cn .hhl-react-inquiries h2 {
    font-size: var(--hhl-type-display) !important;
  }

  .hhl-react-home-cn .hhl-react-ad-system h3 {
    max-width: 340px;
    line-height: 1.18;
  }

  .hhl-react-home-cn .hhl-react-ad-system {
    grid-template-columns: 1fr !important;
  }

  .hhl-react-home-cn .hhl-react-ad-system > .row_col_wrap_12_inner {
    grid-template-columns: 1fr !important;
  }

  .hhl-react-home-cn .hhl-react-ad-system figure {
    min-height: 236px;
  }

  .hhl-react-home-cn .hhl-react-ad-system figcaption {
    font-size: 36px !important;
  }

  .hhl-wpb-block-interlude > .row_col_wrap_12,
  .hhl-wpb-block-interlude > .row_col_wrap_12 > .wpb_column,
  .hhl-wpb-block-interlude > .row_col_wrap_12 > .wpb_column > .vc_column-inner,
  .hhl-wpb-block-interlude > .row_col_wrap_12 > .wpb_column > .vc_column-inner > .wpb_wrapper {
    min-height: 420px;
    height: 68vh;
  }

  .hhl-wpb-vision-footer > .row_col_wrap_12_inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 690px) {
  .hhl-index-hero {
    min-height: 74vh;
  }

  .hhl-index-hero-inner {
    width: 100%;
    min-height: 74vh;
    padding: 78px 28px 40px 42px;
  }

  .hhl-index-hero h1 {
    margin-top: 12px;
    max-width: 288px;
    font-size: 38px;
    line-height: 1.08;
  }

  .hhl-index-hero-lead {
    max-width: 288px;
    font-size: 15px;
    line-height: 1.62;
  }

  .hhl-index-hero .hhl-index-kicker {
    max-width: 280px;
    font-size: 11px;
    line-height: 1.35;
  }

  .hhl-index-actions {
    margin-top: 26px;
  }

  .hhl-index-btn {
    width: 100%;
  }

  .hhl-index-hero-proof {
    margin-top: 36px;
    font-size: 12px;
  }

  .hhl-index-hero-proof span {
    width: 100%;
    padding-right: 0;
    border-right: 0;
  }

  .hhl-index-editorial-line p {
    font-size: 18px;
  }

  .hhl-index-inline-photo {
    width: 88px;
  }

  .hhl-index-chain-grid article,
  .hhl-index-product-rail a,
  .hhl-index-trust div {
    min-height: auto;
    padding: 22px;
  }

  .hhl-index-chain-grid h3 {
    font-size: 24px;
  }
}
