/** Shopify CDN: Minification failed

Line 63:17 Expected identifier but found whitespace
Line 63:18 Unexpected "400"
Line 71:1 Expected identifier but found "*"
Line 72:3 Unexpected "="

**/
/*================ Color ================*/

:root {
  --white: rgb(var(--color-background));
  --black: rgb(var(--color-foreground));
  --gray: var(--kit-grey-700);
  currentcolor: rgb(var(--color-background));
}

h1, h2, h3, h4, h5, h6, .h0, .h1, .h2, .h3, .h4, .h5, .h6 {
  letter-spacing: 0;
  margin: 0 0 .75em;
  line-height: 1.25;
  word-break: unset;
}

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

/*================ Fonts ================*/

/* ==================== QUARANTINED — heading overrides ====================
 * These rules originally overrode Dawn's responsive heading scale with fixed
 * pixel sizes and the body font family (--font-body-family), which killed the
 * display face (--font-heading-family = Agnifa) on h1-h4.  They are kept here
 * (commented) as a reference.  All headings now render via Dawn's base.css
 * scale, which uses --font-heading-family (Agnifa) and responsive calc() sizes.
 *
 * h1, .h1 {
 *   font-weight: 600;
 *   font-size: 44px;
 *   line-height: 1.3;
 *   font-family: var(--font-body-family);
 * }
 * h2, .h2 {
 *   font-weight: 400;
 *   font-size: 36px;
 *   line-height: 1.4;
 *   font-family: var(--font-body-family);
 * }
 * h3, .h3 {
 *   font-weight: 400;
 *   font-size: 32px;
 *   line-height: 1.3;
 *   font-family: var(--font-body-family);
 * }
 * h4, .h4 {
 *   font-weight: 400;
 *   font-size: 28px;
 *   line-height: 1.2;
 *   font-family: var(--font-body-family);
 * }
 * h4, .h4 {        /* duplicate — second rule silently beat the first */
 *   font-weight: 400;
 *   font-size: 22px;
 *   line-height: 1.2;
 *   font-family: var(--font-body-family);
 * }
 * @media screen and (max-width: 749px) {
 *   h1, .h1 { font-size: 36px; }
 *   h2, .h2 { font-size: 28px; }
 * }
 * ========================================================================== */

div, span, body {
  letter-spacing: 0;
}

ul li,
ol li {
  letter-spacing: 0;
  line-height: 1.25;
  margin-bottom: .25em;
}

a {
  text-decoration: none;
  color: currentColor;
}

a:hover {
  text-decoration: none;
}

.container {
  padding: 0 30px;
}

.container-lg {
  max-width: 1920px;
  padding: 0 30px;
  width: 100%;
  margin: 0 auto;
}

.wrapper {
  max-width: 100%;
  padding: 0 80px;
  width: 100%;
  margin: 0 auto;
}

.caption {
  font-family: var(--font-body-family);
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}

.caption:hover,
.caption a:hover {
  text-decoration: none;
}

.author-caption {
  color: var(--kit-accent);
  font-family: var(--font-heading-family);
  font-size: 30px;
  font-weight: 400;
  text-transform: uppercase;
}

.primary-caption {
  color: rgb(var(--color-foreground));
  font-family: var(--font-body-family);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0;
  position: relative;
}

.primary-caption:before {
  content: '';
  position: absolute;
  left: 0;
  width: 0;
  bottom: 2px;
  height: 1px;
  content: "";
  display: block;
  -webkit-transition: width .3s ease;
  -moz-transition: width .3s ease;
  -ms-transition: width .3s ease;
  -o-transition: width .3s ease;
  transition: width .3s ease;
  visibility: hidden;
  background-color: rgb(var(--color-foreground));
}

