:root {
    --sand: #F7F2EB;
    --sand-deep: #EDE4D6;
    --sand-deeper: #E0D3BF;
    --teal: #1B4D4A;
    --teal-mid: #245E5A;
    --teal-light: #2E756F;
    --teal-pale: #E8F0EF;
    --copper: #C4703A;
    --copper-lt: #D4855A;
    --copper-pale: #FAF0E8;
    --white: #FFFFFF;
    --ink: #1A1A18;
    --stone: #6B6558;
    --stone-lt: #9E9589;

    --shadow-xs: 0 1px 6px rgba(26, 26, 24, 0.06);
    --shadow-sm: 0 3px 16px rgba(26, 26, 24, 0.08);
    --shadow-md: 0 8px 36px rgba(26, 26, 24, 0.11);
    --shadow-lg: 0 18px 60px rgba(26, 26, 24, 0.13);

    --radius: 12px;
    --radius-lg: 22px;
    --radius-pill: 100px;
    --max-w: 1080px;
    --transition: 0.22s cubic-bezier(.4, 0, .2, 1);
}
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--sand);
    color: var(--ink);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}
h1,
h2,
h3 {
    font-family: 'Cormorant Garamond', serif;
    line-height: 1.12;
    color: var(--teal);
}

h1 {
    font-size: clamp(2.4rem, 5.5vw, 4rem);
    font-weight: 600;
}

h2 {
    font-size: clamp(1.8rem, 3.8vw, 2.8rem);
    font-weight: 600;
}

h3 {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 600;
}

p {
    color: var(--stone);
    line-height: 1.75;
}

.label {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--copper);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.label::before {
    content: '';
    width: 20px;
    height: 1.5px;
    background: var(--copper);
    flex-shrink: 0;
}
.container {
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 32px;
}

.tc {
    text-align: center;
}

.tc .label {
    justify-content: center;
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.01em;
    padding: 14px 28px;
    border-radius: var(--radius-pill);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    text-decoration: none;
}

.btn-teal {
    background: var(--teal);
    color: var(--white);
    box-shadow: 0 4px 18px rgba(27, 77, 74, 0.28);
}

.btn-teal:hover {
    background: var(--teal-mid);
    box-shadow: 0 8px 28px rgba(27, 77, 74, 0.36);
    transform: translateY(-2px);
}

.btn-copper {
    background: var(--copper);
    color: var(--white);
    box-shadow: 0 4px 18px rgba(196, 112, 58, 0.28);
}

.btn-copper:hover {
    background: var(--copper-lt);
    box-shadow: 0 8px 28px rgba(196, 112, 58, 0.36);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--teal);
    border: 1.5px solid var(--sand-deeper);
}

.btn-outline:hover {
    border-color: var(--teal);
    background: var(--teal-pale);
}

/* Phone pill */
.phone-pill {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    background: var(--white);
    border: 1.5px solid var(--sand-deeper);
    border-radius: var(--radius-pill);
    padding: 13px 26px;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 1.5rem;
    color: var(--teal);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: pointer;
}

.phone-pill:hover {
    border-color: var(--teal);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.phone-pill svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: var(--copper);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

.disclaimer {
    font-size: 0.77rem;
    color: var(--stone-lt);
    margin-top: 13px;
}
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(247, 242, 235, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--sand-deep);
}

.nav-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 66px;
    padding: 0 32px;
}

.brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--teal);
}
.brand,
.logo{
    display: flex;
    align-items: center;
    gap: .25rem;
}
.brand img,
.logo img{
    display: block;
    width: 54px;
    height: auto;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    font-size: 0.86rem;
    font-weight: 500;
    color: var(--stone);
    transition: color var(--transition);
}

.nav-link:hover {
    color: var(--teal);
}
.hero {
    padding: 130px 0 80px;
    background: var(--sand);
    position: relative;
    overflow: hidden;
}

/* Subtle grain texture via SVG background */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    opacity: 0.6;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 56px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.open-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--sand-deeper);
    border-radius: var(--radius-pill);
    padding: 5px 14px 5px 8px;
    margin-bottom: 22px;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--stone);
    background: var(--white);
    box-shadow: var(--shadow-xs);
}

.open-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22c55e;
    flex-shrink: 0;
    animation: pulse 2.2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .35
    }
}

.hero-title {
    margin-bottom: 18px;
}

.hero-title em {
    font-style: italic;
    color: var(--copper);
}

.hero-sub {
    font-size: 1.05rem;
    color: var(--stone);
    margin-bottom: 32px;
    max-width: 520px;
    line-height: 1.8;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
    align-items: center;
    margin-bottom: 13px;
}

.hero-img img{
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: 2rem;
}

.card-eyebrow {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 22px;
    position: relative;
    z-index: 1;
}

.card-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-style: italic;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.55;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}

