/*
 * Site chrome: announcement bar, masthead, navigation, drawers, search panel,
 * page headers and footer.
 */

/* ---- Announcement bar -------------------------------------------------- */

.announce {
  background: var(--c-olive);
  color: var(--c-cream);
  min-height: var(--announce-h);
  display: flex;
  align-items: center;
}

.announce__inner {
  display: flex;
  justify-content: center;
  align-items: center;
}

.announce__text {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  margin: 0;
  padding-block: var(--s-2);
  font-family: var(--f-ui);
  font-size: var(--t-nano);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
  text-align: center;
  color: var(--c-cream);
}

a.announce__text:hover { color: var(--c-gold-soft); }
.announce__mark { color: var(--c-gold-soft); }

/* ---- Masthead ---------------------------------------------------------- */

.masthead {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  background: var(--c-ivory);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.masthead.is-stuck {
  border-bottom-color: var(--c-line);
  box-shadow: var(--shadow-sm);
}

/* The WordPress admin bar is fixed over the top of the page for logged-in
   users; without this the sticky header slides underneath it. */
body.admin-bar .masthead { top: 32px; }

@media screen and (max-width: 782px) {
  body.admin-bar .masthead { top: 46px; }
}

.masthead__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--s-6);
  min-height: var(--header-h);
}

/* Two classes, because the shared .icon-btn rule below sets display and would
   otherwise win on source order and leave the burger visible on desktop. */
.icon-btn.masthead__burger { display: none; }

/* ---- Brand ------------------------------------------------------------- */

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 3px;
  line-height: 1;
}

.brand:hover { color: inherit; }

.brand__word {
  font-family: var(--f-display);
  font-size: clamp(1.6rem, 2.6vw, 2.125rem);
  font-weight: 400;
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  /* The wide tracking adds trailing space; pull it back so the mark
     optically aligns with the container edge. */
  margin-right: calc(var(--ls-widest) * -1);

  /*
   * Brushed-gold wordmark, matching the brand's artwork. The flat colour is
   * declared first and remains the rendered value anywhere the text clip is
   * unsupported, so the mark is never invisible.
   */
  color: var(--c-gold-deep, #96702f);
  background-image: linear-gradient(100deg, #b08d57 0%, #d6b26e 38%, #9a7434 72%, #c2a063 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

@supports (background-clip: text) or (-webkit-background-clip: text) {
  .brand__word { color: transparent; }
}

/* Hairline rule broken by a small gem, sized to the wordmark above it. */
.brand__rule {
  display: flex;
  align-items: center;
  gap: 5px;
  width: 100%;
  margin: 3px 0 2px;
}

.brand__rule::before,
.brand__rule::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--c-gold-soft), transparent);
}

.brand__gem {
  width: 5px;
  height: 5px;
  flex: none;
  background: var(--c-gold);
  transform: rotate(45deg);
}

.brand__tagline {
  font-family: var(--f-ui);
  font-size: 0.5rem;
  font-weight: 400;
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--c-gold);
  text-align: center;
  width: 100%;
}

/* Footer sits on olive, where gold-on-dark needs a lighter mix. */
.site-footer .brand__word {
  background-image: linear-gradient(100deg, #d9c69a 0%, #f2e6c9 40%, #c9ad76 75%, #e6d5aa 100%);
  color: var(--c-gold-soft);
}

.site-footer .brand__tagline { color: var(--c-gold-soft); }
.site-footer .brand__gem { background: var(--c-gold-soft); }

.site-footer .brand__rule::before,
.site-footer .brand__rule::after {
  background: linear-gradient(to right, transparent, rgba(217, 198, 154, 0.55), transparent);
}

/* Sized against the typographic wordmark it replaces, so swapping a logo in
   or out does not change the header's rhythm. The supplied artwork is trimmed
   to its ink, so this height is the actual cap height of the letters. */
.brand__img {
  max-height: 42px;
  width: auto;
}

/*
 * A badge logo is roughly square and carries its wordmark and strapline inside
 * its own frame, so the same height that suits a wide wordmark strip leaves the
 * type inside it unreadable. It gets close to the full header height instead.
 */
.brand--badge .brand__img { max-height: 78px; }

@media (max-width: 1024px) {
  .brand__img { max-height: 34px; }
  .brand--badge .brand__img { max-height: 56px; }
}

/* ---- Primary navigation ------------------------------------------------ */

.masthead__nav { justify-self: center; }

.menu {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.2vw, 2rem);
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu > li {
  position: relative;
  margin: 0;
}

.menu__link {
  display: inline-block;
  padding-block: var(--s-3);
  font-family: var(--f-ui);
  font-size: var(--t-micro);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
  color: var(--c-ink);
  white-space: nowrap;
}

.menu > li > .menu__link::after {
  content: '';
  display: block;
  height: 1px;
  margin-top: 3px;
  background: var(--c-gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--dur) var(--ease);
}

.menu > li:hover > .menu__link::after,
.menu > li.current-menu-item > .menu__link::after,
.menu > li.current-menu-ancestor > .menu__link::after { transform: scaleX(1); }

.menu__toggle {
  display: inline-flex;
  align-items: center;
  padding: 0 0 0 2px;
  background: none;
  border: 0;
  color: var(--c-muted);
  cursor: pointer;
  vertical-align: middle;
}

/* Dropdowns */

.sub-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 6px);
  min-width: 210px;
  margin: 0;
  padding: var(--s-3) 0;
  list-style: none;
  background: var(--c-ivory);
  border: 1px solid var(--c-line);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: var(--z-dropdown);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease), visibility var(--dur);
}

