.elementor-widget-container .premium-global-badge-{{ID}} .premium-badge-container{background-color:var( --e-global-color-primary );}.elementor-widget-container .premium-global-cursor-{{ID}}{color:var( --e-global-color-primary );fill:var( --e-global-color-primary );}.elementor-widget-container.premium-cursor-ftext .premium-global-cursor-{{ID}} .premium-cursor-follow-text{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-widget-container .premium-global-badge-{{ID}} .premium-badge-text{color:var( --e-global-color-secondary );}.elementor-widget-container .premium-global-badge-{{ID}} .premium-badge-icon{color:var( --e-global-color-secondary );fill:var( --e-global-color-secondary );}.elementor-10600 .elementor-element.elementor-element-324dd99{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-widget-html .premium-global-badge-{{ID}} .premium-badge-container{background-color:var( --e-global-color-primary );}.elementor-widget-html .premium-global-cursor-{{ID}}{color:var( --e-global-color-primary );fill:var( --e-global-color-primary );}.elementor-widget-html.premium-cursor-ftext .premium-global-cursor-{{ID}} .premium-cursor-follow-text{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-widget-html .premium-global-badge-{{ID}} .premium-badge-text{color:var( --e-global-color-secondary );}.elementor-widget-html .premium-global-badge-{{ID}} .premium-badge-icon{color:var( --e-global-color-secondary );fill:var( --e-global-color-secondary );}:root{--page-title-display:none;}/* Start custom CSS *//* =========================================================
   LUMEN DESIGN - GLOBAL DESIGN SYSTEM
   Put this in ONE global CSS location:
   Appearance > Customize > Additional CSS,
   Elementor Custom CSS, WPCode CSS, or a child theme CSS file.
   ========================================================= */

:root {
  --sage: #6b7a5e;
  --sage-dark: #4e5c45;
  --sage-light: #8a9b7a;
  --cream: #f5f0e8;
  --cream-alt: #f0ebe0;
  --warm-white: #faf8f4;
  --gold: #c9a96e;
  --text-dark: #2a2b26;
  --text-mid: #4a4a42;
  --text-muted: #888880;
  --text-light: rgba(255,255,255,0.88);
  --nav-height: 88px;
  --container-width: 1270px;
  --container-padding: 24px;
}

body {
  font-family: 'Jost', sans-serif;
  font-size: 18px;
}

@media (max-width: 767px) {
  :root {
    --container-padding: 20px;
    --nav-height: 76px;
  }
}

/* WordPress safety */
.ld-hero-section,
.ld-portfolio-section,
.ld-about-section,
.ld-testimonials-section,
.ld-cta-section {
  width: 100%;
  font-family: 'Jost', sans-serif;
}

.ld-hero-section *,
.ld-portfolio-section *,
.ld-about-section *,
.ld-testimonials-section *,
.ld-cta-section * {
  box-sizing: border-box;
}

/* Shared reveal utility */
.is-visible {
  visibility: visible;
}



/* ================= HERO + SERVICES ================ */
.ld-hero-section .hero {
      position: relative;
      width: 100%;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      overflow: hidden;
      background: #2a2b26;
    }
.ld-hero-section .hero-bg {
      position: absolute;
      inset: 0;
      background-image: url('https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?w=1800&q=85&auto=format&fit=crop');
      background-size: cover;
      background-position: center right;
      transform: scale(1.04);
      animation: slowZoom 18s ease-out forwards;
    }
@keyframes slowZoom {
      from { transform: scale(1.04); }
      to { transform: scale(1.00); }
    }
.ld-hero-section .hero-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(
        105deg,
        rgba(30,30,24,0.82) 0%,
        rgba(30,30,24,0.60) 40%,
        rgba(30,30,24,0.18) 75%,
        rgba(30,30,24,0.08) 100%
      );
    }
.ld-hero-section nav {
      position: relative;
      z-index: 20;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: var(--nav-height);
      width: 100%;
      max-width: var(--container-width);
      margin-left: auto;
      margin-right: auto;
      padding-left: var(--container-padding);
      padding-right: var(--container-padding);
      opacity: 0;
      animation: fadeDown 0.9s 0.3s ease forwards;
    }
@keyframes fadeDown {
      from { opacity: 0; transform: translateY(-14px); }
      to { opacity: 1; transform: translateY(0); }
    }
.ld-hero-section .logo {
      display: flex;
      align-items: center;
      gap: 14px;
      text-decoration: none;
      color: var(--cream);
      z-index: 25;
    }
.ld-hero-section .logo-mark {
      width: 52px;
      height: 52px;
      border: 1.5px solid rgba(201,169,110,0.70);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
.ld-hero-section .logo-mark svg {
      width: 28px;
      height: 28px;
      fill: none;
      stroke: var(--gold);
      stroke-width: 1.4;
    }
.ld-hero-section .logo-text {
      line-height: 1;
    }
.ld-hero-section .logo-text .brand {
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px;
      font-weight: 500;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      display: block;
    }
.ld-hero-section .logo-text .tagline {
      font-size: 9.5px;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.55);
      margin-top: 3px;
      display: block;
    }
.ld-hero-section .nav-links {
      display: flex;
      align-items: center;
      gap: 36px;
      list-style: none;
    }
.ld-hero-section .nav-links a {
      text-decoration: none;
      color: rgba(255,255,255,0.80);
      font-size: 11.5px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      font-weight: 400;
      transition: color 0.2s;
      display: flex;
      align-items: center;
      gap: 6px;
    }
.ld-hero-section .nav-links a:hover {
      color: #fff;
    }
.ld-hero-section .nav-links .has-arrow::after {
      content: '';
      display: inline-block;
      width: 7px;
      height: 7px;
      border-right: 1.5px solid currentColor;
      border-bottom: 1.5px solid currentColor;
      transform: rotate(45deg) translateY(-2px);
    }
.ld-hero-section .btn-book-nav {
      border: 1.5px solid var(--sage);
      background: var(--sage);
      color: #fff !important;
      padding: 13px 28px;
      letter-spacing: 0.18em;
      font-size: 11.5px;
      text-transform: uppercase;
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 10px;
      transition: background 0.25s, border-color 0.25s;
      font-weight: 500;
    }
.ld-hero-section .btn-book-nav:hover {
      background: var(--sage-dark);
      border-color: var(--sage-dark);
    }
.ld-hero-section .btn-book-nav .arrow {
      font-size: 16px;
    }
.ld-hero-section .menu-toggle {
      display: none;
      width: 44px;
      height: 44px;
      border: 1px solid rgba(255,255,255,0.25);
      background: rgba(255,255,255,0.06);
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      z-index: 30;
    }
.ld-hero-section .menu-toggle span {
      width: 20px;
      height: 1.5px;
      background: #fff;
      display: block;
      transition: transform 0.25s ease, opacity 0.25s ease;
    }
.ld-hero-section .menu-toggle.is-active span:nth-child(1) {
      transform: translateY(6.5px) rotate(45deg);
    }
.ld-hero-section .menu-toggle.is-active span:nth-child(2) {
      opacity: 0;
    }
.ld-hero-section .menu-toggle.is-active span:nth-child(3) {
      transform: translateY(-6.5px) rotate(-45deg);
    }
.ld-hero-section .hero-content {
      position: relative;
      z-index: 10;
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
      width: 100%;
      max-width: var(--container-width);
      margin-left: auto;
      margin-right: auto;
      padding-left: var(--container-padding);
      padding-right: var(--container-padding);
      padding-bottom: 60px;
    }
.ld-hero-section .hero-content-inner {
      max-width: 760px;
    }
.ld-hero-section .eyebrow {
      font-size: 11px;
      letter-spacing: 0.32em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 24px;
      opacity: 0;
      animation: fadeUp 0.8s 0.6s ease forwards;
    }
.ld-hero-section .hero-title {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 400;
      font-size: clamp(52px, 6vw, 82px);
      line-height: 1.06;
      color: #fff;
      margin-bottom: 4px;
      opacity: 0;
      animation: fadeUp 0.9s 0.78s ease forwards;
    }
.ld-hero-section .hero-title-italic {
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-weight: 300;
      font-size: clamp(52px, 6vw, 82px);
      line-height: 1.10;
      color: var(--gold);
      display: block;
      opacity: 0;
      animation: fadeUp 0.9s 0.88s ease forwards;
    }
.ld-hero-section .title-rule {
      width: 56px;
      height: 1.5px;
      background: var(--gold);
      margin: 28px 0 30px;
      opacity: 0;
      animation: fadeUp 0.8s 1.0s ease forwards;
    }
.ld-hero-section .hero-body {
      font-size: 18px;
      line-height: 1.72;
      color: var(--text-light);
      font-weight: 300;
      max-width: 520px;
      opacity: 0;
      animation: fadeUp 0.8s 1.08s ease forwards;
    }
.ld-hero-section .cta-group {
      display: flex;
      align-items: center;
      gap: 20px;
      margin-top: 42px;
      opacity: 0;
      animation: fadeUp 0.8s 1.22s ease forwards;
    }
.ld-hero-section .btn-primary {
      background: var(--sage);
      color: #fff;
      text-decoration: none;
      font-size: 11px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      font-weight: 500;
      padding: 18px 36px;
      display: flex;
      align-items: center;
      gap: 12px;
      transition: background 0.25s, transform 0.2s;
      border: 1.5px solid var(--sage);
    }
.ld-hero-section .btn-primary:hover {
      background: var(--sage-dark);
      border-color: var(--sage-dark);
      transform: translateX(3px);
    }
.ld-hero-section .btn-secondary {
      background: transparent;
      color: #fff;
      text-decoration: none;
      font-size: 11px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      font-weight: 500;
      padding: 18px 36px;
      display: flex;
      align-items: center;
      gap: 12px;
      border: 1.5px solid rgba(255,255,255,0.45);
      transition: border-color 0.25s, transform 0.2s;
    }
.ld-hero-section .btn-secondary:hover {
      border-color: rgba(255,255,255,0.85);
      transform: translateX(3px);
    }
.ld-hero-section .trust-bar {
      position: relative;
      z-index: 10;
      display: flex;
      align-items: center;
      gap: 0;
      width: 100%;
      max-width: var(--container-width);
      margin-left: auto;
      margin-right: auto;
      padding-left: var(--container-padding);
      padding-right: var(--container-padding);
      padding-bottom: 52px;
      opacity: 0;
      animation: fadeUp 0.8s 1.38s ease forwards;
    }
.ld-hero-section .trust-item {
      display: flex;
      align-items: center;
      gap: 14px;
      padding-right: 40px;
      margin-right: 40px;
      border-right: 1px solid rgba(255,255,255,0.18);
    }
.ld-hero-section .trust-item:last-child {
      border-right: none;
      margin-right: 0;
      padding-right: 0;
    }
.ld-hero-section .trust-icon {
      width: 38px;
      height: 38px;
      flex-shrink: 0;
    }
.ld-hero-section .google-logo {
      background: #fff;
      border-radius: 50%;
      padding: 7px;
    }
.ld-hero-section .trust-text {
      line-height: 1.2;
    }
.ld-hero-section .trust-label {
      font-size: 13px;
      color: #fff;
      font-weight: 400;
      line-height: 1.2;
    }
.ld-hero-section .trust-sub {
      font-size: 12px;
      color: var(--text-muted);
      line-height: 1.2;
      margin-top: 0;
    }
.ld-hero-section .stars {
      color: #fbbc04;
      font-size: 13px;
      line-height: 1.2;
      letter-spacing: 1px;
      margin-top: 0;
    }
.ld-hero-section .services-strip-wrapper {
      position: relative;
      z-index: 10;
      background: var(--cream);
      width: 100%;
    }
.ld-hero-section .services-strip {
      display: flex;
      align-items: stretch;
      width: 100%;
      max-width: var(--container-width);
      margin-left: auto;
      margin-right: auto;
      padding-left: var(--container-padding);
      padding-right: var(--container-padding);
    }
.ld-hero-section .service-item {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: flex-start;
      gap: 14px;
      padding: 32px 28px;
      border-right: 1px solid rgba(0,0,0,0.10);
      transition: background 0.22s;
      cursor: default;
    }
.ld-hero-section .service-item:last-child {
      border-right: none;
    }
.ld-hero-section .service-item:hover {
      background: rgba(107,122,94,0.08);
    }
.ld-hero-section .service-icon {
      width: 36px;
      height: 36px;
      flex-shrink: 0;
      color: var(--sage);
    }
.ld-hero-section .service-name {
      font-size: 13px;
      line-height: 1.2em;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      font-weight: 600;
      color: #2a2b26;
    }
.ld-hero-section .service-desc {
      font-size: 15px;
      line-height: 1.55;
      color: #777;
      margin-top: 8px;
      font-weight: 300;
    }
@keyframes fadeUp {
      from { opacity: 0; transform: translateY(22px); }
      to { opacity: 1; transform: translateY(0); }
    }
@media (max-width: 1024px) {
.ld-hero-section .menu-toggle {
        display: flex;
      }
.ld-hero-section .btn-book-nav {
        display: none;
      }
.ld-hero-section .nav-links {
        position: absolute;
        top: var(--nav-height);
        left: var(--container-padding);
        right: var(--container-padding);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        background: rgba(42, 43, 38, 0.96);
        border: 1px solid rgba(255,255,255,0.12);
        backdrop-filter: blur(16px);
        padding: 14px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        pointer-events: none;
        transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
      }
.ld-hero-section .nav-links.is-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
      }
.ld-hero-section .nav-links li {
        width: 100%;
      }
.ld-hero-section .nav-links a {
        width: 100%;
        padding: 16px 12px;
        font-size: 12px;
        justify-content: space-between;
        border-bottom: 1px solid rgba(255,255,255,0.08);
      }
.ld-hero-section .nav-links li:last-child a {
        border-bottom: none;
      }
.ld-hero-section .trust-bar {
        flex-wrap: wrap;
        gap: 24px;
      }
.ld-hero-section .trust-item {
        border-right: none;
        margin-right: 0;
        padding-right: 0;
      }
.ld-hero-section .services-strip {
        flex-wrap: wrap;
      }
.ld-hero-section .service-item {
        flex: 1 1 50%;
      }

    
}
@media (max-width: 767px) {
.ld-hero-section .logo-mark {
        width: 44px;
        height: 44px;
      }
.ld-hero-section .logo-text .brand {
        font-size: 18px;
      }
.ld-hero-section .logo-text .tagline {
        font-size: 8px;
      }
.ld-hero-section .hero-content {
        padding-bottom: 40px;
      }
.ld-hero-section .hero-body {
        font-size: 17px;
      }
.ld-hero-section .cta-group {
        flex-direction: column;
        align-items: flex-start;
      }
.ld-hero-section .btn-primary,
.ld-hero-section .btn-secondary {
        width: 100%;
        justify-content: center;
      }
.ld-hero-section .trust-bar {
        padding-bottom: 36px;
      }
.ld-hero-section .service-item {
        flex: 1 1 100%;
        border-right: none;
        border-bottom: 1px solid rgba(0,0,0,0.10);
      }
.ld-hero-section .service-item:last-child {
        border-bottom: none;
      }

    
}

  

/* Performance-friendly hero image: actual <img>, not only CSS background */
.ld-hero-section .hero-bg {
  background-image: none !important;
  transform: none !important;
  animation: none !important;
  overflow: hidden;
}

.ld-hero-section .hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  display: block;
}

