:root {
    --color-theme: #7c2529;
    --color-theme-rgb: 124, 37, 41;
    --color-gold: #a89968;
    --color-gold-rgb: 168, 153, 104;
    --color-black: #000000;
    --color-black-rgb: 0, 0, 0;
    --color-white: #ffffff;
    --color-white-rgb: 255, 255, 255;
    --color-red: #ff0000;
    --color-red-rgb: 255, 0, 0;
    --color-gray: #969fa6;
    --color-gray-rgb: 150, 159, 166;
    --color-gray-medium: #b4b4b4;
    --color-gray-medium-rgb: 180, 180, 180;
    --color-gray-light: #e7e7e7;
    --color-gray-light-rgb: 231, 231, 231;
    --color-gray-bright: #f8f8f8;
    --color-gray-bright-rgb: 248, 248, 248;

    --color-body: var(--color-white);
    --color-body-rgb: var(--color-white-rgb);
    --color-body-couple: var(--color-black);
    --color-body-couple-rgb: var(--color-black-rgb);
    --color-border: var(--color-gray-medium);
    --color-error: var(--color-red);

    --filter-theme: brightness(0) invert(13%) sepia(85%) saturate(1530%) hue-rotate(332deg) brightness(108%) contrast(92%);
    --filter-black: brightness(0);
    --filter-white: brightness(0) invert(1);

    --rgb: var(--color-body-rgb);
    --rgb-couple: var(--color-body-couple-rgb);
    --filter: var(--filter-white);

    /* Feb 2025 update fonts */
    --font-body: "PANPURI Neue Sans", "Noto Sans SC", sans-serif;
    --font-heading: "PANPURI Neue", "PANPURI Neue Sans", "Noto Sans SC", sans-serif;
    --font-weight-regular: normal;
    --font-weight-bold: bold;

    --font-size-3xs: 8px;
    --font-size-2xs: 10px;
    --font-size-xs: 12px;
    --font-size-sm: 14px;
    --font-size-md: 16px;
    --font-size-lg: 18px;
    --font-size-xl: 20px;
    --font-size-h2: 24px;
    --font-size-h1: 36px;

    --line-height-xs: 1;
    --line-height-sm: 1.3;
    --line-height-md: 1.6;

    --font-weight-body: var(--font-weight-regular);
    --font-size-body: var(--font-size-md);
    --font-size-body-sub: var(--font-size-sm);
    --line-height-body: var(--line-height-sm);

    --letter-spacing: normal;

    --icon-size: 14px;
    --icon-size-md: 16px;
    --icon-size-lg: 24px;
    --icon-size-xl: 26px;

    --spacing-xl: 90px;
    --spacing-lg: 60px;
    --spacing-md: 35px;
    --spacing-sm: 20px;
    --spacing-xs: 15px;
    --spacing-2xs: 10px;
    --spacing-3xs: 5px;
    --spacing-container: var(--spacing-md);

    --logo-height: 35px;
    --header-nav-height: 110px;
    --header-height: var(--header-nav-height);

    --radius: 0px;
    --opacity: 0.5;
    --opacity-light: 0.2;
    --duration: 0.4s;
    --duration-x2: 0.8s;
    --duration-x3: 1.2s;
    --timing-function: cubic-bezier(0.37, 0, 0.63, 1);
    --cta-shadow: 0 -1px 0px 0px rgba(var(--rgb), var(--opacity)) inset;
}

html.no-touchevents .touchevents-visible { display: none !important;}
html.touchevents .touchevents-hidden { display: none !important;}

/*RESET====================*/
*,
*:before,
*:after {
    box-sizing: border-box;
}
::-webkit-scrollbar {
    width: 0px;
    overflow: hidden;
}
::-moz-selection {
    background: rgba(var(--rgb), 1);
    color: rgba(var(--rgb-couple), 1);
}
::selection {
    background: rgba(var(--rgb), 1);
    color: rgba(var(--rgb-couple), 1);
}