.has-dropdown:hover > .sub-menu,
.has-dropdown:focus-within > .sub-menu,
.has-dropdown.is-open > .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.sub-menu li { margin: 0; }

.sub-menu__link {
  display: block;
  padding: var(--s-2) var(--s-5);
  font-family: var(--f-ui);
  font-size: var(--t-small);
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--c-ink);
  white-space: nowrap;
}

.sub-menu__link:hover {
  background: var(--c-cream);
  color: var(--c-gold);
}

.menu-empty {
  margin: 0;
  font-family: var(--f-ui);
  font-size: var(--t-micro);
  color: var(--c-faint);
}

/* ---- Header actions ---------------------------------------------------- */

.masthead__actions {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  justify-self: end;
}

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  background: none;
  border: 0;
  border-radius: 50%;
  color: var(--c-ink);
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}

.icon-btn:hover {
  background: var(--c-cream);
  color: var(--c-gold);
}

.icon-btn--cart { position: relative; }

.cart-count {
  position: absolute;
  top: 3px;
  right: 2px;
  min-width: 17px;
  height: 17px;
  padding: 0 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--c-gold);
  color: var(--c-white);
  border-radius: 999px;
  font-family: var(--f-ui);
  font-size: 0.625rem;
  font-weight: 500;
  line-height: 1;
}

/* ---- Search panel ------------------------------------------------------ */

.search-panel {
  position: sticky;
  top: var(--header-h);
  z-index: var(--z-dropdown);
  background: var(--c-cream);
  border-bottom: 1px solid var(--c-line);
  animation: inora-slide-down var(--dur) var(--ease-out);
}

.search-panel[hidden] { display: none; }

@keyframes inora-slide-down {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.search-panel__inner {
  position: relative;
  padding-block: var(--s-8);
}

.search-panel__form {
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--s-3);
  max-width: 720px;
  margin-inline: auto;
}

.search-panel__icon {
  position: absolute;
  left: var(--s-4);
  color: var(--c-muted);
  pointer-events: none;
}

.search-panel__form input[type='search'] {
  padding-left: var(--s-12);
  background: var(--c-white);
  font-size: var(--t-body);
}

.search-panel__close {
  position: absolute;
  top: var(--s-4);
  right: var(--gutter);
}

.search-panel__suggest {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s-3);
  max-width: 720px;
  margin: var(--s-4) auto 0;
}

.search-panel__suggest a {
  font-family: var(--f-ui);
  font-size: var(--t-small);
  font-weight: 300;
  color: var(--c-muted);
  border-bottom: 1px solid var(--c-line);
}

.search-panel__suggest a:hover { color: var(--c-gold); border-color: var(--c-gold); }

/* ---- Drawers and scrim ------------------------------------------------- */

.scrim {
  position: fixed;
  inset: 0;
  z-index: var(--z-overlay);
  background: rgba(39, 44, 28, 0.42);
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
}

.scrim[hidden] { display: none; }
.scrim.is-visible { opacity: 1; }

.drawer {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: var(--z-drawer);
  display: flex;
  flex-direction: column;
  width: min(400px, 88vw);
  background: var(--c-ivory);
  box-shadow: var(--shadow-lg);
  transition: transform var(--dur) var(--ease-out);
}

