.jlh-home-shell {
  width: min(1260px, calc(100% - 3rem));
  margin: 0 auto;
}

.jlh-homepage-main {
  margin-top: calc(var(--jleh-header-offset-desktop, 61px) * -1);
}

.jlh-home-hero {
  position: relative;
  padding: clamp(2.8rem, 6vw, 5.5rem) 0 clamp(2rem, 4vw, 4rem);
  color: #1a1814;
  overflow: clip;
}

.jlh-home-hero,
.jlh-home-hero * {
  box-sizing: border-box;
}

.jlh-home-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 1fr);
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
}

.jlh-home-hero__copy {
  max-width: 540px;
}

.jlh-home-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.9rem;
  color: #c8922a;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.jlh-home-eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: linear-gradient(90deg, #c8922a, rgba(200, 146, 42, 0.25));
}

.jlh-home-hero h1 {
  margin: 0 0 1.2rem;
  font-size: clamp(2.7rem, 5.3vw, 4.9rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #1a1814;
}

.jlh-home-hero h1 em {
  color: #c8922a;
  font-style: italic;
}

.jlh-home-hero__lead,
.jlh-home-hero__sublead {
  margin: 0;
  max-width: 430px;
  line-height: 1.72;
}

.jlh-home-hero__lead {
  font-size: 1rem;
  color: #5a5650;
}

.jlh-home-hero__sublead {
  margin-top: 0.55rem;
  font-size: 0.86rem;
  color: #8d877f;
}

.jlh-home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.6rem;
}

.jlh-home-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 1.6rem;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: transform 220ms ease, box-shadow 220ms ease, background-color 220ms ease, border-color 220ms ease;
}

.jlh-home-btn:hover,
.jlh-home-btn:focus-visible {
  transform: translateY(-2px);
}

.jlh-home-btn--primary {
  background: #c8922a;
  color: #fff;
  box-shadow: 0 8px 22px rgba(200, 146, 42, 0.28);
}

.jlh-home-btn--primary:hover,
.jlh-home-btn--primary:focus-visible {
  background: #b07a1e;
}

.jlh-home-btn--ghost {
  background: rgba(255, 252, 245, 0.84);
  color: #1a1814;
  border-color: rgba(200, 146, 42, 0.26);
  backdrop-filter: blur(6px);
}

.jlh-home-btn--ghost:hover,
.jlh-home-btn--ghost:focus-visible {
  border-color: #c8922a;
  background: #fff;
}

.jlh-home-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.7rem;
}

.jlh-home-hero__trust span,
.jlh-home-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.jlh-home-hero__trust span {
  color: #5a5650;
  font-size: 0.77rem;
}

.jlh-home-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex: 0 0 auto;
  background: #e8b44a;
}

.jlh-home-hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
}

.jlh-home-hero__orb {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 180, 74, 0.16) 0%, rgba(245, 228, 190, 0.04) 65%, transparent 100%);
  animation: jlh-home-pulse 5.5s ease-in-out infinite;
}

.jlh-home-hero__image {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 500px;
  filter: drop-shadow(0 28px 28px rgba(26, 24, 20, 0.11));
  animation: jlh-home-float 7s ease-in-out infinite;
}

.jlh-home-hero__stats {
  position: absolute;
  left: -34px;
  top: 50%;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  transform: translateY(-50%);
}

