:root{
  --ink-50:#f5f6f7;
  --ink-100:#e7eaec;
  --ink-200:#ccd2d7;
  --ink-300:#a9b1b9;
  --ink-400:#7c8791;
  --ink-500:#5c6670;
  --ink-600:#454e57;
  --ink-700:#313941;
  --ink-800:#21272c;
  --ink-900:#14181b;
  --ink-950:#0b0d0f;

  --accent-300:#ecbd8a;
  --accent-400:#dd9a58;
  --accent-500:#c17a3a;
  --accent-600:#9f612b;
  --accent-glow:rgba(193,122,58,0.45);

  --radius-sm:8px;
  --radius-md:14px;
  --radius-lg:22px;
  --radius-xl:32px;

  --shadow-sm:0 2px 8px rgba(11,13,15,0.06);
  --shadow-md:0 8px 24px rgba(11,13,15,0.10), 0 2px 6px rgba(11,13,15,0.06);
  --shadow-lg:0 20px 48px rgba(11,13,15,0.16), 0 6px 16px rgba(11,13,15,0.08);
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;overflow-x:hidden;}
body{
  margin:0;
  font-family:'Nunito Sans',sans-serif;
  background:var(--ink-50);
  color:var(--ink-800);
  line-height:1.7;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block;}
a{color:inherit;text-decoration:none;}
h1,h2,h3,h4{font-family:'Nunito Sans',sans-serif;color:var(--ink-900);margin:0;}
p{margin:0 0 1em 0;}
button{font-family:inherit;cursor:pointer;}

.Section{padding:clamp(3.5rem,8vw,7rem) clamp(1.25rem,5vw,3rem);max-width:1280px;margin:0 auto;}
.Section--muted{background:var(--ink-100);border-radius:var(--radius-xl);margin:0 auto;max-width:100%;}
.Section--dark{background:var(--ink-900);border-radius:0;color:var(--ink-100);}
.Section--dark .Section-title,.Section--dark h2,.Section--dark h3{color:var(--ink-50);}
.Section--cta{padding-top:0;}
.Section-header{max-width:760px;margin:0 auto clamp(2.5rem,5vw,4rem);text-align:center;}
.Section-eyebrow{
  text-transform:uppercase;letter-spacing:0.14em;font-size:0.8rem;font-weight:700;
  color:var(--accent-600);margin:0 0 0.75rem;
}
.Section-eyebrow--light{color:var(--accent-300);}
.Section-title{font-size:clamp(1.8rem,3.4vw,2.6rem);font-weight:800;line-height:1.2;margin-bottom:0.9rem;}
.Section-title--light{color:var(--ink-50);}
.Section-lead{color:var(--ink-600);font-size:1.05rem;max-width:640px;margin:0 auto;}
.Section--dark .Section-lead{color:var(--ink-300);}


.SiteHeader{
  position:sticky;top:0;z-index:100;
  background:rgba(245,246,247,0.92);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  border-bottom:1px solid var(--ink-200);
  transition:box-shadow 0.35s ease;
}
.SiteHeader-inner{
  max-width:1280px;margin:0 auto;padding:0.9rem clamp(1.25rem,5vw,3rem);
  display:flex;align-items:center;justify-content:space-between;
}
.SiteHeader-logo{display:flex;align-items:center;gap:0.6rem;}
.SiteHeader-logoImg{width:36px;height:36px;}
.SiteHeader-logoText{font-weight:800;font-size:1.15rem;color:var(--ink-900);letter-spacing:-0.01em;}
.SiteHeader-nav{display:none;}
.SiteHeader-navList{display:flex;align-items:center;gap:2rem;list-style:none;margin:0;padding:0;}
.SiteHeader-navLink{
  font-weight:600;font-size:0.95rem;color:var(--ink-600);
  padding:0.4rem 0;position:relative;transition:color 0.25s ease;
}
.SiteHeader-navLink:hover,.SiteHeader-navLink.is-active{color:var(--ink-900);}
.SiteHeader-navLink::after{
  content:"";position:absolute;left:0;bottom:-2px;width:0;height:2px;background:var(--accent-500);
  transition:width 0.3s ease;
}
.SiteHeader-navLink:hover::after,.SiteHeader-navLink.is-active::after{width:100%;}
.SiteHeader-navLink--cta{
  background:var(--ink-900);color:var(--ink-50)!important;padding:0.65rem 1.3rem;border-radius:var(--radius-sm);
  box-shadow:0 6px 18px rgba(20,24,27,0.25);
}
.SiteHeader-navLink--cta::after{display:none;}
.SiteHeader-navLink--cta:hover{background:var(--accent-500);box-shadow:0 8px 22px var(--accent-glow);}

