/* ==========================================================
   Jackson Landing — Property Page Styles
   Companion to: /jackson-landing/index.php
   Root path: /jackson-landing-styles.css
   Brand: #010101 | #232932 | #564D41 | #fff
   Design: Editorial, airy, serif-led, mobile-first
   ========================================================== */

/* ----------------------------------------------------------
   0. Imports & Custom Properties
---------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --black:       #010101;
  --navy:        #232932;
  --brown:       #564D41;
  --brown-light: #8a7f74;
  --white:       #ffffff;
  --off-white:   #f8f7f5;
  --border:      #e4e1dc;
  --text-body:   #3a3530;
  --text-muted:  #7a746e;

  --serif: 'Playfair Display', Georgia, serif;
  --sans:  'Inter', system-ui, sans-serif;

  --max-w: 1160px;
  --gutter: clamp(20px, 5vw, 60px);
  --section-gap: clamp(64px, 10vw, 120px);
}

/* ----------------------------------------------------------
   2. Hero
---------------------------------------------------------- */
.jl-hero {
  position: relative;
  min-height: clamp(480px, 70vh, 760px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--navy);
  margin-top: 151px; /* offset for sticky site header on desktop */
}

/* Gallery page hero header also needs the offset */
.jl-gallery-header {
  margin-top: 151px;
}

@media (max-width: 768px) {
  .jl-hero,
  .jl-gallery-header {
    margin-top: 96px; /* offset for sticky site header on mobile */
  }
}

.jl-hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('jackson-landing/new-images/main-photo/hero1.webp');
  background-size: cover;
  background-position: center 40%;
  transform: scale(1.04);
  transition: transform 8s ease-out;
}
.jl-hero__bg.loaded { transform: scale(1); }

.jl-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(1,1,1,0.08) 0%,
    rgba(1,1,1,0.18) 40%,
    rgba(1,1,1,0.62) 100%
  );
}

.jl-hero__content {
  position: relative;
  z-index: 2;
  padding: clamp(40px, 8vw, 80px) var(--gutter) clamp(48px, 8vw, 80px);
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}

.jl-hero__eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin: 0 0 20px;
}

.jl-hero__headline {
  font-family: var(--serif);
  font-size: clamp(42px, 7vw, 88px);
  font-weight: 700;
  line-height: 1.0;
  color: var(--white);
  margin: 0 0 28px;
  max-width: 700px;
}
.jl-hero__headline em {
  font-style: italic;
  font-weight: 400;
}

.jl-hero__sub {
  font-family: var(--sans);
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  max-width: 520px;
  line-height: 1.65;
  margin: 0 0 36px;
}

.jl-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.jl-btn-primary {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: var(--brown);
  color: var(--white);
  border: none;
  padding: 15px 32px;
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  transition: background .2s;
}
.jl-btn-primary:hover { background: #6e6255; color: var(--white); }

.jl-btn-ghost {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.5);
  padding: 14px 28px;
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: border-color .2s, color .2s;
}
.jl-btn-ghost:hover {
  border-color: var(--white);
  color: var(--white);
}

/* ----------------------------------------------------------
   3. Stats row
---------------------------------------------------------- */
.jl-stats {
  background: var(--navy);
  padding: 0;
}

.jl-stats__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,0.1);
}

.jl-stat {
  padding: 32px 20px;
  border-right: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}
.jl-stat:last-child { border-right: none; }

.jl-stat__value {
  font-family: var(--serif);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 600;
  color: var(--white);
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}

.jl-stat__label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

@media (max-width: 600px) {
  .jl-stats__inner { grid-template-columns: repeat(2, 1fr); }
  .jl-stat:nth-child(2) { border-right: none; }
  .jl-stat { border-bottom: 1px solid rgba(255,255,255,0.1); }
}

/* ----------------------------------------------------------
   4. Common section wrapper
---------------------------------------------------------- */
.jl-section {
  padding: var(--section-gap) var(--gutter);
}
.jl-section--off-white { background: var(--off-white); }
.jl-section--white     { background: var(--white); }
.jl-section--dark      { background: var(--navy); }

.jl-container {
  max-width: var(--max-w);
  margin: 0 auto;
}

.jl-eyebrow {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--brown);
  margin: 0 0 14px;
  display: block;
  text-align: left;
}

.jl-section-title {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
  margin: 0 0 20px;
  text-align: left;
}

/* Use on full-width sections where title should be centered */
.jl-section-title--center { text-align: center; }
.jl-section-title--light  { color: var(--white); }

