/*
 * Go2Leads — Builder Landing Page Styles
 * Scoped to .landing-page to prevent bleed into global styles.
 * All PHP/ACF functionality is untouched — this file only handles display.
 */

/* ═══════════════════════════════════════
   VARIABLES
   ═══════════════════════════════════════ */
:root {
  --primary: #a7ec4f;
  --secondary: #121212;
  --tertiary: #444;
  --quaternary: #8fd43a;
  --grey: #f4f5f0;
}

/* ═══════════════════════════════════════
   SHARED FOUNDATIONS
   ═══════════════════════════════════════ */
.landing-page {
  font-family: var(--ff-body);
}

.landing-page * {
  box-sizing: border-box;
}

/* Bootstrap-style grid overrides — we use CSS grid instead */
.landing-page .row {
  display: flex;
  flex-wrap: wrap;
}

.landing-page .row.no-gutters {
  display: grid;
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
}

/* Column widths inside block_array grid */
.landing-page .col-md-4  { width: 100%; }
.landing-page .col-md-6  { width: 100%; }
.landing-page .col-md-12 { width: 100%; }


/* ═══════════════════════════════════════
   FEATURE SLIDER — hero block
   Maps to: feature_slider block type
   ═══════════════════════════════════════ */
.landing-page .hero {
  position: relative;
  background: #121212;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.landing-page .hero::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: var(--edge-left);
  width: 1px;
  background: rgba(255,255,255,0.06);
  pointer-events: none;
  z-index: 1;
}

.landing-page .hero::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  right: var(--edge-right);
  width: 1px;
  background: rgba(255,255,255,0.06);
  pointer-events: none;
  z-index: 1;
}

.landing-page .hero-slider {
  flex: 1;
}

.landing-page .hero-image {
  min-height: 60vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  position: relative;
}

.landing-page .hero-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(18,18,18,0.55);
  pointer-events: none;
}

.landing-page .hero-content.banner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px var(--section-px);
}

.landing-page .inner-content {
  max-width: 700px;
}

.landing-page .inner-content .heading h1,
.landing-page .inner-content .heading h2 {
  font-family: var(--ff-heading);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.035em;
  line-height: 1.1;
  margin-bottom: 20px;
}

.landing-page .hero-text {
  font-family: var(--ff-body);
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  max-width: 520px;
  margin-bottom: 36px;
}

.landing-page .button-hold {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.landing-page .button-hold .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: #121212;
  font-family: var(--ff-body);
  font-size: 16px;
  font-weight: 600;
  padding: 18px 40px;
  text-decoration: none;
  transition: all 0.3s;
  letter-spacing: -0.01em;
  border: none;
  cursor: pointer;
}

.landing-page .button-hold .btn:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}


/* ═══════════════════════════════════════
   BREADCRUMB
   ═══════════════════════════════════════ */
.landing-page .breadcrumb {
  background: var(--bg-tint);
  border-bottom: 1px solid var(--border);
}

.landing-page .breadcrumb .container.xs {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 14px var(--section-px);
}

.landing-page .breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-body);
  font-size: 13px;
  color: var(--text-muted);
}

.landing-page .breadcrumb-list a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.2s;
}

.landing-page .breadcrumb-list a:hover {
  color: var(--black);
}

.landing-page .breadcrumb-list .breadcrumb_last {
  color: var(--black);
  font-weight: 500;
}


/* ═══════════════════════════════════════
   TEXT / TEXT+IMAGE / TEXT+MAP
   Maps to: text_image block type
   text_image and text_map → pricing card layout
   text_only → clean content block
   ═══════════════════════════════════════ */
.landing-page .block {
  position: relative;
}

/* text_only — clean padded content section, no right panel */
.landing-page .block .container.xs {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 100px var(--section-px);
}

/* Headings — colour falls through from ACF inline style */
.landing-page .block .heading h1,
.landing-page .block .heading h2,
.landing-page .block .heading h3 {
  font-family: var(--ff-heading);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 20px;
}

.landing-page .block p {
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.7;
  max-width: 680px;
  margin-bottom: 20px;
}

.landing-page .block .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #121212;
  font-family: var(--ff-body);
  font-size: 15px;
  font-weight: 600;
  padding: 16px 36px;
  text-decoration: none;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  margin-top: 12px;
}

