/** Shopify CDN: Minification failed

Line 760:0 Unexpected "<"
Line 760:196 Unexpected "<"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:about_clients (INDEX:2) */
.section_about-clients { background: #ffffff; }
.about-clients_intro { text-align: center; max-width: 720px; margin: 0 auto 40px; }
.about-clients_heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  color: #242B26;
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 36px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  text-transform: none;
}
.about-clients_subhead {
  font-family: 'Inter Tight', 'Jost', sans-serif;
  font-weight: 400;
  color: #242B26;
  line-height: 1.6;
  font-size: 16px;
  margin: 0;
}
.about-clients_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: #e8eae7;
  border: 1px solid #e8eae7;
  border-radius: 4px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .about-clients_grid { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 1024px) {
  .about-clients_grid { grid-template-columns: repeat(5, 1fr); }
}
.about-clients_cell {
  background: #ffffff;
  aspect-ratio: 3 / 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 14px;
}
.about-clients_logo {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.72;
  transition: filter 250ms ease-out, opacity 250ms ease-out;
}
.about-clients_cell:hover .about-clients_logo {
  filter: grayscale(0%);
  opacity: 1;
}
.about-clients_placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 180px;
  min-height: 70px;
  background: #f3f4f6;
  border-radius: 3px;
  padding: 12px 10px;
  box-sizing: border-box;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #4B544C;
  line-height: 1.3;
  transition: background-color 250ms ease-out, color 250ms ease-out;
}
.about-clients_cell:hover .about-clients_placeholder {
  background: #e8eae7;
  color: #242B26;
}
/* END_SECTION:about_clients */