/* Centered eyebrow modifier */
.jl-eyebrow--center { text-align: center; }

@media (max-width: 768px) {
  /* In two-column layouts, center everything on mobile */
  .jl-faq-layout__intro .jl-section-title,
  .jl-faq-layout__intro .jl-eyebrow,
  .jl-request-layout__left .jl-section-title,
  .jl-request-layout__left .jl-eyebrow,
  .jl-narrative__text .jl-section-title,
  .jl-narrative__text .jl-eyebrow {
    text-align: center;
  }
}

/* ----------------------------------------------------------
   5. Narrative / Description (with Read More)
---------------------------------------------------------- */
.jl-narrative {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px 80px;
  align-items: start;
}

.jl-narrative__text p {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-body);
  margin: 0 0 22px;
}

.jl-narrative__text p:last-child { margin-bottom: 0; }

.jl-read-more-wrap .jl-read-more-content {
  overflow: hidden;
  max-height: 0;
  transition: max-height .5s ease;
}
.jl-read-more-wrap.open .jl-read-more-content {
  max-height: 2000px;
}

.jl-read-more-btn {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--brown);
  background: none;
  border: none;
  border-bottom: 1px solid var(--brown);
  padding: 0 0 2px;
  cursor: pointer;
  margin-top: 24px;
  display: inline-block;
  transition: color .2s;
}
.jl-read-more-btn:hover { color: var(--navy); border-color: var(--navy); }

/* Featured image alongside narrative */
.jl-narrative__image {
  position: sticky;
  top: 80px;
}
.jl-narrative__image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  border-radius: 2px;
}
.jl-narrative__image figcaption {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 10px;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .jl-narrative {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .jl-narrative__image {
    position: static;
    width: 100vw;
    margin-left: calc(-1 * var(--gutter));
    margin-right: calc(-1 * var(--gutter));
  }
  .jl-narrative__image img {
    height: 300px;
    width: 100%;
    border-radius: 0;
  }
  .jl-narrative__image figcaption {
    padding: 0 var(--gutter);
  }
}

/* ----------------------------------------------------------
   6. Featured Photos (horizontal scroll-snap)
---------------------------------------------------------- */
.jl-photo-scroller {
  position: relative;
}

.jl-photo-scroller__track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 4px;
  scrollbar-width: none;
}
.jl-photo-scroller__track::-webkit-scrollbar { display: none; }

.jl-photo-scroller__slide {
  flex: 0 0 calc((100% - 32px) / 3);
  scroll-snap-align: start;
  margin: 0;
  border-radius: 2px;
  overflow: hidden;
}

.jl-photo-scroller__slide img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.jl-photo-scroller__slide:hover img { transform: scale(1.03); }

@media (max-width: 900px) {
  .jl-photo-scroller__slide { flex: 0 0 calc((100% - 16px) / 2); }
}

@media (max-width: 640px) {
  .jl-photo-scroller__slide {
    flex: 0 0 82%;
  }
  .jl-photo-scroller__slide img { height: 260px; }
}

.jl-featured-photos__cta {
  margin-top: 24px;
  text-align: right;
}

.jl-link-arrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--brown);
  text-decoration: none;
  border-bottom: 1px solid var(--brown);
  padding-bottom: 2px;
  transition: color .2s;
}
.jl-link-arrow:hover { color: var(--navy); border-color: var(--navy); }

@media (max-width: 640px) {
  .jl-featured-photos__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .jl-featured-photos__grid figure:first-child { grid-row: auto; }
  .jl-featured-photos__grid img { min-height: 220px; height: 220px; }
}

/* ----------------------------------------------------------
   7. Facts at a Glance
---------------------------------------------------------- */
.jl-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
}

.jl-fact {
  padding: 24px 28px;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.jl-fact:nth-child(even) { border-right: none; }
.jl-fact:nth-last-child(-n+2) { border-bottom: none; }

.jl-fact__icon {
  color: var(--brown);
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}

.jl-fact__text strong {
  display: block;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 2px;
}

.jl-fact__text span {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

@media (max-width: 560px) {
  .jl-facts { grid-template-columns: 1fr; }
  .jl-fact { border-right: none; }
  .jl-fact:nth-last-child(-n+2) { border-bottom: 1px solid var(--border); }
  .jl-fact:last-child { border-bottom: none; }
}

/* ----------------------------------------------------------
   8. Boundary / Aerial Map Feature
---------------------------------------------------------- */
.jl-aerial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 480px;
  border-radius: 4px;
  overflow: hidden;
}

.jl-aerial__image {
  position: relative;
  overflow: hidden;
}
.jl-aerial__image img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  display: block;
}