.jlh-home-stat,
.jlh-home-chip {
  border: 1px solid rgba(200, 146, 42, 0.22);
  background: rgba(255, 252, 245, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 22px rgba(26, 24, 20, 0.08);
}

.jlh-home-stat {
  min-width: 72px;
  padding: 0.75rem 0.95rem;
  border-radius: 20px;
  text-align: center;
}

.jlh-home-stat__num {
  display: block;
  color: #c8922a;
  font-size: 1.45rem;
  line-height: 1;
}

.jlh-home-stat__label {
  display: block;
  margin-top: 4px;
  color: #5a5650;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.jlh-home-chip {
  position: absolute;
  z-index: 3;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  color: #1a1814;
  font-size: 0.72rem;
  font-weight: 700;
}

.jlh-home-chip--top {
  top: 10%;
  left: 2%;
  animation: jlh-home-drift-a 8s ease-in-out infinite;
}

.jlh-home-chip--bottom {
  right: 1%;
  bottom: 12%;
  animation: jlh-home-drift-b 9s ease-in-out infinite;
}

.jlh-home-reveal {
  opacity: 1;
  transform: none;
}

html.jlh-home-has-motion .jlh-home-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

html.jlh-home-has-motion .jlh-home-reveal.is-visible {
  opacity: 1;
  transform: none;
}

.jlh-home-latest {
  position: relative;
  padding: 0 0 clamp(3rem, 6vw, 5rem);
}

.jlh-home-latest__frame {
  position: relative;
  padding: clamp(1.5rem, 3.2vw, 2.6rem);
  border: 1px solid rgba(200, 146, 42, 0.14);
  border-radius: 38px;
  background:
    radial-gradient(circle at top right, rgba(232, 180, 74, 0.12), transparent 28%),
    radial-gradient(circle at left center, rgba(214, 188, 135, 0.08), transparent 26%),
    linear-gradient(180deg, rgba(254, 251, 244, 0.99) 0%, rgba(245, 238, 224, 0.97) 100%);
  box-shadow:
    0 28px 60px rgba(26, 24, 20, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  overflow: hidden;
}

.jlh-home-latest__frame::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 146, 42, 0.7), transparent);
  opacity: 0.7;
}

.jlh-home-latest__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.75rem;
  align-items: start;
  margin-bottom: 2rem;
}

.jlh-home-latest__intro {
  max-width: 640px;
}

.jlh-home-latest__intro h2 {
  margin: 0 0 0.7rem;
  font-size: clamp(2rem, 3.4vw, 2.85rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: #1a1814;
}

.jlh-home-latest__intro p {
  margin: 0;
  max-width: 52ch;
  color: #5a5650;
  line-height: 1.72;
}

.jlh-home-latest__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-items: center;
  justify-content: flex-end;
}

.jlh-home-latest__catalog {
  padding-top: 1.25rem;
  border-top: 1px solid rgba(200, 146, 42, 0.14);
}

.jlh-home-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(200, 146, 42, 0.2);
  background: rgba(255, 249, 238, 0.92);
  color: #8f6616;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.jlh-home-pill--soft {
  border-color: rgba(200, 146, 42, 0.14);
  background: rgba(245, 237, 221, 0.86);
  color: #6e6459;
}

.jlh-home-latest__catalog .woocommerce {
  width: 100%;
}

.jlh-home-latest__catalog .woocommerce-result-count,
.jlh-home-latest__catalog .woocommerce-ordering {
  display: none;
}

.jlh-home-latest__catalog ul.products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
  margin: 0;
  padding: 0;
  align-items: stretch;
}

.jlh-home-latest__catalog ul.products::before,
.jlh-home-latest__catalog ul.products::after {
  display: none;
}

.jlh-home-latest__catalog ul.products li.product {
  position: relative;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  float: none !important;
  width: 100% !important;
  max-width: none !important;
  min-width: 0;
  margin: 0 !important;
  padding: 0;
  list-style: none;
  justify-self: stretch;
  align-self: stretch;
  border: 1px solid rgba(200, 146, 42, 0.14);
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(249, 243, 231, 0.96) 100%);
  box-shadow:
    0 16px 34px rgba(26, 24, 20, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
  overflow: hidden;
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.jlh-home-latest__catalog ul.products li.product:hover,
.jlh-home-latest__catalog ul.products li.product:focus-within {
  transform: translateY(-5px);
  border-color: rgba(200, 146, 42, 0.24);
  box-shadow:
    0 22px 38px rgba(26, 24, 20, 0.085),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.jlh-home-latest__catalog ul.products li.product > a.woocommerce-LoopProduct-link {
  display: grid;
  grid-template-rows: auto auto 1fr;
  align-content: start;
  min-width: 0;
  padding: 1rem 1rem 0;
  text-decoration: none;
  color: inherit;
}

.jlh-home-latest__catalog ul.products li.product a img {
  width: 100%;
  max-width: none;
  margin: 0;
  border-radius: 26px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.72), transparent 44%),
    linear-gradient(180deg, #fdf7ec 0%, #eee2cb 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.jlh-home-latest__catalog .onsale {
  top: 1rem !important;
  left: 1rem !important;
  right: auto !important;
  min-width: 0;
  min-height: 32px;
  margin: 0 !important;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 247, 230, 0.96);
  color: #8f6616;
  border: 1px solid rgba(200, 146, 42, 0.22);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(200, 146, 42, 0.1);
  z-index: 2;
}

