/* ============================================================
   CHIMNEY SOLUTIONS — Design System v2
   Monochrome, clean, mobile-first. Black / white / grey only —
   matches the brand mark, no added accent colour.
   Typeface: Inter throughout (one family).
   ============================================================ */

:root{
  /* Core palette — strictly monochrome */
  --ink:        #131313;   /* primary text / solid dark surfaces (buttons, footer) */
  --ink-2:      #1e1e1e;
  --white:      #ffffff;
  --paper:      #ffffff;   /* page background */
  --paper-2:    #f5f5f6;   /* soft alternating section background */
  --line:       #e4e4e6;   /* card / section borders */
  --line-soft:  #ececed;
  --text:       #16171a;
  --text-mute:  #666a70;
  --text-faint: #8b8e94;
  --text-inv:       #ffffff;
  --text-inv-mute:  #b7b8ba;
  --line-dark:  rgba(255,255,255,0.12);

  /* Type */
  --f-display: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --f-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Radii / shadow */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 14px;
  --shadow-1: 0 1px 3px rgba(15,15,15,0.06);
  --shadow-2: 0 16px 40px -16px rgba(15,15,15,0.28);

  --container: 1180px;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  font-family:var(--f-body);
  background:var(--paper);
  color:var(--text);
  -webkit-font-smoothing:antialiased;
  line-height:1.6;
  font-size:16px;
}
img{max-width:100%;display:block;}
a{color:inherit;text-decoration:none;}
ul{margin:0;padding:0;}
h1,h2,h3,h4{
  font-family:var(--f-display);
  margin:0 0 .5em;
  line-height:1.2;
  letter-spacing:-0.015em;
  color:var(--text);
  font-weight:700;
}
p{margin:0 0 1em;color:var(--text-mute);}
button{font-family:inherit;}

.wrap{
  max-width:var(--container);
  margin:0 auto;
  padding:0 24px;
}
section{padding:72px 0;}
@media (max-width:900px){ section{padding:52px 0;} }
@media (max-width:560px){ section{padding:40px 0;} }

.eyebrow{
  font-family:var(--f-body);
  font-size:13.5px;
  font-weight:600;
  color:var(--text-mute);
  margin-bottom:10px;
}
section.on-dark .eyebrow{color:var(--text-inv-mute);}

.lede{
  font-size:17px;
  max-width:560px;
  color:var(--text-mute);
}
.on-dark .lede{color:var(--text-inv-mute);}

