.site-admin-bar{
  position:sticky;
  top:0;
  z-index:95;
  min-height:34px;
  background:#111;
  color:#fff;
  border-bottom:1px solid rgba(255,255,255,.08);
}

.site-admin-bar__inner{
  width:min(1320px, calc(100% - 40px));
  margin:0 auto;
  min-height:34px;
  display:grid;
  grid-template-columns:auto 1fr;
  gap:18px;
  align-items:center;
}

.site-admin-bar__menu{
  position:relative;
}

.site-admin-bar__toggle,
.site-admin-bar__actions{
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
}

.site-admin-bar__toggle{
  display:none;
  min-height:34px;
  padding:0;
  border:0;
  background:transparent;
  color:#fff;
  font-size:.82rem;
  cursor:pointer;
}

.site-admin-bar__hamburger{
  display:grid;
  gap:3px;
}

.site-admin-bar__hamburger span{
  display:block;
  width:14px;
  height:2px;
  border-radius:999px;
  background:currentColor;
}

.site-admin-bar__panel{
  display:block;
}

.site-admin-bar__nav{
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
}

.site-admin-bar__nav a{
  min-height:34px;
  padding:0;
  display:flex;
  align-items:center;
}

.site-admin-bar__editor-link{
  min-height:34px;
  padding:0;
  border:0;
  background:transparent;
  color:rgba(255,255,255,.9);
  font:inherit;
  cursor:pointer;
}

.site-admin-bar__editor-link:hover{
  color:#fff;
}

.site-admin-bar__actions{
  justify-content:flex-end;
}

.site-admin-bar a{
  color:rgba(255,255,255,.9);
  font-size:.82rem;
  text-decoration:none;
}

.site-admin-bar a:hover{
  color:#fff;
}

.has-site-admin-bar .site-header{
  top:34px;
}

.front-editor-drawer{
  position:fixed;
  left:0;
  top:34px;
  bottom:0;
  z-index:94;
  width:320px;
  padding:20px 18px 24px;
  background:#f6f0e7;
  border-right:1px solid rgba(92,74,59,.12);
  box-shadow:18px 0 38px rgba(24,18,14,.08);
  overflow:auto;
  transform:translateX(-100%);
  transition:transform .22s ease;
}

.front-editor-drawer.is-open{
  transform:translateX(0);
}

.has-front-editor.is-front-editor-open{
  padding-left:320px;
}

.front-editor-drawer__header{
  display:flex;
  justify-content:space-between;
  gap:14px;
  align-items:flex-start;
  margin-bottom:18px;
}

