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

:root {
    color-scheme: light;
    --ink: #23191c;
    --muted: #69575d;
    --soft: #8d7c81;
    --paper: #fffdfb;
    --white: #ffffff;
    --blush: #fbe2e6;
    --blush-strong: #c66477;
    --merlot: #8c1b2d;
    --merlot-deep: #5c0f1c;
    --gold: #c19a55;
    --sage: #799c88;
    --line: rgba(123, 45, 78, 0.16);
    --shadow: 0 18px 45px rgba(55, 28, 38, 0.12);
    --shadow-soft: 0 10px 26px rgba(55, 28, 38, 0.08);
    --glass-bg: rgba(255, 255, 255, 0.17);
    --glass-bg-strong: rgba(255, 255, 255, 0.31);
    --glass-line: rgba(255, 255, 255, 0.35);
    --glass-shadow: 0 18px 42px rgba(54, 20, 36, 0.13), inset 0 1px 0 rgba(255, 255, 255, 0.43);
    --glass-glow: 0 0 34px rgba(137, 220, 218, 0.18);
    --radius: 8px;
    --radius-sm: 4px;
    --header-h: 76px;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    position: relative;
    isolation: isolate;
    background:
        linear-gradient(180deg, rgba(255, 253, 251, 0.92), rgba(249, 238, 241, 0.9) 48%, rgba(255, 253, 251, 0.94)),
        var(--paper);
    color: var(--muted);
    font-family: "Quicksand", system-ui, sans-serif;
    line-height: 1.65;
    overflow-x: hidden;
}

body::before,
body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
}

body::before {
    z-index: -2;
    background:
        linear-gradient(120deg, rgba(255, 253, 251, 0.68), rgba(248, 231, 236, 0.74)),
        url("optimized/unsplash/cake-flowers.jpg") center 20% / cover no-repeat;
    filter: blur(46px) saturate(1.08);
    transform: scale(1.08);
    opacity: 0.24;
}

body::after {
    z-index: -1;
    background:
        radial-gradient(circle at 16% 10%, rgba(215, 131, 154, 0.12), transparent 28%),
        radial-gradient(circle at 82% 22%, rgba(193, 154, 85, 0.1), transparent 30%),
        linear-gradient(180deg, rgba(255, 253, 251, 0.66), rgba(255, 253, 251, 0.9));
}

body.menu-open {
    overflow: hidden;
}

img,
video {
    max-width: 100%;
    display: block;
    -webkit-user-drag: none;
    user-select: none;
}

a {
    color: inherit;
}

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

:focus-visible {
    outline: 3px solid rgba(193, 154, 85, 0.72);
    outline-offset: 3px;
}

.skip-link {
    position: fixed;
    left: 16px;
    top: 12px;
    z-index: 1000;
    transform: translateY(-140%);
    background: var(--merlot-deep);
    color: #fff;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    min-height: var(--header-h);
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 12px 36px;
    background: rgba(255, 253, 251, 0.58);
    border-bottom: 1px solid rgba(255, 255, 255, 0.46);
    backdrop-filter: blur(34px) saturate(1.45);
    -webkit-backdrop-filter: blur(34px) saturate(1.45);
    transition: box-shadow 180ms ease, min-height 180ms ease;
}

.site-header.is-scrolled {
    min-height: 64px;
    box-shadow: var(--shadow-soft);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--merlot-deep);
    text-decoration: none;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-weight: 700;
    font-size: 1.42rem;
}

.brand img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.site-nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 18px;
}

.site-nav a,
.header-cta {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: var(--muted);
    font-weight: 700;
    font-size: 0.93rem;
    border-bottom: 2px solid transparent;
}

.site-nav a.active,
.site-nav a:hover {
    color: var(--merlot);
    border-bottom-color: var(--gold);
}

.header-cta {
    padding: 0 16px;
    border: 1px solid rgba(123, 45, 78, 0.18);
    border-radius: 999px;
    color: var(--merlot);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: var(--glass-shadow), var(--glass-glow);
    backdrop-filter: blur(30px) saturate(1.45);
    -webkit-backdrop-filter: blur(30px) saturate(1.45);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--glass-bg-strong);
    box-shadow: var(--glass-shadow);
    backdrop-filter: blur(30px) saturate(1.45);
    -webkit-backdrop-filter: blur(30px) saturate(1.45);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    margin-left: auto;
}

.menu-toggle span {
    width: 20px;
    height: 2px;
    background: var(--merlot);
}

.hero {
    min-height: calc(100svh - 92px);
    display: flex;
    align-items: center;
    padding: 116px 36px 92px;
    color: #fff;
    position: relative;
    isolation: isolate;
    overflow: clip;
    background: #23191c;
}

.hero-media,
.hero-shade {
    position: absolute;
    inset: 0;
}

.hero-media {
    z-index: 0;
}

.hero-media-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 62%;
    filter: saturate(1.01) contrast(1.01);
    transform: scale(1.005);
}

