@import url('marca.css?v=4');

button,
a {
    -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible {
    outline: 3px solid var(--terracotta);
    outline-offset: 4px;
}

.site-header {
    position: relative;
    z-index: 5;
}

.brand,
.cart-link,
.main-nav a {
    transition: color .2s ease, opacity .2s ease;
}

.brand:hover {
    color: var(--terracotta);
}

.brand:hover .brand-mark {
    background: var(--cacao);
}

.brand-mark {
    transition: background .2s ease;
}

.main-nav a {
    position: relative;
}

.main-nav a::after {
    background: var(--terracotta);
    bottom: -7px;
    content: '';
    height: 1px;
    left: 0;
    position: absolute;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .25s ease;
    width: 100%;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
}

.cart-link {
    align-items: center;
    display: inline-flex;
    min-height: 32px;
}

.hero-copy {
    position: relative;
}

.hero-copy::before {
    color: var(--terracotta);
    content: '01';
    font-size: 10px;
    font-weight: 700;
    left: -34px;
    letter-spacing: .12em;
    position: absolute;
    top: 2px;
}

.button {
    border: 1px solid transparent;
    min-height: 48px;
}

.button span,
.text-link span {
    font-size: 17px;
    line-height: 0;
    transition: transform .2s ease;
}

.button:hover span,
.text-link:hover span {
    transform: translate(3px, -3px);
}

.hero-art {
    isolation: isolate;
}

.hero-art::after {
    border: 1px solid rgba(200, 125, 98, .3);
    border-radius: 50%;
    content: '';
    height: 72%;
    position: absolute;
    right: 0;
    top: 15%;
    transform: rotate(-18deg);
    width: 72%;
    z-index: -1;
}

.intro-grid > p {
    border-left: 1px solid var(--terracotta);
    padding-left: 24px;
}

.section-heading {
    border-bottom: 1px solid var(--line);
    padding-bottom: 22px;
}

.product-card {
    will-change: transform;
}

.quick-add {
    font-family: var(--sans);
    font-weight: 400;
}

.quote {
    border-radius: 24px 24px 0 0;
    overflow: hidden;
}

.quote::before,
.quote::after {
    border: 1px solid rgba(200, 125, 98, .35);
    border-radius: 50%;
    content: '';
    height: 170px;
    position: absolute;
    width: 170px;
}

.quote::before {
    left: -80px;
    top: -70px;
}

.quote::after {
    bottom: -90px;
    right: -60px;
}

.footer-column a {
    min-height: 28px;
}

.footer-bottom span:last-child {
    color: var(--terracotta);
}

@media (max-width: 700px) {
    .hero-copy::before {
        display: none;
    }

    .intro-grid > p {
        padding-left: 16px;
    }

    .quote {
        border-radius: 18px 18px 0 0;
    }
}

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

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}
