:root {
  --ll-black: #000;
  --ll-charcoal: #232a31;
  --ll-body: #505054;
  --ll-mist: #f0f3f5;
  --ll-cloud: #f5f8fa;
  --ll-white: #fff;
  --ll-link: #0079c8;
  --ll-silver: #c7cdd2;
  --ll-muted: #676c72;
  --ll-sale: #b8005c;
  --ll-success: #1f6f43;
  --ll-error: #d72c0d;
  --ll-content: 1140px;
  --ll-narrow: 820px;
  --ll-header-height: 190px;
  --ll-shadow: 0 18px 50px rgb(0 0 0 / 16%);
  --ll-font: "Montserrat", Arial, sans-serif;
  --ll-product-font: "Questrial", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html.has-open-overlay {
  overflow: hidden;
}

body {
  margin: 0;
  background: var(--ll-white);
  color: var(--ll-body);
  font-family: var(--ll-font);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.admin-bar .site-header {
  top: 32px;
}

img,
svg,
video {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

a {
  color: var(--ll-link);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:hover,
a:focus-visible {
  color: var(--ll-black);
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
[type="button"],
[type="submit"] {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid var(--ll-link);
  outline-offset: 3px;
}

h1,
h2,
h3,
h4,
p {
  margin-block-start: 0;
}

h1,
h2,
h3,
h4 {
  color: var(--ll-black);
  font-weight: 700;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(1.4rem, 3vw, 2.35rem);
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.screen-reader-text:focus {
  z-index: 100000;
  top: 8px;
  left: 8px;
  width: auto;
  height: auto;
  padding: 12px 16px;
  clip: auto;
  background: var(--ll-white);
  color: var(--ll-black);
  box-shadow: var(--ll-shadow);
}

[hidden] {
  display: none !important;
}

.content-shell {
  width: min(100% - 40px, var(--ll-content));
  margin-inline: auto;
}

.content-shell--narrow {
  width: min(100% - 40px, var(--ll-narrow));
}

.content-shell--commerce {
  padding-block: clamp(42px, 7vw, 92px);
}

.site-content {
  min-height: 55vh;
}

.has-light-header .site-content {
  padding-top: var(--ll-header-height);
}

.entry {
  padding-block: clamp(45px, 8vw, 100px);
}

.entry > * + *,
.legal-page__content > * + * {
  margin-block-start: 1.25em;
}

.button,
button:not(.icon-button, .header-action, .hero-carousel__arrow, .hero-carousel__toggle, [data-carousel-dot]),
input[type="submit"] {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ll-black);
  border-radius: 0;
  padding: 10px 24px;
  background: var(--ll-black);
  color: var(--ll-white);
  font-size: 0.9rem;
  font-weight: 650;
  letter-spacing: 0.065em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible,
button:not(.icon-button, .header-action, .hero-carousel__arrow, .hero-carousel__toggle, [data-carousel-dot]):hover,
button:not(.icon-button, .header-action, .hero-carousel__arrow, .hero-carousel__toggle, [data-carousel-dot]):focus-visible {
  border-color: var(--ll-link);
  background: var(--ll-link);
  color: var(--ll-white);
}

.button--light {
  border-color: var(--ll-white);
  background: var(--ll-white);
  color: var(--ll-black);
}

.button--outline {
  background: transparent;
  color: var(--ll-black);
}

@media (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}

@media (max-width: 767px) {
  :root {
    --ll-header-height: 72px;
  }

  .content-shell,
  .content-shell--narrow {
    width: min(100% - 28px, var(--ll-content));
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
