*,*::before,*::after{box-sizing:border-box;margin:0;padding:0;}
html{scroll-behavior:smooth;}
img,svg{display:block;max-width:100%;}
a{color:inherit;text-decoration:none;}
button{font:inherit;cursor:pointer;border:none;background:none;color:inherit;}
ul{list-style:none;}

:root{
  --gold:#c9a84c;
  --gold-light:#e8d48b;
  --gold-dark:#9a7830;
  --gold-glow:rgba(201,168,76,.35);
  --navy:#0a1628;
  --navy-light:#122240;
  --dark:#050a12;
  --white:#f8f6f0;
  --muted:rgba(248,246,240,.55);
  --glass:rgba(10,22,40,.55);
  --border:rgba(201,168,76,.18);
  --border-hover:rgba(201,168,76,.45);
  --radius:20px;
  --radius-sm:12px;
  --shadow:0 20px 60px rgba(0,0,0,.45);
  --font-display:'Cinzel',serif;
  --font-body:'Outfit',sans-serif;
  --space-section:clamp(3rem,6vw,4.75rem);
  --space-hero:clamp(2.75rem,6vw,4.5rem);
  --space-form-top:clamp(1.25rem,3vw,2rem);
}

@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{animation-duration:.01ms!important;animation-iteration-count:1!important;transition-duration:.01ms!important;}
}

body{
  font-family:var(--font-body);
  background:var(--dark);
  color:var(--white);
  line-height:1.65;
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
}

.bg-mesh{
  position:fixed;inset:0;z-index:0;pointer-events:none;
  background:
    radial-gradient(ellipse 70% 50% at 15% 20%, rgba(201,168,76,.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 45% at 85% 75%, rgba(30,80,140,.12) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 50% 0%, rgba(201,168,76,.05) 0%, transparent 50%),
    var(--dark);
}
.bg-mesh::before{
  content:'';position:absolute;inset:0;
  background-image:
    radial-gradient(1px 1px at 10% 20%, rgba(255,255,255,.18) 0%, transparent 100%),
    radial-gradient(1px 1px at 70% 40%, rgba(255,255,255,.12) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 40% 70%, rgba(201,168,76,.25) 0%, transparent 100%),
    radial-gradient(1px 1px at 90% 15%, rgba(255,255,255,.1) 0%, transparent 100%);
  animation:twinkle 8s ease-in-out infinite alternate;
}
@keyframes twinkle{from{opacity:.4}to{opacity:1}}

.wrap{max-width:1180px;margin-inline:auto;padding-inline:clamp(1rem,4vw,2rem);position:relative;z-index:1;}
section{position:relative;z-index:1;}

h1,h2,h3,h4{font-family:var(--font-display);font-weight:600;letter-spacing:.02em;color:var(--white);}
.gradient-text{
  background:linear-gradient(135deg,var(--gold-light) 0%,var(--gold) 45%,var(--gold-dark) 100%);
  -webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;
  color:var(--gold-light);
}
.eyebrow{
  display:inline-flex;align-items:center;gap:.5rem;
  font-size:.72rem;font-weight:600;letter-spacing:.22em;text-transform:uppercase;color:var(--gold);
}
.eyebrow::before{
  content:'';width:24px;height:1px;background:linear-gradient(90deg,transparent,var(--gold));
}
.lede{color:rgba(248,246,240,.82);font-size:1.05rem;max-width:52ch;font-weight:300;}
.prose{color:rgba(248,246,240,.82);font-size:1rem;max-width:70ch;font-weight:300;}
.prose + .prose{margin-top:1rem;}

:focus-visible{outline:2px solid var(--gold);outline-offset:3px;}

.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:.5rem;
  padding:.85rem 1.75rem;border-radius:100px;font-weight:600;font-size:.92rem;
  transition:transform .25s ease,box-shadow .25s ease,background .25s ease;
  white-space:nowrap;
}
.btn-gold{
  background:linear-gradient(135deg,var(--gold-light),var(--gold),var(--gold-dark));
  color:var(--dark);
  box-shadow:0 4px 24px var(--gold-glow);
}
.btn-gold:hover{transform:translateY(-3px);box-shadow:0 8px 32px rgba(201,168,76,.45);}
.btn-outline{
  border:1.5px solid var(--border);color:var(--white);background:rgba(255,255,255,.03);
  backdrop-filter:blur(8px);
}
.btn-outline:hover{border-color:var(--gold);background:rgba(201,168,76,.08);transform:translateY(-2px);}
.btn svg{width:17px;height:17px;flex-shrink:0;}

