/* ============================================================
   LONGBIO — Stylesheet matching screenshots 1:1
   ============================================================
   Fonts:
     • Body & main headings: heavy/bold sans-serif (Inter)
     • Accent italic serif: Caudex (only for contact hero,
       "20 years of...", "We have the know-how you need")
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Caudex:ital,wght@0,400;0,700;1,400;1,700&family=Inter:wght@300;400;500;600;700;800;900&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:        #f3e8d8;   /* page bg */
  --cream-lt:     #faf5ec;
  --sage-soft:    #c8d3a8;
  --sage-mid:     #5e6d55;
  --sage-dark:    #3f4f3a;
  --olive-dark:   #1f2d1a;
  --text:         #000000;     /* the real site uses near-black text */
  --text-soft:    #555;
  --gray:         #ccc;
  --white:        #ffffff;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  font-weight: 400;
  background: var(--cream);
  color: var(--text);
  line-height: 1.5;
  font-size: 15px;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; color: inherit; }

/* Main headings: HEAVY BOLD SANS-SERIF (matches screenshots) */
h1, h2, h3, h4 {
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.01em;
  line-height: 1.15;
}
h1 { font-size: 32px; }
h2 { font-size: 28px; }
h3 { font-size: 18px; }
h4 { font-size: 16px; }

/* ── NAVIGATION (simple: logo left, hamburger right) ── */
.lb-nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px;
  background: var(--cream);
  position: sticky; top: 0; z-index: 100;
}
.lb-nav-logo { display: flex; align-items: center; gap: 10px; }
.lb-nav-logo img { height: 28px; width: auto; }
.lb-nav-logo-text {
  font-family: 'Inter', sans-serif; font-size: 18px;
  font-weight: 800; color: var(--text); line-height: 1; letter-spacing: 0.02em;
}
.lb-nav-logo-text span { display: none; }

/* Hide desktop links on mobile-like layout (screenshot shows hamburger only) */
.lb-nav-links { display: none; }
.lb-hamburger {
  display: flex; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px; background: none; border: none;
}
.lb-hamburger span { display: block; width: 26px; height: 2px; background: var(--text); }

