/* ============================================================
   PRIMACONNECT — style.css
   Dark commerce theme: espresso-near-black + prime-gold + warm sand
   ============================================================ */

:root{
  --bg:#17130C;
  --surface:#231C10;
  --gold:#DFA92E;
  --gold-light:#E8BA45;
  --white:#F7F1E4;
  --sand:#D0C6AE;
  --bronze:#9C8A62;
  --hairline:#3A2F1A;
  --dark-gold:#4A3A12;
}

*{
  box-sizing:border-box;
  margin:0;
  padding:0;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Segoe UI', system-ui, -apple-system, 'Helvetica Neue', Arial, sans-serif;
  font-size:16px;
  line-height:1.7;
  background-color:#17130C;
  color:#EDE5D4;
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
}

a{
  color:#DFA92E;
  text-decoration:none;
  transition:color .25s ease;
}

a:hover{
  color:#E8BA45;
}

img{
  max-width:100%;
  display:block;
}

.wrap{
  max-width:1200px;
  margin:0 auto;
  padding:0 24px;
}

h1,h2,h3,h4{
  color:#F7F1E4;
  line-height:1.15;
  font-weight:700;
}

h2{
  font-size:34px;
  margin-bottom:16px;
}

h3{
  font-size:24px;
  margin-bottom:12px;
}

/* ---------- scroll reveal ---------- */
.fade-up{
  opacity:0;
  transform:translateY(18px);
  transition:opacity .7s ease, transform .7s ease;
}

.fade-up.visible{
  opacity:1;
  transform:none;
}

/* ---------- buttons ---------- */
.btn{
  display:inline-block;
  padding:15px 30px;
  border-radius:6px;
  font-weight:700;
  font-size:15px;
  letter-spacing:.5px;
  text-decoration:none;
  transition:background-color .25s ease, color .25s ease, border-color .25s ease;
  cursor:pointer;
}

.btn-gold{
  background-color:#DFA92E;
  color:#17130C;
}

.btn-gold:hover{
  background-color:#E8BA45;
  color:#17130C;
}

.btn-ghost{
  border:2px solid #F7F1E4;
  color:#F7F1E4;
  background-color:transparent;
}

.btn-ghost:hover{
  border-color:#DFA92E;
  color:#E8BA45;
}

/* ---------- eyebrow chips ---------- */
.eyebrow{
  display:inline-block;
  background-color:#DFA92E;
  color:#17130C;
  font-weight:700;
  text-transform:uppercase;
  font-size:12px;
  letter-spacing:2px;
  padding:8px 16px;
  border-radius:4px;
}

.eyebrow-ghost{
  background-color:transparent;
  color:#DFA92E;
  border:1px solid #3A2F1A;
  margin-bottom:18px;
}

/* ============================================================
   NAVIGATION — hamburger-first
   ============================================================ */
.burger-nav{
  position:sticky;
  top:0;
  z-index:60;
  background-color:#17130C;
  border-bottom:1px solid #3A2F1A;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 24px;
  transition:box-shadow .3s ease;
}

.burger-nav.scrolled{
  box-shadow:0 8px 24px #000000;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
}

.brand-chip{
  width:38px;
  height:38px;
  background-color:#DFA92E;
  border-radius:6px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.brand-bag{
  position:relative;
  width:18px;
  height:20px;
}

.brand-bag .bag-handle{
  position:absolute;
  top:0;
  left:4px;
  width:10px;
  height:7px;
  border:2px solid #FFFFFF;
  border-bottom:none;
  border-radius:8px 8px 0 0;
}

.brand-bag .bag-body{
  position:absolute;
  top:6px;
  left:0;
  width:18px;
  height:14px;
  border:2px solid #FFFFFF;
  border-radius:2px 2px 6px 6px;
}

.wordmark{
  color:#F7F1E4;
  font-weight:800;
  font-size:20px;
  letter-spacing:2px;
}

.desktop-links{
  display:flex;
  align-items:center;
  gap:30px;
}

.desktop-links a{
  color:#D0C6AE;
  font-weight:600;
  font-size:15px;
  padding:4px 0;
  position:relative;
}

.desktop-links a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:0;
  height:2px;
  background-color:#DFA92E;
  transition:width .25s ease;
}

.desktop-links a:hover{
  color:#FFFFFF;
}

.desktop-links a:hover::after{
  width:100%;
}