.landing-page .block .btn:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.landing-page .block-statement {
  display: block;
  font-family: var(--ff-heading);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.3;
  margin: 24px 0;
}

/* ── text_image / text_map — pricing card layout ── */
.landing-page .block.text-image {
  padding: 100px var(--section-px) 110px;
}

/* Left vertical rule — mirrors pricing-section::before */
.landing-page .block.text-image::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: var(--edge-left);
  width: 1px;
  background: rgba(255,255,255,0.06);
  pointer-events: none;
}

/* On light backgrounds, flip the rule colour */
.landing-page .block.text-image.accent_primary::before,
.landing-page .block.text-image.accent_white::before {
  background: rgba(0,0,0,0.06);
}

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

/* Grid — mirrors .pricing-card */
.landing-page .block.text-image .row {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  background: none;
  border: none;
  overflow: hidden;
  min-height: 0;
}

/* Left content panel — mirrors .pricing-card-left */
.landing-page .block.text-image .inner-block {
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.landing-page .block.text-image .inner-block .heading h2,
.landing-page .block.text-image .inner-block .heading h3 {
  font-family: var(--ff-heading);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 20px;
}

.landing-page .block.text-image .inner-block p {
  font-family: var(--ff-body);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 16px;
  max-width: 100%;
}

/* Right panel — mirrors .pricing-card-right */
.landing-page .block.text-image .col-lg-6:not(:has(.inner-block)) {
  border-left: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  min-height: 400px;
}

/* On light backgrounds, adapt the border */
.landing-page .block.text-image.accent_primary .col-lg-6:not(:has(.inner-block)),
.landing-page .block.text-image.accent_white .col-lg-6:not(:has(.inner-block)) {
  border-left-color: rgba(0,0,0,0.08);
}

/* When righter (reversed), border is on the right of the image col */
.landing-page .block.text-image.righter .col-lg-6:not(:has(.inner-block)) {
  border-left: none;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.landing-page .block.text-image.righter.accent_primary .col-lg-6:not(:has(.inner-block)),
.landing-page .block.text-image.righter.accent_white .col-lg-6:not(:has(.inner-block)) {
  border-right-color: rgba(0,0,0,0.08);
}

/* Handle DOM order for righter — image first in DOM needs to appear second */
.landing-page .block.text-image.righter .col-lg-6.order-2 { order: 2; }
.landing-page .block.text-image.righter .col-lg-6.order-1 { order: 1; }

/* Image fills the right panel completely */
.landing-page .side-image {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
  display: block;
}

/* Map fills the right panel completely */
.landing-page .side-map {
  width: 100%;
  height: 100%;
  min-height: 400px;
  display: block;
}

.landing-page .side-map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: none;
  display: block;
  filter: grayscale(0.15);
}


/* ═══════════════════════════════════════
   BLOCK ARRAY — features card grid
   Maps to our features-section 3-col grid
   ═══════════════════════════════════════ */
.landing-page .block-array-wrapper {
  padding: 100px var(--section-px) 110px;
  background: #121212;
  position: relative;
}

/* Left vertical rule */
.landing-page .block-array-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: var(--edge-left);
  width: 1px;
  background: rgba(255,255,255,0.06);
  pointer-events: none;
  height: var(--line-to-grid, 220px);
}

/* Right vertical rule */
.landing-page .block-array-wrapper::after {
  content: '';
  position: absolute;
  bottom: 0;
  height: 110px;
  right: var(--edge-right);
  width: 1px;
  background: rgba(255,255,255,0.06);
  pointer-events: none;
}

/* Heading area */
.landing-page .block-array-heading-wrapper {
  max-width: var(--max-w);
  margin: 0 auto 64px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 60px;
  padding-left: 40px;
}

.landing-page .block-array-heading-wrapper .heading h2 {
  font-family: var(--ff-heading);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 600;
  color: inherit;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 0;
}

.landing-page .block-array-heading-wrapper p {
  font-family: var(--ff-body);
  font-size: 15px;
  color: inherit;
  opacity: .5;
  line-height: 1.65;
  max-width: 320px;
  flex-shrink: 0;
  margin-bottom: 0;
}

