/**
 * Just Been Laid Ltd — Design System
 * ==================================
 * Canonical stylesheet for building pages that match the site preview.
 *
 * Usage:
 *   <link rel="preconnect" href="https://fonts.googleapis.com" />
 *   <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
 *   <link href="https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500&family=Source+Sans+3:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap" rel="stylesheet" />
 *   <link rel="stylesheet" href="design-system.css" />
 *
 * Override asset paths on :root when the stylesheet lives elsewhere:
 *   --jbl-asset-hero: url("/input/hero_reference.jpg");
 *   --jbl-asset-logo: url("/input/logo.png");
 */

/* ==========================================================================
   1. DESIGN TOKENS
   ========================================================================== */

:root {
  /* Brand — greens */
  --jbl-green-950: #141b0e;
  --jbl-green-900: #1a2213;
  --jbl-green-850: #1a1f1c;
  --jbl-green-800: #1c2416;
  --jbl-green-700: #1e2420;

  /* Brand — gold */
  --jbl-gold: #c9a84c;
  --jbl-gold-light: #e8c96a;
  --jbl-gold-muted: rgba(201, 168, 76, 0.15);
  --jbl-gold-soft: rgba(201, 168, 76, 0.1);
  --jbl-gold-border: rgba(201, 168, 76, 0.2);
  --jbl-gold-border-strong: rgba(201, 168, 76, 0.4);

  /* Neutrals — light */
  --jbl-white: #ffffff;
  --jbl-cream: #f5f0e8;
  --jbl-cream-warm: #f0ead8;
  --jbl-parchment: #e8e0d0;
  --jbl-parchment-soft: #ddd8cc;

  /* Neutrals — ink */
  --jbl-ink: #1e2420;
  --jbl-ink-muted: #b0a898;

  /* Typography */
  --jbl-font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --jbl-font-body: "Source Sans 3", "Segoe UI", Helvetica, Arial, sans-serif;

  --jbl-fs-xs: 0.75rem;
  --jbl-fs-sm: 0.8125rem;
  --jbl-fs-md: 0.875rem;
  --jbl-fs-base: 1rem;
  --jbl-fs-body: 1.0625rem;
  --jbl-fs-lg: 1.2rem;
  --jbl-fs-xl: 1.5rem;
  --jbl-fs-2xl: 1.75rem;
  --jbl-fs-3xl: 1.8rem;
  --jbl-fs-display-sm: clamp(2.2rem, 4vw, 3.2rem);
  --jbl-fs-display: clamp(2.4rem, 4vw, 3.4rem);

  --jbl-lh-tight: 1.1;
  --jbl-lh-snug: 1.2;
  --jbl-lh-title: 1.3;
  --jbl-lh-body: 1.65;
  --jbl-lh-loose: 1.7;

  --jbl-tracking-tight: 0.02em;
  --jbl-tracking-wide: 0.05em;
  --jbl-tracking-wider: 0.08em;
  --jbl-tracking-caps: 0.1em;
  --jbl-tracking-badge: 0.12em;

  /* Layout */
  --jbl-container: 1320px;
  --jbl-content-narrow: 520px;
  --jbl-content-medium: 620px;
  --jbl-content-wide: 680px;
  --jbl-content-flow: 800px;
  --jbl-gutter: clamp(24px, 5vw, 80px);
  --jbl-section-pad-y: 80px;
  --jbl-section-pad-y-sm: 64px;
  --jbl-nav-height: 72px;
  --jbl-radius-sm: 4px;
  --jbl-radius-md: 6px;
  --jbl-radius-lg: 8px;
  --jbl-radius-xl: 12px;
  --jbl-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  --jbl-ease: 0.2s ease;
  --jbl-ease-slow: 0.3s ease;

  /* Breakpoints (documentation only — use in @media as literals)
     --bp-xs: 400px;
     --bp-sm: 640px;
     --bp-md: 768px;
     --bp-lg: 900px;
  */

  /* Assets — override per page if paths differ */
  --jbl-asset-hero: url("/input/hero.JPG");
  --jbl-asset-hero-mobile: url("/input/mobilehero.jpeg");
  --jbl-asset-logo: url("/input/logo.png");
}

/* ==========================================================================
   2. BASE / RESET
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
  overscroll-behavior: none;
  -webkit-text-size-adjust: 100%;
  max-width: 100%;
  overflow-x: clip;
}

body {
  margin: 0;
  padding: 0;
  overscroll-behavior: none;
  font-family: var(--jbl-font-body);
  font-size: var(--jbl-fs-base);
  line-height: var(--jbl-lh-body);
  color: var(--jbl-ink);
  background: var(--jbl-white);
  max-width: 100%;
  overflow-x: clip;
}

.site-preview-root {
  display: block;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

img,
svg,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: var(--jbl-font-display);
  font-weight: 700;
  line-height: var(--jbl-lh-tight);
  color: var(--jbl-ink);
}

p {
  margin: 0 0 1.25em;
}

p:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   3. TYPOGRAPHY UTILITIES
   ========================================================================== */

.jbl-display,
.jbl-title {
  font-family: var(--jbl-font-display);
  font-weight: 700;
  line-height: var(--jbl-lh-tight);
}

.jbl-display {
  font-size: var(--jbl-fs-display);
}

