/* ==========================================================================
   CRYSTAL SHINE AUTO CARE CENTRE — DESIGN SYSTEM
   Concept: "Service Docket" — corporate automotive inspection-report language
   translated into a clean, premium web layout.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@500;600;700;800;900&family=Inter:wght@400;500;600;700&family=IBM+Plex+Mono:wght@500;600&display=swap');

:root{
  /* Color tokens */
  --ink:        #0b0c0e;   /* near-black */
  --ink-soft:   #17181c;   /* charcoal surface */
  --ink-line:   rgba(255,255,255,.14);
  --surface:    #ffffff;
  --paper:      #f4f3f0;   /* warm-neutral section alternation, not cream/terracotta */
  --paper-deep: #ebe9e4;
  --line:       #dedcd6;
  --steel:      #53575c;   /* body copy on light */
  --steel-soft: #7b7f84;
  --steel-dark: #a8acb1;   /* body copy on dark */
  --red:        #ea3030;   /* brand red, matches logo */
  --red-deep:   #b31d1d;
  --red-tint:   #fdeceb;
  --green-ok:   #1f7a4d;

  /* Type */
  --f-display: 'Archivo', 'Arial Narrow', sans-serif;
  --f-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --f-mono: 'IBM Plex Mono', ui-monospace, SFMono-Regular, monospace;

  --container: 1180px;
}

*,*::before,*::after{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  font-family:var(--f-body);
  color:var(--ink);
  background:var(--surface);
  -webkit-font-smoothing:antialiased;
  line-height:1.6;
}
img{max-width:100%;display:block;}
a{color:inherit;text-decoration:none;}
ul{margin:0;padding:0;list-style:none;}
h1,h2,h3,h4{font-family:var(--f-display);margin:0;line-height:1.1;letter-spacing:-.01em;}
p{margin:0;}
.container{max-width:var(--container);margin:0 auto;padding:0 24px;}

:focus-visible{outline:2px solid var(--red);outline-offset:3px;}

@media (prefers-reduced-motion: reduce){
  *{animation-duration:.001ms !important;animation-iteration-count:1 !important;transition-duration:.001ms !important;scroll-behavior:auto !important;}
}