.burger-btn{
  width:44px;
  height:40px;
  background-color:transparent;
  border:1px solid #3A2F1A;
  border-radius:6px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:5px;
  cursor:pointer;
  transition:border-color .25s ease;
}

.burger-btn:hover{
  border-color:#DFA92E;
}

.burger-bar{
  display:block;
  width:22px;
  height:2px;
  background-color:#FFFFFF;
  border-radius:2px;
  transition:background-color .25s ease;
}

.burger-btn:hover .burger-bar{
  background-color:#E8BA45;
}

/* ---------- full-screen overlay menu ---------- */
.overlay-menu{
  position:fixed;
  top:0;
  right:0;
  width:100%;
  height:100%;
  background-color:#DFA92E;
  z-index:80;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  padding:24px 32px 40px;
  transform:translateX(100%);
  transition:transform .35s ease;
}

.overlay-menu.open{
  transform:translateX(0);
}

.overlay-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.overlay-brand{
  color:#17130C;
  font-weight:800;
  font-size:18px;
  letter-spacing:2px;
}

.overlay-close{
  width:44px;
  height:40px;
  background-color:#17130C;
  border:none;
  border-radius:6px;
  cursor:pointer;
  position:relative;
}

.close-bar{
  position:absolute;
  top:18px;
  left:11px;
  width:22px;
  height:2px;
  background-color:#DFA92E;
  border-radius:2px;
}

.close-bar.c1{
  transform:rotate(45deg);
}

.close-bar.c2{
  transform:rotate(-45deg);
}

.overlay-nav{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:8px;
}

.overlay-nav a{
  color:#17130C;
  font-size:34px;
  font-weight:800;
  letter-spacing:1px;
  padding:6px 0;
  border-bottom:3px solid transparent;
}

.overlay-nav a:hover{
  color:#000000;
  border-bottom-color:#17130C;
}

.overlay-foot{
  border-top:1px solid #17130C;
  padding-top:20px;
  font-weight:700;
}

.overlay-foot a{
  color:#17130C;
  font-size:18px;
}

.overlay-foot a:hover{
  color:#000000;
  text-decoration:underline;
}

/* ============================================================
   HERO — three-column trio
   ============================================================ */
.trio-hero{
  background-color:#17130C;
  display:grid;
  grid-template-columns:1fr 2.2fr 1fr;
  gap:36px;
  align-items:center;
  padding:72px 24px 84px;
  border-bottom:1px solid #3A2F1A;
}

.hero-chip{
  background-color:#231C10;
  border:1px solid #3A2F1A;
  border-radius:16px;
  padding:30px 22px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:26px;
  min-height:340px;
  position:relative;
}

.chip-tag{
  position:absolute;
  top:14px;
  left:14px;
  color:#9C8A62;
  font-size:11px;
  font-weight:700;
  letter-spacing:2px;
  text-transform:uppercase;
}

/* commerce motifs */
.g-bag{
  position:relative;
  width:34px;
  height:38px;
}

.g-bag .bag-handle{
  position:absolute;
  top:0;
  left:8px;
  width:18px;
  height:12px;
  border:3px solid #DFA92E;
  border-bottom:none;
  border-radius:14px 14px 0 0;
}

.g-bag .bag-body{
  position:absolute;
  top:11px;
  left:0;
  width:34px;
  height:27px;
  border:3px solid #DFA92E;
  border-radius:3px 3px 10px 10px;
}

.g-gift{
  position:relative;
  width:44px;
  height:42px;
}

.g-gift .gift-lid{
  position:absolute;
  top:2px;
  left:2px;
  width:40px;
  height:9px;
  background-color:#E8BA45;
  border-radius:2px;
}

.g-gift .gift-ribbon-v{
  position:absolute;
  top:0;
  left:19px;
  width:7px;
  height:42px;
  background-color:#FFFFFF;
}

.g-gift .gift-bow{
  position:absolute;
  top:0;
  left:13px;
  width:19px;
  height:8px;
  background-color:#FFFFFF;
  border-radius:10px 10px 2px 2px;
}

.g-gift .gift-body{
  position:absolute;
  top:13px;
  left:6px;
  width:32px;
  height:26px;
  background-color:#DFA92E;
  border-radius:2px;
}

.g-card{
  position:relative;
  width:50px;
  height:32px;
  border:2px solid #DFA92E;
  border-radius:6px;
  background-color:#17130C;
}

.g-card .card-chip{
  position:absolute;
  top:5px;
  left:6px;
  width:11px;
  height:9px;
  background-color:#DFA92E;
  border-radius:2px;
}