/* Above-the-fold content should not wait for delayed animations */
.ld-hero-section nav,
.ld-hero-section .eyebrow,
.ld-hero-section .hero-title,
.ld-hero-section .hero-title-italic,
.ld-hero-section .title-rule,
.ld-hero-section .hero-body,
.ld-hero-section .cta-group,
.ld-hero-section .trust-bar {
  opacity: 1 !important;
  animation: none !important;
  transform: none !important;
}



/* ================= PORTFOLIO ================ */
.ld-portfolio-section,
.ld-portfolio-section * {
    box-sizing: border-box;
  }
.ld-portfolio-section {
    --sage: #6b7a5e;
    --sage-dark: #4e5c45;
    --sage-light: #8a9b7a;
    --cream: #f0ebe0;
    --cream-dark: #e6e0d4;
    --gold: #c9a96e;
    --text-dark: #2a2b26;
    --text-mid: #4a4a42;
    --text-muted: #888880;
    --container-width: 1270px;
    --container-padding: 24px;

    width: 100%;
    background: var(--cream);
    padding: 100px 0 110px;
    overflow: hidden;
    font-family: 'Jost', sans-serif;
    font-size: 18px;
  }
.ld-portfolio-section .ld-container {
    width: 100%;
    max-width: var(--container-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
  }
.ld-portfolio-section /* MAIN GRID */
  .ld-portfolio-grid-layout {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    align-items: stretch;
  }
.ld-portfolio-section /* COPY BLOCK */
  .ld-portfolio-copy {
    min-height: 330px;
    padding: 12px 32px 32px 6px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.75s ease, transform 0.75s ease;
  }
.ld-portfolio-section .ld-portfolio-copy.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
.ld-portfolio-section .ld-eyebrow {
    font-size: 11px;
    line-height: 1.2;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 20px;
    font-weight: 400;
  }
.ld-portfolio-section .ld-section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(52px, 5vw, 72px);
    line-height: 1.02;
    color: var(--text-dark);
    font-weight: 400;
    margin: 0 0 4px;
  }