article,
aside,
figcaption,
figure,
picture,
footer,
header,
hgroup,
main,
nav,
section {
    display: block;
    margin: 0;
}
html {
    font-family: sans-serif;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body {
    margin: 0;
    position: relative;
    min-height: 100vh;
    overflow-x: hidden;
    background: var(--color-body-couple);
    color: var(--color-body);
    -webkit-animation: pageAnimation var(--duration-x2) var(--timing-function);
    animation: pageAnimation var(--duration-x2) var(--timing-function);
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    will-change: opacity;
}
@-webkit-keyframes pageAnimation {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes pageAnimation {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
}
p {
    margin: 0;
}
address {
    font-style: normal;
}
ul,
ol {
    list-style: none;
}
ul,
ol,
li {
    margin: 0;
    padding: 0;
}
a {
    color: inherit;
}
a,
a:hover,
a:focus {
    outline: 0;
    text-decoration: none;
    box-shadow: none;
}
a[href^="tel"] {
    white-space: nowrap;
}
a[href^="mailto"] {
    word-break: break-word;
}
a,
button,
[role="button"] {
    cursor: pointer;
}
button,
input,
textarea,
select {
    outline: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    box-shadow: none;
    border-radius: 0;
    border: 0;
    background: none;
    padding: 0;
    margin: 0;
    min-width: 0;
    font: inherit;
    line-height: normal;
    text-transform: inherit;
    text-align: inherit;
    letter-spacing: inherit;
    text-indent: inherit;
    color: inherit;
}
fieldset {
    border: 0 !important;
    background: none !important;
    margin: 0 !important;
    padding: 0 !important;
}
img {
    border: 0;
    outline: 0;
    height: auto;
    width: auto;
    max-width: 100%;
    vertical-align: middle;
}
table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}
th,
td {
    padding: 0;
    font-weight: inherit;
}
hr {
    margin: 0;
    border: 0;
    display: block;
    width: 100%;
    height: 1px;
    background: rgba(var(--rgb), var(--opacity-light));
}
iframe {
    border: 0;
}
[tabindex="-1"]:focus {
    outline: 0 !important;
}
script {
    margin: 0 !important;
}

/*TEXT====================*/
body {
    font-family: var(--font-body);
    font-weight: var(--font-weight-regular);
    font-size: var(--font-size-body);
    line-height: var(--line-height-body);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
strong {
    font-weight: var(--font-weight-bold);
}

.font-body {
    font-size: var(--font-body) !important;
}
.font-heading {
    font-family: var(--font-heading) !important;
}

.weight-regular {
    font-weight: var(--font-weight-regular) !important;
}
.weight-bold {
    font-weight: var(--font-weight-bold) !important;
}

.size-h1 {
    font-size: var(--font-size-h1) !important;
}
.size-h2 {
    font-size: var(--font-size-h2) !important;
}
.size-xl {
    font-size: var(--font-size-xl) !important;
}
.size-lg {
    font-size: var(--font-size-lg) !important;
}
.size-md {
    font-size: var(--font-size-md) !important;
}
.size-sm {
    font-size: var(--font-size-sm) !important;
}
.size-xs {
    font-size: var(--font-size-xs) !important;
}
.size-2xs {
    font-size: var(--font-size-2xs) !important;
}
.size-3xs {
    font-size: var(--font-size-3xs) !important;
}
.size-body {
    font-size: var(--font-size-body) !important;
    line-height: var(--line-height-body);
}

.inline-block {
    display: inline-block;
}

/*TRANSITION====================*/
img,
a,
button,
[role="button"],
.explore,
.container,
#footer,
#header,
.object,
.object-fit {
    transition: var(--duration) var(--timing-function);
}

/*CTAs====================*/
.link-overlay {
    font-size: 0;
    opacity: 0;
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
}

.explore {
    display: inline-flex;
    align-items: center;
    text-align: center;
    font-family: var(--font-body);
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-body);
    line-height: var(--line-height-xs);
    text-transform: uppercase;
    padding: var(--spacing-3xs);
    padding-top: 0;
    background-image: linear-gradient(120deg, rgba(var(--rgb), var(--opacity)) 0%, rgba(var(--rgb), var(--opacity)) 100%);
    background-repeat: no-repeat;
    background-size: 100% 1px;
    background-position: center bottom;
    background-origin: border-box;
    color: rgba(var(--rgb), 1) !important;
    opacity: 1 !important;
}
.explore:hover {
    background-size: 65% 1px;
}

/*GENERAL====================*/
.container {
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--spacing-container);
    padding-right: var(--spacing-container);
}
.ic,
.ic-name {
    display: inline-block;
}
.ic > img {
    display: inline-block;
    vertical-align: top;
    width: auto;
    height: 1em;
}
*[class*="ic-"] + *[class*="ic-"] {
    margin-left: var(--spacing-3xs);
}

.brand {
    display: inline-block;
    vertical-align: top;
    line-height: 1;
}
.brand *[class*="logo"] {
    display: block;
    width: auto;
}
.brand .logo {
    height: var(--logo-height);
}

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