.g-card .card-line.w{
  position:absolute;
  top:19px;
  left:6px;
  width:26px;
  height:2px;
  background-color:#FFFFFF;
}

.g-card .card-line.s{
  position:absolute;
  top:25px;
  left:6px;
  width:16px;
  height:2px;
  background-color:#D0C6AE;
}

/* delivery motifs */
.g-dbox{
  position:relative;
  width:48px;
  height:42px;
}

.g-dbox .dbox-lid{
  position:absolute;
  top:2px;
  left:4px;
  width:40px;
  height:8px;
  background-color:#E8BA45;
  border-radius:2px;
}

.g-dbox .dbox-front{
  position:absolute;
  top:12px;
  left:7px;
  width:34px;
  height:27px;
  background-color:#DFA92E;
  border-radius:2px;
}

.g-dbox .dbox-seam{
  position:absolute;
  top:15px;
  left:7px;
  width:34px;
  height:3px;
  background-color:#17130C;
}

.g-dbox .dbox-tape{
  position:absolute;
  top:12px;
  left:21px;
  width:7px;
  height:27px;
  background-color:#17130C;
}

.g-globe{
  position:relative;
  width:52px;
  height:52px;
}

.g-globe .globe-ring{
  position:absolute;
  top:0;
  left:0;
  width:52px;
  height:52px;
  border:3px solid #DFA92E;
  border-radius:50%;
}

.g-globe .globe-arc.h{
  position:absolute;
  top:24px;
  left:0;
  width:52px;
  height:22px;
  border-bottom:2px solid #FFFFFF;
  border-radius:0 0 52px 52px;
}

.g-globe .globe-arc.v{
  position:absolute;
  top:0;
  left:24px;
  width:22px;
  height:52px;
  border-right:2px solid #FFFFFF;
  border-radius:0 52px 52px 0;
}

.g-globe .globe-node.n1{
  position:absolute;
  top:-8px;
  right:-8px;
  width:9px;
  height:9px;
  background-color:#FFFFFF;
  border-radius:50%;
}

.g-globe .globe-node.n2{
  position:absolute;
  bottom:6px;
  left:-9px;
  width:7px;
  height:7px;
  background-color:#E8BA45;
  border-radius:50%;
}

.g-globe .globe-line{
  position:absolute;
  top:-4px;
  right:-18px;
  width:30px;
  height:2px;
  background-color:#E8BA45;
  transform:rotate(-24deg);
  transform-origin:right center;
}

.g-arrow{
  position:relative;
  width:54px;
  height:44px;
}

.g-arrow .arrow-shaft{
  position:absolute;
  bottom:6px;
  left:6px;
  width:40px;
  height:3px;
  background-color:#DFA92E;
  transform:rotate(-40deg);
  transform-origin:left center;
}

.g-arrow .arrow-head{
  position:absolute;
  bottom:24px;
  right:2px;
  width:16px;
  height:16px;
  border-top:3px solid #E8BA45;
  border-right:3px solid #E8BA45;
  transform:rotate(45deg);
}

/* hero center text */
.hero-center{
  text-align:left;
}

.hero-title{
  font-size:clamp(46px, 5vw, 60px);
  line-height:1.05;
  color:#F7F1E4;
  margin:22px 0 18px;
  font-weight:800;
}

.hero-title .gold-word{
  color:#E8BA45;
}

.hero-sub{
  color:#D0C6AE;
  font-size:17px;
  line-height:1.75;
  max-width:640px;
}

.hero-ctas{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
  margin-top:28px;
}

.stat-line{
  display:flex;
  align-items:center;
  margin-top:34px;
}

.stat-item{
  padding:0 26px;
  text-align:center;
}

.stat-item:first-child{
  padding-left:0;
}

.stat-item:not(:first-child){
  border-left:1px solid #DFA92E;
}

.stat-value{
  display:block;
  font-size:26px;
  font-weight:800;
  color:#F7F1E4;
}

.stat-label{
  display:block;
  font-size:11px;
  color:#9C8A62;
  text-transform:uppercase;
  letter-spacing:1.5px;
  margin-top:2px;
}

/* ============================================================
   ALTERNATING BLOCKS
   ============================================================ */
.alternating-blocks{
  background-color:#17130C;
}

.alt-lead{
  text-align:center;
  padding:84px 24px 40px;
  max-width:840px;
}

.alt-lead h2{
  font-size:36px;
}