.front-editor-drawer__eyebrow{
  margin:0 0 8px;
  color:rgba(73,57,47,.74);
  font-size:.76rem;
  font-weight:700;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.front-editor-drawer__header h2{
  margin:0 0 8px;
  font-size:1.4rem;
}

.front-editor-drawer__page{
  margin:0;
  color:var(--muted);
  line-height:1.45;
}

.front-editor-drawer__close{
  width:38px;
  min-width:38px;
  height:38px;
  border-radius:999px;
  border:1px solid rgba(92,74,59,.14);
  background:#fff;
  color:var(--text);
  font-size:1.3rem;
  line-height:1;
  cursor:pointer;
}

.front-editor-drawer__body{
  display:grid;
  gap:14px;
}

.front-editor-card{
  padding:18px;
  border:1px solid rgba(92,74,59,.12);
  border-radius:16px;
  background:rgba(255,255,255,.76);
}

.front-editor-card h3{
  margin:0 0 10px;
  font-size:1rem;
}

.front-editor-card p,
.front-editor-card li{
  color:var(--muted);
  line-height:1.55;
}

.front-editor-card ul{
  margin:0;
  padding-left:18px;
}

.front-editor-seo{
  display:grid;
  gap:12px;
}

.front-editor-seo p{
  margin:0;
}

.front-editor-score{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-top:16px;
  padding-top:14px;
  border-top:1px solid rgba(92,74,59,.12);
}

.front-editor-score__label{
  color:rgba(73,57,47,.76);
  font-size:.78rem;
  font-weight:700;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.front-editor-modal{
  position:fixed;
  inset:0;
  z-index:120;
}

.front-editor-modal__backdrop{
  position:absolute;
  inset:0;
  background:rgba(21,16,13,.42);
}

.front-editor-modal__dialog{
  position:relative;
  width:min(720px, calc(100% - 32px));
  margin:88px auto 0;
  padding:22px;
  border-radius:22px;
  background:#fff;
  box-shadow:0 20px 50px rgba(21,16,13,.22);
}

.front-editor-modal__header{
  display:flex;
  justify-content:space-between;
  gap:14px;
  align-items:flex-start;
  margin-bottom:18px;
}

.front-editor-modal__header h3{
  margin:0;
}

.front-editor-modal__close{
  width:38px;
  min-width:38px;
  height:38px;
  border-radius:999px;
  border:1px solid rgba(92,74,59,.14);
  background:#fff;
  color:var(--text);
  font-size:1.3rem;
  line-height:1;
  cursor:pointer;
}

.front-editor-modal__body{
  display:grid;
  gap:16px;
}

.front-editor-modal__field{
  display:grid;
  gap:8px;
}

.front-editor-link-grid{
  display:grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 280px);
  gap:18px;
  align-items:start;
}

.front-editor-link-col{
  display:grid;
  gap:10px;
}

.front-editor-radio-group{
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
}

.front-editor-radio-group__label{
  font-weight:600;
  white-space:nowrap;
}

.front-editor-radio{
  display:flex;
  align-items:center;
  gap:10px;
  white-space:nowrap;
}

.front-editor-radio input{
  width:auto;
}

.front-editor-modal__field[hidden]{
  display:none !important;
}

.front-editor-modal__field input{
  width:100%;
}

.front-editor-modal__field select{
  width:100%;
}

.front-editor-modal__field textarea{
  width:100%;
  min-height:220px;
  resize:vertical;
}

.front-editor-wysiwyg{
  min-height:220px;
  padding:14px 16px;
  border:1px solid rgba(92,74,59,.16);
  border-radius:14px;
  background:#fff;
  color:var(--text);
  line-height:1.65;
  overflow:auto;
}

.front-editor-wysiwyg:focus{
  outline:2px solid rgba(95,110,91,.28);
  outline-offset:2px;
}

.front-editor-wysiwyg p{
  margin:0 0 1em;
}

.front-editor-wysiwyg p:last-child{
  margin-bottom:0;
}

.front-editor-code{
  border-top:1px solid rgba(92,74,59,.12);
  padding-top:10px;
}

.front-editor-code summary{
  cursor:pointer;
  font-weight:600;
  color:var(--text);
}

.front-editor-code[open] summary{
  margin-bottom:10px;
}

.front-editor-modal__field [hidden]{
  display:none !important;
}

.front-editor-modal__actions{
  display:flex;
  justify-content:flex-end;
  gap:12px;
  margin-top:20px;
}

.front-editor-toolbar{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}

.front-editor-toolbar button{
  min-height:36px;
  padding:0 12px;
  border-radius:999px;
  border:1px solid rgba(92,74,59,.14);
  background:#fff;
  color:var(--text);
  cursor:pointer;
}

.front-editor-help{
  margin:0;
  color:var(--muted);
  font-size:.92rem;
}

.front-editor-check{
  display:flex;
  align-items:center;
  gap:10px;
}

.front-editor-check input{
  width:auto;
}

.front-editor-inline-actions{
  display:flex;
  justify-content:flex-start;
}

.front-editor-inline-actions a{
  color:var(--green-dark);
  font-size:.92rem;
  text-decoration:none;
}

.front-editor-inline-actions a:hover{
  text-decoration:underline;
}

.front-editor-page-table{
  border:1px solid rgba(92,74,59,.12);
  border-radius:14px;
  overflow:hidden;
  background:#fff;
  max-height:280px;
  overflow-y:auto;
}

.front-editor-page-table__head,
.front-editor-page-table__row{
  display:grid;
  grid-template-columns:minmax(0, 1.2fr) minmax(0, 1fr) 88px;
  gap:12px;
  align-items:center;
}

.front-editor-page-table__head{
  padding:12px 14px;
  background:rgba(246,240,231,.72);
  color:rgba(73,57,47,.8);
  font-size:.82rem;
  font-weight:700;
}

.front-editor-page-table__row{
  width:100%;
  padding:12px 14px;
  border:0;
  border-top:1px solid rgba(92,74,59,.08);
  background:#fff;
  color:var(--text);
  text-align:left;
  cursor:pointer;
}

.front-editor-page-table__row:hover{
  background:rgba(246,240,231,.48);
}

.front-editor-page-table__row.is-selected{
  background:rgba(95,110,91,.12);
  box-shadow:inset 3px 0 0 rgba(95,110,91,.9);
}

.front-editor-page-table__title,
.front-editor-page-table__url{
  min-width:0;
}

.front-editor-page-table__url{
  color:var(--muted);
  font-size:.92rem;
}

.front-editor-page-table__preview{
  display:flex;
  justify-content:flex-end;
}

.front-editor-page-table__preview .btn{
  pointer-events:none;
  min-height:34px;
  padding:0 10px;
  font-size:.82rem;
}

.footer-socials{
  display:flex;
  align-items:center;
  gap:10px;
  margin-top:12px;
}

.footer-social{
  width:40px;
  height:40px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(255,255,255,.14);
  border-radius:14px;
  color:#fff;
  background:rgba(255,255,255,.07);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.05);
  transition:transform .22s ease, border-color .22s ease, background .22s ease, color .22s ease;
}

