/** Site Custom Stylesheet (From File) **/ 



 /** Site Custom Styles (From DB) **/ 

/* ---------- Design tokens ---------- */ :root  {
  /* Brand blue — logo, accent words, hero/care panels */ --color-sky: #24a9dd;
  --color-sky-dark: #0584b6;
  --color-sky-darker: #0a3d52;
  /* CTA green — primary buttons */ --color-forest: #306d29;
  --color-forest-dark: #255821;
  /* Accent orange — taglines, CTA section */ --color-rust: #c86d1b;
  --color-rust-dark: #a85a14;
  /* Warm dark — footer */ --color-charcoal: #2f2b27;
  /* Warm near-black — headings */ --color-ink: #372f29;
  /* Body text */ --color-slate: #222222;
  /* Light grey — page background & alternating section backgrounds */ --color-mist: #f5f5f4;
  /* Hairline greys — borders */ --color-stone: #cecbc8;
  --color-stone-light: #e3e3e3;
  /* Semantic anchors */ --color-brand: var(--color-sky);
  --color-text: var(--color-slate);
  --color-bg: #f5f5f4;
  /* Form field tokens — used by core-form-style */ --color-form-field-bg: #ffffff;
  --color-form-field-text-color: var(--color-slate);
  --color-form-field-border: var(--color-stone);
  --color-form-field-border-focus: var(--color-sky);
  --color-form-field-bg-disabled: #f0f0f0;
  --color-form-field-text-disabled: #999999;
  --color-form-button-bg: var(--color-forest);
  --color-form-button-text-color: #ffffff;
  --color-checkbox-accent: var(--color-sky);
}
/* ---------- Background utilities ---------- */ .bg-sky  {
  background-color: var(--color-sky);
}
.bg-sky-dark  {
  background-color: var(--color-sky-dark);
}
.bg-forest  {
  background-color: var(--color-forest);
}
.bg-rust  {
  background-color: var(--color-rust);
}
.bg-charcoal  {
  background-color: var(--color-charcoal);
}
.bg-ink  {
  background-color: var(--color-ink);
}
.bg-mist  {
  background-color: var(--color-mist);
}
.bg-stone  {
  background-color: var(--color-stone);
}
.bg-white  {
  background-color: #ffffff;
}
/* ---------- Base & typography ---------- */ html  {
  scroll-behavior: smooth;
}
body  {
  font-family: 'Open Sans', system-ui, -apple-system, sans-serif;
  color: var(--color-text);
  background-color: var(--color-bg);
  font-size: var(--text-size-reg);
  line-height: 1.6;
}
h1, h2, h3, h4, h5, h6  {
  font-family: 'Nunito Sans', system-ui, sans-serif;
  color: var(--color-ink);
  margin: 0;
  line-height: 1.15;
}
p  {
  margin: 0;
}
a  {
  color: var(--color-sky-dark);
}
img  {
  display: block;
  max-width: 100%;
}
.eyebrow  {
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: var(--text-size-reg);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.accent  {
  color: var(--color-sky);
}
/* ---------- Buttons ---------- */ .btn  {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0.85rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 2px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: var(--text-size-reg);
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn .icon  {
  width: 0.9em;
  height: 0.9em;
  flex: none;
}
.btn-primary  {
  background-color: var(--color-forest);
  border-color: var(--color-forest);
  color: #ffffff;
}
.btn-primary:hover  {
  background-color: var(--color-forest-dark);
  border-color: var(--color-forest-dark);
}
.btn-outline  {
  background-color: transparent;
  border-color: var(--color-stone);
  color: var(--color-slate);
}
.btn-outline:hover  {
  border-color: var(--color-slate);
}
.btn-outline-orange  {
  background-color: transparent;
  border-color: var(--color-rust);
  color: #000000;
}
.btn-outline-orange .icon  {
  color: var(--color-rust);
}
.btn-outline-orange:hover  {
  background-color: rgba(200, 109, 27, 0.08);
}
.btn-outline-white  {
  background-color: transparent;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-outline-white:hover  {
  background-color: rgba(255, 255, 255, 0.14);
}
.btn-group  {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
/* ---------- Section title shared pattern ---------- */ .section-head  {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 64px;
}
.section-heading  {
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.875rem);
  line-height: 1.14;
}
.section-head .btn  {
  flex: none;
}
/* ---------- Logo marquee keyframes (site-wide so they exist outside any media query / section scope) ---------- */ @keyframes logos-scroll  {
  from  {
    transform: translateX(0);
  }
  to  {
    transform: translateX(calc(-50% - 40px));
  }
}
@keyframes logos-scroll-sm  {
  from  {
    transform: translateX(0);
  }
  to  {
    transform: translateX(calc(-50% - 28px));
  }
}
/* ---------- Quote tray modal ---------- */ #tray-modal-quote .quote-tray-heading  {
  font-weight: 800;
  font-size: var(--text-size-4xl);
  line-height: 1.16;
  letter-spacing: -0.01em;
  color: var(--color-ink);
  padding-right: 1.5rem;
}
#tray-modal-quote .quote-tray-intro  {
  margin: 0 0 1.75rem;
  font-size: var(--text-size-lg);
  line-height: 1.6;
  color: var(--color-slate);
}
#tray-modal-quote .core-form-style label  {
  margin-bottom: 1.1rem;
}
#tray-modal-quote .core-form-style button  {
  margin-top: 0.5rem;
  width: 100%;
  background-color: var(--color-forest);
  border-color: var(--color-forest);
  color: #ffffff;
}
#tray-modal-quote .core-form-style button:hover  {
  background-color: var(--color-forest-dark);
  border-color: var(--color-forest-dark);
}
#tray-modal-quote .w-form-done, #tray-modal-quote .w-form-fail  {
  padding: 1.25rem 1.5rem;
  border-radius: 8px;
  line-height: 1.6;
}
#tray-modal-quote .w-form-done  {
  background-color: rgba(48, 109, 41, 0.1);
  color: var(--color-forest-dark);
}
#tray-modal-quote .w-form-fail  {
  background-color: rgba(200, 109, 27, 0.1);
  color: var(--color-rust-dark);
}


 /** Content Section Styles **/ 

