
@font-face{font-family:'BEBAS';src:url('/assets/font/bebas.ttf?v=2') format('truetype');font-display:swap}
@font-face{font-family:'BebasNeue';src:url('/assets/font/bebasneue.otf?v=2') format('opentype');font-display:swap}

:root{
  --navy:#000773;
  --ink:#000;
  --body:#1c1c1c;
  --muted:#5a5a5a;
  --hl:#b22222;
  --paper:#fff;
  --mist:#f4f4f4;
  --stone:#e6e6e6;
  --night:#1a1b1c;
  --line:rgba(255,255,255,.16);
  --wrap:1200px;
  --hdr:108px;
}
*,*::before,*::after{box-sizing:border-box}
html{-webkit-text-size-adjust:100%}
body{
  margin:0;background:var(--paper);color:var(--body);
  font-family:'Heebo',Arial,Helvetica,sans-serif;font-size:18px;font-weight:400;line-height:1.6;
  overflow-x:hidden;
}
img,svg,video{max-width:100%;height:auto;display:block}
a{color:inherit;text-decoration:none}
h1,h2,h3,h4{margin:0;font-weight:700;line-height:1.25}
p{margin:0 0 18px}
p:last-child{margin-bottom:0}
b,strong{font-weight:700}
em.hl{font-style:normal;color:var(--hl);font-weight:900}
.wrap{width:min(100% - 40px,var(--wrap));margin-inline:auto}
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0 0 0 0);white-space:nowrap;border:0}
:focus-visible{outline:3px solid var(--navy);outline-offset:3px}

/* ---------------- buttons (navy pill, exactly as the legacy site) --------- */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  background:var(--navy);color:#fff!important;border:0;border-radius:999px;
  padding:13px 40px;font-size:15px;font-weight:500;line-height:1.2;cursor:pointer;
  transition:filter .2s ease,transform .2s ease;text-align:center;
}
.btn:hover{filter:brightness(1.35);transform:translateY(-1px)}
.btn-sm{padding:9px 26px;font-size:14px}
.btn-block{width:100%}