.SiteHeader-toggle{
  display:flex;flex-direction:column;justify-content:center;gap:5px;
  width:44px;height:44px;background:none;border:none;padding:0;
}
.SiteHeader-toggle span{width:24px;height:2px;background:var(--ink-800);border-radius:2px;transition:all 0.3s ease;margin:0 auto;}
.SiteHeader-toggle[aria-expanded="true"] span:nth-child(1){transform:translateY(7px) rotate(45deg);}
.SiteHeader-toggle[aria-expanded="true"] span:nth-child(2){opacity:0;}
.SiteHeader-toggle[aria-expanded="true"] span:nth-child(3){transform:translateY(-7px) rotate(-45deg);}

.SiteHeader-mobileMenu{
  max-height:0;overflow:hidden;transition:max-height 0.4s ease;background:var(--ink-50);
  border-top:1px solid var(--ink-200);
}
.SiteHeader-mobileMenu.is-open{max-height:600px;}
.SiteHeader-mobileList{list-style:none;margin:0;padding:0.5rem 1.25rem 1rem;}
.SiteHeader-mobileItem{border-bottom:1px solid var(--ink-200);}
.SiteHeader-mobileItem:last-child{border-bottom:none;}
.SiteHeader-mobileRow{display:flex;align-items:center;justify-content:space-between;padding:0.9rem 0;}
.SiteHeader-mobileRow a{font-weight:700;font-size:1rem;color:var(--ink-900);min-height:44px;display:flex;align-items:center;}
.SiteHeader-mobileChevron{
  width:36px;height:36px;display:flex;align-items:center;justify-content:center;
  background:none;border:none;color:var(--ink-500);transition:transform 0.3s ease;
}
.SiteHeader-mobileChevron.is-open{transform:rotate(180deg);}
.SiteHeader-mobileSub{
  max-height:0;overflow:hidden;color:var(--ink-500);font-size:0.9rem;transition:max-height 0.3s ease,padding 0.3s ease;
  padding:0 0.1rem;
}
.SiteHeader-mobileSub.is-open{max-height:120px;padding-bottom:0.9rem;}

@media(min-width:900px){
  .SiteHeader-nav{display:block;}
  .SiteHeader-toggle{display:none;}
  .SiteHeader-mobileMenu{display:none;}
}


.PageHero{
  padding:clamp(4rem,10vw,7rem) clamp(1.25rem,5vw,3rem) clamp(3rem,7vw,5rem);
  background:linear-gradient(180deg, var(--ink-50) 0%, var(--ink-100) 100%);
  border-bottom:1px solid var(--ink-200);
}
.PageHero-inner{max-width:900px;margin:0 auto;text-align:center;}
.PageHero-eyebrow{
  text-transform:uppercase;letter-spacing:0.16em;font-size:0.8rem;font-weight:700;
  color:var(--accent-600);margin-bottom:1rem;
}
.PageHero-heading{
  font-size:clamp(2.4rem,6vw,4rem);font-weight:800;line-height:1.08;letter-spacing:-0.02em;
  margin-bottom:1.2rem;color:var(--ink-950);
}
.PageHero-heading--sub{font-size:clamp(2rem,5vw,3.1rem);}
.PageHero-subheading{
  font-size:clamp(1.05rem,1.6vw,1.2rem);color:var(--ink-600);max-width:680px;margin:0 auto 2.5rem;
}
.PageHero-breadcrumb{
  display:flex;align-items:center;justify-content:center;gap:0.4rem;flex-wrap:wrap;
}
.PageHero-step{
  display:flex;flex-direction:column;align-items:center;gap:0.5rem;text-decoration:none;
  min-width:70px;
}
.PageHero-stepDot{
  width:40px;height:40px;border-radius:50%;display:flex;align-items:center;justify-content:center;
  background:var(--ink-50);border:2px solid var(--ink-300);color:var(--ink-500);font-weight:700;
  transition:all 0.3s ease;
}
.PageHero-step.is-active .PageHero-stepDot,.PageHero-step:hover .PageHero-stepDot{
  background:var(--accent-500);border-color:var(--accent-500);color:#fff;
  box-shadow:0 6px 18px var(--accent-glow);
}
.PageHero-stepLabel{font-size:0.78rem;color:var(--ink-500);font-weight:600;text-align:center;}
.PageHero-stepLine{width:32px;height:2px;background:var(--ink-300);margin-top:-22px;}


