/* ==========================================================
   Jubilee Ply — shared site CSS
   Root variables, base reset, and the header/nav/veneer-strip
   that every page uses. Page-specific sections (hero, about
   content, products grid, etc.) stay in each page's own file.
   ========================================================== */

:root{
  --ink:#1b1815;
  --ink-soft:#2b2521;
  --red:#e4212c;
  --red-deep:#a8121b;
  --veneer:#c89b6c;
  --veneer-deep:#9c714a;
  --cream:#f6f1e7;
  --paper:#ffffff;
  --line:rgba(255,255,255,0.14);
--veneer-light: #e8d4b8;
}
*{box-sizing:border-box;margin:0;padding:0;}
html{scroll-behavior:smooth;}
body{
  font-family:'Inter',sans-serif;
  background:var(--cream);
  color:var(--ink);
  -webkit-font-smoothing:antialiased;
}
a{text-decoration:none;color:inherit;}
ul{list-style:none;}

/* ===== Utility bar ===== */
.utility-bar{
  background:var(--ink);
  color:#e9e3da;
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:28px;
  padding:9px 5%;
  font-size:13px;
  font-family:'Space Mono',monospace;
  letter-spacing:0.02em;
}
.utility-bar .contact-item{
  display:flex;align-items:center;gap:8px;color:#cfc7ba;
}
.utility-bar .icon-dot{
  width:26px;height:26px;border-radius:50%;
  background:rgba(255,255,255,0.08);
  display:flex;align-items:center;justify-content:center;
  flex:0 0 auto;
}
.utility-bar a.mail:hover, .utility-bar .contact-item:hover{color:#fff;}
.quote-btn{
  background:var(--red);
  color:#fff;
  font-family:'Inter',sans-serif;
  font-weight:700;
  font-size:12.5px;
  letter-spacing:0.06em;
  padding:9px 20px;
  border-radius:2px;
  transition:background .2s ease;
}
.quote-btn:hover{background:var(--red-deep);}

/* ===== Main nav ===== */
.main-nav{
  background:var(--paper);
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 5%;
  border-bottom:1px solid #ece5d8;
  position:relative;
  z-index:50;
}
.logo{display:flex;align-items:center;gap:10px;}
.logo-img{
  height:52px;
  width:auto;
  max-width:220px;
  object-fit:contain;
  display:block;
}
.nav-links{
  display:flex;
  align-items:center;
  gap:34px;
  font-weight:600;
  font-size:14.5px;
  color:var(--ink-soft);
}
.nav-links > li{position:relative;}
.nav-links > li > a{
  display:flex;align-items:center;gap:5px;
  padding:6px 0;
  transition:color .2s ease;
}
.nav-links > li > a:hover{color:var(--red);}
.nav-links > li.active > a{color:var(--red);}
.nav-links > li.active > a::after{
  content:"";
  position:absolute;
  left:0;bottom:-2px;
  width:100%;height:2px;
  background:var(--red);
}
.caret{width:8px;height:8px;opacity:0.65;transition:transform .2s ease;}
@media (min-width:901px){
  .nav-links > li:hover .caret,
  .nav-links > li:focus-within .caret{
    transform:rotate(180deg);
  }
}
.dropdown-menu{
  position:absolute;
  top:calc(100% + 14px);
  left:50%;
  transform:translateX(-50%) translateY(12px);
  min-width:760px;
  max-width:1040px;
  width:auto;
  background:#fff;
  border:1px solid rgba(236,229,219,0.95);
  border-radius:18px;
  box-shadow:0 24px 50px rgba(27,24,21,0.12);
  padding:0;
  overflow:hidden;
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition:opacity .22s ease,transform .22s ease,visibility .22s ease;
  z-index:40;
}
@media (min-width:901px){
  .nav-links > li:hover > .dropdown-menu,
  .nav-links > li:focus-within > .dropdown-menu{
    opacity:1;
    visibility:visible;
    transform:translateX(-50%) translateY(0);
    pointer-events:auto;
  }
}
/* ===== Products mega-menu =====
   Dark "showroom" intro panel on the left, flat category grid on the
   right. Sub-items sit directly underneath their category (no nested
   hover-flyout to fight with on touch devices). */
.products-dropdown{ width:auto; }

.mega-menu{
  display:grid;
  grid-template-columns:240px 1fr;
}

.mega-intro{
  background:linear-gradient(165deg, var(--ink) 0%, #26211d 100%);
  color:#f0e8db;
  padding:30px 26px;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.mega-intro .dropdown-tag{
  margin:0;
  font-family:'Space Mono',monospace;
  font-size:10.5px;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:var(--veneer);
}
.mega-intro h3{
  margin:2px 0 2px;
  font-family:'Big Shoulders Display', sans-serif;
  font-weight:800;
  font-size:26px;
  line-height:1.15;
  color:#fff;
}
.mega-intro p{
  margin:0;
  font-size:13.5px;
  line-height:1.6;
  color:#cfc3b0;
  max-width:210px;
}
.dropdown-cta{
  margin-top:8px;
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:11px 16px;
  background:var(--red);
  color:#fff;
  border-radius:999px;
  font-weight:700;
  font-size:12.5px;
  white-space:nowrap;
  width:fit-content;
  transition:background .2s ease,transform .2s ease;
}
.dropdown-cta:hover{
  background:var(--red-deep);
  transform:translateY(-1px);
}

.mega-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:6px 28px;
  padding:28px 30px;
}
.mega-col{ padding-bottom:6px; min-width:0; }
.mega-col-title{
  position:relative;
  display:flex;
  align-items:flex-start;
  gap:8px;
  width:100%;
  margin:0 0 12px;
  padding-bottom:4px;
  font-weight:700;
  font-size:13.5px;
  line-height:1.35;
  letter-spacing:.02em;
  color:var(--ink);
  overflow-wrap:break-word;
}
.mega-col-title::after{
  content:"";
  position:absolute;
  left:0;bottom:0;
  width:100%;height:1px;
  background:var(--veneer);
  transform:scaleX(0);
  transform-origin:left;
  transition:transform .25s ease;
}
.mega-col-title:hover::after,
.mega-col-title:focus-visible::after{
  transform:scaleX(1);
}
.mega-col-icon{
  flex:0 0 auto;
  margin-top:2px;
  color:var(--veneer-deep);
}
.mega-col-title:hover{ color:var(--red); }
.mega-col-title:hover .mega-col-icon{ color:var(--red); }

.mega-col-list{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  flex-direction:column;
  gap:9px;
}
.mega-col-list a{
  display:block;
  font-size:13.5px;
  color:var(--ink-soft);
  opacity:.85;
  transition:color .2s ease,opacity .2s ease,transform .2s ease;
}
.mega-col-list a:hover{
  color:var(--red);
  opacity:1;
  transform:translateX(2px);
}

/* ===== Gallery dropdown ===== */
.gallery-dropdown{
  min-width:300px;
  max-width:340px;
}
.gallery-menu{
  display:flex;
  flex-direction:column;
  padding:10px;
}
.gallery-menu-item{
  display:flex;
  align-items:center;
  gap:14px;
  padding:14px;
  border-radius:14px;
  color:var(--ink);
  transition:background .2s ease;
}
.gallery-menu-item:hover{ background:var(--cream); }
.gallery-menu-icon{
  flex:0 0 auto;
  width:42px;height:42px;
  border-radius:11px;
  background:rgba(228,33,44,0.08);
  color:var(--red);
  display:flex;align-items:center;justify-content:center;
  transition:background .2s ease,color .2s ease;
}
.gallery-menu-item:hover .gallery-menu-icon{
  background:var(--red);
  color:#fff;
}
.gallery-menu-text{
  display:flex;
  flex-direction:column;
  gap:2px;
  flex:1;
}
.gallery-menu-label{ font-weight:700; font-size:14.5px; }
.gallery-menu-blurb{ font-size:12px; color:#8a8074; }
.gallery-menu-arrow{
  flex:0 0 auto;
  color:var(--ink-soft);
  opacity:0;
  transform:translateX(-4px);
  transition:opacity .2s ease,transform .2s ease;
}
.gallery-menu-item:hover .gallery-menu-arrow{
  opacity:1;
  transform:translateX(0);
  color:var(--red);
}
.nav-right{display:flex;align-items:center;gap:22px;}
.search-btn{
  width:38px;height:38px;border-radius:50%;
  background:var(--cream);
  display:flex;align-items:center;justify-content:center;
  transition:background .2s ease;
}
.search-btn:hover{background:#ece1cd;}
.menu-toggle{
  display:none;
  flex-direction:column;
  justify-content:center;
  gap:5px;
  width:38px;height:38px;
  padding:0;
  border:none;
  background:none;
  cursor:pointer;
}
.menu-toggle span{
  width:24px;height:2px;
  background:var(--ink);
  transition:transform .25s ease,opacity .2s ease;
}
.menu-toggle.active span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2){ opacity:0; }
.menu-toggle.active span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

body.nav-locked{ overflow:hidden; }

@media (max-width:900px){
  .utility-bar{justify-content:space-between;}
  .utility-bar .contact-item span.txt{display:none;}
  .logo-img{height:40px;}
  .menu-toggle{display:flex;}

  .nav-links{
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    flex-direction:column;
    align-items:stretch;
    gap:0;
    background:var(--paper);
    border-top:1px solid #ece5d8;
    box-shadow:0 24px 40px rgba(27,24,21,0.12);
    max-height:0;
    overflow:hidden;
    opacity:0;
    visibility:hidden;
    transition:max-height .3s ease, opacity .2s ease, visibility .2s ease;
  }
  .nav-links.open{
    max-height:80vh;
    overflow-y:auto;
    opacity:1;
    visibility:visible;
  }
  .nav-links > li{ width:100%; position:static; }
  .nav-links > li + li{ border-top:1px solid #f1ece1; }
  .nav-links > li > a{
    width:100%;
    padding:15px 6%;
    justify-content:space-between;
  }
  .nav-links > li.active > a::after{ display:none; }
  .nav-links > li.active{ background:rgba(228,33,44,0.05); }
  .nav-links > li.has-dropdown .caret{ transition:transform .2s ease; }
  .nav-links > li.has-dropdown.open .caret{ transform:rotate(180deg); }

  .dropdown-menu{
    position:static;
    transform:none;
    width:100%;
    min-width:0;
    max-width:none;
    background:var(--cream);
    border:none;
    border-radius:0;
    box-shadow:none;
    opacity:1;
    visibility:visible;
    pointer-events:auto;
    max-height:0;
    overflow:hidden;
    transition:max-height .3s ease;
  }
  .nav-links li.has-dropdown.open > .dropdown-menu{
    max-height:1400px;
  }

  .products-dropdown{ width:100%; }
  .mega-menu{ grid-template-columns:1fr; }
  .mega-intro{ padding:22px 6%; }
  .mega-intro p{ max-width:none; }
  .mega-grid{ grid-template-columns:1fr; gap:22px; padding:20px 6% 26px; }
  .gallery-dropdown{ max-width:none; }
  .gallery-menu{ padding:10px 6% 18px; }
}


/* ===== Signature veneer strip (used between header/sections) ===== */
.veneer-strip{
  height:10px;
  display:flex;
}
.veneer-strip span{flex:1;}
.veneer-strip span:nth-child(1){background:var(--red);}
.veneer-strip span:nth-child(2){background:var(--ink);}
.veneer-strip span:nth-child(3){background:var(--veneer);}
.veneer-strip span:nth-child(4){background:var(--ink);}
.veneer-strip span:nth-child(5){background:var(--red);}

/* ===== Shared "eyebrow" pill used on every page ===== */
.eyebrow-pill{
  display:inline-flex;align-items:center;gap:10px;
  border:1px solid rgba(255,255,255,0.25);
  padding:7px 18px;
  border-radius:20px;
  font-family:'Space Mono',monospace;
  font-size:11.5px;letter-spacing:0.12em;
  color:#f0e4d0;
   width: fit-content;
}
.eyebrow-pill.dark{
  border-color:rgba(27,24,21,0.2);
  color:var(--ink-soft);
 
}
.eyebrow-pill .dot{width:6px;height:6px;border-radius:50%;background:var(--veneer);flex:0 0 auto;}

.site-footer {
  position: relative;
  background: linear-gradient(180deg, #13100d 0%, #0b0907 100%);
  color: #e6ddd0;
  padding: 86px 5% 40px;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.05), transparent 28%),
    radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.04), transparent 22%);
  z-index: 0;
  pointer-events: none;
}

.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.95fr) minmax(0, 0.95fr) minmax(0, 1.2fr);
  gap: 40px;
  align-items: start;
  position: relative;
  z-index: 2;
}

.footer-brand,
.footer-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-logo {
  width: 140px;
  height: auto;
  display: block;
  filter: brightness(1.05) saturate(0.95);
}

.footer-about {
  font-size: 15px;
  line-height: 1.8;
  color: #d2c7b7;
  max-width: 420px;
}

.footer-title {
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}

.footer-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-list a,
.footer-list span {
  color: #d2c7b7;
  font-size: 15px;
  line-height: 1.85;
}

.footer-list a:hover {
  color: #fff;
}

.footer-contact {
  align-items: flex-start;
  text-align: left;
}

.footer-contact a {
  color: #fff;
  font-weight: 700;
}

.footer-map-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-map {
  border-radius: 18px;
  overflow: hidden;
  min-height: 200px;
  border: 1px solid rgba(255,255,255,0.08);
}

.footer-map iframe {
  width: 100%;
  height: 100%;
  min-height: 200px;
  border: 0;
  display: block;
}