/* ---------------- header ------------------------------------------------- */
.hdr{position:sticky;top:0;z-index:90;background:#fff;box-shadow:0 1px 0 rgba(0,0,0,.08)}
.hdr-row{display:flex;align-items:center;gap:18px;min-height:var(--hdr)}
.brand{display:flex;align-items:center;flex:0 0 auto;order:0}
.brand img{height:88px;width:auto}
.nav{display:flex;align-items:center;gap:22px;margin:0;padding:0;list-style:none;flex:1 1 auto;justify-content:center}
.nav>li{position:relative}
.nav>li>a{display:inline-block;padding:8px 2px;font-size:15px;color:#333;border-bottom:2px solid transparent;white-space:nowrap}
.nav>li>a:hover{color:var(--navy)}
.nav>li.on>a{color:var(--navy);border-bottom-color:var(--navy)}
/* dropdowns — TWO levels, as the legacy articles menu had. Level 1 drops below
   its top-level item; level 2 flies out to the INLINE-START side (the right, in
   RTL) so it never covers the parent row it belongs to. */
.nav .sub{
  position:absolute;top:100%;inset-inline-start:50%;transform:translateX(50%) translateY(6px);
  min-width:236px;background:#fff;box-shadow:0 18px 40px rgba(0,0,0,.16);border-radius:10px;
  padding:8px 0;margin:0;list-style:none;opacity:0;visibility:hidden;transition:.18s ease;z-index:2;
}
.nav>li:hover>.sub,.nav>li:focus-within>.sub{opacity:1;visibility:visible;transform:translateX(50%) translateY(0)}
.nav .sub li{position:relative}
.nav .sub a{
  display:flex;align-items:center;justify-content:space-between;gap:12px;
  padding:9px 20px;font-size:14.5px;color:#333;white-space:nowrap;
}
.nav .sub a:hover{background:var(--mist);color:var(--navy)}
.nav .sub li.on>a{color:var(--navy);font-weight:500}
.sub-caret{display:inline-flex;flex:0 0 auto;color:#9d9d9d;transition:.18s ease}
[dir="rtl"] .sub-caret{transform:scaleX(-1)}
.nav .sub li.has-sub:hover>a .sub-caret{color:var(--navy)}
/* level 2 — sideways from its parent row, overlapping 4px so the pointer can
   cross the seam without the flyout closing under it */
.nav .sub--nested{top:-8px;inset-inline-start:100%;transform:translateX(0);margin-inline-start:-4px}
.nav .sub li.has-sub:hover>.sub--nested,
.nav .sub li.has-sub:focus-within>.sub--nested{opacity:1;visibility:visible;transform:translateX(0)}
.hdr-cta{display:flex;align-items:center;gap:10px;flex:0 0 auto;order:2}
.burger{
  display:none;align-items:center;justify-content:center;width:46px;height:46px;
  background:none;border:1px solid rgba(0,0,0,.18);border-radius:10px;color:var(--navy);cursor:pointer;
}

/* ---------------- hero (home) -------------------------------------------- */
.hero{position:relative;min-height:min(78vh,640px);display:flex;align-items:center;background:#dfe3e0 center/cover no-repeat}
/* light wash on the INLINE-START edge (right, in RTL) — that is where the
   legacy hero kept its copy, over a naturally pale part of the photo */
.hero::after{content:"";position:absolute;inset:0;background:linear-gradient(to left,rgba(255,255,255,.92) 0%,rgba(255,255,255,.82) 34%,rgba(255,255,255,.35) 58%,rgba(255,255,255,0) 78%)}
.hero .wrap{position:relative;z-index:1;padding:70px 0}
.hero-box{max-width:520px;margin-inline-end:auto;text-align:start}
.wordmark{
  font-family:'BEBAS','BebasNeue','Oswald',Impact,sans-serif;font-weight:700;color:#000;
  font-size:clamp(40px,6vw,58px);line-height:1.02;letter-spacing:.01em;margin-bottom:26px;
  text-transform:uppercase;
}
.hero-lines p{font-size:18px;color:#000;margin-bottom:2px;line-height:1.6}
.hero-cta{margin-top:26px}

/* ---------------- page banner (inner pages) ------------------------------ */
.banner{position:relative;display:flex;align-items:center;justify-content:center;min-height:252px;background:#2b2b2b center/cover no-repeat;text-align:center}
.banner::after{content:"";position:absolute;inset:0;background:rgba(0,0,0,.28)}
.banner .wrap{position:relative;z-index:1;padding:52px 0}
.banner h1{font-size:clamp(30px,5vw,50px);color:#fff;font-weight:700;text-shadow:0 2px 18px rgba(0,0,0,.35)}
.crumbs{position:relative;z-index:1;display:flex;gap:18px;justify-content:center;flex-wrap:wrap;margin-top:14px}
.crumbs a{font-size:15px;color:#fff;text-decoration:underline;text-underline-offset:4px}

/* ---------------- generic sections --------------------------------------- */
.sec{padding:74px 0}
.sec-mist{background:var(--mist)}
.sec-stone{background:var(--stone)}
.h2navy{color:var(--navy);font-size:clamp(22px,3vw,26px);font-weight:700;margin-bottom:16px}
.verse{color:var(--navy);font-size:clamp(19px,2.4vw,24px);font-weight:900;margin-bottom:30px;line-height:1.6}
.lead{font-size:18px;font-weight:300;line-height:1.8}

/* ---------------- intro split (home + about) -----------------------------
   The media column is FIRST in the DOM so RTL places it on the right, the
   side the legacy layout used. */
.split{display:grid;grid-template-columns:.95fr 1.05fr;gap:56px;align-items:center}
.split-media img{width:100%;border-radius:14px;box-shadow:0 22px 50px rgba(0,0,0,.16)}
/* ROUND 2 (item 7): the About portrait was rendering 543x725 and swallowing
   the page. --sm narrows the media COLUMN, so the copy keeps its measure
   instead of being left standing beside a hole. */
.split--sm{grid-template-columns:320px 1fr;gap:52px}
.split--sm .split-media img{max-width:320px}

/* ---------------- tile grid (home 2x2 hover cards) -----------------------
   direction:ltr so DOM order maps left-to-right exactly as the legacy
   absolutely-positioned grid did; the labels re-assert rtl themselves. */
.tiles{display:grid;grid-template-columns:repeat(2,1fr);gap:26px;direction:ltr}
.tile-label span{direction:rtl}
.tile{position:relative;display:block;border-radius:6px;overflow:hidden;background:#eee}
.tile img{width:100%;aspect-ratio:578/441;object-fit:cover;transition:opacity .35s ease,transform .6s ease}
.tile:hover img,.tile:focus-visible img{opacity:.32;transform:scale(1.04)}
/* ROUND 2 (item 3): the navy pill is gone from the resting state. The legacy
   tiles carried their label inside the HOVER artwork only, so this restores
   that behaviour rather than parking a pill on top of every photo. :active
   covers a touch tap, and every tile still carries its aria-label. */
.tile-label{
  position:absolute;inset:0;display:flex;align-items:center;justify-content:center;
  pointer-events:none;opacity:0;transition:opacity .28s ease;
}
.tile-label span{
  color:#fff;font-size:clamp(19px,2.2vw,25px);font-weight:700;letter-spacing:.01em;
  text-shadow:0 2px 18px rgba(0,0,0,.6);
}
.tile:hover .tile-label,.tile:focus-visible .tile-label,.tile:active .tile-label{opacity:1}

/* ---------------- article band list (מאמרים / שבעת המינים / מסנני קרינה) -- */
/* one continuous photo behind the whole run of bands (as the legacy page did),
   with each band contributing its own dark wash + hairline separator */
.bands{position:relative;background:#333 center top/cover no-repeat;color:#fff}
.bands::after{content:"";position:absolute;inset:0;background:rgba(0,0,0,.44)}
.band{position:relative;z-index:1}
.band + .band{border-top:1px solid rgba(255,255,255,.14)}
.band .wrap{position:relative;z-index:1;padding:56px 0}
.band-row{display:grid;grid-template-columns:320px 1fr;gap:44px;align-items:center}
.band-txt h2{font-size:clamp(21px,2.6vw,26px);color:#fff;margin-bottom:14px}
.band-txt p{color:#fff;font-size:17px;line-height:1.75}
.band-media img{width:100%;border-radius:14px;box-shadow:0 18px 40px rgba(0,0,0,.4)}
.band-more{display:inline-block;margin-top:16px;font-size:15px;color:#fff;text-decoration:underline;text-underline-offset:5px}

/* ---------------- article body ------------------------------------------- */
.article{padding:64px 0 74px}
.article .wrap{width:min(100% - 40px,1170px)}
.article p{font-size:18px;line-height:1.75;margin-bottom:22px}
.article a{color:var(--navy);text-decoration:underline;text-underline-offset:3px}
.article figure{margin:30px 0}
.article figure img{width:100%;border-radius:12px}
.backlinks{display:flex;gap:20px;flex-wrap:wrap;margin-top:40px;padding-top:26px;border-top:1px solid #e2e2e2}
.backlinks a{color:var(--navy);font-size:15px;text-decoration:underline;text-underline-offset:4px}

/* ---------------- card grid (recommended businesses / books) ------------- */
.cards{display:grid;grid-template-columns:repeat(auto-fill,minmax(240px,1fr));gap:26px}
.card{display:block;background:#fff;border:1px solid #ececec;border-radius:12px;overflow:hidden;transition:.25s ease}
.card:hover{transform:translateY(-4px);box-shadow:0 18px 38px rgba(0,0,0,.12)}
.card img{width:100%;aspect-ratio:373/302;object-fit:contain;background:#fff;padding:12px}
.card-body{padding:0 16px 18px;text-align:center}
/* book covers are portrait — let them keep their own ratio */
.cards--books{grid-template-columns:repeat(auto-fill,minmax(220px,1fr))}
.cards--books .card img{aspect-ratio:288/373;object-fit:cover;padding:0}

/* ---------------- recommended businesses (item 9) -----------------------
   The legacy page held TWO artworks per business: the plain LOGO (shown at
   rest) and a details card with the name, blurb and phone/website button
   (swapped in on hover, via its onmouseover-image). Round 1 rendered the
   details artwork permanently and never showed a single logo.
   Restored here: 3 per row as the legacy grid had, larger, logo at rest,
   details cross-faded in on hover / keyboard focus.
   direction:ltr so DOM order maps left-to-right exactly like the legacy
   absolutely-positioned grid (RTL would mirror every row). */
.cards--biz{grid-template-columns:repeat(3,1fr);gap:30px;direction:ltr}
.bizcard{
  position:relative;display:block;background:#fff;border:1px solid #e9e9e9;border-radius:14px;
  overflow:hidden;aspect-ratio:373/302;transition:transform .3s ease,box-shadow .3s ease;
}
.bizcard:hover{transform:translateY(-5px);box-shadow:0 22px 44px rgba(0,0,0,.14)}
.bizcard img{
  position:absolute;inset:0;width:100%;height:100%;object-fit:contain;background:#fff;
  padding:16px;transition:opacity .32s ease;
}
.bizcard .biz-info{opacity:0}
.bizcard:hover .biz-info,.bizcard:focus-visible .biz-info,.bizcard.is-open .biz-info{opacity:1}
.bizcard:hover .biz-logo,.bizcard:focus-visible .biz-logo,.bizcard.is-open .biz-logo{opacity:0}
/* touch devices have no hover, and 4 of the 7 businesses are reachable ONLY
   by the phone number printed inside the details artwork — so there is an
   explicit toggle instead of a dead end. Hidden where hover exists. */
.biz-more{
  position:absolute;inset-inline-end:10px;bottom:10px;z-index:2;display:none;
  width:38px;height:38px;border-radius:50%;border:0;cursor:pointer;
  background:var(--navy);color:#fff;align-items:center;justify-content:center;
  box-shadow:0 6px 18px rgba(0,0,0,.28);font:inherit;font-size:19px;line-height:1;
}
@media (hover:none){.biz-more{display:flex}}

/* ---------------- contact band ------------------------------------------- */
/* ROUND 2 (item 4): show the photo this band actually carries.
   It read as flat grey in the round-1 reference capture only because this shape
   is the single element on the legacy page with background-attachment:fixed,
   which a full-page screenshot cannot paint — so an opaque #8b8b8b overlay got
   baked in on top of a perfectly good photo. The attachment stays SCROLL here
   deliberately: fixed would disappear the same way in a publish snapshot.
   The scrim is a gradient rather than a flat fill, dark enough to hold white
   text over a bright photo. */
.contact{position:relative;background:#6f6f6f center/cover no-repeat;background-attachment:scroll;color:#fff}
.contact::after{
  content:"";position:absolute;inset:0;
  background:linear-gradient(180deg,rgba(9,10,14,.74) 0%,rgba(9,10,14,.58) 45%,rgba(9,10,14,.7) 100%);
}
.contact .wrap{position:relative;z-index:1;padding:66px 0 72px}
.contact h2{text-align:center;font-size:clamp(23px,3vw,30px);color:#fff;margin-bottom:34px;text-shadow:0 2px 16px rgba(0,0,0,.5)}
.frm-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.fld label{display:block;font-size:14px;margin-bottom:7px;color:#fff}
.fld input,.fld textarea{
  width:100%;border:0;border-radius:999px;padding:13px 18px;font:inherit;font-size:15px;
  background:#e2e2e2;color:#111;
}
.fld textarea{border-radius:16px;min-height:120px;resize:vertical}
.fld-wide{grid-column:1/-1;margin-top:18px}
.frm-actions{display:flex;justify-content:center;margin-top:26px}

/* ---------------- contact page (details right, form card left) ----------- */
.cpage{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:start}
/* ROUND 2 (item 10): the contact details read right-to-left. They were
   justify-content:flex-end, which under RTL is the physical LEFT — so the whole
   block sat left-aligned with each icon to the LEFT of its text. flex-start is
   the RTL reading edge, and the icon is emitted FIRST in the markup so it leads
   the row on the right. */
.cdet h2{color:var(--navy);font-size:clamp(22px,3vw,28px);margin-bottom:26px;text-align:start}
.crow{display:flex;align-items:center;gap:14px;justify-content:flex-start;margin-bottom:20px;font-size:16px;text-align:start}
.crow .ci{flex:0 0 auto;width:34px;height:34px;display:flex;align-items:center;justify-content:center;color:var(--navy)}
.csoc{display:flex;gap:14px;justify-content:flex-start;margin-top:26px}
.csoc a{width:44px;height:44px;border-radius:50%;display:flex;align-items:center;justify-content:center;color:#fff}
.csoc .fb{background:#1877f2}
.csoc .wa{background:#25d366}
.ccard{background:#fff;border:1px solid #e8e8e8;border-radius:16px;box-shadow:0 16px 40px rgba(0,0,0,.08);padding:34px 30px}
.ccard h2{text-align:center;color:#111;font-size:clamp(19px,2.4vw,24px);margin-bottom:26px}
.ccard .fld{margin-bottom:16px}
.ccard .fld label{color:#333}
.ccard .fld input,.ccard .fld textarea{background:#fff;border:1px solid #cfcfcf}
.ccard .btn{width:100%;margin-top:8px}

/* ---------------- books hero (centred stack, as the legacy page) --------- */
.bookhero{max-width:820px;margin-inline:auto;text-align:center}
.bookhero img{max-width:360px;margin-inline:auto;border-radius:8px}
.bookhero .oos{color:var(--hl);font-weight:900;font-size:clamp(28px,4vw,42px);margin:22px 0 6px}
.bookhero h2{color:var(--navy);font-size:30px;margin-bottom:16px}
.bookhero p{text-align:start}

/* ---------------- bio band ----------------------------------------------- */
.bio{background:var(--mist);padding:70px 0}
.bio-row{display:grid;grid-template-columns:340px 1fr;gap:56px;align-items:center}
.bio-media img{width:100%;border-radius:18px;box-shadow:0 18px 44px rgba(0,0,0,.16)}
.bio h2{color:var(--navy);font-size:clamp(23px,3vw,30px);margin-bottom:16px}
.bio p{font-size:18px;line-height:1.75}

/* ---------------- entrance effect (item 2) ------------------------------
   RENDER-SAFE BY CONSTRUCTION. The base state is the FINAL state: fully
   visible, no opacity:0, nothing waiting on JS. The observer adds .is-in,
   which runs a TRANSFORM-ONLY keyframe — so a no-JS load, a no-scroll static
   publish snapshot, and even a frame caught mid-animation all show the
   content in full. (A fade from opacity:0 is what makes sections ship blank
   after a studio Publish — see the RENDER-SAFE RULE in CLAUDE.md.) */
@media (prefers-reduced-motion:no-preference){
  .rv.is-in{animation:rvIn .85s cubic-bezier(.22,.68,.24,1) both}
  .rv-r.is-in{animation-name:rvInR}
  .rv-l.is-in{animation-name:rvInL}
  .rv-d2.is-in{animation-delay:.14s}
}
@keyframes rvIn{from{transform:translateY(30px)}to{transform:none}}
@keyframes rvInR{from{transform:translateX(46px) scale(.985)}to{transform:none}}
@keyframes rvInL{from{transform:translateX(-46px)}to{transform:none}}

/* ---------------- floating whatsapp -------------------------------------- */
.wa-float{
  position:fixed;inset-inline-end:20px;bottom:20px;z-index:80;
  width:56px;height:56px;border-radius:50%;background:#25d366;color:#fff;
  display:flex;align-items:center;justify-content:center;box-shadow:0 10px 26px rgba(0,0,0,.28);
}
.wa-float:hover{filter:brightness(1.06)}

/* ---------------- footer -------------------------------------------------- */
.ftr{background:var(--night);color:#fff;padding:58px 0 30px}
.ftr-row{display:grid;grid-template-columns:1fr 1fr 1fr;gap:40px;align-items:start}
.ftr h3{font-size:18px;font-weight:700;color:#fff;margin-bottom:18px}
.ftr a,.ftr p{color:#fff;font-size:15px;font-weight:300}
.ftr ul{list-style:none;margin:0;padding:0}
.ftr ul li{margin-bottom:9px}
.ftr ul a:hover{text-decoration:underline}
/* ROUND 2 (item 6): logo + social icons sit flush with the LEFT edge of the
   content column, as they do on the legacy footer. A block element in RTL
   aligns to its inline-start (the right), which is why they floated ~223px
   inboard; margin-inline-start:auto pushes them to the physical left. */
.ftr-brand img{width:150px;background:#fff;border-radius:14px;padding:12px;margin-inline-start:auto;margin-inline-end:0}
.ftr-social{display:flex;gap:14px;margin-top:20px;justify-content:flex-end}
.ftr-social a{
  width:42px;height:42px;border-radius:50%;background:#fff;color:var(--night);
  display:flex;align-items:center;justify-content:center;
}
.ftr-credit{margin-top:40px;padding-top:20px;border-top:1px solid var(--line);text-align:center}
.ftr-credit,.ftr-credit a{font-size:13px;font-weight:300;color:#d8d8d8}
.ftr-credit a{text-decoration:underline}

/* ---------------- store page --------------------------------------------- */
.store-note{
  background:var(--mist);border:1px solid #e0e0e0;border-radius:14px;
  padding:30px 26px;text-align:center;margin-top:34px;
}
.store-note h2{color:var(--navy);font-size:22px;margin-bottom:12px}
.pay-list{list-style:none;margin:18px 0 0;padding:0;display:flex;gap:12px;flex-wrap:wrap;justify-content:center}
.pay-list li{background:#fff;border:1px solid #e2e2e2;border-radius:999px;padding:9px 20px;font-size:15px}

/* ---------------- mobile drawer (canonical) ------------------------------
   Physical right/left anchoring + !important on every layout property at
   specificity (0,2,0) so a legacy nav global cannot re-anchor or re-flow it.
   flex-wrap MUST stay nowrap - a wrapping column drawer spills its overflow
   into a second, off-screen column on RTL. */
.m-ov{position:fixed;inset:0;background:rgba(0,0,0,.55);opacity:0;visibility:hidden;transition:.3s;z-index:98}
html.nav-open .m-ov{opacity:1;visibility:visible}
[data-webydo-header-drawer][aria-hidden]{
  position:fixed!important;top:0!important;bottom:0!important;
  width:min(86vw,340px)!important;max-width:340px!important;
  background:#fff!important;box-shadow:0 0 60px rgba(0,0,0,.4)!important;
  padding:22px 20px 34px!important;margin:0!important;z-index:99!important;overflow-y:auto!important;
  display:flex!important;flex-direction:column!important;flex-wrap:nowrap!important;gap:0!important;
  transition:transform .32s ease!important;visibility:hidden!important;
}
[data-webydo-header-drawer][aria-hidden][data-side=right]{right:0!important;left:auto!important;transform:translateX(105%)!important}
[data-webydo-header-drawer][aria-hidden][data-side=left]{left:0!important;right:auto!important;transform:translateX(-105%)!important}
[data-webydo-header-drawer][aria-hidden=false][data-side]{transform:translateX(0)!important;visibility:visible!important}
[data-webydo-header-drawer][aria-hidden] a{
  display:block!important;padding:13px 4px!important;font-size:16px!important;font-weight:500!important;
  color:#222!important;border-bottom:1px solid #ececec!important;
}
[data-webydo-header-drawer][aria-hidden] a.btn{
  border-bottom:0!important;color:#fff!important;margin-top:18px!important;
  padding:14px 20px!important;justify-content:center!important;
}
[data-webydo-header-drawer][aria-hidden] .m-sub a{padding-inline-start:18px!important;font-size:15px!important;color:#555!important}
/* two-level articles tree in the drawer (item 8) — indent marks the depth */
[data-webydo-header-drawer][aria-hidden] .m-sub a.m-lvl2{
  padding-inline-start:38px!important;font-size:14px!important;color:#777!important;
}
.m-close{position:absolute;top:12px;inset-inline-end:12px;background:none;border:0;color:#666;font-size:32px;line-height:1;cursor:pointer;z-index:2}
.m-brand{margin-bottom:18px;padding-inline-end:44px}
.m-brand img{height:52px;width:auto}
.m-head{margin-top:12px;font-size:13px;color:#999;letter-spacing:.04em}
html.nav-open{overflow:hidden}
html.nav-open .burger{display:none!important}

/* ---------------- responsive --------------------------------------------- */
@media (max-width:1100px){
  .nav{gap:14px}
  .nav>li>a{font-size:14px}
}
@media (max-width:1024px){
  .nav{display:none!important}
  .burger{display:flex!important}
  .hdr-cta .btn{display:none}
  .hdr-row{min-height:88px}
  .brand img{height:64px}
}
@media (max-width:900px){
  .split,.split--sm,.bio-row,.band-row,.cpage{grid-template-columns:1fr;gap:30px}
  .split--sm .split-media img{max-width:280px}
  .cards--biz{grid-template-columns:repeat(2,1fr);gap:20px}
  .band-media,.bio-media,.split-media{max-width:420px;margin-inline:auto;width:100%}
  .frm-grid{grid-template-columns:1fr}
  .ftr-row{grid-template-columns:1fr;gap:34px;text-align:center}
  .ftr-brand img{margin-inline:auto!important}
  .ftr-social{justify-content:center}
  .hero-box{max-width:none;margin-inline-start:0}
  .hero::after{background:rgba(255,255,255,.62)}
}
@media (max-width:640px){
  body{font-size:17px}
  .sec,.article{padding:48px 0}
  .tiles{grid-template-columns:1fr;gap:18px}
  .cards{grid-template-columns:repeat(auto-fill,minmax(150px,1fr));gap:16px}
  .cards--biz{grid-template-columns:1fr;gap:18px;max-width:340px;margin-inline:auto}
  .banner{min-height:190px}
  .wa-float{width:52px;height:52px}
}