/* ============ Buttons ============ */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  padding:14px 24px;
  border-radius:8px;
  font-weight:600;
  font-size:15px;
  border:1px solid transparent;
  cursor:pointer;
  transition:opacity .15s ease, background .15s ease, border-color .15s ease;
  white-space:nowrap;
}
.btn:active{opacity:.85;}
.btn-primary,.btn-brass{background:var(--ink);color:var(--white);}
.btn-primary:hover,.btn-brass:hover{background:#000;}
.btn-outline{background:transparent;border-color:var(--line);color:var(--text);}
.btn-outline:hover{border-color:var(--text);}
.on-dark .btn-outline{border-color:var(--line-dark);color:var(--text-inv);}
.on-dark .btn-outline:hover{border-color:var(--text-inv);}
.btn-white{background:var(--white);color:var(--ink);border-color:var(--line);}
.btn-white:hover{background:var(--paper-2);}
.btn-sm{padding:9px 16px;font-size:13.5px;border-radius:7px;}
.btn-block{width:100%;}
.btn svg{width:18px;height:18px;flex:none;}

/* ============ HEADER ============ */
.site-header{
  position:sticky;top:0;z-index:1000;
  background:rgba(255,255,255,0.96);
  backdrop-filter:blur(8px);
  border-bottom:1px solid var(--line);
}
.site-header .wrap{
  display:flex;align-items:center;justify-content:space-between;
  height:72px;
}
.brand{display:flex;align-items:center;gap:11px;}
.brand img{height:40px;width:40px;border-radius:8px;border:1px solid var(--line);}
.brand-word{font-family:var(--f-display);font-weight:700;color:var(--text);font-size:17px;line-height:1.15;}
.brand-word small{display:block;font-family:var(--f-body);font-weight:500;font-size:10px;letter-spacing:.05em;color:var(--text-faint);}

.main-nav{display:flex;align-items:center;gap:32px;}
.main-nav a{
  color:var(--text-mute);font-size:14.5px;font-weight:500;
  position:relative;padding:6px 0;transition:color .15s;
}
.main-nav a:hover{color:var(--text);}
.main-nav a.active{color:var(--text);font-weight:600;}
.main-nav a.active::after{
  content:"";position:absolute;left:0;right:0;bottom:-2px;height:2px;background:var(--ink);
}

.header-actions{display:flex;align-items:center;gap:12px;}
.icon-btn{
  position:relative;
  width:40px;height:40px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  border:1px solid var(--line);color:var(--text);
  cursor:pointer;background:transparent;
}
.icon-btn svg{width:18px;height:18px;}
.cart-count{
  position:absolute;top:-4px;right:-4px;
  min-width:17px;height:17px;padding:0 4px;border-radius:999px;
  background:var(--ink);color:var(--white);
  font-size:10px;font-weight:700;display:flex;align-items:center;justify-content:center;
}
.cart-count[data-empty="true"]{display:none;}

.nav-toggle{display:none;width:40px;height:40px;border:1px solid var(--line);border-radius:50%;background:none;color:var(--text);align-items:center;justify-content:center;cursor:pointer;}
.nav-toggle svg{width:19px;height:19px;}

@media (max-width:920px){
  /* backdrop-filter on the header creates a containing block for fixed
     descendants, which traps the full-screen mobile menu inside the
     72px header bar instead of the viewport — making it look like a
     transparent sliver. Removing the filter only on mobile fixes it. */
  .site-header{backdrop-filter:none;background:var(--white);}
  .main-nav{
    position:fixed;top:72px;left:0;right:0;bottom:0;
    background:var(--white);
    flex-direction:column;justify-content:flex-start;align-items:flex-start;
    padding:26px 24px;gap:20px;
    transform:translateX(101%);transition:transform .3s ease;
    z-index:999;border-top:1px solid var(--line);
  }
  .main-nav.open{transform:translateX(0);}
  .main-nav a{font-size:18px;}
  .nav-toggle{display:flex;}
}

/* ============ FOOTER (the one dark surface on the page) ============ */
.site-footer{background:var(--ink);color:var(--text-inv-mute);padding:64px 0 0;}
.footer-grid{
  display:grid;grid-template-columns:1.4fr 1fr 1fr 1.2fr;gap:44px;
  padding-bottom:44px;border-bottom:1px solid var(--line-dark);
}
@media (max-width:860px){.footer-grid{grid-template-columns:1fr 1fr;}}
@media (max-width:560px){.footer-grid{grid-template-columns:1fr;}}
.footer-brand{display:flex;align-items:center;gap:11px;margin-bottom:14px;}
.footer-brand img{height:42px;width:42px;border-radius:8px;}
.footer-brand span{font-family:var(--f-display);color:var(--text-inv);font-size:17px;font-weight:700;}
.footer-col h4{color:var(--text-inv);font-family:var(--f-body);font-weight:600;font-size:14px;margin-bottom:16px;}
.footer-col ul li{margin-bottom:10px;font-size:14px;}
.footer-col ul li a:hover{color:var(--text-inv);}
.footer-col p{color:var(--text-inv-mute);font-size:14px;}
.social-row{display:flex;gap:10px;margin-top:16px;}
.social-row a{
  width:36px;height:36px;border-radius:50%;border:1px solid var(--line-dark);
  display:flex;align-items:center;justify-content:center;color:var(--text-inv);
}
.social-row a:hover{background:var(--text-inv);color:var(--ink);}
.social-row svg{width:16px;height:16px;}
.footer-bottom{
  display:flex;justify-content:space-between;align-items:center;
  padding:20px 0 28px;font-size:12.5px;color:var(--text-inv-mute);flex-wrap:wrap;gap:8px;
}
.footer-bottom a{color:var(--text-inv-mute);}
.footer-bottom a:hover{color:var(--text-inv);}

/* ============ HERO (home) — plain, light, no gradients ============ */
.hero{
  background:var(--paper);
  padding:40px 0 0;
}
.hero-inner{
  display:grid;grid-template-columns:1.05fr .95fr;gap:48px;align-items:center;
}
@media (max-width:900px){.hero-inner{grid-template-columns:1fr;gap:32px;}}
.hero-copy h1{font-size:clamp(30px,4.6vw,48px);color:var(--text);max-width:620px;}
.hero-copy .lede{margin-bottom:28px;}
.hero-ctas{display:flex;gap:12px;flex-wrap:wrap;margin-bottom:32px;}
.hero-stats{display:flex;flex-wrap:wrap;border-top:1px solid var(--line);}
.hero-stats div{flex:1;min-width:120px;padding:18px 20px 0 0;}
.hero-stats div b{display:block;font-family:var(--f-display);font-size:22px;color:var(--text);font-weight:700;}
.hero-stats div span{font-size:12.5px;color:var(--text-mute);}

.hero-media .frame{
  border:1px solid var(--line);
  border-radius:var(--r-lg);
  overflow:hidden;
  aspect-ratio:4/5;
  background:var(--paper-2);
}
.hero-media .frame img{width:100%;height:100%;object-fit:cover;}

/* Simple promise strip, matches UC's checklist pattern */
.promise-list{
  display:flex;flex-direction:column;gap:10px;margin-top:18px;
}
.promise-list .pi{
  display:flex;align-items:center;gap:10px;font-size:14px;color:var(--text);font-weight:500;
}
.promise-list .pi svg{width:17px;height:17px;flex:none;color:var(--ink);}

/* Announcement bar */
.announce{
  background:var(--ink);color:var(--white);
  font-size:13px;font-weight:500;text-align:center;
  padding:9px 16px;
}

/* ============ Section headers ============ */
.section-head{max-width:640px;margin-bottom:40px;}
.section-head.center{margin-left:auto;margin-right:auto;text-align:center;}
.section-head h2{font-size:clamp(24px,3vw,34px);}

/* ============ Service icon grid (home) — UC-style tiles ============ */
.icon-grid{
  display:grid;grid-template-columns:repeat(4,1fr);gap:14px;
}
@media (max-width:860px){.icon-grid{grid-template-columns:repeat(3,1fr);}}
@media (max-width:560px){.icon-grid{grid-template-columns:repeat(2,1fr);gap:10px;}}
.icon-card{
  background:var(--paper-2);
  border:1px solid var(--line);
  border-radius:var(--r-md);
  padding:24px 14px;
  text-align:center;
  transition:border-color .15s;
}
.icon-card:hover{border-color:var(--text-faint);}
.icon-card .ic{
  width:52px;height:52px;border-radius:50%;
  background:var(--white);
  border:1px solid var(--line);
  display:flex;align-items:center;justify-content:center;
  margin:0 auto 12px;color:var(--ink);
}
.icon-card .ic svg{width:24px;height:24px;stroke-width:1.6;}
.icon-card b{font-size:13.5px;font-weight:600;display:block;color:var(--text);}
.icon-card span{font-size:11.5px;color:var(--text-mute);}

/* ============ Feature / Why-us grid ============ */
.feature-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;}
@media (max-width:900px){.feature-grid{grid-template-columns:repeat(2,1fr);}}
@media (max-width:560px){.feature-grid{grid-template-columns:1fr;}}
.feature{padding-top:18px;border-top:1px solid var(--line);}
.feature .ic{width:36px;height:36px;color:var(--ink);margin-bottom:14px;}
.feature .ic svg{width:100%;height:100%;stroke-width:1.5;}
.feature h3{font-size:16.5px;margin-bottom:6px;}
.feature p{font-size:14px;margin:0;}