.alt-lead p{
  color:#D0C6AE;
  font-size:17px;
}

.alt-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:64px;
  align-items:center;
  padding:72px 24px;
  border-top:1px solid #3A2F1A;
}

.alt-index{
  display:inline-block;
  color:#DFA92E;
  font-weight:800;
  font-size:15px;
  letter-spacing:2px;
  margin-bottom:10px;
}

.alt-text p{
  color:#D0C6AE;
  font-size:16px;
}

.mini-list{
  list-style:none;
  margin-top:22px;
}

.mini-list li{
  position:relative;
  padding-left:22px;
  color:#D0C6AE;
  font-size:15px;
  margin-bottom:10px;
}

.mini-list li::before{
  content:"";
  position:absolute;
  left:0;
  top:9px;
  width:9px;
  height:9px;
  background-color:#DFA92E;
  border-radius:50%;
}

.motif-panel{
  position:relative;
  background-color:#231C10;
  border:1px solid #3A2F1A;
  border-radius:16px;
  min-height:240px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:40px 24px;
}

.node-marker{
  position:absolute;
  top:14px;
  left:14px;
  width:10px;
  height:10px;
  background-color:#DFA92E;
  border-radius:50%;
  box-shadow:0 0 0 4px #3A2F1A;
}

/* cart motif */
.cart-graphic{
  position:relative;
  width:64px;
  height:50px;
}

.cart-graphic .cart-handle{
  position:absolute;
  top:0;
  left:6px;
  width:26px;
  height:13px;
  border:3px solid #DFA92E;
  border-bottom:none;
  border-radius:14px 14px 0 0;
}

.cart-graphic .cart-body{
  position:absolute;
  top:16px;
  left:0;
  width:50px;
  height:20px;
  border:3px solid #DFA92E;
  border-radius:5px;
}

.cart-graphic .cart-wheel{
  position:absolute;
  top:36px;
  width:9px;
  height:9px;
  border:2px solid #FFFFFF;
  border-radius:50%;
}

.cart-graphic .cart-wheel.w1{
  left:9px;
}

.cart-graphic .cart-wheel.w2{
  right:9px;
}

/* growth bars motif */
.growth-graphic{
  position:relative;
  width:64px;
  height:52px;
  display:flex;
  align-items:flex-end;
  gap:7px;
  padding-left:4px;
}

.growth-graphic .grow-bar{
  width:14px;
  background-color:#DFA92E;
  border-radius:2px 2px 0 0;
}

.growth-graphic .grow-bar.b1{
  height:18px;
}

.growth-graphic .grow-bar.b2{
  height:30px;
}

.growth-graphic .grow-bar.b3{
  height:42px;
}

.growth-graphic .grow-arrow{
  position:absolute;
  top:0;
  right:0;
  width:14px;
  height:14px;
  border-top:3px solid #E8BA45;
  border-right:3px solid #E8BA45;
  transform:rotate(45deg);
}

/* parcel motif */
.parcel-graphic{
  position:relative;
  width:64px;
  height:50px;
}

.parcel-graphic .parcel-flap{
  position:absolute;
  top:4px;
  left:13px;
  width:38px;
  height:9px;
  background-color:#E8BA45;
  border-radius:2px;
}

.parcel-graphic .parcel-front{
  position:absolute;
  top:15px;
  left:8px;
  width:46px;
  height:30px;
  background-color:#DFA92E;
  border-radius:3px;
}

.parcel-graphic .parcel-seal{
  position:absolute;
  top:15px;
  left:28px;
  width:8px;
  height:30px;
  background-color:#17130C;
}

.parcel-graphic .parcel-mark{
  position:absolute;
  top:22px;
  left:16px;
  width:9px;
  height:9px;
  border:2px solid #17130C;
  border-radius:50%;
}

/* ============================================================
   METRIC BAND
   ============================================================ */
.metric-band{
  background-color:#DFA92E;
  display:flex;
  align-items:stretch;
  justify-content:center;
}

.metric-item{
  flex:1;
  text-align:center;
  padding:52px 20px;
  color:#17130C;
}

.metric-item:not(:first-child){
  border-left:1px solid #17130C;
}

.metric-num{
  display:block;
  font-size:46px;
  font-weight:800;
  color:#17130C;
  line-height:1;
}

.metric-label{
  display:block;
  margin-top:10px;
  font-size:13px;
  font-weight:700;
  color:#4A3A12;
  text-transform:uppercase;
  letter-spacing:2px;
}