/* Card grid container */
.landing-page .block-array-wrapper > div > .row.no-gutters {
  max-width: var(--max-w);
  margin: 0 auto;
  grid-template-columns: repeat(3, 1fr);
}

/* Individual info-block → feature card */
.landing-page .info-block-wrapper {
  width: 100%;
}

.landing-page .info-block {
  background: #121212;
  padding: 40px 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: background 0.3s;
}

.landing-page .info-block:hover {
  background: #1a1a1a;
}

/* Icon */
.landing-page .info-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.3s;
  flex-shrink: 0;
}

.landing-page .info-icon svg,
.landing-page .info-icon img {
  width: 22px;
  height: 26px;
  stroke: inherit;
  stroke-opacity: .5;
  stroke-width: 1.8;
  fill: none;
  transition: stroke 0.3s;
}

.landing-page .info-block:hover .info-icon {
  background: var(--accent);
  border-color: var(--accent);
}

.landing-page .info-block:hover .info-icon svg {
  stroke: inherit;
}

/* Heading inside card */
.landing-page .info-block .heading h2,
.landing-page .info-block .heading h3,
.landing-page .info-block .heading h4 {
  font-family: var(--ff-heading);
  font-size: 17px;
  font-weight: 600;
  color: inherit;
  letter-spacing: -0.015em;
  margin-bottom: 10px;
}

/* Small heading */
.landing-page .info-block .heading.small h4 {
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

/* Body text */
.landing-page .info-text {
  font-family: var(--ff-body);
  font-size: 14.5px;
  line-height: 1.6;
  flex: 1;
}

.landing-page .info-text p {
  color: inherit;
  opacity: .7;
  font-size: 14.5px;
  line-height: 1.6;
  margin-bottom: 0;
  max-width: none;
}

/* Buttons inside cards */
.landing-page .info-buttons .btn {
  margin-top: 20px;
  font-size: 13px;
  padding: 10px 20px;
}


/* ═══════════════════════════════════════
   BANNER — style_1 and style_2
   Background controlled by accent_colour class
   ═══════════════════════════════════════ */
.landing-page .banner {
  padding: 100px var(--section-px) 110px;
  position: relative;
  overflow: hidden;
}

/* Background colours from accent_colour ACF class */
.landing-page .banner.accent_primary  { background: var(--accent); }
.landing-page .banner.accent_secondary,
.landing-page .banner.accent_dark     { background: #121212; }
.landing-page .banner.accent_white    { background: var(--bg); }

/* Fallback when no accent class */
.landing-page .banner:not(.accent_primary):not(.accent_secondary):not(.accent_white):not(.accent_dark) {
  background: #121212;
}

/* Left grid rule — adapts colour to background */
.landing-page .banner.accent_primary::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: var(--edge-left);
  width: 1px;
  background: rgba(0,0,0,0.08);
  pointer-events: none;
}

.landing-page .banner.accent_secondary::before,
.landing-page .banner.accent_dark::before,
.landing-page .banner:not(.accent_primary):not(.accent_white)::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: var(--edge-left);
  width: 1px;
  background: rgba(255,255,255,0.06);
  pointer-events: none;
}

.landing-page .banner.accent_white::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: var(--edge-left);
  width: 1px;
  background: rgba(0,0,0,0.06);
  pointer-events: none;
}

/* Background image support */
.landing-page .banner.image-bg {
  background-size: cover;
  background-position: center;
}