/* ============ Split media/copy sections ============ */
.split{display:grid;grid-template-columns:1fr 1fr;gap:56px;align-items:center;}
@media (max-width:900px){.split{grid-template-columns:1fr;gap:32px;}}
.split.reverse .split-media{order:2;}
.split-media img{border-radius:var(--r-lg);width:100%;object-fit:cover;border:1px solid var(--line);}
.split-media.tall img{aspect-ratio:4/5;object-fit:cover;}

/* ============ Before / After ============ */
.ba-band{background:var(--paper-2);border-top:1px solid var(--line);border-bottom:1px solid var(--line);}
.ba-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;}
@media (max-width:760px){.ba-grid{grid-template-columns:1fr;}}

/* ============ CTA banner — flat black, no gradient ============ */
.cta-banner{
  background:var(--ink);
  color:var(--text-inv);border-radius:var(--r-lg);
  padding:48px 44px;display:flex;justify-content:space-between;align-items:center;gap:28px;
}
@media (max-width:760px){.cta-banner{flex-direction:column;text-align:center;padding:36px 24px;}}
.cta-banner h2{color:var(--white);font-size:clamp(22px,2.8vw,28px);margin-bottom:6px;}
.cta-banner p{color:var(--text-inv-mute);margin:0;}
.cta-actions{display:flex;gap:12px;flex:none;flex-wrap:wrap;justify-content:center;}

