/* ============================================================
   LENO FOOTWEAR — Homepage CSS (from lenofootwear-upgraded.html)
   ============================================================ */

/* ── Variables ──────────────────────────────────────────── */
.lp-wrap {
  --cream:      #F5F0E8;
  --warm-white: #FAF8F4;
  --charcoal:   #1C1C1C;
  --taupe:      #8B7D6B;
  --gold:       #C4A96A;
  --light-gold: #E8D9B5;
  --stone:      #D4C9B8;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Tenor Sans', 'Helvetica Neue', sans-serif;
}

/* ── Astra layout reset ─────────────────────────────────── */
.leno-hp #content,
.leno-hp .site-content,
.leno-hp #primary,
.leno-hp .ast-container,
.leno-hp .content-area,
.leno-hp #main {
  padding: 0 !important;
  margin: 0 !important;
  max-width: 100% !important;
  width: 100% !important;
  float: none !important;
}

/* ── Wrapper ────────────────────────────────────────────── */
.lp-wrap {
  font-family: var(--font-sans);
  background: var(--warm-white);
  color: var(--charcoal);
  overflow-x: hidden;
}

.lp-wrap *, .lp-wrap *::before, .lp-wrap *::after {
  box-sizing: border-box;
}

/* ── Fade-in ────────────────────────────────────────────── */
.lp-fade {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.lp-fade.lp-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Shared typography & tags ───────────────────────────── */
.lp-section-tag {
  font-size: 18px;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans);
}
.lp-section-tag::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}
.lp-tag-center { justify-content: center; }

.lp-section-title {
  font-family: var(--font-serif) !important;
  font-size: clamp(36px, 3.5vw, 52px) !important;
  font-weight: 300 !important;
  line-height: 1.15 !important;
  margin-bottom: 28px !important;
  letter-spacing: -0.01em !important;
  color: var(--charcoal) !important;
}
.lp-section-title em  { font-style: italic; color: var(--taupe); }
.lp-title-sm          { font-size: clamp(32px, 3vw, 46px) !important; }
.lp-title-light       { color: var(--warm-white) !important; }
.lp-title-light em    { color: var(--light-gold); }

.lp-section-text {
  font-size: 14px;
  line-height: 1.85;
  color: var(--taupe);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
  font-family: var(--font-sans);
}
.lp-text-narrow { max-width: 380px; }

/* ── Buttons ────────────────────────────────────────────── */
.lp-btn-primary {
  display: inline-block;
  background: var(--charcoal);
  color: var(--warm-white) !important;
  padding: 14px 36px;
  font-size: 11px !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  font-family: var(--font-sans) !important;
  transition: background 0.3s;
  border: none;
}
.lp-btn-primary:hover {
  background: var(--taupe) !important;
  color: var(--warm-white) !important;
}
.lp-btn-left { align-self: flex-start; }

.lp-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--charcoal) !important;
  font-size: 11px !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  font-family: var(--font-sans) !important;
  transition: gap 0.3s;
}
.lp-btn-ghost::after { content: '→'; }
.lp-btn-ghost:hover  { gap: 18px; color: var(--charcoal) !important; }