.object,
.object-fit {
    display: block;
    overflow: hidden;
    position: relative;
    opacity: 1 !important;
}
.object > img,
.object > video,
.object > iframe {
    display: block;
    width: 100%;
    margin: auto;
}
.object-fit > img,
.object-fit > video,
.object-fit > iframe {
    display: block;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
.object-fit > img,
.object-fit > video {
    width: calc(100% + 2px);
    height: calc(100% + 2px);
}
.object-fit:before {
    content: "";
    display: block;
    width: 100%;
}
.object-overlay {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

/*PLUGIN:SLIDER====================*/
.swiper {
    width: 100%;
}
.swiper-wrapper {
    will-change: transform;
}
.swiper-slide {
    width: 100% !important;
}

/*PAGE====================*/
#page {
    position: relative;
    height: 100dvh;
    display: block;
    grid-template-rows: 1fr;
    grid-template-columns: 100%;
}

/*HEADER====================*/
#header {
    width: 100%;
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.header-nav {
    display: grid;
    align-items: center;
    width: 100%;
    height: var(--header-nav-height);
    padding: 0 var(--spacing-container);
    transition: var(--duration) var(--timing-function);
}
.header-nav :is(a, button) {
    pointer-events: auto;
}

.header-brand,
.header-menu {
    transition: opacity var(--duration) var(--timing-function);
}

.header-brand .logo {
    -webkit-filter: var(--filter);
    filter: var(--filter);
}

.header-menu .menu {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    grid-gap: var(--spacing-2xs) var(--spacing-sm);
}
.header-menu .menu a {
    display: inline-flex;
    align-items: center;
    grid-gap: var(--spacing-3xs);
    vertical-align: top;
}

/*MAIN====================*/
.the-art-of-slowness-section {
    position: relative;
    text-align: center;
    width: 100%;
    height: 100%;
    overflow: hidden;
    overflow-y: auto;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
}

#main > .the-art-of-slowness-section {
    background: var(--color-black);
    color: var(--color-white);
    opacity: 0;
    visibility: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.the-art-of-slowness-background {
    width: 100%;
    height: 100%;
    display: block;
    position: fixed;
    z-index: -1;
    top: 0;
    left: 0;
    pointer-events: none;
}
.the-art-of-slowness-background > *:is(img, video) {
    width: 100%;
    height: 100%;
    display: block;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    opacity: 0.7;
}

.the-art-of-slowness-container {
    min-height: 100dvh;
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: 1fr auto 1fr;
    grid-gap: var(--spacing-md) var(--spacing-container);
    padding: var(--spacing-lg) var(--spacing-container);
    position: relative;
    z-index: 1;
}

.the-art-of-slowness-cover .object-fit:before {
    padding-bottom: 75%;
}

.the-art-of-slowness-body {
    grid-row: 2;
    align-self: center;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: relative;
    z-index: 1;
}

.the-art-of-slowness-title {
    font-family: var(--font-heading);
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-h1);
    text-transform: none;
}

.the-art-of-slowness-content {
    width: 100%;
    max-width: 526px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
}

.the-art-of-slowness-footer {
    grid-row: 3;
    align-self: flex-end;
    font-size: var(--font-size-body-sub);
}

.the-art-of-slowness-circle {
    /* width: 100%;
    max-width: 466.67px; */
    width: 466.67px;
    min-width: 32.4076388889vw;
    max-width: 80vw;
    aspect-ratio: 1 / 1;
    position: fixed;
    z-index: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transform-origin: center center;
    pointer-events: none;
}
.the-art-of-slowness-circle svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
    -webkit-filter: blur(0.5px);
    filter: blur(0.5px);
}
.the-art-of-slowness-circle .bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.2);
    stroke-width: 0.5;
}
.the-art-of-slowness-circle .progress {
    opacity: 0;
    fill: none;
    stroke: white;
    stroke-width: 0.5;
    stroke-linecap: butt;
    stroke-dasharray: 283;
    stroke-dashoffset: 283;
    transition: stroke-dashoffset 1s ease-out, opacity 0.3s ease;
}

.the-art-of-slowness-columns {
    width: 952px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    grid-gap: var(--spacing-container);
}
.the-art-of-slowness-columns > * {
    margin: 0;
    width: 100%;
}
.the-art-of-slowness-columns > .the-art-of-slowness-column--content {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}
.the-art-of-slowness-columns > .the-art-of-slowness-column--content > *:not(:first-child) {
    margin-top: var(--spacing-2xs);
}
.the-art-of-slowness-columns > .the-art-of-slowness-column--content > * {
    margin: 0;
    width: 100%;
    max-width: 100%;
}
.the-art-of-slowness-columns > .the-art-of-slowness-column--content:not(:only-child) {
    margin-left: auto;
    margin-right: 0;
}