.footer-social:hover{
  transform:translateY(-2px);
  color:#fff;
  border-color:rgba(255,255,255,.26);
  background:rgba(255,255,255,.14);
}

.footer-social svg{
  width:18px;
  height:18px;
  display:block;
  fill:currentColor;
}

@media (max-width: 760px){
  .front-editor-link-grid{
    grid-template-columns:1fr;
  }

  .front-editor-page-table__head,
  .front-editor-page-table__row{
    grid-template-columns:minmax(0, 1fr);
  }

  .front-editor-page-table__preview{
    justify-content:flex-start;
  }
}

[data-front-editor-target]{
  transition:outline-color .15s ease, box-shadow .15s ease;
}

.is-front-editor-open [data-front-editor-target].is-editor-available{
  cursor:pointer;
}

.is-front-editor-open [data-front-editor-target].is-editor-available:hover{
  outline:2px solid rgba(95,110,91,.55);
  outline-offset:4px;
}

[data-front-editor-target].is-editor-selected{
  outline:2px solid rgba(95,110,91,.9);
  outline-offset:4px;
  box-shadow:0 0 0 6px rgba(95,110,91,.12);
}

.site-header{
  position:sticky;
  top:0;
  z-index:80;
  backdrop-filter: blur(16px);
  background:rgba(248,243,240,.9);
  border-bottom:1px solid rgba(76,68,61,.08);
  box-shadow:0 10px 24px rgba(67,54,45,.04);
}
.header-bar{
  min-height:98px;
  display:grid;
  grid-template-columns:minmax(150px, 210px) minmax(0,1fr) auto;
  gap:18px;
  align-items:center;
  padding:12px 0;
}
.brand{
  display:block;
  width:max-content;
  max-width:230px;
}
.brand-mark{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:8px;
}
.brand img{
  width:auto;
  height:48px;
  object-fit:contain;
}
.brand-tagline{
  display:block;
  color:var(--green-dark);
  font-size:.72rem;
  line-height:1.35;
  letter-spacing:.03em;
  white-space:nowrap;
}
.nav{
  display:flex;
  justify-content:center;
  gap:clamp(8px, .9vw, 18px);
  min-width:0;
}
.nav-item{position:relative}
.nav-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:6px;
  padding:18px 0;
  min-height:54px;
  font-size:clamp(.78rem, .8vw, .95rem);
  font-weight:600;
  color:var(--text);
  white-space:nowrap;
  text-align:center;
}
.nav-link-text{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:0;
}
.nav-link-text.is-stacked{
  display:grid;
  gap:1px;
  line-height:1.05;
  align-content:center;
}
.nav-link-text.is-stacked > span{
  display:block;
}
.nav-link:hover,
.nav-link.is-active{color:var(--green-dark)}
.nav-link .caret{
  width:10px;height:10px;display:inline-block;position:relative;top:-1px;
}
.nav-link .caret:before{
  content:"";
  display:block;
  border-left:4px solid transparent;
  border-right:4px solid transparent;
  border-top:5px solid currentColor;
}
.header-actions{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:10px;
}
.header-contact{
  display:none;
}
.header-actions .btn{
  white-space:nowrap;
  min-height:44px;
  padding:0 16px;
}
.search-trigger{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  position:relative;
  width:40px;
  min-width:40px;
  min-height:40px;
  padding:0;
  border:1px solid rgba(95,110,91,.22);
  border-radius:999px;
  background:linear-gradient(180deg, rgba(246,240,231,.96), rgba(236,228,216,.96));
  color:var(--text);
  box-shadow:0 8px 18px rgba(31,49,44,.08);
  cursor:pointer;
  transition:color .2s ease, transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  animation:searchTriggerPulse 5s ease-in-out infinite;
}
.search-trigger:hover,
.search-trigger:focus-visible{
  color:#fff;
  border-color:rgba(30,74,66,.48);
  background:linear-gradient(180deg, rgba(46,95,86,.96), rgba(30,74,66,.96));
  box-shadow:0 14px 28px rgba(30,74,66,.22);
  transform:translateY(-1px) scale(1.03);
}
.search-trigger:focus-visible{
  outline:2px solid rgba(95,110,91,.35);
  outline-offset:3px;
}
.search-trigger svg{
  display:block;
  width:24px;
  height:24px;
  filter:drop-shadow(0 1px 0 rgba(255,255,255,.28));
}
.search-trigger svg circle,
.search-trigger svg line{
  stroke-width:2.7;
  stroke-linecap:round;
}
.search-trigger::after{
  content:"";
  position:absolute;
  inset:-2px;
  border-radius:inherit;
  border:1px solid rgba(169,114,62,.26);
  opacity:.62;
  pointer-events:none;
  animation:searchTriggerHalo 2s ease-in-out infinite;
}
@keyframes searchTriggerPulse{
  0%, 82%, 100%{
    transform:translate3d(0,0,0) rotate(0deg) scale(1);
  }
  3%{
    transform:translate3d(0,-2px,0) scale(1.05);
  }
  5%{
    transform:translate3d(-1px,0,0) rotate(-5deg);
  }
  7%{
    transform:translate3d(1px,0,0) rotate(5deg);
  }
  9%{
    transform:translate3d(-1px,0,0) rotate(-4deg);
  }
  11%{
    transform:translate3d(1px,0,0) rotate(4deg);
  }
  13%{
    transform:translate3d(0,0,0) rotate(0deg) scale(1);
  }
}
@keyframes searchTriggerHalo{
  0%, 82%, 100%{
    opacity:.34;
    transform:scale(1);
  }
  4%{
    opacity:.56;
    transform:scale(1.08);
  }
  10%{
    opacity:.18;
    transform:scale(1.16);
  }
}
.menu-toggle{
  display:none;
  align-items:center;
  justify-content:center;
  width:48px;
  min-width:48px;
  min-height:48px;
  padding:0;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.45);
}
.menu-toggle-box{
  display:grid;
  gap:4px;
}
.menu-toggle-box span{
  display:block;
  width:18px;
  height:2px;
  border-radius:999px;
  background:var(--text);
}