.ld-portfolio-section .ld-section-title-italic {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 300;
    font-size: clamp(52px, 5vw, 72px);
    line-height: 1.08;
    color: var(--sage);
    display: block;
  }
.ld-portfolio-section .ld-title-rule {
    width: 48px;
    height: 1.5px;
    background: var(--gold);
    margin: 26px 0 28px;
  }
.ld-portfolio-section .ld-sidebar-body {
    font-size: 18px;
    line-height: 1.72;
    color: var(--text-mid);
    font-weight: 300;
    margin: 0 0 42px;
    max-width: 360px;
  }
.ld-portfolio-section .ld-btn-portfolio {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: fit-content;
    background: var(--sage);
    color: #fff;
    text-decoration: none;
    font-size: 11px;
    line-height: 1.2;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 500;
    padding: 17px 32px;
    border: 1.5px solid var(--sage);
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
  }
.ld-portfolio-section .ld-btn-portfolio:hover {
    background: var(--sage-dark);
    border-color: var(--sage-dark);
    color: #fff;
    transform: translateX(3px);
  }
.ld-portfolio-section /* CARDS */
  .ld-portfolio-card {
    position: relative;
    overflow: hidden;
    display: block;
    height: 400px;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
.ld-portfolio-section .ld-portfolio-card.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
.ld-portfolio-section .ld-portfolio-card:nth-child(2) {
    transition-delay: 0.05s;
  }
.ld-portfolio-section .ld-portfolio-card:nth-child(3) {
    transition-delay: 0.15s;
  }
.ld-portfolio-section .ld-portfolio-card:nth-child(4) {
    transition-delay: 0.25s;
  }
.ld-portfolio-section .ld-portfolio-card:nth-child(5) {
    transition-delay: 0.35s;
  }
.ld-portfolio-section .ld-portfolio-card:nth-child(6) {
    transition-delay: 0.45s;
  }
.ld-portfolio-section .ld-portfolio-card-img {
    width: 100%;
    height: 400px;
    min-height: inherit;
    object-fit: cover;
    display: block;
    transform: scale(1.04);
    transition: transform 0.7s ease, filter 0.7s ease;
    filter: brightness(0.88) saturate(0.85);
  }

.ld-portfolio-section .ld-portfolio-card:hover .ld-portfolio-card-img {
    transform: scale(1.09);
    filter: brightness(0.75) saturate(0.8);
  }
.ld-portfolio-section .ld-portfolio-card-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 36px 24px 24px;
    background: linear-gradient(to top, rgba(20,18,14,0.82) 0%, transparent 100%);
    transition: padding 0.3s ease;
  }