.jbl-display--sm {
  font-size: var(--jbl-fs-display-sm);
}

.jbl-title {
  font-size: var(--jbl-fs-xl);
  line-height: var(--jbl-lh-snug);
}

.jbl-subtitle {
  font-family: var(--jbl-font-body);
  font-size: var(--jbl-fs-lg);
  font-weight: 600;
  color: var(--jbl-gold);
  text-transform: uppercase;
  letter-spacing: var(--jbl-tracking-wider);
}

.jbl-body {
  font-family: var(--jbl-font-body);
  font-size: var(--jbl-fs-body);
  line-height: var(--jbl-lh-body);
}

.jbl-body--light {
  color: var(--jbl-parchment);
}

.jbl-body--dark {
  color: var(--jbl-ink);
}

.jbl-muted {
  color: var(--jbl-ink-muted);
}

.jbl-gold {
  color: var(--jbl-gold);
}

.jbl-caps {
  text-transform: uppercase;
  letter-spacing: var(--jbl-tracking-wide);
  font-weight: 700;
}

/* ==========================================================================
   4. LAYOUT PRIMITIVES
   ========================================================================== */

.jbl-container {
  width: 100%;
  max-width: var(--jbl-container);
  margin: 0 auto;
  padding: 0 var(--jbl-gutter);
}

.jbl-section {
  width: 100%;
  padding: var(--jbl-section-pad-y) 0;
}

.jbl-section--sm {
  padding: var(--jbl-section-pad-y-sm) 0 24px;
}

.jbl-section--light {
  background: var(--jbl-white);
  color: var(--jbl-ink);
}

.jbl-section--cream {
  background: var(--jbl-cream);
  color: var(--jbl-ink);
}

.jbl-section--dark {
  background: var(--jbl-green-700);
  color: var(--jbl-parchment);
}

.jbl-section--darker {
  background: var(--jbl-green-850);
  color: var(--jbl-parchment);
}

.jbl-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.jbl-stack--lg {
  gap: 1.5rem;
}

.jbl-center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.jbl-prose-narrow {
  max-width: var(--jbl-content-wide);
}

/* ==========================================================================
   5. COMPONENTS — BUTTONS, BADGES, LINKS
   ========================================================================== */

.jbl-btn {
  display: inline-block;
  font-family: var(--jbl-font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: var(--jbl-tracking-caps);
  text-decoration: none;
  text-transform: uppercase;
  text-align: center;
  padding: 16px 32px;
  border: 2px solid transparent;
  max-width: 100%;
  cursor: pointer;
  transition: background var(--jbl-ease), color var(--jbl-ease), border-color var(--jbl-ease), transform var(--jbl-ease-slow);
}

.jbl-btn--primary {
  background: var(--jbl-white);
  color: var(--jbl-green-900);
  border-color: var(--jbl-white);
}

.jbl-btn--primary:hover {
  background: var(--jbl-gold);
  color: var(--jbl-white);
  border-color: var(--jbl-gold);
}

.jbl-btn--ghost {
  background: rgba(201, 168, 76, 0.1);
  color: var(--jbl-gold);
  border-color: var(--jbl-gold-border-strong);
}

.jbl-btn--ghost:hover {
  background: rgba(201, 168, 76, 0.2);
}

.jbl-btn--block {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 16px 20px;
  border-radius: var(--jbl-radius-lg);
  border-width: 1px;
}

.jbl-btn--block.jbl-btn--primary {
  border-color: transparent;
}

.jbl-btn--block.jbl-btn--primary:hover {
  background: var(--jbl-cream-warm);
  color: var(--jbl-green-850);
  transform: translateY(-2px);
}

.jbl-btn__label {
  font-size: var(--jbl-fs-md);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--jbl-tracking-wide);
  margin-bottom: 4px;
}

.jbl-btn__sub {
  font-size: var(--jbl-fs-sm);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  opacity: 0.8;
}

.jbl-text-link {
  color: var(--jbl-gold);
  font-family: var(--jbl-font-body);
  font-size: 0.93rem;
  text-decoration: underline;
  transition: color var(--jbl-ease);
}

.jbl-text-link:hover {
  color: var(--jbl-gold-light);
}

.jbl-badge {
  display: inline-block;
  font-family: var(--jbl-font-body);
  font-size: var(--jbl-fs-xs);
  font-weight: 700;
  color: var(--jbl-white);
  background: var(--jbl-gold);
  padding: 8px 16px;
  border-radius: var(--jbl-radius-sm);
  letter-spacing: var(--jbl-tracking-badge);
  text-transform: uppercase;
}

.jbl-badge--pulse {
  animation: jbl-pulse 2s infinite;
}

@keyframes jbl-pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}

/* ==========================================================================
   6. COMPONENTS — STATS, FEATURE ROWS, CALLOUTS
   ========================================================================== */

.jbl-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.jbl-stat {
  text-align: center;
  padding: 20px 12px;
  border: 2px solid var(--jbl-cream);
  border-radius: var(--jbl-radius-lg);
}

.jbl-stat__number {
  display: block;
  font-family: var(--jbl-font-body);
  font-size: 2rem;
  font-weight: 700;
  color: var(--jbl-gold);
  line-height: 1;
}