.mobile-panel{
  display:none;
  padding:0 0 14px;
}
.mobile-shell{
  background:rgba(255,255,255,.88);
  border:1px solid var(--line);
  border-radius:28px;
  box-shadow:var(--shadow);
  padding:10px 14px 14px;
  max-height:calc(100vh - 122px);
  overflow-y:auto;
  overscroll-behavior:contain;
  scrollbar-width:thin;
  scrollbar-color:rgba(95,110,91,.42) transparent;
}
.mobile-shell::-webkit-scrollbar{width:8px}
.mobile-shell::-webkit-scrollbar-thumb{
  background:rgba(95,110,91,.38);
  border-radius:999px;
}
.mobile-shell::-webkit-scrollbar-track{background:transparent}
.mobile-shell details{
  border-top:1px solid rgba(76,68,61,.1);
  padding:10px 0 0;
}
.mobile-shell details:first-child{border-top:none}
.mobile-shell details[open] summary{color:var(--green-dark)}
.mobile-shell summary{
  cursor:pointer;
  color:var(--text);
  font-size:1.02rem;
  font-weight:600;
  list-style:none;
  min-height:44px;
  display:flex;
  align-items:center;
  padding:10px 0 8px;
}
.mobile-shell summary::-webkit-details-marker{display:none}
.mobile-shell a{
  display:flex;
  align-items:center;
  min-height:42px;
  padding:6px 0;
  color:var(--muted);
  font-size:.98rem;
}
.mobile-overview{
  color:var(--green-dark) !important;
  font-weight:600;
  min-height:40px !important;
  padding-top:4px !important;
  padding-bottom:8px !important;
}
.mobile-group-title{
  margin-top:8px;
  color:var(--text);
  font-size:.8rem;
  font-weight:700;
  letter-spacing:.09em;
  text-transform:uppercase;
}
.mobile-actions{
  display:grid;
  gap:10px;
  margin-top:16px;
  padding-top:14px;
  border-top:1px solid var(--line);
}
.mobile-actions .btn{
  width:100%;
  min-height:48px;
  justify-content:center;
  font-size:.94rem;
  border-radius:999px;
}
.mobile-actions .btn-outline{
  background:#fff;
}