.ld-portfolio-section .ld-portfolio-card:hover .ld-portfolio-card-caption {
    padding-bottom: 30px;
  }
.ld-portfolio-section .ld-portfolio-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 400;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 6px;
  }
.ld-portfolio-section .ld-portfolio-card-tag {
    font-size: 10px;
    line-height: 1.2;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.68);
    font-weight: 400;
  }
.ld-portfolio-section .ld-portfolio-card-arrow {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255,255,255,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    line-height: 1;
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 2;
  }
.ld-portfolio-section .ld-portfolio-card:hover .ld-portfolio-card-arrow {
    opacity: 1;
    transform: translateY(0);
  }
@media (max-width: 1024px) {
.ld-portfolio-section {
      padding: 80px 0 90px;
    }
.ld-portfolio-section .ld-portfolio-grid-layout {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
.ld-portfolio-section .ld-portfolio-copy {
      grid-column: span 2;
      min-height: auto;
      padding: 0 0 24px;
      max-width: 680px;
    }
.ld-portfolio-section .ld-sidebar-body {
      max-width: 560px;
    }

  
}
@media (max-width: 767px) {
.ld-portfolio-section {
      --container-padding: 20px;
      padding: 68px 0 76px;
    }
.ld-portfolio-section .ld-portfolio-grid-layout {
      grid-template-columns: 1fr;
      gap: 12px;
    }
.ld-portfolio-section .ld-portfolio-copy {
      grid-column: auto;
      padding: 0 0 20px;
    }
.ld-portfolio-section .ld-section-title,
.ld-portfolio-section .ld-section-title-italic {
      font-size: clamp(44px, 12vw, 58px);
    }
.ld-portfolio-section .ld-sidebar-body {
      font-size: 17px;
    }
.ld-portfolio-section .ld-btn-portfolio {
      width: 100%;
    }
.ld-portfolio-section .ld-portfolio-card {
      min-height: 320px;
    }
.ld-portfolio-section .ld-portfolio-card-title {
      font-size: 24px;
    }
.ld-portfolio-section .ld-portfolio-card-caption {
      padding: 36px 22px 22px;
    }

  
}



/* ================= ABOUT ================ */
.ld-about-section,
.ld-about-section * {
    box-sizing: border-box;
  }
.ld-about-section {
    --sage: #6b7a5e;
    --sage-dark: #4e5c45;
    --gold: #c9a96e;
    --text-dark: #2a2b26;
    --text-mid: #4a4a42;
    --text-muted: #888880;
    --container-width: 1270px;
    --container-padding: 24px;

    position: relative;
    width: 100%;
    min-height: 850px;
    overflow: hidden;
    font-family: 'Jost', sans-serif;
    font-size: 18px;

    background-image: url('http://websiteshopco.com/wp-content/uploads/2026/05/f222b74f-f2d2-4f29-9fd3-ebeeb3690df7.png');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
  }
.ld-about-section .ld-about-bg-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
      90deg,
      rgba(240, 235, 224, 0.96) 0%,
      rgba(240, 235, 224, 0.88) 16%,
      rgba(240, 235, 224, 0.45) 30%,
      rgba(240, 235, 224, 0.00) 100%
    );
  }
