/*
 * Shared header and footer parity layer.
 *
 * This file intentionally loads after style.css so the rebuilt theme keeps its
 * page components while the shared site chrome follows the production design.
 */

:root {
  --hbs-live-black: #000;
  --hbs-live-bronze: #7e6849;
  --hbs-live-gold: #d19f40;
  --hbs-live-gold-bright: #e1b452;
  --hbs-live-footer-text: #707070;
}

.site-chrome,
.site-chrome * {
  box-sizing: border-box;
}

.site-chrome {
  position: fixed;
  inset: 0 0 auto;
  z-index: 9998;
  height: 130.5px;
}

.admin-bar .site-chrome {
  top: var(--hbs-admin-bar-offset, 32px);
}

/*
 * The base stylesheet still contains legacy admin-bar offsets for these two
 * elements. They are children of the already-offset fixed wrapper here, so
 * reset those offsets to avoid adding the WordPress toolbar height twice.
 */
.admin-bar .site-chrome .promo-bar {
  top: 0;
}

.admin-bar .site-chrome .site-header {
  top: 32.5px;
}

.site-main {
  padding-top: 130.5px;
}

.promo-bar {
  position: absolute;
  inset: 0 0 auto;
  z-index: 1;
  min-height: 32.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 9.5px 30px 10px;
  background: var(--hbs-live-bronze);
  color: #fff;
  font-family: "Josefin Sans", Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1;
  text-align: center;
  text-transform: none;
}

.promo-bar a,
.promo-bar a:visited {
  color: inherit;
  transition: opacity 400ms ease;
}

.promo-bar a:hover,
.promo-bar a:focus-visible {
  color: inherit;
  opacity: 0.7;
}

.site-header {
  position: absolute;
  inset: 32.5px 0 auto;
  z-index: 2;
  height: 98px;
  background: var(--hbs-live-black);
  border: 0;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
}

.header-inner {
  position: relative;
  width: 100%;
  max-width: none;
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 0 32px 0 30px;
}

.brand {
  flex: 0 0 auto;
  display: block;
  line-height: 0;
}

.brand img {
  display: block;
  width: 197px;
  max-width: none;
  height: auto;
}

.primary-navigation {
  height: 100%;
  margin-left: auto;
  display: flex;
  align-items: center;
  color: #fff;
  font-family: "Josefin Sans", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 3px;
  line-height: 1;
  text-transform: uppercase;
}

.primary-menu,
.primary-menu .sub-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-menu {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
}

.primary-menu > li {
  position: relative;
}

.primary-menu > li:not(.menu-book) > a {
  display: block;
  padding: 42px 0;
}

.primary-menu a,
.primary-menu a:visited {
  color: #fff;
  transition: opacity 400ms ease, background-color 200ms ease;
}

.primary-menu > li > a:hover,
.primary-menu > li:focus-within > a,
.primary-menu > li.current-menu-item > a,
.primary-menu > li.current-menu-ancestor > a {
  color: #fff;
  opacity: 0.7;
}

.primary-menu > li.menu-item-has-children > a {
  padding-right: 22px;
}

.primary-menu > li.menu-item-has-children > a::after {
  content: "";
  position: absolute;
  top: 44px;
  right: 2px;
  width: 8px;
  height: 8px;
  margin: 0;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  pointer-events: none;
  transform: rotate(45deg);
}

@media (min-width: 981px) {
  .primary-menu > li.menu-item-has-children > a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding-right: 0;
    white-space: nowrap;
  }

  .primary-menu > li.menu-item-has-children > a::after {
    position: static;
    flex: 0 0 8px;
    transform: translateY(-2px) rotate(45deg);
  }
}

.primary-menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 10;
  width: 240px;
  display: block;
  padding: 20px 0;
  visibility: hidden;
  opacity: 0;
  transform: none;
  background: var(--hbs-live-black);
  border-top: 3px solid #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: opacity 200ms ease, visibility 200ms ease;
}

.primary-menu li:hover > .sub-menu,
.primary-menu li:focus-within > .sub-menu {
  visibility: visible;
  opacity: 1;
  transform: none;
}

.primary-menu .sub-menu li {
  width: 240px;
  padding: 0 20px;
}