/* ==================== QUARANTINED — legacy kit button overrides ====================
 * These rules were originally applied to Dawn's .button system, overriding its
 * pseudo-element shadow/border mechanism and imposing a flat 200px min-width with
 * 60px min-height.  They are kept here (commented) as a reference for the old
 * visual treatment.  All kit buttons now use the kit-button snippet which applies
 * the flat brand aesthetic without breaking Dawn's CSS-variable system.
 *
 * .button {
 *   font-size: 20px;
 *   font-weight: 400;
 *   line-height: 1;
 *   text-decoration: none;
 *   position: relative;
 *   color: rgb(var(--color-background));
 *   padding: 8px 15px 10px 15px;
 *   min-height: 60px;
 *   min-width: 200px;
 *   letter-spacing: normal;
 * }
 * .button:hover { background-color: var(--kit-accent); }
 * .button:before, .button:after { display: none; }
 * ========================================================================== */

/* .button above sets `color: rgb(var(--color-background))`, which is correct for
   the solid primary — a cream label on a dark fill — and wrong for every button
   whose fill is transparent. .button--secondary already gets its ink back two
   rules up; .button--tertiary never did, so it inherited a cream label and, on a
   cream surface, disappeared. That is what made the cart drawer's remove icon
   invisible: the SVG is fill="currentColor", and currentColor was the background.

   It only reappeared under the pointer because component-cart-items.css sets
   `cart-remove-button .button:not([disabled]):hover { color: rgb(var(--color-foreground)) }`,
   which outranks this rule and was doing all the work.

   Resting ink is the foreground at 65% so the control still reads as secondary
   AND that existing hover rule stays a real change of state rather than a no-op.
   --color-foreground follows the colour scheme, so this is right on the dark
   schemes too. */
.button--tertiary {
  color: rgba(var(--color-foreground), 0.65);
}

.primary-caption:hover:before {
  width: 100%;
  visibility: visible;
}

.primary-button {
  color: rgb(var(--color-foreground));
  font-family: var(--font-heading-family);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: normal;
  text-transform: uppercase;
  text-decoration: none;
  background-color: transparent;
  border: 1px solid rgb(var(--color-foreground));
  padding: 22px 50px;
  border-radius: 0;
}

.primary-button:hover {
  background-color: rgb(var(--color-foreground));
  color: rgb(var(--color-background));
}

/* ==================== QUARANTINED — .h0 at 194px ====================
 * This rule originally set .h0 to 194px which was far too large for most uses.
 * Section headings use client-overrides.css §6 which scopes .h0 to
 * clamp(2.2rem, 4.6vw, 4rem) on the specific section classes only.
 *
 * .h0 {
 *   margin: 0;
 *   text-align: center;
 *   font-family: var(--font-heading-family);
 *   font-size: 194.248px;
 *   font-style: normal;
 *   font-weight: 400;
 *   line-height: 205.04px;
 *   letter-spacing: normal;
 *   text-transform: uppercase;
 * }
 * ========================================================================== */

.body,
.body p {
  font-size: 24px;
  line-height: 1.33;
  font-style: italic;
  color: var(--kit-grey-700);
  margin: 0 0 .75em;
}

.body-1, .body-1 p {
  font-family: var(--font-body-family);
  /* Was 18px/28px, which sat oversized next to 14px body, 13px inputs and
     11px labels. Now one step above body copy. */
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
}

.responsive-lazy-image {
  display: block;
  margin: 0 auto;
  width: 100%;
  position: relative;
}

.responsive-lazy-image img {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  object-position: center;
}

.responsive-lazy-image.lazyload {
  opacity: 0;
}

.aspect-ratio:before {
  padding-bottom: calc(100% /(var(--aspect-ratio)));
  content: "";
  display: block;
}

/* */

.sh0 {
  font-size: 140px;
  line-height: 1.28;
  text-transform: uppercase;
  font-weight: 400;
  font-family: var(--font-heading-family);
  margin: 0px;
}

.sh1 {
  font-size: 80px;
  line-height: 90px;
  text-transform: uppercase;
  font-weight: 400;
  font-family: var(--font-heading-family);
}

.sh2 {
  font-family: var(--font-heading-family);
  font-size: 40px;
  line-height: normal;
  text-transform: uppercase;
  font-weight: 400;
}

.sh3 {
  font-size: 76px;
  line-height: 1.15;
  text-transform: uppercase;
  font-weight: 400;
  font-family: var(--font-heading-family);
}

.sh4 {
  font-family: var(--font-heading-family);
  font-size: 32px;
  line-height: normal;
  text-transform: uppercase;
  font-weight: 400;
}