.drawer[hidden] { display: none; }

.drawer--left  { left: 0;  transform: translateX(-100%); }
.drawer--right { right: 0; transform: translateX(100%); }
.drawer.is-open { transform: translateX(0); }

.drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  padding: var(--s-5) var(--s-6);
  border-bottom: 1px solid var(--c-line);
}

.drawer__title {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-family: var(--f-ui);
  font-size: var(--t-micro);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
}

.drawer__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  background: var(--c-cream);
  border-radius: 999px;
  font-size: 0.625rem;
  color: var(--c-muted);
}

.drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: var(--s-5) var(--s-6);
}

.drawer__foot {
  padding: var(--s-5) var(--s-6);
  border-top: 1px solid var(--c-line);
  display: grid;
  gap: var(--s-4);
  justify-items: center;
}

/* Mobile menu inside the drawer stacks and uses accordion submenus. */

.menu--mobile {
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}

.menu--mobile > li { border-bottom: 1px solid var(--c-line); }

.menu--mobile .menu__link {
  padding: var(--s-4) 0;
  font-size: var(--t-small);
}

.menu--mobile .menu__link::after { display: none; }

.menu--mobile .menu__toggle {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 44px;
  justify-content: center;
  transition: transform var(--dur) var(--ease);
}

.menu--mobile .has-dropdown.is-open > .menu__toggle { transform: rotate(180deg); }

.menu--mobile .sub-menu {
  position: static;
  transform: none;
  min-width: 0;
  border: 0;
  box-shadow: none;
  background: transparent;
  padding: 0 0 var(--s-3) var(--s-4);
  display: none;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.menu--mobile .has-dropdown.is-open > .sub-menu { display: block; }
.menu--mobile .sub-menu__link { padding: var(--s-2) 0; }

/* ---- Breadcrumbs ------------------------------------------------------- */

.breadcrumbs {
  padding-block: var(--s-4);
  font-family: var(--f-ui);
  font-size: var(--t-micro);
  letter-spacing: 0.04em;
  color: var(--c-muted);
}

.breadcrumbs a:hover { color: var(--c-gold); }
.breadcrumbs__sep { margin-inline: var(--s-2); color: var(--c-faint); }

/* ---- Page hero --------------------------------------------------------- */

.page-hero {
  background: var(--c-cream);
  padding-block: clamp(2.5rem, 5vw, 4.5rem);
  text-align: center;
}

.page-hero__title {
  margin: 0;
  font-size: var(--t-h1);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
}

.page-hero__sub {
  max-width: 52ch;
  margin: var(--s-4) auto 0;
  color: var(--c-muted);
  font-size: var(--t-lead);
}

/* ---- Image placeholder ------------------------------------------------- */

.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(135deg, var(--c-sand) 0%, var(--c-cream) 48%, var(--c-gold-wash) 100%);
}

.placeholder__mark {
  font-family: var(--f-display);
  font-size: clamp(0.75rem, 1.6vw, 1.125rem);
  font-weight: 300;
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: rgba(51, 58, 38, 0.35);
}

/* ---- Footer ------------------------------------------------------------ */

.site-footer {
  margin-top: var(--section-y);
  background: var(--c-olive);
  color: var(--c-cream);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1.6fr repeat(4, 1fr) 1.6fr;
  gap: var(--s-8) var(--s-6);
  padding-block: clamp(3rem, 6vw, 4.5rem);
}

/* Footer brand colours are set in the brand section above, alongside the
   header treatment they vary from. Duplicating them here would win on source
   order and silently undo the gradient. */

.site-footer__blurb {
  margin-top: var(--s-4);
  max-width: 30ch;
  font-size: var(--t-small);
  line-height: 1.75;
  color: rgba(242, 237, 228, 0.72);
}

.site-footer__heading {
  margin-bottom: var(--s-4);
  font-family: var(--f-ui);
  font-size: var(--t-nano);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
  color: var(--c-ivory);
}

.site-footer__menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__menu li { margin-bottom: var(--s-2); }

.site-footer__menu a {
  font-family: var(--f-ui);
  font-size: var(--t-small);
  font-weight: 300;
  color: rgba(242, 237, 228, 0.72);
}

.site-footer__menu a:hover { color: var(--c-gold-soft); }

/* Newsletter */

.newsletter { margin-top: var(--s-4); }