/* ============================================================
   STATEMENT BAND
   ============================================================ */
.statement-band{
  background-color:#231C10;
  position:relative;
}

.statement-band::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  bottom:0;
  width:4px;
  background-color:#DFA92E;
}

.statement-inner{
  max-width:900px;
  margin:0 auto;
  padding:84px 24px;
}

.statement-inner p{
  color:#F7F1E4;
  font-size:24px;
  line-height:1.6;
  font-weight:600;
  text-align:center;
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band{
  background-color:#17130C;
  border-top:1px solid #3A2F1A;
}

.cta-inner{
  text-align:center;
  padding:88px 24px;
}

.cta-inner h2{
  font-size:38px;
}

.cta-inner p{
  color:#D0C6AE;
  max-width:680px;
  margin:0 auto 32px;
  font-size:17px;
}

/* ============================================================
   FOOTER — link-row
   ============================================================ */
.link-row-footer{
  background-color:#17130C;
  border-top:1px solid #3A2F1A;
  text-align:center;
  padding:40px 24px 44px;
}

.footer-links{
  display:flex;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
  gap:0;
  margin-bottom:22px;
}

.footer-links a{
  color:#D0C6AE;
  font-weight:600;
  font-size:15px;
  padding:4px 8px;
}

.footer-links a:hover{
  color:#FFFFFF;
  text-decoration:underline;
  text-decoration-color:#DFA92E;
  text-underline-offset:4px;
}

.footer-links .slash{
  color:#DFA92E;
  padding:0 6px;
}

.footer-legal{
  color:#9C8A62;
  font-size:13px;
  max-width:900px;
  margin:0 auto;
  line-height:1.8;
}

.footer-legal a{
  color:#9C8A62;
  text-decoration:underline;
  text-underline-offset:3px;
}

.footer-legal a:hover{
  color:#E8BA45;
}

/* ============================================================
   SECONDARY PAGE SHARED STYLES (services / contact)
   ============================================================ */
.page-hero{
  background-color:#17130C;
  padding:76px 24px 72px;
  border-bottom:1px solid #3A2F1A;
}

.page-hero-inner{
  max-width:1000px;
  margin:0 auto;
  text-align:center;
}

.page-hero-inner h1{
  font-size:48px;
  margin:20px 0 16px;
}

.page-hero-inner p{
  color:#D0C6AE;
  font-size:18px;
  max-width:760px;
  margin:0 auto;
}

.section-band{
  background-color:#17130C;
  padding:84px 24px;
}

.section-band:nth-of-type(odd){
  background-color:#17130C;
}

.band-lead{
  text-align:center;
  max-width:820px;
  margin:0 auto 56px;
}

.band-lead p{
  color:#D0C6AE;
  font-size:17px;
}

/* services numbered rows */
.svc-row{
  display:grid;
  grid-template-columns:120px 1fr;
  gap:36px;
  padding:52px 0;
  border-bottom:1px solid #3A2F1A;
  max-width:1080px;
  margin:0 auto;
}

.svc-num{
  font-size:56px;
  font-weight:800;
  color:#DFA92E;
  line-height:1;
  text-align:right;
}

.svc-body h3{
  font-size:27px;
}

.svc-body p{
  color:#D0C6AE;
  font-size:16px;
  max-width:820px;
}

/* process overview */
.process-band{
  background-color:#231C10;
  padding:84px 24px;
}

.process-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:32px;
  margin-top:48px;
}

.process-step{
  border-top:3px solid #DFA92E;
  padding-top:20px;
}

.process-step .step-num{
  color:#DFA92E;
  font-size:14px;
  font-weight:800;
  letter-spacing:2px;
}

.process-step h4{
  color:#F7F1E4;
  font-size:20px;
  margin:8px 0 8px;
}

.process-step p{
  color:#D0C6AE;
  font-size:14px;
}

/* contact page */
.contact-wrap{
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:56px;
  align-items:start;
}

.contact-form-card{
  background-color:#231C10;
  border:1px solid #3A2F1A;
  border-radius:16px;
  padding:36px;
}

.field{
  margin-bottom:20px;
}

.field label{
  display:block;
  color:#F7F1E4;
  font-weight:600;
  font-size:14px;
  margin-bottom:8px;
}

.field input,
.field textarea{
  width:100%;
  background-color:#17130C;
  border:1px solid #3A2F1A;
  border-radius:6px;
  color:#EDE5D4;
  font-family:inherit;
  font-size:15px;
  padding:12px 14px;
  transition:border-color .25s ease;
}