/* ═══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
.lp-hero {
  height: 100vh;
  min-height: 600px;
  display: grid;
  grid-template-columns: 9fr 10fr;
  position: relative;
  overflow: hidden;
}

.lp-hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 0 80px 80px;
  position: relative;
  z-index: 2;
}

.lp-hero-tag {
  font-size: 18px;
  letter-spacing: 0.18em;
  line-height: 1.6;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 36px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans);
}
.lp-hero-tag::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.lp-hero-title {
  font-family: var(--font-serif) !important;
  font-size: clamp(28px, 2.9vw, 42px) !important;
  font-weight: 300 !important;
  line-height: 1.2 !important;
  letter-spacing: 0 !important;
  margin-bottom: 52px !important;
  color: var(--charcoal) !important;
  font-style: normal !important;
}

.lp-hero-values {
  display: flex;
  align-items: center;
  margin: 0 0 36px !important;
  padding: 0 !important;
  font-size: 16px;
  letter-spacing: 0.16em;
  line-height: 1.6;
  text-transform: uppercase;
  color: var(--charcoal);
  font-family: var(--font-sans);
  font-weight: 400;
  white-space: nowrap;
}
.lp-val-sep {
  margin: 0 14px;
  color: var(--stone);
  font-style: normal;
  letter-spacing: 0;
}

.lp-hero-support {
  font-size: 16px;
  line-height: 1.8;
  color: var(--taupe);
  width: auto;
  max-width: none;
  white-space: nowrap;
  display: block;
  margin-bottom: 44px;
  letter-spacing: 0.04em;
  font-family: var(--font-sans);
}

.lp-hero-actions {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.lp-hero-right {
  position: relative;
  background: var(--warm-white);
  padding: 28px 40px 28px 0;
  display: flex;
  align-items: stretch;
}

.lp-hero-img-wrap {
  position: relative;
  flex: 1;
  overflow: hidden;
  background: var(--warm-white);
}
.lp-hero-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(250,248,244,0.10) 0%,
    transparent 30%,
    transparent 72%,
    rgba(250,248,244,0.08) 100%
  );
  pointer-events: none;
  z-index: 1;
}
.lp-hero-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  filter: brightness(1.04) contrast(0.96) saturate(0.90);
  transition: transform 7s ease;
  display: block;
}
.lp-hero-img-wrap:hover .lp-hero-img { transform: scale(1.015); }

.lp-hero-slogan {
  position: absolute;
  bottom: 28px;
  right: 36px;
  z-index: 2;
  font-family: var(--font-serif);
  font-size: 25px;
  font-style: italic;
  font-weight: 400;
  color: #8A8176;
  opacity: 1;
  letter-spacing: 0;
  line-height: 1.2;
  text-align: right;
  white-space: nowrap;
  pointer-events: none;
}

/* ═══════════════════════════════════════════════
   MARQUEE
═══════════════════════════════════════════════ */
.lp-marquee-wrap {
  background: var(--charcoal);
  padding: 16px 0;
  overflow: hidden;
}
.lp-marquee-track {
  display: flex;
  gap: 60px;
  animation: lp-marquee 22s linear infinite;
  white-space: nowrap;
}
.lp-marquee-item {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--stone);
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
  font-family: var(--font-sans);
}
.lp-marquee-item::after {
  content: '✦';
  color: var(--gold);
  font-size: 8px;
}
@keyframes lp-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════ */
.lp-about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 120px 0;
}
.lp-about-img-wrap {
  position: relative;
  overflow: hidden;
  height: 580px;
}
.lp-about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.lp-about-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(196,169,106,0.12), transparent);
}
.lp-about-content {
  padding: 80px 80px 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lp-feature-list {
  list-style: none !important;
  margin: 32px 0 !important;
  padding: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.lp-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--charcoal);
  font-family: var(--font-sans);
  line-height: 1.6;
}
.lp-feature-list li::before {
  content: '' !important;
  display: block;
  width: 20px;
  height: 1px;
  background: var(--gold);
  margin-top: 8px;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════
   GALLERY
═══════════════════════════════════════════════ */
.lp-gallery {
  padding: 100px 80px;
  background: var(--cream);
}
.lp-gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
}
.lp-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 310px 310px;
  gap: 12px;
}
.lp-gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: #FAF7F2;
  border: 1px solid rgba(210, 195, 175, 0.35);
  border-radius: 3px;
  box-shadow: 0 2px 16px rgba(60, 45, 30, 0.08);
  transition: box-shadow 0.3s ease;
}
.lp-gallery-item:hover {
  box-shadow: 0 3px 22px rgba(60, 45, 30, 0.12);
}
.lp-gallery-item:first-child { grid-row: span 2; }
.lp-gallery-item:nth-child(4) .lp-gallery-img {
  transform: scale(1.15);
  object-position: center center;
  filter: contrast(1.06) brightness(0.97);
}
.lp-gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.lp-gallery-item:hover .lp-gallery-img { transform: scale(1.04); }