/* ---------- Utility bar ---------- */
.utility-bar{
  background:var(--ink);
  color:var(--steel-dark);
  font-family:var(--f-mono);
  font-size:12.5px;
}
.utility-bar .container{
  display:flex;justify-content:space-between;align-items:center;gap:16px;
  padding-top:9px;padding-bottom:9px;flex-wrap:wrap;
}
.utility-bar a{color:var(--steel-dark);transition:color .15s;}
.utility-bar a:hover{color:#fff;}
.utility-left{display:flex;gap:20px;flex-wrap:wrap;}
.utility-left span{color:var(--red);}
.utility-right{display:flex;gap:16px;align-items:center;}
.utility-right .social{display:flex;gap:12px;}
.utility-right svg{width:14px;height:14px;fill:var(--steel-dark);transition:fill .15s;}
.utility-right a:hover svg{fill:var(--red);}

/* ---------- Header / Nav ---------- */
.site-header{
  position:sticky;top:0;z-index:100;
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}
.nav-wrap{
  display:flex;align-items:center;justify-content:space-between;
  padding:14px 0;gap:24px;
}
.brand{display:flex;align-items:center;gap:10px;}
.brand img{height:34px;width:auto;}
.brand .tagline{
  font-family:var(--f-mono);font-size:10.5px;color:var(--steel-soft);
  border-left:1px solid var(--line);padding-left:10px;line-height:1.3;display:none;
}
@media(min-width:900px){.brand .tagline{display:block;}}

.main-nav{display:none;}
@media(min-width:1020px){
  .main-nav{display:flex;align-items:center;gap:2px;}
  .main-nav > li{position:relative;}
  .main-nav > li > a{
    display:flex;align-items:center;gap:5px;
    padding:10px 15px;font-size:14.5px;font-weight:600;color:var(--ink);
    border-radius:2px;
  }
  .main-nav > li > a:hover, .main-nav > li.is-active > a{color:var(--red);}
  .main-nav .chev{width:8px;height:8px;opacity:.6;}
  .dropdown{
    position:absolute;top:100%;left:0;min-width:250px;
    background:#fff;border:1px solid var(--line);box-shadow:0 18px 40px rgba(11,12,14,.12);
    padding:8px;opacity:0;visibility:hidden;transform:translateY(6px);
    transition:opacity .15s ease, transform .15s ease;
  }
  .main-nav > li:hover .dropdown, .main-nav > li:focus-within .dropdown{
    opacity:1;visibility:visible;transform:translateY(0);
  }
  .dropdown a{
    display:flex;justify-content:space-between;gap:10px;
    padding:9px 12px;font-size:13.5px;font-weight:500;color:var(--steel);border-radius:2px;
  }
  .dropdown a:hover{background:var(--paper);color:var(--red);}
}
.nav-cta{display:flex;align-items:center;gap:10px;}
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  font-family:var(--f-body);font-weight:600;font-size:14px;
  padding:11px 20px;border:1px solid transparent;cursor:pointer;
  transition:background .15s,color .15s,border-color .15s;white-space:nowrap;
}
.btn-primary{background:var(--red);color:#fff;}
.btn-primary:hover{background:var(--red-deep);}
.btn-dark{background:var(--ink);color:#fff;}
.btn-dark:hover{background:#000;}
.btn-outline{background:transparent;color:var(--ink);border-color:var(--ink);}
.btn-outline:hover{background:var(--ink);color:#fff;}
.btn-outline-light{background:transparent;color:#fff;border-color:rgba(255,255,255,.5);}
.btn-outline-light:hover{background:#fff;color:var(--ink);}
.btn-sm{padding:8px 14px;font-size:13px;}
.btn-block{width:100%;}
.nav-cta .btn{display:none;}
@media(min-width:640px){.nav-cta .btn-call{display:inline-flex;}}
@media(min-width:1020px){.nav-cta .btn-quote{display:inline-flex;}}

.menu-toggle{
  display:flex;flex-direction:column;gap:4px;background:none;border:0;cursor:pointer;padding:8px;
}
.menu-toggle span{width:22px;height:2px;background:var(--ink);}
@media(min-width:1020px){.menu-toggle{display:none;}}

.mobile-nav{
  display:none;background:#fff;border-top:1px solid var(--line);
  max-height:0;overflow:hidden;transition:max-height .25s ease;
}
.mobile-nav.is-open{max-height:1400px;}
@media(min-width:1020px){.mobile-nav{display:none !important;}}
.mobile-nav .container{padding-top:6px;padding-bottom:18px;}
.mobile-nav details{border-bottom:1px solid var(--line);}
.mobile-nav summary{
  padding:14px 4px;font-weight:600;font-size:15px;cursor:pointer;display:flex;justify-content:space-between;
  list-style:none;
}
.mobile-nav summary::-webkit-details-marker{display:none;}
.mobile-nav > .container > a{display:block;padding:14px 4px;font-weight:600;font-size:15px;border-bottom:1px solid var(--line);}
.mobile-nav .sub-links{padding:0 4px 14px 14px;display:flex;flex-direction:column;gap:10px;}
.mobile-nav .sub-links a{font-size:14px;color:var(--steel);font-weight:500;}
.mobile-nav .mobile-cta{display:flex;gap:10px;padding-top:16px;}

/* ---------- Breadcrumb ---------- */
.breadcrumb{background:var(--paper);border-bottom:1px solid var(--line);}
.breadcrumb .container{padding-top:12px;padding-bottom:12px;}
.breadcrumb ol{display:flex;flex-wrap:wrap;gap:6px;font-family:var(--f-mono);font-size:12px;color:var(--steel-soft);}
.breadcrumb a:hover{color:var(--red);}
.breadcrumb li:not(:last-child)::after{content:'/';margin-left:6px;color:var(--line);}
.breadcrumb li[aria-current]{color:var(--ink);}

/* ---------- Section rhythm ---------- */
.section{padding:80px 0;}
.section-sm{padding:56px 0;}
.section-alt{background:var(--paper);}
.section-dark{background:var(--ink);color:#fff;}
.section-dark .eyebrow{color:var(--steel-dark);}
.section-dark p{color:var(--steel-dark);}

.eyebrow{
  display:inline-flex;align-items:center;gap:8px;
  font-family:var(--f-mono);font-size:12.5px;letter-spacing:.02em;color:var(--red);
  margin-bottom:14px;
}
.eyebrow::before{content:'';width:18px;height:1px;background:var(--red);}
.section-head{max-width:680px;margin-bottom:44px;}
.section-head h2{font-size:clamp(26px,3.4vw,40px);font-weight:800;margin-bottom:14px;}
.section-head p{color:var(--steel);font-size:16.5px;}
.section-dark .section-head p{color:var(--steel-dark);}

/* ---------- Hero (home) ---------- */
.hero{
  position:relative;background:var(--ink);color:#fff;overflow:hidden;
  padding:64px 0 0;
}
.hero-bg{
  position:absolute;inset:0;
  background-image:linear-gradient(180deg, rgba(11,12,14,.55) 0%, rgba(11,12,14,.88) 78%, var(--ink) 100%),
    url('https://cdn.crystal-shine.com/uploads/elementor/thumbs/buffing-and-polishing-car-car-detailing-crystal-shine-qqyrq84ys7v0vklggtk4eksi92ufglnmt2bafl7l8k.jpg');
  background-size:cover;background-position:center 30%;
  opacity:.55;
}
.hero-inner{position:relative;display:grid;gap:40px;padding-bottom:64px;}
@media(min-width:960px){.hero-inner{grid-template-columns:1.3fr .9fr;align-items:end;}}
.hero-kicker{
  display:flex;align-items:center;gap:10px;font-family:var(--f-mono);font-size:12.5px;
  color:var(--red);margin-bottom:22px;
}
.hero-kicker span.dot{width:6px;height:6px;background:var(--red);border-radius:50%;display:inline-block;}
.hero h1{font-size:clamp(34px,5.4vw,64px);font-weight:900;margin-bottom:22px;max-width:16ch;}
.hero h1 em{color:var(--red);font-style:normal;}
.hero-lede{font-size:17.5px;color:var(--steel-dark);max-width:52ch;margin-bottom:30px;}
.hero-actions{display:flex;flex-wrap:wrap;gap:12px;}
.hero-panel{
  border:1px solid var(--ink-line);background:rgba(255,255,255,.04);
  padding:26px;display:flex;flex-direction:column;gap:18px;
}
.hero-stat-row{display:grid;grid-template-columns:1fr 1fr;gap:18px;}
.hero-stat b{font-family:var(--f-display);font-size:30px;font-weight:800;display:block;}
.hero-stat span{font-size:12.5px;color:var(--steel-dark);}
.hero-panel hr{border:0;border-top:1px solid var(--ink-line);margin:0;}
.hero-panel .badge-list{display:flex;flex-direction:column;gap:10px;font-size:13.5px;color:var(--steel-dark);}
.hero-panel .badge-list li{display:flex;gap:9px;align-items:flex-start;}
.hero-panel .badge-list svg{width:15px;height:15px;flex:none;margin-top:3px;fill:var(--red);}
.hero-strip{border-top:1px solid var(--ink-line);position:relative;}
.hero-strip .container{
  display:grid;grid-template-columns:repeat(2,1fr);
}
@media(min-width:760px){.hero-strip .container{grid-template-columns:repeat(4,1fr);}}
.hero-strip a{
  padding:16px 6px;text-align:center;font-family:var(--f-mono);font-size:12px;
  color:var(--steel-dark);border-right:1px solid var(--ink-line);border-bottom:1px solid var(--ink-line);
}
.hero-strip a:hover{color:#fff;background:rgba(255,255,255,.04);}
@media(min-width:760px){.hero-strip a:nth-child(4){border-right:none;}}
.hero-strip a:nth-child(even){border-right:none;}
@media(min-width:760px){.hero-strip a:nth-child(even){border-right:1px solid var(--ink-line);}.hero-strip a:nth-child(4){border-right:none;}}

/* ---------- Page header (interior pages) ---------- */
.page-header{background:var(--ink);color:#fff;padding:52px 0;position:relative;overflow:hidden;}
.page-header::after{
  content:'';position:absolute;right:-60px;top:-60px;width:280px;height:280px;
  border:1px solid var(--ink-line);border-radius:50%;
}
.page-header .eyebrow{color:var(--red);}
.page-header h1{font-size:clamp(28px,4vw,44px);font-weight:800;max-width:22ch;}
.page-header p{color:var(--steel-dark);margin-top:14px;max-width:60ch;font-size:16px;}

/* ---------- Ticket / docket card system ---------- */
.docket{border:1px solid var(--line);background:#fff;position:relative;}
.docket-head{
  display:flex;justify-content:space-between;align-items:flex-start;gap:12px;
  padding:18px 20px;border-bottom:1px solid var(--line);
}
.docket-code{font-family:var(--f-mono);font-size:11.5px;color:var(--steel-soft);}
.docket-tag{
  font-family:var(--f-mono);font-size:11px;background:var(--red-tint);color:var(--red-deep);
  padding:3px 8px;
}
.docket-body{padding:22px 20px;}

/* Grid helpers */
.grid{display:grid;gap:24px;}
.grid-2{grid-template-columns:1fr;}
.grid-3{grid-template-columns:1fr;}
.grid-4{grid-template-columns:1fr;}
@media(min-width:680px){.grid-2{grid-template-columns:1fr 1fr;}.grid-4{grid-template-columns:1fr 1fr;}}
@media(min-width:900px){.grid-3{grid-template-columns:repeat(3,1fr);}.grid-4{grid-template-columns:repeat(4,1fr);}}

/* Service card */
.svc-card{
  border:1px solid var(--line);background:#fff;padding:26px 24px;display:flex;flex-direction:column;gap:14px;
  transition:border-color .15s, transform .15s;position:relative;
}
.svc-card:hover{border-color:var(--red);transform:translateY(-3px);}
.svc-card .num{font-family:var(--f-mono);font-size:12px;color:var(--steel-soft);}
.svc-card .icon{width:38px;height:38px;color:var(--red);}
.svc-card h3{font-size:19px;font-weight:700;}
.svc-card p{color:var(--steel);font-size:14.5px;}
.svc-card ul{display:flex;flex-direction:column;gap:7px;margin-top:4px;}
.svc-card ul li{font-size:13.5px;color:var(--steel);display:flex;gap:8px;}
.svc-card ul li::before{content:'';width:5px;height:5px;background:var(--red);margin-top:7px;flex:none;}
.svc-card .card-link{
  margin-top:auto;font-size:13.5px;font-weight:700;color:var(--ink);
  display:flex;align-items:center;gap:6px;padding-top:6px;border-top:1px solid var(--line);
}
.svc-card .card-link:hover{color:var(--red);}

/* Process steps */
.process-grid{display:grid;gap:0;border:1px solid var(--line);}
@media(min-width:820px){.process-grid{grid-template-columns:repeat(4,1fr);}}
.process-step{padding:30px 26px;border-bottom:1px solid var(--line);position:relative;}
@media(min-width:820px){.process-step{border-bottom:none;border-right:1px solid var(--line);}
  .process-step:last-child{border-right:none;}}
.process-step .idx{font-family:var(--f-mono);font-size:13px;color:var(--red);margin-bottom:16px;display:block;}
.process-step h3{font-size:18px;font-weight:700;margin-bottom:8px;}
.process-step p{font-size:14px;color:var(--steel);}

/* Stat band */
.stat-band{border-top:1px solid var(--line);border-bottom:1px solid var(--line);}
.stat-band .grid-4{gap:0;}
.stat-band .stat{
  padding:34px 22px;text-align:left;border-bottom:1px solid var(--line);
}
@media(min-width:680px){.stat-band .stat{border-bottom:none;border-right:1px solid var(--line);}
.stat-band .stat:last-child{border-right:none;}}
.stat-band .stat b{font-family:var(--f-display);font-size:36px;font-weight:800;display:block;color:var(--red);}
.stat-band .stat span{font-size:13.5px;color:var(--steel);}

/* Testimonial */
.testi-card{border:1px solid var(--line);padding:26px;background:#fff;display:flex;flex-direction:column;gap:16px;}
.testi-stars{display:flex;gap:3px;}
.testi-stars svg{width:15px;height:15px;fill:var(--red);}
.testi-card p{font-size:15px;color:var(--ink);}
.testi-who{display:flex;justify-content:space-between;align-items:center;font-size:13px;color:var(--steel-soft);border-top:1px solid var(--line);padding-top:14px;}
.testi-who b{color:var(--ink);font-size:14px;display:block;font-family:var(--f-body);}

/* Brand marquee */
.brand-row{
  display:flex;flex-wrap:wrap;gap:0;border-top:1px solid var(--line);border-left:1px solid var(--line);
}
.brand-row span{
  flex:1 1 33.33%;min-width:130px;text-align:center;padding:18px 10px;
  border-right:1px solid var(--line);border-bottom:1px solid var(--line);
  font-family:var(--f-mono);font-size:13px;color:var(--steel-soft);
}
@media(min-width:700px){.brand-row span{flex-basis:16.66%;}}

/* FAQ */
.faq-item{border-bottom:1px solid var(--line);}
.faq-item summary{
  list-style:none;display:flex;justify-content:space-between;align-items:center;gap:16px;
  padding:20px 4px;cursor:pointer;font-weight:700;font-size:16px;
}
.faq-item summary::-webkit-details-marker{display:none;}
.faq-item summary .plus{
  width:22px;height:22px;border:1px solid var(--line);flex:none;position:relative;
}
.faq-item summary .plus::before,.faq-item summary .plus::after{
  content:'';position:absolute;background:var(--ink);left:50%;top:50%;transform:translate(-50%,-50%);
}
.faq-item summary .plus::before{width:10px;height:1.4px;}
.faq-item summary .plus::after{width:1.4px;height:10px;transition:transform .15s;}
.faq-item[open] summary .plus::after{transform:translate(-50%,-50%) rotate(90deg) scaleY(0);}
.faq-item .faq-a{padding:0 4px 22px;color:var(--steel);font-size:15px;max-width:74ch;}

/* Form */
.form-grid{display:grid;gap:16px;}
@media(min-width:640px){.form-grid.cols-2{grid-template-columns:1fr 1fr;}}
.field{display:flex;flex-direction:column;gap:7px;}
.field label{font-size:13px;font-weight:600;color:var(--ink);}
.field input,.field select,.field textarea{
  border:1px solid var(--line);padding:12px 14px;font-family:var(--f-body);font-size:14.5px;
  background:#fff;color:var(--ink);
}
.field input:focus,.field select:focus,.field textarea:focus{border-color:var(--red);outline:none;}
.field-note{font-size:12px;color:var(--steel-soft);}

/* Footer */
.site-footer{background:var(--ink);color:var(--steel-dark);}
.footer-top{padding:64px 0 44px;border-bottom:1px solid var(--ink-line);}
.footer-grid{display:grid;gap:40px;}
@media(min-width:860px){.footer-grid{grid-template-columns:1.4fr 1fr 1fr 1.2fr;}}
.footer-brand img{height:32px;margin-bottom:16px;}
.footer-brand p{font-size:14px;max-width:32ch;margin-bottom:20px;}
.footer-social{display:flex;gap:10px;}
.footer-social a{width:34px;height:34px;border:1px solid var(--ink-line);display:flex;align-items:center;justify-content:center;}
.footer-social svg{width:15px;height:15px;fill:var(--steel-dark);}
.footer-social a:hover{border-color:var(--red);}
.footer-social a:hover svg{fill:var(--red);}
.footer-col h4{color:#fff;font-size:13.5px;font-family:var(--f-mono);font-weight:600;margin-bottom:18px;}
.footer-col ul{display:flex;flex-direction:column;gap:11px;}
.footer-col a{font-size:14px;color:var(--steel-dark);}
.footer-col a:hover{color:var(--red);}
.footer-col address{font-style:normal;font-size:14px;line-height:1.7;}
.footer-bottom{padding:22px 0;display:flex;flex-wrap:wrap;justify-content:space-between;gap:10px;font-size:12.5px;color:var(--steel-soft);}
.footer-bottom a:hover{color:#fff;}
.payments{display:flex;gap:10px;align-items:center;flex-wrap:wrap;}
.payments span{font-family:var(--f-mono);font-size:11px;border:1px solid var(--ink-line);padding:4px 8px;color:var(--steel-dark);}

/* Sticky mobile action bar */
.mobile-action-bar{
  position:fixed;left:0;right:0;bottom:0;z-index:90;display:flex;
  border-top:1px solid var(--line);background:#fff;box-shadow:0 -8px 24px rgba(0,0,0,.08);
}
.mobile-action-bar a{
  flex:1;display:flex;align-items:center;justify-content:center;gap:8px;
  padding:14px 8px;font-weight:700;font-size:13.5px;
}
.mobile-action-bar a.call{background:var(--ink);color:#fff;}
.mobile-action-bar a.wa{background:var(--red);color:#fff;}
.mobile-action-bar svg{width:16px;height:16px;fill:currentColor;}
@media(min-width:820px){.mobile-action-bar{display:none;}}
body{padding-bottom:0;}
@media(max-width:819px){body{padding-bottom:58px;}}

/* CTA band */
.cta-band{background:var(--red);color:#fff;padding:56px 0;}
.cta-band .cta-inner{display:flex;flex-wrap:wrap;justify-content:space-between;align-items:center;gap:24px;}
.cta-band h2{font-size:clamp(22px,3vw,32px);font-weight:800;max-width:20ch;}
.cta-band p{color:rgba(255,255,255,.85);margin-top:8px;max-width:48ch;}
.cta-band .actions{display:flex;gap:12px;flex-wrap:wrap;}
.cta-band .btn-primary{background:var(--ink);}
.cta-band .btn-primary:hover{background:#000;}
.cta-band .btn-outline-light:hover{color:var(--red);}

/* Misc text helpers */
.text-steel{color:var(--steel);}
.two-col{display:grid;gap:48px;}
@media(min-width:900px){.two-col{grid-template-columns:1fr 1fr;align-items:center;}}
.tag-list{display:flex;flex-wrap:wrap;gap:8px;}
.tag-list span{font-family:var(--f-mono);font-size:12px;border:1px solid var(--line);padding:6px 10px;color:var(--steel);}
.checklist{display:flex;flex-direction:column;gap:12px;}
.checklist li{display:flex;gap:10px;align-items:flex-start;font-size:15px;color:var(--steel);}
.checklist svg{width:18px;height:18px;flex:none;margin-top:2px;fill:var(--red);}
.frame-img{border:1px solid var(--line);position:relative;padding:10px;}
.frame-img::before,.frame-img::after{content:'';position:absolute;width:18px;height:18px;border:2px solid var(--red);}
.frame-img::before{top:-1px;left:-1px;border-right:none;border-bottom:none;}
.frame-img::after{bottom:-1px;right:-1px;border-left:none;border-top:none;}
.frame-img img{width:100%;height:100%;object-fit:cover;}

/* Anchor scroll offset for sticky header */
[id]{scroll-margin-top:110px;}

/* Blog */
.blog-card{border:1px solid var(--line);display:flex;flex-direction:column;}
.blog-meta{display:flex;gap:14px;font-family:var(--f-mono);font-size:11.5px;color:var(--steel-soft);padding:18px 20px 0;}
.blog-card h3{padding:10px 20px 0;font-size:19px;font-weight:700;}
.blog-card .excerpt{padding:10px 20px 0;color:var(--steel);font-size:14.5px;}
.blog-card details{border:none;}
.blog-card details summary{border:none;padding:14px 20px 20px;font-size:13.5px;}
.blog-card .full{padding:0 20px 22px;color:var(--steel);font-size:14.5px;display:flex;flex-direction:column;gap:12px;}
.blog-card .full h4{font-size:14.5px;font-weight:700;color:var(--ink);margin-top:4px;}

/* Special services table-like list */
.spec-group{border:1px solid var(--line);}
.spec-group summary{
  list-style:none;display:flex;justify-content:space-between;align-items:center;
  padding:20px 22px;cursor:pointer;background:var(--paper);
}
.spec-group summary::-webkit-details-marker{display:none;}
.spec-group summary h3{font-size:18px;font-weight:700;}
.spec-group summary .count{font-family:var(--f-mono);font-size:12px;color:var(--steel-soft);}
.spec-group .spec-items{padding:6px 22px 22px;display:grid;gap:10px;}
@media(min-width:700px){.spec-group .spec-items{grid-template-columns:1fr 1fr;}}
.spec-items li{
  display:flex;justify-content:space-between;gap:10px;padding:12px 0;border-bottom:1px dashed var(--line);
  font-size:14.5px;color:var(--steel);
}
.spec-items li b{color:var(--ink);font-weight:600;}
.spec-items li .code{font-family:var(--f-mono);font-size:11px;color:var(--steel-soft);}

/* small caps meta */
.meta-code{font-family:var(--f-mono);font-size:12px;color:var(--steel-soft);}