.lb-mobile-menu {
  display: none; position: fixed; top: 64px; left: 0; right: 0;
  background: var(--cream); z-index: 99; padding: 20px 22px;
  flex-direction: column; border-top: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.lb-mobile-menu.open { display: flex; }
.lb-mobile-menu li { list-style: none; }
.lb-mobile-menu li a {
  display: block; padding: 14px 0;
  font-size: 16px; font-weight: 600;
  color: var(--text); border-bottom: 1px solid rgba(0,0,0,0.06);
}

@media (min-width: 900px) {
  .lb-nav { padding: 22px 7%; }
  .lb-nav-links {
    display: flex; align-items: center; gap: 32px;
    list-style: none; margin: 0; padding: 0;
  }
  .lb-nav-links li a {
    font-size: 14px; font-weight: 600; color: var(--text); transition: opacity 0.2s;
  }
  .lb-nav-links li a:hover { opacity: 0.6; }
  .lb-nav-cta {
    background: var(--text) !important; color: var(--cream) !important;
    padding: 10px 18px !important;
  }
  .lb-hamburger { display: none; }
}

/* ── BUTTONS — solid black filled, sharp corners ── */
.lb-btn {
  display: inline-block; padding: 14px 36px;
  font-family: 'Inter', sans-serif; font-size: 13px;
  letter-spacing: 0.1em; text-transform: uppercase;
  font-weight: 700; cursor: pointer; transition: opacity 0.2s;
  background: var(--text); color: var(--cream);
  border: none;
}
.lb-btn:hover { opacity: 0.85; }
.lb-btn-primary { background: var(--text); color: var(--cream); }
.lb-btn-outline { background: var(--text); color: var(--cream); }
.lb-btn-gold { background: var(--text); color: var(--cream); }
.lb-btn-dark { background: var(--text); color: var(--cream); }

/* ── SECTIONS ── */
.lb-section { padding: 50px 22px; }
.lb-section-cream { background: var(--cream); }
.lb-section-white { background: var(--cream); }
.lb-section-dark  { background: var(--olive-dark); color: var(--cream); }
.lb-section-dark h1, .lb-section-dark h2, .lb-section-dark h3 { color: var(--cream); }

.lb-label { display: none; }   /* original site has no eyebrow labels */
.lb-h2 { font-size: 28px; font-weight: 800; line-height: 1.2; }
.lb-h2-light { color: var(--cream); }
.lb-sub {
  font-size: 14px; line-height: 1.65; color: var(--text);
  font-weight: 400;
}
.lb-sub-light { color: rgba(243,232,216,0.8); }

/* ── BANNER (sub-page header with photo bg) ── */
.lb-banner {
  position: relative; min-height: 280px;
  display: flex; align-items: center; justify-content: center;
  padding: 60px 22px; overflow: hidden;
  background: var(--olive-dark); text-align: center;
}
.lb-banner-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0.55;
}
.lb-banner-content { position: relative; z-index: 2; max-width: 800px; }
.lb-banner-content h1 {
  /* Use italic Caudex serif for hero headings on sub-pages */
  font-family: 'Caudex', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: var(--white); font-size: 38px; line-height: 1.1;
  margin-bottom: 16px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.lb-banner-content p {
  color: var(--white); font-size: 16px; line-height: 1.5;
  font-family: 'Caudex', serif; font-style: italic;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

/* ── HOME HERO (cream bg, small logo, bold heading) ── */
.lb-hero {
  background: var(--cream); padding: 30px 22px 40px;
  text-align: center;
  display: block;
  min-height: auto;
}
.lb-hero-text {
  padding: 0; display: block; text-align: center;
}
.lb-hero-text::before {
  content: '';
  display: block;
  width: 60px; height: 50px; margin: 0 auto 18px;
  background: url('https://static.wixstatic.com/media/a3720c_9a0c002d65a644dfa32b1e0f42dfd6f8~mv2.png/v1/fill/w_93,h_76,al_c,q_85/BIO-logo.png') center/contain no-repeat;
}
.lb-hero-eyebrow { display: none; }
.lb-hero-title {
  font-family: 'Inter', sans-serif; font-weight: 800;
  font-size: 28px; line-height: 1.2;
  color: var(--text); margin: 0 auto 18px;
  max-width: 340px; letter-spacing: -0.01em;
}
.lb-hero-desc {
  font-size: 14px; color: var(--text);
  max-width: 360px; line-height: 1.6; margin: 0 auto 24px;
  font-weight: 400;
}
.lb-hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.lb-hero-image { display: none; }  /* Real site has no large hero photo right of text */
.lb-hero-overlay { display: none; }

@media (min-width: 900px) {
  .lb-hero { padding: 80px 7%; min-height: 70vh; display: flex; align-items: center; justify-content: center; }
  .lb-hero-title { font-size: 48px; max-width: 600px; }
  .lb-hero-desc { font-size: 16px; max-width: 600px; }
}

/* ── PRODUCTS — 2-col mobile, photos with labels ── */
.lb-products-header {
  display: block; text-align: center; margin-bottom: 28px;
}
.lb-products-header > div { text-align: center; }
.lb-products-header h2 { margin-bottom: 18px; font-size: 28px; }
.lb-products-header .lb-btn { width: fit-content; margin: 0 auto 24px; display: inline-block; }
.lb-products-header > p, .lb-products-header .lb-sub {
  font-size: 13px; color: var(--text); max-width: 380px; margin: 0 auto;
  line-height: 1.55;
}
.lb-products-grid {
  display: flex; flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
.lb-products-grid .lb-product-card {
  flex: 0 0 calc(50% - 7px);
  max-width: calc(50% - 7px);
}
.lb-product-card {
  background: var(--cream); padding: 0;
  border: none; min-height: auto;
  display: flex; flex-direction: column; gap: 0;
  text-align: center; color: var(--text);
}
.lb-product-card:nth-child(3n) { border-right: none; }
.lb-product-card:hover { transform: translateY(-2px); transition: transform 0.2s; }
.lb-card-num { display: none; }
.lb-product-card::before {
  content: '';
  width: 100%;
  height: 140px;
  background: var(--sage-soft) center/cover no-repeat;
  margin-bottom: 8px;
}
.lb-product-card.has-img-1::before { background-image: var(--bg-1); }
.lb-product-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 12px; font-weight: 600;
  margin: 4px 0 0; text-align: center;
  line-height: 1.25;
  /* truncate to one line like screenshot */
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  padding: 0 6px;
}
.lb-card-sub { display: none; }
.lb-card-arrow { display: none; }

/* Inject category images via inline style on each card (set in PHP template) */

@media (min-width: 900px) {
  .lb-products-grid { gap: 20px; }
  .lb-products-grid .lb-product-card { flex: 0 0 calc(25% - 15px); max-width: calc(25% - 15px); }
  .lb-product-card::before { height: 200px; }
}

/* ── STATS SECTION (photo bg with leaves, white text) ── */
.lb-stats-section,
.lb-section.lb-section-dark {
  background-color: #3f4f3a;  /* solid sage-green fallback */
  background-image:
    linear-gradient(rgba(63,79,58,0.65), rgba(63,79,58,0.65)),
    url('https://static.wixstatic.com/media/11062b_ade2ef3a31c04daaac7a2f2df84d2c43~mv2.jpg/v1/fill/w_1200,h_900,al_c,q_85/11062b_ade2ef3a31c04daaac7a2f2df84d2c43~mv2.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 50px 22px;
  text-align: center;
}
.lb-stats-inner {
  display: block; text-align: center;
}
.lb-stats-left { display: none; }
.lb-stats-left h2 {
  color: var(--white); margin-bottom: 32px; font-size: 22px;
  font-weight: 800;
}
.lb-stats-section h2 {
  color: var(--white); font-size: 22px; font-weight: 800;
  margin-bottom: 30px; text-align: center;
}
.lb-stats-right {
  display: flex; flex-wrap: wrap; gap: 22px;
  max-width: 320px; margin: 0 auto 40px;
  justify-content: center;
}
.lb-stats-right .lb-stat-item { flex: 0 0 calc(50% - 11px); max-width: calc(50% - 11px); }
.lb-stat-item { text-align: center; }
.lb-stat-value {
  font-family: 'Inter', sans-serif; font-size: 38px; font-weight: 800;
  color: var(--white); line-height: 1; letter-spacing: -0.02em;
}
.lb-stat-value sup {
  font-size: 16px; vertical-align: top; margin-top: 6px; display: inline-block;
}
.lb-stat-label {
  font-family: 'Inter', sans-serif; font-size: 11px;
  color: var(--white); letter-spacing: 0.02em;
  margin-top: 4px; text-transform: none; font-weight: 500;
}

@media (min-width: 900px) {
  .lb-stats-section { padding: 80px 7%; }
  .lb-stats-section h2 { font-size: 32px; }
  .lb-stats-right { grid-template-columns: repeat(4, 1fr); max-width: 800px; gap: 32px; }
  .lb-stat-value { font-size: 56px; }
}

/* ── CERTIFICATIONS (inside the same photo bg) ── */
.lb-certs-section,
.lb-section.lb-section-cream + .lb-section.lb-section-cream { background: transparent !important; }
.lb-certs-header { display: none; }   /* no header on real site */

/* Make cert cards work on photo background */
.lb-certs-grid {
  display: flex; flex-direction: column;
  gap: 24px; max-width: 400px; margin: 0 auto;
  align-items: center;
}
.lb-cert-card {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; background: transparent;
}
.lb-cert-icon {
  width: 80px; height: 80px; object-fit: contain;
  margin-bottom: 12px;
  background: var(--white); padding: 14px; border-radius: 50%;
}
.lb-cert-name {
  font-family: 'Inter', sans-serif; font-size: 10px;
  font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--white); line-height: 1.4; margin: 0;
}

@media (min-width: 700px) {
  .lb-certs-grid { grid-template-columns: repeat(4, 1fr); max-width: 100%; }
}

/* ── PRODUCTION (factory photo bg) ── */
.lb-production {
  display: block;
  background-color: #1f2d1a;  /* solid fallback */
  background-image:
    linear-gradient(rgba(0,0,0,0.72), rgba(0,0,0,0.72)),
    url('https://static.wixstatic.com/media/a3720c_6f1194f8fbd049c9a055e4b4ac69cb55~mv2.png/v1/fill/w_1200,h_700,al_c,q_85/a3720c_6f1194f8fbd049c9a055e4b4ac69cb55~mv2.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: auto;
  padding: 50px 22px;
  color: var(--white);
}
.lb-prod-image { display: none; }   /* photo is now the bg */
.lb-prod-content {
  background: transparent; padding: 0;
  display: block; gap: 0;
}
.lb-prod-content h2 {
  color: #ffffff; font-size: 24px; font-weight: 800;
  margin-bottom: 24px;
  text-align: left;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.lb-prod-content .lb-label { display: none; }
.lb-prod-features { display: block; }
.lb-prod-feature {
  display: block; padding: 0 0 16px;
  border-bottom: none;
}
.lb-prod-icon { display: none; }
.lb-prod-feature h4 {
  font-size: 14px; font-weight: 700; color: #ffffff;
  margin: 0 0 4px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}
.lb-prod-feature p {
  font-size: 13px; color: #ffffff;
  line-height: 1.5; margin: 0 0 8px; font-weight: 400;
  opacity: 0.95;
}
.lb-prod-content .lb-btn { margin-top: 20px; background: var(--text); color: var(--cream); }

@media (min-width: 900px) {
  .lb-production { padding: 80px 7%; }
  .lb-prod-content h2 { font-size: 32px; }
}

/* ── COMPANY PROFILE PAGE ── */
.lb-about-grid {
  display: block;
}
.lb-about-image img {
  width: 100%; height: 240px; object-fit: cover; margin-bottom: 24px;
}
.lb-about-text h2 { margin-bottom: 16px; font-size: 24px; }
.lb-about-text p {
  font-size: 14px; color: var(--text);
  line-height: 1.65; margin: 0 0 14px; font-weight: 400;
}

.lb-values-grid {
  display: block;
  background: var(--sage-mid);
  margin: 0 -22px;
  padding: 50px 22px;
  text-align: center;
}
.lb-values-grid::before {
  content: 'Corporate Philosophy';
  display: block;
  font-size: 22px; font-weight: 800; color: var(--white);
  margin-bottom: 24px;
}
.lb-value-card {
  background: transparent; padding: 16px 0;
  border-top: none;
  text-align: center; color: var(--white);
}
.lb-value-num {
  font-family: 'Caudex', serif; font-style: italic;
  font-size: 38px; color: var(--white); font-weight: 400;
  line-height: 1; margin-bottom: 10px;
}
.lb-value-card h3 {
  font-family: 'Caudex', serif; font-style: italic;
  font-size: 24px; font-weight: 400;
  color: var(--white); margin: 0 0 10px;
}
.lb-value-card p {
  font-size: 13px; color: rgba(255,255,255,0.9);
  line-height: 1.55; margin: 0; font-weight: 400;
  max-width: 320px; margin: 0 auto;
}

.lb-team-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 30px; margin-top: 30px;
}
.lb-team-card { text-align: center; }
.lb-team-photo {
  width: 160px; height: 160px; border-radius: 50%; object-fit: cover;
  background: var(--text); margin: 0 auto 16px;
}
.lb-team-card h3 {
  font-size: 18px; font-weight: 700; color: var(--text); margin: 0 0 4px;
  font-family: 'Inter', sans-serif;
}
.lb-team-role {
  font-family: 'Inter', sans-serif; font-size: 12px;
  font-weight: 500; color: var(--text-soft);
  text-transform: none; letter-spacing: 0; margin: 0 0 10px;
}
.lb-team-card p {
  font-size: 12px; color: var(--text-soft);
  line-height: 1.5; margin: 0 0 12px; font-weight: 400;
  max-width: 280px; margin-left: auto; margin-right: auto;
}
.lb-team-card::after {
  content: 'View More';
  display: inline-block; margin-top: 8px;
  padding: 8px 20px; background: var(--text); color: var(--cream);
  font-size: 11px; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase;
}

.lb-factory-grid {
  display: block; margin-top: 24px;
}
.lb-factory-row {
  display: block; padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.lb-factory-row strong {
  display: block; font-family: 'Inter', sans-serif;
  font-size: 12px; font-weight: 700; color: var(--text);
  min-width: auto; text-transform: none; letter-spacing: 0;
  margin-bottom: 4px;
}
.lb-factory-row span {
  font-size: 14px; color: var(--text);
  line-height: 1.55; font-weight: 400;
}
.lb-factory-map img { width: 100%; max-height: 300px; object-fit: contain; margin-top: 24px; }

.lb-strategy-cards {
  display: block; margin-top: 30px;
  background: var(--sage-mid);
  margin-left: -22px; margin-right: -22px;
  padding: 40px 22px; text-align: center;
}
.lb-strategy-cards::before {
  content: 'Development Strategy';
  display: block;
  font-size: 22px; font-weight: 800; color: var(--white);
  margin-bottom: 30px;
}
.lb-strategy-card {
  text-align: center; padding: 16px 0;
  background: transparent; border-top: none;
}
.lb-strategy-card .s-year { display: none; }
.lb-strategy-card .s-amount {
  font-family: 'Inter', sans-serif; font-size: 32px; font-weight: 800;
  color: var(--white); line-height: 1; margin: 0 0 6px;
}
.lb-strategy-card .s-label {
  font-size: 12px; color: rgba(255,255,255,0.85); margin: 0; font-weight: 500;
}

.lb-timeline { margin-top: 30px; position: relative; }
.lb-timeline::before { display: none; }
.lb-tl-item {
  display: block; padding: 16px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08); position: static;
}
.lb-tl-year {
  font-family: 'Inter', sans-serif; font-size: 22px;
  font-weight: 800; color: var(--text); text-align: left;
  margin-bottom: 6px;
}
.lb-tl-dot { display: none; }
.lb-tl-body { padding-left: 0; }
.lb-tl-body p {
  font-size: 13px; color: var(--text-soft);
  line-height: 1.55; margin: 0; font-weight: 400;
}

/* ── EXTRACTS PAGE ── */
.lb-extract-intro-grid {
  display: block;
}
.lb-extract-intro-grid > div:first-child h2 { font-size: 24px; }
.lb-extract-intro-grid p {
  font-size: 14px; color: var(--text);
  line-height: 1.6; margin-top: 14px; font-weight: 400;
}
.lb-extract-mini-stats { display: none; }

.lb-cats-grid {
  display: flex; flex-wrap: wrap;
  gap: 8px; margin-top: 20px;
}
.lb-cats-grid .lb-cat-card { flex: 0 0 calc(33.333% - 6px); max-width: calc(33.333% - 6px); }
.lb-cat-card { background: var(--cream); overflow: hidden; transition: transform 0.2s; }
.lb-cat-card:hover { transform: translateY(-2px); }
.lb-cat-img { width: 100%; height: 80px; object-fit: cover; }
.lb-cat-body { padding: 8px 4px; text-align: center; }
.lb-cat-body h3 {
  font-family: 'Inter', sans-serif; font-size: 11px;
  font-weight: 600; color: var(--text); margin: 0;
  line-height: 1.3;
  /* truncate */
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
}
.lb-cat-body p { display: none; }

/* Process Flow — vertical on mobile */
.lb-process-flow {
  display: flex; flex-direction: column; gap: 0;
  margin-top: 24px; padding: 28px 0;
  background: var(--cream);
}
.lb-process-step {
  background: var(--cream-lt);
  border: 1px solid rgba(0,0,0,0.1);
  padding: 14px 18px;
  margin: 0 auto 8px;
  width: 80%; max-width: 320px;
  text-align: center;
}
.lb-process-step .step-num { display: none; }
.lb-process-step h4 {
  font-family: 'Inter', sans-serif; font-size: 12px;
  font-weight: 700; color: var(--text);
  text-transform: none; letter-spacing: 0;
  line-height: 1.3; margin: 0 0 3px;
}
.lb-process-step p {
  font-size: 11px; color: var(--text-soft);
  line-height: 1.4; margin: 0; font-weight: 400;
}
.lb-process-arrow {
  align-self: center; color: var(--text); font-size: 18px;
  padding: 0;
  transform: rotate(90deg);
  display: block; text-align: center; margin: 2px 0;
}

.lb-listings-grid {
  display: flex; flex-wrap: wrap;
  gap: 16px; margin-top: 24px;
}
.lb-listings-grid .lb-listing-card { flex: 0 0 calc(50% - 8px); max-width: calc(50% - 8px); }
.lb-listing-card { background: var(--cream-lt); transition: transform 0.2s; }
.lb-listing-card:hover { transform: translateY(-2px); }
.lb-listing-card img { width: 100%; height: 140px; object-fit: cover; }
.lb-listing-body { padding: 12px; }
.lb-listing-body h4 {
  font-family: 'Inter', sans-serif; font-size: 12px;
  font-weight: 600; color: var(--text); line-height: 1.35;
  margin: 0 0 8px;
}
.lb-listing-badges {
  display: flex; gap: 4px; flex-wrap: wrap; margin-bottom: 6px;
}
.lb-badge {
  font-family: 'Inter', sans-serif; font-size: 8px;
  font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 2px 6px;
  background: var(--cream); color: var(--sage-mid); border-radius: 12px;
}
.lb-price {
  font-family: 'Inter', sans-serif; font-size: 14px;
  font-weight: 700; color: var(--text);
}
.lb-moq {
  font-family: 'Inter', sans-serif; font-size: 10px;
  color: var(--text-soft); font-weight: 400;
}
.lb-ali-link {
  display: inline-block; margin-top: 8px;
  font-family: 'Inter', sans-serif; font-size: 10px;
  font-weight: 600; color: var(--text);
  letter-spacing: 0.06em; text-transform: uppercase;
}

.lb-flagship-grid {
  display: flex; flex-wrap: wrap; gap: 16px; margin-top: 20px;
}
.lb-flagship-grid .lb-flagship-card { flex: 0 0 calc(50% - 8px); max-width: calc(50% - 8px); }
.lb-flagship-card {
  background: var(--cream-lt); padding: 12px;
  border-top: none;
}
.lb-flagship-card img {
  width: 100%; height: 100px; object-fit: contain;
  background: var(--cream); margin-bottom: 8px;
}
.lb-flagship-card h3 {
  font-size: 12px; font-weight: 700; color: var(--text);
  margin: 0 0 8px;
}
.lb-flagship-specs dt {
  font-family: 'Inter', sans-serif; font-size: 9px;
  font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--text-soft); margin-top: 6px;
}
.lb-flagship-specs dd {
  font-size: 11px; color: var(--text); line-height: 1.4; font-weight: 400;
}

/* ── CONTACT PAGE ── */
/* Banner uses forest leaves photo with white italic text */
.lb-banner.lb-contact-banner,
.lb-banner {
  /* Sub-page banner shared */
}
.lb-banner-content h1 {
  font-family: 'Caudex', Georgia, serif; font-style: italic;
  font-weight: 400; color: var(--white);
  font-size: 32px; line-height: 1.15;
  margin-bottom: 16px;
}
.lb-banner-content p {
  font-family: 'Caudex', serif; font-style: italic;
  font-size: 15px; line-height: 1.5;
  color: var(--white);
}

.lb-contact-grid {
  display: block;
}
.lb-contact-info { display: block; }
.lb-contact-block {
  margin-bottom: 24px;
}
.lb-contact-block h3 {
  font-family: 'Inter', sans-serif; font-size: 20px; font-weight: 800;
  color: var(--text); margin: 0 0 12px;
  padding-bottom: 0;
  border-bottom: none;
}
.lb-contact-detail { display: block; margin-top: 4px; }
.lb-c-icon { display: none; }
.lb-c-detail-text {
  font-size: 14px; color: var(--text);
  line-height: 1.55; font-weight: 400;
}
.lb-c-detail-text strong {
  display: none;
}
.lb-c-detail-text a {
  color: var(--text); border-bottom: none;
}

.lb-contact-form {
  background: var(--cream); padding: 30px 0 0;
}
.lb-contact-form h3 {
  font-family: 'Inter', sans-serif; font-size: 26px;
  font-weight: 800; color: var(--text); margin: 0 0 20px;
  line-height: 1.2;
}
.lb-contact-form > p { display: none; }
.lb-form-group { margin-bottom: 14px; }
.lb-form-group label {
  display: block; font-family: 'Inter', sans-serif;
  font-size: 13px; font-weight: 500;
  text-transform: none; letter-spacing: 0;
  color: var(--text); margin-bottom: 6px;
}
.lb-form-group input,
.lb-form-group select,
.lb-form-group textarea {
  width: 100%; padding: 12px 14px;
  border: 1px solid #ccc; background: var(--white);
  font-family: 'Inter', sans-serif; font-size: 14px;
  color: var(--text); outline: none; font-weight: 400;
  border-radius: 0;
  transition: border-color 0.2s;
}
.lb-form-group input:focus,
.lb-form-group select:focus,
.lb-form-group textarea:focus { border-color: var(--text); }
.lb-form-group textarea { min-height: 100px; resize: vertical; }
.lb-form-check {
  display: flex; align-items: flex-start; gap: 10px; margin-bottom: 18px;
}
.lb-form-check input[type="checkbox"] {
  margin-top: 3px; accent-color: var(--text);
}
.lb-form-check label {
  font-size: 13px; color: var(--text);
  line-height: 1.5; font-weight: 400;
}
.lb-form-submit {
  width: 100%; padding: 14px;
  background: var(--text); color: var(--white);
  border: none; font-family: 'Inter', sans-serif;
  font-size: 14px; letter-spacing: 0;
  text-transform: none; font-weight: 600;
  cursor: pointer; transition: opacity 0.2s;
}
.lb-form-submit:hover { opacity: 0.85; }
.lb-form-message {
  display: none; text-align: center; padding: 14px;
  margin-top: 14px; font-size: 13px; font-weight: 400;
}
.lb-form-message.success {
  display: block; background: var(--sage-soft); color: var(--sage-dark);
}
.lb-form-message.error {
  display: block; background: #fce5e5; color: #922;
}
.lb-map-frame { width: 100%; height: 300px; border: none; display: block; }

/* ── CTA STRIP ── */
.lb-cta-strip {
  background: var(--cream); padding: 40px 22px;
  display: block; text-align: center;
}
.lb-cta-strip > div { margin-bottom: 18px; }
.lb-cta-strip h3 {
  font-family: 'Inter', sans-serif; font-size: 22px; font-weight: 800;
  color: var(--text); margin: 0;
}
.lb-cta-strip p {
  font-size: 13px; color: var(--text-soft);
  margin: 6px 0 0; font-weight: 400;
}

/* ── FOOTER ── */
.lb-footer {
  background: var(--cream);
  color: var(--text);
  padding: 30px 22px;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.lb-footer-grid {
  display: block;
}
.lb-footer-brand-name {
  display: block; font-family: 'Inter', sans-serif;
  font-size: 16px; font-weight: 800; color: var(--text);
  margin-bottom: 4px; line-height: 1.2;
}
.lb-footer-brand-name span { display: none; }
.lb-footer-brand p { display: none; }
.lb-footer-col h4 { display: none; }
.lb-footer-col ul {
  list-style: none; display: flex; flex-direction: column;
  gap: 8px; margin: 12px 0; padding: 0;
}
.lb-footer-col ul li a {
  color: var(--text); font-size: 14px; font-weight: 400;
}
.lb-footer-contact {
  font-size: 13px; line-height: 1.7;
  color: var(--text); font-weight: 400; margin-top: 16px;
}
.lb-footer-contact h4 {
  display: block !important;
  font-family: 'Inter', sans-serif; font-size: 18px;
  letter-spacing: 0; text-transform: none;
  color: var(--text); margin: 0 0 8px; font-weight: 800;
}
.lb-footer-contact strong {
  color: var(--text); font-weight: 600;
  font-size: 13px; letter-spacing: 0; text-transform: none;
  display: inline; margin: 0;
}
.lb-footer-contact a { color: var(--text); }
.lb-footer-bottom {
  border-top: 1px solid rgba(0,0,0,0.08);
  padding-top: 16px; margin-top: 20px;
  display: flex; flex-direction: column; align-items: center;
  gap: 8px;
}
.lb-footer-bottom p {
  font-size: 12px; color: var(--text);
  margin: 0; font-weight: 400; text-align: center;
}
.lb-footer-bottom-links {
  display: flex; gap: 24px; order: -1; margin-bottom: 8px;
}
.lb-footer-bottom-links a { font-size: 13px; color: var(--text); font-weight: 500; }

@media (min-width: 900px) {
  .lb-section { padding: 80px 7%; }
  .lb-products-header { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; text-align: left; }
  .lb-products-header > div { text-align: left; }
  .lb-products-header h2 { font-size: 36px; }
  .lb-products-header .lb-btn { margin-left: 0; }
  .lb-banner-content h1 { font-size: 48px; }
  .lb-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 2fr; gap: 40px; }
  .lb-footer-brand p { display: block; font-size: 13px; }
  .lb-footer-col h4 { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: 0.14em; margin-bottom: 14px; }
  .lb-about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
  .lb-about-image img { height: 400px; margin-bottom: 0; }
  .lb-team-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
  .lb-cats-grid { gap: 14px; }
  .lb-cats-grid .lb-cat-card { flex: 0 0 calc(25% - 11px); max-width: calc(25% - 11px); }
  .lb-cat-img { height: 120px; }
  .lb-listings-grid { gap: 24px; }
  .lb-listings-grid .lb-listing-card { flex: 0 0 calc(33.333% - 16px); max-width: calc(33.333% - 16px); }
  .lb-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
  .lb-flagship-grid .lb-flagship-card { flex: 0 0 calc(33.333% - 11px); max-width: calc(33.333% - 11px); }
  .lb-flagship-card img { height: 160px; }
}