.ZigzagBlock{
  display:flex;flex-direction:column;gap:2.5rem;align-items:center;
}
.ZigzagBlock--reverse{flex-direction:column;}
.ZigzagBlock-media{width:100%;}
.ZigzagBlock-img{
  border-radius:var(--radius-lg);box-shadow:var(--shadow-lg);width:100%;height:340px;object-fit:cover;
}
.ZigzagBlock-content{width:100%;}
.ZigzagBlock-title{font-size:clamp(1.6rem,3vw,2.1rem);font-weight:800;margin-bottom:1rem;line-height:1.25;}
.ZigzagBlock-text{color:var(--ink-600);font-size:1.02rem;}
.ZigzagBlock-list{list-style:none;margin:1.2rem 0 0;padding:0;display:grid;gap:0.7rem;}
.ZigzagBlock-list li{display:flex;align-items:flex-start;gap:0.6rem;color:var(--ink-700);font-size:0.98rem;}
.ZigzagBlock-list i{color:var(--accent-500);margin-top:0.2rem;}

@media(min-width:900px){
  .ZigzagBlock{flex-direction:row;gap:4rem;align-items:center;}
  .ZigzagBlock--reverse{flex-direction:row-reverse;}
  .ZigzagBlock-media,.ZigzagBlock-content{width:50%;}
}