.content-section-2199  {
  .content-section-inner  {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }
  .logo img  {
    height: 56px;
    width: auto;
  }
  .header-right  {
    display: flex;
    align-items: center;
    gap: 32px;
  }
  .core-menu-list  {
    display: flex;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .core-menu-link  {
    color: var(--color-ink);
    text-decoration: none;
    font-size: var(--text-size-reg);
    font-weight: 400;
  }
  .core-menu-link:hover  {
    color: var(--color-sky);
  }
  .header-actions  {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .nav-phone  {
    letter-spacing: 0.03em;
    font-weight: 600;
  }
  @media (max-width: 767px)  {
    .header-actions .nav-phone  {
      display: none;
    }
    .header-actions .btn-primary  {
      display: none;
    }
  }
}
.content-section-2200  {
  .content-section-inner  {
    display: flex;
    align-items: center;
    gap: 64px;
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
    color: #ffffff;
  }
  .footer-logo  {
    flex: 1 1 auto;
  }
  .footer-logo img  {
    height: 96px;
    width: auto;
  }
  .footer-contact  {
    color: #ffffff;
    font-size: var(--text-size-sm);
    line-height: 1.6;
  }
  .footer-contact .footer-phone  {
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #ffffff;
  }
  .footer-contact .footer-hours  {
    margin-top: 1.2em;
  }
  .footer-right  {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 32px;
    text-align: right;
  }
  .social-links  {
    display: flex;
    gap: 12px;
  }
  .social-links a  {
    display: inline-flex;
    width: 28px;
    height: 28px;
    transition: opacity 0.2s ease;
  }
  .social-links a:hover  {
    opacity: 0.8;
  }
  .social-links .icon  {
    width: 100%;
    height: 100%;
  }
  .social-fb  {
    color: #1877f2;
  }
  .social-ig  {
    color: #e4405f;
  }
  .social-li  {
    color: #0a66c2;
  }
  .social-yt  {
    color: #ff0000;
  }
  .footer-legal  {
    font-size: var(--text-size-xs);
    color: #ffffff;
  }
  .footer-legal a  {
    color: #ffffff;
  }
  @media (max-width: 767px)  {
    .content-section-inner  {
      flex-direction: column;
      align-items: flex-start;
      gap: 32px;
    }
    .footer-right  {
      align-items: flex-start;
      text-align: left;
    }
  }
}
.content-section-2201  {
  .hero-grid  {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 24px;
    align-items: stretch;
  }
  .hero-panel  {
    background: linear-gradient(rgba(36, 169, 221, 0.9), rgba(36, 169, 221, 0.9)), url('/site-assets/images/hero-texture.jpg') center / cover no-repeat;
    border-radius: 10px;
    padding: clamp(2rem, 4vw, 4.5rem);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #ffffff;
  }
  .hero-panel .eyebrow  {
    color: #ffffff;
    margin-bottom: 24px;
  }
  .hero-title  {
    color: #ffffff;
    font-weight: 800;
    font-size: clamp(2.25rem, 4.5vw, 3.75rem);
    line-height: 1.16;
    letter-spacing: -0.01em;
    max-width: 14ch;
  }
  .hero-lede  {
    color: #ffffff;
    font-weight: 600;
    font-size: var(--text-size-xl);
    line-height: 1.5;
    margin-top: 24px;
    max-width: 46ch;
  }
  .hero-panel .btn-group  {
    margin-top: 32px;
  }
  .hero-photo  {
    border-radius: 10px;
    overflow: hidden;
    min-height: 360px;
  }
  .hero-photo img  {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  @media (max-width: 1023px)  {
    .hero-grid  {
      grid-template-columns: 1fr;
    }
    .hero-photo  {
      min-height: 320px;
    }
  }
}
.content-section-2202  {
  .testimonials-title  {
    text-align: center;
    font-weight: 700;
    font-size: clamp(1.75rem, 3vw, 2rem);
    margin-bottom: 60px;
  }
  .testimonials-grid  {
    gap: 32px;
    align-items: start;
  }
  .testimonial-card  {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 40px;
  }
  .stars  {
    display: flex;
    gap: 4px;
    color: #e2a728;
    margin-bottom: 28px;
  }
  .stars .icon  {
    width: 22px;
    height: 22px;
  }
  .testimonial-quote  {
    font-size: var(--text-size-lg);
    line-height: 1.7;
    color: var(--color-slate);
  }
  .testimonial-quote p + p  {
    margin-top: 1.1em;
  }
  .testimonial-name  {
    margin-top: 28px;
    font-weight: 600;
    font-size: var(--text-size-xl);
    color: #000000;
    font-family: 'Open Sans', sans-serif;
  }
  @media (max-width: 1023px)  {
    .testimonials-grid.grid-cols-3  {
      grid-template-columns: 1fr;
    }
  }
}
.content-section-2203  {
  .gallery-grid  {
    gap: 32px;
    row-gap: 56px;
  }
  .gallery-card  {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .gallery-card .gallery-img  {
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 576 / 340;
  }
  .gallery-card .gallery-img img  {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .gallery-card h3  {
    font-weight: 600;
    font-size: var(--text-size-4xl);
    letter-spacing: -0.02em;
  }
  .gallery-card p  {
    font-size: var(--text-size-lg);
    line-height: 1.7;
    color: var(--color-slate);
  }
  @media (max-width: 767px)  {
    .section-head  {
      flex-direction: column;
      align-items: flex-start;
      gap: 24px;
    }
    .gallery-grid.grid-cols-3  {
      grid-template-columns: 1fr;
    }
  }
}
.content-section-2204  {
  background: linear-gradient(rgba(36, 169, 221, 0.92), rgba(36, 169, 221, 0.92)), url('/site-assets/images/care-texture.jpg') center / cover no-repeat;
  .care-grid  {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }
  .eyebrow  {
    color: #ffffff;
  }
  .care-heading  {
    color: #ffffff;
    font-weight: 800;
    font-size: clamp(2.25rem, 4.5vw, 3.75rem);
    line-height: 1.16;
    letter-spacing: -0.01em;
    margin-top: 16px;
  }
  .care-left .btn-group  {
    margin-top: 30px;
  }
  .care-list  {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
  }
  .care-list li  {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 5px 0;
    font-weight: 600;
    font-size: var(--text-size-lg);
    color: #ffffff;
  }
  .care-list .icon  {
    width: 16px;
    height: 16px;
    flex: none;
    color: var(--color-rust);
  }
  .care-copy p  {
    font-size: var(--text-size-lg);
    line-height: 1.6;
    color: #ffffff;
  }
  .care-copy p + p  {
    margin-top: 1em;
  }
  .care-copy .care-q  {
    font-weight: 800;
    font-size: var(--text-size-3xl);
    color: #ffffff;
  }
  .care-copy strong  {
    font-weight: 800;
  }
  @media (max-width: 1023px)  {
    .care-grid  {
      grid-template-columns: 1fr;
      gap: 48px;
    }
  }
}
.content-section-2205  {
  .process-grid  {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 16px;
    align-items: start;
  }
  .process-intro  {
    max-width: 32rem;
    align-self: start;
  }
  .process-intro h2  {
    font-weight: 700;
    font-size: clamp(2rem, 4vw, 2.875rem);
    line-height: 1.14;
  }
  .process-intro p  {
    font-size: var(--text-size-lg);
    line-height: 1.7;
    color: var(--color-slate);
    margin-top: 24px;
  }
  .process-intro .btn-group  {
    margin-top: 44px;
  }
  .process-steps  {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
  .step-card  {
    position: relative;
    background-color: #ffffff;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  }
  .step-card .step-icon  {
    position: absolute;
    top: 32px;
    right: 36px;
    width: 46px;
    height: 46px;
  }
  .step-card .step-label  {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: var(--text-size-2xs);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-rust);
  }
  .step-card h3  {
    margin-top: 16px;
    font-weight: 600;
    font-size: var(--text-size-4xl);
    letter-spacing: -0.02em;
    padding-right: 56px;
    color: var(--color-ink);
  }
  .step-card p  {
    margin-top: 16px;
    font-size: var(--text-size-lg);
    line-height: 1.7;
    color: var(--color-slate);
  }
  .btn-outline .icon  {
    color: var(--color-rust);
  }
  @media (max-width: 1023px)  {
    .process-grid  {
      grid-template-columns: 1fr;
      gap: 48px;
    }
  }
}
.content-section-2206  {
  .why-title  {
    text-align: center;
    font-weight: 700;
    font-size: clamp(2rem, 4vw, 2.875rem);
    line-height: 1.14;
    max-width: 25ch;
    margin: 0 auto 70px;
  }
  .why-grid  {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .feature-card  {
    display: flex;
    gap: 20px;
    border: 1px solid var(--color-stone);
    border-radius: 12px;
    padding: 35px;
  }
  .feature-card .icon  {
    width: 24px;
    height: 28px;
    flex: none;
    color: var(--color-sky);
    margin-top: 4px;
  }
  .feature-card h3  {
    font-weight: 600;
    font-size: var(--text-size-4xl);
    letter-spacing: -0.02em;
  }
  .feature-card p  {
    margin-top: 16px;
    font-size: var(--text-size-lg);
    line-height: 1.7;
    color: var(--color-slate);
  }
  @media (max-width: 767px)  {
    .why-grid  {
      grid-template-columns: 1fr;
    }
  }
}
.content-section-2207  {
  .case-head  {
    align-items: flex-start;
    margin-bottom: 80px;
  }
  .case-head .eyebrow  {
    color: var(--color-rust);
    margin-bottom: 24px;
  }
  .case-head h2  {
    font-weight: 700;
    font-size: clamp(2rem, 4vw, 2.875rem);
    line-height: 1.14;
    color: #000000;
    max-width: 18ch;
  }
  .case-head p  {
    margin-top: 24px;
    font-size: var(--text-size-lg);
    line-height: 1.7;
    color: #000000;
    max-width: 60ch;
  }
  .case-cards  {
    gap: 32px;
    margin-bottom: 80px;
  }
  .case-card  {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  }
  .case-card h3  {
    font-weight: 600;
    font-size: var(--text-size-4xl);
    letter-spacing: -0.02em;
  }
  .case-card p  {
    margin-top: 16px;
    font-size: var(--text-size-lg);
    line-height: 1.7;
    color: var(--color-slate);
  }
  .case-card p + p  {
    margin-top: 1em;
  }
  .case-list  {
    list-style: none;
    margin: 16px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .case-list li  {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: var(--text-size-lg);
    line-height: 1.7;
    color: var(--color-slate);
  }
  .case-list .icon  {
    width: 18px;
    height: 18px;
    flex: none;
    color: var(--color-sky);
    margin-top: 4px;
  }
  /* ---------- Before / After comparison slider ---------- */ /* The "Before" image is in normal flow and sets the natural height of the frame.
   The "After" image is absolutely positioned on top, clipped to reveal from the right. */ .case-compare  {
    position: relative;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    user-select: none;
    touch-action: pan-y;
  }
  .case-compare .compare-before  {
    position: relative;
  }
  .case-compare .compare-after  {
    position: absolute;
    inset: 0;
  }
  .case-compare .compare-img img  {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
  }
  .case-compare .compare-before img  {
    height: auto;
  }
  /* "After" sits on top and is clipped from the LEFT edge by --pos, so it shows on the right */ .case-compare .compare-after  {
    clip-path: inset(0 0 0 var(--pos, 50%));
  }
  .case-tag  {
    position: absolute;
    bottom: 33px;
    background-color: rgba(0, 0, 0, 0.45);
    color: #ffffff;
    border-radius: 4px;
    padding: 10px 15px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: var(--text-size-reg);
  }
  .case-tag-before  {
    left: 33px;
  }
  .case-tag-after  {
    right: 33px;
  }
  .compare-handle  {
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--pos, 50%);
    transform: translateX(-50%);
    width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
  }
  .compare-line  {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    transform: translateX(-50%);
    background-color: #ffffff;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.35);
  }
  .compare-knob  {
    position: relative;
    z-index: 2;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--color-sky);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
  }
  .compare-knob .icon  {
    width: 26px;
    height: 26px;
  }
  /* The range input is the actual draggable control, laid invisibly over the whole image */ .compare-range  {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    background: transparent;
    cursor: ew-resize;
    -webkit-appearance: none;
    appearance: none;
    opacity: 0;
  }
  .compare-range::-webkit-slider-thumb  {
    -webkit-appearance: none;
    appearance: none;
    width: 48px;
    height: 100%;
    cursor: ew-resize;
  }
  .compare-range::-moz-range-thumb  {
    width: 48px;
    border: none;
    cursor: ew-resize;
  }
  @media (max-width: 767px)  {
    .section-head  {
      flex-direction: column;
      align-items: flex-start;
      gap: 24px;
    }
    .case-cards.grid-cols-3  {
      grid-template-columns: 1fr;
    }
    .case-tag  {
      bottom: 18px;
      font-size: var(--text-size-sm);
      padding: 8px 12px;
    }
    .case-tag-before  {
      left: 18px;
    }
    .case-tag-after  {
      right: 18px;
    }
  }
}
.content-section-2208  {
  .logos-marquee  {
    width: 100%;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
  }
  .logos-track  {
    display: flex;
    align-items: center;
    gap: 80px;
    width: max-content;
    animation: logos-scroll 40s linear infinite;
  }
  .logos-marquee:hover .logos-track  {
    animation-play-state: paused;
  }
  .logos-track img  {
    height: 64px;
    width: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
    flex: none;
  }
  @media (prefers-reduced-motion: reduce)  {
    .logos-track  {
      animation: none;
    }
    .logos-marquee  {
      overflow-x: auto;
      -webkit-mask-image: none;
      mask-image: none;
    }
  }
  @media (max-width: 767px)  {
    .logos-track  {
      gap: 56px;
      animation-name: logos-scroll-sm;
    }
    .logos-track img  {
      height: 48px;
    }
  }
}
.content-section-2209  {
  .content-section-inner  {
    max-width: calc(var(--base-content-section-max-width) * 0.6);
  }
  .faq-title  {
    text-align: center;
    font-weight: 700;
    font-size: clamp(2rem, 4vw, 2.875rem);
    line-height: 1.14;
    color: #000000;
    max-width: 24ch;
    margin: 0 auto 64px;
  }
  .core-accordion-01 details  {
    padding: 1.4rem 0;
    border-top: 1px solid var(--color-stone-light);
  }
  .core-accordion-01 > * + *  {
    margin-top: 0;
  }
  .core-accordion-01 details:last-child  {
    border-bottom: 1px solid var(--color-stone-light);
  }
  .core-accordion-01 details summary  {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    font-size: var(--text-size-xl);
    line-height: 1.3;
    color: var(--color-ink);
  }
  .core-accordion-01 details[open] summary  {
    color: var(--color-sky);
  }
  .core-accordion-01 details p  {
    font-family: 'Open Sans', sans-serif;
    font-size: var(--text-size-lg);
    line-height: 1.7;
    color: #000000;
    font-weight: 400;
  }
}
.content-section-2210  {
  background: linear-gradient(rgba(200, 109, 27, 0.88), rgba(200, 109, 27, 0.88)), url('/site-assets/images/cta-texture.jpg') center / cover no-repeat;
  .cta-grid  {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 32px;
    align-items: center;
  }
  .cta-heading  {
    color: #ffffff;
    font-weight: 800;
    font-size: clamp(2.25rem, 4.5vw, 3.375rem);
    line-height: 1.16;
    letter-spacing: -0.01em;
  }
  .cta-text  {
    color: #ffffff;
    font-weight: 600;
    font-size: var(--text-size-lg);
    line-height: 1.7;
    margin-top: 12px;
    max-width: 62ch;
  }
  .btn-group  {
    flex-wrap: nowrap;
  }
  @media (max-width: 767px)  {
    .cta-grid  {
      grid-template-columns: 1fr;
    }
    .btn-group  {
      flex-wrap: wrap;
    }
  }
}