.hero-shade {
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(31, 16, 22, 0.78), rgba(31, 16, 22, 0.4) 44%, rgba(31, 16, 22, 0.08)),
        linear-gradient(180deg, rgba(31, 16, 22, 0.02), rgba(31, 16, 22, 0.46));
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 90px;
    background: linear-gradient(180deg, rgba(255, 253, 251, 0), var(--paper));
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    width: min(760px, 100%);
    position: relative;
    z-index: 2;
}

.hero h1,
.section-header h2,
.sample-copy h2,
.split-copy h2,
.final-cta h2,
.detail-copy h1 {
    margin: 0;
    color: var(--merlot-deep);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-weight: 600;
    line-height: 1.02;
    text-wrap: balance;
}

.hero h1 {
    color: #fff;
    font-size: 4.55rem;
    max-width: 720px;
}

.hero p {
    max-width: 560px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.08rem;
}

.hero-actions,
.detail-actions,
.center-action {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.btn {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid var(--glass-line);
    text-decoration: none;
    font-weight: 800;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    background: var(--glass-bg);
    box-shadow: var(--glass-shadow), var(--glass-glow);
    backdrop-filter: blur(34px) saturate(1.52);
    -webkit-backdrop-filter: blur(34px) saturate(1.52);
    transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 220ms ease, background 220ms ease, border-color 220ms ease;
}

.btn::before {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    background:
        radial-gradient(circle at 18% 26%, rgba(137, 220, 218, 0.24), transparent 28%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0.06) 38%, rgba(255, 255, 255, 0.17) 100%);
    opacity: 0.64;
    pointer-events: none;
}

.btn::after {
    content: "";
    position: absolute;
    top: -70%;
    left: -35%;
    width: 48%;
    height: 240%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.36), transparent);
    transform: rotate(24deg) translateX(-120%);
    transition: transform 420ms ease;
    pointer-events: none;
}

.btn > *,
.btn {
    z-index: 0;
}

.btn:hover {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 24px 54px rgba(54, 20, 36, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.52), 0 0 44px rgba(137, 220, 218, 0.24);
}

.btn:hover::after {
    transform: rotate(24deg) translateX(360%);
}

.btn-primary {
    background: linear-gradient(135deg, rgba(123, 45, 78, 0.6), rgba(123, 45, 78, 0.37));
    color: #fff;
    border-color: rgba(255, 255, 255, 0.31);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.35);
    color: var(--merlot);
    border-color: rgba(123, 45, 78, 0.18);
}

.btn-ghost {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.37);
    background: rgba(255, 255, 255, 0.12);
}

.btn-light {
    background: rgba(255, 255, 255, 0.54);
    color: var(--merlot);
}

.btn-small {
    min-height: 40px;
    padding: 0 14px;
    font-size: 0.9rem;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 10px;
    border: 1px solid rgba(193, 154, 85, 0.36);
    border-radius: var(--radius-sm);
    color: var(--gold);
    background: rgba(193, 154, 85, 0.08);
    font-weight: 800;
    font-size: 0.83rem;
}

.eyebrow-on-dark {
    color: #f5d999;
    border-color: rgba(245, 217, 153, 0.4);
    background: rgba(0, 0, 0, 0.16);
}

.trust-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--line);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.trust-strip div {
    background: var(--white);
    padding: 24px 30px;
}

.trust-strip strong,
.proof-grid strong {
    display: block;
    color: var(--merlot-deep);
}

.trust-strip span,
.proof-grid span {
    display: block;
    margin-top: 4px;
    color: var(--soft);
}

.section,
.category-sample,
.product-detail-section {
    padding: 92px 36px;
}

.section-compact {
    padding-top: 58px;
    padding-bottom: 58px;
}