.jlh-home-latest__catalog .woocommerce-loop-product__title {
  padding: 1.15rem 0 0;
  font-size: 1.04rem;
  font-weight: 400;
  line-height: 1.3;
  color: #1a1814;
  min-height: 4.35rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.jlh-home-latest__catalog .price {
  display: block;
  padding: 0.55rem 0 0;
  color: #1a1814;
  font-size: 0.98rem;
  font-weight: 700;
}

.jlh-home-latest__catalog .price del {
  opacity: 0.42;
  margin-right: 0.45rem;
  color: #8e867b;
}

.jlh-home-latest__catalog .price ins {
  color: #b07a1e;
  text-decoration: none;
  font-weight: 700;
}

.jlh-home-latest__catalog .star-rating {
  margin: 0.55rem 1.2rem 0;
  color: #c8922a;
}

.jlh-home-latest__catalog .button,
.jlh-home-latest__catalog li.product > .button,
.jlh-home-latest__catalog .added_to_cart,
.jlh-home-latest__catalog li.product > .added_to_cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  max-width: calc(100% - 2.2rem);
  min-height: 42px;
  margin: 0.9rem 1.1rem 1.1rem !important;
  padding: 0.1rem 1.15rem 0 !important;
  border-radius: 999px;
  border: 1px solid rgba(200, 146, 42, 0.22);
  background: linear-gradient(180deg, rgba(255, 251, 244, 0.98) 0%, rgba(244, 234, 214, 0.98) 100%);
  color: #6e4d11;
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  text-align: center;
  vertical-align: middle;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    0 8px 16px rgba(26, 24, 20, 0.05);
  transition: transform 220ms ease, background-color 220ms ease, border-color 220ms ease, box-shadow 220ms ease, color 220ms ease;
}

.jlh-home-latest__catalog .button:hover,
.jlh-home-latest__catalog .button:focus-visible,
.jlh-home-latest__catalog li.product > .button:hover,
.jlh-home-latest__catalog li.product > .button:focus-visible,
.jlh-home-latest__catalog .added_to_cart:hover,
.jlh-home-latest__catalog .added_to_cart:focus-visible,
.jlh-home-latest__catalog li.product > .added_to_cart:hover,
  .jlh-home-latest__catalog li.product > .added_to_cart:focus-visible {
  transform: translateY(-2px);
  background: linear-gradient(180deg, #d1a244 0%, #b8831d 100%);
  color: #fffaf2;
  border-color: #b8831d;
  box-shadow: 0 14px 24px rgba(200, 146, 42, 0.2);
}

.jlh-home-latest__catalog .added_to_cart {
  background: linear-gradient(180deg, rgba(247, 239, 223, 1) 0%, rgba(241, 230, 208, 1) 100%);
}

.jlh-home-categories {
  position: relative;
  padding: 0 0 clamp(2.8rem, 5vw, 4.8rem);
}

.jlh-home-categories__head {
  max-width: 680px;
  margin-bottom: 2rem;
}

.jlh-home-categories__head h2 {
  margin: 0 0 0.7rem;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #1a1814;
}

.jlh-home-categories__head p {
  margin: 0;
  max-width: 56ch;
  color: #5a5650;
  line-height: 1.72;
}

.jlh-home-category-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1.25rem;
}

.jlh-home-category-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding: 1.45rem;
  border: 1px solid rgba(200, 146, 42, 0.14);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 252, 246, 0.92) 0%, rgba(247, 241, 229, 0.88) 100%);
  box-shadow:
    0 16px 34px rgba(26, 24, 20, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.76);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: transform 280ms ease, box-shadow 280ms ease, border-color 280ms ease;
}

.jlh-home-category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200, 146, 42, 0.06), rgba(232, 180, 74, 0.02));
  opacity: 0;
  transition: opacity 260ms ease;
  pointer-events: none;
}

