/* ===== Reset & base ===== */
*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img, svg, iframe { display: block; max-width: 100%; }
button { background: none; border: 0; font: inherit; color: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
input, textarea, button { font: inherit; }

:root {
    --green-900: #0f2e1a;
    --green-800: #1a3d26;
    --green-700: #2d5a3d;
    --green-600: #3d7a52;
    --green-500: #5b9b6a;
    --green-400: #84a98c;
    --green-300: #b8cdbf;
    --green-200: #d6e2d8;
    --green-100: #eaf0e8;
    --cream: #e9efe4;
    --cream-warm: #f3f0e8;
    --divider: rgba(45, 90, 61, .14);
    --text: #1a2e1f;
    --text-muted: #4a5d52;
    --text-soft: #6f8076;
    --white: #ffffff;
    --shadow-sm: 0 1px 2px rgba(15,46,26,.06), 0 1px 3px rgba(15,46,26,.08);
    --shadow-md: 0 4px 12px rgba(15,46,26,.08), 0 2px 4px rgba(15,46,26,.06);
    --shadow-lg: 0 20px 40px -10px rgba(15,46,26,.18), 0 8px 16px -8px rgba(15,46,26,.12);
    --shadow-xl: 0 30px 60px -15px rgba(15,46,26,.25);
    --radius: 14px;
    --radius-lg: 22px;
    --radius-full: 999px;
    --tx: cubic-bezier(.4,.0,.2,1);
}

body {
    font-family: 'Heebo', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text);
    background: var(--cream);
    line-height: 1.6;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* ===== Accessibility: skip link & focus styles ===== */
.skip-link {
    position: absolute;
    top: -100px;
    right: 16px;
    z-index: 1000;
    padding: 12px 20px;
    background: var(--green-800);
    color: var(--white);
    border-radius: 0 0 12px 12px;
    font-weight: 600;
    text-decoration: none;
    transition: top .2s;
}
.skip-link:focus {
    top: 0;
    outline: 3px solid var(--green-300);
    outline-offset: 2px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
    outline: 3px solid var(--green-500);
    outline-offset: 3px;
    border-radius: 4px;
}
.btn:focus-visible,
.btn-call-mini:focus-visible,
.fab-call:focus-visible,
.contact-btn:focus-visible {
    outline-offset: 4px;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 15px;
    transition: all .25s var(--tx);
    cursor: pointer;
    white-space: nowrap;
    border: 2px solid transparent;
    line-height: 1;
}
.btn svg { width: 18px; height: 18px; }
.btn-lg { padding: 17px 32px; font-size: 16px; }
.btn-block { width: 100%; }

.btn-primary {
    background: var(--green-700);
    color: var(--white);
    box-shadow: 0 10px 30px -10px rgba(45,90,61,.6);
}
.btn-primary:hover {
    background: var(--green-800);
    transform: translateY(-2px);
    box-shadow: 0 20px 40px -10px rgba(45,90,61,.7);
}

.btn-ghost {
    background: rgba(255,255,255,.12);
    color: var(--white);
    backdrop-filter: blur(8px);
    border-color: rgba(255,255,255,.3);
}
.btn-ghost:hover {
    background: rgba(255,255,255,.22);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--green-700);
    border-color: var(--green-200);
}
.btn-outline:hover {
    background: var(--green-100);
    border-color: var(--green-400);
}

.btn-call-mini {
    padding: 10px 18px;
    background: var(--green-700);
    color: var(--white);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 12px -3px rgba(45,90,61,.4);
}
.btn-call-mini:hover { background: var(--green-800); transform: translateY(-1px); }
.btn-call-mini svg { width: 16px; height: 16px; }

/* ===== Header ===== */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    transition: all .3s var(--tx);
    padding: 16px 0;
}
.site-header.scrolled {
    background: rgba(248,250,245,.88);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    box-shadow: 0 1px 0 rgba(15,46,26,.06);
}
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 19px;
    color: var(--white);
    transition: color .3s;
}
.scrolled .logo { color: var(--green-800); }
.logo-icon { font-size: 26px; }
.nav {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-inline-end: auto;
    margin-inline-start: 40px;
}
.nav-link {
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-weight: 500;
    font-size: 15px;
    color: rgba(255,255,255,.92);
    transition: all .25s;
}
.scrolled .nav-link { color: var(--text); }
.nav-link:hover { background: rgba(255,255,255,.15); color: var(--white); }
.scrolled .nav-link:hover { background: var(--green-100); color: var(--green-800); }

