body.jazzcue-homepage-v3{
  --jc-black: #0a0a0a;
  --jc-ink: #161616;
  --jc-paper: #fbfaf8;
  --jc-soft: #f4f1eb;
  --jc-porcelain: #f7f8f7;
  --jc-blue: #8ea9bd;
  --jc-accent: #8b6a3d;
  --jc-muted: #727272;
  --jc-line: rgba(10, 10, 10, 0.12);
  --jc-line-dark: rgba(255, 255, 255, 0.16);
  --jc-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --jc-serif: Georgia, "Times New Roman", serif;
  --jc-max: 1480px;
  --jc-content: 1260px;
}

body.jazzcue-homepage-v3 *{
  box-sizing: border-box;
}

html{
  scroll-behavior: smooth;
}

body.jazzcue-homepage-v3{
  margin: 0;
  background: var(--jc-paper);
  color: var(--jc-ink);
  font-family: var(--jc-sans);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

body.jazzcue-homepage-v3.menu-open,
body.jazzcue-homepage-v3.search-open{
  overflow: hidden;
}

body.jazzcue-homepage-v3 img{
  display: block;
  max-width: 100%;
  height: auto;
}

body.jazzcue-homepage-v3 a{
  color: inherit;
  text-decoration: none;
}

body.jazzcue-homepage-v3 button,
body.jazzcue-homepage-v3 input{
  font: inherit;
}

body.jazzcue-homepage-v3 button{
  cursor: pointer;
}

body.jazzcue-homepage-v3 :focus-visible{
  outline: 2px solid var(--jc-accent);
  outline-offset: 4px;
}

body.jazzcue-homepage-v3 .skip-link{
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  transform: translateY(-140%);
  background: var(--jc-black);
  color: #fff;
  padding: 10px 14px;
}

body.jazzcue-homepage-v3 .skip-link:focus{
  transform: translateY(0);
}

body.jazzcue-homepage-v3 .sr-only{
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

body.jazzcue-homepage-v3 .notice{
  position: relative;
  z-index: 80;
  height: 34px;
  display: grid;
  place-items: center;
  background: #fff;
  border-bottom: 1px solid var(--jc-line);
  color: var(--jc-ink);
  font-size: 13px;
}

body.jazzcue-homepage-v3 .notice a{
  border-bottom: 1px solid currentColor;
}

body.jazzcue-homepage-v3 .site-header{
  position: sticky;
  top: 0;
  z-index: 70;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--jc-line);
  backdrop-filter: blur(12px);
}

body.jazzcue-homepage-v3 .site-header.is-compact .header-grid{
  min-height: 66px;
}

body.jazzcue-homepage-v3 .header-grid{
  width: min(100%, var(--jc-max));
  min-height: 84px;
  margin: 0 auto;
  padding: 0 26px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  transition: min-height 180ms ease;
}

body.jazzcue-homepage-v3 .logo{
  justify-self: center;
}

body.jazzcue-homepage-v3 .logo img{
  width: 72px;
}

body.jazzcue-homepage-v3 .nav-left,
body.jazzcue-homepage-v3 .nav-right{
  display: flex;
  align-items: center;
  gap: clamp(16px, 1.55vw, 28px);
}

body.jazzcue-homepage-v3 .nav-left{
  justify-self: start;
}

body.jazzcue-homepage-v3 .nav-right{
  justify-self: end;
}

body.jazzcue-homepage-v3 .nav-left a,
body.jazzcue-homepage-v3 .nav-right a,
body.jazzcue-homepage-v3 .nav-right button{
  border: 0;
  background: transparent;
  padding: 0;
  color: var(--jc-black);
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

body.jazzcue-homepage-v3 .nav-left a,
body.jazzcue-homepage-v3 .nav-right a:not(:last-child),
body.jazzcue-homepage-v3 .nav-right button:not(.menu-button){
  position: relative;
}

body.jazzcue-homepage-v3 .nav-left a::after,
body.jazzcue-homepage-v3 .nav-right a:not(:last-child)::after,
body.jazzcue-homepage-v3 .nav-right button:not(.menu-button)::after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 1px;
  background: var(--jc-black);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

body.jazzcue-homepage-v3 .nav-left a:hover::after,
body.jazzcue-homepage-v3 .nav-right a:not(:last-child):hover::after,
body.jazzcue-homepage-v3 .nav-right button:not(.menu-button):hover::after{
  transform: scaleX(1);
}

body.jazzcue-homepage-v3 .menu-button{
  display: none;
  width: 44px;
  height: 44px;
}

body.jazzcue-homepage-v3 .menu-button span{
  display: block;
  width: 24px;
  height: 2px;
  margin: 6px auto;
  background: var(--jc-black);
}

body.jazzcue-homepage-v3 .drawer,
body.jazzcue-homepage-v3 .search-layer{
  position: fixed;
  inset: 0;
  z-index: 130;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

body.jazzcue-homepage-v3 .drawer{
  background: rgba(10, 10, 10, 0.48);
}

body.jazzcue-homepage-v3 .drawer.is-open,
body.jazzcue-homepage-v3 .search-layer.is-open{
  opacity: 1;
  pointer-events: auto;
}

body.jazzcue-homepage-v3 .drawer nav{
  position: absolute;
  top: 0;
  right: 0;
  width: min(88vw, 430px);
  height: 100%;
  padding: 92px 34px 34px;
  background: var(--jc-blue);
  color: var(--jc-black);
  transform: translateX(100%);
  transition: transform 220ms ease;
}

body.jazzcue-homepage-v3 .drawer.is-open nav{
  transform: translateX(0);
}

body.jazzcue-homepage-v3 .drawer a{
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
  border-bottom: 1px solid rgba(10, 10, 10, 0.16);
  font-size: 28px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body.jazzcue-homepage-v3 .drawer-close,
body.jazzcue-homepage-v3 .search-layer [data-search-close]{
  position: absolute;
  z-index: 2;
  top: 24px;
  right: 28px;
  min-height: 42px;
  border: 1px solid var(--jc-line);
  background: transparent;
  padding: 0 14px;
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body.jazzcue-homepage-v3 .search-layer{
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(10, 10, 10, 0.58);
}

body.jazzcue-homepage-v3 .search-dialog{
  position: relative;
  width: min(760px, 100%);
  background: #fff;
  padding: clamp(42px, 6vw, 76px);
}

body.jazzcue-homepage-v3 .search-dialog h2{
  margin: 0 0 24px;
  font-family: var(--jc-serif);
  font-size: clamp(40px, 5vw, 66px);
  font-weight: 500;
  line-height: 1;
}

body.jazzcue-homepage-v3 label{
  display: block;
  margin-bottom: 8px;
  color: var(--jc-muted);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body.jazzcue-homepage-v3 input{
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--jc-line);
  background: #fff;
  padding: 0 14px;
}

body.jazzcue-homepage-v3 .search-dialog form div,
body.jazzcue-homepage-v3 .site-footer form div{
  display: flex;
  gap: 10px;
}

body.jazzcue-homepage-v3 .button{
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  padding: 0 20px;
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

body.jazzcue-homepage-v3 .button:hover{
  transform: translateY(-1px);
}

body.jazzcue-homepage-v3 .button-dark{
  background: var(--jc-black);
  color: #fff;
}

body.jazzcue-homepage-v3 .button-light{
  background: #fff;
  color: var(--jc-black);
}

body.jazzcue-homepage-v3 .single-hero{
  position: relative;
  min-height: min(820px, calc(100vh - 118px));
  overflow: hidden;
  background: var(--jc-black);
  --cue-center-y: 52%;
  --title-box-top: clamp(86px, 12vh, 132px);
  --button-box-top: calc(var(--cue-center-y) + 3.35cm);
}

body.jazzcue-homepage-v3 .single-hero > img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 56%;
}

body.jazzcue-homepage-v3 .single-hero::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 10, 10, 0.18), rgba(10, 10, 10, 0) 48%, rgba(10, 10, 10, 0.12));
  pointer-events: none;
}

body.jazzcue-homepage-v3 .single-hero-content{
  position: absolute;
  inset: 0;
  z-index: 1;
  padding: 0 24px;
  color: #fff;
  text-align: center;
  pointer-events: none;
}

body.jazzcue-homepage-v3 .single-hero-content h1{
  position: absolute;
  left: 24px;
  right: 24px;
  top: var(--title-box-top);
  margin: 0;
  color: #fff;
  font-family: var(--jc-sans);
  font-size: clamp(58px, 8.2vw, 132px);
  font-weight: 360;
  letter-spacing: 0.06em;
  line-height: 0.95;
  text-shadow: 0 10px 44px rgba(0, 0, 0, 0.46);
}

body.jazzcue-homepage-v3 .single-hero-content a{
  position: absolute;
  top: var(--button-box-top);
  left: 50%;
  transform: translateX(-50%);
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
  font-size: 15px;
  color: #fff;
  pointer-events: auto;
}

body.jazzcue-homepage-v3 .section{
  width: min(100%, var(--jc-content));
  margin: 0 auto;
  padding: 112px 24px;
}

body.jazzcue-homepage-v3 .eyebrow{
  margin: 0 0 18px;
  color: var(--jc-black);
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

body.jazzcue-homepage-v3 .selected{
  width: min(100%, var(--jc-max));
  display: grid;
  grid-template-columns: 0.34fr 1fr;
  gap: 52px;
  align-items: center;
  min-height: 760px;
}

body.jazzcue-homepage-v3 .selected-intro{
  justify-self: center;
  text-align: center;
}

body.jazzcue-homepage-v3 .selected-intro a{
  display: inline-block;
  margin-top: 46px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
}

body.jazzcue-homepage-v3 .selected-products{
  display: grid;
  grid-template-columns: minmax(390px, 1.42fr) repeat(3, minmax(170px, 0.68fr));
  gap: 28px;
  align-items: start;
}

body.jazzcue-homepage-v3 .selected-feature{
  min-width: 0;
}

body.jazzcue-homepage-v3 .selected-products a{
  display: block;
}

body.jazzcue-homepage-v3 .selected-products img{
  width: 100%;
  object-fit: contain;
  background: #080808;
  transition: transform 220ms ease;
}

body.jazzcue-homepage-v3 .selected-feature img{
  aspect-ratio: 1 / 1.08;
}

body.jazzcue-homepage-v3 .selected-small img{
  aspect-ratio: 1 / 1;
}

body.jazzcue-homepage-v3 .selected-products a:hover img{
  transform: scale(1.018);
}

body.jazzcue-homepage-v3 .selected-products div{
  display: block;
  padding-top: 16px;
}

body.jazzcue-homepage-v3 .selected-products h3{
  max-width: none;
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.35;
  white-space: nowrap;
}

body.jazzcue-homepage-v3 .selected-products span{
  color: var(--jc-black);
  font-size: 14px;
  line-height: 1.4;
  text-align: right;
}

body.jazzcue-homepage-v3 .full-image{
  width: 100%;
  background: var(--jc-black);
}

body.jazzcue-homepage-v3 .full-image img{
  width: 100%;
  height: min(760px, 58vw);
  object-fit: cover;
  object-position: center;
}

body.jazzcue-homepage-v3 .category-band{
  background: var(--jc-blue);
  padding: 112px max(24px, calc((100vw - var(--jc-content)) / 2));
}

body.jazzcue-homepage-v3 .category-heading h2,
body.jazzcue-homepage-v3 .custom-copy h2,
body.jazzcue-homepage-v3 .final-cta h2{
  margin: 0;
  font-family: var(--jc-serif);
  font-size: clamp(38px, 5vw, 72px);
  font-weight: 500;
  line-height: 1;
}

body.jazzcue-homepage-v3 .category-links{
  width: min(100%, 650px);
  margin-left: auto;
  border-top: 1px solid rgba(10, 10, 10, 0.18);
}

body.jazzcue-homepage-v3 .category-links a{
  display: block;
  padding: 24px 0;
  border-bottom: 1px solid rgba(10, 10, 10, 0.18);
  font-size: clamp(24px, 4vw, 46px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body.jazzcue-homepage-v3 .category-links span{
  align-self: center;
  font-size: 13px;
  letter-spacing: 0.18em;
}

body.jazzcue-homepage-v3 .craft-story,
body.jazzcue-homepage-v3 .custom-service{
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

body.jazzcue-homepage-v3 .craft-story > div:first-child img,
body.jazzcue-homepage-v3 .custom-media img{
  width: 100%;
  height: 100%;
  min-height: 650px;
  object-fit: cover;
}

body.jazzcue-homepage-v3 .story-copy,
body.jazzcue-homepage-v3 .custom-copy{
  padding: clamp(56px, 7vw, 112px);
}

body.jazzcue-homepage-v3 .story-copy h2{
  margin: 0;
  font-family: var(--jc-sans);
  font-size: clamp(34px, 4.3vw, 64px);
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

body.jazzcue-homepage-v3 .story-copy p:not(.eyebrow),
body.jazzcue-homepage-v3 .custom-copy p{
  max-width: 540px;
  color: var(--jc-muted);
  font-size: 18px;
}

body.jazzcue-homepage-v3 .story-copy ul{
  list-style: none;
  max-width: 660px;
  margin: 42px 0 0;
  padding: 0;
  border-top: 1px solid var(--jc-line);
}

body.jazzcue-homepage-v3 .story-copy li{
  padding: 17px 0;
  border-bottom: 1px solid var(--jc-line);
  font-size: 18px;
  line-height: 1.45;
}

body.jazzcue-homepage-v3 .custom-service{
  width: min(100%, var(--jc-content));
  gap: 54px;
}

body.jazzcue-homepage-v3 .finish-copy{
  align-self: center;
}

body.jazzcue-homepage-v3 .finish-lines{
  list-style: none;
  max-width: 650px;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--jc-line);
}

body.jazzcue-homepage-v3 .finish-lines li{
  padding: 18px 0;
  border-bottom: 1px solid var(--jc-line);
  color: var(--jc-ink);
  font-size: 18px;
  line-height: 1.45;
}

body.jazzcue-homepage-v3 .custom-copy .button{
  margin-top: 28px;
}

body.jazzcue-homepage-v3 .final-cta{
  padding: 116px 24px;
  background: var(--jc-soft);
  text-align: center;
}

body.jazzcue-homepage-v3 .final-cta p{
  margin: 0 0 18px;
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

body.jazzcue-homepage-v3 .final-cta a{
  display: inline-block;
  margin-top: 34px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
}

body.jazzcue-homepage-v3 .site-footer{
  background: #111719;
  color: rgba(255, 255, 255, 0.62);
  padding: 112px 24px 34px;
}

body.jazzcue-homepage-v3 .footer-grid{
  width: min(100%, var(--jc-content));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.85fr 0.85fr 1.25fr;
  gap: clamp(42px, 8vw, 118px);
  align-items: start;
}

body.jazzcue-homepage-v3 .footer-grid p,
body.jazzcue-homepage-v3 .footer-grid small{
  color: rgba(255, 255, 255, 0.58);
}

body.jazzcue-homepage-v3 .footer-grid h2{
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

body.jazzcue-homepage-v3 .footer-social h2{
  color: rgba(255, 255, 255, 0.58);
  font-size: 15px;
  font-weight: 500;
  text-transform: none;
}

body.jazzcue-homepage-v3 .footer-grid a{
  display: inline-block;
  width: fit-content;
  color: rgba(255, 255, 255, 0.58);
}

body.jazzcue-homepage-v3 .footer-grid a:hover{
  color: #fff;
}

body.jazzcue-homepage-v3 .footer-grid nav a{
  display: block;
  padding: 3px 0;
}

body.jazzcue-homepage-v3 .social-links{
  display: flex;
  gap: 22px;
  align-items: center;
  margin-top: 42px;
}

body.jazzcue-homepage-v3 .footer-grid .social-link{
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  padding: 0;
}

body.jazzcue-homepage-v3 .footer-grid .social-link svg{
  width: 18px;
  height: 18px;
  fill: currentColor;
}

body.jazzcue-homepage-v3 .social-youtube{
  background: #d93a37;
}

body.jazzcue-homepage-v3 .social-tiktok{
  background: #129be8;
  color: #050505;
}

body.jazzcue-homepage-v3 .social-facebook{
  background: #4969ad;
}

body.jazzcue-homepage-v3 .social-instagram{
  background: #c83f92;
}

body.jazzcue-homepage-v3 .footer-contact p{
  max-width: 340px;
  margin: 0 0 24px;
  line-height: 1.65;
}

body.jazzcue-homepage-v3 .footer-contact strong{
  color: rgba(255, 255, 255, 0.58);
  font-weight: 800;
}

body.jazzcue-homepage-v3 .footer-bottom{
  width: min(100%, var(--jc-content));
  margin: 210px auto 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 13px;
}

@media (max-width: 1180px) {
  body.jazzcue-homepage-v3 .nav-left,
body.jazzcue-homepage-v3 .nav-right a,
body.jazzcue-homepage-v3 .nav-right button:not(.menu-button){
    display: none;
  }

  body.jazzcue-homepage-v3 .header-grid{
    grid-template-columns: 1fr auto 1fr;
  }

  body.jazzcue-homepage-v3 .menu-button{
    display: block;
  }

  body.jazzcue-homepage-v3 .selected{
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 36px;
  }

  body.jazzcue-homepage-v3 .selected-products{
    grid-template-columns: minmax(340px, 1.1fr) repeat(2, minmax(180px, 0.8fr));
  }

  body.jazzcue-homepage-v3 .selected-feature{
    grid-column: span 2;
  }

  body.jazzcue-homepage-v3 .category-band,
body.jazzcue-homepage-v3 .craft-story,
body.jazzcue-homepage-v3 .custom-service,
body.jazzcue-homepage-v3 .footer-grid{
    grid-template-columns: 1fr;
  }

  body.jazzcue-homepage-v3 .custom-service{
    gap: 0;
  }
}

@media (max-width: 760px) {
  body.jazzcue-homepage-v3{
    font-size: 15px;
  }

  body.jazzcue-homepage-v3 .notice{
    height: 32px;
    font-size: 12px;
  }

  body.jazzcue-homepage-v3 .header-grid{
    min-height: 68px;
    padding: 0 18px;
  }

  body.jazzcue-homepage-v3 .logo img{
    width: 56px;
  }

  body.jazzcue-homepage-v3 .single-hero{
    min-height: 690px;
    --cue-center-y: 50%;
    --title-box-top: 116px;
    --button-box-top: calc(var(--cue-center-y) + 2.5cm);
  }

  body.jazzcue-homepage-v3 .single-hero > img{
    object-fit: contain;
    object-position: center 54%;
  }

  body.jazzcue-homepage-v3 .single-hero::after{
    background: linear-gradient(0deg, rgba(10, 10, 10, 0.38), rgba(10, 10, 10, 0.04) 62%, rgba(10, 10, 10, 0.18));
  }

  body.jazzcue-homepage-v3 .single-hero-content h1{
    font-size: clamp(52px, 18vw, 82px);
    letter-spacing: 0.04em;
  }

  body.jazzcue-homepage-v3 .section{
    padding: 76px 20px;
  }

  body.jazzcue-homepage-v3 .selected-intro{
    justify-self: start;
    text-align: left;
  }

  body.jazzcue-homepage-v3 .selected-intro a{
    margin-top: 18px;
  }

  body.jazzcue-homepage-v3 .selected-products{
    grid-template-columns: 1fr;
    gap: 34px;
  }

  body.jazzcue-homepage-v3 .selected-feature{
    grid-column: auto;
  }

  body.jazzcue-homepage-v3 .selected-feature img,
body.jazzcue-homepage-v3 .selected-small img{
    aspect-ratio: 4 / 5;
  }

  body.jazzcue-homepage-v3 .selected-products div{
    display: block;
  }

  body.jazzcue-homepage-v3 .selected-products span{
    display: block;
    margin-top: 4px;
    white-space: normal;
    text-align: left;
  }

  body.jazzcue-homepage-v3 .full-image img{
    height: 66vw;
    min-height: 360px;
    object-position: center;
  }

  body.jazzcue-homepage-v3 .category-band{
    padding: 76px 20px;
  }

  body.jazzcue-homepage-v3 .category-heading h2,
body.jazzcue-homepage-v3 .story-copy h2,
body.jazzcue-homepage-v3 .custom-copy h2,
body.jazzcue-homepage-v3 .final-cta h2{
    font-size: 40px;
  }

  body.jazzcue-homepage-v3 .category-links a{
    font-size: 24px;
    letter-spacing: 0.08em;
  }

  body.jazzcue-homepage-v3 .category-links span{
    font-size: 12px;
  }

  body.jazzcue-homepage-v3 .craft-story > div:first-child img,
body.jazzcue-homepage-v3 .custom-media img{
    min-height: 360px;
  }

  body.jazzcue-homepage-v3 .story-copy,
body.jazzcue-homepage-v3 .custom-copy{
    padding: 76px 20px;
  }

  body.jazzcue-homepage-v3 .final-cta{
    padding: 82px 20px;
  }

  body.jazzcue-homepage-v3 .site-footer form div,
body.jazzcue-homepage-v3 .search-dialog form div{
    flex-direction: column;
  }

  body.jazzcue-homepage-v3 .button{
    width: 100%;
  }

  body.jazzcue-homepage-v3 .footer-bottom{
    flex-direction: column;
    margin-top: 82px;
  }
}

@media (max-width: 390px) {
  body.jazzcue-homepage-v3 .drawer nav{
    width: 100%;
    padding-left: 24px;
    padding-right: 24px;
  }

  body.jazzcue-homepage-v3 .drawer a{
    font-size: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.jazzcue-homepage-v3 *,
body.jazzcue-homepage-v3 *::before,
body.jazzcue-homepage-v3 *::after{
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}


/* WordPress admin bar compatibility */
body.jazzcue-homepage-v3.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) { body.jazzcue-homepage-v3.admin-bar .site-header { top: 46px; } }