.the-art-of-slowness-product {
    position: relative;
}
.the-art-of-slowness-product > *:not(.link-overlay):not(:last-child) {
    margin-bottom: var(--spacing-sm);
}
.the-art-of-slowness-product .caption {
    text-align: center;
}
.the-art-of-slowness-product .caption .entry-title {
    font-family: var(--font-heading);
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-body);
    text-transform: none;
}
.the-art-of-slowness-product .cover .object-fit:before {
    padding-bottom: 100%;
}

.the-art-of-slowness-products {
    margin-left: calc(var(--spacing-sm)*-1);
    margin-right: calc(var(--spacing-sm)*-1);
}
.the-art-of-slowness-products:not(:first-child) {
    margin-top: calc(var(--spacing-lg) - var(--spacing-2xs));
}
.the-art-of-slowness-products:not(:last-child) {
    margin-bottom: calc(var(--spacing-lg) - var(--spacing-2xs));
}
.the-art-of-slowness-products .swiper-slide {
    padding-left: var(--spacing-sm);
    padding-right: var(--spacing-sm);
    width: calc(300px + var(--spacing-sm)*2) !important;
    max-width: 64.1025641026vw !important;
}

*[data-the-art-of-slowness="breathing-exercise"]:not(.round2) > .the-art-of-slowness-background.id2,
*[data-the-art-of-slowness="breathing-exercise"].round2 > .the-art-of-slowness-background.id1 {
    opacity: 0;
    pointer-events: none;
}

.the-art-of-slowness-group > *:not(:first-child),
.the-art-of-slowness-body > *:not(:first-child),
.the-art-of-slowness-content > *:not(:first-child) {
    margin-top: var(--spacing-sm);
}
.the-art-of-slowness-group > :is(.the-art-of-slowness-cover, .the-art-of-slowness-products):not(:first-child),
.the-art-of-slowness-group > :is(.the-art-of-slowness-cover, .the-art-of-slowness-products) + *:not(:first-child) {
    margin-top: var(--spacing-md);
}
.the-art-of-slowness-group + .the-art-of-slowness-group {
    margin-top: calc(var(--spacing-lg)*2);
}

/*ABOUT====================*/
#about {
    position: fixed;
    z-index: 99;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.44);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    opacity: 0;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    transition: opacity var(--duration) var(--timing-function);
}
#about.active {
    opacity: 1;
    pointer-events: auto;
}
#about .the-art-of-slowness-content {
    max-width: 680px;
}
#about .the-art-of-slowness-container {
    grid-template-rows: 1fr auto;
    grid-row-gap: var(--spacing-lg);
    padding-top: var(--header-height);
}
#about .the-art-of-slowness-container > .the-art-of-slowness-body {
    grid-row: 1;
}
#about .the-art-of-slowness-container > .the-art-of-slowness-footer {
    grid-row: 2;
}
#about .the-art-of-slowness-container [data-about="overview"] {
    width: 100%;
    max-width: 812px;
    margin-left: auto;
    margin-right: auto;
}
html.about-active #header :is(.header-brand, .header-menu.left) {
    opacity: 0;
    pointer-events: none;
}

/*MEDIA QUERIES====================*/
@media (min-width: 992px) {
    .header-nav {
        grid-template-columns: 1fr auto 1fr;
    }
    .header-nav > .header-brand {
        grid-row: 1;
        grid-column: 2;
        justify-self: center;
    }
    .header-nav > .header-menu.left {
        grid-row: 1;
        grid-column: 1;
        justify-self: flex-start;
    }
    .header-nav > .header-menu.right {
        grid-row: 1;
        grid-column: 3;
        justify-self: flex-end;
    }
    .the-art-of-slowness-columns {
        flex-direction: row;
    }
    .the-art-of-slowness-columns > .the-art-of-slowness-column--cover {
        width: 49.5798319328%;
    }
    .the-art-of-slowness-columns > .the-art-of-slowness-column--content {
        width: 37.8151260504%;
        justify-content: flex-start;
        text-align: left;
    }
}

@media (min-width: 1280px) {
    :root {
        --spacing-container: var(--spacing-lg);
    }
}

@media (max-width: 991px) {
    :root {
        --logo-height: 30px;
        --header-nav-height: 90px;
    }

    .header-nav {
        grid-template-columns: auto auto;
        grid-template-rows: 1fr auto;
    }
    .header-nav > .header-brand {
        grid-row: 2;
        grid-column: 1 / span 2;
        justify-self: center;
        align-self: center;
    }
    .header-nav > .header-menu.left {
        grid-row: 1;
        grid-column: 1;
        justify-self: flex-start;
    }
    .header-nav > .header-menu.right {
        grid-row: 1;
        grid-column: 2;
        justify-self: flex-end;
    }

    .the-art-of-slowness-columns {
        width: 342px;
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    :root {
        --spacing-container: var(--spacing-xs);
    }
}