.newsletter__row {
  display: flex;
  align-items: stretch;
  background: var(--c-ivory);
  border-radius: var(--radius);
  overflow: hidden;
}

.newsletter__row input[type='email'] {
  border: 0;
  background: transparent;
  font-size: var(--t-small);
}

.newsletter__row input[type='email']:focus { outline: none; }

.newsletter__submit {
  flex: none;
  width: 48px;
  background: transparent;
  border: 0;
  border-left: 1px solid var(--c-line);
  color: var(--c-olive);
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease);
}

.newsletter__submit:hover { background: var(--c-cream); }

.newsletter__msg {
  margin: var(--s-2) 0 0;
  min-height: 1.2em;
  font-family: var(--f-ui);
  font-size: var(--t-micro);
  color: var(--c-gold-soft);
}

.newsletter__msg.is-error { color: #e6b3a8; }

/* Social */

.social {
  display: flex;
  gap: var(--s-3);
  margin-top: var(--s-5);
}

.social__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--c-line-dark);
  border-radius: 50%;
  color: var(--c-cream);
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease), color var(--dur) var(--ease);
}

.social__link:hover {
  background: var(--c-gold);
  border-color: var(--c-gold);
  color: var(--c-white);
}

/* Outside the dark footer (e.g. contact page) the outline needs to flip. */
.site-main .social__link {
  border-color: var(--c-line);
  color: var(--c-ink);
}

/* Footer bar */

.site-footer__bar { border-top: 1px solid var(--c-line-dark); }

.site-footer__bar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  padding-block: var(--s-5);
}

.site-footer__copy {
  margin: 0;
  font-family: var(--f-ui);
  font-size: var(--t-micro);
  font-weight: 300;
  color: rgba(242, 237, 228, 0.6);
}

.site-footer__legal {
  display: flex;
  gap: var(--s-5);
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__legal li { margin: 0; }

.site-footer__legal a {
  font-family: var(--f-ui);
  font-size: var(--t-micro);
  font-weight: 300;
  color: rgba(242, 237, 228, 0.6);
}

.site-footer__legal a:hover { color: var(--c-gold-soft); }

/* ---- WhatsApp button ---------------------------------------------------- */

.wa-float {
  position: fixed;
  right: clamp(1rem, 3vw, 1.75rem);
  /*
   * --sticky-atc-h is published by the sticky add-to-cart bar and is 0 when no
   * bar is showing, so this single rule handles both cases. Doing it with a
   * `body.has-sticky-atc` override instead means a specificity contest, and a
   * hard-coded bar height that drifts the moment the bar's padding changes.
   */
  bottom: calc(var(--sticky-atc-h, 0px) + clamp(1rem, 3vw, 1.75rem));
  z-index: var(--z-sticky);
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: 0.85rem 1rem;
  background: #25d366;
  color: var(--c-white);
  border-radius: 999px;
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.32);
  transition: transform var(--dur) var(--ease), bottom var(--dur) var(--ease), padding var(--dur) var(--ease);
}

.wa-float:hover {
  color: var(--c-white);
  transform: translateY(-2px);
}

.wa-float__label {
  font-family: var(--f-ui);
  font-size: var(--t-micro);
  font-weight: 500;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

@media (max-width: 600px) {
  /* Collapse to the icon so it never covers the product it is asking about. */
  .wa-float { padding: 0.9rem; }
  .wa-float__label { display: none; }
}

/* ---- Help assistant ------------------------------------------------------ */

.bot {
  position: fixed;
  right: clamp(1rem, 3vw, 1.75rem);
  bottom: calc(var(--sticky-atc-h, 0px) + clamp(1rem, 3vw, 1.75rem));
  z-index: var(--z-drawer);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--s-3);
  transition: bottom var(--dur) var(--ease);
}