.card-quote span {
    color: var(--copper-lt);
    font-weight: 600;
}

.card-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.card-perks {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.card-perk {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.8);
}

.perk-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--copper-lt);
    flex-shrink: 0;
}
.stat-bar {
    background: var(--teal);
    padding: 0;
}

.stat-bar-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stat-cell {
    padding: 40px 32px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    position: relative;
}

.stat-cell:last-child {
    border-right: none;
}

.stat-cell::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--copper);
    transition: width 0.4s ease;
}

.stat-cell:hover::after {
    width: 60%;
}

.stat-fig {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.6rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-fig sup {
    font-size: 1.2rem;
    vertical-align: super;
    margin-right: 2px;
}

.stat-desc {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.4;
}

.about-sec {
    background: var(--white);
    padding: 96px 0;
}

.about-inner {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 80px;
    align-items: center;
}

.about-tag {
    display: inline-block;
    background: var(--teal-pale);
    color: var(--teal);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    margin-bottom: 20px;
}

.about-text h2 {
    margin-bottom: 18px;
}

.about-text p {
    font-size: 1.02rem;
    margin-bottom: 14px;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-visual {
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 2rem;
}

.about-visual img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img-card {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
}

.img-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: var(--radius);
    background: var(--sand);
    border: 1.5px solid var(--sand-deep);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--stone-lt);
    font-size: 0.8rem;
    font-weight: 500;
}

.img-placeholder svg {
    width: 32px;
    height: 32px;
    stroke: var(--sand-deeper);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
}

.img-top {
    margin-top: 40px;
}

.hiw-sec {
    background: var(--sand);
    padding: 96px 0;
}

.hiw-intro {
    max-width: 580px;
    margin: 0 auto 64px;
    text-align: center;
}

.hiw-intro h2 {
    margin-bottom: 14px;
}

.hiw-intro p {
    font-size: 1rem;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 820px;
    margin: 0 auto;
}

.step-row {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 0;
    align-items: stretch;
    position: relative;
}

.step-aside {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 6px;
}

.step-num-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--sand-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--teal);
    flex-shrink: 0;
    z-index: 1;
    position: relative;
    transition: var(--transition);
}

.step-row:hover .step-num-circle {
    background: var(--teal);
    color: var(--white);
    border-color: var(--teal);
}

.step-line {
    flex: 1;
    width: 1.5px;
    background: var(--sand-deep);
    margin-top: 6px;
}

.step-row:last-child .step-line {
    display: none;
}

.step-body {
    padding: 4px 0 48px 28px;
}

.step-row:last-child .step-body {
    padding-bottom: 0;
}

.step-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--copper);
    margin-bottom: 8px;
}

.step-body h3 {
    margin-bottom: 8px;
}

.step-body p {
    font-size: 0.95rem;
    max-width: 560px;
}

.hiw-cta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 56px;
}

.testi-sec {
    background: var(--white);
    padding: 96px 0;
}

.testi-intro {
    max-width: 520px;
    margin: 0 auto 56px;
    text-align: center;
}

.testi-intro h2 {
    margin-bottom: 12px;
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.testi-card {
    background: var(--sand);
    border: 1.5px solid var(--sand-deep);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    position: relative;
    transition: var(--transition);
}

.testi-card:hover {
    border-color: var(--sand-deeper);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    background: var(--white);
}

/* Signature element of this section: styled open-quote mark top-right */
.testi-card::after {
    content: '\201C';
    position: absolute;
    top: 18px;
    right: 24px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    line-height: 1;
    color: var(--sand-deep);
    pointer-events: none;
    font-weight: 700;
}

.testi-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 600;
    font-style: italic;
    color: var(--teal);
    margin-bottom: 14px;
    line-height: 1.35;
    padding-right: 40px;
}

.testi-body {
    font-size: 0.9rem;
    color: var(--stone);
    line-height: 1.75;
    margin-bottom: 24px;
}

.testi-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 18px;
    border-top: 1px solid var(--sand-deep);
}

.testi-initial {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--teal-pale);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--teal);
}

.testi-name {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--ink);
    display: block;
    line-height: 1.2;
}

.testi-loc {
    font-size: 0.78rem;
    color: var(--stone-lt);
    display: block;
}

.star-row {
    display: flex;
    gap: 3px;
    margin-bottom: 14px;
}

.star {
    width: 13px;
    height: 13px;
    fill: #F59E0B;
}

.why-sec {
    background: var(--copper-pale);
    padding: 96px 0;
}

.why-intro {
    max-width: 560px;
    margin: 0 auto 56px;
    text-align: center;
}

.why-intro h2 {
    margin-bottom: 12px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.why-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 38px 36px;
    border: 1.5px solid rgba(196, 112, 58, 0.12);
    display: flex;
    gap: 22px;
    align-items: flex-start;
    box-shadow: var(--shadow-xs);
    transition: var(--transition);
}