.ld-about-section .ld-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--container-width);
    min-height: 850px;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
  }
.ld-about-section .ld-about-layout {
    min-height: 850px;
    display: grid;
    grid-template-columns: minmax(0, 620px) 1fr;
    align-items: center;
  }
.ld-about-section .ld-about-copy {
    padding: 100px 0 80px 6px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.75s ease, transform 0.75s ease;
  }
.ld-about-section .ld-about-copy.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
.ld-about-section .ld-eyebrow {
    font-size: 11px;
    line-height: 1.2;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 20px;
    font-weight: 400;
  }
.ld-about-section .ld-section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(44px, 4.5vw, 68px);
    line-height: 1.02;
    color: var(--text-dark);
    font-weight: 400;
    margin: 0 0 6px;
  }
.ld-about-section .ld-section-title-italic {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 300;
    font-size: clamp(36px, 3.8vw, 56px);
    line-height: 1.12;
    color: var(--sage);
    display: block;
  }
.ld-about-section .ld-title-rule {
    width: 48px;
    height: 1.5px;
    background: var(--gold);
    margin: 26px 0 30px;
    flex-shrink: 0;
  }
.ld-about-section .ld-about-body {
    font-size: 18px;
    line-height: 1.72;
    color: var(--text-mid);
    font-weight: 300;
    margin: 0 0 22px;
    max-width: 560px;
  }
.ld-about-section .ld-about-body:last-of-type {
    margin-bottom: 0;
  }
.ld-about-section .ld-stats-row {
    display: flex;
    align-items: center;
    gap: 0;
    margin-top: 48px;
    padding-top: 36px;
    border-top: 1px solid rgba(42,43,38,0.12);
  }
.ld-about-section .ld-stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
  }
.ld-about-section .ld-stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(42,43,38,0.15);
    flex-shrink: 0;
    margin: 0 24px;
  }
.ld-about-section .ld-stat-icon {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    color: var(--text-dark);
    opacity: 0.7;
  }
.ld-about-section .ld-stat-text {
    line-height: 1.2;
  }
.ld-about-section .ld-stat-label {
    font-size: 10px;
    letter-spacing: 0.20em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.2;
  }
.ld-about-section .ld-stat-sub {
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 400;
    line-height: 1.2;
    margin-top: 2px;
  }