/* START_SECTION:about_cta (INDEX:3) */
.section_about-cta { background: #ffffff; }
.about-cta_inner { max-width: 720px; margin: 0 auto; text-align: center; }
.about-cta_heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  color: #242B26;
  margin: 0 0 16px;
  font-size: clamp(28px, 4vw, 36px);
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.about-cta_subhead {
  font-family: 'Inter Tight', 'Jost', sans-serif;
  font-weight: 400;
  color: #242B26;
  line-height: 1.6;
  font-size: 16px;
  margin: 0 0 36px;
}
.about-cta_buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 640px) { .about-cta_buttons { flex-direction: row; } }
.about-cta_btn {
  display: inline-block;
  font-family: 'Alata', 'Inter Tight', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 14px;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 8px;
  transition: background-color 250ms ease, color 250ms ease, border-color 250ms ease;
  min-width: 220px;
  text-align: center;
}
.about-cta_btn--primary { background-color: #4B544C; color: #ffffff; border: 1px solid #4B544C; }
.about-cta_btn--primary:hover { background-color: #465849; border-color: #465849; }
.about-cta_btn--secondary { background-color: #ffffff; color: #4B544C; border: 1px solid #4B544C; }
.about-cta_btn--secondary:hover { background-color: rgba(70,88,73,0.1); }
/* END_SECTION:about_cta */

/* START_SECTION:about_gallery (INDEX:4) */
.section_about-gallery { background: #ffffff; }
.about-gallery_heading {
  text-align: center;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 500;
  color: #242B26;
  font-size: clamp(28px, 4vw, 36px);
  margin: 0 auto 36px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  text-transform: none;
}
.about-gallery_layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
@media (min-width: 768px) {
  .about-gallery_layout {
    grid-template-columns: 2fr 3fr;
    gap: 10px;
  }
}
.about-gallery_featured-wrap,
.about-gallery_grid-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 1 / 1;
}
.about-gallery_featured,
.about-gallery_grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 400ms cubic-bezier(0.22, 1, 0.36, 1);
}
/* Link wrapper fills the tile so the whole image is the click target (home gallery only). */
.about-gallery_link { display: block; width: 100%; height: 100%; }
.about-gallery_featured-wrap:hover .about-gallery_featured,
.about-gallery_grid-item:hover img {
  transform: scale(1.04);
}
.about-gallery_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
@media (min-width: 768px) {
  .about-gallery_grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 10px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .about-gallery_featured,
  .about-gallery_grid-item img { transition: none; }
  .about-gallery_featured-wrap:hover .about-gallery_featured,
  .about-gallery_grid-item:hover img { transform: none; }
}
/* END_SECTION:about_gallery */

/* START_SECTION:about_hero (INDEX:5) */
/* Generic .scroll-fade-target reveal extracted to assets/scroll-fade.js + critical CSS in layout/theme.liquid (loads site-wide). Hero-specific char animation stays below. */
@keyframes about-hero-char-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}
.about-hero .heading-style-h1 {
  font-weight: 600;
}
.about-hero .heading-style-h1 .about-hero-char,
.about-hero .about-hero-subTitle .about-hero-char {
  opacity: 0;
  animation: about-hero-char-fade 175ms ease-out forwards;
}
@media (prefers-reduced-motion: reduce) {
  .about-hero .heading-style-h1 .about-hero-char,
  .about-hero .about-hero-subTitle .about-hero-char {
    opacity: 1 !important;
    animation: none !important;
  }
}
/* END_SECTION:about_hero */

/* START_SECTION:about_industries (INDEX:6) */
.section_about-industries { background: #ffffff; }
.about-industries_inner { max-width: 960px; margin: 0 auto; }
.about-industries_intro { text-align: center; margin-bottom: 40px; }
.about-industries_heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  color: #242B26;
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 36px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  text-transform: none;
}
.about-industries_subhead {
  font-family: 'Inter Tight', 'Jost', sans-serif;
  font-weight: 400;
  color: #242B26;
  line-height: 1.6;
  font-size: 16px;
  margin: 0;
}
.about-industries_chart { display: flex; flex-direction: column; gap: 12px; }
.about-industries_row {
  display: grid;
  grid-template-columns: 300px 1fr 56px;
  gap: 20px;
  align-items: center;
}
.about-industries_label {
  font-family: 'Alata', 'Inter Tight', sans-serif;
  font-weight: 400;
  color: #465849;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 12px;
  line-height: 1.2;
}
.about-industries_bar-track {
  height: 14px;
  background: rgba(70, 88, 73, 0.1);
  border-radius: 7px;
  overflow: hidden;
}
.about-industries_bar-fill {
  height: 100%;
  background: #465849;
  border-radius: 7px;
  width: 0%;
  transition: width 800ms cubic-bezier(0.16, 1, 0.3, 1);
}
.section_about-industries.is-visible .about-industries_bar-fill {
  width: var(--bar-width, 0%);
}
@media (prefers-reduced-motion: reduce) {
  .about-industries_bar-fill { transition: none; }
  .section_about-industries .about-industries_bar-fill { width: var(--bar-width, 0%); }
}
.about-industries_percentage {
  font-family: 'Inter Tight', 'Jost', sans-serif;
  font-weight: 600;
  color: #242B26;
  font-size: 14px;
  text-align: right;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .about-industries_row {
    grid-template-columns: 1fr auto;
    grid-template-areas: "label percent" "bar bar";
    gap: 6px 12px;
  }
  .about-industries_label { grid-area: label; }
  .about-industries_percentage { grid-area: percent; }
  .about-industries_bar-track { grid-area: bar; }
}
/* END_SECTION:about_industries */

/* START_SECTION:about_model (INDEX:7) */
.section_about-model { background: #ffffff; }
.about-model_intro { text-align: center; max-width: 720px; margin: 0 auto 40px; }
.about-model_heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  color: #242B26;
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 36px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  text-transform: none;
}
.about-model_subhead {
  font-family: 'Inter Tight', 'Jost', sans-serif;
  font-weight: 400;
  color: #242B26;
  line-height: 1.6;
  font-size: 16px;
  margin: 0;
}
.about-model_grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 768px) {
  .about-model_grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (min-width: 1024px) {
  .about-model_grid { grid-template-columns: repeat(4, 1fr); gap: 16px; }
}
.about-model_card {
  background: #f9fafb;
  padding: 24px 20px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}
.about-model_pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 9999px;
  color: #ffffff;
  font-family: 'Alata', 'Inter Tight', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  align-self: flex-start;
}
.about-model_pill-icon { width: 18px; height: 18px; display: block; flex-shrink: 0; }
.about-model_pill-label { line-height: 1; white-space: nowrap; }
.about-model_body {
  font-family: 'Inter Tight', 'Jost', sans-serif;
  font-weight: 400;
  color: #242B26;
  line-height: 1.5;
  font-size: 14px;
  margin: 0;
}
/* END_SECTION:about_model */