/* Overlay classes */
.landing-page .banner.primary_faded::after,
.landing-page .banner.secondary_faded::after,
.landing-page .banner.white_faded::after,
.landing-page .banner.primary_solid::after,
.landing-page .banner.secondary_solid::after,
.landing-page .banner.white_solid::after,
.landing-page .banner.grey_solid::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.landing-page .banner.primary_faded::after    { background: rgba(167,236,79,0.55); }
.landing-page .banner.secondary_faded::after  { background: rgba(18,18,18,0.6); }
.landing-page .banner.white_faded::after      { background: rgba(255,255,255,0.55); }
.landing-page .banner.primary_solid::after    { background: var(--accent); }
.landing-page .banner.secondary_solid::after  { background: #121212; }
.landing-page .banner.white_solid::after      { background: #fff; }
.landing-page .banner.grey_solid::after       { background: var(--bg-tint); }

/* Style 2 needs position:relative on container to sit above overlay */
.landing-page .banner.style2_banner .image-bg-container {
  position: relative;
  z-index: 1;
}

.landing-page .image-bg-container {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Headings — colour set via inline style from ACF, this is the fallback */
.landing-page .banner .heading h1,
.landing-page .banner .heading h2,
.landing-page .banner .heading h3 {
  font-family: var(--ff-heading);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 16px;
  max-width: 60%;
}

/* Body text */
.landing-page .banner > .image-bg-container > span,
.landing-page .banner .banner-content-wrap > span {
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.65;
  display: block;
  max-width: 480px;
  margin-bottom: 40px;
  opacity: 0.7;
}

.landing-page .banner .block-statement {
  display: block;
  font-family: var(--ff-heading);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin: 24px 0;
  max-width: 560px;
}

/* Buttons */
.landing-page .banner .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: #121212;
  font-family: var(--ff-body);
  font-size: 16px;
  font-weight: 600;
  padding: 18px 40px;
  text-decoration: none;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.landing-page .banner .btn:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

/* On green bg, button should be white */
.landing-page .banner.accent_primary .btn {
  background: #fff;
  color: var(--black);
}

.landing-page .banner.accent_primary .btn:hover {
  background: var(--bg-tint);
}

/* ── Style 2 — CTA banner with right diagonal pillar ── */
.landing-page .banner.style2_banner .image-bg-container {
  display: flex;
  align-items: stretch;
  min-height: 320px;
}

.landing-page .banner-content-wrap {
  max-width: 60%;
  padding-right: 40px;
  flex: 1;
}

/* Decorative right pillar */
.landing-page .banner-pillar {
  position: absolute;
  top: -100px; bottom: -110px;
  right: 0;
  width: 140px;
  pointer-events: none;
}

.landing-page .banner.accent_primary .banner-pillar::before,
.landing-page .banner.accent_white .banner-pillar::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: 0;
  width: 1px;
  background: rgba(0,0,0,0.1);
}

.landing-page .banner.accent_secondary .banner-pillar::before,
.landing-page .banner.accent_dark .banner-pillar::before,
.landing-page .banner:not(.accent_primary):not(.accent_white) .banner-pillar::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: 0;
  width: 1px;
  background: rgba(255,255,255,0.06);
}

.landing-page .banner-pillar-diag {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent, transparent 18px,
    rgba(255,255,255,0.04) 18px,
    rgba(255,255,255,0.04) 19px
  );
}

.landing-page .banner.accent_primary .banner-pillar-diag,
.landing-page .banner.accent_white .banner-pillar-diag {
  background: repeating-linear-gradient(
    -45deg,
    transparent, transparent 18px,
    rgba(0,0,0,0.04) 18px,
    rgba(0,0,0,0.04) 19px
  );
}

/* mini-block-array inside banner */
.landing-page .mini-block-array-wrapper {
  margin: 40px 0;
}

.landing-page .mini-block-array-wrapper .row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
}

.landing-page .mini-block-array-wrapper .info-block {
  padding: 28px 24px;
}


/* ═══════════════════════════════════════
   STANDALONE MAP
   ═══════════════════════════════════════ */
.landing-page .standalone-map-wrapper {
  width: 100%;
  height: 440px;
  display: block;
  overflow: hidden;
}

.landing-page .standalone-map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  filter: grayscale(0.15);
}


/* ═══════════════════════════════════════
   IMAGE SPLITTER
   ═══════════════════════════════════════ */
.landing-page .image-splitter {
  width: 100%;
  height: auto;
  display: block;
}


/* ═══════════════════════════════════════
   FAQ SECTION
   Uses main site .faq-section styles.
   .landing-faq overrides only what differs:
   no left-column features, full-width inner.
   ═══════════════════════════════════════ */

/* Override background with ACF inline style on the section itself */
.landing-page .landing-faq {
  padding: 100px var(--section-px) 110px;
}

/* faq-left — heading + desc + button only, no features */
.landing-page .landing-faq .faq-left .faq-features {
  display: none;
}