.mega-menu{
  position:absolute;
  left:50%;
  transform:translateX(calc(-50% + var(--mega-offset, 0px)));
  top:calc(100% - 2px);
  width:min(1120px, calc(100vw - 44px));
  display:none;
  padding-top:16px;
}
.nav-item.open > .mega-menu,
.nav-item:hover > .mega-menu{
  display:block;
}
.mega-inner{
  background:rgba(249,245,243,.98);
  border:1px solid var(--line);
  border-radius:22px;
  box-shadow:var(--shadow);
  padding:24px;
}
.mega-grid{
  display:grid;
  grid-template-columns:minmax(0, 1.45fr) minmax(260px, .9fr);
  gap:22px;
}
.mega-col + .mega-col{
  border-left:1px solid rgba(76,68,61,.10);
  padding-left:22px;
}
.mega-sections{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:24px 28px;
}
.mega-section{
  min-width:0;
}
.mega-title{
  margin:0 0 12px;
  font-size:1.18rem;
}
.mega-list{
  list-style:none;
  margin:0;
  padding:0;
}
.mega-list li{margin:0 0 10px}
.mega-list a{
  display:block;
  font-size:.98rem;
  color:var(--text);
  padding:6px 0;
}
.mega-list a:hover{color:var(--green-dark)}

.mega-socials{
  display:flex;
  align-items:center;
  gap:10px;
  margin-top:12px;
}

.mega-social{
  width:32px;
  height:32px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:10px;
  color:var(--text);
  background:rgba(255,255,255,.84);
  border:1px solid rgba(76,68,61,.09);
  box-shadow:0 8px 18px rgba(67,54,45,.06);
  transition:transform .18s ease, color .18s ease, border-color .18s ease, background .18s ease;
}

.mega-social:hover{
  transform:translateY(-1px);
  color:var(--green-dark);
  border-color:rgba(95,110,91,.18);
  background:#fff;
}

.mega-social svg{
  width:16px;
  height:16px;
  display:block;
  fill:currentColor;
}
.mega-card{
  border:1px solid var(--line);
  border-radius:16px;
  overflow:hidden;
  background:#fff;
  margin-bottom:18px;
}
.mega-card:last-child{margin-bottom:0}
.mega-card img{
  width:100%;
  aspect-ratio:1.35/.72;
  object-fit:cover;
}
.mega-card .body{
  padding:14px 14px 16px;
}
.mega-card h4{
  margin:0 0 8px;
  font-size:1.02rem;
  font-weight:600;
}
.mega-card p{
  margin:0 0 12px;
  color:var(--muted);
  line-height:1.45;
  font-size:.94rem;
}