.jlh-home-category-card:hover,
.jlh-home-category-card:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(200, 146, 42, 0.28);
  box-shadow:
    0 24px 48px rgba(26, 24, 20, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.jlh-home-category-card:hover::after,
.jlh-home-category-card:focus-visible::after {
  opacity: 1;
}

.jlh-home-category-card--feature {
  grid-column: span 6;
}

.jlh-home-category-card--normal {
  grid-column: span 4;
}

.jlh-home-category-card--slim {
  grid-column: span 3;
}

.jlh-home-category-card__image {
  display: block;
  width: 100%;
  max-width: 180px;
  height: auto;
  margin: 0 auto 0.35rem;
  filter: drop-shadow(0 10px 20px rgba(26, 24, 20, 0.09));
  transition: transform 320ms ease;
}

.jlh-home-category-card__image--large {
  max-width: 240px;
}

.jlh-home-category-card:hover .jlh-home-category-card__image,
.jlh-home-category-card:focus-visible .jlh-home-category-card__image {
  transform: scale(1.04) translateY(-3px);
}

.jlh-home-category-card h3 {
  margin: 0;
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  line-height: 1.18;
  color: #1a1814;
}

.jlh-home-category-card p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.7;
  color: #5a5650;
}

.jlh-home-category-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
}

.jlh-home-category-card__chips .jlh-home-pill {
  min-height: 28px;
  padding: 0 0.7rem;
  font-size: 0.65rem;
}

.jlh-home-category-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding-top: 0.45rem;
  color: #9c6f17;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.jlh-home-category-card__arrow {
  display: inline-block;
  transition: transform 240ms ease;
}

.jlh-home-category-card:hover .jlh-home-category-card__arrow,
.jlh-home-category-card:focus-visible .jlh-home-category-card__arrow {
  transform: translateX(5px);
}

.jlh-home-category-guidance {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 1.35rem;
  padding: 1.35rem 1.5rem;
  border: 1px solid rgba(200, 146, 42, 0.14);
  border-radius: 24px;
  background: rgba(255, 252, 246, 0.9);
  box-shadow: 0 12px 24px rgba(26, 24, 20, 0.05);
}

.jlh-home-category-guidance h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.2;
  color: #1a1814;
}

.jlh-home-category-guidance p {
  margin: 0.2rem 0 0;
  max-width: 56ch;
  font-size: 0.82rem;
  line-height: 1.65;
  color: #5a5650;
}

.jlh-home-category-guidance__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.jlh-home-custom {
  position: relative;
  padding: 0 0 clamp(3rem, 5vw, 5rem);
}

.jlh-home-custom-transition,
.jlh-home-custom-panel {
  border: 1px solid rgba(200, 146, 42, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 252, 246, 0.95) 0%, rgba(247, 241, 229, 0.92) 100%);
  box-shadow:
    0 18px 36px rgba(26, 24, 20, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.76);
}

.jlh-home-custom-transition {
  max-width: 840px;
  margin: 0 auto clamp(1.5rem, 3vw, 2.2rem);
  padding: clamp(1.35rem, 3vw, 2rem);
  border-radius: 30px;
  text-align: center;
}

.jlh-home-custom-transition h2,
.jlh-home-custom-copy h2 {
  margin: 0 0 0.8rem;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: #1a1814;
}

.jlh-home-custom-transition p,
.jlh-home-custom-copy p {
  margin: 0;
  color: #5a5650;
  line-height: 1.72;
}

.jlh-home-custom-copy p + p {
  margin-top: 0.9rem;
}

.jlh-home-custom-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.9fr);
  gap: 1.35rem;
  align-items: stretch;
}

.jlh-home-custom-copy {
  padding: clamp(1.55rem, 3vw, 2.3rem);
  border-radius: 34px;
  border: 1px solid rgba(200, 146, 42, 0.14);
  background:
    radial-gradient(circle at top right, rgba(232, 180, 74, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 252, 246, 0.98) 0%, rgba(245, 238, 224, 0.96) 100%);
  box-shadow:
    0 22px 44px rgba(26, 24, 20, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.jlh-home-custom-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.25rem;
}

.jlh-home-custom-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.35rem;
}

.jlh-home-custom-panel {
  padding: clamp(1.35rem, 3vw, 1.9rem);
  border-radius: 34px;
}

.jlh-home-custom-steps {
  display: grid;
  gap: 0.9rem;
  margin-top: 1rem;
}