.primary-menu .sub-menu a {
  width: 200px;
  display: block;
  padding: 6px 20px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 3px;
  line-height: 28px;
  text-transform: uppercase;
}

.primary-menu .sub-menu a:hover,
.primary-menu .sub-menu a:focus-visible {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  opacity: 0.7;
}

.primary-menu > .menu-book > a {
  width: 157px;
  min-width: 157px;
  display: block;
  padding: 12px 24px 8px;
  background: var(--hbs-live-gold);
  color: #fff;
  line-height: 14px;
  text-align: center;
}

.primary-menu > .menu-book > a:hover,
.primary-menu > .menu-book > a:focus-visible {
  background: var(--hbs-live-gold);
  color: #fff;
  opacity: 0.7;
}

/* Keep the intentionally retired Relief link out if an older saved menu remains assigned. */
.primary-menu li:has(> a[href$="/relief/"]),
.primary-menu li:has(> a[href*="/relief/?"]),
.footer-menu li:has(> a[href$="/relief/"]),
.footer-menu li:has(> a[href*="/relief/?"]) {
  display: none;
}

.menu-toggle {
  display: none;
}

.site-chrome a:focus-visible,
.site-chrome button:focus-visible,
.site-footer a:focus-visible {
  outline: 2px solid var(--hbs-live-gold-bright);
  outline-offset: 4px;
}

.skip-link:focus {
  z-index: 100001;
}

.site-footer {
  position: relative;
  background: var(--hbs-live-black);
  color: #fff;
}

.footer-cta {
  min-height: 0;
  display: block;
  padding: 4vw 0;
  background: var(--hbs-live-bronze);
}

.footer-cta-inner {
  width: 80%;
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 57.8% 36.7%;
  gap: 5.5%;
  padding: 2vw 0;
}

.footer-cta-copy,
.footer-cta-copy p {
  margin: 0;
}

.footer-cta .footer-cta-title {
  margin: 0 0 27px;
  color: #fff;
  font-family: "Josefin Sans", Helvetica, Arial, sans-serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 29px;
  text-transform: uppercase;
}

.footer-cta .footer-cta-promo {
  color: #fff;
  font-family: Lato, Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.8;
}

.footer-cta-actions {
  min-width: 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 15px;
  padding-top: 50px;
}

.site-footer .footer-cta-actions .button {
  width: auto;
  min-width: 0;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  padding: 12px 24px;
  border: 0;
  border-radius: 0;
  color: #fff;
  font-family: Inter, Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 24px;
  text-transform: uppercase;
}

.site-footer .footer-cta-actions .button-gold {
  background: var(--hbs-live-gold-bright);
}

.site-footer .footer-cta-actions .button-outline {
  background: var(--hbs-live-black);
}

.site-footer .footer-cta-actions .button:hover,
.site-footer .footer-cta-actions .button:focus-visible {
  color: #fff;
  opacity: 0.8;
}

.footer-main {
  padding: 33px 0 0;
  background:
    linear-gradient(180deg, rgba(10, 8, 1, 0.61) 0%, rgba(0, 0, 0, 0.73) 100%),
    var(--hbs-live-black);
}

.footer-grid {
  width: 80%;
  max-width: 1080px;
  min-height: 345px;
  margin: 0 auto -13px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 5.5%;
  padding: 2vw 0;
}

.footer-brand {
  min-width: 0;
  text-align: center;
}

.footer-brand > img {
  width: 100%;
  max-width: none;
  height: auto;
  display: block;
  margin: 0 0 27px;
}

.footer-brand h2 {
  margin: 0;
  padding: 0;
  color: #fff;
  font-family: "Josefin Sans", Helvetica, Arial, sans-serif;
  font-size: 23px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

.footer-membership {
  margin: 0;
  color: #fff;
  font-family: Lato, Helvetica, Arial, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
  text-align: center;
}

.footer-membership span,
.footer-membership a {
  display: block;
}

.footer-membership a,
.footer-membership a:visited {
  color: #fff;
  font-size: 21px;
  text-decoration: none;
}

.footer-membership a:hover,
.footer-membership a:focus-visible {
  color: #fff;
  opacity: 0.7;
}

.social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 16px;
  margin-top: 14px;
}