/* ============ Brands strip ============ */
.brands-strip{
  border-top:1px solid var(--line);border-bottom:1px solid var(--line);
  padding:22px 0;background:var(--paper-2);
}
.brands-strip .wrap{display:flex;align-items:center;gap:22px;justify-content:center;flex-wrap:wrap;}
.brands-strip .label{font-size:12.5px;color:var(--text-mute);font-weight:600;}
.brand-chip{
  font-family:var(--f-display);font-size:14px;font-weight:600;color:var(--text);
  padding:6px 14px;border:1px solid var(--line);border-radius:999px;background:var(--white);
}

/* ============ SERVICES PAGE ============ */
.page-hero{
  background:var(--paper-2);color:var(--text);padding:130px 0 48px;text-align:center;
  border-bottom:1px solid var(--line);
}
.page-hero h1{color:var(--text);font-size:clamp(28px,4vw,42px);}
.breadcrumb{font-size:13px;color:var(--text-mute);margin-bottom:14px;}
.breadcrumb a:hover{color:var(--text);}

.cat-tabs{
  position:sticky;top:72px;z-index:90;
  background:var(--paper);border-bottom:1px solid var(--line);
  padding:16px 0;
}
.cat-tabs .wrap{display:flex;gap:10px;overflow-x:auto;scrollbar-width:none;}
.cat-tabs .wrap::-webkit-scrollbar{display:none;}
.cat-tab{
  display:flex;align-items:center;gap:9px;
  padding:11px 18px;border-radius:999px;border:1px solid var(--line);
  background:var(--white);white-space:nowrap;cursor:pointer;font-size:13.5px;font-weight:600;color:var(--text);
  flex:none;
}
.cat-tab svg{width:17px;height:17px;stroke-width:1.6;}
.cat-tab.active{background:var(--ink);color:var(--white);border-color:var(--ink);}

.cat-panel{display:none;}
.cat-panel.active{display:block;}

.cat-banner{
  border-radius:var(--r-lg);overflow:hidden;position:relative;margin-bottom:40px;
  border:1px solid var(--line);
}
.cat-banner img{width:100%;max-height:280px;object-fit:cover;}