.jl-aerial__content {
  background: var(--navy);
  padding: clamp(40px, 6vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.jl-aerial__content .jl-eyebrow { color: rgba(255,255,255,0.45); }
.jl-aerial__content .jl-section-title { color: var(--white); margin-bottom: 20px; }

.jl-aerial__content p {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,0.7);
  margin: 0 0 32px;
}

@media (max-width: 768px) {
  .jl-aerial {
    grid-template-columns: 1fr;
  }
  .jl-aerial__image img { min-height: 280px; height: 280px; }
}

/* ----------------------------------------------------------
   9. Video Section
---------------------------------------------------------- */
.jl-video__wrap {
  position: relative;
  background: var(--black);
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.jl-video__element {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: var(--black);
}

/* Decorative play icon shown until the user interacts; native
   controls handle actual playback once clicked/focused. */
.jl-video__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 72px;
  height: 72px;
  min-width: 72px;
  min-height: 72px;
  max-width: 72px;
  max-height: 72px;
  flex-shrink: 0;
  box-sizing: border-box;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
  pointer-events: none;
  transition: opacity .2s, background .2s, transform .2s;
}
.jl-video__wrap:hover .jl-video__play {
  background: rgba(255,255,255,0.25);
  transform: translate(-50%, -50%) scale(1.05);
}
.jl-video__play.hidden {
  opacity: 0;
  pointer-events: none;
}
.jl-video__play i {
  display: block;
  line-height: 1;
  flex-shrink: 0;
}

/* Video layout - text left, video right */
.jl-video-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: center;
}

.jl-video-layout__text .jl-section-title { margin-bottom: 16px; }
.jl-video-layout__text p {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-muted);
  margin: 0 0 28px;
}

@media (max-width: 768px) {
  .jl-video-layout { grid-template-columns: 1fr; gap: 32px; }
}

/* ----------------------------------------------------------
   10. Maps Section
---------------------------------------------------------- */
.jl-maps__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

.jl-map-card {
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
}

.jl-map-card__img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  background: var(--off-white);
}

.jl-map-card__placeholder {
  width: 100%;
  height: 280px;
  background: var(--off-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  gap: 10px;
}
.jl-map-card__placeholder i { font-size: 28px; opacity: 0.4; }
.jl-map-card__placeholder span {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.5;
}

.jl-map-card__label {
  padding: 14px 18px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--white);
  border-top: 1px solid var(--border);
}

/* Full embed map */
.jl-map-embed {
  margin-top: 40px;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.jl-map-embed iframe {
  display: block;
  width: 100%;
  height: 480px;
  border: none;
}

@media (max-width: 640px) {
  .jl-maps__grid { grid-template-columns: 1fr; }
}

/* ----------------------------------------------------------
   10b. Leaflet Drive Times / Trails / Aviation Map
---------------------------------------------------------- */
#jl-leaflet-maps {
  scroll-margin-top: 160px;
}

.jl-leaflet-tabbar {
  display: flex;
  gap: 0;
  margin-bottom: 24px;
  border-bottom: 2px solid var(--border);
}

.jl-leaflet-tab {
  padding: 12px 26px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  cursor: pointer;
  border: none;
  background: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: color .15s, border-color .15s;
}
.jl-leaflet-tab:hover { color: var(--navy); }
.jl-leaflet-tab.active {
  color: var(--brown);
  border-bottom-color: var(--brown);
}

.jl-leaflet-panel { display: none; }
.jl-leaflet-panel.active { display: block; }

.jl-leaflet-panel-title {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 8px;
}

.jl-leaflet-panel-desc {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0 0 20px;
  max-width: 720px;
}

.jl-leaflet-map-container {
  width: 100%;
  height: 480px;
  border-radius: 4px;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(1,1,1,0.06);
  position: relative;
  z-index: 0; /* creates a new stacking context so Leaflet's internal
                 panes/controls (z-index up to ~700-1000) are contained
                 within this element and can never sit above the site
                 nav or page header, regardless of Leaflet's defaults */
}
.jl-leaflet-map-container.tall { height: 540px; }

.jl-leaflet-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
  padding: 14px 18px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 2px;
}

.jl-leaflet-legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 12px;
  color: var(--text-body);
}