@media (max-width: 1024px) {
.ld-about-section {
      min-height: auto;
      background-position: center right;
    }
.ld-about-section .ld-about-bg-overlay {
      background: linear-gradient(
        90deg,
        rgba(240, 235, 224, 0.96) 0%,
        rgba(240, 235, 224, 0.90) 50%,
        rgba(240, 235, 224, 0.45) 100%
      );
    }
.ld-about-section .ld-container,
.ld-about-section .ld-about-layout {
      min-height: 760px;
    }
.ld-about-section .ld-about-layout {
      grid-template-columns: minmax(0, 620px);
    }
.ld-about-section .ld-about-copy {
      padding: 80px 0 70px;
    }
.ld-about-section .ld-stats-row {
      flex-wrap: wrap;
      gap: 24px;
    }
.ld-about-section .ld-stat-divider {
      display: none;
    }
.ld-about-section .ld-stat-item {
      flex: 0 0 calc(50% - 12px);
    }

  
}
@media (max-width: 767px) {
.ld-about-section {
      --container-padding: 20px;
      background-position: 68% center;
    }
.ld-about-section .ld-about-bg-overlay {
      background: rgba(240, 235, 224, 0.88);
    }
.ld-about-section .ld-container,
.ld-about-section .ld-about-layout {
      min-height: auto;
    }
.ld-about-section .ld-about-copy {
      padding: 68px 0 72px;
    }
.ld-about-section .ld-section-title {
      font-size: clamp(38px, 11vw, 52px);
    }
.ld-about-section .ld-section-title-italic {
      font-size: clamp(30px, 9vw, 44px);
    }
.ld-about-section .ld-about-body {
      font-size: 17px;
    }
.ld-about-section .ld-stat-item {
      flex: 0 0 100%;
    }

  
}



/* ================= TESTIMONIALS ================ */
.ld-testimonials-section,
.ld-testimonials-section * {
    box-sizing: border-box;
  }
.ld-testimonials-section {
    --sage: #6b7a5e;
    --sage-dark: #4e5c45;
    --gold: #c9a96e;
    --text-dark: #2a2b26;
    --text-mid: #4a4a42;
    --text-muted: #888880;
    --card-bg: #f5f1e8;
    --container-width: 1270px;
    --container-padding: 24px;
    --card-width: 420px;
    --card-gap: 24px;

    width: 100%;
    background: transparent;
    padding: 100px 0;
    overflow: hidden;
    font-family: 'Jost', sans-serif;
    font-size: 18px;
  }
.ld-testimonials-section .ld-container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
  }
.ld-testimonials-section .ld-testimonials-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 52px;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.75s ease, transform 0.75s ease;
  }
.ld-testimonials-section .ld-testimonials-header.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
.ld-testimonials-section .ld-header-left {
    flex: 1;
  }
.ld-testimonials-section .ld-eyebrow {
    font-size: 11px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 18px;
    font-weight: 400;
    line-height: 1.2;
  }
.ld-testimonials-section .ld-section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(44px, 5vw, 68px);
    line-height: 1.02;
    color: var(--text-dark);
    font-weight: 400;
    margin: 0 0 4px;
  }
.ld-testimonials-section .ld-section-title-italic {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 300;
    font-size: clamp(44px, 5vw, 68px);
    line-height: 1.08;
    color: var(--sage);
    display: block;
  }
.ld-testimonials-section .ld-title-rule {
    width: 48px;
    height: 1.5px;
    background: var(--gold);
    margin: 24px 0 0;
  }
.ld-testimonials-section .ld-header-right {
    flex-shrink: 0;
    padding-bottom: 4px;
  }
.ld-testimonials-section .ld-google-badge {
    display: flex;
    align-items: center;
    gap: 28px;
  }
.ld-testimonials-section .ld-google-badge-left {
    display: flex;
    align-items: center;
    gap: 16px;
  }
.ld-testimonials-section .ld-google-icon {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
  }
.ld-testimonials-section .ld-google-label {
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 400;
    display: block;
    line-height: 1.2;
    margin-bottom: 3px;
  }
.ld-testimonials-section .ld-google-score-row {
    display: flex;
    align-items: center;
    gap: 8px;
  }
.ld-testimonials-section .ld-google-score {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1;
  }
.ld-testimonials-section .ld-stars {
    color: #FBBC04;
    font-size: 16px;
    letter-spacing: 1px;
    line-height: 1;
  }
.ld-testimonials-section .ld-google-divider {
    width: 1px;
    height: 42px;
    background: rgba(42,43,38,0.18);
    flex-shrink: 0;
  }
.ld-testimonials-section .ld-google-reviews {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 300;
    white-space: nowrap;
  }
.ld-testimonials-section .ld-carousel-outer {
    overflow: hidden;
    cursor: grab;
    margin: 0 calc(-1 * var(--container-padding));
    padding: 8px 0 16px;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  }
.ld-testimonials-section .ld-carousel-outer:active {
    cursor: grabbing;
  }
.ld-testimonials-section .ld-carousel-track {
    display: flex;
    gap: var(--card-gap);
    width: max-content;
    will-change: transform;
    padding: 0 var(--container-padding);
  }