.section-muted {
    background: rgba(247, 237, 240, 0.74);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.section-dark {
    background: var(--merlot-deep);
    color: rgba(255, 255, 255, 0.78);
}

.section-dark .section-header h2,
.section-dark .section-header p,
.section-dark .proof-grid strong {
    color: #fff;
}

.section-dark .proof-grid span {
    color: rgba(255, 255, 255, 0.72);
}

.phrase-rail {
    padding: 18px 36px 0;
    background: transparent;
}

.phrase-rail__track {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    width: min(1180px, 100%);
    margin: 0 auto;
    color: var(--soft);
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.phrase-rail__track span {
    color: rgba(193, 154, 85, 0.72);
    font-weight: 500;
}

.news-strip {
    width: min(1180px, calc(100% - 72px));
    margin: 34px auto 0;
    display: grid;
    grid-template-columns: 0.78fr 1.22fr;
    gap: 22px;
    align-items: stretch;
}

.news-strip__intro,
.news-card {
    background: rgba(255, 255, 255, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.41);
    border-radius: var(--radius);
    box-shadow: var(--glass-shadow);
    backdrop-filter: blur(38px) saturate(1.42);
    -webkit-backdrop-filter: blur(38px) saturate(1.42);
}

.news-strip__intro {
    padding: 26px;
}

.news-strip__intro img {
    width: 118px;
    margin-bottom: 20px;
}

.news-strip__intro h2 {
    margin: 14px 0 0;
    color: var(--merlot-deep);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 2.5rem;
    line-height: 1;
}

.news-strip__intro p {
    margin: 14px 0 0;
    color: var(--soft);
}

.news-strip__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.news-card {
    min-height: 228px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    transform: translateY(0) scale(1);
    transition: transform 260ms cubic-bezier(0.16, 1, 0.3, 1), border-color 260ms ease, background 260ms ease, box-shadow 260ms ease;
}

.news-card:hover {
    transform: translateY(-4px) scale(1.01);
    border-color: rgba(255, 255, 255, 0.68);
    background: rgba(255, 255, 255, 0.51);
    box-shadow: 0 24px 56px rgba(54, 20, 36, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 0 44px rgba(137, 220, 218, 0.14);
}

.news-card span {
    color: var(--gold);
    font-weight: 900;
    font-size: 0.82rem;
}

.news-card h3 {
    margin: 10px 0 0;
    color: var(--merlot-deep);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.52rem;
    line-height: 1.02;
}

.news-card p {
    margin: 12px 0 0;
    color: var(--soft);
    font-size: 0.9rem;
}

.news-card .text-link {
    margin-top: auto;
}

.new-products-section {
    margin-top: 34px;
}

.apple-scroll-story {
    min-height: 330svh;
    background:
        radial-gradient(circle at 50% 0%, rgba(215, 131, 154, 0.22), rgba(0, 0, 0, 0) 34%),
        #171113;
    color: #fff;
}

.apple-story__sticky {
    min-height: 100svh;
    height: 100svh;
    position: sticky;
    top: 0;
    overflow: hidden;
    isolation: isolate;
    display: grid;
    place-items: center;
}

.apple-story__logo {
    position: absolute;
    z-index: 4;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: 86px;
    height: 86px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.62);
    display: grid;
    place-items: center;
    box-shadow: var(--glass-shadow);
    border: 1px solid rgba(255, 255, 255, 0.52);
    backdrop-filter: blur(18px) saturate(1.3);
    -webkit-backdrop-filter: blur(18px) saturate(1.3);
}

.apple-story__logo img {
    width: 68px;
    height: 68px;
    object-fit: contain;
}

.apple-scene {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    opacity: 0;
    transform: scale(0.98);
    will-change: transform, opacity;
}

.apple-scene.is-active {
    opacity: 1;
}

.apple-scene__media {
    position: absolute;
    inset: 0;
}

.apple-scene__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 34%, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0) 34%),
        linear-gradient(180deg, rgba(19, 13, 15, 0.1), rgba(19, 13, 15, 0.62) 56%, rgba(19, 13, 15, 0.9));
}

.apple-scene__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.apple-scene__copy {
    position: relative;
    z-index: 2;
    width: min(760px, calc(100% - 44px));
    text-align: center;
    min-height: 300px;
    display: grid;
    align-content: center;
    padding: 104px 28px 34px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04));
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(14px) saturate(1.2);
    -webkit-backdrop-filter: blur(14px) saturate(1.2);
}

.apple-scene__copy span {
    color: #f5d999;
    font-weight: 900;
}

.apple-scene__copy h3 {
    margin: 12px 0 0;
    color: #fff;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 4rem;
    line-height: 0.94;
    text-wrap: balance;
}

.apple-scene__copy p {
    max-width: 560px;
    margin: 16px auto 0;
    color: rgba(255, 255, 255, 0.82);
}

.gratitude-section {
    background: rgba(255, 250, 245, 0.68);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.gratitude-carousel {
    width: min(980px, 100%);
    min-height: 390px;
    margin: 0 auto;
    position: relative;
    perspective: 900px;
}

.gratitude-card {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
    align-items: center;
    gap: 26px;
    padding: 34px;
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid rgba(255, 255, 255, 0.52);
    border-radius: var(--radius);
    box-shadow: var(--glass-shadow);
    backdrop-filter: blur(22px) saturate(1.28);
    -webkit-backdrop-filter: blur(22px) saturate(1.28);
    text-align: left;
    opacity: 0;
    transform: rotateY(18deg) translateX(36px) scale(0.94);
    transition: opacity 520ms cubic-bezier(0.16, 1, 0.3, 1), transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.gratitude-card.is-active {
    opacity: 1;
    transform: rotateY(0deg) translateX(0) scale(1);
}

.gratitude-card p {
    margin: 0;
    color: var(--merlot-deep);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 2.15rem;
    line-height: 1.06;
    text-wrap: balance;
}

.gratitude-person {
    display: grid;
    grid-template-columns: 68px 1fr;
    gap: 14px;
    align-items: center;
    margin-bottom: 22px;
}

.gratitude-person img {
    width: 68px;
    height: 68px;
    object-fit: cover;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.58);
    box-shadow: var(--glass-shadow);
}

.gratitude-person strong {
    display: block;
    color: var(--merlot);
}

.gratitude-person span {
    color: var(--soft);
    font-size: 0.9rem;
}

.gratitude-chat {
    margin: 0;
    padding: 10px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.38);
    border: 1px solid rgba(255, 255, 255, 0.52);
    box-shadow: var(--glass-shadow);
    backdrop-filter: blur(20px) saturate(1.28);
    -webkit-backdrop-filter: blur(20px) saturate(1.28);
}