.footer-social-label {
  color: #d2c7b7;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}


.footer-social {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.footer-social a {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02);
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}

.footer-social a svg {
  width: 20px;
  height: 20px;
}

.footer-social a:hover {
  background: rgba(255,255,255,0.16);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.footer-watermark {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -20px;
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 900;
  font-size: 300px;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.03);
  pointer-events: none;
  z-index: 1;
  white-space: nowrap;
}
.footer-logo {
  border-radius: 8px;
}
.footer-bottom {
  max-width: 1240px;
  margin: 34px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 14px;
  color: #bdb3a3;
  text-align: center;
  position: relative;
  z-index: 2;
}

.footer-bottom a { color: #fff; }

@media (max-width:900px) {
  .footer-inner { grid-template-columns: 1fr; text-align: left; }
  .footer-contact { text-align: left; align-items: flex-start; }
  .footer-social { justify-content: flex-start; }
  .footer-watermark { display: none; }
}



    a.contact-item {
        text-decoration: none;
        color: inherit;
    }
    a.contact-item:hover .txt {
        text-decoration: underline;
    }

    .quote-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(15, 12, 10, 0.6);
        z-index: 1000;
        align-items: center;
        justify-content: center;
        padding: 20px;
    }
    .quote-overlay.open { display: flex; }
    .quote-modal {
        background: #fff;
        width: 100%;
        max-width: 440px;
        border-radius: 18px;
        overflow: hidden;
        box-shadow: 0 30px 80px rgba(0,0,0,0.35);
    }
    .quote-modal-header {
        background: #e4212c;
        color: #fff;
        padding: 18px 22px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .quote-modal-header h4 { font-family: 'Big Shoulders Display', sans-serif; font-size: 20px; font-weight: 700; }
    .quote-close { background: none; border: none; color: #fff; font-size: 24px; line-height: 1; cursor: pointer; }
    .quote-modal-body { padding: 24px 22px; display: flex; flex-direction: column; gap: 16px; }
    .quote-field label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: #2b2521; }
    .quote-field input, .quote-field textarea {
        width: 100%; padding: 12px 14px; border: 1px solid rgba(0,0,0,0.08);
        border-radius: 10px; font-size: 14px; font-family: 'Inter', sans-serif; resize: vertical;
    }
    .quote-field input:focus, .quote-field textarea:focus { outline: none; border-color: #e4212c; }
    .quote-submit {
        margin-top: 4px; width: 100%; border: none; cursor: pointer;
        background: #e4212c; color: #fff; padding: 14px 32px; border-radius: 12px;
        font-weight: 600; font-size: 15px; transition: background 0.2s ease;
    }
    .quote-submit:hover { background: #a8121b; }
    #errormsgboxd { font-size: 13px; text-align: center; min-height: 18px; }

   
    li.has-dropdown { position: relative; }
    li.has-dropdown .dropdown-menu {
        margin-top: 0 !important;
    }
    li.has-dropdown.js-menu-open > .dropdown-menu {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }

    .products-dropdown .mega-menu {
        display: flex;
        align-items: stretch;
    }
    .products-dropdown .mega-intro {
        flex: 0 0 240px;
        display: flex;
        flex-direction: column;
        height: auto;
        align-self: stretch;
    }
    .products-dropdown .mega-grid {
        flex: 1;
    }

    .icon-bara {
        position: fixed;
        top: 50%;
        right: 18px;
        transform: translateY(-50%);
        z-index: 998;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    .icon-bara a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background: #fff;
        color: #2b2521;
        box-shadow: 0 4px 14px rgba(0,0,0,0.18);
        border: 1px solid rgba(0,0,0,0.06);
        transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    }
    .icon-bara a:hover {
        transform: translateX(-4px) scale(1.06);
        box-shadow: 0 6px 18px rgba(0,0,0,0.24);
    }
    .icon-bara a.facebook:hover { background: #1877f2; color: #fff; border-color: #1877f2; }
    .icon-bara a.whatsapp:hover { background: #25d366; color: #fff; border-color: #25d366; }
    .icon-bara a.youtube:hover  { background: #ff0000; color: #fff; border-color: #ff0000; }

    @media (max-width: 900px) {

      .utility-bar {
        flex-wrap: wrap;
        gap: 8px;
        padding: 8px 12px;
        font-size: 12px;
      }
      .utility-bar .contact-item .txt { font-size: 12px; }
      .utility-bar .quote-btn {
        margin-left: auto;
        padding: 8px 14px;
        font-size: 12px;
      }
.utility-bar .contact-item {
    position: relative;
    z-index: 9999;
    pointer-events: auto;
}
      .main-nav {
        flex-wrap: wrap;
        padding: 10px 14px;
        position: relative;
      }
      .logo-img { height: 36px; width: auto; }

      .nav-right { display: flex; align-items: center; gap: 14px; }
      .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        width: 26px;
        height: 20px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
      }
      .menu-toggle span {
        display: block;
        height: 2px;
        width: 100%;
        background: #1b1815;
        transition: transform 0.25s ease, opacity 0.25s ease;
      }
      .menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
      .menu-toggle.active span:nth-child(2) { opacity: 0; }
      .menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

      .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: #fff;
        width: 100%;
        max-height: 80vh;
        overflow-y: auto;
        box-shadow: 0 12px 24px rgba(0,0,0,0.15);
        z-index: 999;
        padding: 6px 0;
      }
      .nav-links.open { display: flex; }
      .nav-links li { width: 100%; border-bottom: 1px solid rgba(0,0,0,0.06); }
      .nav-links li > a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 14px 18px;
        width: 100%;
      }
      .nav-links .caret { transition: transform 0.2s ease; }
      .nav-links li.has-dropdown.open > a .caret { transform: rotate(180deg); }

      li.has-dropdown .dropdown-menu {
        display: none;
        position: static;
        width: 100%;
        box-shadow: none;
        padding: 0 18px 14px;
      }
      li.has-dropdown.open > .dropdown-menu,
      li.has-dropdown.js-menu-open > .dropdown-menu {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
      }

      .products-dropdown .mega-menu {
        flex-direction: column;
      }
      .products-dropdown .mega-intro {
        flex: 0 0 auto;
        padding: 16px;
        margin-bottom: 12px;
      }
      .products-dropdown .mega-grid {
        display: block;
      }
      .products-dropdown .mega-col {
        margin-bottom: 14px;
      }

      .gallery-dropdown .gallery-menu {
        flex-direction: column;
      }

      body.nav-locked { overflow: hidden; }

      .search-btn { display: none; }

      .icon-bara {
        top: auto;
        bottom: 12px;
        right: 8px;
        transform: none;
        gap: 8px;
      }
      .icon-bara a {
        width: 36px;
        height: 36px;
      }

      .quote-modal { max-width: 100%; margin: 0 8px; }
    }
    
    
     /* ===== Content sections ===== */
    .page-container {
      max-width: 1180px;
      margin: 0 auto;
      padding: 80px 5% 100px;
    }

    .about-grid {
      display: grid;
      gap: 80px;
    }

    .about-row {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 40px;
      align-items: center;
    }

    .about-row.reverse {
      grid-template-columns: 0.9fr 1.1fr;
    }

    .about-text {
      display: grid;
      gap: 26px;
    }

    .section-block {
      display: grid;
      gap: 24px;
    }

    .section-eyebrow {
      margin-bottom: 2px;
    }

    .section-heading {
      font-family: 'Big Shoulders Display', sans-serif;
      font-weight: 800;
      font-size: 2.8rem;
      line-height: 1.02;
      color: var(--ink);
      margin: 0;
    }

    .section-copy {
      color: var(--ink-soft);
      font-size: 1rem;
      line-height: 1.85;
      display: grid;
      gap: 18px;
      max-width: 680px;
    }

    /* Justified text settings to keep word spacing uniform */
    .section-copy p {
      margin: 0;
      text-align: justify;
      text-justify: inter-word;
      word-break: break-word;
    }

    .image-panel {
      min-height: 420px;
      border-radius: 24px;
      overflow: hidden;
      background-position: center;
      background-size: cover;
      position: relative;
      box-shadow: 0 30px 70px rgba(27, 24, 21, 0.14);
    }

    .image-panel::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.28));
    }

    .image-caption {
      position: absolute;
      left: 24px;
      bottom: 24px;
      color: #fff;
      font-family: 'Space Mono', monospace;
      font-size: 12px;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      z-index: 1;
    }

    .cta-button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 16px 30px;
      border-radius: 999px;
      background: var(--red);
      color: #fff;
      font-weight: 700;
      letter-spacing: 0.02em;
      box-shadow: 0 18px 40px rgba(228, 33, 44, 0.18);
      transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
      width: fit-content;
    }

    .cta-button:hover {
      background: var(--red-deep);
      transform: translateY(-1px);
      box-shadow: 0 22px 46px rgba(228, 33, 44, 0.22);
    }

    /* ============================================================
     GLOBAL SCROLL-REVEAL REVERSE SIDEWAYS DIRECTION ANIMATIONS
     ============================================================ */
    .reveal {
      opacity: 0;
      filter: blur(8px);
      transition: opacity 0.85s ease, filter 0.85s ease;
      will-change: opacity, filter;
    }

    .reveal.visible {
      opacity: 1;
      filter: blur(0);
    }

    /* Standard row: text shifts inward from Left, image shifts inward from Right */
    .about-row .reveal-left {
      opacity: 0;
      transform: translateX(-40px);
      transition: opacity 0.85s cubic-bezier(0.25, 1, 0.5, 1), transform 0.85s cubic-bezier(0.25, 1, 0.5, 1);
      will-change: opacity, transform;
    }

    .about-row .reveal-right {
      opacity: 0;
      transform: translateX(40px);
      transition: opacity 0.85s cubic-bezier(0.25, 1, 0.5, 1), transform 0.85s cubic-bezier(0.25, 1, 0.5, 1);
      will-change: opacity, transform;
    }

    /* Shared active visibility targets */
    .about-row .reveal-left.visible,
    .about-row .reveal-right.visible {
      opacity: 1;
      transform: translateX(0);
    }

    @media (max-width:1080px) {

      .about-row,
      .about-row.reverse {
        grid-template-columns: 1fr;
        gap: 32px;
      }

      .image-panel {
        min-height: 320px;
      }

      .about-row .reveal-left,
      .about-row .reveal-right {
        transform: translateY(30px) !important;
      }

      /* Uniform fallback load on mobile vertical viewports */
    }

    @media (max-width:700px) {
      .page-banner {
        min-height: 360px;
        padding: 74px 5% 56px;
      }

      .page-heading {
        max-width: 100%;
      }

      .page-subhead {
        font-size: 0.96rem;
      }

      .page-container {
        padding: 50px 5% 80px;
      }
    }


/* ---------- Content Layout ---------- */
  .testimonials {
    background: #f8f4eb;
    padding: 80px 5%;
  }
  .testimonials-inner {
    max-width: 1240px;
    margin: 0 auto;
  }
  .testimonials-heading { text-align: center; margin-bottom: 42px; }
  .testimonials-heading h3 {
    font-family: 'Big Shoulders Display', sans-serif;
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--ink);
  }
  .testimonials-heading p {
    color: var(--ink-soft);
    font-size: 16px;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
  }
  .testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    align-items: start;
  }
  .testimonial-card {
    background: var(--paper);
    border: 1px solid #ece5d8;
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 16px 35px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    height: 340px;
  }
  .testimonial-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
  }
  .testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex: 0 0 auto;
    border: 2px solid var(--veneer);
  }
  .testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .testimonial-info cite { font-style: normal; font-weight: 700; color: var(--ink); display: block; margin-bottom: 3px; }
  .testimonial-info p { font-size: 13px; color: var(--veneer-deep); line-height: 1.4; margin: 0; }
  .testimonial-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--ink-soft);
    overflow-y: auto;
    padding-right: 10px;
    flex: 1;
    min-height: 0;
    scrollbar-width: thin;
    scrollbar-color: rgba(228,33,44,0.25) transparent;
  }
  .testimonial-text::-webkit-scrollbar { width: 6px; }
  .testimonial-text::-webkit-scrollbar-track { background: transparent; }
  .testimonial-text::-webkit-scrollbar-thumb { background: rgba(228,33,44,0.25); border-radius: 999px; }
  .testimonial-empty {
    text-align: center;
    color: var(--ink-soft);
    grid-column: 1 / -1;
  }
  .google-review {
    margin-top: 32px;
    padding: 28px 32px;
    background: linear-gradient(135deg, #ffffff 0%, #f8efe2 100%);
    border: 1px solid #ece5d8;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    box-shadow: 0 16px 35px rgba(0,0,0,0.05);
  }
  .google-review strong {
    display: block;
    font-size: 18px;
    color: var(--ink);
    margin-bottom: 6px;
  }
  .google-review span {
    color: var(--ink-soft);
    font-size: 15px;
    line-height: 1.6;
  }
  .google-review a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    background: var(--red);
    color: #fff;
    font-weight: 700;
    border-radius: 999px;
    white-space: nowrap;
    transition: background .2s ease;
  }
  .google-review a:hover { background: var(--red-deep); }
  .page-footer-spacer { height: 100px; }

  /* ============================================================
     GLOBAL HOMEPAGE REVEAL ANIMATION TOKENS
     ============================================================ */
  .reveal {
    opacity: 0;
    transform: translateY(36px) scale(0.98);
    filter: blur(8px);
    transition: opacity 0.75s ease, transform 0.75s ease, filter 0.75s ease;
    will-change: opacity, transform, filter;
  }

  .reveal.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }

  .reveal-item {
    opacity: 0;
    transform: translateY(28px) scale(0.98);
    filter: blur(8px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), filter 0.7s ease;
    will-change: opacity, transform, filter;
    transition-delay: 0ms;
  }

  .reveal-item.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }

  @media (max-width: 1080px) { .testimonial-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } .testimonial-card { height: auto; min-height: 300px; } }
  @media (max-width: 700px) { .testimonial-grid { grid-template-columns: 1fr; } }
  @media (max-width: 700px) {
    .page-banner { min-height: 360px; padding: 74px 5% 56px; }
    .page-heading { max-width: 100%; }
    .page-subhead { font-size: 0.96rem; }
    .testimonials { padding: 56px 5%; }
    .google-review {
      flex-direction: column;
      align-items: flex-start;
      padding: 22px 20px;
      gap: 14px;
    }
    .google-review a { width: 100%; }
    .page-footer-spacer { height: 40px; }
  }


 /* ============================================================
           HERO BANNER DESIGN (shared across inner pages)
           ============================================================ */
           .warranty-hero {
            position: relative;
            min-height: 300px;
            display: flex;
            align-items: center;
            padding: 60px 5% 50px;
           
            background: linear-gradient(100deg, rgba(15,12,10,0.45) 0%, rgba(15,12,10,0.25) 60%, rgba(15,12,10,0.10) 100%), url('assets/blog_page.png') center/cover no-repeat;
            color: #fff;
            overflow: hidden;
        }

        .warranty-hero::after {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at top right, rgba(228,33,44,0.2), transparent 28%);
            pointer-events: none;
        }

        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 1160px;
            margin: 0 auto;
            width: 100%;
            display: grid;
            gap: 18px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            width: fit-content;
            padding: 8px 16px;
            border-radius: 999px;
            background: rgba(255,255,255,0.12);
            border: 1px solid rgba(255,255,255,0.18);
            font-size: 12px;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: #f5e7d0;
        }

        .hero-title {
            font-family: 'Big Shoulders Display', sans-serif;
            font-size: clamp(2.5rem, 4.8vw, 3.8rem);
            line-height: 1.02;
            margin: 0;
            max-width: 700px;
        }

        .hero-copy {
            font-size: 1rem;
            line-height: 1.8;
            color: rgba(255,255,255,0.88);
            max-width: 640px;
            margin: 0;
        }

        .hero-breadcrumb {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            align-items: center;
            padding: 12px 18px;
            border-radius: 999px;
            background: rgba(255,255,255,0.12);
            border: 1px solid rgba(255,255,255,0.16);
            width: fit-content;
            font-size: 14px;
        }

        .hero-breadcrumb a { color: #fff; font-weight: 600; text-decoration: none; }
        .hero-breadcrumb span { color: rgba(255,255,255,0.72); }

        .veneer-strip {
            height: 10px;
            display: flex;
        }

        .veneer-strip span {
            flex: 1;
        }

        .veneer-strip span:nth-child(1) { background: var(--red); }
        .veneer-strip span:nth-child(2) { background: var(--ink); }
        .veneer-strip span:nth-child(3) { background: var(--veneer); }
        .veneer-strip span:nth-child(4) { background: var(--ink); }
        .veneer-strip span:nth-child(5) { background: var(--red); }

        /* ===== Blog grid layout ===== */
        .blog-section {
            background: #fff;
            color: var(--ink);
            padding: 80px 5%;
        }

        .blog-inner {
            max-width: 1240px;
            margin: 0 auto;
        }

        .blog-header {
            max-width: 720px;
            margin: 0 auto 52px;
            text-align: center;
        }

        .blog-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            border: 1px solid rgba(27, 24, 21, 0.12);
            padding: 8px 18px;
            border-radius: 999px;
            font-family: 'IBM Plex Mono', monospace;
            font-size: 12px;
            letter-spacing: 0.16em;
            color: var(--red);
            text-transform: uppercase;
            margin-bottom: 18px;
        }

        .blog-title {
            font-family: 'Big Shoulders Display', sans-serif;
            font-weight: 800;
            font-size: 42px;
            line-height: 1.05;
            margin-bottom: 18px;
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 28px;
        }

        .blog-card {
            border: 1px solid #ece5d8;
            border-radius: 22px;
            overflow: hidden;
            background: #fff;
            display: flex;
            flex-direction: column;
            transition: transform .25s ease, box-shadow .25s ease;
        }

        .blog-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 24px 50px rgba(0, 0, 0, 0.08);
        }

        .blog-media {
            width: 100%;
            aspect-ratio: 16/10;
            background-size: cover;
            background-position: center;
            background-color: var(--cream);
        }

        .blog-media-placeholder {
            width: 100%;
            aspect-ratio: 16/10;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--cream) 0%, #efe6d5 100%);
            color: var(--veneer-deep);
        }

        .blog-card-body {
            padding: 20px 22px 24px;
            display: flex;
            flex-direction: column;
            gap: 12px;
            flex: 1;
        }

        .blog-card-title {
            font-family: 'Big Shoulders Display', sans-serif;
            font-weight: 700;
            font-size: 20px;
            line-height: 1.25;
            color: var(--ink);
        }

        .blog-card-title:hover {
            color: var(--red);
        }

        .blog-card-meta {
            display: flex;
            align-items: center;
            gap: 10px;
            list-style: none;
            font-family: 'IBM Plex Mono', monospace;
            font-size: 12px;
            letter-spacing: 0.04em;
            color: var(--veneer-deep);
            margin-top: auto;
        }

        .blog-card-meta li::after {
            content: '•';
            margin-left: 10px;
            color: rgba(27,24,21,0.25);
        }

        .blog-card-meta li:last-child::after {
            content: '';
            margin-left: 0;
        }

        .blog-empty {
            grid-column: 1 / -1;
            text-align: center;
            color: var(--ink-soft);
            padding: 60px 0;
            font-size: 16px;
        }

       
        .blog-pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
            margin-top: 56px;
            flex-wrap: wrap;
        }

        .blog-pagination .page-item {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 44px;
            height: 44px;
            padding: 0 16px;
            border-radius: 12px;
            border: 1px solid rgba(27,24,21,0.14);
            background: #fff;
            font-family: 'IBM Plex Mono', monospace;
            font-size: 13px;
            font-weight: 600;
            color: var(--ink);
            transition: background .2s ease, color .2s ease, border-color .2s ease;
        }

        .blog-pagination .page-item a {
            color: inherit;
            text-decoration: none;
        }

        .blog-pagination .page-item:has(a):hover {
            background: var(--red);
            color: #fff;
            border-color: var(--red);
        }

        .blog-pagination .page-item:not(:has(a)) {
            opacity: 0.4;
            cursor: default;
        }

        /* Scroll Animation Hooks */
        .reveal {
            opacity: 0;
            transform: translateY(36px) scale(0.98);
            filter: blur(8px);
            transition: opacity 0.75s ease, transform 0.75s ease, filter 0.75s ease;
            will-change: opacity, transform, filter;
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0) scale(1);
            filter: blur(0);
        }

        .reveal-item {
            opacity: 0;
            transform: translateY(28px) scale(0.98);
            filter: blur(8px);
            transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), filter 0.7s ease;
            will-change: opacity, transform, filter;
        }

        .reveal-item.visible {
            opacity: 1;
            transform: translateY(0) scale(1);
            filter: blur(0);
        }

        @media (max-width: 900px) {
            .blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
        }

        @media (max-width: 700px) {
            .warranty-hero { min-height: 300px; padding: 74px 5% 56px; }
            .hero-title { max-width: 100%; }
            .hero-copy { font-size: 0.96rem; }
            .blog-grid { grid-template-columns: 1fr; }
            .blog-title { font-size: 32px; }
        }
        
        
         .careers-section {
      max-width: 1180px;
      margin: 0 auto;
      padding: 60px 5% 100px;
    }

    .careers-grid {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 48px;
      align-items: center;
    }

    .careers-form {
      background: #fff;
      border: 1px solid rgba(27, 24, 21, 0.07);
      border-radius: 24px;
      padding: 28px 32px;
      box-shadow: 0 20px 50px rgba(27, 24, 21, 0.06);
    }

    .careers-form h3 {
      font-family: 'Big Shoulders Display', sans-serif;
      font-size: 1.8rem;
      margin: 0 0 16px 0;
      color: var(--ink);
    }

    .form-row {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
    }

    .form-group {
      display: flex;
      flex-direction: column;
      gap: 6px;
      margin-bottom: 2px;
    }

    .form-label {
      font-size: 0.88rem;
      font-weight: 700;
      color: var(--ink);
    }

    .form-input {
      width: 100%;
      min-height: 42px;
      padding: 10px 14px;
      border: 1px solid #e6dcc6;
      border-radius: 12px;
      font-size: 0.92rem;
      color: var(--ink);
      background: #fff;
    }

    .form-input[type=file] {
      padding: 8px 12px;
    }

    textarea.form-input {
      min-height: 90px;
      resize: vertical;
    }

    .form-input:focus,
    textarea.form-input:focus {
      outline: none;
      border-color: var(--veneer);
      box-shadow: 0 0 0 4px rgba(200, 155, 108, 0.12);
    }

    .form-actions {
      margin-top: 20px;
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      align-items: center;
    }

    .button-primary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 12px 28px;
      border-radius: 999px;
      border: none;
      background: var(--red);
      color: #fff;
      font-weight: 700;
      cursor: pointer;
      transition: background .2s ease, transform .2s ease;
    }

    .button-primary:hover {
      background: var(--red-deep);
      transform: translateY(-1px);
    }

    .form-note {
      color: var(--ink-soft);
      font-size: 0.85rem;
      line-height: 1.5;
    }

    .error-box {
      margin-top: 10px;
      color: #b02a37;
      font-size: 0.9rem;
    }

    /* --- Premium Expanded Showcase Layout --- */
    .career-image-showcase {
      display: flex;
      flex-direction: column;
      gap: 16px;
      position: relative;
      width: 100%;
    }

    .mosaic-card {
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 15px 35px rgba(27, 24, 21, 0.08);
      background: #fff;
      border: 1px solid rgba(27, 24, 21, 0.05);
    }

    .mosaic-card.primary-img {
      width: 100%;
      align-self: flex-start;
    }

    .mosaic-card.primary-img img {
      width: 100%;
      height: 275px;
      object-fit: cover;
      display: block;
    }

    .mosaic-card.secondary-img {
      width: 85%;
      align-self: flex-end;
      margin-top: -75px;
      border: 4px solid #fff;
      box-shadow: 0 20px 45px rgba(27, 24, 21, 0.12);
    }

    .mosaic-card.secondary-img img {
      width: 100%;
      height: 280px;
      object-fit: cover;
      display: block;
    }

    /* ============================================================
     HOMEPAGE REVEAL ANIMATION TOKENS
     ============================================================ */
    .reveal {
      opacity: 0;
      transform: translateY(36px) scale(0.98);
      filter: blur(8px);
      transition: opacity 0.75s ease, transform 0.75s ease, filter 0.75s ease;
      will-change: opacity, transform, filter;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0) scale(1);
      filter: blur(0);
    }

    .reveal-item {
      opacity: 0;
      transform: translateY(28px) scale(0.98);
      filter: blur(8px);
      transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), filter 0.7s ease;
      will-change: opacity, transform, filter;
      transition-delay: 0ms;
    }

    .reveal-item.visible {
      opacity: 1;
      transform: translateY(0) scale(1);
      filter: blur(0);
    }

    @media (max-width:980px) {
      .careers-grid {
        grid-template-columns: 1fr;
        gap: 32px;
      }

      .form-row {
        grid-template-columns: 1fr;
      }

      .career-image-showcase {
        order: -1;
        margin-bottom: 8px;
      }

      .mosaic-card.primary-img {
        width: 100%;
      }

      .mosaic-card.primary-img img {
        height: 320px;
      }

      .mosaic-card.secondary-img {
        display: none;
      }
    }

    @media (max-width:700px) {
      .page-banner {
        min-height: 360px;
        padding: 74px 5% 56px;
      }

      .page-heading {
        max-width: 100%;
      }

      .page-subhead {
        font-size: 0.96rem;
      }

      .careers-section {
        padding: 50px 5% 80px;
      }

      .careers-form {
        padding: 24px 20px;
      }

      .mosaic-card.primary-img img {
        height: 230px;
      }
    }
    
    
     /* ---------- Content shell ---------- */
    .warranty-doc {
      background: var(--paper);
    }

    .doc-container {
      max-width: 920px;
      margin: 0 auto;
      padding: 60px 5% 100px;
    }

    .doc-note {
      display: flex;
      gap: 14px;
      align-items: flex-start;
      background: #fff;
      border: 1px solid var(--paper-line);
      border-left: 3px solid var(--red);
      border-radius: 4px;
      padding: 16px 20px;
      margin-bottom: 56px;
      font-size: 0.9rem;
      line-height: 1.6;
      color: var(--ink-soft);
    }

    .doc-note strong { color: var(--ink); }

    .doc-note-mark {
      font-family: 'IBM Plex Mono', monospace;
      font-weight: 600;
      font-size: 0.78rem;
      color: var(--red);
      border: 1px solid var(--red);
      border-radius: 50%;
      width: 22px;
      height: 22px;
      min-width: 22px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 1px;
    }

    /* ---------- Section head ---------- */
    .section-head {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      gap: 20px;
      margin-bottom: 30px;
      padding-bottom: 14px;
      border-bottom: 1px solid var(--paper-line);
    }

    .section-head h2 {
      font-family: 'Big Shoulders Display', sans-serif;
      font-size: 1.9rem;
      font-weight: 800;
      color: var(--ink);
      text-transform: uppercase;
      letter-spacing: 0.01em;
      margin: 0;
    }

    .section-head .head-label {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 0.72rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--red);
      white-space: nowrap;
      padding-bottom: 4px;
    }

    .articles-section { margin-bottom: 64px; }

    /* ---------- Articles (clauses as certificate articles) ---------- */
    .article-list {
      display: grid;
      gap: 18px;
    }

    .article-item {
      position: relative;
      background: #fff;
      border: 1px solid var(--paper-line);
      border-radius: 10px;
      padding: 28px 30px 28px 30px;
      border-left: 4px solid var(--red);
    }

    .article-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: 'IBM Plex Mono', monospace;
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--red-deep);
      background: #fdeceb;
      border: 1px solid rgba(228,33,44,0.25);
      padding: 4px 10px;
      border-radius: 20px;
      margin-bottom: 14px;
    }

    .article-item h3 {
      font-family: 'Big Shoulders Display', sans-serif;
      font-size: 1.2rem;
      font-weight: 700;
      margin: 0 0 12px 0;
      color: var(--ink);
      letter-spacing: 0.02em;
    }

    .article-item p {
      color: var(--ink-soft);
      line-height: 1.75;
      font-size: 0.95rem;
      margin: 0 0 14px 0;
    }

    .article-item p:last-child { margin-bottom: 0; }

    /* ---------- Product certificates ---------- */
    .cert-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }

    .cert-card {
      position: relative;
      background: #fff;
      border: 1px solid var(--paper-line);
      border-radius: 10px;
      padding: 22px 20px 22px 22px;
      display: flex;
      align-items: center;
      gap: 18px;
    }

    .cert-card:nth-child(1) { grid-column: 1 / -1; }

    .cert-index {
      position: absolute;
      top: 12px;
      right: 14px;
      font-family: 'IBM Plex Mono', monospace;
      font-size: 0.68rem;
      color: var(--paper-line);
      letter-spacing: 0.05em;
    }

    .cert-stamp {
      flex: none;
      width: 76px;
      height: 76px;
      border-radius: 50%;
      border: 2px solid var(--red);
      box-shadow: inset 0 0 0 3px #fff, inset 0 0 0 4px var(--red);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: var(--red);
      background:
        repeating-linear-gradient(115deg, rgba(228,33,44,0.05) 0 2px, transparent 2px 7px);
    }

    .cert-card:nth-child(odd) .cert-stamp { transform: rotate(-6deg); }
    .cert-card:nth-child(even) .cert-stamp { transform: rotate(5deg); }

    .stamp-value {
      font-family: 'Big Shoulders Display', sans-serif;
      font-weight: 900;
      font-size: 1.02rem;
      line-height: 0.95;
      text-transform: uppercase;
    }

    .stamp-sub {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 0.5rem;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      margin-top: 3px;
      opacity: 0.85;
    }

    .cert-info { min-width: 0; }

    .cert-info h3 {
      font-family: 'Big Shoulders Display', sans-serif;
      font-size: 1.28rem;
      font-weight: 800;
      color: var(--ink);
      margin: 0 0 8px 0;
      letter-spacing: 0.01em;
      text-transform: uppercase;
    }

    .cert-specs {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
    }

    .spec-tag {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 0.68rem;
      letter-spacing: 0.02em;
      color: var(--wood);
      background: #fbf3e8;
      border: 1px solid var(--wood-soft);
      padding: 3px 8px;
      border-radius: 4px;
      white-space: nowrap;
    }

    .doc-footnote {
      margin-top: 26px;
      font-size: 0.82rem;
      color: var(--ink-soft);
      font-style: italic;
    }

    /* ============================================================
       GLOBAL HOMEPAGE REVEAL SYSTEM TOKENS
       ============================================================ */
    .reveal {
      opacity: 0;
      transform: translateY(36px) scale(0.98);
      filter: blur(8px);
      transition: opacity 0.75s ease, transform 0.75s ease, filter 0.75s ease;
      will-change: opacity, transform, filter;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0) scale(1);
      filter: blur(0);
    }

    .reveal-item {
      opacity: 0;
      transform: translateY(28px) scale(0.98);
      filter: blur(8px);
      transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), filter 0.7s ease;
      will-change: opacity, transform, filter;
      transition-delay: 0ms;
    }

    .reveal-item.visible {
      opacity: 1;
      transform: translateY(0) scale(1);
      filter: blur(0);
    }

    @media (max-width: 760px) {
      .article-item { padding: 24px 22px; }
      .cert-grid { grid-template-columns: 1fr; }
      .cert-card:nth-child(1) { grid-column: auto; }
      .section-head { flex-direction: column; align-items: flex-start; gap: 6px; }
    }

    @media (max-width: 700px) {
      .warranty-hero { min-height: 360px; padding: 74px 5% 56px; }
      .hero-title { max-width: 100%; }
      .hero-copy { font-size: 0.96rem; }
    }

    @media (prefers-reduced-motion: no-preference) {
      .cert-card { transition: box-shadow 0.2s ease, transform 0.2s ease; }
      .cert-card:hover { box-shadow: 0 10px 24px rgba(27,24,21,0.06); transform: translateY(-2px); }
    }
    
    
     .contact-shell {
      max-width: 1160px;
      margin: 80px auto 0;
      padding: 0 5% 80px;
      position: relative;
      z-index: 2;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 24px;
      align-items: start;
    }

    .contact-card,
    .contact-side-card {
      background: #fff;
      border: 1px solid rgba(27,24,21,0.07);
      border-radius: 24px;
      box-shadow: 0 20px 50px rgba(27,24,21,0.08);
    }

    .contact-card {
      padding: 30px;
    }

    .contact-card h2 {
      margin: 0 0 8px;
      font-family: 'Big Shoulders Display', sans-serif;
      font-size: 28px;
      color: var(--ink);
    }

    .contact-card p.lead {
      margin: 0 0 24px;
      color: var(--ink-soft);
      line-height: 1.75;
    }

    .field-row {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
    }

    .field {
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin-bottom: 14px;
    }

    .field label {
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--ink);
    }

    .field input,
    .field textarea {
      width: 100%;
      padding: 13px 14px;
      border-radius: 12px;
      border: 1px solid #e6dcc6;
      font-size: 15px;
      color: var(--ink);
      background: #fff;
    }

    .field textarea {
      min-height: 140px;
      resize: vertical;
    }

    .field input:focus,
    .field textarea:focus {
      outline: none;
      border-color: var(--veneer);
      box-shadow: 0 0 0 4px rgba(200,155,108,0.12);
    }

    .field input:invalid.touched,
    .field textarea:invalid.touched {
      border-color: #d33;
    }

    .button-primary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 14px 24px;
      border-radius: 999px;
      border: none;
      background: var(--red);
      color: #fff;
      font-weight: 700;
      cursor: pointer;
      transition: background .2s ease, transform .2s ease;
    }

    .button-primary:hover {
      background: var(--red-deep);
      transform: translateY(-1px);
    }

    .button-primary:disabled {
      opacity: 0.65;
      cursor: not-allowed;
      transform: none;
    }

    .contact-actions {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 12px;
      margin-top: 18px;
      color: var(--ink-soft);
    }

    .form-status {
      display: none;
      margin-top: 16px;
      padding: 14px 16px;
      border-radius: 12px;
      font-size: 14px;
      line-height: 1.6;
    }

    .form-status.visible {
      display: block;
    }

    .form-status.success {
      background: #eaf7ee;
      border: 1px solid #b9e3c3;
      color: #1c6b34;
    }

    .form-status.error {
      background: #fbeaea;
      border: 1px solid #f0bcbc;
      color: #a02020;
    }

    .contact-side-card {
      padding: 24px;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .info-block {
      padding: 16px 18px;
      border-radius: 16px;
      background: linear-gradient(180deg, #fff, #fbf5ea);
      border: 1px solid rgba(236,227,216,0.95);
    }

    .info-block strong {
      display: block;
      margin-bottom: 6px;
      color: var(--ink);
    }

    .info-block p,
    .info-block a {
      margin: 0;
      color: var(--ink-soft);
      line-height: 1.7;
    }

    .map-card {
      overflow: hidden;
      border-radius: 16px;
      border: 1px solid rgba(236,227,216,0.95);
    }

    /* ============================================================
       HOMEPAGE REVEAL ANIMATION SYSTEM TOKENS
       ============================================================ */
    .reveal {
      opacity: 0;
      transform: translateY(36px) scale(0.98);
      filter: blur(8px);
      transition: opacity 0.75s ease, transform 0.75s ease, filter 0.75s ease;
      will-change: opacity, transform, filter;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0) scale(1);
      filter: blur(0);
    }

    .reveal-item {
      opacity: 0;
      transform: translateY(28px) scale(0.98);
      filter: blur(8px);
      transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), filter 0.7s ease;
      will-change: opacity, transform, filter;
      transition-delay: 0ms;
    }

    .reveal-item.visible {
      opacity: 1;
      transform: translateY(0) scale(1);
      filter: blur(0);
    }

    @media (max-width: 980px) {
      .contact-grid { grid-template-columns: 1fr; }
      .contact-shell { margin-top: 40px; }
      .field-row { grid-template-columns: 1fr; }
    }

    @media (max-width: 700px) {
      .contact-hero { min-height: 360px; padding: 74px 5% 56px; }
      .contact-card { padding: 22px; }
      .contact-side-card { padding: 20px; }
      .hero-title { max-width: 100%; }
      .hero-copy { font-size: 0.96rem; }
      .button-primary { width: 100%; }
      .contact-actions { flex-direction: column; align-items: stretch; }
    }
    
    
 

        /* ===== Utility bar ===== */
        .utility-bar {
            background: var(--ink);
            color: #e9e3da;
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 28px;
            padding: 9px 5%;
            font-size: 13px;
            font-family: 'Space Mono', monospace;
            letter-spacing: 0.02em;
        }

        .utility-bar .contact-item {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #cfc7ba;
        }

        .utility-bar .icon-dot {
            width: 26px;
            height: 26px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            flex: 0 0 auto;
        }

        .utility-bar a.mail:hover,
        .utility-bar .contact-item:hover {
            color: #fff;
        }

        .quote-btn {
            background: var(--red);
            color: #fff;
            font-family: 'Inter', sans-serif;
            font-weight: 700;
            font-size: 12.5px;
            letter-spacing: 0.06em;
            padding: 9px 20px;
            border-radius: 2px;
            border: none;
            cursor: pointer;
            transition: background .2s ease;
        }

        .quote-btn:hover {
            background: var(--red-deep);
        }

        /* ===== Main nav ===== */
        .main-nav {
            background: var(--paper);
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 5%;
            border-bottom: 1px solid #ece5d8;
            position: relative;
            z-index: 50;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo-img {
            height: 52px;
            width: auto;
            max-width: 220px;
            object-fit: contain;
            display: block;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 34px;
            font-weight: 600;
            font-size: 14.5px;
            color: var(--ink-soft);
        }

        .nav-links li {
            position: relative;
        }

      
        .nav-links a:hover {
            color: var(--red);
        }

        .nav-links .active a {
            color: var(--red);
        }

        .nav-links .active a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -2px;
            width: 100%;
            height: 2px;
            background: var(--red);
        }

        .caret {
            width: 8px;
            height: 8px;
            opacity: 0.55;
        }

        .nav-right {
            display: flex;
            align-items: center;
            gap: 22px;
        }

        .search-btn {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: var(--cream);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background .2s ease;
        }

        .search-btn:hover {
            background: #ece1cd;
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
        }

        .menu-toggle span {
            width: 24px;
            height: 2px;
            background: var(--ink);
        }

        /* ===== Hero slider ===== */
        .hero {
            position: relative;
            height: 500px;
            overflow: hidden;
            /* Theme-matching fallback instead of near-black, so any loading
               gap reads as an intentional tone, not a black flash. */
            background: linear-gradient(135deg, var(--veneer-deep) 0%, var(--ink) 100%);
        }

        .slide {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            transform: translateY(100%);
            transition: transform 1000ms cubic-bezier(.65, 0, .35, 1);
            z-index: 1;
        }

        .slide.active {
            transform: translateY(0);
            z-index: 3;
        }

        .slide.exiting {
            transform: translateY(-100%);
            z-index: 2;
        }

        .slide-bg {
            position: absolute;
            inset: 0;
            overflow: hidden;
            /* Theme-matching fallback (was near-black) */
            background: var(--veneer-deep);
            background-size: cover;
            background-position: center;
        }

        .slide-bg img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            background-color: var(--veneer-deep);
            /* Smooth fade-in once the image actually paints, so even a brief
               load delay looks like a transition instead of a hard cut. */
            opacity: 0;
            transition: opacity .4s ease;
        }

        .slide-bg img.loaded {
            opacity: 1;
        }

        .slide-bg::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(100deg, rgba(15, 12, 10, 0.86) 0%, rgba(15, 12, 10, 0.55) 42%, rgba(15, 12, 10, 0.25) 100%);
        }

        .slide-content {
            position: relative;
            z-index: 2;
            max-width: 640px;
            padding: 0 5% 0 5%;
            color: #fff;
        }

        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            border: 1px solid rgba(255, 255, 255, 0.35);
            padding: 6px 16px;
            border-radius: 20px;
            font-family: 'Space Mono', monospace;
            font-size: 12px;
            letter-spacing: 0.1em;
            color: #f0e4d0;
            margin-bottom: 22px;
        }

        .eyebrow .dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--red);
        }

        .slide-title {
            font-family: 'Big Shoulders Display', sans-serif;
            font-weight: 800;
            font-size: 48px;
            line-height: 1.02;
            letter-spacing: 0.01em;
            margin-bottom: 28px;
            opacity: 0;
        }

        .slide-title em {
            font-style: normal;
            color: var(--veneer);
        }

        .slide-title .hl {
            color: var(--red);
        }

        .slide-ctas {
            display: flex;
            gap: 16px;
            align-items: center;
            opacity: 0;
        }

        /* ===== Slide text entrance animation ===== */
        @keyframes slideTextIn {
            from {
                opacity: 0;
                transform: translateY(34px);
                filter: blur(6px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
                filter: blur(0);
            }
        }

        .slide.active .slide-title {
            animation: slideTextIn 0.9s cubic-bezier(.22, 1, .36, 1) 0.15s both;
        }

        .slide.active .slide-ctas {
            animation: slideTextIn 0.9s cubic-bezier(.22, 1, .36, 1) 0.4s both;
        }

        .btn-primary {
            background: var(--red);
            color: #fff;
            font-weight: 700;
            font-size: 14px;
            letter-spacing: 0.03em;
            padding: 15px 30px;
            border-radius: 2px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: background .2s ease, transform .2s ease;
            border: none;
            cursor: pointer;
        }

        .btn-primary:hover {
            background: var(--red-deep);
            transform: translateY(-2px);
        }

        .btn-ghost {
            color: #fff;
            font-weight: 600;
            font-size: 14px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.4);
            padding-bottom: 4px;
        }

        .btn-ghost:hover {
            border-color: #fff;
        }

        /* stat card like reference image */
        .hero-stat {
            position: absolute;
            right: 6%;
            bottom: 36px;
            z-index: 4;
            background: rgba(27, 24, 21, 0.72);
            backdrop-filter: blur(6px);
            border: 1px solid rgba(255, 255, 255, 0.14);
            border-radius: 6px;
            padding: 20px 24px;
            color: #fff;
            min-width: 190px;
        }

        .hero-stat .num {
            font-family: 'Big Shoulders Display', sans-serif;
            font-weight: 800;
            font-size: 30px;
            color: var(--veneer);
            line-height: 1;
        }

        .hero-stat .label {
            font-size: 12px;
            color: #cfc7ba;
            margin-top: 5px;
            line-height: 1.4;
        }

        .hero-stat .divider {
            height: 1px;
            background: var(--line);
            margin: 12px 0;
        }

        /* slide nav dots */
        .slide-dots {
            position: absolute;
            right: 5%;
            top: 50%;
            transform: translateY(-50%);
            z-index: 5;
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .slide-dots button {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, 0.5);
            background: transparent;
            cursor: pointer;
            transition: all .25s ease;
            padding: 0;
        }

        .slide-dots button.active {
            background: var(--red);
            border-color: var(--red);
            transform: scale(1.3);
        }

        .veneer-strip {
            height: 10px;
            display: flex;
        }

        .veneer-strip span {
            flex: 1;
        }

        .veneer-strip span:nth-child(1) {
            background: var(--red);
        }

        .veneer-strip span:nth-child(2) {
            background: var(--ink);
        }

        .veneer-strip span:nth-child(3) {
            background: var(--veneer);
        }

        .veneer-strip span:nth-child(4) {
            background: var(--ink);
        }

        .veneer-strip span:nth-child(5) {
            background: var(--red);
        }

        /* ===== Products section ===== */
        .products {
            background: #fff;
            color: var(--ink);
            padding: 90px 5%;
        }

        .products-inner {
            max-width: 1240px;
            margin: 0 auto;
        }

        .products-header {
            max-width: 720px;
            margin: 0 auto 52px;
            text-align: center;
        }

        .products-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 24px;
            background: var(--red);
            color: #fff;
            font-weight: 700;
            border-radius: 999px;
            transition: background .2s ease;
        }

        .products-footer {
            display: flex;
            justify-content: center;
            margin-top: 32px;
        }

        .products-btn:hover {
            background: var(--red-deep);
        }

        .products-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            border: 1px solid rgba(27, 24, 21, 0.12);
            padding: 8px 18px;
            border-radius: 999px;
            font-family: 'Space Mono', monospace;
            font-size: 12px;
            letter-spacing: 0.16em;
            color: var(--red);
            text-transform: uppercase;
            margin-bottom: 18px;
        }

        .products-title {
            font-family: 'Big Shoulders Display', sans-serif;
            font-weight: 800;
            font-size: 42px;
            line-height: 1.05;
            margin-bottom: 18px;
        }

        .products-copy {
            color: var(--ink-soft);
            font-size: 16px;
            line-height: 1.8;
            max-width: 640px;
            margin: 0 auto;
        }

        .product-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 24px;
        }

        .product-card {
            border: 1px solid #ece5d8;
            border-radius: 22px;
            overflow: hidden;
            background: #fff;
            transition: transform .25s ease, box-shadow .25s ease;
        }

        .product-card a {
            display: block;
        }

        .product-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 24px 50px rgba(0, 0, 0, 0.08);
        }

        .product-media {
            width: 100%;
            aspect-ratio: 4/3;
            background-size: cover;
            background-position: center;
        }

        .product-info {
            padding: 20px 22px 24px;
        }

        .product-name {
            font-family: 'Big Shoulders Display', sans-serif;
            font-weight: 800;
            font-size: 24px;
            line-height: 1.1;
            text-align: center;
        }

        .product-empty {
            grid-column: 1 / -1;
            text-align: center;
            color: var(--ink-soft);
            padding: 40px 0;
        }

        .value-section {
            background: #fff;
            padding: 80px 5% 60px;
        }

        .value-inner {
            max-width: 1080px;
            margin: 0 auto;
        }

        .value-header {
            text-align: center;
            max-width: 620px;
            margin: 0 auto 36px;
        }

        .value-header p {
            color: var(--ink-soft);
            font-size: 15.5px;
            line-height: 1.8;
            margin-top: 14px;
        }

        .value-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 20px;
        }

        .value-card {
            background: #f8f4eb;
            border: 1px solid #e6dcca;
            border-radius: 24px;
            padding: 28px;
            transition: transform .3s ease, box-shadow .3s ease;
            min-height: 200px;
        }

        .value-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 24px 40px rgba(0, 0, 0, 0.08);
        }

        .value-card::before {
            content: '';
            display: block;
            width: 42px;
            height: 4px;
            border-radius: 999px;
            background: var(--red);
            margin-bottom: 18px;
        }

        .value-card h3 {
            font-family: 'Big Shoulders Display', sans-serif;
            font-size: 22px;
            margin-bottom: 10px;
            color: var(--ink);
        }

        .value-card p {
            font-size: 15px;
            line-height: 1.75;
            color: var(--ink-soft);
            margin: 0;
        }

        .choose-section {
            background: linear-gradient(135deg, #f7efe3 0%, #efe0c7 100%);
            padding: 80px 5% 90px;
        }

        .choose-inner {
            max-width: 1180px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.05fr 0.95fr;
            gap: 36px;
            align-items: center;
            background: var(--paper);
            border: 1px solid #efe4d3;
            border-radius: 24px;
            padding: 42px;
            box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
        }

        .choose-title {
            font-family: 'Big Shoulders Display', sans-serif;
            font-weight: 800;
            font-size: 42px;
            line-height: 1.03;
            margin-bottom: 16px;
            color: var(--ink);
        }

        .choose-text {
            font-size: 16px;
            line-height: 1.8;
            color: var(--ink-soft);
            max-width: 560px;
        }

        .choose-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-top: 24px;
            padding: 13px 26px;
            background: var(--red);
            color: #fff;
            font-weight: 700;
            border-radius: 999px;
            transition: background .2s ease, transform .2s ease;
            box-shadow: 0 10px 24px rgba(228, 33, 44, 0.16);
            border: none;
            cursor: pointer;
        }

        .choose-btn:hover {
            background: var(--red-deep);
            transform: translateY(-2px);
        }

        .choose-media {
            position: relative;
            overflow: hidden;
            border-radius: 18px;
            min-height: 280px;
        }

        .choose-media::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(145deg, rgba(15, 12, 10, 0.08) 0%, rgba(15, 12, 10, 0.22) 100%);
            pointer-events: none;
        }

        .choose-media img {
            width: 100%;
            height: 100%;
            min-height: 280px;
            object-fit: cover;
            display: block;
        }

        .testimonials {
            background: #f8f4eb;
            padding: 90px 5%;
        }

        .testimonials-inner {
            max-width: 1240px;
            margin: 0 auto;
        }

        .testimonials-heading {
            text-align: center;
            margin-bottom: 42px;
        }

        .testimonials-heading h3 {
            font-family: 'Big Shoulders Display', sans-serif;
            font-size: 38px;
            font-weight: 800;
            margin-bottom: 10px;
            color: var(--ink);
        }

        .testimonials-heading p {
            color: var(--ink-soft);
            font-size: 16px;
            line-height: 1.7;
            max-width: 700px;
            margin: 0 auto;
        }

        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 24px;
            align-items: start;
        }

        .testimonial-card {
            background: var(--paper);
            border: 1px solid #ece5d8;
            border-radius: 20px;
            padding: 28px;
            box-shadow: 0 16px 35px rgba(0, 0, 0, 0.05);
            display: flex;
            flex-direction: column;
            height: 340px;
        }

        .testimonial-meta {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 18px;
        }

        .testimonial-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            flex: 0 0 auto;
            border: 2px solid var(--veneer);
        }

        .testimonial-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .testimonial-info cite {
            font-style: normal;
            font-weight: 700;
            color: var(--ink);
            display: block;
            margin-bottom: 3px;
        }

        .testimonial-info p {
            font-size: 13px;
            color: var(--veneer-deep);
            line-height: 1.4;
        }

        .testimonial-text {
            font-size: 15px;
            line-height: 1.8;
            color: var(--ink-soft);
            overflow-y: auto;
            padding-right: 10px;
            flex: 1;
            min-height: 0;
        }

        .testimonial-text::-webkit-scrollbar {
            width: 6px;
        }

        .testimonial-text::-webkit-scrollbar-track {
            background: transparent;
        }

        .testimonial-text::-webkit-scrollbar-thumb {
            background: rgba(228, 33, 44, 0.25);
            border-radius: 999px;
        }

        .testimonial-text {
            scrollbar-width: thin;
            scrollbar-color: rgba(228, 33, 44, 0.25) transparent;
        }

        .testimonial-empty {
            text-align: center;
            color: var(--ink-soft);
            grid-column: 1 / -1;
        }

        .google-review {
            margin-top: 32px;
            padding: 28px 32px;
            background: linear-gradient(135deg, #ffffff 0%, #f8efe2 100%);
            border: 1px solid #ece5d8;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            box-shadow: 0 16px 35px rgba(0, 0, 0, 0.05);
        }

        .google-review strong {
            display: block;
            font-size: 18px;
            color: var(--ink);
            margin-bottom: 6px;
        }

        .google-review span {
            color: var(--ink-soft);
            font-size: 15px;
            line-height: 1.6;
        }

        .google-review a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 22px;
            background: var(--red);
            color: #fff;
            font-weight: 700;
            border-radius: 999px;
            white-space: nowrap;
            transition: background .2s ease;
        }

        .google-review a:hover {
            background: var(--red-deep);
        }

        .site-footer {
            position: relative;
            background: linear-gradient(180deg, #13100d 0%, #0b0907 100%);
            color: #e6ddd0;
            padding: 86px 5% 40px;
            overflow: hidden;
        }

        .site-footer::before {
            content: "";
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.05), transparent 28%),
                radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.04), transparent 22%);
            z-index: 0;
            pointer-events: none;
        }

        .footer-inner {
            max-width: 1240px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.95fr) minmax(0, 0.95fr) minmax(0, 1.2fr);
            gap: 40px;
            align-items: start;
            position: relative;
            z-index: 2;
        }

        .footer-brand,
        .footer-section {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .footer-logo {
            width: 140px;
            height: auto;
            display: block;
            filter: brightness(1.05) saturate(0.95);
        }

        .footer-about {
            font-size: 15px;
            line-height: 1.8;
            color: #d2c7b7;
            max-width: 420px;
        }

        .footer-title {
            font-family: 'Big Shoulders Display', sans-serif;
            font-size: 18px;
            font-weight: 800;
            color: #fff;
            margin-bottom: 10px;
        }

        .footer-list {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .footer-list a,
        .footer-list span {
            color: #d2c7b7;
            font-size: 15px;
            line-height: 1.85;
        }

        .footer-list a:hover {
            color: #fff;
        }

        .footer-contact {
            align-items: flex-start;
            text-align: left;
        }

        .footer-address {
            color: #d2c7b7;
            line-height: 1.7;
            font-size: 15px;
            max-width: 320px;
        }

        .footer-contact a {
            color: #fff;
            font-weight: 700;
        }

        .footer-map-col {
            display: flex;
            flex-direction: column;
            gap: 18px;
        }

        .footer-map {
            border-radius: 18px;
            overflow: hidden;
            min-height: 240px;
            border: 1px solid rgba(255,255,255,0.08);
        }

        .footer-map iframe {
            width: 100%;
            height: 100%;
            min-height: 240px;
            border: 0;
            display: block;
        }

        .footer-social-label {
            color: #d2c7b7;
            font-size: 14px;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .footer-social {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            align-items: center;
        }

        .footer-social a {
            width: 48px;
            height: 48px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(255,255,255,0.08);
            color: #fff;
            border: 1px solid rgba(255,255,255,0.12);
            box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02);
            transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
        }

        .footer-social a svg {
            width: 20px;
            height: 20px;
        }

        .footer-social a:hover {
            background: rgba(255,255,255,0.16);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
            transform: translateY(-2px);
        }

        .footer-watermark {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            bottom: -20px;
            font-family: 'Big Shoulders Display', sans-serif;
            font-weight: 900;
            font-size: 300px;
            letter-spacing: 0.02em;
            color: rgba(255,255,255,0.03);
            pointer-events: none;
            z-index: 1;
            white-space: nowrap;
        }

        .footer-bottom {
            max-width: 1240px;
            margin: 34px auto 0;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.06);
            font-size: 14px;
            color: #bdb3a3;
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .footer-bottom a { color: #fff; }

        .reveal {
            opacity: 0;
            transform: translateY(36px) scale(0.98);
            filter: blur(8px);
            transition: opacity 0.75s ease, transform 0.75s ease, filter 0.75s ease;
            will-change: opacity, transform, filter;
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0) scale(1);
            filter: blur(0);
        }

        .reveal-item {
            opacity: 0;
            transform: translateY(28px) scale(0.98);
            filter: blur(8px);
            transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), filter 0.7s ease;
            will-change: opacity, transform, filter;
            transition-delay: 0ms;
        }

        .reveal-item.visible {
            opacity: 1;
            transform: translateY(0) scale(1);
            filter: blur(0);
        }

        /* ===== Request Quote modal ===== */
       .quote-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(15, 12, 10, 0.6);
    display: none;
    align-items: flex-start;     
    justify-content: center;
    padding: 20px;
    overflow-y: auto;             
    -webkit-overflow-scrolling: touch;
}