.jlh-home-custom-step {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.9rem;
  align-items: start;
  padding: 0.95rem 0;
  border-top: 1px solid rgba(200, 146, 42, 0.1);
}

.jlh-home-custom-step:first-child {
  padding-top: 0.35rem;
  border-top: 0;
}

.jlh-home-custom-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(200, 146, 42, 0.18);
  background: rgba(255, 249, 238, 0.95);
  color: #9c6f17;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.jlh-home-custom-step h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  line-height: 1.3;
  color: #1a1814;
}

.jlh-home-custom-step p {
  margin: 0;
  color: #5a5650;
  font-size: 0.86rem;
  line-height: 1.68;
}

.jlh-home-story {
  position: relative;
  padding: 0 0 clamp(3rem, 5vw, 5rem);
}

.jlh-home-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.9fr);
  gap: 1.35rem;
  align-items: stretch;
}

.jlh-home-story-main,
.jlh-home-story-card {
  border: 1px solid rgba(200, 146, 42, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 252, 246, 0.98) 0%, rgba(245, 238, 224, 0.95) 100%);
  box-shadow:
    0 20px 42px rgba(26, 24, 20, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.jlh-home-story-main {
  padding: clamp(1.6rem, 3vw, 2.5rem);
  border-radius: 34px;
}

.jlh-home-story-main h2 {
  margin: 0 0 0.9rem;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: #1a1814;
}

.jlh-home-story-main p {
  margin: 0;
  color: #5a5650;
  line-height: 1.75;
}

.jlh-home-story-main p + p {
  margin-top: 0.9rem;
}

.jlh-home-story-quote {
  margin-top: 1.25rem;
  padding: 1.15rem 1.2rem;
  border-radius: 24px;
  border: 1px solid rgba(200, 146, 42, 0.12);
  background: rgba(255, 249, 238, 0.86);
}

.jlh-home-story-quote blockquote {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.5;
  color: #1f1b16;
}

.jlh-home-story-quote cite {
  display: block;
  margin-top: 0.7rem;
  color: #8f6616;
  font-size: 0.8rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.jlh-home-story-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.3rem;
}

.jlh-home-story-aside {
  display: grid;
  gap: 1rem;
}

.jlh-home-story-card {
  padding: 1.2rem 1.2rem 1.15rem;
  border-radius: 28px;
}

.jlh-home-story-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 0.8rem;
  border-radius: 50%;
  border: 1px solid rgba(200, 146, 42, 0.18);
  background: rgba(255, 249, 238, 0.95);
  color: #9c6f17;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.jlh-home-story-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
  line-height: 1.32;
  color: #1a1814;
}

.jlh-home-story-card p {
  margin: 0;
  color: #5a5650;
  font-size: 0.86rem;
  line-height: 1.68;
}

.jlh-home-dealership {
  position: relative;
  padding: 0 0 clamp(3rem, 5vw, 5rem);
}

.jlh-home-dealership-head {
  max-width: 760px;
  margin-bottom: 1.5rem;
}

.jlh-home-dealership-head h2 {
  margin: 0 0 0.8rem;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: #1a1814;
}

.jlh-home-dealership-head p,
.jlh-home-dealership-copy p,
.jlh-home-dealership-point p {
  margin: 0;
  color: #5a5650;
  line-height: 1.72;
}

.jlh-home-dealership-copy p + p {
  margin-top: 0.9rem;
}