.why-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
    border-color: rgba(196, 112, 58, 0.25);
}

.why-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--sand-deeper);
    line-height: 0.9;
    flex-shrink: 0;
    min-width: 36px;
}

.why-body h3 {
    margin-bottom: 8px;
}

.why-body p {
    font-size: 0.9rem;
}

.safety-sec {
    background: var(--teal);
    padding: 96px 0;
}

.safety-intro {
    max-width: 520px;
    margin: 0 auto 52px;
    text-align: center;
}

.safety-intro .label {
    color: rgba(255, 255, 255, 0.45);
    justify-content: center;
}

.safety-intro .label::before {
    background: rgba(255, 255, 255, 0.3);
}

.safety-intro h2 {
    color: var(--white);
    margin-bottom: 12px;
}

.safety-intro p {
    color: rgba(255, 255, 255, 0.55);
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.safety-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 38px 30px;
    transition: var(--transition);
}

.safety-card:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(255, 255, 255, 0.18);
    transform: translateY(-3px);
}

.safety-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.safety-icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: rgba(255, 255, 255, 0.6);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.safety-card h3 {
    color: var(--white);
    margin-bottom: 10px;
}

.safety-card p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.88rem;
}

.faq-sec {
    background: var(--sand);
    padding: 96px 0;
}

.faq-intro {
    max-width: 520px;
    margin: 0 auto 48px;
    text-align: center;
}

.faq-intro h2 {
    margin-bottom: 12px;
}

.faq-wrap {
    max-width: 740px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    background: var(--white);
    border: 1.5px solid var(--sand-deep);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color var(--transition);
}

.faq-item.open {
    border-color: var(--teal-light);
}

.faq-btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 20px 26px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--teal);
    transition: color var(--transition);
}

.faq-btn:hover {
    color: var(--teal-light);
}

.faq-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    flex-shrink: 0;
    background: var(--sand);
    border: 1.5px solid var(--sand-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--teal);
    line-height: 1;
    transition: transform var(--transition), background var(--transition), color var(--transition);
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: var(--teal);
    color: var(--white);
    border-color: var(--teal);
}

.faq-ans {
    max-height: 0;
    overflow: hidden;
    padding: 0 26px;
    transition: max-height 0.36s ease, padding 0.24s ease;
}

.faq-item.open .faq-ans {
    max-height: 200px;
    padding: 0 26px 20px;
}

.faq-ans p {
    font-size: 0.92rem;
    color: var(--stone);
}

.cta-sec {
    background: var(--white);
    padding: 96px 0;
    border-top: 1px solid var(--sand-deep);
    position: relative;
    overflow: hidden;
}

.cta-sec::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--teal), var(--copper), var(--teal));
}

.cta-inner {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-inner h2 {
    margin-bottom: 14px;
}

.cta-inner .cta-sub {
    font-size: 1.02rem;
    color: var(--stone);
    max-width: 520px;
    margin: 0 auto 36px;
    line-height: 1.8;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    align-items: center;
    margin-bottom: 14px;
}

footer {
    background: var(--teal);
    padding: 28px 32px;
}

.foot-inner {
    max-width: var(--max-w);
    margin: 0 auto;
}

.foot-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
}

.foot-brand .the {
    font-style: italic;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    margin-right: 2px;
}

.foot-brand .lounge {
    color: var(--copper-lt);
}

.foot-copy {
    font-size: 0.77rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.65;
    text-align: center;
}

.rev {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.52s ease, transform 0.52s ease;
}

.rev.in {
    opacity: 1;
    transform: none;
}

.d1 {
    transition-delay: 0.08s;
}

.d2 {
    transition-delay: 0.16s;
}

.d3 {
    transition-delay: 0.24s;
}

.d4 {
    transition-delay: 0.32s;
}

@media (max-width: 960px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }

    .hero-img img {
        aspect-ratio: 4/2;
    }

    .stat-bar-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-cell:nth-child(2) {
        border-right: none;
    }

    .stat-cell:nth-child(3) {
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .about-inner {
        grid-template-columns: 1fr;
    }

    .about-visual {
       aspect-ratio: 4/2;
    }

    .testi-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .safety-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 0 20px;
    }

    .nav-links .nav-link {
        display: none;
    }

    .hero {
        padding: 110px 0 64px;
    }

    section {
        padding: 72px 0 !important;
    }

    .stat-bar-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .step-row {
        grid-template-columns: 56px 1fr;
    }

    .foot-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .foot-copy {
        text-align: left;
    }
}

@media (prefers-reduced-motion: reduce) {
    .rev {
        opacity: 1;
        transform: none;
        transition: none;
    }

    *,
    .open-dot {
        animation: none !important;
        transition: none !important;
    }
}