.gratitude-chat img {
    width: 100%;
    border-radius: var(--radius-sm);
    object-fit: cover;
}

.editorial-stage {
    padding: 64px 36px 76px;
    background:
        linear-gradient(180deg, rgba(255, 253, 251, 0.72) 0%, rgba(246, 234, 238, 0.78) 100%);
    overflow: clip;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.editorial-stage__layout {
    width: min(1180px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
    gap: 28px;
    align-items: start;
}

.editorial-stage__intro {
    position: sticky;
    top: calc(var(--header-h) + 28px);
}

.editorial-stage__intro h2 {
    margin: 10px 0 0;
    color: var(--merlot-deep);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 2.7rem;
    line-height: 0.98;
}

.editorial-stage__intro p {
    max-width: 420px;
    margin: 12px 0 0;
    color: var(--soft);
    font-size: 0.96rem;
}

.editorial-stage__stack {
    display: grid;
    gap: 14px;
}

.editorial-panel {
    position: relative;
    min-height: 46svh;
    overflow: hidden;
    border-radius: var(--radius);
    background: #23191c;
    box-shadow: var(--shadow);
}

.editorial-panel:nth-child(2) {
    min-height: 42svh;
}

.editorial-panel:nth-child(3) {
    min-height: 40svh;
}

.editorial-panel__media,
.editorial-panel__shade,
.editorial-panel__copy {
    position: absolute;
    inset: 0;
}

.editorial-panel__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
}

.editorial-panel__shade {
    background:
        linear-gradient(180deg, rgba(27, 16, 20, 0.04), rgba(27, 16, 20, 0.52) 72%, rgba(27, 16, 20, 0.82)),
        linear-gradient(90deg, rgba(27, 16, 20, 0.46), rgba(27, 16, 20, 0.08));
    z-index: 1;
}

.editorial-panel__copy {
    inset: auto 0 0;
    z-index: 2;
    width: min(430px, 100%);
    padding: 22px;
    color: #fff;
}

.editorial-panel__copy h3 {
    margin: 12px 0 0;
    color: #fff;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 2.42rem;
    line-height: 0.94;
    text-wrap: balance;
}

.editorial-panel__copy p {
    margin: 10px 0 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.94rem;
}

.section-header {
    max-width: 760px;
    margin: 0 auto 34px;
    text-align: center;
}

.section-header h2 {
    font-size: 2.72rem;
    margin-top: 10px;
}

.section-header p {
    margin: 10px auto 0;
    max-width: 560px;
    color: var(--soft);
}

.section-compact .section-header {
    margin-bottom: 24px;
}

.section-compact .section-header h2 {
    font-size: 2.32rem;
}

.section-compact .section-header p {
    font-size: 0.95rem;
}

.category-grid,
.product-grid,
.live-grid,
.activity-grid,
.proof-grid,
.testimonial-grid,
.pulse-grid,
.steps,
.motion-grid,
.service-grid,
.footer-grid,
.contact-cards {
    width: min(1180px, 100%);
    margin: 0 auto;
    display: grid;
    gap: 22px;
}

.category-grid {
    grid-template-columns: repeat(3, 1fr);
}

.category-tile {
    min-height: 420px;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    color: #fff;
    text-decoration: none;
    box-shadow: var(--shadow);
}

.category-tile img {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    object-fit: cover;
    transition: transform 260ms ease;
}

.category-tile::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(35, 25, 28, 0.82));
}

.category-tile span,
.category-tile h3,
.category-tile p {
    position: relative;
    z-index: 1;
    margin-left: 24px;
    margin-right: 24px;
}

.category-tile span {
    display: inline-flex;
    margin-top: 250px;
    color: #f7d894;
    font-weight: 800;
}

.category-tile h3 {
    margin-top: 8px;
    margin-bottom: 4px;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 2rem;
    line-height: 1;
}

.category-tile p {
    margin-top: 0;
    color: rgba(255, 255, 255, 0.78);
}