.jl-leaflet-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
  display: inline-block;
}
.jl-leaflet-line {
  width: 24px;
  height: 4px;
  border-radius: 2px;
  flex-shrink: 0;
  display: inline-block;
}
.jl-leaflet-dash {
  width: 24px;
  height: 0;
  border-top: 2px dashed #c0392b;
  flex-shrink: 0;
  display: inline-block;
}
.jl-leaflet-diamond {
  width: 10px;
  height: 10px;
  transform: rotate(45deg);
  flex-shrink: 0;
  display: inline-block;
}
.jl-leaflet-square {
  width: 10px;
  height: 10px;
  border-radius: 2px;
  flex-shrink: 0;
  display: inline-block;
}

.jl-leaflet-disclaimer {
  font-family: var(--sans);
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 16px;
  line-height: 1.6;
}

/* Leaflet popup theming */
.leaflet-popup-content-wrapper {
  border-radius: 6px !important;
  box-shadow: 0 4px 20px rgba(1,1,1,0.18) !important;
  font-family: var(--sans) !important;
}
.leaflet-popup-content {
  font-size: 13px !important;
  line-height: 1.5 !important;
  margin: 12px 14px !important;
}
.leaflet-popup-content strong {
  font-family: var(--serif);
  font-size: 15px;
  display: block;
  margin-bottom: 3px;
  color: var(--navy);
}
.leaflet-popup-content .jl-leaflet-tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 3px;
  margin-bottom: 6px;
}
.jl-leaflet-tag-pct        { background: #fff3e0; color: #b35a00; }
.jl-leaflet-tag-equestrian { background: #e8f5ee; color: #0f6e56; }
.jl-leaflet-tag-hiking     { background: #e8f0fb; color: #185fa5; }
.jl-leaflet-tag-landmark   { background: #f0eef8; color: #5b35b5; }

@media (max-width: 640px) {
  .jl-leaflet-map-container { height: 380px; }
  .jl-leaflet-map-container.tall { height: 420px; }
  .jl-leaflet-tab { padding: 10px 16px; font-size: 12px; }
}

/* ----------------------------------------------------------
   11. Diligence at a Glance
---------------------------------------------------------- */
.jl-diligence__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 40px;
}

.jl-diligence__item {
  background: var(--white);
  padding: 24px 26px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.jl-diligence__item i {
  color: var(--brown);
  font-size: 15px;
  margin-top: 2px;
  flex-shrink: 0;
}

.jl-diligence__item span {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.5;
}

.jl-diligence__note {
  margin-top: 24px;
  font-family: var(--sans);
  font-size: 13px;
  font-style: italic;
  color: var(--text-muted);
  text-align: center;
}

@media (max-width: 768px) {
  .jl-diligence__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .jl-diligence__grid { grid-template-columns: 1fr; }
}

/* ----------------------------------------------------------
   12. FAQ Accordion
---------------------------------------------------------- */
.jl-faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}

.jl-faq-layout__intro .jl-section-title {
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.05;
  margin-bottom: 20px;
}

.jl-faq-layout__intro p {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-muted);
}

.jl-faq__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
}

.jl-faq__item {
  border-bottom: 1px solid var(--border);
}
.jl-faq__item:last-child { border-bottom: none; }

.jl-faq__question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.4;
  transition: background .15s;
}
.jl-faq__question:hover { background: var(--off-white); }

.jl-faq__icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--brown);
  transition: transform .3s, background .2s;
}

.jl-faq__item.open .jl-faq__icon {
  transform: rotate(45deg);
  background: var(--brown);
  color: var(--white);
  border-color: var(--brown);
}

.jl-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}

.jl-faq__item.open .jl-faq__answer { max-height: 600px; }

.jl-faq__answer-inner {
  padding: 16px 24px 24px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-body);
}

@media (max-width: 768px) {
  .jl-faq-layout { grid-template-columns: 1fr; gap: 36px; }
}

/* ----------------------------------------------------------
   13. Request Package Form
---------------------------------------------------------- */
.jl-request-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.jl-request-layout__left .jl-section-title { margin-bottom: 16px; }

.jl-request-layout__left p {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-muted);
  margin: 0 0 28px;
}

.jl-package-includes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.jl-package-includes li {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--text-body);
  display: flex;
  align-items: center;
  gap: 8px;
}
.jl-package-includes li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brown);
  flex-shrink: 0;
}

/* Form card */
.jl-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 36px 36px;
  box-shadow: 0 2px 24px rgba(1,1,1,0.06);
}

.jl-form-card h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 6px;
}

.jl-form-card .jl-form-sub {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--text-muted);
  margin: 0 0 24px;
  line-height: 1.5;
}

.jl-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.jl-form-row.full { grid-template-columns: 1fr; }

