:root{
  --clr-bg:#FAF5EF;
  --clr-bg-alt:#F1E7D8;
  --clr-surface:#FFFDFB;
  --clr-ink:#2B241D;
  --clr-ink-soft:#5A5044;
  --clr-ink-faint:#8A7F70;
  --clr-primary:#B5502E;
  --clr-primary-dark:#8F3D22;
  --clr-secondary:#2F4A44;
  --clr-secondary-light:#3E625A;
  --clr-accent:#D9A441;
  --clr-highlight-bg:#F3D48F;
  --clr-border:#E4D8C7;

  --sh-sm: 2px 3px 6px rgba(43,36,29,.07);
  --sh-md: 4px 8px 18px rgba(43,36,29,.09);
  --sh-lg: 8px 18px 36px rgba(43,36,29,.13);
  --sh-xl: 14px 30px 60px rgba(43,36,29,.17);

  --r-sm:10px;
  --r-md:16px;
  --r-lg:24px;
  --r-xl:32px;
  --r-full:999px;

  --ff-base:'Inter','Geist',sans-serif;
}

*,*::before,*::after{box-sizing:border-box;}
html{scroll-behavior:smooth;overflow-x:hidden;}
body{
  margin:0;
  font-family:var(--ff-base);
  background:var(--clr-bg);
  color:var(--clr-ink);
  line-height:1.65;
  font-size:1rem;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
body:has(.mob-menu.open){overflow:hidden;}

img{max-width:100%;display:block;}
a{color:inherit;text-decoration:none;}
h1,h2,h3,h4{font-family:var(--ff-base);color:var(--clr-ink);line-height:1.2;margin:0 0 .6em;font-weight:700;}
p{margin:0 0 1em;color:var(--clr-ink-soft);}
ul{margin:0;padding:0;}
button{font-family:var(--ff-base);cursor:pointer;border:none;background:none;}

.hl{
  background-color:transparent;
  transition:background-color .6s ease, box-shadow .6s ease;
  border-radius:4px;
  padding:0 .15em;
}
.hl.hl-active{
  background-color:var(--clr-highlight-bg);
  box-shadow:0 0 0 3px var(--clr-highlight-bg);
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.5rem;
  padding:.9rem 1.8rem;
  border-radius:var(--r-md);
  font-weight:600;
  font-size:.98rem;
  min-height:48px;
  transition:transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  white-space:nowrap;
}
.btn-primary{
  background:var(--clr-primary);
  color:#fff;
  box-shadow:var(--sh-md);
}
.btn-primary:hover{
  background:var(--clr-primary-dark);
  transform:translateY(-3px);
  box-shadow:var(--sh-lg);
}
.btn-ghost{
  background:transparent;
  color:var(--clr-secondary);
  border:2px solid var(--clr-border);
}
.btn-ghost:hover{
  border-color:var(--clr-secondary);
  transform:translateY(-3px);
  box-shadow:var(--sh-sm);
}


.hdr{
  position:fixed;
  top:0;left:0;right:0;
  background:var(--clr-surface);
  z-index:100;
  box-shadow:var(--sh-sm);
  transition:box-shadow .3s ease;
}
.hdr.scrolled{box-shadow:var(--sh-md);}
.hdr-inner{
  max-width:1280px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:.9rem 1.75rem;
  gap:1rem;
}
.hdr-nav{display:flex;align-items:center;gap:1.8rem;flex:1;}
.hdr-nav-left{justify-content:flex-start;}
.hdr-nav-right{justify-content:flex-end;}
.hdr-link{
  font-weight:500;
  font-size:.95rem;
  color:var(--clr-ink-soft);
  position:relative;
  padding:.4rem 0;
  transition:color .25s ease;
}
.hdr-link::after{
  content:'';
  position:absolute;
  left:0;bottom:0;
  width:0;height:2px;
  background:var(--clr-primary);
  transition:width .3s ease;
}
.hdr-link:hover,.hdr-link.is-active{color:var(--clr-ink);}
.hdr-link:hover::after,.hdr-link.is-active::after{width:100%;}
.hdr-cta{
  background:var(--clr-primary);
  color:#fff;
  padding:.65rem 1.35rem;
  border-radius:var(--r-md);
  font-weight:600;
  font-size:.92rem;
  box-shadow:var(--sh-sm);
  transition:background .25s ease, transform .25s ease, box-shadow .25s ease;
}
.hdr-cta:hover{background:var(--clr-primary-dark);transform:translateY(-2px);box-shadow:var(--sh-md);}
.hdr-logo{
  display:flex;
  align-items:center;
  gap:.6rem;
  font-weight:800;
  font-size:1.15rem;
  color:var(--clr-ink);
  flex-shrink:0;
}
.hdr-burger{
  display:none;
  flex-direction:column;
  gap:5px;
  width:44px;
  height:44px;
  align-items:center;
  justify-content:center;
}
.hdr-burger span{
  width:24px;height:2px;background:var(--clr-ink);border-radius:2px;transition:transform .3s ease, opacity .3s ease;
}


.mob-menu{
  position:fixed;inset:0;
  background:var(--clr-secondary);
  transform:translateY(-100%);
  transition:transform .55s cubic-bezier(.65,0,.35,1);
  z-index:200;
  display:flex;
  align-items:center;
  justify-content:center;
}
.mob-menu.open{transform:translateY(0);}
.mob-menu-inner{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:1.8rem;
  width:100%;
  padding:2rem;
}
.mob-link{
  font-size:1.6rem;
  font-weight:700;
  color:#F6EFE3;
  opacity:0;
  transform:translateY(-24px);
  transition:opacity .4s ease, transform .4s ease;
}
.mob-menu.open .mob-link:nth-child(1){transition-delay:.12s;opacity:1;transform:translateY(0);}
.mob-menu.open .mob-link:nth-child(2){transition-delay:.22s;opacity:1;transform:translateY(0);}
.mob-menu.open .mob-link:nth-child(3){transition-delay:.32s;opacity:1;transform:translateY(0);}
.mob-menu.open .mob-link:nth-child(4){transition-delay:.42s;opacity:1;transform:translateY(0);}
.mob-close{
  position:absolute;
  bottom:2.5rem;
  color:#F6EFE3;
  font-weight:600;
  font-size:1rem;
  display:flex;
  align-items:center;
  gap:.5rem;
  padding:.8rem 1.6rem;
  border:2px solid rgba(246,239,227,.4);
  border-radius:var(--r-full);
  opacity:0;
  transition:opacity .4s ease .5s, border-color .3s ease;
}
.mob-menu.open .mob-close{opacity:1;}
.mob-close:hover{border-color:#F6EFE3;}


.hro{padding:calc(var(--sp-nav,88px) + 2.5rem) 1.75rem 0;background:linear-gradient(180deg,var(--clr-bg) 0%,var(--clr-bg-alt) 100%);}
.hro-inner{
  max-width:1280px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:3rem;
  align-items:center;
  padding-top:2rem;
  padding-bottom:3rem;
}
.hro-tag{
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  background:var(--clr-surface);
  border:1px solid var(--clr-border);
  color:var(--clr-secondary);
  padding:.5rem 1rem;
  border-radius:var(--r-full);
  font-size:.85rem;
  font-weight:600;
  margin-bottom:1.3rem;
  box-shadow:var(--sh-sm);
}
.hro-title{
  font-size:clamp(2.2rem,4.2vw + 1rem,3.6rem);
  font-weight:800;
  letter-spacing:-.02em;
  margin-bottom:1.1rem;
}
.typed-wrap{color:var(--clr-primary);border-bottom:4px solid var(--clr-accent);}
.hro-sub{font-size:1.1rem;max-width:52ch;margin-bottom:1.8rem;}
.hro-actions{display:flex;gap:1rem;flex-wrap:wrap;}
.hro-media{position:relative;}
.hro-img{
  border-radius:var(--r-xl);
  box-shadow:var(--sh-xl);
  aspect-ratio:4/5;
  object-fit:cover;
  width:100%;
}
.hro-trust{
  max-width:1280px;
  margin:0 auto;
  display:flex;
  flex-wrap:wrap;
  gap:1.2rem 2.4rem;
  justify-content:space-between;
  border-top:1px solid var(--clr-border);
  padding:2rem 0;
}
.trust-itm{
  display:flex;
  align-items:center;
  gap:.6rem;
  font-size:.92rem;
  font-weight:600;
  color:var(--clr-ink-soft);
}
.trust-itm i{color:var(--clr-primary);font-size:1.1rem;}


.sec{padding:clamp(3.5rem,6vw,6.5rem) 1.75rem;}
.sec-alt{background:var(--clr-bg-alt);}
.sec-head{max-width:760px;margin:0 auto 3rem;text-align:center;}
.sec-tag{
  display:inline-block;
  font-size:.85rem;
  font-weight:700;
  letter-spacing:.04em;
  text-transform:uppercase;
  color:var(--clr-primary);
  margin-bottom:.8rem;
}
.sec-title{font-size:clamp(1.8rem,2.6vw + 1rem,2.7rem);}
.sec-sub{font-size:1.05rem;max-width:60ch;margin:0 auto;}


.mock{
  max-width:920px;
  margin:0 auto;
  background:var(--clr-surface);
  border-radius:var(--r-xl);
  box-shadow:var(--sh-lg);
  border:1px solid var(--clr-border);
  overflow:hidden;
}
.mock-head{
  display:flex;
  align-items:center;
  gap:.5rem;
  padding:1rem 1.5rem;
  background:var(--clr-bg-alt);
  border-bottom:1px solid var(--clr-border);
}
.mock-dot{width:11px;height:11px;border-radius:50%;}
.mock-title{margin-left:.6rem;font-weight:600;font-size:.9rem;color:var(--clr-ink-soft);}
.mock-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:1px;
  background:var(--clr-border);
}
.mock-card{
  background:var(--clr-surface);
  padding:1.6rem 1.4rem;
  transition:background .3s ease;
}
.mock-card:hover{background:var(--clr-bg-alt);}
.mock-card i{color:var(--clr-primary);font-size:1.3rem;margin-bottom:.7rem;}
.mock-lbl{font-weight:700;font-size:.85rem;text-transform:uppercase;letter-spacing:.03em;color:var(--clr-ink-faint);margin-bottom:.4rem;}
.mock-txt{font-size:.92rem;color:var(--clr-ink-soft);margin:0;}
.mock-log{max-width:100%;}
.log-row{
  display:flex;
  justify-content:space-between;
  gap:1rem;
  padding:.9rem 1.4rem;
  border-bottom:1px solid var(--clr-border);
  font-size:.92rem;
}
.log-row:last-child{border-bottom:none;}
.log-lbl{font-weight:700;color:var(--clr-ink-faint);flex-shrink:0;width:130px;}


.dash{
  display:flex;
  flex-direction:column;
  align-items:center;
  max-width:900px;
  margin:0 auto;
}
.crd{
  width:100%;
  background:var(--clr-surface);
  border-radius:var(--r-lg);
  box-shadow:var(--sh-lg);
  border:1px solid var(--clr-border);
  overflow:hidden;
  position:relative;
  transition:transform .4s ease, box-shadow .4s ease, opacity .3s ease;
  margin-top:-2.2rem;
}
.dash .crd:first-child{margin-top:0;}
.dash .crd:nth-child(odd){transform:translateX(-2.5%);}
.dash .crd:nth-child(even){transform:translateX(2.5%);}
.dash .crd:hover{transform:translateY(-10px) scale(1.015);box-shadow:var(--sh-xl);z-index:5;}
.dash:has(.crd:hover) .crd:not(:hover){opacity:.9;}
.crd-lg{max-width:800px;}
.crd-md{max-width:680px;}
.crd-sm{max-width:560px;}
.crd:has(.crd-img){display:grid;grid-template-columns:38% 62%;align-items:stretch;}
.crd-img{width:100%;height:100%;min-height:220px;object-fit:cover;}
.crd-body{padding:2rem 2.2rem;}
.crd:not(:has(.crd-img)) .crd-body{padding:1.8rem 2.2rem;}
.crd-ico{
  width:52px;height:52px;
  border-radius:var(--r-md);
  background:var(--clr-bg-alt);
  color:var(--clr-primary);
  display:flex;align-items:center;justify-content:center;
  font-size:1.3rem;
  margin-bottom:1rem;
}
.crd-title{font-size:1.3rem;margin-bottom:.6rem;}
.crd-txt{margin:0;font-size:.98rem;}


.val-grid{
  max-width:1180px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:1.6rem;
}
.val-crd{
  background:var(--clr-surface);
  border:1px solid var(--clr-border);
  border-radius:var(--r-lg);
  padding:2rem 1.8rem;
  box-shadow:var(--sh-sm);
  transition:transform .35s ease, box-shadow .35s ease;
}
.val-crd:hover{transform:translateY(-8px);box-shadow:var(--sh-lg);}
.val-ico{
  width:54px;height:54px;
  border-radius:var(--r-md);
  background:var(--clr-secondary);
  color:#F6EFE3;
  display:flex;align-items:center;justify-content:center;
  font-size:1.35rem;
  margin-bottom:1.1rem;
}
.val-crd h3{font-size:1.2rem;margin-bottom:.5rem;}
.val-crd p{font-size:.95rem;margin:0;}


.tml{
  max-width:1100px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:1.6rem;
}
.tml-step{
  background:var(--clr-surface);
  border-radius:var(--r-lg);
  padding:1.8rem 1.6rem;
  box-shadow:var(--sh-sm);
  border-top:4px solid var(--clr-primary);
  transition:transform .3s ease, box-shadow .3s ease;
}
.tml-step:hover{transform:translateY(-6px);box-shadow:var(--sh-md);}
.tml-num{font-size:2.2rem;font-weight:800;color:var(--clr-accent);display:block;margin-bottom:.5rem;}
.tml-txt h3{font-size:1.1rem;margin-bottom:.4rem;}
.tml-txt p{font-size:.92rem;margin:0;}


.who-grid{max-width:1000px;margin:0 auto;display:flex;flex-direction:column;gap:2.4rem;}
.who-itm{
  display:flex;
  align-items:center;
  gap:2rem;
  background:var(--clr-surface);
  border-radius:var(--r-lg);
  padding:1.8rem;
  box-shadow:var(--sh-sm);
  border:1px solid var(--clr-border);
}
.who-itm:nth-child(even){flex-direction:row-reverse;}
.who-img{width:200px;height:150px;object-fit:cover;border-radius:var(--r-md);flex-shrink:0;box-shadow:var(--sh-sm);}
.who-txt h3{font-size:1.2rem;margin-bottom:.5rem;}
.who-txt p{margin:0;font-size:.97rem;}


.cta{padding-top:0;}
.cta-inner{
  max-width:1180px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:3rem;
  align-items:center;
  background:var(--clr-secondary);
  border-radius:var(--r-xl);
  padding:3rem;
  box-shadow:var(--sh-xl);
}
.cta:has(.highlighted){background:linear-gradient(135deg,var(--clr-secondary),var(--clr-secondary-light));}
.cta-txt h2{color:#F6EFE3;font-size:clamp(1.7rem,2.4vw + 1rem,2.4rem);}
.cta-txt p{color:#D8E2DE;}
.highlighted{
  display:inline-block;
  background:var(--clr-accent);
  color:var(--clr-secondary);
  font-weight:700;
  font-size:.82rem;
  text-transform:uppercase;
  letter-spacing:.04em;
  padding:.4rem .9rem;
  border-radius:var(--r-full);
  margin-bottom:1rem;
}
.cta-actions{display:flex;gap:1rem;flex-wrap:wrap;margin-top:1.5rem;}
.cta .btn-ghost{color:#F6EFE3;border-color:rgba(246,239,227,.4);}
.cta .btn-ghost:hover{border-color:#F6EFE3;}
.cta-img{border-radius:var(--r-lg);box-shadow:var(--sh-lg);width:100%;aspect-ratio:4/3;object-fit:cover;}


.pg-hero{padding:calc(88px + 3rem) 1.75rem 3rem;background:linear-gradient(180deg,var(--clr-bg),var(--clr-bg-alt));text-align:center;}
.pg-hero-inner{max-width:760px;margin:0 auto;}
.pg-hero-inner h1{font-size:clamp(2.2rem,3.6vw + 1rem,3.2rem);}
.pg-hero-inner p{font-size:1.08rem;max-width:60ch;margin:0 auto;}
.thanks-hero .sec-tag i{color:var(--clr-primary);margin-right:.4rem;}


.split{max-width:1180px;margin:0 auto;display:grid;grid-template-columns:1fr 1fr;gap:3rem;align-items:center;}
.split-img-left{grid-template-areas:"media txt";}
.split-img-left .split-media{grid-area:media;}
.split-img-left .split-txt{grid-area:txt;}
.split-txt p{font-size:1.02rem;}
.split-img{border-radius:var(--r-lg);box-shadow:var(--sh-lg);width:100%;aspect-ratio:5/4;object-fit:cover;}


.think-grid{max-width:1180px;margin:0 auto;display:grid;grid-template-columns:repeat(4,1fr);gap:1.5rem;}
.think-grid-3{grid-template-columns:repeat(3,1fr);}
.think-crd{
  background:var(--clr-surface);
  border:1px solid var(--clr-border);
  border-radius:var(--r-lg);
  padding:1.8rem;
  box-shadow:var(--sh-sm);
  transition:transform .3s ease, box-shadow .3s ease;
}
.think-crd:hover{transform:translateY(-6px);box-shadow:var(--sh-md);}
.think-crd h3{font-size:1.1rem;margin-bottom:.5rem;}
.think-crd p{font-size:.94rem;margin:0;}
.think-crd-wide{grid-column:span 4;display:grid;grid-template-columns:1fr 240px;gap:1.5rem;align-items:center;}
.think-crd-wide img.think-crd-img{border-radius:var(--r-md);height:100%;object-fit:cover;box-shadow:var(--sh-sm);}
.wide-img{max-width:1180px;margin:2.5rem auto 0;border-radius:var(--r-lg);box-shadow:var(--sh-lg);width:100%;aspect-ratio:16/7;object-fit:cover;}


.ex-box{
  background:var(--clr-bg-alt);
  border-left:4px solid var(--clr-ink-faint);
  border-radius:var(--r-sm);
  padding:1rem 1.2rem;
  margin-bottom:1rem;
}
.ex-box-after{border-left-color:var(--clr-primary);background:#FBF0E5;}
.ex-label{font-weight:700;font-size:.8rem;text-transform:uppercase;letter-spacing:.04em;color:var(--clr-ink-faint);margin-bottom:.4rem;}
.ex-txt{margin:0;font-size:.96rem;font-style:italic;}

.back-link{text-align:center;margin-top:2.5rem;}


.side-cta{
  position:fixed;
  top:50%;
  right:0;
  transform:translateY(-50%) translateX(100%);
  opacity:0;
  z-index:150;
  transition:transform .45s ease, opacity .45s ease;
}
.side-cta.visible{transform:translateY(-50%) translateX(0);opacity:1;}
.side-cta-btn{
  display:flex;
  align-items:center;
  gap:.6rem;
  background:var(--clr-primary);
  color:#fff;
  padding:1rem 1.3rem;
  border-radius:var(--r-md) 0 0 var(--r-md);
  box-shadow:var(--sh-lg);
  font-weight:600;
  font-size:.9rem;
  transition:padding .3s ease, background .3s ease;
}
.side-cta-btn:hover{background:var(--clr-primary-dark);padding-right:1.7rem;}


.ftr{background:var(--clr-secondary);color:#D8E2DE;margin-top:auto;}
.ftr-top{
  max-width:1280px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr 1.2fr;
  gap:2.5rem;
  padding:4rem 1.75rem 2.5rem;
}
.ftr-brand p{color:#B9C6C1;font-size:.92rem;margin-top:1rem;}
.ftr-brand .hdr-logo{color:#F6EFE3;}
.ftr-col h4{color:#F6EFE3;font-size:.95rem;text-transform:uppercase;letter-spacing:.04em;margin-bottom:1.1rem;}
.ftr-col a,.ftr-col p{
  display:block;
  color:#B9C6C1;
  font-size:.92rem;
  margin-bottom:.7rem;
  transition:color .25s ease;
}
.ftr-col a:hover{color:#F6EFE3;}
.ftr-col p i{margin-right:.5rem;color:var(--clr-accent);}
.ftr-bottom{
  border-top:1px solid rgba(216,226,222,.15);
  text-align:center;
  padding:1.5rem 1.75rem;
  font-size:.85rem;
  color:#9FB0AA;
}
.ftr-bottom p {
  color: white;
}


.contact-main{padding-top:88px;}
.frm-sec{max-width:760px;margin:0 auto;padding:3.5rem 1.75rem 5rem;}
.frm-head{text-align:center;margin-bottom:2.5rem;}
.frm-head h1{font-size:clamp(1.9rem,3vw + 1rem,2.6rem);}
.frm{
  background:var(--clr-surface);
  border:1px solid var(--clr-border);
  border-radius:var(--r-xl);
  padding:2.5rem;
  box-shadow:var(--sh-lg);
  display:flex;
  flex-direction:column;
  gap:1.6rem;
}
.frm-grp{display:flex;flex-direction:column;gap:.5rem;position:relative;}
.frm-grp label{font-weight:600;font-size:.94rem;}
.frm-grp input[type="text"],
.frm-grp input[type="email"],
.frm-grp input[type="tel"],
.frm-grp textarea{
  border:2px solid var(--clr-border);
  border-radius:var(--r-md);
  padding:.85rem 1rem;
  font-size:1rem;
  font-family:var(--ff-base);
  background:var(--clr-bg);
  color:var(--clr-ink);
  transition:border-color .25s ease, box-shadow .25s ease;
  min-height:48px;
}
.frm-grp textarea{min-height:140px;resize:vertical;}
.frm-grp:has(:focus){box-shadow:var(--sh-sm);}
.frm-grp input:focus,.frm-grp textarea:focus{outline:none;border-color:var(--clr-primary);}
.frm-help{font-size:.84rem;color:var(--clr-ink-faint);}
.frm-chk .chk-label{display:flex;align-items:flex-start;gap:.7rem;font-size:.92rem;color:var(--clr-ink-soft);cursor:pointer;}
.frm-chk input{width:20px;height:20px;flex-shrink:0;margin-top:.15rem;accent-color:var(--clr-primary);}
.frm-chk a{color:var(--clr-primary);text-decoration:underline;}
.frm-submit{align-self:flex-start;margin-top:.5rem;}

.contact-info{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:1.6rem;
  margin-top:2.5rem;
}
.info-blk{
  background:var(--clr-bg-alt);
  border-radius:var(--r-lg);
  padding:1.8rem;
  border:1px solid var(--clr-border);
}
.info-blk h3{font-size:1.05rem;margin-bottom:1rem;display:flex;align-items:center;gap:.5rem;}
.info-blk h3 i{color:var(--clr-primary);}
.hours-list{list-style:none;display:flex;flex-direction:column;gap:.6rem;margin-bottom:.8rem;}
.hours-list li{display:flex;justify-content:space-between;font-size:.92rem;color:var(--clr-ink-soft);}
.info-blk p{font-size:.92rem;margin-bottom:.5rem;}
.map-wrap{margin-top:2rem;border-radius:var(--r-lg);overflow:hidden;box-shadow:var(--sh-md);border:1px solid var(--clr-border);}


.lgl{max-width:820px;margin:0 auto;padding:calc(88px + 3rem) 1.75rem 5rem;}
.lgl-hero{margin-bottom:2.5rem;}
.lgl-hero h1{font-size:clamp(2rem,3vw + 1rem,2.6rem);}
.lgl-hero p{color:var(--clr-ink-faint);font-size:.92rem;}
.lgl-body h2{font-size:1.35rem;margin-top:2.2rem;margin-bottom:.8rem;}
.lgl-body p{font-size:.98rem;}
.lgl-body ul{padding-left:1.3rem;margin-bottom:1rem;}
.lgl-body ul li{font-size:.96rem;color:var(--clr-ink-soft);margin-bottom:.55rem;list-style:disc;}
.lgl-sec{margin-bottom:1.6rem;}
.lgl-sec h2{margin-top:0;}
.ck-table{width:100%;border-collapse:collapse;margin:1rem 0 1.5rem;font-size:.9rem;}
.ck-table th,.ck-table td{border:1px solid var(--clr-border);padding:.7rem .9rem;text-align:left;}
.ck-table th{background:var(--clr-bg-alt);font-weight:700;}


.ck-card{
  position:fixed;
  bottom:24px;right:24px;
  width:320px;
  max-width:calc(100vw - 32px);
  background:var(--clr-surface);
  border-radius:var(--r-lg);
  box-shadow:var(--sh-xl);
  border:1px solid var(--clr-border);
  padding:1.6rem;
  z-index:300;
  transform:translateY(140%);
  opacity:0;
  transition:transform .5s cubic-bezier(.34,1.4,.64,1), opacity .4s ease;
}
.ck-card.show{transform:translateY(0);opacity:1;}
.ck-card.hide{transform:translateY(140%);opacity:0;}
.ck-icon{font-size:1.8rem;color:var(--clr-primary);margin-bottom:.8rem;}
.ck-msg{font-size:.92rem;color:var(--clr-ink-soft);margin-bottom:1.2rem;}
.ck-actions{display:flex;flex-direction:column;gap:.7rem;}
.ck-actions .btn{width:100%;font-size:.88rem;padding:.75rem 1rem;min-height:44px;}
.btn-text{background:none;color:var(--clr-ink-faint);font-weight:600;font-size:.85rem;text-decoration:underline;padding:.4rem;min-height:auto;}
.ck-toggles{margin-top:1rem;padding-top:1rem;border-top:1px solid var(--clr-border);display:flex;flex-direction:column;gap:.7rem;}
.ck-toggle-row{display:flex;align-items:center;justify-content:space-between;font-size:.88rem;color:var(--clr-ink-soft);}
.ck-toggle-row input{width:20px;height:20px;accent-color:var(--clr-primary);}


@media (max-width:1024px){
  .hro-inner{grid-template-columns:1fr;}
  .hro-media{order:-1;}
  .mock-grid{grid-template-columns:repeat(2,1fr);}
  .tml{grid-template-columns:repeat(2,1fr);}
  .think-grid{grid-template-columns:repeat(2,1fr);}
  .think-grid-3{grid-template-columns:repeat(2,1fr);}
  .think-crd-wide{grid-column:span 2;grid-template-columns:1fr;}
  .cta-inner{grid-template-columns:1fr;}
  .cta-media{order:-1;}
  .ftr-top{grid-template-columns:1fr 1fr;}
  .contact-info{grid-template-columns:1fr;}
}
@media (max-width:840px){
  .hdr-nav{display:none;}
  .hdr-burger{display:flex;}
  .split{grid-template-columns:1fr;}
  .split-img-left{grid-template-areas:"media" "txt";}
  .who-itm,.who-itm:nth-child(even){flex-direction:column;text-align:center;}
  .who-img{width:100%;height:200px;}
}
@media (max-width:640px){
  .hdr-inner{padding:.8rem 1.25rem;}
  .hro{padding-left:1.25rem;padding-right:1.25rem;}
  .hro-trust{flex-direction:column;gap:1rem;}
  .sec{padding:2.8rem 1.25rem;}
  .mock-grid{grid-template-columns:1fr;}
  .tml{grid-template-columns:1fr;}
  .think-grid,.think-grid-3{grid-template-columns:1fr;}
  .think-crd-wide{grid-column:span 1;}
  .crd:has(.crd-img){grid-template-columns:1fr;}
  .crd-img{min-height:180px;}
  .ftr-top{grid-template-columns:1fr;padding:3rem 1.25rem 2rem;}
  .frm{padding:1.8rem;}
  .ck-card{right:12px;bottom:12px;width:calc(100vw - 24px);}
  .log-row{flex-direction:column;gap:.2rem;}
  .log-lbl{width:auto;}
}