.glass{
  background:var(--glass);
  border:1px solid var(--border);
  border-radius:var(--radius);
  backdrop-filter:blur(16px);
  transition:border-color .3s ease,transform .3s ease,box-shadow .3s ease;
}
.glass:hover{border-color:var(--border-hover);box-shadow:0 12px 40px rgba(0,0,0,.35);}

/* Header */
header{
  position:sticky;top:0;z-index:100;
  background:rgba(5,10,18,.75);
  backdrop-filter:blur(20px) saturate(140%);
  border-bottom:1px solid var(--border);
}
.nav{display:flex;align-items:center;justify-content:space-between;height:80px;gap:1rem;}
.brand{display:flex;align-items:center;gap:.85rem;}
.brand-logo{
  width:52px;height:52px;border-radius:50%;
  animation:tire-spin 20s linear infinite;
  filter:drop-shadow(0 0 12px var(--gold-glow));
  flex-shrink:0;
}
@keyframes tire-spin{to{transform:rotate(360deg)}}
.brand-text b{display:block;font-family:var(--font-display);font-size:.95rem;line-height:1.2;}
.brand-text span{font-size:.65rem;letter-spacing:.15em;text-transform:uppercase;color:var(--muted);}

.nav-links{display:flex;align-items:center;gap:clamp(.85rem,2vw,1.75rem);}
.nav-links a{
  font-size:.88rem;font-weight:500;color:var(--muted);
  transition:color .2s ease;position:relative;
}
.nav-links a:hover,
.nav-links a.active{color:var(--gold-light);}
.nav-links a::after{
  content:'';position:absolute;left:0;bottom:-4px;width:0;height:1px;
  background:var(--gold);transition:width .25s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after{width:100%;}

.nav-right{display:flex;align-items:center;gap:.75rem;}
.nav-toggle{
  display:none;width:44px;height:44px;border-radius:50%;
  border:1px solid var(--border);align-items:center;justify-content:center;
}
.nav-toggle svg{width:20px;height:20px;}

@media(max-width:980px){
  .nav-links{
    position:fixed;inset:80px 0 0 0;
    z-index:200;
    background:#050a12;
    flex-direction:column;align-items:stretch;
    padding:1.5rem 1.5rem 2.5rem;
    gap:0;
    transform:translateX(100%);transition:transform .35s ease;
    overflow-y:auto;
    -webkit-overflow-scrolling:touch;
  }
  .nav-links.open{transform:translateX(0);}
  .nav-links a{
    padding:1.1rem 0;
    border-bottom:1px solid rgba(201,168,76,.22);
    font-size:1.1rem;
    color:#f8f6f0;
    font-weight:500;
  }
  .nav-links a:hover,
  .nav-links a.active{color:var(--gold-light);}
  .nav-links .btn{margin-top:1.25rem;width:100%;color:var(--dark);}
  .nav-toggle{display:flex;}
  .hide-mobile{display:none!important;}
  header{
    background:#050a12;
    backdrop-filter:none;
  }
}

/* Page hero */
.page-hero{
  padding:var(--space-hero) 0 clamp(1.75rem,3.5vw,2.5rem);
  position:relative;
  overflow:hidden;
}
.page-hero::before{
  content:"";
  position:absolute;inset:0;z-index:-1;
  background:
    linear-gradient(rgba(5,10,18,.78), rgba(5,10,18,.88)),
    url("../img/Slide%201.jpg") center/cover no-repeat;
}
.page-hero h1{
  font-size:clamp(2rem,4.2vw,3.1rem);
  line-height:1.15;
  margin:.85rem 0 1rem;
}
.page-hero .lede{max-width:60ch;}
.breadcrumb{
  display:flex;flex-wrap:wrap;gap:.5rem;align-items:center;
  font-size:.78rem;color:var(--muted);margin-bottom:1rem;
}
.breadcrumb a{color:var(--gold);}
.breadcrumb a:hover{color:var(--gold-light);}
.breadcrumb span{opacity:.5;}

.section{padding:var(--space-section) 0;}
.section-head{max-width:640px;margin-bottom:2.5rem;}
.section-head h2{font-size:clamp(1.5rem,2.8vw,2.2rem);margin-top:.85rem;line-height:1.2;}
.section-head.center{margin-inline:auto;text-align:center;}

/* Consistent vertical rhythm */
.page-content{padding-top:var(--space-form-top);}

/* Cards / grids */
.grid-2{display:grid;grid-template-columns:repeat(2,1fr);gap:1.25rem;}
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:1.25rem;}
.grid-4{display:grid;grid-template-columns:repeat(4,1fr);gap:1.25rem;}
@media(max-width:900px){.grid-3,.grid-4{grid-template-columns:1fr 1fr;}}
@media(max-width:640px){.grid-2,.grid-3,.grid-4{grid-template-columns:1fr;}}