.category-sample {
    width: min(1180px, calc(100% - 72px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    align-items: center;
    gap: 44px;
    border-top: 1px solid var(--line);
}

.category-sample:nth-of-type(even) {
    grid-template-columns: 1.18fr 0.82fr;
}

.category-sample:nth-of-type(even) .sample-copy {
    order: 2;
}

.sample-copy h2,
.split-copy h2 {
    margin-top: 16px;
    font-size: 2.7rem;
}

.sample-copy p,
.split-copy p {
    color: var(--soft);
    margin: 16px 0 0;
}

.product-grid {
    grid-template-columns: repeat(4, 1fr);
}

.product-grid--compact {
    grid-template-columns: repeat(3, 1fr);
}

.product-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.catalog-grid .product-card {
    box-shadow: 0 8px 22px rgba(55, 28, 38, 0.07);
}

.product-media {
    position: relative;
    display: block;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    padding: 10px;
    background: #fff;
    border-bottom: 1px solid rgba(123, 45, 78, 0.1);
}

.product-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    image-rendering: auto;
    filter: saturate(1.02) contrast(1.02);
    transition: transform 220ms ease, filter 220ms ease;
}

@media (hover: hover) and (pointer: fine) {
    .category-tile:hover img {
        transform: scale(1.025);
    }

    .product-card:hover {
        transform: translateY(-4px);
        border-color: rgba(123, 45, 78, 0.28);
        box-shadow: 0 18px 40px rgba(55, 28, 38, 0.13);
    }

    .product-card:hover .product-media img {
        transform: scale(1.015);
        filter: saturate(1.04) contrast(1.04);
    }
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    display: inline-flex;
    min-height: 30px;
    align-items: center;
    padding: 0 10px;
    background: var(--merlot);
    color: #fff;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 800;
}

.product-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 18px;
}

.product-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.product-category {
    color: var(--gold);
    font-weight: 800;
    font-size: 0.82rem;
}

.product-chip {
    min-height: 24px;
    display: inline-flex;
    align-items: center;
    padding: 0 8px;
    border: 1px solid rgba(193, 154, 85, 0.28);
    border-radius: var(--radius-sm);
    color: var(--merlot);
    background: #fff8e9;
    font-size: 0.72rem;
    font-weight: 900;
    white-space: nowrap;
}

.product-card h3 {
    min-height: 56px;
    margin: 8px 0 0;
    color: var(--merlot-deep);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.45rem;
    line-height: 1.12;
}

.product-card p {
    min-height: 76px;
    margin: 10px 0 0;
    color: var(--soft);
    font-size: 0.94rem;
}

.product-commerce {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    color: var(--muted);
    font-size: 0.84rem;
    font-weight: 700;
}

.product-proof {
    color: #b77b1d;
    font-weight: 900;
}

.product-fulfillment {
    margin-top: 6px;
    color: #1f7a47;
    font-size: 0.84rem;
    font-weight: 800;
}

.product-actions {
    margin-top: auto;
    padding-top: 18px;
}

.product-actions strong,
.product-price {
    display: block;
    color: var(--merlot);
    font-size: 1.35rem;
    line-height: 1.1;
    letter-spacing: 0;
}

.action-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 12px;
}

.text-link {
    color: var(--merlot);
    font-weight: 800;
}

.product-buy {
    background: linear-gradient(135deg, rgba(255, 214, 107, 0.6), rgba(255, 255, 255, 0.26));
    color: var(--ink);
    border-color: rgba(239, 194, 74, 0.39);
}

.product-buy:hover {
    background: linear-gradient(135deg, rgba(247, 201, 79, 0.65), rgba(255, 255, 255, 0.27));
}

.motion-section--compact {
    padding-top: 76px;
    padding-bottom: 76px;
}

.motion-grid {
    grid-template-columns: repeat(4, 1fr);
}

.motion-grid--category {
    width: min(920px, 100%);
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.motion-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.motion-card video {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    background: #23191c;
}

.motion-copy {
    padding: 18px;
}

.motion-copy span,
.service-card span {
    color: var(--gold);
    font-weight: 900;
    font-size: 0.82rem;
}

.motion-copy h3,
.service-card h3 {
    margin: 8px 0 0;
    color: var(--merlot-deep);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.45rem;
    line-height: 1.12;
}

.motion-copy p,
.service-card p {
    margin: 10px 0 0;
    color: var(--soft);
    font-size: 0.94rem;
}

.activity-grid,
.testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
}

.activity-card,
.testimonial-card,
.service-card,
.step,
.detail-panel,
.order-form,
.contact-cards a,
.split-list div,
.proof-grid div,
.faq-item {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.activity-card,
.testimonial-card,
.service-card {
    padding: 28px;
}

.activity-card span {
    color: var(--gold);
    font-weight: 900;
}

.activity-card h3,
.step h3,
.detail-panel h2,
.order-form h2,
.faq-item summary {
    color: var(--merlot-deep);
}

.proof-grid {
    grid-template-columns: repeat(4, 1fr);
}

.service-grid {
    grid-template-columns: repeat(3, 1fr);
}

.proof-grid div {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow: none;
    padding: 18px;
}

.testimonial-card p {
    margin: 0;
    color: var(--muted);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.35rem;
}

.testimonial-card span {
    display: block;
    margin-top: 16px;
    color: var(--soft);
}

.steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.step {
    padding: 18px;
}

.step span {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--merlot);
    color: #fff;
    border-radius: var(--radius-sm);
    font-weight: 900;
}

.step h3 {
    margin: 12px 0 0;
    font-size: 1.05rem;
}

.step p {
    margin: 8px 0 0;
    font-size: 0.9rem;
}