/* ═══════════════════════════════════════════════
   PRODUCT CAROUSEL
═══════════════════════════════════════════════ */
.lp-carousel {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.lp-carousel-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.45s ease;
}
.lp-carousel-track img {
  min-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  flex-shrink: 0;
}
.lp-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.82);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  color: #3C2D1E;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 2;
}
.lp-carousel-btn:hover { background: rgba(255,255,255,1); }
.lp-carousel-prev { left: 12px; }
.lp-carousel-next { right: 12px; }
.lp-carousel-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  z-index: 2;
}
.lp-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: background 0.2s;
}
.lp-dot.lp-dot-on { background: #fff; }

/* ═══════════════════════════════════════════════
   PROCESS
═══════════════════════════════════════════════ */
.lp-process { padding: 120px 80px; }
.lp-process-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 80px;
}
.lp-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.lp-process-step { position: relative; }
.lp-step-num {
  font-family: var(--font-serif);
  font-size: 72px;
  font-weight: 300;
  color: var(--light-gold);
  line-height: 1;
  margin-bottom: 20px;
}
.lp-step-title {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 14px;
  font-family: var(--font-sans);
}
.lp-step-text {
  font-size: 14px;
  line-height: 1.85;
  color: var(--taupe);
  letter-spacing: 0.02em;
  font-family: var(--font-sans);
}
.lp-step-line {
  position: absolute;
  top: 36px;
  left: calc(100% + 4px);
  width: calc(100% - 8px);
  height: 1px;
  background: var(--stone);
}

/* ═══════════════════════════════════════════════
   PRODUCTS
═══════════════════════════════════════════════ */
.lp-products {
  padding: 100px 80px;
}
.lp-products-header {
  text-align: center;
  margin-bottom: 64px;
}
.lp-products-header .lp-section-tag { justify-content: center; }

.lp-product-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 48px;
  border: 1px solid var(--stone);
  background: var(--warm-white);
}
.lp-product-card-rev {
  direction: rtl;
}
.lp-product-card-rev > * {
  direction: ltr;
}

.lp-prod-img {
  position: relative;
  overflow: hidden;
  background: var(--cream);
  height: 460px;
}
.lp-prod-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.lp-product-card-rev .lp-prod-img img {
  object-fit: contain;
  padding: 16px;
  box-sizing: border-box;
}
.lp-product-card:hover .lp-prod-img img { transform: scale(1.04); }

.lp-prod-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  background: var(--charcoal);
  color: var(--warm-white);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 7px 14px;
  font-family: var(--font-sans);
}

.lp-prod-content {
  padding: 48px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid var(--stone);
}
.lp-product-card-rev .lp-prod-content {
  border-left: none;
  border-right: 1px solid var(--stone);
}

.lp-prod-cat {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
}
.lp-prod-cat::before {
  content: '';
  display: block;
  width: 18px;
  height: 1px;
  background: var(--gold);
}

.lp-prod-name {
  font-family: var(--font-serif) !important;
  font-size: 36px !important;
  font-weight: 300 !important;
  line-height: 1.1 !important;
  margin-bottom: 16px !important;
  color: var(--charcoal) !important;
}
.lp-prod-name em { font-style: italic; color: var(--taupe); }

.lp-prod-desc {
  font-size: 14px;
  line-height: 1.85;
  color: var(--taupe);
  margin-bottom: 22px;
  letter-spacing: 0.02em;
  font-family: var(--font-sans);
}

.lp-mat-label,
.lp-col-label,
.lp-spec-label {
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 8px;
  font-family: var(--font-sans);
}