.ld-testimonials-section .ld-review-card {
    width: var(--card-width);
    flex: 0 0 var(--card-width);
    background: var(--card-bg);
    border: 1px solid rgba(42,43,38,0.08);
    border-radius: 2px;
    padding: 36px 36px 32px;
    display: flex;
    flex-direction: column;
    min-height: 320px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    user-select: none;
  }
.ld-testimonials-section .ld-review-card:hover {
    box-shadow: 0 8px 32px rgba(42,43,38,0.09);
    transform: translateY(-3px);
  }
.ld-testimonials-section .ld-card-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 64px;
    line-height: 0.6;
    color: var(--sage);
    font-weight: 600;
    margin-bottom: 20px;
    opacity: 0.7;
  }
.ld-testimonials-section .ld-card-body {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-mid);
    font-weight: 300;
    flex: 1;
    margin: 0 0 24px;
  }
.ld-testimonials-section .ld-card-rule {
    width: 28px;
    height: 1.5px;
    background: var(--gold);
    margin-bottom: 24px;
    flex-shrink: 0;
  }
.ld-testimonials-section .ld-card-author {
    display: flex;
    align-items: center;
    gap: 16px;
  }
.ld-testimonials-section .ld-author-img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    filter: saturate(0.8) brightness(0.96);
    flex-shrink: 0;
  }
.ld-testimonials-section .ld-author-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1.2;
  }
.ld-testimonials-section .ld-author-role {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 300;
    margin-top: 3px;
    line-height: 1.2;
  }
.ld-testimonials-section .ld-section-divider {
    width: 100%;
    height: 1px;
    background: rgba(42,43,38,0.12);
    margin: 56px 0 52px;
  }
.ld-testimonials-section .ld-stats-row {
    display: flex;
    align-items: flex-start;
    gap: 0;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.75s ease 0.15s, transform 0.75s ease 0.15s;
  }
.ld-testimonials-section .ld-stats-row.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
.ld-testimonials-section .ld-stat-item {
    flex: 1;
    display: flex;
    align-items: flex-start;
    gap: 20px;
  }
.ld-testimonials-section .ld-stat-divider {
    width: 1px;
    align-self: stretch;
    background: rgba(42,43,38,0.13);
    flex-shrink: 0;
    margin: 0 40px;
  }
.ld-testimonials-section .ld-stat-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--sage);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
.ld-testimonials-section .ld-stat-icon-wrap svg {
    width: 26px;
    height: 26px;
    color: #fff;
  }
.ld-testimonials-section .ld-stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1;
    margin-bottom: 6px;
  }
.ld-testimonials-section .ld-stat-label {
    font-size: 10px;
    letter-spacing: 0.20em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
    line-height: 1.2;
  }
.ld-testimonials-section .ld-stat-desc {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.55;
    max-width: 180px;
  }
@media (max-width: 1024px) {
.ld-testimonials-section {
      --card-width: 360px;
    }
.ld-testimonials-section .ld-testimonials-header {
      flex-direction: column;
      align-items: flex-start;
      gap: 28px;
    }
.ld-testimonials-section .ld-stats-row {
      flex-wrap: wrap;
      gap: 36px 0;
    }
.ld-testimonials-section .ld-stat-divider {
      display: none;
    }
.ld-testimonials-section .ld-stat-item {
      flex: 0 0 50%;
    }

  
}
@media (max-width: 767px) {
.ld-testimonials-section {
      --container-padding: 20px;
      --card-width: 300px;
      padding: 68px 0 76px;
    }
.ld-testimonials-section .ld-section-title,
.ld-testimonials-section .ld-section-title-italic {
      font-size: clamp(36px, 11vw, 52px);
    }
.ld-testimonials-section .ld-google-badge {
      flex-direction: column;
      align-items: flex-start;
      gap: 14px;
    }
.ld-testimonials-section .ld-google-divider {
      display: none;
    }
.ld-testimonials-section .ld-stat-item {
      flex: 0 0 100%;
    }
.ld-testimonials-section .ld-stat-number {
      font-size: 40px;
    }

  
}



/* ================= CTA ================ */
.ld-cta-section,
.ld-cta-section * {
    box-sizing: border-box;
  }
.ld-cta-section {
    --sage: #6b7a5e;
    --sage-dark: #4e5c45;
    --gold: #c9a96e;
    --text-light: rgba(255,255,255,0.90);
    --text-muted: rgba(255,255,255,0.64);
    --container-width: 1270px;
    --container-padding: 24px;

    position: relative;
    width: 100%;
    min-height: 850px;
    overflow: hidden;
    font-family: 'Jost', sans-serif;
    font-size: 18px;
    background: #2a2b26;
  }
.ld-cta-section .ld-container {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: var(--container-width);
    min-height: 850px;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
    display: flex;
  }
.ld-cta-section .ld-cta-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image: url('https://images.unsplash.com/photo-1616594039964-ae9021a400a0?w=1800&q=85&auto=format&fit=crop&crop=center');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    transform: scale(1.04);
    animation: ldCtaZoom 18s ease-out forwards;
  }
.ld-cta-section .ld-cta-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(
      108deg,
      rgba(28,27,20,0.86) 0%,
      rgba(28,27,20,0.66) 38%,
      rgba(28,27,20,0.24) 70%,
      rgba(28,27,20,0.08) 100%
    );
  }