.nav-toggle {
    display: none;
    width: 42px; height: 42px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    border-radius: 10px;
}
.nav-toggle span {
    display: block;
    width: 22px; height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all .3s var(--tx);
}
.scrolled .nav-toggle span { background: var(--text); }
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
    padding: 120px 0 80px;
}
.hero-bg {
    position: absolute; inset: 0;
    background:
        url('public/background_image.avif') center/cover no-repeat;
    transform: scale(1.05);
    animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom { to { transform: scale(1.15); } }
.hero-overlay {
    position: absolute; inset: 0;
    background:
        linear-gradient(120deg, rgba(15,46,26,.78) 0%, rgba(15,46,26,.55) 60%, rgba(15,46,26,.4) 100%),
        radial-gradient(ellipse at top right, rgba(91,155,106,.3), transparent 60%);
}
.hero-content { position: relative; z-index: 2; max-width: 760px; }

.hero-eyebrow {
    display: inline-block;
    padding: 7px 16px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.25);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .02em;
    margin-bottom: 24px;
    animation: fadeUp .8s var(--tx) both;
}
.hero-title {
    font-size: clamp(40px, 7vw, 72px);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -.02em;
    margin-bottom: 24px;
    animation: fadeUp .9s var(--tx) .1s both;
}
.hero-title span { display: block; }
.hero-title-accent {
    background: linear-gradient(120deg, #b8e0c2 0%, #84a98c 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
.hero-subtitle {
    font-size: clamp(17px, 2.1vw, 20px);
    line-height: 1.65;
    color: rgba(255,255,255,.9);
    max-width: 560px;
    margin-bottom: 36px;
    font-weight: 300;
    animation: fadeUp 1s var(--tx) .2s both;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 64px;
    animation: fadeUp 1.1s var(--tx) .3s both;
}
.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,.15);
    animation: fadeUp 1.2s var(--tx) .4s both;
}
.stat-num {
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 6px;
    background: linear-gradient(120deg, #ffffff, #b8e0c2);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.stat-label {
    font-size: 13px;
    font-weight: 400;
    color: rgba(255,255,255,.75);
    letter-spacing: .02em;
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

.scroll-indicator {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    width: 26px; height: 42px;
    border: 2px solid rgba(255,255,255,.55);
    border-radius: 14px;
    z-index: 2;
}
.scroll-indicator span {
    position: absolute;
    top: 8px; left: 50%;
    width: 4px; height: 8px;
    background: var(--white);
    border-radius: 2px;
    transform: translateX(-50%);
    animation: scrollDot 1.6s var(--tx) infinite;
}
@keyframes scrollDot { 0%,100% { opacity: 0; top: 8px; } 50% { opacity: 1; top: 20px; } }

/* ===== Sections shared ===== */
section { padding: 100px 0; }
section + section { border-top: 1px solid var(--divider); }
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}
.section-eyebrow {
    display: inline-block;
    color: var(--green-600);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.section-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -.02em;
    color: var(--green-900);
    margin-bottom: 16px;
}
.section-sub {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ===== Features ===== */
.features { background: linear-gradient(180deg, var(--cream) 0%, #dde5d8 100%); }
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}
.feature-card {
    background: var(--white);
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--green-100);
    transition: all .35s var(--tx);
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 100px; height: 100px;
    background: radial-gradient(circle, rgba(132,169,140,.18) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(30%, -30%);
    transition: transform .5s var(--tx);
}
.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--green-300);
}
.feature-card:hover::before { transform: translate(20%, -20%) scale(1.4); }
.feature-icon {
    font-size: 38px;
    margin-bottom: 18px;
    display: inline-block;
}
.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--green-800);
}
.feature-card p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.65;
}

/* ===== Gallery ===== */
.gallery {
    background: linear-gradient(180deg, var(--cream) 0%, #dde5d8 100%);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 240px;
    gap: 16px;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform .4s var(--tx), box-shadow .4s var(--tx);
    background: var(--green-100);
}
.gallery-item-large { grid-column: span 2; grid-row: span 2; }
.gallery-item-wide { grid-column: span 2; }
.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .7s var(--tx);
    display: block;
}
.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}
.gallery-item:hover img { transform: scale(1.06); }