.jbl-stat__label {
  display: block;
  font-family: var(--jbl-font-body);
  font-size: var(--jbl-fs-md);
  font-weight: 600;
  color: var(--jbl-ink);
  text-transform: uppercase;
  letter-spacing: var(--jbl-tracking-wide);
  margin-top: 8px;
}

.jbl-feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.jbl-feature-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--jbl-font-body);
  font-size: 0.97rem;
}

.jbl-feature-list__icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--jbl-gold);
}

.jbl-feature-list__icon svg {
  width: 100%;
  height: 100%;
}

.jbl-callout {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--jbl-gold-soft);
  border-radius: var(--jbl-radius-md);
  border-left: 3px solid var(--jbl-gold);
}

.jbl-callout__text {
  font-family: var(--jbl-font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--jbl-parchment);
}

.jbl-panel {
  background: rgba(255, 255, 255, 0.05);
  padding: 32px 24px;
  border-radius: var(--jbl-radius-xl);
  border: 1px solid var(--jbl-gold-border);
}

.jbl-media {
  border-radius: var(--jbl-radius-lg);
  box-shadow: var(--jbl-shadow);
  object-fit: cover;
}

.jbl-media--xl {
  border-radius: var(--jbl-radius-xl);
}

/* ==========================================================================
   7. LOGO
   ========================================================================== */

.jbl-logo {
  display: block;
  line-height: 0;
  font-size: 0;
}

.jbl-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.jbl-logo--nav {
  height: 48px;
  width: auto;
}

.jbl-logo--nav img {
  height: 100%;
  width: auto;
}

.jbl-logo--hero {
  width: min(400px, 100%);
}

/* ==========================================================================
   8. HERO + NAV
   ========================================================================== */

.wf-hero,
.jbl-hero {
  font-family: var(--jbl-font-display);
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100vh;
  background: var(--jbl-green-800);
}

.wf-hero--nav-only {
  min-height: 0;
  height: auto;
  background: transparent;
}

.wf-hero__nav,
.jbl-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--jbl-green-900);
  padding: 0 40px;
  height: var(--jbl-nav-height);
  position: relative;
  z-index: 10;
  border-bottom: 1px solid var(--jbl-gold-muted);
  flex-shrink: 0;
}

.wf-hero__nav-brand,
.jbl-nav__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  line-height: 0;
}

.wf-hero__nav-logo,
.jbl-nav__logo {
  height: 48px;
  width: auto;
  flex-shrink: 0;
}

.wf-hero__nav-logo img,
.jbl-nav__logo img {
  display: block;
  height: 100%;
  width: auto;
}

.wf-hero__nav-links,
.jbl-nav__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 36px;
  align-items: center;
}

.wf-hero__nav-links li a,
.jbl-nav__links li a {
  color: var(--jbl-parchment);
  text-decoration: none;
  font-family: var(--jbl-font-body);
  font-size: 0.95rem;
  letter-spacing: var(--jbl-tracking-tight);
  transition: color var(--jbl-ease);
}

.wf-hero__nav-links li a:hover,
.jbl-nav__links li a:hover {
  color: var(--jbl-gold);
}

.wf-hero__nav-links li a.is-active,
.wf-hero__nav-links li a[aria-current="page"],
.jbl-nav__links li a.is-active,
.jbl-nav__links li a[aria-current="page"] {
  color: var(--jbl-gold);
  font-weight: 600;
}

.wf-hero__body,
.jbl-hero__body {
  position: relative;
  flex: 1;
  display: flex;
  align-items: stretch;
  min-height: 0;
  overflow: hidden;
}

.wf-hero__bg-image,
.jbl-hero__bg {
  position: absolute;
  inset: 0;
  background-image: var(--jbl-asset-hero);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  z-index: 0;
  pointer-events: none;
}

.wf-hero__overlay,
.jbl-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(20, 27, 14, 0.92) 0%,
    rgba(20, 27, 14, 0.82) 30%,
    rgba(20, 27, 14, 0.45) 55%,
    rgba(20, 27, 14, 0) 75%
  );
  z-index: 1;
  pointer-events: none;
}

