:root{
  --site-bg:#f7f4ed;
  --site-surface:#e8e2d4;
  --site-text:#1a1f1a;
  --site-muted:#8a7c6f;
  --site-accent:#a87b3d;
  --accent2:#2f4a2c;
  --radius:6px;
  --wrap:780px;
  --shadow:0 1px 3px rgba(26,31,26,.08),0 8px 24px rgba(26,31,26,.06);
  --shadow-sm:0 1px 2px rgba(26,31,26,.06);
  --font-h:"Montserrat",system-ui,sans-serif;
  --font-b:"Source Sans 3",system-ui,sans-serif;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--site-bg);
  color:var(--site-text);
  font-family:var(--font-b);
  font-size:clamp(1rem,.96rem + .2vw,1.075rem);
  line-height:1.7;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%}

h1,h2,h3,h4{
  font-family:var(--font-h);
  font-weight:600;
  line-height:1.15;
  letter-spacing:-.01em;
  margin:0 0 .5em;
}
h1{font-size:clamp(2rem,1.5rem + 2.6vw,3rem);font-weight:700}
h2{font-size:clamp(1.5rem,1.2rem + 1.4vw,2.1rem)}
h3{font-size:clamp(1.15rem,1.05rem + .5vw,1.35rem)}
p{margin:0 0 1rem}
a{color:var(--site-accent);text-decoration:none}
a:hover{text-decoration:underline}

:focus-visible{outline:2px solid var(--site-accent);outline-offset:3px;border-radius:2px}

.hbs-wrap{
  width:100%;
  max-width:var(--wrap);
  margin-inline:auto;
  padding-inline:clamp(1.1rem,4vw,1.6rem);
}
.hbs-wrap--wide{max-width:1080px}

.hbs-uline{position:relative;display:inline-block;padding-bottom:.35em}
.hbs-uline::after{
  content:"";
  position:absolute;left:0;bottom:.05em;width:100%;height:8px;
  background:no-repeat center/100% 8px
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='8' viewBox='0 0 120 8'><path d='M2 5 C25 2 45 7 62 4 S100 2 118 4' fill='none' stroke='%23a87b3d' stroke-width='2' stroke-linecap='round'/></svg>");
}

section{padding-block:clamp(3.4rem,2.4rem + 4vw,5rem)}

#site-head-b8i{
  position:absolute;top:0;left:0;right:0;z-index:60;
  transition:background .3s ease,box-shadow .3s ease,transform .3s ease;
}
#site-head-b8i.is-scrolled{
  position:fixed;
  background:var(--site-bg);
  box-shadow:var(--shadow-sm);
}
.hbs-head-bar{
  display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;
  gap:1rem;
  max-width:1080px;margin-inline:auto;
  padding:1.1rem clamp(1.1rem,4vw,1.6rem);
}

.hbs-logo{display:inline-flex;align-items:center;gap:.55rem;min-width:0}
.hbs-logo img{width:30px;height:30px;display:block}
.hbs-logo-txt{
  font-family:var(--font-h);font-weight:700;font-size:1.2rem;
  letter-spacing:-.01em;color:var(--site-text);
}

#site-head-b8i.is-over-hero .hbs-logo-txt,
#site-head-b8i.is-over-hero .hbs-nav-ctl{color:#fbf8f1}
#site-head-b8i.is-over-hero .hbs-nav-ctl:hover{color:#fff}

.hbs-nav{display:flex;flex-wrap:wrap;align-items:center;gap:1.4rem}
.hbs-nav-ctl{
  font-family:var(--font-h);font-weight:500;font-size:.94rem;
  color:var(--site-text);text-decoration:none;letter-spacing:.01em;
}
.hbs-nav-ctl:hover{color:var(--site-accent);text-decoration:none}

.hbs-burger{
  display:none;border:0;background:transparent;cursor:pointer;
  padding:.4rem;color:inherit;
}
.hbs-burger span{display:block;width:24px;height:2px;background:currentColor;margin:5px 0;border-radius:2px}
#site-head-b8i.is-over-hero .hbs-burger{color:#fbf8f1}