.info-card{padding:1.6rem 1.4rem;}
.info-card h3{font-size:1.05rem;margin-bottom:.55rem;}
.info-card p{font-size:.9rem;color:var(--muted);}
.info-card ul{margin-top:.85rem;display:flex;flex-direction:column;gap:.45rem;}
.info-card li{
  position:relative;padding-left:1.1rem;
  font-size:.88rem;color:rgba(248,246,240,.78);
}
.info-card li::before{
  content:"";position:absolute;left:0;top:.55em;
  width:6px;height:6px;border-radius:50%;background:var(--gold);
}

.values-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.25rem;}
@media(max-width:800px){.values-grid{grid-template-columns:1fr;}}
.value-card{padding:1.75rem 1.5rem;text-align:center;}
.value-card .icon{
  width:52px;height:52px;margin:0 auto 1rem;border-radius:14px;
  display:flex;align-items:center;justify-content:center;
  background:linear-gradient(135deg,rgba(201,168,76,.2),rgba(201,168,76,.05));
  border:1px solid var(--border);color:var(--gold-light);
}
.value-card .icon svg{width:24px;height:24px;}
.value-card h3{font-size:1.05rem;margin-bottom:.45rem;color:var(--gold-light);}
.value-card p{font-size:.88rem;color:var(--muted);}

.split{display:grid;grid-template-columns:1fr 1fr;gap:clamp(1.5rem,4vw,3rem);align-items:center;}
@media(max-width:800px){.split{grid-template-columns:1fr;}}
.split-img{
  width:100%;height:auto;border-radius:var(--radius);
  border:1px solid var(--border);box-shadow:0 16px 40px rgba(0,0,0,.35);
}

.check-list{display:flex;flex-direction:column;gap:.75rem;margin-top:1.25rem;}
.check-list li{
  display:flex;gap:.75rem;align-items:flex-start;
  font-size:.92rem;color:rgba(248,246,240,.82);
}
.check-list svg{width:18px;height:18px;color:var(--gold);flex-shrink:0;margin-top:.15rem;}

.serve-row{display:flex;flex-wrap:wrap;gap:.75rem;}
.serve-chip{
  display:inline-flex;align-items:center;gap:.5rem;
  padding:.7rem 1.2rem;border-radius:100px;
  font-size:.88rem;font-weight:500;color:var(--muted);
}
.serve-chip:hover{border-color:var(--gold);color:var(--gold-light);}

.service-detail{padding:1.75rem;display:flex;flex-direction:column;gap:1rem;}
.service-detail .service-icon{
  width:52px;height:52px;border-radius:14px;
  display:flex;align-items:center;justify-content:center;
  background:linear-gradient(135deg,rgba(201,168,76,.2),rgba(201,168,76,.05));
  border:1px solid var(--border);color:var(--gold-light);
}
.service-detail .service-icon svg{width:24px;height:24px;}
.service-detail h3{font-size:1.1rem;}
.service-detail p{font-size:.9rem;color:var(--muted);}