.lp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 20px;
}
.lp-tag-item {
  font-size: 10px;
  padding: 5px 12px;
  border: 1px solid var(--stone);
  color: var(--charcoal);
  letter-spacing: 0.08em;
  font-family: var(--font-sans);
}

.lp-colors {
  display: flex;
  gap: 9px;
  align-items: center;
  margin-bottom: 24px;
}
.lp-swatch {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid transparent;
  flex-shrink: 0;
}
.lp-swatch-on {
  border-color: var(--charcoal) !important;
  transform: scale(1.2);
}
.lp-cname {
  font-size: 10px;
  color: var(--taupe);
  margin-left: 6px;
  font-family: var(--font-sans);
}

.lp-prod-divider {
  width: 36px;
  height: 1px;
  background: var(--stone);
  margin: 18px 0;
}

.lp-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 26px;
}
.lp-spec-val {
  font-size: 12px;
  color: var(--charcoal);
  margin-top: 3px;
  font-family: var(--font-sans);
}

.lp-prod-cta {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════
   WHY US
═══════════════════════════════════════════════ */
.lp-whyus {
  padding: 100px 80px;
  background: var(--charcoal);
}
.lp-whyus-intro {
  max-width: 540px;
  margin-bottom: 52px;
}
.lp-whyus .lp-section-tag         { color: var(--gold); }
.lp-whyus .lp-section-tag::before { background: var(--gold); }

.lp-whyus-title {
  font-family: var(--font-serif) !important;
  font-size: clamp(32px, 3vw, 46px) !important;
  font-weight: 300 !important;
  line-height: 1.15 !important;
  color: var(--warm-white) !important;
  margin-bottom: 0 !important;
}
.lp-whyus-title em { font-style: italic; color: var(--taupe); }

.lp-whyus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.lp-whyus-block {
  padding: 36px;
  border: 1px solid rgba(255,255,255,0.08);
}
.lp-whyus-block-title {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  font-family: var(--font-sans);
}
.lp-whyus-block-text {
  font-size: 14px;
  line-height: 1.85;
  color: var(--stone);
  letter-spacing: 0.02em;
  font-family: var(--font-sans);
}

/* ═══════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════ */
.lp-contact {
  padding: 120px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.lp-contact-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.lp-contact-detail {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.lp-contact-line {
  display: flex;
  align-items: center;
  gap: 20px;
}
.lp-contact-icon {
  width: 36px;
  height: 36px;
  border: 1px solid var(--stone);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
  color: var(--taupe);
}
.lp-contact-label {
  font-size: 9px !important;
  letter-spacing: 0.25em !important;
  text-transform: uppercase !important;
  color: var(--taupe) !important;
  font-family: var(--font-sans) !important;
  display: block;
}
.lp-contact-value {
  font-size: 13px;
  color: var(--charcoal);
  margin-top: 2px;
  letter-spacing: 0.04em;
  font-family: var(--font-sans);
}

.lp-contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.lp-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.lp-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lp-form-label {
  font-size: 9px !important;
  letter-spacing: 0.25em !important;
  text-transform: uppercase !important;
  color: var(--taupe) !important;
  font-family: var(--font-sans) !important;
  font-weight: 400 !important;
}
.lp-form-input,
.lp-form-textarea {
  background: transparent !important;
  border: 1px solid var(--stone) !important;
  padding: 14px 16px !important;
  font-family: var(--font-sans) !important;
  font-size: 13px !important;
  color: var(--charcoal) !important;
  outline: none;
  transition: border-color 0.3s;
  border-radius: 0 !important;
  box-shadow: none !important;
  width: 100%;
}
.lp-form-input:focus,
.lp-form-textarea:focus {
  border-color: var(--gold) !important;
  box-shadow: none !important;
}
.lp-form-textarea {
  resize: vertical;
  min-height: 120px;
}
.lp-form-submit {
  background: var(--charcoal);
  color: var(--warm-white);
  padding: 16px 40px;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background 0.3s;
  align-self: flex-start;
}
.lp-form-submit:hover { background: var(--taupe); }

/* ═══════════════════════════════════════════════
   RESPONSIVE — TABLET  ≤900px
═══════════════════════════════════════════════ */
@media (max-width: 900px) {

  /* header hidden via style.css body.leno-hp rules */

  /* ── Hero ── */
  .lp-hero                { grid-template-columns: 1fr; height: auto; min-height: auto; }
  .lp-hero-left           { padding: 56px 32px 48px; }
  .lp-hero-right          { padding: 0; height: 62vw; min-height: 300px; }
  .lp-hero-img-wrap       { height: 100%; }
  .lp-hero-img-wrap::after { display: none; }
  .lp-hero-support        { max-width: 100%; }
  .lp-hero-values         { white-space: normal; flex-wrap: wrap; gap: 6px 0; }

  /* ── About ── */
  .lp-about               { grid-template-columns: 1fr; padding: 60px 0; }
  .lp-about-img-wrap      { height: 280px; }
  .lp-about-content       { padding: 48px 28px; }

  /* ── Gallery ── */
  .lp-gallery             { padding: 60px 28px; }
  .lp-gallery-header      { flex-direction: column; align-items: flex-start; gap: 20px; }
  .lp-gallery-grid        { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .lp-gallery-item:first-child { grid-row: span 1; }
  .lp-gallery-img         { height: 220px; object-fit: contain; object-position: center center; }
  .lp-gallery-item:nth-child(4) .lp-gallery-img { transform: none; padding: 0; }

  /* ── Process ── */
  .lp-process             { padding: 60px 28px; }
  .lp-process-grid        { grid-template-columns: 1fr 1fr; }
  .lp-step-line           { display: none; }

  /* ── Testimonials ── */
  .lp-testimonials        { padding: 60px 28px; }
  .lp-testi-grid          { grid-template-columns: 1fr; }

  /* ── Products ── */
  .lp-products              { padding: 60px 28px; }
  .lp-product-card          { grid-template-columns: 1fr; direction: ltr; margin-bottom: 32px; }
  .lp-product-card-rev      { direction: ltr; }
  .lp-prod-img              { height: 340px; }
  .lp-prod-img img          { object-fit: contain; }
  .lp-carousel-track img    { object-fit: contain; }
  .lp-prod-content          { padding: 32px 28px; border-left: none !important; border-right: none !important; border-top: 1px solid var(--stone); }
  .lp-prod-badge            { top: 16px; left: 16px; }

  /* ── Why Us ── */
  .lp-whyus                 { padding: 60px 28px; }
  .lp-whyus-grid            { grid-template-columns: 1fr; gap: 20px; }
  .lp-whyus-intro           { margin-bottom: 36px; }

  /* ── Contact — stack, add visual divider between info and form ── */
  .lp-contact             { grid-template-columns: 1fr; padding: 64px 24px; gap: 0; }
  .lp-contact-detail      { margin-top: 28px; gap: 18px; }
  .lp-contact-form        {
    padding-top: 40px;
    margin-top: 40px;
    border-top: 1px solid var(--stone);
  }
  .lp-form-submit         { align-self: stretch; width: 100%; text-align: center; }

  /* ── Footer ── */
  .leno-hp .site-footer,
  .leno-hp #colophon               { padding-left: 24px !important; padding-right: 24px !important; }
  .leno-hp .ast-footer-widget-area { padding: 0 24px !important; }
  .leno-hp .ast-small-footer       { padding: 16px 24px !important; text-align: center !important; }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — MOBILE HERO  ≤768px
═══════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* ── Hero layout: text first, image below buttons ── */
  .lp-hero                { grid-template-columns: 1fr; height: auto; min-height: auto; }
  .lp-hero-left           {
    display: flex;
    flex-direction: column;
    padding: 76px 24px 32px;
    order: 1;
  }
  .lp-hero-right          {
    order: 2;
    padding: 0;
    height: 72vw;
    min-height: 240px;
    margin-top: 0;
  }
  .lp-hero-img-wrap       { height: 100%; }
  .lp-hero-img            {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
  }

  /* ── Content order: tag → title → support → values → buttons ── */
  .lp-hero-tag            { order: 1; }
  .lp-hero-title          { order: 2; }
  .lp-hero-support        { order: 3; }
  .lp-hero-values         { order: 4; }
  .lp-hero-actions        { order: 5; }

  /* ── Tag ── */
  .lp-hero-tag {
    font-size: 13px;
    letter-spacing: 0.16em;
    line-height: 1.6;
    white-space: normal;
    margin-bottom: 18px;
    gap: 10px;
  }
  .lp-hero-tag::before    { width: 28px; }

  /* ── Headline ── */
  .lp-hero-title          { font-size: 52px !important; line-height: 1.15 !important; margin-bottom: 22px !important; }

  /* ── Supporting line ── */
  .lp-hero-support        {
    font-size: 15px;
    line-height: 1.7;
    max-width: 100%;
    white-space: normal;
    margin-bottom: 20px;
    letter-spacing: 0.01em;
  }

  /* ── Value points: WEARABLE DESIGN | RELIABLE QUALITY / LONG-TERM COOPERATION ── */
  .lp-hero-values         {
    display: block;
    font-size: 13px;
    line-height: 1.8;
    letter-spacing: 0.13em;
    white-space: normal;
    margin-bottom: 28px !important;
  }
  /* hide both separators by default */
  .lp-val-sep             { display: none; }
  /* show first "|" inline between WEARABLE DESIGN and RELIABLE QUALITY */
  .lp-hero-values .lp-val-sep:nth-of-type(1) {
    display: inline;
    color: var(--stone);
    margin: 0 8px;
    letter-spacing: 0;
  }
  /* second separator becomes invisible zero-height block = clean line break before LONG-TERM COOPERATION */
  .lp-hero-values .lp-val-sep:nth-of-type(2) {
    display: block;
    height: 0;
    overflow: hidden;
    margin: 4px 0 0;
  }

  /* ── Buttons — primary full width, ghost lighter below ── */
  .lp-hero-actions        { flex-direction: column; align-items: stretch; gap: 10px; }
  .lp-btn-primary         { width: 100%; text-align: center; padding: 12px 20px !important; }
  .lp-btn-ghost           { width: 100%; justify-content: center; padding: 0; }

  /* ── Slogan ── */
  .lp-hero-slogan         { font-size: 18px; bottom: 20px; right: 20px; }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — MOBILE  ≤540px
═══════════════════════════════════════════════ */
@media (max-width: 540px) {

  /* ── Hero ── */
  .lp-hero-left           { padding: 72px 20px 28px; }
  .lp-hero-title          { font-size: clamp(30px, 8vw, 42px) !important; line-height: 1.15 !important; margin-bottom: 18px !important; }
  .lp-hero-tag            { font-size: 12px; letter-spacing: 0.14em; margin-bottom: 14px; }
  .lp-hero-support        { font-size: 14px; margin-bottom: 18px; }
  .lp-hero-values         { font-size: 14px; letter-spacing: 0.13em; margin-bottom: 22px !important; }

  /* ── Buttons ── */
  .lp-hero-actions        { gap: 10px; }
  .lp-btn-primary         { padding: 12px 18px !important; }
  .lp-btn-left            { align-self: stretch; text-align: center; }

  /* ── Marquee — horizontal scroll on mobile ── */
  .lp-marquee-item {
    font-size: 9px;
    letter-spacing: 0.2em;
  }

  /* ── Products ── */
  .lp-prod-name           { font-size: 28px !important; }
  .lp-specs               { grid-template-columns: 1fr 1fr; }
  .lp-prod-cta            { flex-direction: column; align-items: stretch; }
  .lp-prod-cta .lp-btn-primary { text-align: center; }
  .lp-prod-cta .lp-btn-ghost  { justify-content: center; }

  /* ── Gallery ── */
  .lp-gallery-grid        { grid-template-columns: 1fr; grid-template-rows: auto; }
  .lp-gallery-img         { height: 260px; object-fit: contain; object-position: center center; }

  /* ── Process ── */
  .lp-process-grid        { grid-template-columns: 1fr; }

  /* ── Contact ── */
  .lp-contact             { padding: 56px 20px; }
  .lp-form-row            { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — SMALL PHONE  ≤390px
═══════════════════════════════════════════════ */
@media (max-width: 390px) {
  .lp-hero-title          { font-size: 28px !important; }
  .lp-hero-left           { padding: 68px 16px 24px; }
}

/* ═══════════════════════════════════════════════
   FOOTER — 统一背景 + 文字颜色
   （参考 leno-final.html）
═══════════════════════════════════════════════ */

/* 所有 footer 层统一同一背景色，消除双色块问题 */
body.leno-hp .site-footer,
body.leno-hp #colophon,
body.leno-hp .ast-footer-overlay,
body.leno-hp .ast-footer-widget-area,
body.leno-hp .ast-small-footer,
body.leno-hp .ast-small-footer-section,
body.leno-hp .ast-footer-copyright,
body.leno-hp .site-info {
  background-color: #2A2A2A !important;
  border-top: none !important;
}

/* 顶部金色分隔线仅保留在最外层 */
body.leno-hp #colophon {
  border-top: 1px solid rgba(196,151,62,0.25) !important;
}

/* copyright 文字 */
body.leno-hp .ast-small-footer,
body.leno-hp .ast-footer-copyright,
body.leno-hp .site-info,
body.leno-hp .ast-small-footer-section {
  color: rgba(250,248,244,0.5) !important;
}

/* footer 所有链接 */
body.leno-hp .site-footer a,
body.leno-hp #colophon a {
  color: rgba(250,248,244,0.5) !important;
}
body.leno-hp .site-footer a:hover,
body.leno-hp #colophon a:hover {
  color: var(--gold) !important;
}

/* widget 标题保持完全可见 */
body.leno-hp .site-footer .widget-title,
body.leno-hp #colophon .widget-title {
  color: var(--warm-white) !important;
}

/* ── Footer 移动端：覆盖 Astra hide-on-mobile 并强制可见 ── */
body.leno-hp #colophon .hide-on-mobile,
body.leno-hp #colophon .ast-hide-mobile,
body.leno-hp #colophon [class*="hide-on-mobile"],
body.leno-hp #colophon [class*="ast-hide-mobile"] {
  display: block !important;
}
@media (max-width: 768px) {
  body.leno-hp #colophon .hide-on-mobile,
  body.leno-hp #colophon .ast-hide-mobile,
  body.leno-hp #colophon [class*="hide-on-mobile"],
  body.leno-hp #colophon [class*="ast-hide-mobile"] {
    display: block !important;
  }
  body.leno-hp #colophon .ast-builder-layout-element,
  body.leno-hp #colophon .site-footer-primary-section-1,
  body.leno-hp #colophon .site-footer-primary-section-2,
  body.leno-hp #colophon .site-footer-primary-section-3,
  body.leno-hp #colophon .ast-footer-copyright,
  body.leno-hp #colophon .ast-small-footer-section,
  body.leno-hp #colophon .widget {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  body.leno-hp #colophon .ast-builder-grid-row-container-inner {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
  }
}

/* ── Hide page title and featured image on homepage front end ── */
body.leno-hp .entry-title,
body.leno-hp .page-title,
body.leno-hp .ast-page-title-wrap,
body.leno-hp .entry-header {
  display: none !important;
}

body.leno-hp .post-thumbnail,
body.leno-hp .ast-post-thumbnail-wrap,
body.leno-hp .featured-image-wrap {
  display: none !important;
}