#dim-ypd{
  position:fixed;inset:0;background:rgba(26,31,26,.5);
  opacity:0;visibility:hidden;transition:.3s;z-index:90;
}
#dim-ypd.is-open{opacity:1;visibility:visible}
#off-canvas-95s{
  position:fixed;top:0;right:0;bottom:0;width:min(80vw,320px);
  background:var(--site-bg);z-index:95;
  transform:translateX(100%);transition:transform .3s ease;
  padding:1.5rem;display:flex;flex-direction:column;gap:.4rem;
  box-shadow:-8px 0 30px rgba(26,31,26,.18);
}
#off-canvas-95s.is-open{transform:translateX(0)}
.hbs-drawer-top{display:flex;flex-wrap:wrap;justify-content:flex-end;margin-bottom:.6rem}
#close-menu-rk0{border:0;background:transparent;font-size:1.6rem;cursor:pointer;color:var(--site-text);line-height:1}
#off-canvas-95s .hbs-nav-ctl{
  padding:.75rem .2rem;border-bottom:1px solid var(--site-surface);
  font-size:1.05rem;color:var(--site-text);
}

.hbs-cta-btn{
  display:inline-flex;align-items:center;justify-content:center;gap:.5rem;
  font-family:var(--font-h);font-weight:600;font-size:.95rem;
  padding:.8rem 1.5rem;border-radius:var(--radius);border:0;cursor:pointer;
  background:var(--site-accent);color:#fff;text-decoration:none;
  transition:transform .2s ease,background .2s ease;
}
.hbs-cta-btn:hover{background:#946b32;text-decoration:none;transform:translateY(-2px)}
.hbs-cta-btn--ghost{
  background:transparent;color:var(--site-accent);
  box-shadow:inset 0 0 0 1.5px var(--site-accent);
}
.hbs-cta-btn--ghost:hover{background:var(--site-accent);color:#fff}
.hbs-cta-btn--dark{background:var(--accent2)}
.hbs-cta-btn--dark:hover{background:#243a22}

.hbs-hero-blk{
  position:relative;min-height:88vh;display:flex;align-items:center;justify-content:center;
  text-align:center;color:#fbf8f1;overflow:hidden;
}
.hbs-hero-blk .hbs-hero-media{position:absolute;inset:0;z-index:0}
.hbs-hero-blk .hbs-hero-media img{width:100%;height:100%;object-fit:cover;display:block}
.hbs-hero-blk::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(26,31,26,.35),rgba(26,31,26,.55));z-index:1}
.hbs-hero-inner{position:relative;z-index:2;max-width:640px;padding:6rem 1.4rem 3rem}
.hbs-hero-inner h1{color:#fff}
.hbs-hero-inner p{font-size:clamp(1.05rem,1rem + .5vw,1.25rem);color:#f2ece0;margin-bottom:1.8rem}
.hbs-eyebrow{
  font-family:var(--font-h);text-transform:uppercase;letter-spacing:.22em;
  font-size:.72rem;font-weight:600;color:var(--site-accent);margin-bottom:1rem;display:block;
}
.hbs-hero-inner .hbs-eyebrow{color:#e8c48a}

.hbs-phero-side{padding-top:clamp(7rem,6rem + 6vw,9rem)}
.hbs-phero-side .hbs-phero-grid{
  display:grid;gap:2rem;align-items:center;
  grid-template-columns:1fr;
  max-width:1080px;margin-inline:auto;
  padding-inline:clamp(1.1rem,4vw,1.6rem);
}
.hbs-phero-side .hbs-phero-shot{aspect-ratio:4/3;border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow)}
.hbs-phero-side .hbs-phero-shot img{width:100%;height:100%;object-fit:cover;display:block}

.hbs-phero-band{
  background:var(--accent2);color:#f4efe4;text-align:center;
  padding-top:clamp(7.5rem,6rem + 7vw,10rem);
}
.hbs-phero-band h1{color:#fff}
.hbs-phero-band p{color:#d8dcc9;max-width:60ch;margin-inline:auto}
.hbs-phero-band .hbs-eyebrow{color:#e8c48a}

.hbs-phero-compact{text-align:center;padding-top:clamp(7.5rem,6rem + 6vw,9.5rem);padding-bottom:1rem}
.hbs-phero-compact p{max-width:58ch;margin-inline:auto;color:var(--site-muted)}

.hbs-intro-blk{text-align:left}
.hbs-intro-blk .hbs-intro-head{text-align:center;margin-bottom:2rem}
.hbs-intro-blk p{max-width:70ch}

.hbs-pullquote{
  font-family:var(--font-h);font-weight:600;font-style:italic;
  font-size:clamp(1.3rem,1.1rem + 1vw,1.7rem);line-height:1.4;
  color:var(--accent2);border-left:3px solid var(--site-accent);
  padding:.4rem 0 .4rem 1.4rem;margin:2rem 0;
}

.hbs-pillar-grp{
  display:grid;gap:1.4rem;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  margin-top:2rem;
}

.hbs-pillar-ico{text-align:center}
.hbs-pillar-ico .hbs-ico{
  width:56px;height:56px;border-radius:50%;display:grid;place-items:center;
  margin:0 auto 1rem;background:var(--site-surface);color:var(--site-accent);font-size:1.4rem;
}
.hbs-pillar-ico h3{margin-bottom:.4rem}
.hbs-pillar-ico p{color:var(--site-muted);margin:0;font-size:.96rem}

.hbs-pillar-card{
  background:var(--site-surface);border-radius:var(--radius);padding:1.6rem;
  box-shadow:var(--shadow-sm);transition:transform .25s ease,box-shadow .25s ease;min-width:0;
}
.hbs-pillar-card:hover{transform:translateY(-4px);box-shadow:var(--shadow)}
.hbs-pillar-card h3{color:var(--accent2)}
.hbs-pillar-card p{color:var(--site-muted);margin:0;font-size:.96rem}

.hbs-pillar-num{
  display:flex;flex-wrap:wrap;gap:1rem;align-items:flex-start;
  padding:1.2rem 0;border-top:1px solid var(--site-surface);
}
.hbs-pillar-num .hbs-num{
  font-family:var(--font-h);font-weight:700;font-size:1.5rem;
  color:var(--site-accent);min-width:2.2rem;line-height:1;
}
.hbs-pillar-num .hbs-num-body{flex:1 1 240px;min-width:0}
.hbs-pillar-num h3{margin-bottom:.3rem}
.hbs-pillar-num p{color:var(--site-muted);margin:0}

.hbs-pillar-stack{display:flex;flex-direction:column;gap:1.1rem;margin-top:1.5rem}
.hbs-pillar-line{
  font-family:var(--font-h);font-weight:600;font-size:clamp(1.1rem,1rem + .6vw,1.4rem);
  padding-left:1.2rem;border-left:3px solid var(--site-accent);color:var(--site-text);
}

.hbs-check-grp{
  display:grid;gap:.6rem 2rem;margin-top:1.6rem;
  grid-template-columns:1fr;
}
.hbs-check-item{display:flex;flex-wrap:wrap;gap:.7rem;align-items:baseline;padding:.5rem 0}
.hbs-check-item i{color:var(--accent2);flex:0 0 auto}
.hbs-check-item span{flex:1 1 200px;min-width:0}

.hbs-quote-grp{
  display:grid;gap:1.4rem;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  margin-top:2rem;
}
.hbs-quote-card{
  background:var(--site-surface);border-radius:var(--radius);padding:1.6rem;
  box-shadow:var(--shadow-sm);min-width:0;
}
.hbs-quote-card p{font-style:italic;color:var(--site-text)}
.hbs-quote-mark{font-family:var(--font-h);font-size:2.4rem;color:var(--site-accent);line-height:.6;display:block}
.hbs-quote-who{font-family:var(--font-h);font-weight:600;font-size:.9rem;color:var(--site-muted);font-style:normal;margin:0}

.hbs-cta-split{background:var(--site-surface)}
.hbs-cta-split .hbs-cta-inner{
  display:flex;flex-wrap:wrap;gap:2rem;align-items:center;justify-content:space-between;
}
.hbs-cta-split .hbs-cta-txt{flex:1 1 320px;min-width:0}
.hbs-cta-split .hbs-cta-txt h2{margin-bottom:.4rem}
.hbs-cta-info{flex:1 1 240px;min-width:0}
.hbs-cta-info a{display:block;color:var(--site-text);margin:.3rem 0;font-family:var(--font-h);font-weight:500}

.hbs-cta-card{
  background:var(--accent2);color:#f4efe4;text-align:center;
  border-radius:var(--radius);padding:clamp(2.4rem,2rem + 3vw,3.6rem);
  max-width:var(--wrap);margin-inline:auto;box-shadow:var(--shadow);
}
.hbs-cta-card h2{color:#fff}
.hbs-cta-card p{color:#d8dcc9;max-width:52ch;margin-inline:auto 1.4rem;margin-bottom:1.6rem}

.hbs-cta-band{background:var(--site-accent);color:#fff;text-align:center}
.hbs-cta-band h2{color:#fff}
.hbs-cta-band p{color:#fbeed8;max-width:54ch;margin-inline:auto;margin-bottom:1.6rem}
.hbs-cta-band .hbs-cta-btn{background:#fff;color:var(--site-accent)}
.hbs-cta-band .hbs-cta-btn:hover{background:#f2ece0}

.hbs-contact-grp{
  display:grid;gap:2.4rem;align-items:start;
  grid-template-columns:1fr;
  max-width:1000px;margin-inline:auto;
  padding-inline:clamp(1.1rem,4vw,1.6rem);
}
.hbs-reassure p{color:var(--site-muted)}
.hbs-reassure .hbs-contact-line{
  display:flex;flex-wrap:wrap;gap:.7rem;align-items:baseline;margin:.6rem 0;
}
.hbs-reassure .hbs-contact-line i{color:var(--site-accent)}
.hbs-reassure a{color:var(--site-text)}

.hbs-form{display:flex;flex-direction:column;gap:1rem}
.hbs-field{display:flex;flex-direction:column;gap:.35rem}
.hbs-field label{font-family:var(--font-h);font-weight:600;font-size:.85rem}
.hbs-field input,.hbs-field textarea,.hbs-field select{
  font-family:var(--font-b);font-size:1rem;
  padding:.7rem .85rem;border:1px solid #cdc4b2;border-radius:var(--radius);
  background:#fffdf8;color:var(--site-text);width:100%;
}
.hbs-field textarea{resize:vertical;min-height:130px}
.hbs-field input:focus,.hbs-field textarea:focus,.hbs-field select:focus{
  outline:none;border-color:var(--site-accent);box-shadow:0 0 0 3px rgba(168,123,61,.18);
}
.hbs-form-row{display:flex;flex-wrap:wrap;gap:1rem}
.hbs-form-row .hbs-field{flex:1 1 200px;min-width:0}

.hbs-foot{background:var(--accent2);color:#e6e3d4;padding-block:clamp(3rem,2.4rem + 3vw,4.2rem) 1.6rem}
.hbs-foot-news{text-align:center;max-width:560px;margin:0 auto 2.6rem}
.hbs-foot-news h2{color:#fff}
.hbs-foot-news p{color:#c9cbb6}
.hbs-news-form{display:flex;flex-wrap:wrap;gap:.7rem;margin-top:1.2rem;justify-content:center}
.hbs-news-form input{
  flex:1 1 auto;min-width:0;padding:.75rem .9rem;border:0;border-radius:var(--radius);
  font-family:var(--font-b);font-size:1rem;background:#fffdf8;color:var(--site-text);
}
.hbs-news-form .hbs-cta-btn{flex:0 0 auto;background:var(--site-accent)}

.hbs-foot-links{
  display:flex;flex-wrap:wrap;gap:.4rem 1.4rem;justify-content:center;
  padding-top:1.6rem;border-top:1px solid rgba(255,255,255,.12);
}
.hbs-footer-lnk{color:#d8dcc9;font-family:var(--font-h);font-size:.9rem;font-weight:500}
.hbs-footer-lnk:hover{color:#fff}
.hbs-foot-meta{
  display:flex;flex-wrap:wrap;gap:.5rem 1.4rem;justify-content:center;
  margin-top:1.4rem;color:#a8ac95;font-size:.85rem;text-align:center;
}
.hbs-foot-meta a{color:#c9cbb6}
.hbs-foot-copy{text-align:center;margin-top:1.4rem;color:#909578;font-size:.82rem}

.hbs-legal{padding-top:clamp(7rem,6rem + 5vw,8.5rem)}
.hbs-legal h1{margin-bottom:1.2rem}
.hbs-legal h2{margin-top:2rem}
.hbs-legal p,.hbs-legal li{max-width:70ch;color:var(--site-text)}
.hbs-legal .hbs-muted{color:var(--site-muted)}

.hbs-thanks{min-height:70vh;display:grid;place-items:center;text-align:center;padding:6rem 1.4rem}
.hbs-thanks p{max-width:52ch;color:var(--site-muted)}

[data-panel]{border-bottom:1px solid var(--site-surface)}
[data-acc-trigger]{
  width:100%;text-align:left;background:transparent;border:0;cursor:pointer;
  font-family:var(--font-h);font-weight:600;font-size:1.05rem;color:var(--site-text);
  padding:1.1rem 0;display:flex;flex-wrap:wrap;gap:1rem;justify-content:space-between;align-items:center;
}
[data-acc-trigger]::after{content:"+";font-size:1.4rem;color:var(--site-accent);flex:0 0 auto}
[data-panel].is-open [data-acc-trigger]::after{content:"–"}
[data-panel] .hbs-acc-body{max-height:0;overflow:hidden;transition:max-height .3s ease}
[data-panel].is-open .hbs-acc-body{max-height:600px}
.hbs-acc-body p{padding-bottom:1.1rem;margin:0;color:var(--site-muted)}

.swipe-deck-fu9{padding-bottom:2.5rem}
.swipe-deck-fu9 .swiper-slide{height:auto}
.swiper-pagination-bullet{background:var(--site-muted)}
.swiper-pagination-bullet-active{background:var(--site-accent)}
.swiper-button-prev,.swiper-button-next{color:var(--site-accent)}
.swiper-button-prev::after,.swiper-button-next::after{font-size:1.4rem}

.overlay-box-yso,.site-modal{
  position:fixed;inset:0;z-index:120;display:none;
  align-items:center;justify-content:center;padding:1.4rem;
  background:rgba(26,31,26,.55);
}
.overlay-box-yso.is-open,.site-modal.is-open{display:flex}
.hbs-modal-dialog{
  background:var(--site-bg);border-radius:var(--radius);
  max-width:460px;width:100%;padding:2.2rem;text-align:center;box-shadow:var(--shadow);
}
.hbs-modal-dialog h3{color:var(--accent2)}
.hbs-modal-dialog p{color:var(--site-muted)}
.hbs-modal-close{margin-top:1.2rem}

[data-aos]{will-change:transform,opacity}

@media(max-width:820px){
  .hbs-nav{display:none}
  .hbs-burger{display:block}
}
@media(min-width:721px){
  .hbs-check-grp{grid-template-columns:1fr 1fr}
  .hbs-phero-side .hbs-phero-grid{grid-template-columns:1.05fr .95fr}
  .hbs-contact-grp{grid-template-columns:.85fr 1.15fr}
}

.privacy-note-hge-overlay{position:fixed;inset:0;opacity:0;visibility:hidden;transition:.25s;z-index:9998;}
.privacy-note-hge-overlay.is-open{opacity:1;visibility:visible;}
.privacy-note-hge-panel{position:fixed;background:var(--site-surface,#fff);color:var(--site-text,#1a1a1a);
  box-shadow:0 20px 60px rgba(0,0,0,.28);padding:24px;opacity:0;visibility:hidden;transition:.25s;z-index:9999;}
.privacy-note-hge-panel.is-open{opacity:1;visibility:visible;}
.privacy-note-hge-panel h3{margin:0 0 8px;font-size:1.2rem;}
.privacy-note-hge-panel>p{margin:0 0 16px;color:var(--site-muted,#666);font-size:.95rem;}
.privacy-note-hge-cat{display:flex;align-items:center;justify-content:space-between;gap:16px;padding:12px 0;border-top:1px solid rgba(128,128,128,.2);}
.privacy-note-hge-cat h4{margin:0 0 2px;font-size:.98rem;}
.privacy-note-hge-cat p{margin:0;color:var(--site-muted,#777);font-size:.85rem;}
.privacy-note-hge-switch{position:relative;flex:0 0 auto;width:44px;height:24px;}
.privacy-note-hge-switch input{opacity:0;width:0;height:0;position:absolute;}
.privacy-note-hge-switch span{position:absolute;inset:0;background:#c9c9c9;border-radius:999px;transition:.2s;cursor:pointer;}
.privacy-note-hge-switch span::before{content:"";position:absolute;width:18px;height:18px;left:3px;top:3px;background:#fff;border-radius:50%;transition:.2s;}
.privacy-note-hge-switch input:checked+span{background:var(--site-accent,#2b7);}
.privacy-note-hge-switch input:checked+span::before{transform:translateX(20px);}
.privacy-note-hge-switch input:disabled+span{opacity:.6;cursor:not-allowed;}
.privacy-note-hge-actions{display:flex;flex-wrap:wrap;gap:10px;margin-top:18px;}
.privacy-note-hge-actions button{flex:1;min-width:140px;padding:11px 16px;border:none;border-radius:10px;font:inherit;font-weight:600;cursor:pointer;}
.privacy-note-hge-actions #privacy-note-hge-all{background:var(--site-accent,#2b7);color:#fff;}
.privacy-note-hge-actions #privacy-note-hge-save{background:transparent;color:var(--site-text,#222);border:1px solid rgba(128,128,128,.4);}
.privacy-note-hge-links{display:flex;gap:16px;margin-top:14px;font-size:.85rem;}
.privacy-note-hge-links a{color:var(--site-accent,#2b7);text-decoration:underline;}
.privacy-note-hge-trigger{position:fixed;left:18px;bottom:18px;width:44px;height:44px;border-radius:50%;border:none;cursor:pointer;
  background:var(--site-surface,#fff);color:var(--site-accent,#2b7);box-shadow:0 6px 18px rgba(0,0,0,.2);z-index:9997;font-size:1.1rem;}

.privacy-note-hge-overlay{background:rgba(0,0,0,.5);}
.privacy-note-hge-panel{left:50%;bottom:24px;transform:translate(-50%,20px);width:min(560px,calc(100% - 32px));border-radius:16px;}
.privacy-note-hge-panel.is-open{transform:translate(-50%,0);}
@media(max-width:520px){.privacy-note-hge-actions button{min-width:100%;}}
#fab-stack-loo{left:auto !important;right:18px !important;}
@media(max-width:520px){#fab-stack-loo{right:12px !important;}}

.form-done-a3x{position:fixed;inset:0;z-index:10000;display:none;align-items:center;justify-content:center;
  padding:20px;background:rgba(8,10,14,.55);backdrop-filter:blur(2px);}
.form-done-a3x.is-open{display:flex;}
.form-done-a3x__box{width:min(420px,100%);background:var(--site-surface,#fff);color:var(--site-text,#15181d);
  border-radius:16px;padding:32px 28px;text-align:center;box-shadow:0 24px 60px rgba(0,0,0,.28);
  animation:form-done-a3x-in .22s ease-out;}
@keyframes form-done-a3x-in{from{opacity:0;transform:translateY(12px) scale(.97);}to{opacity:1;transform:none;}}
.form-done-a3x__mark{width:56px;height:56px;margin:0 auto 18px;border-radius:50%;display:flex;
  align-items:center;justify-content:center;font-size:26px;line-height:1;
  background:var(--site-accent,#2e7d5b);color:#fff;}
.form-done-a3x__title{margin:0 0 10px;font-size:1.35rem;line-height:1.25;}
.form-done-a3x__text{margin:0 0 24px;line-height:1.6;color:var(--site-muted,#5b6472);}
.form-done-a3x__close{display:inline-block;cursor:pointer;border:0;border-radius:999px;
  padding:12px 30px;font:inherit;font-weight:600;background:var(--site-accent,#2e7d5b);color:#fff;}
.form-done-a3x__close:hover{filter:brightness(1.08);}
.form-done-a3x__close:focus-visible{outline:2px solid var(--site-text,#15181d);outline-offset:3px;}
@media(prefers-reduced-motion:reduce){.form-done-a3x__box{animation:none;}}

*,*::before,*::after{box-sizing:border-box;}
html,body{overflow-x:hidden;overflow-x:clip;max-width:100%;}
img,svg,video,iframe,canvas{max-width:100%;}
table{max-width:100%;}

.simpleParallax{display:block;width:100%;height:100%;}
.simpleParallax img{width:100%;height:100%;object-fit:cover;}

blockquote, figure { margin-left: 0; margin-right: 0; }

figure > blockquote, figure > figcaption { margin-left: 0; margin-right: 0; }

html.no-aos [data-aos]{opacity:1 !important;transform:none !important;}

@media(prefers-reduced-motion:reduce){
  [data-aos]{opacity:1 !important;transform:none !important;transition:none !important;}
}

.legal-doc{max-width:72ch;margin:0 auto;padding:64px 20px;line-height:1.7;}
.legal-doc h1{margin:0 0 .6em;}
.legal-doc h2{margin:1.8em 0 .5em;}
.legal-doc h3{margin:1.4em 0 .4em;}
.legal-doc p,.legal-doc li{margin:0 0 .8em;}
.legal-doc ul,.legal-doc ol{padding-left:1.4em;margin:0 0 1em;}
.legal-doc table{width:100%;border-collapse:collapse;margin:0 0 1.2em;}
.legal-doc th,.legal-doc td{border:1px solid currentColor;padding:.5em;text-align:left;}

@media (max-width: 720px) {
  body { overflow-x: hidden; }
  h1, h2, h3, p, li, td { overflow-wrap: break-word; }
  
  input, select, textarea { max-width: 100%; min-width: 0; }
  
  img, svg, video, iframe, table { max-width: 100%; }
}

@media (max-width: 720px) {
  
.hbs-logo,
#off-canvas-95s,
.hbs-cta-btn,
.hbs-hero-blk,
.hbs-pillar-stack,
.hbs-form,
.hbs-field,
.overlay-box-yso.is-open,.site-modal.is-open,
.privacy-note-hge-cat,
.privacy-note-hge-links,
.form-done-a3x.is-open,
.form-done-a3x__mark { flex-wrap: wrap; }
  
.hbs-logo > *,
#off-canvas-95s > *,
.hbs-cta-btn > *,
.hbs-hero-blk > *,
.hbs-pillar-stack > *,
.hbs-form > *,
.hbs-field > *,
.overlay-box-yso.is-open,.site-modal.is-open > *,
.privacy-note-hge-cat > *,
.privacy-note-hge-links > *,
.form-done-a3x.is-open > *,
.form-done-a3x__mark > * { min-width: 0; }
}