.bot__launcher {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: 0.85rem 1.1rem;
  background: var(--c-olive);
  border: 0;
  border-radius: 999px;
  color: var(--c-ivory);
  cursor: pointer;
  box-shadow: var(--shadow);
  font-family: var(--f-ui);
  font-size: var(--t-micro);
  letter-spacing: 0.06em;
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.bot__launcher:hover { background: var(--c-olive-deep); transform: translateY(-2px); }
.bot__launcher svg { color: var(--c-gold-soft); }

/* The icon swaps for a close cross while the panel is open. */
.bot__launcher-close { display: none; }
.bot.is-open .bot__launcher-open { display: none; }
.bot.is-open .bot__launcher-close { display: block; }
.bot.is-open .bot__launcher-label { display: none; }
.bot.is-open .bot__launcher { padding: 0.85rem; }

.bot__panel {
  display: flex;
  flex-direction: column;
  width: min(360px, calc(100vw - 2rem));
  max-height: min(560px, calc(100vh - 8rem));
  background: var(--c-ivory);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  animation: inora-slide-down var(--dur) var(--ease-out);
}

.bot__panel[hidden] { display: none; }

.bot__head {
  padding: var(--s-4) var(--s-5);
  background: var(--c-olive);
  color: var(--c-ivory);
}

.bot__title {
  display: block;
  font-family: var(--f-display);
  font-size: var(--t-lead);
  letter-spacing: var(--ls-wide);
}

.bot__sub {
  display: block;
  font-family: var(--f-ui);
  font-size: var(--t-nano);
  color: var(--c-gold-soft);
}

.bot__log {
  flex: 1;
  min-height: 90px;
  overflow-y: auto;
  padding: var(--s-4) var(--s-5);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}

.bot__msg {
  max-width: 88%;
  padding: var(--s-3) var(--s-4);
  border-radius: var(--radius-lg);
  font-size: var(--t-small);
  line-height: 1.6;
}

.bot__msg--bot { background: var(--c-cream); color: var(--c-ink); }

.bot__msg--user {
  align-self: flex-end;
  background: var(--c-olive);
  color: var(--c-ivory);
}

.bot__topics {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  padding: 0 var(--s-5) var(--s-4);
}

.bot__chip {
  padding: 0.45rem 0.8rem;
  background: transparent;
  border: 1px solid var(--c-line);
  border-radius: 999px;
  color: var(--c-muted);
  cursor: pointer;
  font-family: var(--f-ui);
  font-size: var(--t-nano);
  transition: all var(--dur-fast) var(--ease);
}

.bot__chip:hover { background: var(--c-olive); border-color: var(--c-olive); color: var(--c-ivory); }

.bot__order,
.bot__ask {
  display: flex;
  gap: var(--s-2);
  padding: var(--s-3) var(--s-5);
  border-top: 1px solid var(--c-line);
}

.bot__order { flex-wrap: wrap; }
.bot__order[hidden] { display: none; }
.bot__order input { flex: 1 1 100%; }
.bot__order .btn { flex: none; }

.bot__ask input { flex: 1; }

.bot__ask button {
  flex: none;
  width: 42px;
  background: var(--c-olive);
  border: 0;
  border-radius: var(--radius);
  color: var(--c-ivory);
  cursor: pointer;
}

.bot__ask button:hover { background: var(--c-olive-deep); }

.bot__wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  padding: var(--s-3);
  background: #25d366;
  color: var(--c-white);
  font-family: var(--f-ui);
  font-size: var(--t-micro);
  letter-spacing: 0.04em;
}

.bot__wa:hover { color: var(--c-white); background: #1fb956; }

@media (max-width: 600px) {
  .bot__launcher-label { display: none; }
  .bot__launcher { padding: 0.9rem; }
}

/* ---- Responsive chrome ------------------------------------------------- */

@media (max-width: 1100px) {
  .site-footer__inner { grid-template-columns: 1.4fr repeat(3, 1fr); }
  .site-footer__newsletter { grid-column: 2 / -1; }
}

@media (max-width: 1024px) {
  :root { --header-h: 68px; }

  .masthead__inner { grid-template-columns: auto 1fr auto; }
  .icon-btn.masthead__burger { display: inline-flex; }
  .masthead__nav { display: none; }
  .masthead__brand { justify-self: center; }
}

@media (max-width: 768px) {
  .site-footer__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--s-8) var(--s-5);
  }
  .site-footer__brand { grid-column: 1 / -1; }
  .site-footer__newsletter { grid-column: 1 / -1; }
  .site-footer__bar-inner { justify-content: center; text-align: center; }
  .search-panel__inner { padding-block: var(--s-5); }
  .search-panel__form { flex-wrap: wrap; }
  .search-panel__close { top: var(--s-2); right: var(--s-3); }
}

@media (max-width: 480px) {
  .site-footer__inner { grid-template-columns: 1fr; }
  .brand__word { font-size: 1.5rem; letter-spacing: 0.3em; }
  .masthead__actions { gap: 0; }
  .icon-btn { width: 36px; height: 36px; }
}