.sh5 {
  font-family: var(--font-heading-family);
  font-style: var(--font-heading-style);
  font-weight: var(--font-heading-weight);
  letter-spacing: 0;
  color: rgb(var(--color-foreground));
  line-height: 1.25;
  word-break: unset;
  margin: 0 0 .75em;
}

.sh6 {
  font-size: 120px;
  line-height: 1.1;
  text-transform: uppercase;
  font-weight: 400;
  font-family: var(--font-heading-family);
}

.text,
.text p {
  font-size: 24px;
  line-height: 1.33;
}

.container {
  padding: 0 30px;
}

.text-left {
  text-align: left !important;
}

[dir=rtl] .text-left {
  text-align: right !important;
}

.text-right {
  text-align: right !important;
}

[dir=rtl] .text-right {
  -moz-text-align-last: left !important;
 text-align-last: left !important;
}

.text-center {
  text-align: center !important;
}

.text-center .kicker__line:after {
  right: 0;
}

.standard__kicker, .standard__heading, .standard__rte, .standard__cta, .standard__icons, .standard__image, .standard__list {
  overflow: hidden;
  margin-bottom: var(--line);
}

.standard__kicker {
  text-transform: uppercase;
  overflow: hidden;
  color: rgb(var(--color-foreground));
  margin: 0;
  font-style: italic;
}

.kicker__line {
  padding-bottom: 10px;
  margin-bottom: 16px;
  position: relative;
}

.kicker__line:after {
  left: 0;
}

.kicker__line:after {
  content: "";
  margin: auto;
  width: 30px;
  height: 3px;
  position: absolute;
  bottom: 0;
  background: rgb(var(--color-foreground));
  opacity: .2;
}

.text-right .kicker__line:after {
  left: auto;
  right: 0;
}

@media screen and (max-width: 1600px) {
  
  .sh0 {
    font-size: 110px;
  }

  .sh6 {
    font-size: 98px;
  }

  .sh3 {
    font-size: 64px;
  }
  
}

@media screen and (max-width: 1439px) {
  
  .sh0 {
    font-size: 88px;
  }

  .sh4 {
    font-size: 28px;
  }

  .sh6 {
    font-size: 88px;
  }

  .sh3 {
    font-size: 54px;
  }
  
}

@media screen and (max-width: 1200px) {
  
  .primary-button {
    padding: 18px 32px;
    font-size: 16px;
  }
  
  .sh0 {
    font-size: 80px;
    line-height: 1.2;
  }

  .sh1 {
    font-size: 50px;
    line-height: 60px;
  }

  .sh2 {
    font-size: 36px;
  }

  .sh4 {
    font-size: 26px;
  }

  .text {
    font-size: 20px;
  }

  .body, .body p {
    font-size: 22px;
  }

  .sh6 {
    font-size: 70px;
  }

  .sh3 {
    font-size: 42px;
  }
}

@media screen and (max-width: 989px) {

  .sh0 {
    font-size: 54px;
  }
  
  .sh2 {
    font-size: 34px;
  }

  .wrapper {
    padding: 0 30px;
  }

  .sh4 {
    font-size: 26px;
  }

  .sh6 {
    font-size: 62px;
  }

  .sh3 {
    font-size: 36px;
  }

}

@media screen and (max-width: 749px) {

  .wrapper {
    padding: 0 10px;
  }
  
  .container {
    padding: 0 10px;
  }

  .primary-button {
    padding: 20px 31px;
    font-size: 15px;
    letter-spacing: normal;
  }
  
  .caption {
    font-size: 13px;
  }
  
  .sh0 {
    font-size: 52px;
  }

  .sh1 {
    font-size: 32px;
    line-height: 36px;
  }
  
  .sh2 {
    font-size: 30px;
  }

  .text, .text p {
    font-size: 18px;
  }

  .sh6 {
    font-size: 52px;
  }
  
  .sh3 {
    font-size: 28px;
  }

}

@media screen and (max-width: 479px) {
  .sh0 {
    font-size: 44px;
  }
}

.shopify-policy__container {
  max-width: 95ch;
  padding-top: 30px;
  padding-bottom: 30px;
}