.Btn{
  display:inline-flex;align-items:center;gap:0.6rem;font-weight:700;font-size:0.95rem;
  padding:0.85rem 1.6rem;border-radius:var(--radius-md);transition:all 0.3s ease;
  border:2px solid transparent;min-height:44px;
}
.Btn--accent{background:var(--accent-500);color:#fff;box-shadow:0 10px 24px var(--accent-glow);}
.Btn--accent:hover{background:var(--accent-600);box-shadow:0 14px 32px var(--accent-glow);transform:translateY(-2px);}
.Btn--outline{background:transparent;border-color:var(--ink-300);color:var(--ink-700);}
.Btn--outline:hover{border-color:var(--accent-500);color:var(--accent-600);}
.Btn--lg{padding:1.05rem 2.1rem;font-size:1.02rem;}


.Timeline{position:relative;max-width:900px;margin:0 auto;padding-left:2.5rem;}
.Timeline-line{position:absolute;left:19px;top:0;bottom:0;width:2px;background:var(--ink-300);}
.Timeline-item{position:relative;padding-bottom:2.8rem;padding-left:1.5rem;}
.Timeline-item:last-child{padding-bottom:0;}
.Timeline-marker{
  position:absolute;left:-2.5rem;top:0;width:40px;height:40px;border-radius:50%;
  background:var(--ink-900);color:var(--accent-300);display:flex;align-items:center;justify-content:center;
  box-shadow:0 6px 16px rgba(20,24,27,0.25);z-index:2;
}
.Timeline-date{font-weight:800;color:var(--accent-600);font-size:0.9rem;letter-spacing:0.04em;}
.Timeline-title{font-size:1.15rem;font-weight:700;margin:0.3rem 0 0.5rem;}
.Timeline-text{color:var(--ink-600);margin:0;}


.ServiceGrid{display:grid;gap:1.25rem;grid-template-columns:1fr;}
.ServiceCard{
  background:rgba(255,255,255,0.06);border:1px solid rgba(255,255,255,0.12);
  border-radius:var(--radius-lg);overflow:hidden;backdrop-filter:blur(10px);
  transition:all 0.3s ease;
}
.ServiceCard--light{background:#fff;border:1px solid var(--ink-200);backdrop-filter:none;}
.ServiceCard:hover{border-color:var(--accent-500);box-shadow:0 12px 30px rgba(0,0,0,0.15);}
.ServiceCard-header{
  width:100%;display:flex;align-items:center;gap:1rem;padding:1.3rem 1.4rem;background:none;border:none;text-align:left;
  color:inherit;min-height:44px;
}
.ServiceCard-icon{
  width:44px;height:44px;border-radius:var(--radius-sm);background:var(--accent-500);color:#fff;
  display:flex;align-items:center;justify-content:center;flex-shrink:0;font-size:1.1rem;
}
.ServiceCard-title{flex:1;font-weight:700;font-size:1.02rem;color:var(--ink-50);}
.ServiceCard--light .ServiceCard-title{color:var(--ink-900);}
.ServiceCard-toggle{color:var(--ink-300);transition:transform 0.3s ease;}
.ServiceCard--light .ServiceCard-toggle{color:var(--ink-500);}
.ServiceCard.is-open .ServiceCard-toggle{transform:rotate(45deg);}
.ServiceCard-body{max-height:0;overflow:hidden;transition:max-height 0.4s ease,padding 0.4s ease;padding:0 1.4rem;}
.ServiceCard.is-open .ServiceCard-body{max-height:220px;padding:0 1.4rem 1.4rem 4.4rem;}
.ServiceCard-body p{color:var(--ink-300);margin:0;font-size:0.95rem;}
.ServiceCard--light .ServiceCard-body p{color:var(--ink-600);}

@media(min-width:700px){.ServiceGrid{grid-template-columns:repeat(2,1fr);}}
@media(min-width:1100px){.ServiceGrid{grid-template-columns:repeat(3,1fr);}}


.Carousel{width:100%;}
.Carousel-track{
  display:flex;gap:1.25rem;overflow-x:auto;scroll-snap-type:x mandatory;padding-bottom:0.75rem;
  -webkit-overflow-scrolling:touch;
}
.Carousel-track::-webkit-scrollbar{height:8px;}
.Carousel-track::-webkit-scrollbar-thumb{background:var(--ink-300);border-radius:8px;}
.Carousel-card{
  scroll-snap-align:start;flex:0 0 82%;background:var(--ink-900);color:var(--ink-100);
  border-radius:var(--radius-lg);padding:2rem 1.6rem;box-shadow:var(--shadow-lg);
  border:1px solid rgba(255,255,255,0.08);
}
.Carousel-cardIcon{
  width:52px;height:52px;border-radius:var(--radius-md);background:var(--accent-500);color:#fff;
  display:flex;align-items:center;justify-content:center;font-size:1.3rem;margin-bottom:1.1rem;
  box-shadow:0 10px 22px var(--accent-glow);
}
.Carousel-cardTitle{font-size:1.2rem;font-weight:800;margin-bottom:0.6rem;color:var(--ink-50);}
.Carousel-cardText{color:var(--ink-300);margin:0;font-size:0.95rem;}
@media(min-width:640px){.Carousel-card{flex:0 0 48%;}}
@media(min-width:1024px){.Carousel-card{flex:0 0 30%;}}


.FaqTeaser{
  display:flex;flex-direction:column;gap:1.6rem;align-items:flex-start;justify-content:space-between;
  background:var(--ink-100);border-radius:var(--radius-xl);padding:clamp(2rem,5vw,3rem);
}
@media(min-width:800px){.FaqTeaser{flex-direction:row;align-items:center;}}


.FaqList{max-width:820px;margin:0 auto;display:flex;flex-direction:column;gap:1rem;}
.FaqItem{border:1px solid var(--ink-200);border-radius:var(--radius-md);background:#fff;overflow:hidden;}
.FaqItem-question{
  width:100%;display:flex;justify-content:space-between;align-items:center;gap:1rem;
  padding:1.2rem 1.4rem;background:none;border:none;text-align:left;font-weight:700;font-size:1rem;
  color:var(--ink-900);min-height:44px;
}
.FaqItem-icon{color:var(--accent-500);transition:transform 0.3s ease;flex-shrink:0;}
.FaqItem.is-open .FaqItem-icon{transform:rotate(45deg);}
.FaqItem-answer{max-height:0;overflow:hidden;transition:max-height 0.35s ease;padding:0 1.4rem;}
.FaqItem.is-open .FaqItem-answer{max-height:260px;padding:0 1.4rem 1.3rem;}
.FaqItem-answer p{color:var(--ink-600);margin:0;}


.CtaBlock{
  text-align:center;max-width:700px;margin:0 auto;background:var(--ink-900);color:var(--ink-50);
  border-radius:var(--radius-xl);padding:clamp(2.5rem,6vw,4rem);box-shadow:var(--shadow-lg);
}
.CtaBlock-title{font-size:clamp(1.6rem,3vw,2.2rem);font-weight:800;margin-bottom:1rem;color:#fff;}
.CtaBlock-text{color:var(--ink-300);margin-bottom:1.8rem;}


.ContactGrid{display:grid;gap:2.5rem;grid-template-columns:1fr;}
@media(min-width:960px){.ContactGrid{grid-template-columns:1fr 1.1fr;}}
.ContactInfo{display:flex;flex-direction:column;gap:1.4rem;}
.ContactInfo-img{width:100%;height:220px;object-fit:cover;border-radius:var(--radius-lg);box-shadow:var(--shadow-md);}
.ContentCard{background:#fff;border:1px solid var(--ink-200);border-radius:var(--radius-lg);padding:1.6rem;box-shadow:var(--shadow-sm);}
.ContentCard-title{font-size:1.15rem;font-weight:800;margin-bottom:0.8rem;}
.ContentCard-body p{color:var(--ink-600);margin:0 0 0.5rem;}
.ContentCard-body a{color:var(--accent-600);font-weight:600;}
.ContentCard--map .ContentCard-body{padding:0;}
.ContactMap{width:100%;height:220px;border:0;border-radius:var(--radius-md);}

.ContactFormWrap{width:100%;}
.WizardForm{
  background:#fff;border:1px solid var(--ink-200);border-radius:var(--radius-xl);
  padding:clamp(1.6rem,4vw,2.4rem);box-shadow:var(--shadow-md);
}
.WizardForm-indicator{display:flex;align-items:center;justify-content:center;gap:0.5rem;margin-bottom:2rem;}
.WizardForm-dot{
  width:38px;height:38px;border-radius:50%;background:var(--ink-100);color:var(--ink-500);
  display:flex;align-items:center;justify-content:center;font-weight:700;border:2px solid var(--ink-200);
  transition:all 0.3s ease;
}
.WizardForm-dot.is-active{background:var(--accent-500);color:#fff;border-color:var(--accent-500);box-shadow:0 6px 16px var(--accent-glow);}
.WizardForm-dotLine{width:36px;height:2px;background:var(--ink-200);}
.WizardForm-step{display:none;}
.WizardForm-step.is-active{display:block;animation:fadeSlide 0.4s ease;}
@keyframes fadeSlide{from{opacity:0;transform:translateX(12px);}to{opacity:1;transform:translateX(0);}}
.WizardForm-stepTitle{font-size:1.25rem;font-weight:800;margin-bottom:1.3rem;}
.WizardForm-field{margin-bottom:1.2rem;}
.WizardForm-field label{display:block;font-weight:600;font-size:0.9rem;margin-bottom:0.4rem;color:var(--ink-700);}
.WizardForm-field input,.WizardForm-field select,.WizardForm-field textarea{
  width:100%;padding:0.8rem 1rem;border:1.5px solid var(--ink-200);border-radius:var(--radius-sm);
  font-family:inherit;font-size:0.98rem;color:var(--ink-800);background:var(--ink-50);
  transition:border-color 0.25s ease,box-shadow 0.25s ease;min-height:44px;
}
.WizardForm-field textarea{min-height:120px;resize:vertical;}
.WizardForm-field input:focus,.WizardForm-field select:focus,.WizardForm-field textarea:focus{
  outline:none;border-color:var(--accent-500);box-shadow:0 0 0 3px var(--accent-glow);
}
.WizardForm-field--checkbox{display:flex;align-items:flex-start;gap:0.6rem;}
.WizardForm-field--checkbox input{width:20px;height:20px;flex-shrink:0;margin-top:0.2rem;}
.WizardForm-field--checkbox label{font-weight:400;color:var(--ink-600);font-size:0.9rem;}
.WizardForm-actions{display:flex;justify-content:space-between;align-items:center;margin-top:1.4rem;}


.ThanksSection{min-height:60vh;display:flex;align-items:center;justify-content:center;padding:4rem 1.5rem;}
.ThanksSection-inner{text-align:center;max-width:600px;}
.ThanksSection-heading{font-size:clamp(2.2rem,5vw,3.4rem);font-weight:800;margin-bottom:1.3rem;}
.ThanksSection-text{color:var(--ink-600);margin-bottom:2.2rem;font-size:1.1rem;}


.LegalHero{padding:clamp(3rem,7vw,5rem) 1.5rem 2.5rem;background:var(--ink-100);text-align:center;}
.LegalHero--alt{background:linear-gradient(135deg,var(--ink-100),var(--ink-50));}
.LegalHero--dark{background:var(--ink-900);}
.LegalHero--dark .LegalHero-heading{color:#fff;}
.LegalHero--dark .LegalHero-updated{color:var(--ink-300);}
.LegalHero-inner{max-width:700px;margin:0 auto;}
.LegalHero-heading{font-size:clamp(1.9rem,4vw,2.6rem);font-weight:800;margin-bottom:0.6rem;}
.LegalHero-updated{color:var(--ink-500);font-size:0.9rem;font-weight:600;}
.LegalSection{max-width:820px;}
.LegalContent h2{font-size:1.3rem;font-weight:800;margin:2rem 0 0.8rem;}
.LegalContent p{color:var(--ink-700);}
.LegalContent--numbered h2{color:var(--accent-600);}
.LegalContent--lettered h2{color:var(--ink-800);border-left:3px solid var(--accent-500);padding-left:0.8rem;}


.SiteFooter{background:var(--ink-950);padding:clamp(3rem,6vw,5rem) clamp(1.25rem,5vw,3rem) 2rem;}
.SiteFooter-inner{max-width:1280px;margin:0 auto;}
.SiteFooter-grid{display:grid;gap:1.4rem;grid-template-columns:1fr;}
@media(min-width:700px){.SiteFooter-grid{grid-template-columns:repeat(2,1fr);}}
@media(min-width:1100px){.SiteFooter-grid{grid-template-columns:repeat(4,1fr);}}
.SiteFooter-card{
  background:rgba(255,255,255,0.04);border:1px solid rgba(255,255,255,0.08);border-radius:var(--radius-lg);
  padding:1.6rem;backdrop-filter:blur(8px);
}
.SiteFooter-logoImg{width:38px;height:38px;margin-bottom:1rem;}
.SiteFooter-cardTitle{color:var(--ink-50);font-size:1rem;font-weight:700;margin-bottom:1rem;}
.SiteFooter-text{color:var(--ink-400);font-size:0.92rem;margin-bottom:0.6rem;}
.SiteFooter-text a{color:var(--ink-200);transition:color 0.25s ease;}
.SiteFooter-text a:hover{color:var(--accent-400);}
.SiteFooter-linkList{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:0.6rem;}
.SiteFooter-linkList a{color:var(--ink-400);font-size:0.92rem;transition:color 0.25s ease;}
.SiteFooter-linkList a:hover{color:var(--accent-400);}
.SiteFooter-bottom{
  text-align:center;color:var(--ink-500);font-size:0.82rem;margin-top:2.5rem;padding-top:1.6rem;
  border-top:1px solid rgba(255,255,255,0.08);
}


.CookieBar{
  position:fixed;left:0;right:0;bottom:0;z-index:1000;background:var(--ink-900);
  border-top:1px solid rgba(255,255,255,0.1);transform:translateY(100%);transition:transform 0.4s ease;
  box-shadow:0 -12px 30px rgba(0,0,0,0.25);
}
.CookieBar.is-visible{transform:translateY(0);}
.CookieBar-inner{max-width:1280px;margin:0 auto;padding:1rem clamp(1rem,4vw,2rem);}
.CookieBar-main{display:flex;flex-direction:column;gap:1rem;align-items:flex-start;}
.CookieBar-text{color:var(--ink-200);font-size:0.9rem;margin:0;max-width:640px;}
.CookieBar-text a{color:var(--accent-300);font-weight:600;}
.CookieBar-actions{display:flex;gap:0.6rem;flex-wrap:wrap;}
.CookieBar-btn{
  padding:0.65rem 1.1rem;border-radius:var(--radius-sm);font-size:0.85rem;font-weight:700;
  border:1.5px solid transparent;min-height:44px;transition:all 0.25s ease;
}
.CookieBar-btn--accent{background:var(--accent-500);color:#fff;}
.CookieBar-btn--accent:hover{background:var(--accent-600);}
.CookieBar-btn--outline{background:transparent;border-color:rgba(255,255,255,0.25);color:var(--ink-100);}
.CookieBar-btn--outline:hover{border-color:var(--accent-400);}
.CookieBar-btn--ghost{background:transparent;color:var(--ink-300);}
.CookieBar-btn--ghost:hover{color:#fff;}
.CookieBar-categories{max-height:0;overflow:hidden;transition:max-height 0.4s ease;}
.CookieBar-categories.is-open{max-height:320px;margin-top:1rem;padding-top:1rem;border-top:1px solid rgba(255,255,255,0.1);}
.CookieBar-category{display:flex;align-items:flex-start;gap:0.6rem;color:var(--ink-300);font-size:0.85rem;margin-bottom:0.8rem;}
.CookieBar-category input{width:20px;height:20px;flex-shrink:0;margin-top:0.1rem;}
.CookieBar-saveBtn{margin-top:0.3rem;}

@media(min-width:800px){
  .CookieBar-main{flex-direction:row;align-items:center;justify-content:space-between;}
}