@media (max-width: 1100px){
  .has-front-editor.is-front-editor-open{
    padding-left:0;
  }
  .front-editor-drawer{
    top:0;
    width:min(320px, 92vw);
  }
  .front-editor-modal__dialog{
    margin-top:56px;
  }
  .site-admin-bar{
    position:relative;
  }
  .site-admin-bar__inner{
    grid-template-columns:1fr;
    gap:8px;
    padding:8px 0;
  }
  .site-admin-bar__actions{
    justify-content:flex-start;
  }
  .has-site-admin-bar .site-header{
    top:0;
  }
  .nav{display:none}
  .menu-toggle{display:inline-flex}
  .header-bar{grid-template-columns:1fr auto}
  .header-actions{justify-content:flex-end}
  .header-contact{
    display:inline-flex;
    min-height:40px;
    padding:0 14px;
    background:rgba(255,255,255,.58);
  }
}

@media (max-width: 820px){
  .site-admin-bar__inner{
    grid-template-columns:auto 1fr;
    gap:14px;
    padding:0;
    min-height:34px;
  }
  .site-admin-bar__toggle{
    display:inline-flex;
  }
  .site-admin-bar__panel{
    position:absolute;
    left:0;
    top:calc(100% + 8px);
    min-width:180px;
    display:none;
    padding:8px 0;
    border:1px solid rgba(255,255,255,.08);
    border-radius:10px;
    background:#111;
    box-shadow:0 12px 28px rgba(0,0,0,.28);
  }
  .site-admin-bar__panel.is-open{
    display:block;
  }
  .site-admin-bar__nav{
    display:grid;
    gap:0;
  }
  .site-admin-bar__nav a{
    min-height:36px;
    padding:0 14px;
  }
  .site-admin-bar__editor-link{
    min-height:36px;
    padding:0 14px;
    justify-content:flex-start;
  }
  .header-bar{
    min-height:auto;
    gap:14px;
  }
  .header-actions{
    gap:8px;
    overflow:visible;
  }
  .brand{
    max-width:245px;
  }
  .brand-mark{gap:6px}
  .brand img{height:44px}
  .brand-tagline{
    font-size:.56rem;
    letter-spacing:.01em;
    white-space:nowrap;
  }
  .header-actions .btn:not(.menu-toggle):not(.header-contact){
    display:none;
  }
  .header-contact{
    display:inline-flex;
    width:46px;
    min-width:46px;
    height:46px;
    min-height:46px;
    padding:0;
    justify-content:center;
    position:relative;
    overflow:hidden;
    text-indent:-9999px;
    white-space:nowrap;
    border-radius:999px;
    border:1px solid rgba(92,74,59,.14);
    background:rgba(255,255,255,.58);
    box-shadow:0 6px 14px rgba(31,49,44,.06);
  }
  .header-contact::before{
    content:"";
    position:absolute;
    left:50%;
    top:50%;
    transform:translate(-50%, -50%);
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:19px;
    height:19px;
    background:var(--text);
    -webkit-mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M3 7.5 12 14l9-6.5' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Crect x='3' y='5' width='18' height='14' rx='3' stroke='black' stroke-width='2.2'/%3E%3C/svg%3E") center/contain no-repeat;
    mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M3 7.5 12 14l9-6.5' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Crect x='3' y='5' width='18' height='14' rx='3' stroke='black' stroke-width='2.2'/%3E%3C/svg%3E") center/contain no-repeat;
  }
  .search-trigger{
    width:46px;
    min-width:46px;
    min-height:46px;
    height:46px;
    box-shadow:0 6px 14px rgba(31,49,44,.08);
    overflow:visible;
    z-index:2;
  }
  .search-trigger svg{
    width:22px;
    height:22px;
  }
  .search-trigger::after{
    inset:-2px;
  }
  .menu-toggle{
    width:46px;
    min-width:46px;
    height:46px;
    min-height:46px;
    border:1px solid rgba(92,74,59,.14);
    background:rgba(255,255,255,.58);
    box-shadow:0 6px 14px rgba(31,49,44,.06);
  }
  .menu-toggle-box span{
    width:18px;
    height:2px;
  }
  .mobile-shell{
    margin-top:4px;
    max-height:calc(100vh - 108px);
  }
}