.social-links a {
  height: 33px;
  display: block;
  color: #fff;
  line-height: 0;
}

.social-links .social-facebook {
  width: 20px;
}

.social-links .social-instagram,
.social-links .social-youtube {
  width: 33px;
}

.social-links svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.footer-nav {
  min-width: 0;
  min-height: 221px;
}

.footer-menu {
  margin: 0;
  padding: 0;
  display: block;
  list-style: none;
}

.footer-menu li {
  margin: 0 0 11px;
  padding: 0;
}

.footer-menu li:last-child {
  margin-bottom: 0;
}

.footer-menu a,
.footer-menu a:visited,
.footer-menu-standalone,
.footer-menu-standalone:visited {
  display: block;
  color: #fff;
  font-family: "Josefin Sans", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 25.2px;
  text-transform: uppercase;
}

.footer-menu-standalone {
  margin-top: 11px;
}

.footer-menu a:hover,
.footer-menu a:focus-visible,
.footer-menu-standalone:hover,
.footer-menu-standalone:focus-visible {
  color: #fff;
  opacity: 0.7;
}

.footer-floating-controls {
  width: 80%;
  max-width: 1080px;
  height: 50px;
  margin: 0 auto;
}

.floating-book-button,
.floating-book-button:visited {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9999;
  width: 181px;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 20px;
  background: var(--hbs-live-gold);
  border: 0;
  border-radius: 0;
  color: #fff;
  font-family: "Josefin Sans", Helvetica, Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 34px;
  text-align: center;
  text-transform: uppercase;
}

.floating-book-button:hover,
.floating-book-button:focus-visible {
  color: #fff;
  opacity: 0.8;
}

.footer-bottom {
  width: 100%;
  min-height: 76px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24.5px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--hbs-live-footer-text);
  font-family: Lato, Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 25.6px;
  text-align: center;
}

.footer-legacy-strip {
  height: 20px;
  background: #222;
  box-shadow: inset 0 15px 0 rgba(0, 0, 0, 0.32);
}

@media (max-width: 1180px) and (min-width: 981px) {
  .primary-menu {
    gap: 16px;
  }

  .primary-navigation {
    font-size: 12px;
    letter-spacing: 2px;
  }

  .primary-menu > .menu-book > a {
    width: 140px;
    min-width: 140px;
  }
}