/* Button in faq-left uses site btn styles, render_buttons outputs .btn class */
.landing-page .landing-faq .faq-left .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #121212;
  font-family: var(--ff-body);
  font-size: 15px;
  font-weight: 600;
  padding: 16px 36px;
  text-decoration: none;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  margin-top: 24px;
}

.landing-page .landing-faq .faq-left .btn:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}


/* ═══════════════════════════════════════
   REVIEWS
   ═══════════════════════════════════════ */
.landing-page .review-slider-wrapper {
  margin: 32px 0;
}

.landing-page .review-slider-second {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.landing-page .review-wrapper {
  flex: 1;
  min-width: 260px;
  background: var(--bg-tint);
  border: 1px solid var(--border);
  padding: 28px 32px;
}

.landing-page .quote-body {
  font-family: var(--ff-body);
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}

.landing-page .quote-details {
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--black);
  letter-spacing: 0.02em;
}

.landing-page .review-container {
  padding: 24px 28px;
  background: var(--bg-tint);
  border: 1px solid var(--border);
}

.landing-page .google-quote {
  font-family: var(--ff-body);
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.65;
  font-style: italic;
  margin: 8px 0;
}

.landing-page .other-heading h2 {
  font-family: var(--ff-heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 6px;
}

.landing-page .google-author {
  font-size: 12px;
  color: var(--text-muted);
}

.landing-page .other-rating {
  font-size: 13px;
  color: var(--accent-dark);
  font-weight: 600;
  margin-bottom: 6px;
}

.landing-page .google-logo-hold img {
  height: 28px;
  width: auto;
  display: block;
  margin-bottom: 16px;
}

.landing-page .review-total {
  color: var(--accent-dark);
  text-decoration: none;
}

.landing-page .google-results-date {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 20px;
}


/* ═══════════════════════════════════════
   GALLERY
   ═══════════════════════════════════════ */
.landing-page .gallery-block {
  width: 100%;
}

.landing-page .gallery-block .row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}

.landing-page .hold-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.landing-page .gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.landing-page .hold-image:hover .gallery-image {
  transform: scale(1.04);
}

.landing-page .zoom-cover {
  position: absolute;
  inset: 0;
  background: rgba(18,18,18,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  color: #fff;
  font-size: 24px;
}

.landing-page .hold-image:hover .zoom-cover {
  opacity: 1;
}

.landing-page .load-more-container {
  text-align: center;
  margin-top: 24px;
}

.landing-page .load-more-container .btn {
  background: transparent;
  color: var(--black);
  border: 1px solid var(--border);
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 500;
  padding: 12px 28px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 0 6px;
}

.landing-page .load-more-container .btn:hover {
  border-color: var(--black);
  transform: none;
}

.landing-page .gallery-image-slider {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.landing-page .gallery-image-slider .gallery-image {
  height: 220px;
  width: auto;
  flex-shrink: 0;
}


/* ═══════════════════════════════════════
   SITEMAP
   ═══════════════════════════════════════ */
/* ── Sitemap: strip ALL constraints from .container.xs wrapper ── */
.landing-page .container.xs:has(.sitemap-container) {
  max-width: 100% !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  background: none !important;
  position: static !important;
}

/* ── Sitemap container is the full-width styled section ── */
.landing-page .sitemap-container {
  background: var(--primary);
  padding: 100px var(--section-px) 110px;
  position: relative;
  width: 100%;
}

/* Grid lines */
.landing-page .sitemap-container::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: var(--edge-left);
  width: 1px;
  background: rgba(0,0,0,0.08);
  pointer-events: none;
}

.landing-page .sitemap-container::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  right: var(--edge-right);
  width: 1px;
  background: rgba(0,0,0,0.08);
  pointer-events: none;
}

/* Inner column grid — constrained to max-w */
.landing-page .sitemap-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 1px;
  background: rgba(0,0,0,0.08);
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.landing-page .sitemap-container .column {
  background: var(--primary);
  padding: 0 40px 40px;
}