.svc-card{
  display:grid;grid-template-columns:300px 1fr;gap:0;
  background:var(--white);border:1px solid var(--line);border-radius:var(--r-lg);
  overflow:hidden;margin-bottom:24px;
}
@media (max-width:760px){.svc-card{grid-template-columns:1fr;}}
.svc-card .svc-media{position:relative;background:var(--paper-2);}
.svc-card .svc-media img{width:100%;height:100%;min-height:220px;object-fit:cover;}
.svc-card .svc-media .svc-price-tag{
  position:absolute;top:14px;left:14px;background:var(--white);border:1px solid var(--line);
  padding:6px 12px;border-radius:999px;font-weight:600;font-size:12px;
}
.svc-body{padding:26px 28px;display:flex;flex-direction:column;}
.svc-body h3{font-size:20px;margin-bottom:8px;}
.svc-body p.desc{font-size:14px;margin-bottom:16px;}
.svc-tags{display:flex;gap:8px;flex-wrap:wrap;margin-bottom:18px;}
.svc-tags span{
  font-size:11.5px;color:var(--text-mute);background:var(--paper-2);border:1px solid var(--line);
  padding:5px 10px;border-radius:999px;font-weight:500;
}
.svc-options{display:flex;gap:10px;flex-wrap:wrap;margin-bottom:20px;}
.opt{
  border:1px solid var(--line);border-radius:var(--r-md);
  padding:11px 16px;cursor:pointer;flex:1;min-width:145px;position:relative;
}
.opt input{position:absolute;opacity:0;inset:0;cursor:pointer;margin:0;}
.opt b{display:block;font-size:13.5px;}
.opt span{font-size:12.5px;color:var(--text-mute);}
.opt.checked{border-color:var(--ink);background:var(--paper-2);}
.opt.checked::after{
  content:"✓";position:absolute;top:9px;right:11px;width:16px;height:16px;border-radius:50%;
  background:var(--ink);color:var(--white);font-size:9px;display:flex;align-items:center;justify-content:center;
}
.svc-footer{display:flex;align-items:center;justify-content:space-between;margin-top:auto;gap:14px;flex-wrap:wrap;}
.svc-price{font-family:var(--f-display);font-size:21px;font-weight:700;}
.svc-price small{font-family:var(--f-body);font-size:12.5px;color:var(--text-mute);font-weight:500;}

/* ============ Requirements / Trust / Booking info ============ */
.req-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;}
@media (max-width:760px){.req-grid{grid-template-columns:1fr;}}
.req-card{
  background:var(--white);border:1px solid var(--line);border-radius:var(--r-md);
  padding:26px 18px;text-align:center;
}
.req-card .ic{width:42px;height:42px;margin:0 auto 12px;color:var(--ink);}
.req-card .ic svg{width:100%;height:100%;stroke-width:1.5;}
.req-card b{font-size:14px;font-weight:600;}

.trust-band{
  background:var(--white);border:1px solid var(--line);border-radius:var(--r-lg);
  padding:36px;display:grid;grid-template-columns:1fr 1fr;gap:32px;align-items:center;
}
@media (max-width:760px){.trust-band{grid-template-columns:1fr;padding:26px;}}
.trust-list{display:flex;flex-direction:column;gap:16px;}
.trust-item{display:flex;gap:13px;align-items:flex-start;}
.trust-item .ic{width:30px;height:30px;flex:none;color:var(--ink);}
.trust-item .ic svg{width:100%;height:100%;}
.trust-item b{display:block;font-size:14.5px;}
.trust-item span{font-size:13px;color:var(--text-mute);}
.trust-media img{border-radius:var(--r-md);width:100%;height:100%;object-fit:cover;aspect-ratio:4/3;border:1px solid var(--line);}

/* FAQ */
.faq-list{max-width:740px;margin:0 auto;}
.faq-item{border-bottom:1px solid var(--line);}
.faq-q{
  display:flex;align-items:center;justify-content:space-between;gap:16px;
  padding:20px 4px;cursor:pointer;font-weight:600;font-size:15px;color:var(--text);
}
.faq-q svg{width:17px;height:17px;flex:none;transition:transform .2s;color:var(--text-mute);}
.faq-item.open .faq-q svg{transform:rotate(45deg);}
.faq-a{max-height:0;overflow:hidden;transition:max-height .25s ease;}
.faq-a p{padding:0 4px 18px;font-size:14px;}
.faq-item.open .faq-a{max-height:260px;}

/* ============ CART DRAWER ============ */
.cart-fab{
  position:fixed;bottom:24px;right:24px;z-index:1200;
  background:var(--ink);color:var(--white);
  border-radius:999px;padding:14px 20px;display:flex;align-items:center;gap:9px;
  box-shadow:var(--shadow-2);cursor:pointer;font-weight:600;font-size:13.5px;border:none;
}
.cart-fab svg{width:18px;height:18px;}
.cart-fab .badge{
  background:var(--white);color:var(--ink);border-radius:999px;
  min-width:19px;height:19px;font-size:11px;display:flex;align-items:center;justify-content:center;padding:0 5px;
}
.cart-fab[data-hidden="true"]{display:none;}