/* FAQ */
.faq-list{display:flex;flex-direction:column;gap:.85rem;max-width:860px;margin-inline:auto;}
.faq-item{overflow:hidden;}
.faq-item summary{
  list-style:none;cursor:pointer;
  padding:1.2rem 1.4rem;
  display:flex;justify-content:space-between;align-items:center;gap:1rem;
  font-family:var(--font-display);font-size:1rem;font-weight:600;
}
.faq-item summary::-webkit-details-marker{display:none;}
.faq-item summary::after{
  content:"+";
  flex-shrink:0;
  width:28px;height:28px;border-radius:50%;
  border:1px solid var(--border);
  display:flex;align-items:center;justify-content:center;
  color:var(--gold);font-size:1.1rem;line-height:1;
  transition:transform .25s ease,background .25s ease;
}
.faq-item[open] summary::after{content:"-";background:rgba(201,168,76,.12);}
.faq-item .faq-body{
  padding:0 1.4rem 1.3rem;
  color:var(--muted);font-size:.92rem;line-height:1.7;
}

/* Legal */
.legal{max-width:820px;margin-inline:auto;}
.legal h2{
  font-size:1.25rem;margin:2rem 0 .85rem;color:var(--gold-light);
}
.legal h2:first-child{margin-top:0;}
.legal p,.legal li{color:rgba(248,246,240,.78);font-size:.94rem;line-height:1.75;}
.legal p + p{margin-top:.85rem;}
.legal ul{margin:.85rem 0 0;display:flex;flex-direction:column;gap:.45rem;}
.legal li{padding-left:1.1rem;position:relative;}
.legal li::before{
  content:"";position:absolute;left:0;top:.65em;
  width:6px;height:6px;border-radius:50%;background:var(--gold);
}
.legal .updated{font-size:.8rem;color:var(--muted);margin-bottom:1.5rem;}

/* CTA */
.cta-wrap{
  padding:clamp(2.5rem,5vw,3.5rem);
  text-align:center;position:relative;overflow:hidden;
  background:linear-gradient(135deg,rgba(201,168,76,.12),rgba(10,22,40,.8),rgba(201,168,76,.08));
}
.cta-wrap::before{
  content:'';position:absolute;inset:0;
  background:radial-gradient(circle at 50% 0%,var(--gold-glow),transparent 55%);
  pointer-events:none;
}
.cta-wrap h2{font-size:clamp(1.4rem,2.8vw,2rem);margin-bottom:.75rem;position:relative;}
.cta-wrap p{color:var(--muted);max-width:48ch;margin:0 auto 1.75rem;font-size:.95rem;position:relative;}
.cta-actions{display:flex;gap:.85rem;justify-content:center;flex-wrap:wrap;position:relative;}

/* Footer */
footer{
  border-top:1px solid var(--border);
  padding:4rem 0 0;
  background:rgba(5,10,18,.6);
}
.footer-grid{display:grid;grid-template-columns:1.5fr 1fr 1fr 1fr;gap:2.5rem;padding-bottom:3rem;}
.footer-brand p{color:var(--muted);font-size:.88rem;margin-top:1rem;max-width:30ch;line-height:1.7;}
.footer-seal{
  display:inline-flex;align-items:center;gap:.5rem;margin-top:1.25rem;
  padding:.5rem 1rem;border-radius:100px;
  border:1px solid var(--border);font-size:.72rem;color:var(--gold);
}
.footer-seal svg{width:14px;height:14px;}
.footer-col h5{
  font-family:var(--font-display);font-size:.72rem;letter-spacing:.15em;
  text-transform:uppercase;color:var(--gold);margin-bottom:1rem;
}
.footer-col ul{display:flex;flex-direction:column;gap:.65rem;}
.footer-col a{font-size:.88rem;color:var(--muted);transition:color .2s ease;}
.footer-col a:hover{color:var(--gold-light);}
.footer-col address{font-style:normal;font-size:.88rem;color:var(--muted);line-height:1.8;}
.footer-bottom{
  display:flex;justify-content:space-between;align-items:center;
  padding:1.5rem 0;border-top:1px solid var(--border);
  flex-wrap:wrap;gap:.75rem;
}
.footer-bottom p,.footer-legal a{font-size:.78rem;color:var(--muted);}
.footer-legal{display:flex;gap:1.5rem;}
.footer-legal a:hover{color:var(--gold-light);}
@media(max-width:800px){.footer-grid{grid-template-columns:1fr 1fr;}}
@media(max-width:520px){.footer-grid{grid-template-columns:1fr;}.footer-bottom{flex-direction:column;align-items:flex-start;}}