@keyframes ldCtaZoom {
    from {
      transform: scale(1.04);
    }

    to {
      transform: scale(1);
    }
  }
.ld-cta-section .ld-cta-inner {
    width: 100%;
    max-width: 640px;
    min-height: 850px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 110px 0 64px;
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.85s ease, transform 0.85s ease;
  }
.ld-cta-section .ld-cta-inner.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
.ld-cta-section .ld-cta-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
.ld-cta-section .ld-eyebrow {
    font-size: 11px;
    line-height: 1.2;
    letter-spacing: 0.30em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 0 0 22px;
    font-weight: 400;
  }
.ld-cta-section .ld-section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(48px, 5.5vw, 76px);
    line-height: 1.02;
    color: #fff;
    font-weight: 400;
    margin: 0 0 4px;
  }
.ld-cta-section .ld-section-title-italic {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 300;
    font-size: clamp(48px, 5.5vw, 76px);
    line-height: 1.08;
    color: var(--gold);
    display: block;
  }
.ld-cta-section .ld-title-rule {
    width: 48px;
    height: 1.5px;
    background: var(--gold);
    margin: 28px 0 30px;
    flex-shrink: 0;
  }
.ld-cta-section .ld-cta-body {
    font-size: 18px;
    line-height: 1.72;
    color: var(--text-light);
    font-weight: 300;
    margin: 0 0 44px;
    max-width: 520px;
  }
.ld-cta-section .ld-cta-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
  }
.ld-cta-section .ld-btn-primary,
.ld-cta-section .ld-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 56px;
    padding: 18px 36px;
    font-size: 11px;
    line-height: 1.2;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.2s ease;
  }
.ld-cta-section .ld-btn-primary {
    background: var(--sage);
    color: #fff;
    border: 1.5px solid var(--sage);
  }
.ld-cta-section .ld-btn-primary:hover {
    background: var(--sage-dark);
    border-color: var(--sage-dark);
    color: #fff;
    transform: translateX(3px);
  }
.ld-cta-section .ld-btn-secondary {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.45);
  }
.ld-cta-section .ld-btn-secondary:hover {
    border-color: rgba(255,255,255,0.90);
    color: #fff;
    transform: translateX(3px);
  }
.ld-cta-section .ld-cta-trust {
    display: flex;
    align-items: flex-start;
    gap: 0;
    padding-top: 48px;
    border-top: 1px solid rgba(255,255,255,0.15);
    margin-top: 64px;
  }
.ld-cta-section .ld-trust-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    flex: 1;
  }
.ld-cta-section .ld-trust-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    color: rgba(255,255,255,0.76);
    margin-top: 2px;
  }
.ld-cta-section .ld-trust-text {
    line-height: 1.2;
  }
.ld-cta-section .ld-trust-label {
    font-size: 12px;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 5px;
  }
.ld-cta-section .ld-trust-desc {
    font-size: 13px;
    line-height: 1.45;
    color: var(--text-muted);
    font-weight: 300;
    max-width: 150px;
  }
.ld-cta-section .ld-trust-divider {
    width: 1px;
    align-self: stretch;
    min-height: 44px;
    background: rgba(255,255,255,0.15);
    flex-shrink: 0;
    margin: 0 32px;
  }
@media (max-width: 1024px) {
.ld-cta-section,
.ld-cta-section .ld-container,
.ld-cta-section .ld-cta-inner {
      min-height: 760px;
    }
.ld-cta-section .ld-cta-inner {
      max-width: 600px;
      padding: 90px 0 56px;
    }
.ld-cta-section .ld-cta-overlay {
      background: linear-gradient(
        108deg,
        rgba(28,27,20,0.88) 0%,
        rgba(28,27,20,0.72) 48%,
        rgba(28,27,20,0.34) 100%
      );
    }

  
}
@media (max-width: 767px) {
.ld-cta-section {
      --container-padding: 20px;
      min-height: auto;
    }
.ld-cta-section .ld-container,
.ld-cta-section .ld-cta-inner {
      min-height: auto;
    }
.ld-cta-section .ld-cta-bg {
      background-position: center;
    }
.ld-cta-section .ld-cta-overlay {
      background: rgba(28,27,20,0.72);
    }
.ld-cta-section .ld-cta-inner {
      padding: 72px 0 56px;
    }
.ld-cta-section .ld-section-title,
.ld-cta-section .ld-section-title-italic {
      font-size: clamp(38px, 11vw, 54px);
    }
.ld-cta-section .ld-cta-body {
      font-size: 17px;
    }
.ld-cta-section .ld-cta-buttons {
      flex-direction: column;
      align-items: stretch;
    }
.ld-cta-section .ld-btn-primary,
.ld-cta-section .ld-btn-secondary {
      width: 100%;
    }
.ld-cta-section .ld-cta-trust {
      flex-direction: column;
      gap: 28px;
      padding-top: 36px;
      margin-top: 52px;
    }
.ld-cta-section .ld-trust-divider {
      display: none;
    }
.ld-cta-section .ld-trust-item {
      flex: none;
    }
.ld-cta-section .ld-trust-desc {
      max-width: none;
    }

  
}/* End custom CSS */