.overlay{
  position:fixed;inset:0;background:rgba(15,15,15,0.5);
  z-index:1300;opacity:0;pointer-events:none;transition:opacity .25s;
}
.overlay.show{opacity:1;pointer-events:auto;}

.drawer{
  position:fixed;top:0;right:0;height:100%;width:410px;max-width:92vw;
  background:var(--white);z-index:1400;
  transform:translateX(100%);transition:transform .3s ease;
  display:flex;flex-direction:column;box-shadow:-16px 0 48px rgba(0,0,0,.16);
}
.drawer.show{transform:translateX(0);}
.drawer-head{
  display:flex;align-items:center;justify-content:space-between;
  padding:22px 22px 16px;border-bottom:1px solid var(--line);
}
.drawer-head h3{margin:0;font-size:18px;}
.drawer-close{background:none;border:none;cursor:pointer;width:32px;height:32px;border-radius:50%;display:flex;align-items:center;justify-content:center;}
.drawer-close svg{width:17px;height:17px;}
.drawer-close:hover{background:var(--paper-2);}
.drawer-body{flex:1;overflow-y:auto;padding:16px 22px;}
.drawer-empty{text-align:center;padding:56px 10px;color:var(--text-mute);}
.drawer-empty svg{width:48px;height:48px;color:var(--line);margin-bottom:12px;}

.cart-line{display:flex;gap:13px;padding:15px 0;border-bottom:1px solid var(--line);align-items:flex-start;}
.cart-line img{width:60px;height:60px;border-radius:var(--r-sm);object-fit:cover;flex:none;border:1px solid var(--line);}
.cart-line .info{flex:1;}
.cart-line .info b{font-size:14px;display:block;}
.cart-line .info span{font-size:12px;color:var(--text-mute);}
.cart-line .price{font-weight:700;font-size:14px;white-space:nowrap;}
.cart-line .remove{
  background:none;border:none;color:var(--text-mute);cursor:pointer;font-size:12px;
  text-decoration:underline;padding:0;margin-top:6px;
}
.drawer-foot{padding:18px 22px 24px;border-top:1px solid var(--line);}
.drawer-total{display:flex;justify-content:space-between;font-size:15px;font-weight:700;margin-bottom:14px;}
.drawer-note{font-size:12px;color:var(--text-mute);margin-top:10px;text-align:center;}

/* ============ Query modal ============ */
.modal{
  position:fixed;inset:0;z-index:1500;display:flex;align-items:center;justify-content:center;
  opacity:0;pointer-events:none;transition:opacity .25s;padding:20px;
  background:rgba(15,15,15,0.45);
}
.modal.show{opacity:1;pointer-events:auto;}
.modal-card{
  background:var(--white);border-radius:var(--r-lg);max-width:440px;width:100%;
  padding:32px 28px;position:relative;box-shadow:var(--shadow-2);
  transform:translateY(10px);transition:transform .25s;border:1px solid var(--line);
}
.modal.show .modal-card{transform:translateY(0);}
.modal-close{position:absolute;top:16px;right:16px;background:none;border:none;cursor:pointer;width:30px;height:30px;border-radius:50%;display:flex;align-items:center;justify-content:center;}
.modal-close:hover{background:var(--paper-2);}
.modal-close svg{width:15px;height:15px;}
.modal-card h3{font-size:21px;margin-bottom:6px;}
.modal-card p.sub{font-size:13.5px;margin-bottom:20px;}
.field{margin-bottom:14px;}
.field label{display:block;font-size:12.5px;font-weight:600;margin-bottom:6px;}
.field input,.field textarea{
  width:100%;padding:11px 13px;border:1px solid var(--line);border-radius:var(--r-sm);
  font-family:inherit;font-size:14px;background:var(--paper-2);color:var(--text);
}
.field input:focus,.field textarea:focus{outline:2px solid var(--ink);outline-offset:1px;}
.field textarea{resize:vertical;min-height:76px;}