/* START_SECTION:about_proof (INDEX:9) */
.section_about-proof { background: #ffffff; }
.about-proof_inner { max-width: 1200px; margin: 0 auto; }
.about-proof_intro { text-align: center; margin-bottom: 44px; max-width: 820px; margin-left: auto; margin-right: auto; }
.about-proof_heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  color: #242B26;
  margin: 0;
  font-size: clamp(28px, 4vw, 36px);
  line-height: 1.25;
  letter-spacing: -0.01em;
  text-transform: none;
}
.about-proof_column-subhead {
  font-family: 'Inter Tight', 'Jost', sans-serif;
  font-weight: 500;
  color: #465849;
  font-size: 14px;
  line-height: 1.3;
  margin: 0 0 18px;
  text-align: center;
}
.about-proof_layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: start;
}
@media (min-width: 1024px) {
  .about-proof_layout {
    grid-template-columns: 45fr 55fr;
    gap: 56px;
  }
}

/* === LOGOS COLUMN === */
.about-proof_logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
@media (min-width: 768px) {
  .about-proof_logos { gap: 24px; }
}
.about-proof_logo-cell {
  aspect-ratio: 6 / 5;
  position: relative;
  padding: 0;
  opacity: 0;
  transition: opacity 500ms cubic-bezier(0.22, 1, 0.36, 1);
}
/* Hide pooled cells at all widths (they exist in DOM as data carriers for desktop rotation) */
.about-proof_logo-cell.is-pooled { display: none; }
/* Stagger entry triggered by scroll-fade-target.is-visible parent */
.scroll-fade-target.is-visible .about-proof_logo-cell {
  opacity: 1;
}
.about-proof_logo-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  opacity: 1;
  transition: opacity 1000ms cubic-bezier(0.22, 1, 0.36, 1);
}
.about-proof_logo {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.72;
  transition: filter 250ms ease-out, opacity 250ms ease-out;
}
.about-proof_logo-cell:hover .about-proof_logo {
  filter: grayscale(0%);
  opacity: 1;
}
.about-proof_placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f4f6;
  border-radius: 3px;
  padding: 8px 6px;
  box-sizing: border-box;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: #4B544C;
  line-height: 1.25;
  transition: background-color 250ms ease-out, color 250ms ease-out;
}
.about-proof_logo-cell:hover .about-proof_placeholder {
  background: #e8eae7;
  color: #242B26;
}

