/** Shopify CDN: Minification failed

Line 232:3 Expected "}" to go with "{"

**/
:root {
  /* --- BRAND COLORS --- */
  --light: #ffffff;   /* White */
  --dark: #000000;    /* Black */
  --brand: #5bc6cc;    /* Blue */




/* =========================================================
   GLOBAL TYPOGRAPHY UTILITY CLASSES
========================================================= */


.text-huge {
  /* This applies your newly imported EB Garamond font */
 font-family: var(--font-h1--family);
  font-size: clamp(3rem, 10vw, 9.5rem); 
  font-weight: 400;
  line-height: 0.9; 
  letter-spacing: -0.02em; 
  margin: 0;
  text-transform: uppercase;
}

.text-display {
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
}

.text-large {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.4;
}

.text-normal {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4;
}

.text-small {
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.3;
}

.text-smaller {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}



/* =========================================================
     OSMO BUTTON GLOBALS & VARIABLES
     (You can move this :root block to your custom.css) 
  ========================================================= */
  :root {
    /* Mapping Osmo colors to your brand variables */
    --button-025-color: var(--light, #fff);
    --button-025-color-background: var(--brand);
    --button-025-hover-color: var(--light, #fff);
    --button-025-hover-color-background: var(--dark);
    
    /* Button sizing and spacing */
    --button-025-padding: 14px 36px;
    --button-025-border: 0;
    --button-025-border-radius: 100px;
    --button-025-hover-border-radius: 100px;
    
    /* Interactions */
    --button-025-color-focus: var(--brand);
    --button-025-focus-inset: -0.125em;
    --button-025-click-scale: 0.955 0.925;
    
    /* Easings */
    --button-025-ease-click: cubic-bezier(0.4, 0, 0.2, 1);
    --button-025-ease-hover: cubic-bezier(0.32, 0.72, 0, 1);
    --button-025-ease-focus: cubic-bezier(0.32, 0.72, 0, 1);
  }

  /* =========================================================
     OSMO BUTTON STRUCTURE
     (You can move this entire block to your custom.css) 
  ========================================================= */
  .button-025 {
    -webkit-user-select: none;
    user-select: none;
    background-color: #0000;
    outline-style: none;
    padding: 0;
    line-height: 1;
    text-decoration: none;
    display: inline-grid;
    position: relative;
    -webkit-tap-highlight-color: transparent;
    transition: scale 0.15s var(--button-025-ease-click);
    
    /* Applied your custom typography variables */
    font-size: var(--font-size-small);
    font-weight: var(--font-weight-medium);
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }

  .button-025::after {
    content: '';
    display: block;
    position: absolute;
    inset: var(--button-025-focus-inset);
    border-radius: var(--button-025-border-radius);
    transition: box-shadow 0.3s var(--button-025-ease-focus);
    pointer-events: none;
    z-index: 1;
  }

  .button-025:is(:focus-visible)::after {
    box-shadow: 0 0 0 0.125em var(--button-025-color-focus);
  }

  .button-025:active {
    scale: var(--button-025-click-scale);
  }

  .button-025__inner {
    pointer-events: none;
    border-radius: var(--button-025-border-radius);
    grid-area: 1 / 1;
    width: 100%;
    height: 100%;
    display: grid;
    overflow: clip;
  }

  .button-025__default {
    width: 100%;
    height: 100%;
    color: var(--button-025-color);
    grid-area: 1 / 1;
    display: grid;
  }

  .button-025__default-bg {
    background-color: var(--button-025-color-background);
    border: var(--button-025-border);
    border-radius: var(--button-025-border-radius);
    grid-area: 1 / 1;
    width: 100%;
    height: 100%;
    padding: 0;
  }

  .button-025__default-inner {
    grid-column-gap: .125em;
    grid-row-gap: .125em;
    width: 100%;
    height: 100%;
    padding: var(--button-025-padding);
    grid-area: 1 / 1;
    justify-content: center;
    align-items: center;
    display: flex;
    transition: translate 0.45s var(--button-025-ease-hover), scale 0.45s var(--button-025-ease-hover);
  }

  .button-025__hover {
    z-index: 1;
    width: 100%;
    height: 100%;
    color: var(--button-025-hover-color);
    grid-area: 1 / 1;
    display: grid;
    translate: calc((100% + 1px) * -1) 0 0;
    transition: translate 0.45s var(--button-025-ease-hover);
  }

  .button-025__hover-bg {
    background-color: var(--button-025-hover-color-background);
    border-radius: var(--button-025-hover-border-radius);
    grid-area: 1 / 1;
    width: 100%;
    height: 100%;
    padding: 0;
  }

  .button-025__hover-inner {
    grid-column-gap: .125em;
    grid-row-gap: .125em;
    width: 100%;
    height: 100%;
    padding: var(--button-025-padding);
    grid-area: 1 / 1;
    justify-content: center;
    align-items: center;
    display: flex;
    translate: -1em 0 0;
    transition: translate 0.45s var(--button-025-ease-hover);
  }

  @media (hover: hover) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
    .button-025:is(:hover, :focus-visible) .button-025__default-inner,
    [data-hover]:is(:hover, :focus-visible) .button-025 .button-025__default-inner {
      translate: 1em 0 0;
      scale: 0.85;
      transition: translate 0.95s var(--button-025-ease-hover), scale 0.95s var(--button-025-ease-hover);
    }

    .button-025:is(:hover, :focus-visible) .button-025__hover,
    [data-hover]:is(:hover, :focus-visible) .button-025 .button-025__hover {
      translate: 0 0 0;
      transition-delay: 0.05s;
    }

    .button-025:is(:hover, :focus-visible) .button-025__hover-inner,
    [data-hover]:is(:hover, :focus-visible) .button-025 .button-025__hover-inner {
      translate: 0 0 0;
      transition-delay: 0.065s;
    }
  }