.jlh-home-dealership-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
  gap: 1.2rem;
  padding: clamp(1.4rem, 3vw, 2rem);
  border-radius: 34px;
  border: 1px solid rgba(200, 146, 42, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 252, 246, 0.98) 0%, rgba(245, 238, 224, 0.95) 100%);
  box-shadow:
    0 20px 42px rgba(26, 24, 20, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.jlh-home-dealership-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.jlh-home-dealership-actions {
  margin-top: 1.15rem;
}

.jlh-home-dealership-points {
  display: grid;
  gap: 0.9rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.jlh-home-dealership-point {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.75rem;
  align-items: start;
  padding: 1rem 1rem 0.95rem;
  border-radius: 22px;
  border: 1px solid rgba(200, 146, 42, 0.12);
  background: rgba(255, 249, 238, 0.72);
}

.jlh-home-dealership-point__dot {
  width: 10px;
  height: 10px;
  margin-top: 0.35rem;
  border-radius: 50%;
  background: linear-gradient(180deg, #d1a244 0%, #b8831d 100%);
  box-shadow: 0 0 0 6px rgba(200, 146, 42, 0.08);
}

.jlh-home-projects {
  position: relative;
  padding: 0 0 clamp(3rem, 5vw, 5rem);
}

.jlh-home-projects-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
  gap: 1.35rem;
  align-items: start;
}

.jlh-home-projects-copy h2,
.jlh-home-final-cta__panel h2 {
  margin: 0 0 0.8rem;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #1a1814;
}

.jlh-home-projects-copy p,
.jlh-home-project-card p,
.jlh-home-final-cta__panel p {
  margin: 0;
  color: #5a5650;
  line-height: 1.72;
}

.jlh-home-projects-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.jlh-home-projects-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.8rem;
  align-items: start;
  padding: 0.9rem 1rem;
  border-radius: 22px;
  border: 1px solid rgba(200, 146, 42, 0.12);
  background: rgba(255, 249, 238, 0.72);
}

.jlh-home-projects-item__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(200, 146, 42, 0.18);
  background: rgba(255, 249, 238, 0.95);
  color: #9c6f17;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.jlh-home-projects-item strong,
.jlh-home-projects-item span {
  display: block;
}

.jlh-home-projects-item strong {
  color: #1a1814;
  font-size: 0.95rem;
}

.jlh-home-projects-item span {
  margin-top: 0.18rem;
  color: #5a5650;
  font-size: 0.82rem;
  line-height: 1.6;
}

.jlh-home-projects-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.3rem;
}

.jlh-home-projects-cards {
  display: grid;
  gap: 1rem;
}

.jlh-home-project-card,
.jlh-home-final-cta__panel {
  border: 1px solid rgba(200, 146, 42, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 252, 246, 0.98) 0%, rgba(245, 238, 224, 0.95) 100%);
  box-shadow:
    0 20px 42px rgba(26, 24, 20, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.jlh-home-project-card {
  padding: 1.2rem 1.2rem 1.1rem;
  border-radius: 28px;
}

.jlh-home-project-card__tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(200, 146, 42, 0.16);
  background: rgba(255, 249, 238, 0.92);
  color: #8f6616;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.jlh-home-project-card h3 {
  margin: 0.8rem 0 0.45rem;
  font-size: 1.1rem;
  line-height: 1.3;
  color: #1a1814;
}

.jlh-home-project-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.jlh-home-final-cta {
  position: relative;
  padding: 0 0 clamp(3.5rem, 6vw, 5.5rem);
}

.jlh-home-final-cta__panel {
  padding: clamp(1.6rem, 4vw, 2.6rem);
  border-radius: 34px;
  text-align: center;
}

.jlh-home-final-cta__panel .jlh-home-eyebrow {
  justify-content: center;
}

.jlh-home-final-cta__panel p + p {
  margin-top: 0.8rem;
}

.jlh-home-final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 1.35rem;
}

.jlh-home-final-cta__seo {
  max-width: 900px;
  margin: 1.35rem auto 0 !important;
  color: #7a746c !important;
  font-size: 0.8rem;
  line-height: 1.7 !important;
}

@keyframes jlh-home-pulse {
  0%, 100% { transform: scale(1); opacity: 0.82; }
  50% { transform: scale(1.07); opacity: 1; }
}

@keyframes jlh-home-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-13px); }
}

@keyframes jlh-home-drift-a {
  0%, 100% { transform: translate(0, 0); }
  40% { transform: translate(5px, -8px); }
  70% { transform: translate(-4px, -3px); }
}

@keyframes jlh-home-drift-b {
  0%, 100% { transform: translate(0, 0); }
  40% { transform: translate(-6px, 5px); }
  70% { transform: translate(3px, -4px); }
}