.reveal{opacity:0;transform:translateY(24px);transition:opacity .7s ease,transform .7s ease;}
.reveal.visible{opacity:1;transform:translateY(0);}

/* ============ REQUEST FORM ============ */
.form-layout{
  display:grid;
  grid-template-columns:1fr 320px;
  gap:clamp(1.5rem,3vw,2.5rem);
  align-items:start;
  margin-top:var(--space-form-top);
}
@media(max-width:900px){.form-layout{grid-template-columns:1fr;}}

.form-stack{display:flex;flex-direction:column;gap:1.25rem;}
.form-section{
  padding:clamp(1.25rem,3vw,1.75rem);
}
.form-section h2{
  font-size:1.15rem;
  margin-bottom:.35rem;
  color:var(--gold-light);
}
.form-section .section-note{
  font-size:.85rem;
  color:var(--muted);
  margin-bottom:1.25rem;
}
.form-progress{
  display:flex;flex-wrap:wrap;gap:.5rem;
  margin-bottom:1.5rem;
}
.form-progress span{
  font-size:.72rem;
  letter-spacing:.06em;
  text-transform:uppercase;
  padding:.4rem .75rem;
  border-radius:100px;
  border:1px solid var(--border);
  color:var(--muted);
  transition:all .25s ease;
}
.form-progress span.on{
  color:var(--dark);
  background:linear-gradient(135deg,var(--gold-light),var(--gold));
  border-color:transparent;
}
.form-progress span.done{
  color:var(--gold-light);
  border-color:var(--gold);
  background:rgba(201,168,76,.12);
}

.form-step{display:none;}
.form-step.active{display:block;animation:stepIn .35s ease;}
@keyframes stepIn{
  from{opacity:0;transform:translateX(16px);}
  to{opacity:1;transform:translateX(0);}
}

.step-bar{
  height:4px;
  border-radius:100px;
  background:rgba(201,168,76,.12);
  margin-bottom:1.25rem;
  overflow:hidden;
}
.step-bar-fill{
  height:100%;
  width:16.66%;
  border-radius:100px;
  background:linear-gradient(90deg,var(--gold),var(--gold-light));
  transition:width .35s ease;
}

.step-meta{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:1rem;
  margin-bottom:1rem;
  font-size:.8rem;
  color:var(--muted);
}
.step-meta strong{color:var(--gold-light);font-weight:600;}

.wizard-nav{
  display:flex;
  flex-wrap:wrap;
  gap:.85rem;
  justify-content:space-between;
  align-items:center;
  margin-top:1.5rem;
  padding-top:1.25rem;
  border-top:1px solid var(--border);
}
.wizard-nav .btn[disabled]{opacity:.45;cursor:not-allowed;transform:none!important;}
.wizard-nav .nav-right-btns{display:flex;gap:.75rem;margin-left:auto;flex-wrap:wrap;}

.form-layout.wizard-mode{grid-template-columns:1fr 300px;}
@media(max-width:900px){.form-layout.wizard-mode{grid-template-columns:1fr;}}

.form-side .step-tips h4{
  font-size:.85rem;
  color:var(--gold-light);
  margin-bottom:.5rem;
  font-family:var(--font-body);
  font-weight:600;
  letter-spacing:0;
}

.field-grid{display:grid;grid-template-columns:1fr 1fr;gap:1rem;}
@media(max-width:640px){.field-grid{grid-template-columns:1fr;}}
.field-grid .full{grid-column:1 / -1;}