.quote-modal-overlay.open {
    display: flex;
}

.quote-modal {
    position: relative;
    background: var(--paper);
    border-radius: 18px;
    max-width: 460px;
    width: 100%;
    padding: 36px 32px 32px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
    margin: 40px auto;            
    max-height: calc(100vh - 40px);
    overflow-y: auto;            
}
@media (max-width: 900px) {
    .quote-modal-overlay {
        padding: 12px;
        align-items: flex-start;
    }
    .quote-modal {
        margin: 12px auto;
        max-height: calc(100vh - 24px);
        padding: 28px 20px 24px;
    }
}
        .quote-modal-close {
            position: absolute;
            top: 14px;
            right: 14px;
            width: 34px;
            height: 34px;
            border-radius: 50%;
            border: none;
            background: var(--cream);
            font-size: 18px;
            line-height: 1;
            cursor: pointer;
            color: var(--ink);
        }

        .quote-modal-close:hover {
            background: #ece1cd;
        }

        .quote-modal h3 {
            font-family: 'Big Shoulders Display', sans-serif;
            font-weight: 800;
            font-size: 28px;
            margin-bottom: 6px;
            color: var(--ink);
        }

        .quote-modal p.sub {
            color: var(--ink-soft);
            font-size: 14px;
            margin-bottom: 22px;
        }

        .quote-modal form {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .quote-modal label {
            font-size: 13px;
            font-weight: 600;
            color: var(--ink-soft);
            margin-bottom: 6px;
            display: block;
        }

        .quote-modal input,
        .quote-modal textarea {
            width: 100%;
            padding: 11px 13px;
            border: 1px solid #ded4c3;
            border-radius: 8px;
            font-family: 'Inter', sans-serif;
            font-size: 14px;
            color: var(--ink);
            background: var(--cream);
        }

        .quote-modal textarea {
            resize: vertical;
            min-height: 80px;
        }

        .quote-modal input:focus,
        .quote-modal textarea:focus {
            outline: none;
            border-color: var(--red);
        }

        .quote-modal-submit {
            margin-top: 6px;
            background: var(--red);
            color: #fff;
            font-weight: 700;
            font-size: 14.5px;
            padding: 13px 20px;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: background .2s ease;
        }

        .quote-modal-submit:hover {
            background: var(--red-deep);
        }

        .quote-modal-status {
            font-size: 13.5px;
            margin-top: 4px;
            display: none;
        }

        @media (max-width: 900px) {
            .footer-inner { grid-template-columns: 1fr; text-align: left; }
            .footer-contact { text-align: left; align-items: flex-start; }
            .footer-social { justify-content: flex-start; }
            .footer-watermark { display: none; }
            .testimonial-grid { grid-template-columns: 1fr; }
            .choose-inner { grid-template-columns: 1fr; padding: 30px; }
            .choose-title { font-size: 34px; }
            .value-grid { grid-template-columns: 1fr; }
            .google-review {
                flex-direction: column;
                align-items: stretch;
                text-align: left;
                padding: 24px 22px;
            }
            .google-review strong {
                font-size: 16px;
            }
            .google-review a {
                width: 100%;
                justify-content: center;
            }
            .product-grid {
                grid-template-columns: 1fr;
            }
            .product-card {
                max-width: 100%;
            }
            .product-media {
                aspect-ratio: 16/10;
            }
        }

        /* ===== About section ===== */
       .about {
    position: relative;
    background: var(--ink) center/cover no-repeat;
    overflow: hidden;
    padding: 60px 5%;   
}

        .about-scrim {
            position: absolute;
            inset: 0;
            z-index: 0;
            background:
                linear-gradient(100deg, rgba(15, 12, 10, 0.94) 0%, rgba(15, 12, 10, 0.86) 40%, rgba(15, 12, 10, 0.55) 75%, rgba(15, 12, 10, 0.35) 100%);
        }

        .about-decor {
            position: absolute;
            inset: 0;
            pointer-events: none;
            z-index: 1;
        }

        .about-decor span {
            position: absolute;
            border: 1px solid rgba(255, 255, 255, 0.07);
            transform: rotate(45deg);
        }

        .about-decor span.d1 {
            width: 220px;
            height: 220px;
            top: -60px;
            left: 8%;
        }

        .about-decor span.d2 {
            width: 140px;
            height: 140px;
            bottom: 10%;
            left: 20%;
            border-color: rgba(200, 155, 108, 0.16);
        }

        .about-decor span.d3 {
            width: 300px;
            height: 300px;
            top: 20%;
            left: 38%;
            border-color: rgba(255, 255, 255, 0.05);
        }

        .about-decor .wordmark {
            position: absolute;
            left: 6%;
            bottom: -4%;
            font-family: 'Big Shoulders Display', sans-serif;
            font-weight: 900;
            font-size: 220px;
            color: rgba(255, 255, 255, 0.035);
            letter-spacing: 0.02em;
            white-space: nowrap;
        }

        .about-grid {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1fr 0.95fr;
            gap: 70px;
            align-items: center;
            max-width: 1240px;
            margin: 0 auto;
        }

        .about-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            border: 1px solid rgba(255, 255, 255, 0.25);
            padding: 7px 18px;
            border-radius: 20px;
            font-family: 'Space Mono', monospace;
            font-size: 11.5px;
            letter-spacing: 0.12em;
            color: #f0e4d0;
            margin-bottom: 26px;
        }

        .about-eyebrow .dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--veneer);
        }

        .about-title {
            font-family: 'Big Shoulders Display', sans-serif;
            font-weight: 800;
            font-size: 44px;
            line-height: 1.08;
            color: #fff;
            max-width: 520px;
            margin-bottom: 34px;
        }

        .about-title em {
            font-style: normal;
            color: var(--red);
        }

        .about-points {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px 30px;
            margin-bottom: 30px;
            max-width: 480px;
        }

        .about-points li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14.5px;
            font-weight: 600;
            color: #e3ddd1;
        }

        .about-points li svg {
            flex: 0 0 auto;
        }

        .about-text p {
            font-size: 15.5px;
            line-height: 1.75;
            color: black;
            max-width: 520px;
            margin-bottom: 16px;
        }

        .about-cta {
            display: inline-flex;
            align-items: center;
            gap: 14px;
            margin-top: 18px;
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 30px;
            padding: 8px 8px 8px 24px;
            font-weight: 700;
            font-size: 14px;
            color: #fff;
            transition: border-color .2s ease;
        }

        .about-cta:hover {
            border-color: var(--red);
        }

        .about-cta .arrow {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            background: var(--red);
            display: flex;
            align-items: center;
            justify-content: center;
            flex: 0 0 auto;
        }

        .about-visual {
            position: relative;
            z-index: 1;
        }

       .about-frame {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
    aspect-ratio: 4/3.4;   
    background-size: cover;
    background-position: center;
}

        .about-frame::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(200deg, rgba(15, 12, 10, 0.1) 20%, rgba(15, 12, 10, 0.75) 100%);
        }

        .about-frame-content {
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 2;
            padding: 28px;
            color: #fff;
        }

        .about-frame-content .founder {
            font-family: 'Big Shoulders Display', sans-serif;
            font-weight: 700;
            font-size: 20px;
            margin-bottom: 4px;
        }

        .about-frame-content .role {
            font-family: 'Space Mono', monospace;
            font-size: 11px;
            letter-spacing: 0.1em;
            color: var(--veneer);
        }

        .about-badge {
            position: absolute;
            right: -22px;
            bottom: -22px;
            z-index: 3;
            width: 96px;
            height: 96px;
            border-radius: 50%;
            background: var(--red);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: #fff;
            box-shadow: 0 12px 30px rgba(228, 33, 44, 0.4);
            border: 4px solid var(--ink);
        }

        .about-badge .num {
            font-family: 'Big Shoulders Display', sans-serif;
            font-weight: 800;
            font-size: 20px;
            line-height: 1;
        }

        .about-badge .sub {
            font-family: 'Space Mono', monospace;
            font-size: 9px;
            letter-spacing: 0.1em;
            margin-top: 3px;
        }

        @media (max-width:900px) {
            .nav-links {
                display: none;
            }

            .menu-toggle {
                display: flex;
            }

            .slide-title {
                font-size: 30px;
            }

            .hero {
                height: 340px;
            }

            .hero-stat {
                display: none;
            }

            .utility-bar {
                justify-content: space-between;
            }

            .utility-bar .contact-item span.txt {
                display: none;
            }

            .about {
                padding: 70px 6%;
            }

            .about-grid {
                grid-template-columns: 1fr;
                gap: 50px;
            }

            .about-title {
                font-size: 32px;
            }

            .about-points {
                grid-template-columns: 1fr;
            }

            .about-decor .wordmark {
                font-size: 120px;
            }

            .about-visual {
                order: -1;
            }

            .logo-img {
                height: 40px;
            }
        }
        
        

        /* ============================================================
           HERO BANNER DESIGN (Inherited from Warranty Section)
           ============================================================ */
        .warranty-hero {
            position: relative;
            min-height: 300px;
            display: flex;
            align-items: center;
            padding: 60px 5% 50px;
          background: linear-gradient(100deg, rgba(15,12,10,0.45) 0%, rgba(15,12,10,0.25) 60%, rgba(15,12,10,0.10) 100%), url('assets/gallery_page.png') center/cover no-repeat;
            color: #fff;
            overflow: hidden;
        }

        .warranty-hero::after {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at top right, rgba(228,33,44,0.2), transparent 28%);
            pointer-events: none;
        }

        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 1160px;
            margin: 0 auto;
            width: 100%;
            display: grid;
            gap: 18px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            width: fit-content;
            padding: 8px 16px;
            border-radius: 999px;
            background: rgba(255,255,255,0.12);
            border: 1px solid rgba(255,255,255,0.18);
            font-size: 12px;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: #f5e7d0;
        }

        .hero-title {
            font-family: 'Big Shoulders Display', sans-serif;
            font-size: clamp(2.5rem, 4.8vw, 3.8rem);
            line-height: 1.02;
            margin: 0;
            max-width: 700px;
        }

        .hero-copy {
            font-size: 1rem;
            line-height: 1.8;
            color: rgba(255,255,255,0.88);
            max-width: 640px;
            margin: 0;
        }

        .hero-breadcrumb {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            align-items: center;
            padding: 12px 18px;
            border-radius: 999px;
            background: rgba(255,255,255,0.12);
            border: 1px solid rgba(255,255,255,0.16);
            width: fit-content;
            font-size: 14px;
        }

        .hero-breadcrumb a { color: #fff; font-weight: 600; text-decoration: none; }
        .hero-breadcrumb span { color: rgba(255,255,255,0.72); }

        /* ===== Products Grid Layout ===== */
        .products {
            background: #fff;
            color: var(--ink);
            padding: 80px 5%;
        }

        .products-inner {
            max-width: 1240px;
            margin: 0 auto;
        }

        .products-header {
            max-width: 720px;
            margin: 0 auto 52px;
            text-align: center;
        }

        .products-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            border: 1px solid rgba(27, 24, 21, 0.12);
            padding: 8px 18px;
            border-radius: 999px;
            font-family: 'Space Mono', monospace;
            font-size: 12px;
            letter-spacing: 0.16em;
            color: var(--red);
            text-transform: uppercase;
            margin-bottom: 18px;
        }

        .products-title {
            font-family: 'Big Shoulders Display', sans-serif;
            font-weight: 800;
            font-size: 42px;
            line-height: 1.05;
            margin-bottom: 18px;
        }

        .product-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 24px;
        }

        .product-card {
            border: 1px solid #ece5d8;
            border-radius: 22px;
            overflow: hidden;
            background: #fff;
            transition: transform .25s ease, box-shadow .25s ease;
        }

        .product-card a {
            display: block;
        }

        .product-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 24px 50px rgba(0, 0, 0, 0.08);
        }

        .product-media {
            width: 100%;
            aspect-ratio: 4/3;
            background-size: cover;
            background-position: center;
        }

        .product-info {
            padding: 20px 22px 24px;
        }

        .product-name {
            font-family: 'Big Shoulders Display', sans-serif;
            font-weight: 800;
            font-size: 24px;
            line-height: 1.1;
            text-align: center;
        }

        .product-empty {
            grid-column: 1 / -1;
            text-align: center;
            color: var(--ink-soft);
            padding: 60px 0;
            font-size: 16px;
        }

        .veneer-strip {
            height: 10px;
            display: flex;
        }

        .veneer-strip span {
            flex: 1;
        }

        .veneer-strip span:nth-child(1) { background: var(--red); }
        .veneer-strip span:nth-child(2) { background: var(--ink); }
        .veneer-strip span:nth-child(3) { background: var(--veneer); }
        .veneer-strip span:nth-child(4) { background: var(--ink); }
        .veneer-strip span:nth-child(5) { background: var(--red); }

        /* Scroll Animation Hooks */
        .reveal {
            opacity: 0;
            transform: translateY(36px) scale(0.98);
            filter: blur(8px);
            transition: opacity 0.75s ease, transform 0.75s ease, filter 0.75s ease;
            will-change: opacity, transform, filter;
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0) scale(1);
            filter: blur(0);
        }

        .reveal-item {
            opacity: 0;
            transform: translateY(28px) scale(0.98);
            filter: blur(8px);
            transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), filter 0.7s ease;
            will-change: opacity, transform, filter;
        }

        .reveal-item.visible {
            opacity: 1;
            transform: translateY(0) scale(1);
            filter: blur(0);
        }

        @media (max-width: 900px) {
            .product-grid { grid-template-columns: 1fr; }
            .product-media { aspect-ratio: 16/10; }
        }

        @media (max-width: 700px) {
            .warranty-hero { min-height: 360px; padding: 74px 5% 56px; }
            .hero-title { max-width: 100%; }
            .hero-copy { font-size: 0.96rem; }
        }
        
          /* ============================================================
     JUSTIFIED PHOTO GALLERY SECTION WITH WATERMARK
     ============================================================ */
  .gallery-showcase-section {
    max-width: 1500px;
    margin: 0 auto;
    padding: 200px 4% 60px;
    position: relative;
    overflow: hidden;
    scroll-margin-top: 90px;
  }

  .gallery-watermark {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Big Shoulders Display', sans-serif;
    font-size: clamp(8rem, 24vw, 22rem);
    font-weight: 800;
    color: #000000;
    opacity: 0.05;
    text-transform: lowercase;
    letter-spacing: -0.04em;
    user-select: none;
    pointer-events: none;
    z-index: 0;
    white-space: nowrap;
  }


  .justified-gallery {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .gallery-row {
    display: flex;
    gap: 12px;
    height: 260px;
  }

  .gallery-card {
    position: relative;
    flex-shrink: 0;
    flex-grow: 0;
   
    height: 100%;
    border-radius: 14px;
    overflow: hidden;
    background: #f0ede8;
    box-shadow: 0 10px 30px rgba(27,24,21,0.03);
    border: 1px solid rgba(27,24,21,0.04);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease;
  }

  .gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  }

  .gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(27,24,21,0.09);
    z-index: 2;
  }

  .gallery-card:hover img {
    transform: scale(1.03);
  }

  .gallery-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15,12,10,0.55) 0%, transparent 45%);
    opacity: 0;
    display: flex;
    align-items: flex-end;
    padding: 20px;
    transition: opacity 0.35s ease;
  }

  .gallery-card:hover .gallery-card-overlay {
    opacity: 1;
  }

  .gallery-card-title {
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    font-weight: 500;
  }

  /* ============================================================
     PREMIUM PAGINATION NAVIGATION ENGINE LINK STYLES
     ============================================================ */
  .pagination-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 60px;
    margin-bottom: 40px;
  }

  .pagination-container .page-item {
    display: inline-flex;
  }

  /* Target every link/span the pagination library renders, regardless
     of whatever classes it adds internally, so styling always applies. */
  .pagination-container .page-item a,
  .pagination-container .page-item span,
  .pagination-container a,
  .pagination-container span {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 16px !important;
    margin: 0 !important;
    border-radius: 12px !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    background: #fff !important;
    color: rgba(27, 24, 21, 0.7) !important;
    border: 1px solid rgba(27, 24, 21, 0.08) !important;
    transition: all 0.2s ease;
    white-space: nowrap;
    line-height: 1;
  }

  .pagination-container a:hover,
  .pagination-container .page-item a:hover {
    background: rgba(27, 24, 21, 0.04) !important;
    color: #000 !important;
    border-color: rgba(27, 24, 21, 0.2) !important;
  }

  /* Active/current page + disabled state (library commonly renders
     the disabled prev/next as a <span> instead of an <a>) */
  .pagination-container .page-item.active span,
  .pagination-container .page-item a.active,
  .pagination-container span.current {
    background: var(--red, #e4212c) !important;
    color: #fff !important;
    border-color: var(--red, #e4212c) !important;
  }

  .pagination-container .page-item span:not(.current):not(.active) {
    opacity: 0.4;
    cursor: not-allowed;
  }

  @media (max-width: 500px) {
    .pagination-container {
      gap: 8px;
      margin-top: 40px;
    }
    .pagination-container .page-item a,
    .pagination-container .page-item span,
    .pagination-container a,
    .pagination-container span {
      min-width: 38px;
      height: 38px;
      padding: 0 12px !important;
      font-size: 0.82rem !important;
    }
  }

  /* ============================================================
     HOMEPAGE REVEAL ANIMATION TOKENS
     ============================================================ */
  .reveal {
    opacity: 0;
    transform: translateY(36px) scale(0.98);
    filter: blur(8px);
    transition: opacity 0.75s ease, transform 0.75s ease, filter 0.75s ease;
    will-change: opacity, transform, filter;
  }

  .reveal.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }

  .reveal-item {
    opacity: 0;
    transform: translateY(28px) scale(0.98);
    filter: blur(8px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), filter 0.7s ease;
    will-change: opacity, transform, filter;
    transition-delay: 0ms;
  }

  .reveal-item.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }

  /* Responsive Fallback Layers */
  @media (max-width: 1100px) {
    .gallery-row { height: 240px; }
    .gallery-showcase-section { padding-top: 130px; }
  }

  @media (max-width: 700px) {
    .gallery-banner { min-height: 360px; padding: 74px 5% 56px; }
    .gallery-page-heading { max-width: 100%; }
    .gallery-page-subhead { font-size: 0.96rem; }
    .gallery-showcase-section { padding: 90px 4% 60px; }
    .justified-gallery { gap: 10px; }
    .gallery-row {
      flex-direction: column;
      height: auto;
      gap: 10px;
    }
    .gallery-card {
      height: 220px;
      width: 100% !important;
    }
  }
  
  
   /* ============================================================
     VIDEO GALLERY SECTION WITH WATERMARK
     ============================================================ */
  .video-showcase-section {
    max-width: 1500px;
    margin: 0 auto;
    padding: 200px 4% 60px;
    position: relative;
    overflow: hidden;
    scroll-margin-top: 90px;
  }

  .video-watermark {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Big Shoulders Display', sans-serif;
    font-size: clamp(8rem, 24vw, 22rem);
    font-weight: 800;
    color: #000000;
    opacity: 0.05;
    text-transform: lowercase;
    letter-spacing: -0.04em;
    user-select: none;
    pointer-events: none;
    z-index: 0;
    white-space: nowrap;
  }

  .video-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .video-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #f0ede8;
    box-shadow: 0 10px 30px rgba(27,24,21,0.03);
    border: 1px solid rgba(27,24,21,0.04);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease;
    aspect-ratio: 16 / 9;
  }

  .video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(27,24,21,0.09);
  }

  .video-card iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
  }

  /* ============================================================
     EMPTY / ERROR STATE (shown if there are no videos yet, or
     the query/pagination failed)
     ============================================================ */
  .video-empty-state {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 60px 20px;
    color: rgba(27,24,21,0.6);
    font-family: 'Inter', sans-serif;
  }

  /* ============================================================
     PREMIUM PAGINATION NAVIGATION ENGINE LINK STYLES
     ============================================================ */
  .pagination-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 60px;
    margin-bottom: 40px;
  }

  .pagination-container .page-item {
    display: inline-flex;
  }

  .pagination-container .page-item a,
  .pagination-container .page-item span,
  .pagination-container a,
  .pagination-container span {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 16px !important;
    margin: 0 !important;
    border-radius: 12px !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    background: #fff !important;
    color: rgba(27, 24, 21, 0.7) !important;
    border: 1px solid rgba(27, 24, 21, 0.08) !important;
    transition: all 0.2s ease;
    white-space: nowrap;
    line-height: 1;
  }

  .pagination-container a:hover,
  .pagination-container .page-item a:hover {
    background: rgba(27, 24, 21, 0.04) !important;
    color: #000 !important;
    border-color: rgba(27, 24, 21, 0.2) !important;
  }

  .pagination-container .page-item.active span,
  .pagination-container .page-item a.active,
  .pagination-container span.current {
    background: var(--red, #e4212c) !important;
    color: #fff !important;
    border-color: var(--red, #e4212c) !important;
  }

  .pagination-container .page-item span:not(.current):not(.active) {
    opacity: 0.4;
    cursor: not-allowed;
  }

  .reveal,
  .reveal-item {
    opacity: 1;
    transform: none;
    filter: none;
  }
  .reveal.js-ready,
  .reveal-item.js-ready {
    opacity: 0;
    transform: translateY(36px) scale(0.98);
    filter: blur(8px);
    transition: opacity 0.75s ease, transform 0.75s ease, filter 0.75s ease;
    will-change: opacity, transform, filter;
  }
  .reveal-item.js-ready {
    transform: translateY(28px) scale(0.98);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), filter 0.7s ease;
    transition-delay: 0ms;
  }
  .reveal.js-ready.visible,
  .reveal-item.js-ready.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }

  /* Responsive */
  @media (max-width: 1100px) {
    .video-grid { grid-template-columns: repeat(2, 1fr); }
    .video-showcase-section { padding-top: 130px; }
  }

  @media (max-width: 700px) {
    .video-banner { min-height: 360px; padding: 74px 5% 56px; }
    .video-page-heading { max-width: 100%; }
    .video-page-subhead { font-size: 0.96rem; }
    .video-showcase-section { padding: 90px 4% 60px; }
    .video-grid { grid-template-columns: 1fr; gap: 16px; }
  }

  @media (max-width: 500px) {
    .pagination-container {
      gap: 8px;
      margin-top: 40px;
    }
    .pagination-container .page-item a,
    .pagination-container .page-item span,
    .pagination-container a,
    .pagination-container span {
      min-width: 38px;
      height: 38px;
      padding: 0 12px !important;
      font-size: 0.82rem !important;
    }
  }
  
  
   /* ============================================================
           NEW CONTENT BRAND SHELL LAYOUT
           ============================================================ */
        .page-content-wrapper {
            background: #fff;
            padding: 90px 5%;
        }

        .content-container {
            max-width: 1160px;
            margin: 0 auto;
        }

        .editorial-block {
            margin-bottom: 70px;
        }

        .editorial-block h2 {
            font-family: 'Big Shoulders Display', sans-serif;
            font-size: 2.4rem;
            font-weight: 800;
            color: var(--ink);
            text-transform: uppercase;
            letter-spacing: 0.01em;
            margin-bottom: 22px;
            border-bottom: 1px solid var(--paper-line);
            padding-bottom: 12px;
        }

        .editorial-block p {
            font-size: 1rem;
            line-height: 1.8;
            color: var(--ink-soft);
            margin-bottom: 20px;
            text-align: justify;
        }

        .editorial-block p.highlight-intro {
            font-size: 1.1rem;
            font-weight: 500;
            color: var(--ink);
        }

        /* Twin Columns Configuration */
        .grid-split-2x {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            margin-bottom: 70px;
            align-items: start;
        }

        /* Minimal Accent Lists */
        .accent-card {
            background: var(--cream);
            border: 1px solid var(--paper-line);
            border-radius: 12px;
            padding: 34px;
        }

        .accent-card h3 {
            font-family: 'Big Shoulders Display', sans-serif;
            font-size: 1.6rem;
            color: var(--ink);
            text-transform: uppercase;
            margin-bottom: 20px;
        }

        .panel-list {
            list-style: none;
            display: grid;
            gap: 12px;
        }

        .panel-list li {
            position: relative;
            background: #fff;
            border: 1px solid var(--paper-line);
            border-radius: 6px;
            padding: 12px 16px 12px 40px;
            font-weight: 600;
            color: var(--ink);
            font-size: 0.95rem;
        }

        .panel-list li::before {
            content: '✓';
            position: absolute;
            left: 16px;
            color: var(--red);
            font-weight: 900;
        }

        /* Multi-grid Benefits System */
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-bottom: 80px;
        }

        .benefit-node {
            background: #fff;
            border: 1px solid var(--paper-line);
            border-top: 3px solid var(--red);
            border-radius: 8px;
            padding: 24px 20px;
            text-align: center;
        }

        .benefit-node h4 {
            font-family: 'Big Shoulders Display', sans-serif;
            font-size: 1.3rem;
            font-weight: 800;
            color: var(--ink);
            text-transform: uppercase;
            margin-bottom: 8px;
        }

        .benefit-node p {
            font-size: 0.88rem;
            line-height: 1.6;
            color: var(--ink-soft);
        }

        /* FAQ System Accordion Base Styling */
        .faq-section {
            background: var(--cream);
            border: 1px solid var(--paper-line);
            border-radius: 16px;
            padding: 50px 40px;
            margin-bottom: 80px;
        }

        .faq-grid {
            display: grid;
            gap: 16px;
            margin-top: 30px;
        }

        .faq-item {
            background: #fff;
            border: 1px solid var(--paper-line);
            border-radius: 8px;
            padding: 24px;
        }

        .faq-item h3 {
            font-family: 'Inter', sans-serif;
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--ink);
            margin-bottom: 10px;
            display: flex;
            gap: 10px;
        }

        .faq-item h3 span {
            color: var(--red);
        }

        .faq-item p {
            font-size: 0.95rem;
            line-height: 1.7;
            color: var(--ink-soft);
            padding-left: 24px;
        }

        /* Footer Contact Panel mapping */
        .contact-panel {
            background: var(--ink);
            color: #fff;
            border-radius: 16px;
            padding: 50px;
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 40px;
            align-items: center;
        }

        .contact-meta h2 {
            font-family: 'Big Shoulders Display', sans-serif;
            font-size: 2.4rem;
            color: var(--veneer);
            text-transform: uppercase;
            margin-bottom: 14px;
        }

        .contact-meta p {
            color: #bdb3a3;
            line-height: 1.7;
            font-size: 0.95rem;
        }

        .contact-details-box {
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 12px;
            padding: 30px;
            display: grid;
            gap: 20px;
        }

        .contact-row {
            display: flex;
            gap: 14px;
            align-items: flex-start;
        }

        .contact-row .icon-wrapper {
            font-family: 'IBM Plex Mono', monospace;
            font-size: 0.8rem;
            color: var(--red);
            background: rgba(228,33,44,0.12);
            border: 1px solid rgba(228,33,44,0.2);
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex: none;
        }

        .contact-row div h5 {
            font-family: 'IBM Plex Mono', monospace;
            font-size: 0.72rem;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--veneer);
            margin-bottom: 4px;
        }

        .contact-row div p {
            font-size: 0.92rem;
            line-height: 1.5;
            color: #f5e7d0;
        }

        /* ============================================================
           ANIMATION UTILITIES (Scroll Reveal System)
           ============================================================ */
        .reveal {
            opacity: 0;
            transform: translateY(36px) scale(0.98);
            filter: blur(8px);
            transition: opacity 0.75s ease, transform 0.75s ease, filter 0.75s ease;
            will-change: opacity, transform, filter;
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0) scale(1);
            filter: blur(0);
        }

        .reveal-item {
            opacity: 0;
            transform: translateY(28px) scale(0.98);
            filter: blur(8px);
            transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), filter 0.7s ease;
            will-change: opacity, transform, filter;
        }

        .reveal-item.visible {
            opacity: 1;
            transform: translateY(0) scale(1);
            filter: blur(0);
        }

        @media (max-width: 960px) {
            .grid-split-2x, .contact-panel { grid-template-columns: 1fr; gap: 30px; }
            .benefits-grid { grid-template-columns: repeat(2, 1fr); }
            .page-content-wrapper { padding: 60px 5%; }
            .contact-panel { padding: 34px; }
        }

        @media (max-width: 640px) {
            .benefits-grid { grid-template-columns: 1fr; }
            .faq-section { padding: 30px 20px; }
            .hero-title { font-size: 2rem; }
        }

        @media (prefers-reduced-motion: no-preference) {
            .panel-list li, .benefit-node, .faq-item, .contact-details-box {
                transition: box-shadow 0.25s ease, transform 0.25s ease;
            }
            .panel-list li:hover { transform: translateX(4px); }
            .benefit-node:hover { transform: translateY(-4px); box-shadow: 0 12px 24px rgba(0,0,0,0.05); }
            .faq-item:hover { box-shadow: 0 8px 20px rgba(0,0,0,0.03); }
        }
        
        
                /* ===== Design Strip Divider ===== */
        .veneer-strip {
            height: 10px;
            display: flex;
        }

        .veneer-strip span {
            flex: 1;
        }
        .veneer-strip span:nth-child(1) { background: var(--red); }
        .veneer-strip span:nth-child(2) { background: var(--ink); }
        .veneer-strip span:nth-child(3) { background: var(--veneer); }
        .veneer-strip span:nth-child(4) { background: var(--ink); }
        .veneer-strip span:nth-child(5) { background: var(--red); }

        /* ============================================================
           WHOLESALE SUPPLIER CONTENT LAYOUT
           ============================================================ */
        .page-content-wrapper {
            background: #fff;
            padding: 90px 5%;
        }

        .content-container {
            max-width: 1160px;
            margin: 0 auto;
        }

        .editorial-block {
            margin-bottom: 70px;
        }

        .editorial-block h2 {
            font-family: 'Big Shoulders Display', sans-serif;
            font-size: 2.4rem;
            font-weight: 800;
            color: var(--ink);
            text-transform: uppercase;
            letter-spacing: 0.01em;
            margin-bottom: 22px;
            border-bottom: 1px solid var(--paper-line);
            padding-bottom: 12px;
        }

        .editorial-block p {
            font-size: 1rem;
            line-height: 1.8;
            color: var(--ink-soft);
            margin-bottom: 20px;
            text-align: justify;
        }

        .editorial-block p.highlight-intro {
            font-size: 1.1rem;
            font-weight: 500;
            color: var(--ink);
        }

        /* Dual Columns Matrix Panels */
        .grid-split-2x {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            margin-bottom: 70px;
            align-items: start;
        }

        .accent-card {
            background: var(--cream);
            border: 1px solid var(--paper-line);
            border-radius: 12px;
            padding: 34px;
        }

        .accent-card h3 {
            font-family: 'Big Shoulders Display', sans-serif;
            font-size: 1.6rem;
            color: var(--ink);
            text-transform: uppercase;
            margin-bottom: 20px;
        }

        .panel-list {
            list-style: none;
            display: grid;
            gap: 12px;
        }

        .panel-list li {
            position: relative;
            background: #fff;
            border: 1px solid var(--paper-line);
            border-radius: 6px;
            padding: 12px 16px 12px 40px;
            font-weight: 600;
            color: var(--ink);
            font-size: 0.95rem;
        }

        .panel-list li::before {
            content: '✓';
            position: absolute;
            left: 16px;
            color: var(--red);
            font-weight: 900;
        }

        /* Adaptive Grid Application Layout */
        .applications-section {
            background: var(--ink);
            color: #fff;
            border-radius: 16px;
            padding: 50px 40px;
            margin-bottom: 70px;
        }

        .applications-section h2 {
            font-family: 'Big Shoulders Display', sans-serif;
            font-size: 2.2rem;
            text-transform: uppercase;
            color: var(--veneer);
            margin-bottom: 30px;
            text-align: center;
        }

        .apps-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }

        .app-node {
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 8px;
            padding: 18px;
            font-family: 'IBM Plex Mono', monospace;
            font-size: 0.88rem;
            text-align: center;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            color: #f5e7d0;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* FAQ Framework Base Styling */
        .faq-section {
            background: var(--cream);
            border: 1px solid var(--paper-line);
            border-radius: 16px;
            padding: 50px 40px;
            margin-bottom: 80px;
        }

        .faq-grid {
            display: grid;
            gap: 16px;
            margin-top: 30px;
        }

        .faq-item {
            background: #fff;
            border: 1px solid var(--paper-line);
            border-radius: 8px;
            padding: 24px;
        }

        .faq-item h3 {
            font-family: 'Inter', sans-serif;
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--ink);
            margin-bottom: 10px;
            display: flex;
            gap: 10px;
        }

        .faq-item h3 span {
            color: var(--red);
        }

        .faq-item p {
            font-size: 0.95rem;
            line-height: 1.7;
            color: var(--ink-soft);
            padding-left: 24px;
        }

        /* Contact Section Details Frame */
        .contact-panel {
            background: var(--ink);
            color: #fff;
            border-radius: 16px;
            padding: 50px;
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 40px;
            align-items: center;
        }

        .contact-meta h2 {
            font-family: 'Big Shoulders Display', sans-serif;
            font-size: 2.4rem;
            color: var(--veneer);
            text-transform: uppercase;
            margin-bottom: 14px;
        }

        .contact-meta p {
            color: #bdb3a3;
            line-height: 1.7;
            font-size: 0.95rem;
        }

        .contact-details-box {
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 12px;
            padding: 30px;
            display: grid;
            gap: 20px;
        }

        .contact-row {
            display: flex;
            gap: 14px;
            align-items: flex-start;
        }

        .contact-row .icon-wrapper {
            font-family: 'IBM Plex Mono', monospace;
            font-size: 0.8rem;
            color: var(--red);
            background: rgba(228,33,44,0.12);
            border: 1px solid rgba(228,33,44,0.2);
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex: none;
        }

        .contact-row div h5 {
            font-family: 'IBM Plex Mono', monospace;
            font-size: 0.72rem;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--veneer);
            margin-bottom: 4px;
        }

        .contact-row div p {
            font-size: 0.92rem;
            line-height: 1.5;
            color: #f5e7d0;
        }

        /* ============================================================
           ANIMATION UTILITIES (Scroll Reveal System)
           ============================================================ */
        .reveal {
            opacity: 0;
            transform: translateY(36px) scale(0.98);
            filter: blur(8px);
            transition: opacity 0.75s ease, transform 0.75s ease, filter 0.75s ease;
            will-change: opacity, transform, filter;
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0) scale(1);
            filter: blur(0);
        }

        .reveal-item {
            opacity: 0;
            transform: translateY(28px) scale(0.98);
            filter: blur(8px);
            transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), filter 0.7s ease;
            will-change: opacity, transform, filter;
        }

        .reveal-item.visible {
            opacity: 1;
            transform: translateY(0) scale(1);
            filter: blur(0);
        }

        @media (max-width: 960px) {
            .grid-split-2x, .contact-panel { grid-template-columns: 1fr; gap: 30px; }
            .apps-grid { grid-template-columns: repeat(2, 1fr); }
            .page-content-wrapper { padding: 60px 5%; }
            .contact-panel { padding: 34px; }
        }

        @media (max-width: 640px) {
            .apps-grid { grid-template-columns: 1fr; }
            .faq-section { padding: 30px 20px; }
            .hero-title { font-size: 2rem; }
            .applications-section { padding: 40px 20px; }
        }

        @media (prefers-reduced-motion: no-preference) {
            .panel-list li, .app-node, .faq-item, .contact-details-box {
                transition: box-shadow 0.25s ease, transform 0.25s ease;
            }
            .panel-list li:hover { transform: translateX(4px); }
            .app-node:hover { transform: scale(1.03); background: rgba(255,255,255,0.08); }
            .faq-item:hover { box-shadow: 0 8px 20px rgba(0,0,0,0.03); }
        }
        
        
         /* ===== Design Strip Divider ===== */
        .veneer-strip {
            height: 10px;
            display: flex;
        }

        .veneer-strip span {
            flex: 1;
        }
        .veneer-strip span:nth-child(1) { background: var(--red); }
        .veneer-strip span:nth-child(2) { background: var(--ink); }
        .veneer-strip span:nth-child(3) { background: var(--veneer); }
        .veneer-strip span:nth-child(4) { background: var(--ink); }
        .veneer-strip span:nth-child(5) { background: var(--red); }

        /* ============================================================
           NEEM CORE LAYOUT SYSTEM
           ============================================================ */
        .page-content-wrapper {
            background: #fff;
            padding: 90px 5%;
        }

        .content-container {
            max-width: 1160px;
            margin: 0 auto;
        }

        .editorial-block {
            margin-bottom: 70px;
        }

        .editorial-block h2 {
            font-family: 'Big Shoulders Display', sans-serif;
            font-size: 2.4rem;
            font-weight: 800;
            color: var(--ink);
            text-transform: uppercase;
            letter-spacing: 0.01em;
            margin-bottom: 22px;
            border-bottom: 1px solid var(--paper-line);
            padding-bottom: 12px;
        }

        .editorial-block p {
            font-size: 1rem;
            line-height: 1.8;
            color: var(--ink-soft);
            margin-bottom: 20px;
            text-align: justify;
        }

        .editorial-block p.highlight-intro {
            font-size: 1.1rem;
            font-weight: 500;
            color: var(--ink);
        }

        /* Dual Grid Column Layout */
        .grid-split-2x {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            margin-bottom: 70px;
            align-items: start;
        }

        .accent-card {
            background: var(--cream);
            border: 1px solid var(--paper-line);
            border-radius: 12px;
            padding: 34px;
        }

        .accent-card h3 {
            font-family: 'Big Shoulders Display', sans-serif;
            font-size: 1.6rem;
            color: var(--ink);
            text-transform: uppercase;
            margin-bottom: 20px;
        }

        .panel-list {
            list-style: none;
            display: grid;
            gap: 12px;
        }

        .panel-list li {
            position: relative;
            background: #fff;
            border: 1px solid var(--paper-line);
            border-radius: 6px;
            padding: 12px 16px 12px 40px;
            font-weight: 600;
            color: var(--ink);
            font-size: 0.95rem;
        }

        .panel-list li::before {
            content: '✓';
            position: absolute;
            left: 16px;
            color: var(--red);
            font-weight: 900;
        }

        /* Applications Grid Section Layout */
        .applications-section {
            background: var(--ink);
            color: #fff;
            border-radius: 16px;
            padding: 50px 40px;
            margin-bottom: 70px;
        }

        .applications-section h2 {
            font-family: 'Big Shoulders Display', sans-serif;
            font-size: 2.2rem;
            text-transform: uppercase;
            color: var(--veneer);
            margin-bottom: 30px;
            text-align: center;
        }

        .apps-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }

        .app-node {
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 8px;
            padding: 18px;
            font-family: 'IBM Plex Mono', monospace;
            font-size: 0.88rem;
            text-align: center;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            color: #f5e7d0;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* FAQ System Accordion Custom Modules */
        .faq-section {
            background: var(--cream);
            border: 1px solid var(--paper-line);
            border-radius: 16px;
            padding: 50px 40px;
            margin-bottom: 80px;
        }

        .faq-grid {
            display: grid;
            gap: 16px;
            margin-top: 30px;
        }

        .faq-item {
            background: #fff;
            border: 1px solid var(--paper-line);
            border-radius: 8px;
            padding: 24px;
        }

        .faq-item h3 {
            font-family: 'Inter', sans-serif;
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--ink);
            margin-bottom: 10px;
            display: flex;
            gap: 10px;
        }

        .faq-item h3 span {
            color: var(--red);
        }

        .faq-item p {
            font-size: 0.95rem;
            line-height: 1.7;
            color: var(--ink-soft);
            padding-left: 24px;
        }

        /* Contact Block Overlay Framework */
        .contact-panel {
            background: var(--ink);
            color: #fff;
            border-radius: 16px;
            padding: 50px;
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 40px;
            align-items: center;
        }

        .contact-meta h2 {
            font-family: 'Big Shoulders Display', sans-serif;
            font-size: 2.4rem;
            color: var(--veneer);
            text-transform: uppercase;
            margin-bottom: 14px;
        }

        .contact-meta p {
            color: #bdb3a3;
            line-height: 1.7;
            font-size: 0.95rem;
        }

        .contact-details-box {
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 12px;
            padding: 30px;
            display: grid;
            gap: 20px;
        }

        .contact-row {
            display: flex;
            gap: 14px;
            align-items: flex-start;
        }

        .contact-row .icon-wrapper {
            font-family: 'IBM Plex Mono', monospace;
            font-size: 0.8rem;
            color: var(--red);
            background: rgba(228,33,44,0.12);
            border: 1px solid rgba(228,33,44,0.2);
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex: none;
        }

        .contact-row div h5 {
            font-family: 'IBM Plex Mono', monospace;
            font-size: 0.72rem;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--veneer);
            margin-bottom: 4px;
        }

        .contact-row div p {
            font-size: 0.92rem;
            line-height: 1.5;
            color: #f5e7d0;
        }

        /* ============================================================
           ANIMATION UTILITIES (Scroll Reveal System)
           ============================================================ */
        .reveal {
            opacity: 0;
            transform: translateY(36px) scale(0.98);
            filter: blur(8px);
            transition: opacity 0.75s ease, transform 0.75s ease, filter 0.75s ease;
            will-change: opacity, transform, filter;
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0) scale(1);
            filter: blur(0);
        }

        .reveal-item {
            opacity: 0;
            transform: translateY(28px) scale(0.98);
            filter: blur(8px);
            transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), filter 0.7s ease;
            will-change: opacity, transform, filter;
        }

        .reveal-item.visible {
            opacity: 1;
            transform: translateY(0) scale(1);
            filter: blur(0);
        }

        @media (max-width: 960px) {
            .grid-split-2x, .contact-panel { grid-template-columns: 1fr; gap: 30px; }
            .apps-grid { grid-template-columns: repeat(2, 1fr); }
            .page-content-wrapper { padding: 60px 5%; }
            .contact-panel { padding: 34px; }
        }

        @media (max-width: 640px) {
            .apps-grid { grid-template-columns: 1fr; }
            .faq-section { padding: 30px 20px; }
            .hero-title { font-size: 2rem; }
            .applications-section { padding: 40px 20px; }
        }

        @media (prefers-reduced-motion: no-preference) {
            .panel-list li, .app-node, .faq-item, .contact-details-box {
                transition: box-shadow 0.25s ease, transform 0.25s ease;
            }
            .panel-list li:hover { transform: translateX(4px); }
            .app-node:hover { transform: scale(1.03); background: rgba(255,255,255,0.08); }
            .faq-item:hover { box-shadow: 0 8px 20px rgba(0,0,0,0.03); }
        }
        
        
        
        /* ===== Design Strip Divider ===== */
        .veneer-strip {
            height: 10px;
            display: flex;
        }

        .veneer-strip span {
            flex: 1;
        }
        .veneer-strip span:nth-child(1) { background: var(--red); }
        .veneer-strip span:nth-child(2) { background: var(--ink); }
        .veneer-strip span:nth-child(3) { background: var(--veneer); }
        .veneer-strip span:nth-child(4) { background: var(--ink); }
        .veneer-strip span:nth-child(5) { background: var(--red); }

        /* ============================================================
           WATERPROOF PROFILE CONTENT HOOK
           ============================================================ */
        .page-content-wrapper {
            background: #fff;
            padding: 90px 5%;
        }

        .content-container {
            max-width: 1160px;
            margin: 0 auto;
        }

        .editorial-block {
            margin-bottom: 70px;
        }

        .editorial-block h2 {
            font-family: 'Big Shoulders Display', sans-serif;
            font-size: 2.4rem;
            font-weight: 800;
            color: var(--ink);
            text-transform: uppercase;
            letter-spacing: 0.01em;
            margin-bottom: 22px;
            border-bottom: 1px solid var(--paper-line);
            padding-bottom: 12px;
        }

        .editorial-block p {
            font-size: 1rem;
            line-height: 1.8;
            color: var(--ink-soft);
            margin-bottom: 20px;
            text-align: justify;
        }

        .editorial-block p.highlight-intro {
            font-size: 1.1rem;
            font-weight: 500;
            color: var(--ink);
        }

        /* Dual Columns Layout Matrix Panels */
        .grid-split-2x {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            margin-bottom: 70px;
            align-items: start;
        }

        .accent-card {
            background: var(--cream);
            border: 1px solid var(--paper-line);
            border-radius: 12px;
            padding: 34px;
        }

        .accent-card h3 {
            font-family: 'Big Shoulders Display', sans-serif;
            font-size: 1.6rem;
            color: var(--ink);
            text-transform: uppercase;
            margin-bottom: 20px;
        }

        .panel-list {
            list-style: none;
            display: grid;
            gap: 12px;
        }

        .panel-list li {
            position: relative;
            background: #fff;
            border: 1px solid var(--paper-line);
            border-radius: 6px;
            padding: 12px 16px 12px 40px;
            font-weight: 600;
            color: var(--ink);
            font-size: 0.95rem;
        }

        .panel-list li::before {
            content: '✓';
            position: absolute;
            left: 16px;
            color: var(--red);
            font-weight: 900;
        }

        .panel-list.two-col-list {
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
        }

        /* Architectural Applications Layout Section */
        .applications-section {
            background: var(--ink);
            color: #fff;
            border-radius: 16px;
            padding: 50px 40px;
            margin-bottom: 70px;
        }

        .applications-section h2 {
            font-family: 'Big Shoulders Display', sans-serif;
            font-size: 2.2rem;
            text-transform: uppercase;
            color: var(--veneer);
            margin-bottom: 30px;
            text-align: center;
        }

        .apps-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }

        .app-node {
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 8px;
            padding: 18px;
            font-family: 'IBM Plex Mono', monospace;
            font-size: 0.88rem;
            text-align: center;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            color: #f5e7d0;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* FAQ Modular System Accordion Styles */
        .faq-section {
            background: var(--cream);
            border: 1px solid var(--paper-line);
            border-radius: 16px;
            padding: 50px 40px;
            margin-bottom: 80px;
        }

        .faq-grid {
            display: grid;
            gap: 16px;
            margin-top: 30px;
        }

        .faq-item {
            background: #fff;
            border: 1px solid var(--paper-line);
            border-radius: 8px;
            padding: 24px;
        }

        .faq-item h3 {
            font-family: 'Inter', sans-serif;
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--ink);
            margin-bottom: 10px;
            display: flex;
            gap: 10px;
        }

        .faq-item h3 span {
            color: var(--red);
        }

        .faq-item p {
            font-size: 0.95rem;
            line-height: 1.7;
            color: var(--ink-soft);
            padding-left: 24px;
        }

        /* Professional Contact Section Frame */
        .contact-panel {
            background: var(--ink);
            color: #fff;
            border-radius: 16px;
            padding: 50px;
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 40px;
            align-items: center;
        }

        .contact-meta h2 {
            font-family: 'Big Shoulders Display', sans-serif;
            font-size: 2.4rem;
            color: var(--veneer);
            text-transform: uppercase;
            margin-bottom: 14px;
        }

        .contact-meta p {
            color: #bdb3a3;
            line-height: 1.7;
            font-size: 0.95rem;
        }

        .contact-details-box {
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 12px;
            padding: 30px;
            display: grid;
            gap: 20px;
        }

        .contact-row {
            display: flex;
            gap: 14px;
            align-items: flex-start;
        }

        .contact-row .icon-wrapper {
            font-family: 'IBM Plex Mono', monospace;
            font-size: 0.8rem;
            color: var(--red);
            background: rgba(228,33,44,0.12);
            border: 1px solid rgba(228,33,44,0.2);
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex: none;
        }

        .contact-row div h5 {
            font-family: 'IBM Plex Mono', monospace;
            font-size: 0.72rem;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--veneer);
            margin-bottom: 4px;
        }

        .contact-row div p {
            font-size: 0.92rem;
            line-height: 1.5;
            color: #f5e7d0;
        }

        /* ============================================================
           ANIMATION UTILITIES (Scroll Reveal System)
           ============================================================ */
        .reveal {
            opacity: 0;
            transform: translateY(36px) scale(0.98);
            filter: blur(8px);
            transition: opacity 0.75s ease, transform 0.75s ease, filter 0.75s ease;
            will-change: opacity, transform, filter;
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0) scale(1);
            filter: blur(0);
        }

        .reveal-item {
            opacity: 0;
            transform: translateY(28px) scale(0.98);
            filter: blur(8px);
            transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), filter 0.7s ease;
            will-change: opacity, transform, filter;
        }

        .reveal-item.visible {
            opacity: 1;
            transform: translateY(0) scale(1);
            filter: blur(0);
        }

        @media (max-width: 960px) {
            .grid-split-2x, .contact-panel { grid-template-columns: 1fr; gap: 30px; }
            .apps-grid { grid-template-columns: repeat(2, 1fr); }
            .panel-list.two-col-list { grid-template-columns: 1fr; }
            .page-content-wrapper { padding: 60px 5%; }
            .contact-panel { padding: 34px; }
        }

        @media (max-width: 640px) {
            .apps-grid { grid-template-columns: 1fr; }
            .faq-section { padding: 30px 20px; }
            .hero-title { font-size: 2rem; }
            .applications-section { padding: 40px 20px; }
        }

        @media (prefers-reduced-motion: no-preference) {
            .panel-list li, .app-node, .faq-item, .contact-details-box {
                transition: box-shadow 0.25s ease, transform 0.25s ease;
            }
            .panel-list li:hover { transform: translateX(4px); }
            .app-node:hover { transform: scale(1.03); background: rgba(255,255,255,0.08); }
            .faq-item:hover { box-shadow: 0 8px 20px rgba(0,0,0,0.03); }
        }

    
  