.final-cta {
    padding: 96px 36px;
    background:
        linear-gradient(90deg, rgba(58, 19, 37, 0.92), rgba(58, 19, 37, 0.58)),
        url("optimized/fix_dorados_800.jpg");
    background-size: cover;
    background-position: center;
    color: #fff;
}

.final-cta-small {
    padding: 74px 36px;
}

.final-cta-inner {
    width: min(840px, 100%);
    margin: 0 auto;
    text-align: center;
}

.final-cta h2 {
    color: #fff;
    font-size: 3rem;
    margin-top: 18px;
}

.intro-split,
.contact-layout,
.product-detail {
    width: min(1180px, calc(100% - 72px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
    gap: 34px;
    align-items: start;
}

.split-list {
    display: grid;
    gap: 14px;
}

.split-list div {
    padding: 24px;
}

.split-list strong {
    display: block;
    color: var(--merlot);
    font-size: 1.3rem;
}

.catalog-toolbar {
    width: min(1180px, 100%);
    margin: 0 auto 28px;
    display: flex;
    gap: 18px;
    align-items: end;
    justify-content: space-between;
}

.search-field {
    display: grid;
    gap: 8px;
    flex: 1;
    color: var(--merlot-deep);
    font-weight: 800;
}

.search-field input,
.order-form input,
.order-form textarea,
.order-form select {
    width: 100%;
    min-height: 48px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 10px 12px;
    background: var(--white);
    color: var(--ink);
}

.filter-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.filter-btn {
    min-height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.33);
    color: var(--merlot);
    padding: 0 14px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: var(--glass-shadow);
    backdrop-filter: blur(30px) saturate(1.42);
    -webkit-backdrop-filter: blur(30px) saturate(1.42);
}

.filter-btn.active {
    background: linear-gradient(135deg, rgba(123, 45, 78, 0.6), rgba(123, 45, 78, 0.37));
    color: #fff;
}

.empty-state {
    display: none;
    text-align: center;
    color: var(--soft);
    margin-top: 28px;
}

.empty-state.show {
    display: block;
}

.product-detail-section {
    padding-top: 84px;
}

.detail-gallery {
    margin: 0;
    position: sticky;
    top: 96px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.6);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px) saturate(1.18);
    -webkit-backdrop-filter: blur(18px) saturate(1.18);
}

.detail-gallery img {
    width: 100%;
    aspect-ratio: 1 / 1;
    min-height: min(68svh, 680px);
    padding: 18px;
    object-fit: contain;
    object-position: center;
    filter: saturate(1.02) contrast(1.02);
}

.detail-thumbs {
    display: none;
    grid-template-columns: repeat(6, minmax(54px, 1fr));
    gap: 10px;
    padding: 0 18px 18px;
}

.detail-thumbs.has-thumbs {
    display: grid;
}

.detail-thumb {
    aspect-ratio: 1;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.37);
    padding: 4px;
    cursor: pointer;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.64), 0 8px 18px rgba(55, 28, 38, 0.08);
    backdrop-filter: blur(24px) saturate(1.42);
    -webkit-backdrop-filter: blur(24px) saturate(1.42);
}

.detail-thumb.is-active {
    border-color: var(--merlot);
    box-shadow: 0 0 0 2px rgba(123, 45, 78, 0.12);
}

.detail-thumb img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1;
    padding: 0;
    object-fit: cover;
    border-radius: 3px;
}

.detail-copy h1 {
    margin-top: 10px;
    font-size: 3rem;
}

.detail-price {
    display: block;
    margin-top: 12px;
    color: var(--merlot);
    font-size: 1.7rem;
}

.detail-copy > p {
    color: var(--soft);
    font-size: 1rem;
}

.detail-panel {
    padding: 16px;
    margin-top: 12px;
}

.detail-panel h2 {
    margin: 0 0 10px;
    font-size: 1.1rem;
}

.detail-panel ul {
    margin: 0;
    padding-left: 18px;
}

.contact-layout {
    grid-template-columns: 0.82fr 1.18fr;
}

.ordered-list {
    padding-left: 20px;
    color: var(--soft);
}

.contact-note {
    margin: 18px 0 0;
    color: var(--merlot-deep);
    font-weight: 700;
}

.contact-cards {
    grid-template-columns: 1fr;
    margin-top: 24px;
}

.contact-cards a {
    padding: 18px;
    text-decoration: none;
}

.contact-cards strong,
.contact-cards span {
    display: block;
}

.contact-cards strong {
    color: var(--merlot);
}

.order-form {
    display: grid;
    gap: 16px;
    padding: 28px;
}

.order-form label {
    display: grid;
    gap: 8px;
    color: var(--merlot-deep);
    font-weight: 800;
}

.form-note {
    margin: 0;
    color: var(--soft);
    font-size: 0.9rem;
}

.faq-section {
    width: min(900px, calc(100% - 72px));
    margin: 0 auto;
}

.faq-item {
    padding: 0;
    margin-bottom: 14px;
    overflow: hidden;
}

.faq-item summary {
    min-height: 58px;
    display: flex;
    align-items: center;
    padding: 0 20px;
    cursor: pointer;
    font-weight: 900;
}