.jl-field label {
  display: block;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.jl-field input,
.jl-field select,
.jl-field textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: 2px;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--navy);
  background: var(--white);
  box-sizing: border-box;
  transition: border-color .2s;
  appearance: none;
  -webkit-appearance: none;
}
.jl-field input:focus,
.jl-field select:focus,
.jl-field textarea:focus {
  outline: none;
  border-color: var(--brown);
}
.jl-field textarea { resize: vertical; min-height: 80px; }

.jl-select-wrap {
  position: relative;
}
.jl-select-wrap::after {
  content: '▾';
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
  font-size: 12px;
}

/* reCAPTCHA */
.jl-captcha-wrap {
  margin: 16px 0 6px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.jl-captcha-error {
  display: none;
  color: #c0000a;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  margin-top: 8px;
}
.jl-captcha-error.visible { display: block; }

.jl-form-submit {
  margin-top: 18px;
}
.jl-form-submit .jl-btn-primary {
  width: 100%;
  text-align: center;
  padding: 16px;
  font-size: 12px;
}

.jl-form-success {
  display: none;
  text-align: center;
  padding: 32px 20px;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--navy);
}

.jl-form-error-msg {
  display: none;
  font-family: var(--sans);
  font-size: 13px;
  color: #c0000a;
  margin-top: 10px;
  text-align: center;
}

@media (max-width: 900px) {
  .jl-request-layout { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 480px) {
  .jl-form-row { grid-template-columns: 1fr; }
  .jl-form-card { padding: 24px 20px; }
}

/* ----------------------------------------------------------
   14. Credibility Section
---------------------------------------------------------- */
.jl-credibility__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.jl-cred-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.jl-cred-item__icon {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 16px;
}

.jl-cred-item strong {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  display: block;
}

.jl-cred-item span {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .jl-credibility__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .jl-credibility__grid { grid-template-columns: 1fr; }
}

/* ----------------------------------------------------------
   15. Closing CTA (full-bleed photo)
---------------------------------------------------------- */
.jl-closing {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

.jl-closing__bg {
  position: absolute;
  inset: 0;
  background-image: url('jackson-landing/new-images/gallery-order/Jackson Meadows-79.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.45;
}

.jl-closing__content {
  position: relative;
  z-index: 2;
  padding: clamp(60px, 10vw, 100px) var(--gutter);
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}

.jl-closing__content .jl-eyebrow { color: rgba(255,255,255,0.5); text-align: left; }

.jl-closing__headline {
  font-family: var(--serif);
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  margin: 0 0 20px;
  max-width: 580px;
  text-align: left;
}

.jl-closing__sub {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  margin: 0 0 36px;
  max-width: 440px;
  line-height: 1.7;
}

.jl-closing__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ----------------------------------------------------------
   16. Disclaimer
---------------------------------------------------------- */
.jl-disclaimer {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  padding: 28px var(--gutter);
}

.jl-disclaimer p {
  font-family: var(--sans);
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: var(--max-w);
  margin: 0 auto;
}

/* ----------------------------------------------------------
   17. Full Gallery (lightbox, below fold)
---------------------------------------------------------- */
.jl-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
}

.jl-gallery-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  cursor: pointer;
  display: block;
  border-radius: 1px;
  transition: opacity .2s;
}
.jl-gallery-grid img:hover { opacity: 0.88; }

/* Lightbox */
.jl-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(1,1,1,0.92);
  z-index: 99999;
  align-items: center;
  justify-content: center;
}
.jl-lightbox.active { display: flex; }
.jl-lightbox img {
  max-width: 90%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 2px;
}
.jl-lb-close,
.jl-lb-prev,
.jl-lb-next {
  position: absolute;
  background: none;
  border: none;
  color: var(--white);
  font-size: 40px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity .2s;
  line-height: 1;
  padding: 10px;
}
.jl-lb-close:hover,
.jl-lb-prev:hover,
.jl-lb-next:hover { opacity: 1; }
.jl-lb-close { top: 20px; right: 24px; }
.jl-lb-prev  { left: 20px; top: 50%; transform: translateY(-50%); }
.jl-lb-next  { right: 20px; top: 50%; transform: translateY(-50%); }

/* ----------------------------------------------------------
   18. Scroll-reveal utility
---------------------------------------------------------- */
.jl-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.jl-reveal.visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .jl-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ----------------------------------------------------------
   19. Utility
---------------------------------------------------------- */
.jl-price-tag {
  font-family: var(--serif);
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 600;
  color: var(--brown);
  letter-spacing: 0.5px;
}

.jl-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}