.field input:focus,
.field textarea:focus{
  outline:none;
  border-color:#DFA92E;
}

.field textarea{
  min-height:140px;
  resize:vertical;
}

.form-status{
  margin-top:16px;
  font-size:14px;
  font-weight:600;
  color:#E8BA45;
  min-height:22px;
}

.contact-details{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.detail-card{
  background-color:#231C10;
  border:1px solid #3A2F1A;
  border-radius:12px;
  padding:22px 24px;
}

.detail-card .detail-tag{
  color:#DFA92E;
  font-size:12px;
  font-weight:800;
  letter-spacing:2px;
  text-transform:uppercase;
}

.detail-card .detail-text{
  color:#D0C6AE;
  margin-top:6px;
  font-size:15px;
}

.detail-card .detail-text a{
  color:#E8BA45;
}

.hours-row{
  display:flex;
  justify-content:space-between;
  color:#D0C6AE;
  font-size:15px;
  padding:6px 0;
  border-bottom:1px solid #3A2F1A;
}

.hours-row:last-child{
  border-bottom:none;
}

/* FAQ accordion */
.faq-band{
  background-color:#17130C;
  padding:84px 24px;
}

.faq-list{
  max-width:820px;
  margin:0 auto;
}

.faq-item{
  background-color:#231C10;
  border:1px solid #3A2F1A;
  border-radius:12px;
  margin-bottom:16px;
  overflow:hidden;
}

.faq-q{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:20px 24px;
  cursor:pointer;
  color:#F7F1E4;
  font-weight:700;
  font-size:17px;
}

.faq-q .faq-chevron{
  color:#DFA92E;
  font-size:20px;
  transition:transform .3s ease;
}

.faq-a{
  max-height:0;
  overflow:hidden;
  transition:max-height .35s ease;
}

.faq-a-inner{
  padding:0 24px 22px;
  color:#D0C6AE;
  font-size:15px;
}

.faq-item.open .faq-chevron{
  transform:rotate(45deg);
}

.faq-item.open .faq-a{
  max-height:320px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:1020px){
  .trio-hero{
    grid-template-columns:1fr;
    gap:28px;
    padding:56px 24px 64px;
  }

  .hero-center{
    order:1;
  }

  .commerce-chip{
    order:2;
  }

  .delivery-chip{
    order:3;
  }

  .hero-chip{
    min-height:0;
    flex-direction:row;
    flex-wrap:wrap;
    padding:40px 24px;
  }

  .hero-title{
    font-size:46px;
  }

  .alt-row{
    grid-template-columns:1fr;
    gap:32px;
  }

  .alt-graphic{
    order:-1;
  }

  .metric-band{
    flex-wrap:wrap;
  }

  .metric-item{
    flex:1 1 45%;
  }

  .metric-item:nth-child(3){
    border-left:none;
  }

  .process-grid{
    grid-template-columns:1fr 1fr;
  }

  .contact-wrap{
    grid-template-columns:1fr;
  }
}

@media (max-width:860px){
  .desktop-links{
    display:none;
  }

  .svc-row{
    grid-template-columns:1fr;
    gap:16px;
  }

  .svc-num{
    text-align:left;
  }

  .stat-line{
    flex-wrap:wrap;
    gap:16px;
  }

  .stat-item{
    padding:0 20px 0 0;
  }

  .stat-item:not(:first-child){
    border-left:none;
    padding-left:20px;
  }
}

@media (max-width:560px){
  .wrap{
    padding:0 18px;
  }

  .burger-nav{
    padding:12px 18px;
  }

  .wordmark{
    font-size:16px;
  }

  .hero-title{
    font-size:40px;
  }

  .hero-ctas .btn{
    width:100%;
    text-align:center;
  }

  .process-grid{
    grid-template-columns:1fr;
  }

  .metric-item{
    flex:1 1 100%;
  }

  .metric-item:nth-child(3){
    border-left:none;
  }

  .metric-item:not(:first-child){
    border-left:none;
    border-top:1px solid #17130C;
  }

  .footer-links .slash{
    display:none;
  }

  .footer-links{
    flex-direction:column;
    gap:10px;
  }

  .stat-line{
    flex-direction:column;
    align-items:flex-start;
  }

  .stat-item:not(:first-child){
    border-left:1px solid #DFA92E;
    padding-left:20px;
  }
}
