:root{
    --ink:#123255;
    --navy:#1E4A78;
    --navy-2:#2A5D93;
    --blue:#2E7BD6;
    --blue-bright:#4FA3E8;
    --sky:#8AD1F2;
    --earth:#D98A4A;
    --earth-bright:#EBA868;
    --foam:#FAFCFE;
    --sand:#F1EBDF;
    --ink-text:#16324F;
    --slate:#5F7186;
    --line: rgba(255,255,255,0.13);
    --line-dark: rgba(22,50,79,0.10);
  }
  *{margin:0;padding:0;box-sizing:border-box;}
  html{scroll-behavior:smooth;}
  body{
    background:var(--foam);
    color:var(--ink-text);
    font-family:'Inter',sans-serif;
    overflow-x:hidden;
    cursor:none;
  }
  @media (hover:none), (pointer:coarse){
    body{cursor:auto;}
  }
  h1,h2,h3,.display{font-family:'Space Grotesk',sans-serif;}
  .mono{font-family:'IBM Plex Mono',monospace;}
  a{color:inherit;text-decoration:none;}
  img{max-width:100%;display:block;}
  .wrap{max-width:1240px;margin:0 auto;padding:0 32px;}
  ::selection{background:var(--earth);color:var(--ink);}

  /* ---------- custom cursor ---------- */
  .cursor-dot, .cursor-ring{
    position:fixed;top:0;left:0;pointer-events:none;z-index:9999;
    transform:translate(-50%,-50%);
  }
  .cursor-dot{
    width:6px;height:6px;border-radius:50%;background:var(--earth-bright);
  }
  .cursor-ring{
    width:34px;height:34px;border-radius:50%;
    border:1.5px solid var(--sky);
    transition:width .18s ease, height .18s ease, border-color .18s ease, background .18s ease;
  }
  .cursor-ring.is-active{
    width:58px;height:58px;
    background:rgba(95,184,232,0.12);
    border-color:var(--earth-bright);
  }
  @media (hover:none), (pointer:coarse){
    .cursor-dot,.cursor-ring{display:none;}
  }

  /* ---------- loader ---------- */
  #loader{
    position:fixed;inset:0;background:var(--ink);z-index:10000;
    display:flex;flex-direction:column;align-items:center;justify-content:center;
    transition:opacity .6s ease, visibility .6s ease;
  }
  #loader.done{opacity:0;visibility:hidden;}
  .loader-rig{position:relative;width:64px;height:120px;margin-bottom:28px;}
  .loader-shaft{
    position:absolute;left:50%;top:0;bottom:0;width:2px;
    background:rgba(255,255,255,0.15);transform:translateX(-50%);
  }
  .loader-bit{
    position:absolute;left:50%;top:0;width:22px;height:22px;
    transform:translate(-50%,0) rotate(0deg);
    animation:loaderSpin .6s linear infinite;
  }
  .loader-bit svg{width:100%;height:100%;display:block;}
  @keyframes loaderSpin{to{transform:translate(-50%,0) rotate(360deg);}}
  .loader-label{
    color:var(--sky);letter-spacing:.14em;font-size:11px;text-transform:uppercase;
    margin-bottom:8px;
  }
  .loader-depth{
    color:var(--foam);font-size:28px;letter-spacing:.02em;
  }
  .loader-depth span{color:var(--earth-bright);}

  /* ---------- depth gauge (signature element) ---------- */
  #depth-gauge{
    position:fixed;left:22px;top:50%;transform:translateY(-50%);
    height:min(56vh,480px);width:34px;z-index:500;
    display:none;
    align-items:center;justify-content:center;
  }
  #depth-gauge.visible{display:flex;}
  .gauge-track{
    position:relative;width:2px;height:100%;background:var(--line);
    border-radius:2px;
  }
  .gauge-fill{
    position:absolute;bottom:0;left:0;width:100%;height:0%;
    background:linear-gradient(to top, var(--blue-bright), var(--sky));
    border-radius:2px;transition:height .05s linear;
  }
  .gauge-marker{
    position:absolute;left:50%;top:0%;transform:translate(-50%,-50%);
    width:18px;height:18px;
  }
  .gauge-marker svg{width:100%;height:100%;}
  .gauge-readout{
    position:absolute;left:24px;top:0%;transform:translateY(-50%);
    white-space:nowrap;font-size:11px;color:var(--navy);
    background:rgba(245,249,252,0.92);padding:3px 7px;border-radius:4px;
    border:1px solid var(--line-dark);
  }

  /* ---------- nav ---------- */
  header{
    position:fixed;top:0;left:0;right:0;z-index:600;
    padding:16px 0;transition:padding .35s ease, box-shadow .35s ease;
    background:rgba(250,252,254,0.88);backdrop-filter:blur(12px);
    border-bottom:1px solid var(--line-dark);
  }
  header.scrolled{
    padding:11px 0;box-shadow:0 6px 24px rgba(22,50,79,0.06);
  }
  nav{display:flex;align-items:center;justify-content:space-between;}
  .logo{
    display:flex;align-items:center;gap:0;
  }
  .logo img{height:38px;width:auto;display:block;transition:height .3s ease;}
  .logo-mark{margin-right:8px;}
  header.scrolled .logo img{height:32px;}
  .nav-links{display:flex;gap:36px;list-style:none;}
  .nav-links a{
    color:var(--slate);font-size:14.5px;font-weight:500;
    position:relative;padding:4px 0;transition:color .2s ease;
  }
  .nav-links a:hover{color:var(--ink-text);}
  .nav-links a::after{
    content:'';position:absolute;left:0;bottom:0;height:1px;width:0;
    background:var(--earth);transition:width .25s ease;
  }
  .nav-links a:hover::after{width:100%;}
  .nav-right{display:flex;align-items:center;gap:22px;}
  .cart-icon{position:relative;color:var(--ink-text);}
  .cart-count{
    position:absolute;top:-8px;right:-10px;background:var(--earth-bright);
    color:var(--ink);font-size:10px;font-weight:700;width:16px;height:16px;
    border-radius:50%;display:flex;align-items:center;justify-content:center;
  }
  .btn{
    display:inline-flex;align-items:center;gap:8px;
    padding:12px 22px;border-radius:3px;font-size:14px;font-weight:600;
    border:1px solid transparent;transition:transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
    cursor:none;
  }
  @media (hover:none), (pointer:coarse){.btn{cursor:pointer;}}
  .btn-primary{background:var(--earth-bright);color:var(--ink);}
  .btn-primary:hover{background:var(--earth);transform:translateY(-1px);}
  .btn-ghost{border-color:rgba(245,249,252,0.3);color:var(--foam);}
  .btn-ghost:hover{border-color:var(--foam);}
  .btn-outline-dark{border-color:rgba(11,31,51,0.25);color:var(--ink-text);}
  .btn-outline-dark:hover{border-color:var(--ink-text);}
  .btn-sm{padding:9px 16px;font-size:13px;}

  /* ---------- hero ---------- */
  #hero{
    position:relative;min-height:100vh;background:var(--ink);
    display:flex;align-items:center;overflow:hidden;
    padding-top:120px;padding-bottom:60px;
  }
  #hero-canvas{
    position:absolute;top:0;right:0;bottom:0;width:58%;z-index:1;
    background:url('../assets/photos/hero-bg.jpg') center/cover no-repeat;
  }
  #hero-canvas::after{
    content:'';position:absolute;inset:0;
    background:linear-gradient(90deg, var(--ink) 0%, rgba(10,20,33,0.45) 30%, rgba(10,20,33,0.05) 65%, transparent 100%);
  }
  .hero-inner{position:relative;z-index:2;display:grid;grid-template-columns:1fr;gap:20px;}
  .eyebrow{
    display:inline-flex;align-items:center;gap:8px;
    color:var(--sky);font-size:12px;letter-spacing:.16em;text-transform:uppercase;
    margin-bottom:22px;font-weight:600;
  }
  .eyebrow::before{content:'';width:20px;height:1px;background:var(--sky);}
  .hero-title{
    font-size:clamp(38px,5.2vw,64px);line-height:1.04;color:var(--foam);
    font-weight:600;max-width:640px;letter-spacing:-0.01em;
  }
  .hero-title em{font-style:normal;color:var(--sky);}
  .hero-sub{
    margin-top:22px;max-width:460px;font-size:16.5px;line-height:1.65;
    color:rgba(245,249,252,0.68);
  }
  .hero-ctas{display:flex;gap:14px;margin-top:36px;flex-wrap:wrap;}
  .hero-stats{
    display:flex;gap:44px;margin-top:64px;flex-wrap:wrap;
    padding-top:32px;border-top:1px solid var(--line);max-width:560px;
  }
  .stat-num{
    font-family:'IBM Plex Mono',monospace;font-size:26px;color:var(--foam);font-weight:600;
  }
  .stat-label{font-size:12px;color:rgba(245,249,252,0.5);margin-top:4px;letter-spacing:.03em;}

  /* ---------- section shells ---------- */
  section{padding:110px 0;position:relative;}
  .section-head{max-width:600px;margin-bottom:56px;}
  .section-eyebrow{
    font-size:12px;letter-spacing:.16em;text-transform:uppercase;color:var(--earth);
    font-weight:600;margin-bottom:14px;display:block;
  }
  .section-title{font-size:clamp(28px,3.4vw,40px);font-weight:600;line-height:1.14;color:var(--ink-text);}
  .section-sub{margin-top:14px;color:var(--slate);font-size:15.5px;line-height:1.6;}

  /* ---------- services ---------- */
  #services{background:var(--foam);}
  .services-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:2px;background:var(--line-dark);border:1px solid var(--line-dark);}
  .service-card{
    background:var(--foam);padding:40px 34px;transition:background .25s ease;
  }
  .service-card:hover{background:#fff;}
  .service-num{font-family:'IBM Plex Mono',monospace;color:var(--earth);font-size:13px;margin-bottom:22px;}
  .service-card h3{font-size:21px;margin-bottom:12px;color:var(--ink-text);font-weight:600;}
  .service-card p{color:var(--slate);font-size:14.5px;line-height:1.65;margin-bottom:20px;}
  .service-link{font-size:13.5px;font-weight:600;color:var(--blue);display:inline-flex;align-items:center;gap:6px;}
  .service-link svg{width:14px;height:14px;transition:transform .2s ease;}
  .service-card:hover .service-link svg{transform:translateX(3px);}

  /* ---------- process ---------- */
  #process{background:var(--navy);}
  #process .section-title, #process h2{color:var(--foam);}
  #process .section-sub{color:rgba(245,249,252,0.6);}
  #process .section-eyebrow{color:var(--sky);}
  .process-list{display:flex;flex-direction:column;}
  .process-row{
    display:grid;grid-template-columns:90px 1fr 240px;gap:28px;align-items:start;
    padding:30px 0;border-top:1px solid var(--line);
  }
  .process-row:last-child{border-bottom:1px solid var(--line);}
  .process-index{font-family:'IBM Plex Mono',monospace;color:var(--sky);font-size:14px;padding-top:4px;}
  .process-body h3{color:var(--foam);font-size:19px;font-weight:600;margin-bottom:8px;}
  .process-body p{color:rgba(245,249,252,0.6);font-size:14.5px;line-height:1.6;max-width:480px;}
  .process-depth{
    font-family:'IBM Plex Mono',monospace;font-size:13px;color:var(--sky);
    text-align:right;padding-top:4px;
  }
  .process-depth span{display:block;color:rgba(245,249,252,0.4);font-size:11px;margin-top:2px;}

  /* ---------- shop / featured products ---------- */
  #shop{background:var(--foam);}
  .products-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:26px;}
  .product-card{
    border:1px solid var(--line-dark);border-radius:4px;overflow:hidden;background:#fff;
    transition:border-color .2s ease, transform .2s ease;
  }
  .product-card:hover{border-color:var(--blue);transform:translateY(-3px);}
  .product-img{
    aspect-ratio:1/1;background:linear-gradient(135deg,#E4EDF4,#D2E1EC);
    display:flex;align-items:center;justify-content:center;color:var(--slate);
  }
  .product-img svg{width:40%;height:40%;opacity:.5;}
  .product-body{padding:18px;}
  .product-cat{font-size:11px;color:var(--earth);text-transform:uppercase;letter-spacing:.08em;font-weight:600;}
  .product-name{font-size:15.5px;font-weight:600;margin:8px 0 10px;color:var(--ink-text);}
  .product-foot{display:flex;align-items:center;justify-content:space-between;}
  .product-price{font-family:'IBM Plex Mono',monospace;font-size:16px;color:var(--ink-text);}
  .add-cart{
    width:34px;height:34px;border-radius:50%;background:var(--navy);color:var(--foam);
    display:flex;align-items:center;justify-content:center;transition:background .2s ease;
  }
  .add-cart:hover{background:var(--blue);}
  .add-cart svg{width:15px;height:15px;}
  .shop-foot{text-align:center;margin-top:48px;}

  /* ---------- trust ---------- */
  #trust{background:var(--sand);}
  .trust-grid{display:grid;grid-template-columns:1.1fr .9fr;gap:64px;align-items:center;}
  .trust-list{display:flex;flex-direction:column;gap:22px;margin-top:28px;}
  .trust-item{display:flex;gap:16px;align-items:flex-start;}
  .trust-icon{
    width:38px;height:38px;border-radius:50%;background:rgba(28,111,209,0.1);
    display:flex;align-items:center;justify-content:center;flex-shrink:0;color:var(--blue);
  }
  .trust-icon svg{width:18px;height:18px;}
  .trust-item h4{font-size:15.5px;font-weight:600;margin-bottom:4px;}
  .trust-item p{font-size:13.5px;color:var(--slate);line-height:1.55;}
  .testimonial{
    background:var(--navy);color:var(--foam);padding:40px;border-radius:4px;position:relative;
  }
  .testimonial-quote{font-family:'Space Grotesk',sans-serif;font-size:19px;line-height:1.5;margin-bottom:24px;}
  .testimonial-author{display:flex;align-items:center;gap:12px;}
  .testimonial-avatar{width:44px;height:44px;border-radius:50%;object-fit:cover;flex-shrink:0;}
  .testimonial-name{font-size:13.5px;font-weight:600;color:var(--sky);}
  .testimonial-role{font-size:12px;color:rgba(245,249,252,0.5);margin-top:2px;}

  /* ---------- CTA banner ---------- */
  #cta-banner{
    background:linear-gradient(120deg,var(--navy),var(--ink));
    padding:90px 0;text-align:center;
  }
  #cta-banner h2{color:var(--foam);font-size:clamp(26px,3.6vw,38px);max-width:640px;margin:0 auto 16px;}
  #cta-banner p{color:rgba(245,249,252,0.6);max-width:480px;margin:0 auto 34px;font-size:15.5px;}
  .cta-banner-actions{display:flex;gap:14px;justify-content:center;flex-wrap:wrap;}

  /* ---------- footer ---------- */
  footer{background:var(--ink);color:rgba(245,249,252,0.7);padding:72px 0 28px;}
  .footer-grid{display:grid;grid-template-columns:1.4fr 1fr 1fr 1fr;gap:40px;margin-bottom:56px;}
  .footer-col h5{color:var(--foam);font-size:13px;letter-spacing:.08em;text-transform:uppercase;margin-bottom:18px;}
  .footer-col ul{list-style:none;display:flex;flex-direction:column;gap:11px;}
  .footer-col a{font-size:14px;color:rgba(245,249,252,0.65);transition:color .2s ease;}
  .footer-col a:hover{color:var(--sky);}
  .footer-brand p{font-size:14px;line-height:1.65;max-width:280px;margin-top:14px;color:rgba(245,249,252,0.55);}
  .whatsapp-btn{
    margin-top:20px;display:inline-flex;align-items:center;gap:8px;
    background:rgba(95,184,232,0.1);border:1px solid rgba(95,184,232,0.3);
    padding:10px 16px;border-radius:3px;font-size:13.5px;color:var(--sky);font-weight:600;
  }
  .whatsapp-btn svg{width:16px;height:16px;}
  .footer-bottom{
    border-top:1px solid var(--line);padding-top:24px;
    display:flex;justify-content:space-between;flex-wrap:wrap;gap:12px;
    font-size:12.5px;color:rgba(245,249,252,0.4);
  }
  .footer-bottom a{color:rgba(245,249,252,0.4);}
  .footer-bottom a:hover{color:var(--sky);}

  /* ---------- responsive ---------- */
  @media (max-width:980px){
    .services-grid, .products-grid{grid-template-columns:repeat(2,1fr);}
    .trust-grid{grid-template-columns:1fr;}
    .footer-grid{grid-template-columns:1fr 1fr;}
    #hero-canvas{width:100%;opacity:.18;}
    .process-row{grid-template-columns:50px 1fr;}
    .process-depth{display:none;}
    #depth-gauge{display:none!important;}
  }
  @media (max-width:640px){
    .nav-links{display:none;}
    .services-grid, .products-grid{grid-template-columns:1fr;}
    .footer-grid{grid-template-columns:1fr;gap:32px;}
    .hero-stats{gap:28px;}
  }

  @media (prefers-reduced-motion: reduce){
    html{scroll-behavior:auto;}
    .loader-bit{animation:none;}
  }