@media (max-width: 980px) {
  html {
    scroll-padding-top: 80px;
  }

  .site-chrome {
    height: 144.8px;
  }

  .site-main {
    padding-top: 144.8px;
  }

  .promo-bar {
    top: 80px;
    bottom: auto;
    min-height: 64.8px;
    padding: 0 14px;
    font-family: Lato, Helvetica, Arial, sans-serif;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.8;
    text-transform: uppercase;
  }

  .site-header {
    top: 0;
    bottom: auto;
    height: 80px;
  }

  .admin-bar .site-chrome .promo-bar {
    top: 80px;
  }

  .admin-bar .site-chrome .site-header {
    top: 0;
  }

  .header-inner {
    width: 80%;
    max-width: 1080px;
    padding: 0;
  }

  .brand {
    margin-left: 5px;
  }

  .brand img {
    width: 131px;
    max-width: 50%;
  }

  .menu-toggle {
    position: relative;
    width: 32px;
    height: 56px;
    display: block;
    align-self: flex-end;
    flex: 0 0 32px;
    padding: 0;
    background: transparent;
    border: 0;
    cursor: pointer;
  }

  .menu-toggle::before,
  .menu-toggle::after,
  .menu-toggle > span:last-child {
    content: "";
    position: absolute;
    left: 2px;
    width: 28px;
    height: 3px;
    background: var(--hbs-live-gold-bright);
    transition: opacity 160ms ease;
  }

  .menu-toggle::before,
  .menu-is-open .menu-toggle::before {
    top: 12px;
    transform: none;
  }

  .menu-toggle > span:last-child,
  .menu-is-open .menu-toggle > span:last-child {
    top: 21px;
    opacity: 1;
  }

  .menu-toggle::after,
  .menu-is-open .menu-toggle::after {
    top: 30px;
    transform: none;
  }

  .primary-navigation {
    position: absolute;
    top: 100%;
    right: auto;
    left: 0;
    z-index: 4;
    width: 100%;
    height: auto;
    display: block;
    visibility: hidden;
    opacity: 0;
    transform: none;
    pointer-events: none;
    transition: opacity 160ms ease, visibility 160ms ease;
  }

  .menu-is-open .primary-navigation {
    visibility: visible;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .primary-menu {
    width: 100%;
    height: auto;
    max-height: 83vh;
    display: block;
    overflow-y: auto;
    padding: 13px;
    background: var(--hbs-live-black);
    border-top: 3px solid var(--hbs-live-gold-bright);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }

  .primary-menu > li {
    width: 100%;
  }

  .primary-menu > li:not(.menu-book) > a,
  .primary-menu > li > a {
    width: 100%;
    display: block;
    padding: 10px 12px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 23px;
  }

  .primary-menu > .menu-item-has-children > a {
    padding-right: 12px;
    background: rgba(255, 255, 255, 0.03);
    font-weight: 700;
  }

  .primary-menu > .menu-item-has-children > a::after {
    display: none;
  }

  .primary-menu .sub-menu {
    position: static;
    width: 100%;
    display: block;
    padding: 0;
    visibility: visible;
    opacity: 1;
    transform: none;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .primary-menu .sub-menu li {
    width: 100%;
    padding: 0 0 0 5%;
  }

  .primary-menu .sub-menu a {
    width: 100%;
    padding: 10px 12px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 23px;
  }

  .primary-menu > .menu-book {
    padding: 0;
  }

  .primary-menu > .menu-book > a {
    width: auto;
    min-width: 0;
    display: inline-block;
    margin: 10px 12px 0;
    padding: 12px 24px 8px;
    font-size: 14px;
    line-height: 14px;
  }

  .footer-cta {
    padding: 50px 0;
  }

  .footer-cta-inner {
    width: 80%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 30px 0;
  }

  .footer-cta-actions {
    flex-direction: column;
    gap: 30px;
    padding-top: 0;
  }

  .footer-grid {
    width: 80%;
    min-height: 858px;
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 30px 0;
  }

  .footer-brand {
    min-height: 295px;
  }

  .footer-nav {
    min-height: 221px;
  }

  .footer-floating-controls {
    width: 80%;
  }

  .footer-bottom {
    min-height: 83px;
    padding: 30px 20px;
    font-size: 14px;
    line-height: 22.4px;
  }

  .footer-legacy-strip {
    height: 25px;
  }
}

@media (max-width: 782px) {
  .admin-bar .site-chrome {
    top: var(--hbs-admin-bar-offset, 46px);
  }
}

@media (max-width: 767px) {
  .footer-cta .footer-cta-title {
    font-size: 14px;
    line-height: 29px;
  }
}

/* Refined shared footer: one clear hierarchy, consistent type, and fluid spacing. */
.site-footer .footer-main {
  padding: 64px 0 0;
  background: #050505;
}

.site-footer .footer-grid {
  width: min(1080px, calc(100% - 48px));
  max-width: 1080px;
  min-height: 0;
  margin: 0 auto;
  grid-template-columns: minmax(0, 1.3fr) repeat(2, minmax(0, 0.8fr));
  align-items: start;
  gap: clamp(48px, 6vw, 72px);
  padding: 0 0 52px;
}

.site-footer .footer-brand {
  min-height: 0;
  text-align: left;
}

.site-footer .footer-brand > img {
  width: min(240px, 100%);
  max-width: 240px;
  margin: 0 0 24px;
}

.site-footer .footer-brand .footer-license {
  margin: 0 0 9px;
  padding: 0;
  color: #fff;
  font-family: "Josefin Sans", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.4px;
  line-height: 1.4;
  text-align: left;
  text-transform: uppercase;
}

.site-footer .footer-brand .footer-membership {
  margin: 0;
  color: #c9c3bb;
  font-family: Lato, Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  text-align: left;
}

.site-footer .footer-membership span,
.site-footer .footer-membership a {
  display: inline;
}

.site-footer .footer-brand .footer-membership a,
.site-footer .footer-brand .footer-membership a:visited {
  color: #fff;
  font-family: inherit;
  font-size: inherit;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(225, 180, 82, 0.7);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.site-footer .footer-brand .footer-membership a:hover,
.site-footer .footer-brand .footer-membership a:focus-visible {
  color: var(--hbs-live-gold-bright);
  opacity: 1;
}

.site-footer .social-links {
  justify-content: flex-start;
  gap: 9px;
  margin-top: 20px;
}

.site-footer .social-links a,
.site-footer .social-links .social-facebook,
.site-footer .social-links .social-instagram,
.site-footer .social-links .social-youtube {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  transition: border-color 160ms ease, color 160ms ease, background-color 160ms ease;
}

.site-footer .social-links svg {
  width: 24px;
  height: 24px;
}

.site-footer .social-links a:hover,
.site-footer .social-links a:focus-visible {
  border-color: var(--hbs-live-gold-bright);
  background: rgba(225, 180, 82, 0.08);
  color: var(--hbs-live-gold-bright);
}

.site-footer .footer-nav {
  min-height: 0;
}

.site-footer .footer-nav-title {
  margin: 2px 0 20px;
  padding: 0;
  color: var(--hbs-live-gold-bright);
  font-family: "Josefin Sans", Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.8px;
  line-height: 1.4;
  text-transform: uppercase;
}

.site-footer .footer-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.site-footer .footer-menu li,
.site-footer .footer-menu li:last-child {
  margin: 0;
}

.site-footer .footer-menu a,
.site-footer .footer-menu a:visited,
.site-footer .footer-menu-standalone,
.site-footer .footer-menu-standalone:visited {
  color: #fff;
  font-family: "Josefin Sans", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.4px;
  line-height: 1.45;
  text-transform: none;
}

.site-footer .footer-menu-standalone {
  margin-top: 10px;
}

.site-footer .footer-menu a:hover,
.site-footer .footer-menu a:focus-visible,
.site-footer .footer-menu-standalone:hover,
.site-footer .footer-menu-standalone:focus-visible {
  color: var(--hbs-live-gold-bright);
  opacity: 1;
}

.site-footer .footer-bottom {
  min-height: 0;
  padding: 22px 24px;
  color: #8f8f8f;
  font-family: Lato, Helvetica, Arial, sans-serif;
  font-size: 13px;
  line-height: 1.5;
}

@media (max-width: 980px) {
  .site-footer .footer-main {
    padding-top: 56px;
  }

  .site-footer .footer-grid {
    width: min(720px, calc(100% - 48px));
    min-height: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 64px;
    row-gap: 48px;
    padding: 0 0 48px;
  }

  .site-footer .footer-brand {
    min-height: 0;
    grid-column: 1 / -1;
  }

  .site-footer .footer-nav {
    min-height: 0;
  }
}

@media (max-width: 620px) {
  .site-footer .footer-main {
    padding-top: 48px;
  }

  .site-footer .footer-grid {
    width: calc(100% - 36px);
    grid-template-columns: 1fr;
    gap: 0;
    padding-bottom: 36px;
  }

  .site-footer .footer-brand {
    grid-column: auto;
    padding-bottom: 38px;
    text-align: center;
  }

  .site-footer .footer-brand > img {
    width: min(220px, 78vw);
    margin-right: auto;
    margin-left: auto;
  }

  .site-footer .footer-brand .footer-license,
  .site-footer .footer-brand .footer-membership {
    text-align: center;
  }

  .site-footer .social-links {
    justify-content: center;
  }

  .site-footer .footer-nav {
    padding: 28px 4px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .site-footer .footer-nav-title {
    margin-top: 0;
    margin-bottom: 17px;
  }

  .site-footer .footer-bottom {
    padding: 20px 18px;
    font-size: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .promo-bar a,
  .primary-menu a,
  .primary-navigation,
  .menu-toggle::before,
  .menu-toggle::after,
  .menu-toggle > span:last-child,
  .site-footer .social-links a {
    transition: none;
  }
}

@media print {
  .site-chrome,
  .floating-book-button {
    display: none !important;
  }

  .site-main {
    padding-top: 0;
  }
}