/* ===== Videos ===== */
.videos {
    background: linear-gradient(180deg, #dde5d8 0%, #d4ddd0 100%);
}
.videos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.video-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--green-900);
    box-shadow: var(--shadow-md);
    aspect-ratio: 9 / 16;
    transition: transform .3s var(--tx), box-shadow .3s var(--tx), opacity .4s var(--tx);
}
.video-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.video-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}
.video-card--hidden {
    display: none;
}
.videos-grid.is-expanded .video-card--hidden {
    display: block;
    animation: videoFadeIn .5s var(--tx) both;
}
@keyframes videoFadeIn {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}
.videos-more {
    margin-top: 36px;
    text-align: center;
}
.videos-more .btn { min-width: 220px; }
.videos-more.is-hidden { display: none; }

/* ===== Contact ===== */
.contact { background: linear-gradient(180deg, var(--cream) 0%, #dde5d8 100%); }

.contact-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 880px;
    margin: 0 auto;
}

.contact-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 26px 20px;
    background: var(--white);
    border: 1.5px solid var(--green-200);
    border-radius: 12px;
    text-align: center;
    transition: border-color .2s, background-color .2s, transform .2s;
}
.contact-btn:hover {
    border-color: var(--green-600);
    background: var(--green-100);
}

.contact-btn__label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
}
.contact-btn__icon {
    width: 15px;
    height: 15px;
    color: var(--green-600);
    flex-shrink: 0;
}
.contact-btn:hover .contact-btn__icon { color: var(--green-700); }

.contact-btn__value {
    font-size: 18px;
    font-weight: 700;
    color: var(--green-800);
    direction: ltr;
    unicode-bidi: plaintext;
    line-height: 1.3;
    word-break: break-word;
}

/* ===== Location ===== */
.location { background: linear-gradient(180deg, var(--green-100) 0%, #d4ddd0 100%); }
.location-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 24px;
    align-items: stretch;
}
.map-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 460px;
    box-shadow: var(--shadow-lg);
    background: var(--green-200);
}
.map-wrap iframe { width: 100%; height: 100%; min-height: 460px; }