.faq-item p {
    margin: 0;
    padding: 0 20px 20px;
    color: var(--soft);
}

.site-footer {
    padding: 70px 36px 96px;
    background: #23191c;
    color: rgba(255, 255, 255, 0.74);
}

.footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
}

.footer-brand img {
    width: 172px;
    height: auto;
    filter: brightness(0) invert(1);
}

.site-footer h2 {
    margin: 0 0 12px;
    color: #fff;
    font-size: 1rem;
}

.site-footer a,
.site-footer p {
    display: block;
    margin: 8px 0;
    color: rgba(255, 255, 255, 0.74);
    text-decoration: none;
}

.footer-bottom {
    width: min(1180px, 100%);
    margin: 40px auto 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.wa-float {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 70;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    border-radius: var(--radius);
    background: #1f9d5a;
    color: #fff;
    text-decoration: none;
    font-weight: 900;
    box-shadow: var(--shadow);
}

.mobile-bar {
    display: none;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 520ms ease, transform 520ms ease, clip-path 620ms ease;
}

.reveal[data-reveal="left"] {
    transform: translateX(18px);
}

.reveal[data-reveal="clip"] {
    clip-path: inset(0 0 16% 0);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
    clip-path: inset(0);
}

.has-gsap .reveal,
.has-gsap .reveal.is-visible {
    opacity: 1;
    transform: none;
    clip-path: inset(0);
}

@media (max-width: 1100px) {
    .site-header {
        padding-inline: 20px;
    }

    .site-nav {
        gap: 12px;
    }

    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .news-strip {
        grid-template-columns: 1fr;
    }

    .editorial-stage__intro h2 {
        font-size: 2.95rem;
    }

    .trust-strip,
    .proof-grid,
    .steps,
    .motion-grid,
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 860px) {
    .site-header {
        flex-wrap: wrap;
    }

    html.js .site-header {
        flex-wrap: nowrap;
    }

    .menu-toggle {
        display: none;
    }

    html.js .menu-toggle {
        display: inline-flex;
    }

    .header-cta {
        display: none;
    }

    .site-nav {
        width: 100%;
        order: 3;
        margin-left: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 10px 12px;
        padding-top: 8px;
    }

    html.js .site-nav {
        position: fixed;
        inset: var(--header-h) 0 auto;
        width: auto;
        order: 0;
        margin-left: auto;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 12px 20px 24px;
        background: rgba(255, 253, 251, 0.72);
        border-bottom: 1px solid rgba(255, 255, 255, 0.58);
        box-shadow: var(--glass-shadow);
        backdrop-filter: blur(24px) saturate(1.35);
        -webkit-backdrop-filter: blur(24px) saturate(1.35);
    }

    html.js .site-nav.open {
        display: flex;
    }

    html.js .site-nav a {
        border-bottom: 1px solid var(--line);
    }

    .hero {
        min-height: 86svh;
        padding: 92px 22px 72px;
    }

    .hero h1 {
        font-size: 3.25rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .editorial-stage {
        padding: 52px 22px;
    }

    .news-strip {
        width: calc(100% - 44px);
    }

    .news-strip__grid {
        display: flex;
        gap: 12px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding: 2px 2px 14px;
        -webkit-overflow-scrolling: touch;
    }

    .news-card {
        min-width: min(82vw, 330px);
        scroll-snap-align: start;
    }

    .apple-story__sticky {
        height: 100svh;
        min-height: 100svh;
    }

    .apple-story__logo {
        top: 18px;
        width: 74px;
        height: 74px;
    }

    .apple-story__logo img {
        width: 58px;
        height: 58px;
    }

    .apple-scene {
        position: absolute;
        overflow: hidden;
        border-radius: 0;
    }

    .apple-scene__copy h3 {
        font-size: 2.75rem;
    }

    .apple-scene__copy {
        width: min(520px, calc(100% - 28px));
        min-height: 270px;
        padding: 92px 18px 26px;
    }

    .gratitude-carousel {
        min-height: 540px;
    }

    .gratitude-card {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 22px;
        align-content: center;
    }

    .gratitude-card p {
        font-size: 1.85rem;
    }

    .gratitude-person {
        margin-bottom: 12px;
    }

    .editorial-stage__intro {
        position: static;
    }

    .editorial-stage__layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .editorial-stage__stack {
        gap: 12px;
    }

    .editorial-stage__intro h2 {
        font-size: 2.12rem;
    }

    .editorial-stage__intro p {
        font-size: 0.92rem;
        max-width: 100%;
    }

    .editorial-panel,
    .editorial-panel:nth-child(2),
    .editorial-panel:nth-child(3) {
        min-height: clamp(280px, 48svh, 420px);
    }

    .editorial-panel__copy {
        padding: 18px;
        width: 100%;
        max-width: 100%;
    }

    .editorial-panel__copy h3 {
        font-size: 2.1rem;
    }

    .editorial-panel__copy p {
        max-width: 32ch;
    }

    .section,
    .category-sample,
    .product-detail-section {
        padding: 54px 22px;
    }

    .section-compact {
        padding-top: 38px;
        padding-bottom: 38px;
    }

    .section-header h2,
    .sample-copy h2,
    .split-copy h2,
    .final-cta h2 {
        font-size: 2.05rem;
    }

    .section-header {
        margin-bottom: 22px;
    }

    .section-header p {
        font-size: 0.92rem;
    }

    .category-grid,
    .activity-grid,
    .testimonial-grid,
    .service-grid,
    .intro-split,
    .contact-layout,
    .product-detail,
    .category-sample,
    .category-sample:nth-of-type(even) {
        width: 100%;
        grid-template-columns: 1fr;
    }

    .category-sample:nth-of-type(even) .sample-copy {
        order: 0;
    }

    .product-grid,
    .product-grid--compact {
        grid-template-columns: repeat(2, 1fr);
    }

    .catalog-toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .detail-gallery {
        position: static;
    }

    .detail-gallery img {
        min-height: auto;
        aspect-ratio: 4 / 5;
    }
}

@media (max-width: 580px) {
    body {
        padding-bottom: 54px;
    }

    .site-header {
        min-height: 66px;
        padding: 10px 14px;
    }

    .brand span {
        font-size: 1.18rem;
    }

    .hero h1 {
        font-size: 2.65rem;
    }

    .editorial-stage__intro h2,
    .editorial-panel__copy h3 {
        font-size: clamp(1.72rem, 7.4vw, 2rem);
    }

    .phrase-rail__track {
        font-size: 0.78rem;
        gap: 10px;
    }

    .news-strip {
        width: calc(100% - 28px);
        margin-top: 22px;
    }

    .news-strip__intro,
    .news-card {
        padding: 18px;
    }

    .news-card {
        min-width: 84vw;
        min-height: 220px;
    }

    .news-strip__intro h2,
    .apple-scene__copy h3 {
        font-size: clamp(2rem, 9vw, 2.45rem);
    }

    .gratitude-carousel {
        min-height: 570px;
    }

    .apple-scroll-story {
        min-height: 315svh;
    }

    .apple-scene__copy {
        width: calc(100% - 24px);
        min-height: 260px;
        padding: 86px 16px 22px;
    }

    .apple-scene__copy p {
        font-size: 0.95rem;
    }

    .hero-actions,
    .detail-actions,
    .action-row,
    .footer-bottom {
        flex-direction: column;
        align-items: stretch;
    }

    .trust-strip,
    .proof-grid,
    .steps,
    .motion-grid,
    .service-grid,
    .footer-grid,
    .product-grid,
    .product-grid--compact {
        grid-template-columns: 1fr;
    }

    .steps {
        gap: 10px;
    }

    .step,
    .proof-grid div {
        padding: 14px;
    }

    .step {
        display: grid;
        grid-template-columns: 34px 1fr;
        gap: 4px 12px;
        align-items: center;
    }

    .step p {
        grid-column: 2;
        margin-top: 0;
    }

    .proof-grid {
        gap: 10px;
    }

    .category-tile {
        min-height: 330px;
    }

    .category-tile span {
        margin-top: 190px;
    }

    .editorial-panel__copy {
        padding: 18px;
    }

    .product-card h3,
    .product-card p {
        min-height: auto;
    }

    .catalog-grid.product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .catalog-grid .product-body {
        padding: 12px;
    }

    .catalog-grid .product-chip,
    .catalog-grid .product-fulfillment {
        display: none;
    }

    .catalog-grid .product-card h3 {
        font-size: 1.08rem;
        line-height: 1.12;
    }

    .catalog-grid .product-card p {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        font-size: 0.82rem;
    }

    .catalog-grid .product-commerce {
        font-size: 0.78rem;
    }

    .catalog-grid .product-price {
        font-size: 1.12rem;
    }

    .catalog-grid .action-row {
        gap: 8px;
    }

    .catalog-grid .text-link {
        font-size: 0.82rem;
    }

    .catalog-grid .product-buy {
        min-height: 38px;
        padding: 0 10px;
        font-size: 0.82rem;
    }

    .detail-copy h1 {
        font-size: 2.55rem;
    }

    .wa-float {
        display: none;
    }

    .mobile-bar {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 75;
        display: grid;
        grid-template-columns: 1fr 1fr;
        background: rgba(78, 22, 48, 0.72);
        border-top: 1px solid rgba(255, 255, 255, 0.22);
        backdrop-filter: blur(22px) saturate(1.3);
        -webkit-backdrop-filter: blur(22px) saturate(1.3);
    }

    .mobile-bar a {
        min-height: 54px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        text-decoration: none;
        font-weight: 900;
    }

    .reveal,
    .reveal[data-reveal="left"],
    .reveal[data-reveal="clip"] {
        transform: none;
        clip-path: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }

    .reveal,
    .reveal[data-reveal="left"],
    .reveal[data-reveal="clip"] {
        opacity: 1;
        transform: none;
        clip-path: none;
    }
}