/* ============ Floating WhatsApp ============ */
.wa-float{
  position:fixed;bottom:24px;left:24px;z-index:1200;
  width:54px;height:54px;border-radius:50%;background:#25D366;
  display:flex;align-items:center;justify-content:center;box-shadow:var(--shadow-2);
}
.wa-float svg{width:27px;height:27px;fill:#fff;}

/* ============ About page ============ */
.stat-strip{
  display:grid;grid-template-columns:repeat(4,1fr);
  border:1px solid var(--line);border-radius:var(--r-lg);overflow:hidden;
}
@media (max-width:760px){.stat-strip{grid-template-columns:repeat(2,1fr);}}
.stat-cell{padding:28px 18px;text-align:center;border-right:1px solid var(--line);border-bottom:1px solid var(--line);}
.stat-cell:last-child{border-right:none;}
@media (max-width:760px){.stat-cell{border-bottom:1px solid var(--line);}
  .stat-cell:nth-child(2n){border-right:none;}}
.stat-cell b{display:block;font-family:var(--f-display);font-size:28px;font-weight:700;}
.stat-cell span{font-size:12.5px;color:var(--text-mute);}

.values-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px;}
@media (max-width:860px){.values-grid{grid-template-columns:repeat(2,1fr);}}
@media (max-width:560px){.values-grid{grid-template-columns:1fr;}}
.value-card{padding:22px;border:1px solid var(--line);border-radius:var(--r-md);}
.value-card .ic{width:32px;height:32px;color:var(--ink);margin-bottom:12px;}
.value-card .ic svg{width:100%;height:100%;stroke-width:1.6;}
.value-card h3{font-size:15px;margin-bottom:6px;}
.value-card p{font-size:13px;margin:0;}

.team-grid{display:grid;grid-template-columns:1fr 1fr;gap:28px;}
@media (max-width:760px){.team-grid{grid-template-columns:1fr;}}
.team-card{
  background:var(--white);border:1px solid var(--line);border-radius:var(--r-lg);
  overflow:hidden;
}
.team-photo{aspect-ratio:4/4.4;overflow:hidden;background:var(--paper-2);}
.team-photo img{width:100%;height:100%;object-fit:cover;}
.team-info{padding:24px 26px 28px;}
.team-info .role{font-size:12px;font-weight:600;color:var(--text-mute);margin-bottom:6px;}
.team-info h3{font-size:20px;margin-bottom:10px;}
.team-info p{font-size:14px;}

.missing-photo{
  width:100%;height:100%;display:flex;flex-direction:column;align-items:center;justify-content:center;
  color:var(--text-faint);gap:10px;
}
.missing-photo svg{width:44px;height:44px;}
.missing-photo span{font-size:12px;text-align:center;padding:0 20px;}

/* ============ Contact page ============ */
.contact-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;}
@media (max-width:860px){.contact-grid{grid-template-columns:repeat(2,1fr);}}
@media (max-width:560px){.contact-grid{grid-template-columns:1fr;}}
.contact-card{
  background:var(--white);border:1px solid var(--line);border-radius:var(--r-md);
  padding:24px 22px;display:flex;flex-direction:column;gap:12px;transition:border-color .15s;
}
.contact-card:hover{border-color:var(--text-faint);}
.contact-card .ic{width:40px;height:40px;border-radius:50%;background:var(--paper-2);border:1px solid var(--line);display:flex;align-items:center;justify-content:center;color:var(--ink);}
.contact-card .ic svg{width:19px;height:19px;}
.contact-card h3{font-size:15px;margin:0;}
.contact-card span{font-size:13.5px;color:var(--text-mute);}
.contact-card .go{font-size:12.5px;font-weight:600;color:var(--text);margin-top:auto;}

.map-note{
  background:var(--ink);color:var(--text-inv);border-radius:var(--r-lg);
  padding:32px;display:flex;gap:18px;align-items:flex-start;
}
.map-note .ic{width:30px;height:30px;color:var(--text-inv);flex:none;}
.map-note .ic svg{width:100%;height:100%;}
.map-note h3{color:var(--white);font-size:17px;margin-bottom:6px;}
.map-note p{color:var(--text-inv-mute);margin:0;font-size:14px;}

.visually-hidden{position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0 0 0 0);}

:focus-visible{outline:2px solid var(--ink);outline-offset:2px;}
@media (prefers-reduced-motion: reduce){
  *{transition:none !important;animation:none !important;}
}