.field{display:flex;flex-direction:column;gap:.4rem;}
.field label{
  font-size:.82rem;
  font-weight:500;
  color:rgba(248,246,240,.88);
}
.field label .req{color:var(--gold);margin-left:.15rem;}
.field input,
.field select,
.field textarea{
  width:100%;
  padding:.8rem 1rem;
  border-radius:12px;
  border:1px solid var(--border);
  background:rgba(5,10,18,.65);
  color:var(--white);
  font:inherit;
  font-size:.92rem;
  transition:border-color .2s ease, box-shadow .2s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus{
  outline:none;
  border-color:var(--gold);
  box-shadow:0 0 0 3px rgba(201,168,76,.15);
}
.field textarea{min-height:110px;resize:vertical;}
.field select{
  appearance:none;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23c9a84c' d='M6 8 0 0h12z'/%3E%3C/svg%3E");
  background-repeat:no-repeat;
  background-position:right 1rem center;
  padding-right:2.5rem;
}
.field .hint{font-size:.75rem;color:var(--muted);}

.choice-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:.75rem;}
@media(max-width:640px){.choice-grid{grid-template-columns:1fr;}}
.choice{
  position:relative;
  display:flex;align-items:flex-start;gap:.75rem;
  padding:1rem;
  border-radius:14px;
  border:1px solid var(--border);
  background:rgba(5,10,18,.4);
  cursor:pointer;
  transition:border-color .2s ease, background .2s ease;
}
.choice:hover{border-color:var(--border-hover);}
.choice input{position:absolute;opacity:0;pointer-events:none;}
.choice:has(input:checked){
  border-color:var(--gold);
  background:rgba(201,168,76,.1);
}
.choice .tick{
  width:18px;height:18px;border-radius:4px;flex-shrink:0;margin-top:.1rem;
  border:1.5px solid var(--border);
  display:flex;align-items:center;justify-content:center;
}
.choice:has(input[type="radio"]) .tick{border-radius:50%;}
.choice:has(input:checked) .tick{
  border-color:var(--gold);
  background:var(--gold);
}
.choice:has(input:checked) .tick::after{
  content:"";
  width:8px;height:5px;
  border-left:2px solid var(--dark);
  border-bottom:2px solid var(--dark);
  transform:rotate(-45deg) translateY(-1px);
}
.choice b{display:block;font-size:.9rem;font-weight:600;margin-bottom:.15rem;}
.choice span{display:block;font-size:.78rem;color:var(--muted);line-height:1.4;}

.form-actions{
  display:flex;flex-wrap:wrap;gap:.85rem;
  justify-content:space-between;align-items:center;
  padding-top:.5rem;
}
.form-side{
  position:sticky;top:100px;
  padding:1.5rem;
}
.form-side h3{font-size:1rem;margin-bottom:.75rem;color:var(--gold-light);}
.form-side p{font-size:.85rem;color:var(--muted);margin-bottom:1rem;}
.form-side ul{display:flex;flex-direction:column;gap:.55rem;margin-bottom:1.25rem;}
.form-side li{
  font-size:.82rem;color:rgba(248,246,240,.78);
  padding-left:1rem;position:relative;
}
.form-side li::before{
  content:"";position:absolute;left:0;top:.55em;
  width:6px;height:6px;border-radius:50%;background:var(--gold);
}
.form-side .phone{
  display:block;font-family:var(--font-display);font-size:1.1rem;
  color:var(--gold-light);margin-top:.5rem;
}

.form-success{
  display:none;
  text-align:center;
  padding:clamp(2rem,5vw,3rem);
}
.form-success.show{display:block;}
.form-success h2{font-size:clamp(1.4rem,3vw,2rem);margin:.75rem 0 1rem;}
.form-success p{color:var(--muted);max-width:48ch;margin:0 auto 1.5rem;}
.form-success .summary{
  text-align:left;
  max-width:640px;
  margin:0 auto 1.75rem;
  padding:1.25rem;
  font-size:.88rem;
  color:rgba(248,246,240,.82);
  white-space:pre-wrap;
  line-height:1.6;
}
#requestForm.hide{display:none;}
.consent{
  display:flex;gap:.75rem;align-items:flex-start;
  font-size:.85rem;color:var(--muted);
}
.consent input{margin-top:.25rem;accent-color:var(--gold);}