.landing-page .sitemap-container h2 {
  font-family: var(--ff-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.4);
  margin: 36px 0 4px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.landing-page .sitemap-container ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.landing-page .sitemap-container li {
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.landing-page .sitemap-container li::before {
  display: none;
}

.landing-page .sitemap-container li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
  text-decoration: none;
  transition: padding-left 0.2s;
}

.landing-page .sitemap-container li a:hover {
  padding-left: 8px;
}

.landing-page .sitemap-container li a::after {
  content: '↗';
  font-size: 13px;
  color: rgba(0,0,0,0.25);
  opacity: 0;
  transition: opacity 0.2s;
  flex-shrink: 0;
}

.landing-page .sitemap-container li a:hover::after {
  opacity: 1;
}

.landing-page .sitemap-container .link-title {
  font-family: var(--ff-heading);
  font-size: 15px;
  font-weight: 600;
  color: rgba(0,0,0,0.75);
  letter-spacing: -0.01em;
  transition: color 0.2s;
}

.landing-page .sitemap-container li a:hover .link-title {
  color: #fff;
}

.landing-page .sitemap-container .link-desc {
  font-family: var(--ff-body);
  font-size: 12px;
  color: rgba(0,0,0,0.4);
  margin-top: 2px;
}


/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 900px) {
  .landing-page .block-array-wrapper > div > .row.no-gutters {
    grid-template-columns: 1fr;
  }

  .landing-page .block-array-heading-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding-left: 20px;
  }

  .landing-page .block-array-heading-wrapper p {
    max-width: 100%;
  }

  .landing-page .info-block {
    padding: 40px 20px;
  }

  .landing-page .block.text-image .row {
    grid-template-columns: 1fr !important;
  }

  .landing-page .block.text-image .col-lg-6:not(:has(.inner-block)) {
    border-left: none;
    border-top: 1px solid rgba(255,255,255,0.08);
    min-height: 280px;
    order: 2;
  }

  .landing-page .block.text-image.accent_primary .col-lg-6:not(:has(.inner-block)),
  .landing-page .block.text-image.accent_white .col-lg-6:not(:has(.inner-block)) {
    border-top-color: rgba(0,0,0,0.08);
  }

  .landing-page .block.text-image .inner-block {
    padding: 40px var(--section-px);
    order: 1;
  }

  .landing-page .block.text-image.righter .col-lg-6.order-2 { order: 2; }
  .landing-page .block.text-image.righter .col-lg-6.order-1 { order: 1; }

  .landing-page .banner .heading h1,
  .landing-page .banner .heading h2,
  .landing-page .banner .heading h3 {
    max-width: 100%;
  }

  .landing-page .banner-content-wrap {
    max-width: 100%;
    padding-right: 0;
  }

  .landing-page .banner-pillar {
    display: none;
  }

  .landing-page .banner.style2_banner .image-bg-container {
    flex-direction: column;
  }

  .landing-page .mini-block-array-wrapper .row {
    grid-template-columns: 1fr;
  }

  .landing-page .gallery-block .row {
    grid-template-columns: repeat(2, 1fr);
  }

  .landing-page .sitemap-columns {
    grid-template-columns: 1fr;
  }

  .landing-page .sitemap-container .column {
    padding: 0 20px 40px;
  }

  .landing-page .hero-text {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .landing-page .block .container.xs {
    padding: 60px var(--section-px);
  }

  .landing-page .block-array-wrapper {
    padding: 60px var(--section-px) 80px;
  }

  .landing-page .banner {
    padding: 60px var(--section-px);
  }

  .landing-page .gallery-block .row {
    grid-template-columns: 1fr;
  }
}


/* ═══════════════════════════════════════
   LIST ITEMS — match split-checklist style
   Applies to all ul li across the landing
   page. Sitemap has its own list styling.
   ═══════════════════════════════════════ */
.landing-page ul:not(.sitemap-container ul):not(.breadcrumb-list) {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.landing-page ul:not(.sitemap-container ul):not(.breadcrumb-list) li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-family: var(--ff-body);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.45;
}

.landing-page ul:not(.sitemap-container ul):not(.breadcrumb-list) li::before {
  content: '';
  width: 10px;
  min-width: 10px;
  height: 10px;
  margin-top: 3px;
  background: var(--accent-dark);
  display: block;
  flex-shrink: 0;
}


/* ═══════════════════════════════════════
   LANDING PAGE SECONDARY HERO
   Page title as h2 — matches h1 styling
   ═══════════════════════════════════════ */
.landing-page .hero-secondary-content h2 {
  font-family: var(--ff-heading);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 0;
}