/* === INDUSTRIES COLUMN === */
.about-proof_industries {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about-proof_industry-row {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 14px;
  align-items: center;
}
@media (max-width: 767px) {
  .about-proof_industry-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}
.about-proof_industry-label {
  font-family: 'Alata', 'Inter Tight', sans-serif;
  font-weight: 400;
  color: #465849;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 11px;
  line-height: 1.2;
  text-align: right;
}
.about-proof_industry-track {
  height: 24px;
  background: rgba(70, 88, 73, 0.1);
  border-radius: 12px;
  overflow: hidden;
}
.about-proof_industry-fill {
  height: 100%;
  background: #465849;
  border-radius: 12px;
  width: 0%;
  transition: width 800ms cubic-bezier(0.16, 1, 0.3, 1);
}
.scroll-fade-target.is-visible .about-proof_industry-fill {
  width: var(--bar-width, 0%);
}
@media (prefers-reduced-motion: reduce) {
  .about-proof_logo-cell { opacity: 1 !important; transition: none !important; }
  .about-proof_logo-content { transition: none !important; }
  .about-proof_industry-fill { transition: none !important; }
  .scroll-fade-target .about-proof_industry-fill { width: var(--bar-width, 0%) !important; }
}
/* END_SECTION:about_proof */

/* START_SECTION:about_standards (INDEX:10) */
.section_about-standards { background: #ffffff; }
.about-standards_intro { text-align: center; max-width: 720px; margin: 0 auto 40px; }
.about-standards_heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  color: #242B26;
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 36px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  text-transform: none;
}
.about-standards_subhead {
  font-family: 'Inter Tight', 'Jost', sans-serif;
  font-weight: 400;
  color: #242B26;
  line-height: 1.6;
  font-size: 16px;
  margin: 0;
}
.about-standards_grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 768px) { .about-standards_grid { grid-template-columns: 1fr 1fr 1fr; gap: 20px; } }
.about-standards_card {
  background: #f9fafb;
  padding: 20px 20px;
  border-radius: 8px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
}
.about-standards_badge {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.about-standards_laurel {
  width: 48px;
  height: 104px;
  flex-shrink: 0;
  background-color: #4B544C;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-mode: alpha;
  mask-mode: alpha;
}
.about-standards_cert-image {
  width: 88px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about-standards_cert-image img { max-width: 100%; max-height: 100%; object-fit: contain; display: block; }
.about-standards_text {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.about-standards_label {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  color: #242B26;
  font-size: 17px;
  margin: 0 0 6px;
  line-height: 1.25;
  letter-spacing: -0.005em;
}
.about-standards_body {
  font-family: 'Inter Tight', 'Jost', sans-serif;
  font-weight: 400;
  color: #242B26;
  line-height: 1.5;
  font-size: 14px;
  margin: 0;
}
.about-standards_cta {
  font-family: 'Alata', 'Inter Tight', sans-serif;
  font-weight: 400;
  color: #465849;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  margin-top: 10px;
  align-self: flex-start;
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  transition: color 200ms ease;
}
.about-standards_cta:hover { color: #242B26; text-decoration: underline; }
.about-standards_cta-arrow { display: inline-block; transition: transform 200ms ease; }
.about-standards_cta:hover .about-standards_cta-arrow { transform: translateX(3px); }
/* END_SECTION:about_standards */

/* START_SECTION:about_testimonials (INDEX:11) */
.section_about-testimonials { background: #f9fafb; }
.about-testimonials_intro { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.about-testimonials_heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  color: #242B26;
  margin: 0 0 16px;
  font-size: clamp(28px, 4vw, 36px);
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.about-testimonials_subhead {
  font-family: 'Inter Tight', 'Jost', sans-serif;
  font-weight: 400;
  color: #242B26;
  line-height: 1.6;
  font-size: 16px;
  margin: 0;
}
.about-testimonials_widget { width: 100%; }
.about-testimonials_widget .jdgm-carousel-wrapper { background: transparent; padding: 0; }
.about-testimonials_widget .jdgm-carousel-title { display: none; }
/* END_SECTION:about_testimonials */

/* START_SECTION:about_warranty (INDEX:13) */
.section_about-warranty { background: #4B544C; }
.about-warranty_inner { max-width: 1100px; margin: 0 auto; }
.about-warranty_intro { max-width: 720px; margin: 0 auto; text-align: center; }
.about-warranty_eyebrow {
  font-family: 'Alata', 'Inter Tight', sans-serif;
  font-weight: 400;
  color: #ffffff;
  opacity: 0.75;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 13px;
  margin: 0 0 20px;
}
.about-warranty_heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 36px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  text-transform: none;
}
.about-warranty_body {
  font-family: 'Inter Tight', 'Jost', sans-serif;
  font-weight: 400;
  color: #ffffff;
  opacity: 0.9;
  line-height: 1.65;
  font-size: 17px;
  margin: 0 auto;
  max-width: 580px;
}
.about-warranty_body p { margin: 0 0 10px; }
.about-warranty_body p:last-child { margin-bottom: 0; }
.about-warranty_divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.18);
  margin: 44px 0;
}
.about-warranty_tiers {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 640px) {
  .about-warranty_tiers { grid-template-columns: repeat(2, 1fr); gap: 32px 28px; }
}
@media (min-width: 1024px) {
  .about-warranty_tiers { grid-template-columns: repeat(4, 1fr); gap: 32px 28px; }
}
.about-warranty_tier {
  text-align: left;
}
@media (min-width: 1024px) {
  .about-warranty_tier--wide { grid-column: span 2; }
}
.about-warranty_tier-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  color: #ffffff;
  font-size: clamp(24px, 2.6vw, 30px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 14px;
}
.about-warranty_tier-divider {
  width: 32px;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
  margin: 0 0 14px;
}
.about-warranty_tier-description {
  font-family: 'Inter Tight', 'Jost', sans-serif;
  font-weight: 400;
  color: #ffffff;
  opacity: 0.85;
  line-height: 1.55;
  font-size: 13px;
  margin: 0;
}
.about-warranty_cta-wrap { text-align: center; }
.about-warranty_cta {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  font-family: 'Alata', 'Inter Tight', sans-serif;
  font-weight: 400;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 14px;
  text-decoration: none;
  padding: 14px 32px;
  border: 1px solid #ffffff;
  border-radius: 8px;
  transition: background-color 250ms ease, color 250ms ease;
}
.about-warranty_cta:hover { background-color: #ffffff; color: #4B544C; }
.about-warranty_cta-arrow { display: inline-block; transition: transform 250ms ease; }
.about-warranty_cta:hover .about-warranty_cta-arrow { transform: translateX(3px); }
/* END_SECTION:about_warranty */

/* START_SECTION:reason_section (INDEX:67) */
<style> .reasons_tab-item { cursor: pointer; } .reasons_table-item { display: none; } .reasons_table-item.current { display: block; } .reasons_tab-item.current { opacity: 1; border-color: #000; } </style>
/* END_SECTION:reason_section */