.hours-card {
    background: var(--white);
    padding: 36px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.hours-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--green-900);
}
.hours-list { display: grid; gap: 14px; }
.hours-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: var(--cream);
    border-radius: 10px;
    font-weight: 500;
    color: var(--text);
}
.hours-list li span:last-child { color: var(--green-700); font-weight: 600; }
.hours-list .closed { color: #c0392b !important; }
.hours-divider {
    height: 1px;
    background: var(--green-100);
    margin: 4px 0;
}

/* ===== Accessibility page ===== */
.page-a11y { background: var(--cream); }
.a11y-main {
    padding: 120px 0 80px;
    min-height: 80vh;
    background: linear-gradient(180deg, var(--cream) 0%, #dde5d8 100%);
}
.a11y-container { max-width: 800px; }
.a11y-header { margin-bottom: 48px; text-align: center; }
.a11y-header h1 {
    font-size: clamp(32px, 5vw, 44px);
    color: var(--green-900);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -.02em;
}
.a11y-lead { font-size: 17px; color: var(--text-muted); line-height: 1.7; }
.a11y-section {
    background: var(--white);
    padding: 32px 36px;
    border-radius: var(--radius-lg);
    margin-bottom: 20px;
    border: 1px solid var(--green-100);
    box-shadow: var(--shadow-sm);
}
.a11y-section h2 {
    font-size: 22px;
    color: var(--green-800);
    margin-bottom: 14px;
    font-weight: 700;
}
.a11y-section h3 {
    font-size: 17px;
    color: var(--green-700);
    margin: 18px 0 10px;
    font-weight: 700;
}
.a11y-section p { color: var(--text); line-height: 1.75; font-size: 15.5px; }
.a11y-list {
    margin-top: 12px;
    padding-inline-start: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}
.a11y-list li {
    position: relative;
    padding-inline-start: 28px;
    color: var(--text);
    line-height: 1.65;
    font-size: 15.5px;
}
.a11y-list li::before {
    content: '✓';
    position: absolute;
    inset-inline-start: 0;
    top: 0;
    color: var(--green-600);
    font-weight: 800;
    font-size: 17px;
}
.a11y-coordinator {
    margin-top: 20px;
    padding: 22px 26px;
    background: var(--green-100);
    border-radius: 14px;
    border-inline-start: 4px solid var(--green-600);
}
.a11y-info {
    display: grid;
    grid-template-columns: max-content 1fr;
    gap: 8px 16px;
    margin-top: 10px;
}
.a11y-info dt { font-weight: 600; color: var(--text-muted); }
.a11y-info dd a { color: var(--green-700); font-weight: 600; text-decoration: underline; }
.a11y-info dd a:hover { color: var(--green-900); }
.a11y-back { margin-top: 36px; text-align: center; }

@media (max-width: 720px) {
    .a11y-main { padding: 100px 0 60px; }
    .a11y-section { padding: 24px 22px; }
    .a11y-info { grid-template-columns: 1fr; gap: 4px 0; }
    .a11y-info dt { margin-top: 8px; }
}

/* ===== Footer ===== */
.site-footer {
    background: var(--green-900);
    color: rgba(255,255,255,.75);
    padding-top: 64px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
}
.logo-footer { color: var(--white); margin-bottom: 16px; }
.footer-brand p { font-size: 15px; line-height: 1.7; max-width: 320px; }
.footer-links h4 {
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 18px;
}
.footer-links a, .footer-links span {
    display: block;
    padding: 5px 0;
    color: rgba(255,255,255,.7);
    font-size: 15px;
    transition: color .2s;
}
.footer-links a:hover { color: var(--green-300); }
.footer-bottom {
    padding: 24px 0;
    border-top: 1px solid rgba(255,255,255,.08);
    font-size: 13px;
    color: rgba(255,255,255,.5);
}
.footer-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.footer-a11y {
    color: rgba(255,255,255,.75);
    font-weight: 500;
    transition: color .2s;
}
.footer-a11y:hover { color: var(--green-300); }

/* ===== Floating call button (mobile) ===== */
.fab-call {
    display: none;
    position: fixed;
    bottom: 22px;
    left: 22px;
    width: 58px; height: 58px;
    background: var(--green-700);
    color: var(--white);
    border-radius: 50%;
    place-items: center;
    box-shadow: 0 12px 28px -8px rgba(45,90,61,.7);
    z-index: 90;
    animation: pulse 2.2s ease-out infinite;
}
.fab-call svg { width: 24px; height: 24px; }
@keyframes pulse {
    0%, 100% { box-shadow: 0 12px 28px -8px rgba(45,90,61,.7), 0 0 0 0 rgba(91,155,106,.5); }
    50%      { box-shadow: 0 12px 28px -8px rgba(45,90,61,.7), 0 0 0 14px rgba(91,155,106,0); }
}

/* ===== Responsive ===== */
@media (max-width: 960px) {
    .videos-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .contact-buttons { grid-template-columns: 1fr; max-width: 420px; gap: 12px; }
    .location-grid, .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }
    .gallery-item-large { grid-column: span 2; grid-row: span 2; }
    .gallery-item-wide { grid-column: span 2; }
}

@media (max-width: 720px) {
    section { padding: 72px 0; }
    .section-header { margin-bottom: 44px; }
    .container { padding: 0 20px; }

    .nav-toggle { display: flex; }
    .nav {
        position: absolute;
        top: 100%; right: 0; left: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: var(--white);
        margin: 8px 16px 0;
        padding: 12px;
        border-radius: var(--radius);
        box-shadow: var(--shadow-lg);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all .25s var(--tx);
    }
    .nav-open .nav {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    .nav-link {
        color: var(--text) !important;
        padding: 14px 18px;
        border-radius: 10px;
        text-align: start;
    }
    .nav-link:hover { background: var(--green-100) !important; color: var(--green-800) !important; }

    .btn-call-mini { padding: 9px 14px; font-size: 13px; }
    .btn-call-mini span { display: none; }

    .hero { padding: 100px 0 80px; }
    .hero-stats { gap: 24px; }
    .stat { flex: 1; min-width: 90px; }

    .hero-actions .btn { flex: 1; }

    .features-grid { grid-template-columns: 1fr; }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 220px;
    }
    .gallery-item-large { grid-column: span 1; grid-row: span 1; }
    .gallery-item-wide { grid-column: span 1; }

    .videos-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
    .contact-btn { padding: 22px 18px; }

    .hours-card { padding: 28px 22px; }

    .fab-call { display: grid; }
}

@media (max-width: 420px) {
    .hero-title { font-size: 38px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; }
    .hero-stats { gap: 18px; }
    .stat-num { font-size: 26px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
    }
}