/* ---------------- page banner (inner pages) ---------------- */
.page-banner{
  background:linear-gradient(120deg, rgba(10,20,33,0.94), rgba(11,31,51,0.88)), url('../assets/photos/page-banner-bg.jpg') center 30%/cover no-repeat;
  padding:150px 0 64px;position:relative;overflow:hidden;
}
.page-banner::after{
  content:'';position:absolute;right:-120px;top:-120px;width:420px;height:420px;
  border-radius:50%;background:radial-gradient(circle, rgba(138,209,242,0.12), transparent 70%);
}
.breadcrumb{
  display:flex;gap:8px;align-items:center;font-size:13px;color:rgba(250,252,254,0.5);
  margin-bottom:18px;
}
.breadcrumb a{color:rgba(250,252,254,0.7);}
.breadcrumb a:hover{color:var(--sky);}
.page-banner h1{color:var(--foam);font-size:clamp(30px,4vw,46px);font-weight:600;max-width:640px;}
.page-banner p{color:rgba(250,252,254,0.62);margin-top:14px;max-width:520px;font-size:15.5px;line-height:1.6;}

/* ---------------- service detail blocks ---------------- */
.service-detail{
  display:grid;grid-template-columns:1fr 1fr;gap:64px;align-items:start;
  padding:64px 0;border-top:1px solid var(--line-dark);
}
.service-detail:first-of-type{border-top:none;}
.service-detail-media{
  aspect-ratio:4/3;border-radius:4px;overflow:hidden;
  background:linear-gradient(135deg,#E4EDF4,#D2E1EC);
  display:flex;align-items:center;justify-content:center;color:var(--slate);
}
.service-detail-media svg{width:30%;height:30%;opacity:.45;}
.service-detail-media img{width:100%;height:100%;object-fit:cover;}
.service-detail-tag{
  font-size:12px;letter-spacing:.12em;text-transform:uppercase;color:var(--earth);
  font-weight:600;margin-bottom:12px;
}
.service-detail h3{font-size:26px;font-weight:600;margin-bottom:14px;}
.service-detail p{color:var(--slate);font-size:15px;line-height:1.7;margin-bottom:22px;}
.service-feature-list{display:flex;flex-direction:column;gap:11px;margin-bottom:26px;}
.service-feature-list li{
  list-style:none;display:flex;gap:10px;align-items:flex-start;font-size:14.5px;color:var(--ink-text);
}
.service-feature-list svg{width:16px;height:16px;flex-shrink:0;margin-top:2px;color:var(--blue);}
.service-meta{display:flex;gap:28px;margin-bottom:26px;flex-wrap:wrap;}
.service-meta div{font-size:12px;color:var(--slate);}
.service-meta strong{display:block;font-family:'IBM Plex Mono',monospace;font-size:16px;color:var(--ink-text);margin-top:2px;}

/* ---------------- service areas ---------------- */
#areas{background:var(--sand);}
.chip-grid{display:flex;flex-wrap:wrap;gap:10px;margin-top:24px;}
.chip{
  padding:8px 16px;border-radius:20px;background:#fff;border:1px solid var(--line-dark);
  font-size:13.5px;color:var(--ink-text);font-weight:500;
}

/* ---------------- form ---------------- */
.form-card{
  background:#fff;border:1px solid var(--line-dark);border-radius:6px;padding:40px;
  max-width:640px;
}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:18px;margin-bottom:18px;}
.form-field{display:flex;flex-direction:column;gap:7px;}
.form-field.full{grid-column:1/-1;}
.form-field label{font-size:13px;font-weight:600;color:var(--ink-text);}
.form-field input, .form-field select, .form-field textarea{
  padding:12px 14px;border:1px solid var(--line-dark);border-radius:3px;
  font-family:'Inter',sans-serif;font-size:14.5px;color:var(--ink-text);background:var(--foam);
  outline:none;transition:border-color .2s ease;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus{
  border-color:var(--blue);
}
.form-field textarea{resize:vertical;min-height:100px;}
.form-submit{margin-top:6px;width:100%;justify-content:center;}

/* ---------------- shop layout ---------------- */
.shop-layout{display:grid;grid-template-columns:240px 1fr;gap:48px;align-items:start;}
.filters{position:sticky;top:110px;display:flex;flex-direction:column;gap:32px;}
.filter-group h4{font-size:13px;text-transform:uppercase;letter-spacing:.06em;color:var(--ink-text);margin-bottom:14px;}
.filter-option{
  display:flex;align-items:center;gap:10px;font-size:14px;color:var(--slate);margin-bottom:10px;
  cursor:none;
}
@media (hover:none), (pointer:coarse){.filter-option{cursor:pointer;}}
.filter-option input{accent-color:var(--blue);width:15px;height:15px;}
.shop-toolbar{
  display:flex;justify-content:space-between;align-items:center;margin-bottom:28px;
  padding-bottom:20px;border-bottom:1px solid var(--line-dark);
}
.shop-count{font-size:13.5px;color:var(--slate);}
.shop-sort select{
  border:1px solid var(--line-dark);border-radius:3px;padding:9px 14px;font-size:13.5px;
  font-family:'Inter',sans-serif;color:var(--ink-text);background:var(--foam);
}
.pagination{display:flex;justify-content:center;gap:8px;margin-top:52px;}
.page-btn{
  width:36px;height:36px;border-radius:3px;border:1px solid var(--line-dark);
  display:flex;align-items:center;justify-content:center;font-size:13.5px;color:var(--ink-text);
  font-family:'IBM Plex Mono',monospace;
}
.page-btn.active{background:var(--navy);color:var(--foam);border-color:var(--navy);}

/* ---------------- product detail page ---------------- */
.product-layout{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:start;}
.gallery-main{
  aspect-ratio:1/1;border-radius:6px;background:linear-gradient(135deg,#E4EDF4,#D2E1EC);
  display:flex;align-items:center;justify-content:center;color:var(--slate);margin-bottom:14px;
}
.gallery-main svg{width:34%;height:34%;opacity:.45;}
.gallery-thumbs{display:flex;gap:12px;}
.gallery-thumb{
  width:74px;height:74px;border-radius:4px;background:linear-gradient(135deg,#E4EDF4,#D2E1EC);
  border:2px solid transparent;display:flex;align-items:center;justify-content:center;color:var(--slate);
}
.gallery-thumb.active{border-color:var(--blue);}
.gallery-thumb svg{width:40%;height:40%;opacity:.45;}
.pd-cat{font-size:12px;color:var(--earth);text-transform:uppercase;letter-spacing:.1em;font-weight:600;margin-bottom:10px;}
.pd-title{font-size:30px;font-weight:600;margin-bottom:12px;line-height:1.15;}
.pd-price{font-family:'IBM Plex Mono',monospace;font-size:26px;color:var(--ink-text);margin-bottom:18px;}
.pd-price .old{font-size:16px;color:var(--slate);text-decoration:line-through;margin-left:10px;}
.pd-desc{color:var(--slate);font-size:14.5px;line-height:1.7;margin-bottom:26px;}
.pd-actions{display:flex;gap:12px;align-items:center;margin-bottom:28px;}
.qty-stepper{
  display:flex;align-items:center;border:1px solid var(--line-dark);border-radius:3px;overflow:hidden;
}
.qty-stepper button{
  width:38px;height:44px;background:var(--foam);color:var(--ink-text);font-size:16px;
}
.qty-stepper span{width:40px;text-align:center;font-family:'IBM Plex Mono',monospace;font-size:14.5px;}
.pd-trust{display:flex;flex-direction:column;gap:10px;margin-bottom:30px;}
.pd-trust div{display:flex;gap:10px;align-items:center;font-size:13.5px;color:var(--slate);}
.pd-trust svg{width:16px;height:16px;color:var(--blue);flex-shrink:0;}
.specs-table{width:100%;border-collapse:collapse;margin-top:16px;}
.specs-table tr{border-bottom:1px solid var(--line-dark);}
.specs-table td{padding:13px 4px;font-size:14px;}
.specs-table td:first-child{color:var(--slate);width:40%;}
.specs-table td:last-child{color:var(--ink-text);font-weight:500;font-family:'IBM Plex Mono',monospace;}
.pd-tabs{display:flex;gap:32px;border-bottom:1px solid var(--line-dark);margin:60px 0 32px;}
.pd-tab{padding-bottom:14px;font-size:14.5px;font-weight:600;color:var(--slate);border-bottom:2px solid transparent;}
.pd-tab.active{color:var(--ink-text);border-color:var(--earth);}

@media (max-width:980px){
  .service-detail, .product-layout{grid-template-columns:1fr;gap:32px;}
  .shop-layout{grid-template-columns:1fr;}
  .filters{position:static;}
  .form-row{grid-template-columns:1fr;}
}

.nav-links a.active{color:var(--ink-text);}
.nav-links a.active::after{width:100%;background:var(--earth);}

/* ---------------- about page ---------------- */
.about-story{display:grid;grid-template-columns:1fr 1fr;gap:64px;align-items:center;}
.about-story-media{
  aspect-ratio:4/3;border-radius:6px;overflow:hidden;background:linear-gradient(135deg,#E4EDF4,#D2E1EC);
  display:flex;align-items:center;justify-content:center;color:var(--slate);
}
.about-story-media svg{width:32%;height:32%;opacity:.45;}
.about-story-media img{width:100%;height:100%;object-fit:cover;}
.about-stats{
  display:grid;grid-template-columns:repeat(4,1fr);gap:2px;background:var(--line-dark);
  border:1px solid var(--line-dark);margin-top:64px;
}
.about-stat{background:var(--foam);padding:30px 24px;text-align:center;}
.about-stat .stat-num{font-size:30px;color:var(--ink-text);}
.about-stat .stat-label{margin-top:6px;}
#certs{background:var(--navy);}
#certs .section-title, #certs h2{color:var(--foam);}
#certs .section-sub{color:rgba(250,252,254,0.62);}
#certs .section-eyebrow{color:var(--sky);}
.certs-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:2px;background:var(--line);margin-top:16px;}
.cert-card{background:var(--ink);padding:32px 28px;}
.cert-card svg{width:30px;height:30px;color:var(--sky);margin-bottom:16px;}
.cert-card h4{color:var(--foam);font-size:16px;font-weight:600;margin-bottom:8px;}
.cert-card p{color:rgba(250,252,254,0.55);font-size:13.5px;line-height:1.6;}

/* ---------------- contact page ---------------- */
.contact-layout{display:grid;grid-template-columns:1.1fr .9fr;gap:56px;align-items:start;}
.contact-info-card{
  background:var(--navy);color:var(--foam);border-radius:6px;padding:40px;
  display:flex;flex-direction:column;gap:26px;
}
.contact-info-row{display:flex;gap:16px;align-items:flex-start;}
.contact-info-row .trust-icon{background:rgba(255,255,255,0.1);color:var(--sky);}
.contact-info-row h4{font-size:14.5px;font-weight:600;margin-bottom:4px;}
.contact-info-row p, .contact-info-row a{font-size:13.5px;color:rgba(250,252,254,0.68);line-height:1.6;}
.contact-info-row a:hover{color:var(--sky);}
.map-block{
  margin-top:24px;border-radius:6px;overflow:hidden;aspect-ratio:16/9;
  background:linear-gradient(135deg,#E4EDF4,#D2E1EC);
  display:flex;align-items:center;justify-content:center;color:var(--slate);font-size:13px;
}

/* ---------------- legal pages ---------------- */
.legal-content{max-width:760px;}
.legal-content .updated{font-size:13px;color:var(--slate);margin-bottom:40px;}
.legal-content h2{font-size:20px;font-weight:600;margin:40px 0 14px;color:var(--ink-text);}
.legal-content h2:first-of-type{margin-top:0;}
.legal-content p{font-size:14.5px;line-height:1.75;color:var(--slate);margin-bottom:14px;}
.legal-content ul{margin:0 0 14px 20px;}
.legal-content li{font-size:14.5px;line-height:1.75;color:var(--slate);margin-bottom:6px;}
.legal-content strong{color:var(--ink-text);}
.legal-nav{
  display:flex;gap:10px;flex-wrap:wrap;margin-bottom:48px;
}
.legal-nav a{
  padding:9px 16px;border-radius:20px;border:1px solid var(--line-dark);font-size:13px;color:var(--slate);
}
.legal-nav a.active{background:var(--navy);color:var(--foam);border-color:var(--navy);}

@media (max-width:980px){
  .about-story{grid-template-columns:1fr;}
  .about-stats, .certs-grid{grid-template-columns:repeat(2,1fr);}
  .contact-layout{grid-template-columns:1fr;}
}