.wf-hero__content,
.jbl-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--jbl-content-medium);
  padding: clamp(28px, 5vw, 56px) clamp(20px, 4vw, 50px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  animation: jbl-hero-in-left 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@keyframes jbl-hero-in-left {
  from {
    opacity: 0;
    transform: translateX(-36px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes jbl-hero-in-up {
  from {
    opacity: 0;
    transform: translateY(36px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.wf-hero__emblem,
.jbl-hero__logo {
  margin: 0 0 16px;
  padding: 0;
  width: min(400px, 100%);
  line-height: 0;
  font-size: 0;
}

.wf-hero__emblem img,
.jbl-hero__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.wf-hero__subheadline,
.jbl-hero__subheadline {
  font-family: var(--jbl-font-display);
  font-size: clamp(1.25rem, 2.8vw, 1.75rem);
  font-weight: 600;
  color: var(--jbl-white);
  margin: 0 0 16px;
  line-height: var(--jbl-lh-title);
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.7);
}

.wf-hero__description,
.jbl-hero__description {
  font-family: var(--jbl-font-body);
  font-size: clamp(0.95rem, 2.2vw, 1.05rem);
  font-weight: 400;
  color: var(--jbl-parchment-soft);
  line-height: var(--jbl-lh-loose);
  margin: 0 0 22px;
  max-width: var(--jbl-content-narrow);
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

.wf-hero__features,
.jbl-hero__features {
  list-style: none;
  margin: 0 0 30px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.wf-hero__features li,
.jbl-hero__features li {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--jbl-parchment);
  font-family: var(--jbl-font-body);
  font-size: clamp(0.9rem, 2.2vw, 0.97rem);
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

.wf-hero__feature-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wf-hero__feature-icon svg {
  width: 100%;
  height: 100%;
}

.wf-hero__cta-group,
.jbl-hero__cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.wf-hero__cta-btn {
  display: inline-block;
  background: var(--jbl-white);
  color: var(--jbl-green-900);
  font-family: var(--jbl-font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: var(--jbl-tracking-caps);
  text-decoration: none;
  padding: 16px 32px;
  border: 2px solid var(--jbl-white);
  transition: background var(--jbl-ease), color var(--jbl-ease), border-color var(--jbl-ease);
  text-transform: uppercase;
  max-width: 100%;
  text-align: center;
}

.wf-hero__cta-btn:hover {
  background: var(--jbl-gold);
  color: var(--jbl-white);
  border-color: var(--jbl-gold);
}

.wf-hero__cta-link {
  color: var(--jbl-gold);
  font-family: var(--jbl-font-body);
  font-size: 0.93rem;
  text-decoration: underline;
  cursor: pointer;
  transition: color var(--jbl-ease);
}

.wf-hero__cta-link:hover {
  color: var(--jbl-gold-light);
}

.wf-hero__nav,
.wf-hero__content,
.wf-hero__text-col,
.wf-hero__tablet-preview {
  position: relative;
  z-index: 2;
}

@media (min-width: 901px) {
  .wf-hero__content,
  .jbl-hero__content {
    max-width: 744px;
    padding: 58px 60px 67px 60px;
  }

  .wf-hero__emblem,
  .jbl-hero__logo,
  .jbl-logo--hero {
    width: min(480px, 100%);
    margin-bottom: 19px;
  }

  .wf-hero__subheadline,
  .jbl-hero__subheadline {
    font-size: clamp(1.5rem, 3.36vw, 2.1rem);
    margin-bottom: 19px;
  }

  .wf-hero__description,
  .jbl-hero__description {
    font-size: clamp(1.14rem, 2.64vw, 1.26rem);
    margin-bottom: 26px;
    max-width: 624px;
  }

  .wf-hero__features,
  .jbl-hero__features {
    gap: 12px;
    margin-bottom: 36px;
  }

  .wf-hero__features li,
  .jbl-hero__features li {
    font-size: clamp(1.08rem, 2.64vw, 1.164rem);
    gap: 17px;
  }

  .wf-hero__feature-icon {
    width: 34px;
    height: 34px;
  }

  .wf-hero__cta-group,
  .jbl-hero__cta {
    gap: 17px;
  }

  .wf-hero__cta-btn {
    font-size: 1.14rem;
    padding: 19px 38px;
  }

  .wf-hero__cta-link {
    font-size: 1.116rem;
  }
}

@media (max-width: 900px) {
  .wf-hero__nav,
  .jbl-nav {
    padding: 0 24px;
  }

  .wf-hero__nav-logo,
  .jbl-nav__logo,
  .jbl-logo--nav {
    height: 40px;
  }

  .wf-hero__nav-links,
  .jbl-nav__links {
    gap: 14px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .wf-hero__nav-links li a,
  .jbl-nav__links li a {
    font-size: 0.88rem;
  }

  .wf-hero__body,
  .jbl-hero__body {
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - var(--jbl-nav-height));
  }

  .wf-hero__content,
  .jbl-hero__content {
    max-width: 560px;
    margin: 0 auto;
    align-items: center;
    text-align: center;
    animation-name: jbl-hero-in-up;
  }

  .wf-hero__emblem,
  .jbl-hero__logo,
  .jbl-logo--hero {
    width: min(320px, 85%);
    margin-left: auto;
    margin-right: auto;
  }

  .wf-hero__description,
  .jbl-hero__description {
    max-width: 100%;
  }

  .wf-hero__features,
  .jbl-hero__features {
    align-items: center;
    width: 100%;
  }

  .wf-hero__features li,
  .jbl-hero__features li {
    justify-content: center;
    text-align: left;
    max-width: 360px;
  }

  .wf-hero__cta-group,
  .jbl-hero__cta {
    align-items: center;
    width: 100%;
  }

  .wf-hero__overlay,
  .jbl-hero__overlay {
    background: linear-gradient(
      to bottom,
      rgba(20, 27, 14, 0.88) 0%,
      rgba(20, 27, 14, 0.78) 55%,
      rgba(20, 27, 14, 0.7) 100%
    );
  }

  .wf-hero__bg-image,
  .jbl-hero__bg {
    background-position: center center;
  }
}

@media (max-width: 640px) {
  .wf-hero,
  .jbl-hero {
    min-height: 100svh;
  }

  .wf-hero.wf-hero--nav-only {
    min-height: 0;
    height: auto;
  }

  .wf-hero__bg-image,
  .jbl-hero__bg {
    background-image: var(--jbl-asset-hero-mobile);
    background-position: center top;
  }

  .wf-hero__nav,
  .jbl-nav {
    flex-direction: column;
    height: auto;
    padding: 14px 16px;
    gap: 12px;
  }

  html.site-nav-js .wf-hero__nav,
  html.site-nav-js .jbl-nav {
    flex-direction: row !important;
    height: 64px !important;
    min-height: 64px !important;
    padding: 0 16px !important;
    gap: 12px !important;
  }

  .wf-hero__nav-brand,
  .jbl-nav__brand {
    justify-content: center;
    width: 100%;
  }

  html.site-nav-js .wf-hero__nav-brand,
  html.site-nav-js .jbl-nav__brand {
    width: auto !important;
    justify-content: flex-start !important;
  }

  .wf-hero__nav-logo,
  .jbl-nav__logo,
  .jbl-logo--nav {
    height: 36px;
  }

  .wf-hero__nav-links,
  .jbl-nav__links {
    width: 100%;
    gap: 10px 16px;
    justify-content: center;
  }

  html.site-nav-js .wf-hero__nav-links,
  html.site-nav-js .jbl-nav__links {
    width: auto !important;
    justify-content: flex-start !important;
  }

  .wf-hero__nav-links li a,
  .jbl-nav__links li a {
    font-size: 0.82rem;
  }

  .wf-hero__body,
  .jbl-hero__body {
    min-height: auto;
    flex: 1;
  }

  .wf-hero__content,
  .jbl-hero__content {
    padding: 120px 20px 40px;
    align-items: center;
    text-align: center;
  }

  .wf-hero__emblem,
  .jbl-hero__logo,
  .jbl-logo--hero {
    width: min(240px, 78%);
  }

  .wf-hero__subheadline,
  .jbl-hero__subheadline {
    font-size: clamp(1.2rem, 5.5vw, 1.45rem);
  }

  .wf-hero__description,
  .jbl-hero__description {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }

  .wf-hero__features,
  .jbl-hero__features {
    display: none;
  }

  .wf-hero__cta-btn,
  .jbl-hero .jbl-btn {
    width: 100%;
    max-width: 320px;
    padding: 14px 20px;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
  }

  .wf-hero__overlay,
  .jbl-hero__overlay {
    background: rgba(20, 27, 14, 0.41);
  }
}

@media (min-width: 570px) and (max-width: 769px) {
  .wf-hero__bg-image,
  .jbl-hero__bg {
    background-image: var(--jbl-asset-hero-mobile);
    background-position: center top;
    background-size: cover;
  }

  .wf-hero__body,
  .jbl-hero__body {
    align-items: flex-end;
    justify-content: center;
    min-height: calc(100vh - var(--jbl-nav-height));
  }

  .wf-hero__content,
  .jbl-hero__content {
    padding: 24px 28px 48px;
    margin-top: auto;
    align-items: center;
    text-align: center;
  }

  .wf-hero__overlay,
  .jbl-hero__overlay {
    background: rgba(20, 27, 14, 0.41);
  }
}

@media (max-width: 400px) {
  .wf-hero__nav-links,
  .jbl-nav__links {
    gap: 8px 12px;
  }

  .wf-hero__emblem,
  .jbl-hero__logo,
  .jbl-logo--hero {
    width: min(200px, 85%);
  }

  .wf-hero__features li,
  .jbl-hero__features li {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }
}

/* ==========================================================================
   9. ABOUT SECTION
   ========================================================================== */

.about-section-v1 {
  background: var(--jbl-white);
  padding: var(--jbl-section-pad-y) 0;
}

.about-section-v1 .about-container {
  max-width: var(--jbl-container);
  margin: 0 auto;
  padding: 0 var(--jbl-gutter);
}

.about-section-v1 .about-content {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 64px;
  align-items: center;
}

.about-section-v1 .about-title {
  font-family: var(--jbl-font-display);
  font-size: var(--jbl-fs-display-sm);
  font-weight: 700;
  color: var(--jbl-ink);
  line-height: var(--jbl-lh-tight);
  margin: 0 0 16px;
}

.about-section-v1 .about-subtitle {
  font-family: var(--jbl-font-body);
  font-size: var(--jbl-fs-lg);
  font-weight: 600;
  color: var(--jbl-gold);
  text-transform: uppercase;
  letter-spacing: var(--jbl-tracking-wider);
  margin: 0 0 32px;
}

.about-section-v1 .about-text p {
  font-family: var(--jbl-font-body);
  font-size: var(--jbl-fs-body);
  line-height: var(--jbl-lh-body);
  color: var(--jbl-ink);
  margin: 0 0 24px;
}

.about-section-v1 .about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.about-section-v1 .stat-item {
  text-align: center;
  padding: 20px 12px;
  border: 2px solid var(--jbl-cream);
  border-radius: var(--jbl-radius-lg);
}

.about-section-v1 .stat-number {
  display: block;
  font-family: var(--jbl-font-body);
  font-size: 2rem;
  font-weight: 700;
  color: var(--jbl-gold);
  line-height: 1;
}

.about-section-v1 .stat-label {
  display: block;
  font-family: var(--jbl-font-body);
  font-size: var(--jbl-fs-md);
  font-weight: 600;
  color: var(--jbl-ink);
  text-transform: uppercase;
  letter-spacing: var(--jbl-tracking-wide);
  margin-top: 8px;
}

.about-section-v1 .about-image {
  position: relative;
}

.about-section-v1 .farmer-portrait {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--jbl-radius-lg);
  box-shadow: var(--jbl-shadow);
}

@media (max-width: 768px) {
  .about-section-v1 .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-section-v1 .about-stats,
  .jbl-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ==========================================================================
   10. SERVICES SECTION
   ========================================================================== */

.services-section-v1 {
  background: var(--jbl-green-700);
  padding: var(--jbl-section-pad-y) 0;
}

.services-section-v1 .services-container {
  max-width: var(--jbl-container);
  margin: 0 auto;
  padding: 0 var(--jbl-gutter);
}

.services-section-v1 .services-header {
  max-width: var(--jbl-content-wide);
  margin: 0 auto 64px;
  text-align: center;
}

.services-section-v1 .services-title {
  font-family: var(--jbl-font-display);
  font-size: var(--jbl-fs-display);
  font-weight: 700;
  color: var(--jbl-gold);
  line-height: var(--jbl-lh-tight);
  margin: 0 0 24px;
}

.services-section-v1 .services-intro {
  font-family: var(--jbl-font-body);
  font-size: var(--jbl-fs-body);
  line-height: var(--jbl-lh-body);
  color: var(--jbl-parchment);
  margin: 0;
}

.services-section-v1 .services-flow {
  max-width: var(--jbl-content-flow);
  margin: 0 auto;
}

.services-section-v1 .service-entry {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid var(--jbl-gold-border);
  align-items: start;
}

.services-section-v1 .service-entry:last-child {
  border-bottom: none;
}

.services-section-v1 .entry-number {
  font-family: var(--jbl-font-body);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--jbl-gold);
  line-height: 1;
  opacity: 0.6;
}

.services-section-v1 .entry-title {
  font-family: var(--jbl-font-display);
  font-size: var(--jbl-fs-xl);
  font-weight: 700;
  color: var(--jbl-white);
  line-height: var(--jbl-lh-snug);
  margin: 0 0 12px;
}

.services-section-v1 .entry-description {
  font-family: var(--jbl-font-body);
  font-size: var(--jbl-fs-base);
  line-height: var(--jbl-lh-body);
  color: var(--jbl-parchment);
  margin: 0;
}

@media (max-width: 768px) {
  .services-section-v1 .service-entry {
    grid-template-columns: 50px 1fr;
    gap: 20px;
    padding: 32px 0;
  }

  .services-section-v1 .entry-number {
    font-size: 1.8rem;
  }
}

/* ==========================================================================
   11. GALLERY SECTION
   ========================================================================== */

.gallery-section-v3 {
  background: var(--jbl-cream);
  padding: var(--jbl-section-pad-y) 0;
}

.gallery-section-v3 .gallery-container {
  max-width: var(--jbl-container);
  margin: 0 auto;
  padding: 0 var(--jbl-gutter);
}

.gallery-section-v3 .gallery-header {
  text-align: center;
  margin-bottom: 48px;
  max-width: var(--jbl-content-wide);
  margin-left: auto;
  margin-right: auto;
}

.gallery-section-v3 .gallery-title {
  font-family: var(--jbl-font-display);
  font-size: var(--jbl-fs-display-sm);
  font-weight: 700;
  color: var(--jbl-ink);
  line-height: var(--jbl-lh-tight);
  margin: 0 0 20px;
}

.gallery-section-v3 .gallery-intro {
  font-family: var(--jbl-font-body);
  font-size: var(--jbl-fs-body);
  line-height: var(--jbl-lh-body);
  color: var(--jbl-ink);
  margin: 0;
}

.gallery-section-v3 .gallery-feature {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.gallery-section-v3 .feature-main {
  position: relative;
  height: auto;
  border-radius: var(--jbl-radius-xl);
  overflow: hidden;
  box-shadow: var(--jbl-shadow);
  background: var(--jbl-green-700);
}

.gallery-section-v3 .feature-image {
  width: 50%;
  height: auto;
  display: block;
  margin: 0 auto;
  transition: transform var(--jbl-ease-slow);
}

.gallery-section-v3 .feature-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(30, 36, 32, 0.85));
  padding: 40px 32px 24px;
}

.gallery-section-v3 .feature-caption {
  font-family: var(--jbl-font-body);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--jbl-white);
  margin: 0;
  text-align: center;
}

.gallery-section-v3 .gallery-thumbnails {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
}

.gallery-section-v3 .thumb-item {
  position: relative;
  cursor: pointer;
  border-radius: var(--jbl-radius-lg);
  overflow: hidden;
  transition: all var(--jbl-ease-slow);
  border: 3px solid transparent;
}

.gallery-section-v3 .thumb-item.active {
  border-color: var(--jbl-gold);
  transform: scale(1.05);
}

.gallery-section-v3 .thumb-item:hover {
  transform: scale(1.03);
}

.gallery-section-v3 .thumb-image {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  object-position: center;
  display: block;
  background: var(--jbl-parchment);
}

.gallery-section-v3 .thumb-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(30, 36, 32, 0.9);
  color: var(--jbl-white);
  padding: 8px 12px;
  font-family: var(--jbl-font-body);
  font-size: var(--jbl-fs-sm);
  font-weight: 500;
  text-align: center;
}

@media (max-width: 768px) {
  .gallery-section-v3 .gallery-thumbnails {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ==========================================================================
   12. CTA SECTION
   ========================================================================== */

.cta-section-v3 {
  background: var(--jbl-green-850);
  padding: var(--jbl-section-pad-y) 0;
}

.cta-section-v3 .cta-container {
  max-width: var(--jbl-container);
  margin: 0 auto;
  padding: 0 var(--jbl-gutter);
}

.cta-section-v3 .urgency-header {
  text-align: center;
  margin-bottom: 48px;
}

.cta-section-v3 .urgency-badge {
  display: inline-block;
  font-family: var(--jbl-font-body);
  font-size: var(--jbl-fs-xs);
  font-weight: 700;
  color: var(--jbl-white);
  background: var(--jbl-gold);
  padding: 8px 16px;
  border-radius: var(--jbl-radius-sm);
  letter-spacing: var(--jbl-tracking-badge);
  text-transform: uppercase;
  margin-bottom: 16px;
  animation: jbl-pulse 2s infinite;
}

.cta-section-v3 .urgency-title {
  font-family: var(--jbl-font-display);
  font-size: var(--jbl-fs-display);
  font-weight: 700;
  color: var(--jbl-gold);
  line-height: var(--jbl-lh-tight);
  margin: 0;
}

.cta-section-v3 .cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.cta-section-v3 .offer-description {
  font-family: var(--jbl-font-body);
  font-size: var(--jbl-fs-body);
  line-height: var(--jbl-lh-body);
  color: var(--jbl-parchment);
  margin: 0 0 32px;
}

.cta-section-v3 .urgency-points {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta-section-v3 .urgency-point {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--jbl-gold-soft);
  border-radius: var(--jbl-radius-md);
  border-left: 3px solid var(--jbl-gold);
}

.cta-section-v3 .point-icon {
  font-size: 1.2rem;
}

.cta-section-v3 .point-text {
  font-family: var(--jbl-font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--jbl-parchment);
}

.cta-section-v3 .action-panel {
  background: rgba(255, 255, 255, 0.05);
  padding: 32px 24px;
  border-radius: var(--jbl-radius-xl);
  border: 1px solid var(--jbl-gold-border);
}

.cta-section-v3 .action-title {
  font-family: var(--jbl-font-display);
  font-size: var(--jbl-fs-xl);
  font-weight: 700;
  color: var(--jbl-gold);
  text-align: center;
  margin: 0 0 24px;
}

.cta-section-v3 .action-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.cta-section-v3 .action-primary,
.cta-section-v3 .action-secondary {
  display: flex;
  flex-direction: column;
  padding: 16px 20px;
  border-radius: var(--jbl-radius-lg);
  text-decoration: none;
  transition: all var(--jbl-ease-slow);
  text-align: center;
}

.cta-section-v3 .action-primary {
  background: var(--jbl-white);
  color: var(--jbl-green-850);
}

.cta-section-v3 .action-primary:hover {
  background: var(--jbl-cream-warm);
  transform: translateY(-2px);
}

.cta-section-v3 .action-secondary {
  background: var(--jbl-gold-soft);
  color: var(--jbl-gold);
  border: 1px solid var(--jbl-gold-border-strong);
}

.cta-section-v3 .action-secondary:hover {
  background: rgba(201, 168, 76, 0.2);
}

.cta-section-v3 .button-text {
  font-family: var(--jbl-font-body);
  font-size: var(--jbl-fs-md);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--jbl-tracking-wide);
  margin-bottom: 4px;
}

.cta-section-v3 .button-sub {
  font-family: var(--jbl-font-body);
  font-size: var(--jbl-fs-sm);
  opacity: 0.8;
}

.cta-section-v3 .guarantee-bar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.cta-section-v3 .guarantee-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}

.cta-section-v3 .guarantee-icon {
  font-size: 1.2rem;
}

.cta-section-v3 .guarantee-text {
  font-family: var(--jbl-font-body);
  font-size: var(--jbl-fs-xs);
  font-weight: 600;
  color: var(--jbl-ink-muted);
  text-transform: uppercase;
  letter-spacing: var(--jbl-tracking-wide);
}

@media (max-width: 768px) {
  .cta-section-v3 .cta-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cta-section-v3 .guarantee-bar {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   13. FOOTER
   ========================================================================== */

.footer-section-v1 {
  background: var(--jbl-green-700);
  padding: var(--jbl-section-pad-y-sm) 0 24px;
}

.footer-section-v1 .footer-container {
  max-width: var(--jbl-container);
  margin: 0 auto;
  padding: 0 var(--jbl-gutter);
}

.footer-section-v1 .footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 64px;
  margin-bottom: 48px;
}

.footer-section-v1 .brand-name {
  font-family: var(--jbl-font-display);
  font-size: var(--jbl-fs-3xl);
  font-weight: 700;
  color: var(--jbl-gold);
  margin: 0 0 16px;
}

.footer-section-v1 .brand-description {
  font-family: var(--jbl-font-body);
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--jbl-parchment);
  margin: 0 0 24px;
  max-width: 400px;
}

.footer-section-v1 .contact-info {
  margin-bottom: 16px;
}

.footer-section-v1 .contact-line {
  font-family: var(--jbl-font-body);
  font-size: var(--jbl-fs-md);
  color: var(--jbl-ink-muted);
  margin: 0 0 8px;
}

.footer-section-v1 .contact-line strong {
  color: var(--jbl-gold);
}

.footer-section-v1 .footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.footer-section-v1 .link-title {
  font-family: var(--jbl-font-body);
  font-size: var(--jbl-fs-md);
  font-weight: 700;
  color: var(--jbl-gold);
  text-transform: uppercase;
  letter-spacing: var(--jbl-tracking-wide);
  margin: 0 0 16px;
}

.footer-section-v1 .link-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section-v1 .link-list li {
  margin-bottom: 8px;
}

.footer-section-v1 .footer-link {
  font-family: var(--jbl-font-body);
  font-size: var(--jbl-fs-md);
  color: var(--jbl-ink-muted);
  text-decoration: none;
  transition: color var(--jbl-ease);
}

.footer-section-v1 .footer-link:hover {
  color: var(--jbl-gold);
}

.footer-section-v1 .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--jbl-gold-border);
}

.footer-section-v1 .copyright {
  font-family: var(--jbl-font-body);
  font-size: var(--jbl-fs-sm);
  color: var(--jbl-ink-muted);
  margin: 0 0 4px;
}

.footer-section-v1 .tagline {
  font-family: var(--jbl-font-body);
  font-size: var(--jbl-fs-sm);
  color: var(--jbl-gold);
  font-style: italic;
  margin: 0;
}

.footer-section-v1 .footer-social {
  display: flex;
  gap: 20px;
}

.footer-section-v1 .social-link {
  font-family: var(--jbl-font-body);
  font-size: var(--jbl-fs-md);
  color: var(--jbl-ink-muted);
  text-decoration: none;
  transition: color var(--jbl-ease);
}

.footer-section-v1 .social-link:hover {
  color: var(--jbl-gold);
}

@media (max-width: 768px) {
  .footer-section-v1 .footer-main {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-section-v1 .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-section-v1 .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
}

/* ==========================================================================
   14. SECTION SHELL + RESPONSIVE GUARDS
   ========================================================================== */

.wf-assembled-hero-shell {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  color-scheme: normal;
}

.site-section-wf {
  width: 100%;
  margin: 0;
  padding: 0;
  border-top: none;
  background: transparent;
  color: inherit;
}

@media (max-width: 900px) {
  .site-section-wf--coordinated[data-wf-section]:not([data-wf-section="hero"]) {
    padding-left: max(0rem, env(safe-area-inset-left, 0px));
    padding-right: max(0rem, env(safe-area-inset-right, 0px));
  }

  .site-section-wf--coordinated[data-wf-section]:not([data-wf-section="hero"]) img,
  .site-section-wf--coordinated[data-wf-section]:not([data-wf-section="hero"]) video,
  .site-section-wf--coordinated[data-wf-section]:not([data-wf-section="hero"]) svg {
    max-width: 100%;
    height: auto;
  }

  .site-section-wf--coordinated[data-wf-section]:not([data-wf-section="hero"]) table {
    display: block;
    width: 100% !important;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 768px) {
  .site-section-wf--coordinated[data-wf-section]:not([data-wf-section="hero"]) {
    min-width: 0;
  }

  .site-section-wf--coordinated[data-wf-section]:not([data-wf-section="hero"]) [style*="display:grid"],
  .site-section-wf--coordinated[data-wf-section]:not([data-wf-section="hero"]) [style*="display: grid"] {
    grid-template-columns: 1fr !important;
  }

  .site-section-wf--coordinated[data-wf-section]:not([data-wf-section="hero"]) [style*="flex-direction:row"],
  .site-section-wf--coordinated[data-wf-section]:not([data-wf-section="hero"]) [style*="flex-direction: row"] {
    flex-direction: column !important;
  }
}

@media (max-width: 480px) {
  .site-section-wf--coordinated[data-wf-section]:not([data-wf-section="hero"]) button,
  .site-section-wf--coordinated[data-wf-section]:not([data-wf-section="hero"]) .button,
  .site-section-wf--coordinated[data-wf-section]:not([data-wf-section="hero"]) a[class*="btn"],
  .site-section-wf--coordinated[data-wf-section]:not([data-wf-section="hero"]) a[class*="cta"],
  .jbl-btn {
    max-width: 100%;
    word-break: break-word;
  }
}

/* ==========================================================================
   15. MOTION (optional scroll reveal)
   ========================================================================== */

@keyframes jbl-section-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

html.wf-anim-js .site-preview-root [data-wf-section]:not(.wf-section--in) .wf-section-body > * > * {
  opacity: 0;
}

.site-preview-root [data-wf-section].wf-section--in .wf-section-body > * > * {
  animation: jbl-section-in 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@media (prefers-reduced-motion: reduce) {
  html.wf-anim-js .site-preview-root [data-wf-section]:not(.wf-section--in) .wf-section-body > * > * {
    opacity: 1;
  }

  .site-preview-root [data-wf-section].wf-section--in .wf-section-body > * > * {
    animation: none;
  }

  .jbl-badge--pulse,
  .cta-section-v3 .urgency-badge {
    animation: none;
  }

  .wf-hero__content,
  .jbl-hero__content {
    animation: none;
  }
}