@media (max-width: 980px) {
  .jlh-home-hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .jlh-home-hero__copy,
  .jlh-home-hero__lead,
  .jlh-home-hero__sublead {
    max-width: none;
  }

  .jlh-home-eyebrow,
  .jlh-home-hero__actions,
  .jlh-home-hero__trust {
    justify-content: center;
  }

  .jlh-home-hero__visual {
    min-height: 310px;
  }

  .jlh-home-hero__stats,
  .jlh-home-chip {
    display: none;
  }

  .jlh-home-latest__header {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .jlh-home-latest__meta {
    justify-content: flex-start;
  }

  .jlh-home-latest__catalog ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .jlh-home-category-card--feature,
  .jlh-home-category-card--normal,
  .jlh-home-category-card--slim {
    grid-column: span 6;
  }

  .jlh-home-custom-grid {
    grid-template-columns: 1fr;
  }

  .jlh-home-story-grid {
    grid-template-columns: 1fr;
  }

  .jlh-home-dealership-panel {
    grid-template-columns: 1fr;
  }

  .jlh-home-projects-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .jlh-home-shell {
    width: min(100% - 1.5rem, 1260px);
  }

  .jlh-homepage-main {
    margin-top: calc(var(--jleh-header-offset-mobile, 41px) * -1);
  }

  .jlh-home-hero {
    padding-top: 2.2rem;
  }

  .jlh-home-hero__actions {
    flex-direction: column;
  }

  .jlh-home-btn {
    width: 100%;
  }

  .jlh-home-latest__frame {
    padding: 1rem;
    border-radius: 26px;
  }

  .jlh-home-latest__meta {
    justify-content: flex-start;
    gap: 0.5rem;
  }

  .jlh-home-latest__meta .jlh-home-btn {
    width: auto;
    min-height: 40px;
    padding-inline: 1rem;
  }

  .jlh-home-latest__intro h2 {
    font-size: 1.65rem;
  }

  .jlh-home-latest__intro p {
    font-size: 0.92rem;
    line-height: 1.62;
  }

  .jlh-home-latest__catalog ul.products {
    display: flex;
    gap: 0.85rem;
    overflow-x: auto;
    padding: 0 0 0.2rem;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  .jlh-home-latest__catalog ul.products::-webkit-scrollbar {
    display: none;
  }

  .jlh-home-latest__catalog ul.products li.product {
    flex: 0 0 min(82vw, 290px);
    scroll-snap-align: start;
  }

  .jlh-home-latest__catalog ul.products li.product a img {
    border-radius: 22px;
  }

  .jlh-home-latest__catalog .woocommerce-loop-product__title {
    min-height: 3.5rem;
    -webkit-line-clamp: 2;
  }

  .jlh-home-latest__catalog .button,
  .jlh-home-latest__catalog li.product > .button,
  .jlh-home-latest__catalog .added_to_cart,
  .jlh-home-latest__catalog li.product > .added_to_cart {
    width: auto;
    max-width: calc(100% - 1.8rem);
    min-height: 40px;
    margin: 0.85rem 0.9rem 0.9rem !important;
    padding: 0.08rem 1rem 0 !important;
    font-size: 0.69rem;
    letter-spacing: 0.12em;
  }

  .jlh-home-category-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .jlh-home-category-card--feature,
  .jlh-home-category-card--normal,
  .jlh-home-category-card--slim {
    grid-column: auto;
  }

  .jlh-home-category-guidance {
    padding: 1.2rem;
  }

  .jlh-home-category-guidance__actions {
    width: 100%;
    flex-direction: column;
  }

  .jlh-home-custom-transition,
  .jlh-home-custom-copy,
  .jlh-home-custom-panel {
    border-radius: 24px;
  }

  .jlh-home-custom-actions {
    flex-direction: column;
  }

  .jlh-home-custom-actions .jlh-home-btn {
    width: 100%;
  }

  .jlh-home-custom-step {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  .jlh-home-story-main,
  .jlh-home-story-card {
    border-radius: 24px;
  }

  .jlh-home-story-quote {
    border-radius: 20px;
  }

  .jlh-home-dealership-panel,
  .jlh-home-dealership-point {
    border-radius: 24px;
  }

  .jlh-home-dealership-actions .jlh-home-btn {
    width: 100%;
  }

  .jlh-home-project-card,
  .jlh-home-final-cta__panel,
  .jlh-home-projects-item {
    border-radius: 24px;
  }

  .jlh-home-projects-actions,
  .jlh-home-final-cta__actions {
    flex-direction: column;
  }

  .jlh-home-projects-actions .jlh-home-btn,
  .jlh-home-final-cta__actions .jlh-home-btn {
    width: 100%;
  }
}
