:root {
    --ink: #0e1612;
    --forest: #143028;
    --pine: #1d4638;
    --moss: #2f6b52;
    --gold: #c6a035;
    --gold-soft: #e4c56a;
    --kraft: #c4a06a;
    --cream: #f4efe4;
    --paper: #fbf7ef;
    --line: rgba(198, 160, 53, 0.28);
    --muted: #6d6a62;
    --white: #ffffff;
    --shadow: 0 24px 60px rgba(14, 22, 18, 0.14);
    --radius: 22px;
    --header: 108px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    color: var(--ink);
    background: var(--paper);
    line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.wrap { width: min(1200px, calc(100% - 80px)); margin: 0 auto; }

.serif { font-family: "Poppins", sans-serif; }
.gold { color: var(--gold); }
.muted { color: var(--muted); }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 700;
    color: var(--gold);
}
.eyebrow::before {
    content: "";
    width: 28px;
    height: 1px;
    background: var(--gold);
}

h1, h2, h3, .serif { font-family: "Poppins", sans-serif; font-weight: 600; letter-spacing: -0.02em; }
h1 { font-size: clamp(40px, 6vw, 78px); line-height: 0.95; margin: 12px 0 18px; }
h2 { font-size: clamp(32px, 4vw, 52px); line-height: 1.05; margin: 10px 0 16px; }
h3 { font-size: 26px; margin: 0 0 10px; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 50px;
    padding: 0 22px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.04em;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(.22,1,.36,1), background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
.btn::after {
    content: "";
    position: absolute;
    inset: 0 auto 0 -40%;
    width: 40%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.45), transparent);
    transform: skewX(-20deg);
}
.btn:hover::after { animation: shine 0.7s ease; }
.btn-gold { background: var(--gold); color: var(--ink); box-shadow: 0 10px 24px rgba(198,160,53,0.28); }
.btn-gold:hover { background: var(--gold-soft); transform: translateY(-3px); box-shadow: 0 16px 32px rgba(198,160,53,0.38); }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.28); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-soft); }
.btn-line { background: transparent; color: var(--ink); border-color: rgba(14,22,18,0.16); }
.btn-line:hover { border-color: var(--gold); color: var(--forest); }

.topbar {
    background: var(--ink);
    color: #d8d2c6;
    font-size: 13px;
}
.topbar .wrap {
    min-height: 38px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.topbar a:hover { color: var(--gold-soft); }
.top-links { display: flex; gap: 18px; flex-wrap: wrap; }
.topbar a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.topbar i,
.icon-link i,
.contact-card i,
.site-footer i {
    color: var(--gold);
    width: 14px;
    text-align: center;
}
.top-email { font-weight: 600; }
.contact-card a,
.site-footer a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 90;
    background: rgba(251, 247, 239, 0.88);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(14,22,18,0.06);
    transition: box-shadow 0.35s ease, background 0.35s ease;
}
.site-header.is-slim {
    background: rgba(251, 247, 239, 0.96);
    box-shadow: 0 10px 30px rgba(14,22,18,0.08);
}
.nav-row {
    position: relative;
    min-height: var(--header);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.logo img {
    height: 88px;
    width: auto;
    display: block;
}
.logo-foot { margin-bottom: 16px; }
.logo-foot img {
    height: 72px;
    background: #fffdf8;
    border-radius: 14px;
    padding: 4px;
}
.nav { display: flex; align-items: center; gap: 8px; }
.nav a, .drop > a {
    padding: 10px 12px;
    font-size: 14px;
    font-weight: 700;
    color: var(--forest);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    position: relative;
    transition: color 0.25s ease;
}
.nav > a:not(.btn)::after,
.drop > a::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 4px;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}
.nav > a:not(.btn):hover::after,
.nav > a.is-active::after,
.drop:hover > a::after { transform: scaleX(1); }
.nav a:hover, .nav a.is-active, .drop:hover > a { color: var(--gold); }
.drop { position: relative; }
.mega {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-40%);
    width: min(760px, 80vw);
    background: #fffdf8;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 18px;
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    box-shadow: var(--shadow);
}
.drop:hover .mega, .drop:focus-within .mega { display: grid; }
.mega a {
    padding: 10px 12px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
}
.mega a:hover { background: var(--cream); }
.menu-btn {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(14,22,18,0.12);
    border-radius: 12px;
    background: #fff;
}

.hero {
    position: relative;
    min-height: calc(100vh - 130px);
    display: grid;
    align-items: end;
    overflow: hidden;
    color: #fff;
    background: #0b1410 center/cover no-repeat;
}
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(11,20,16,0.18) 0%, rgba(11,20,16,0.72) 72%, rgba(11,20,16,0.88) 100%),
        radial-gradient(circle at 80% 20%, rgba(198,160,53,0.18), transparent 28%);
}
.hero-inner { position: relative; z-index: 1; padding: 70px 0 64px; }
.hero-grid { display: grid; grid-template-columns: 1.4fr 0.8fr; gap: 40px; align-items: end; }
.hero p.lead { font-size: 18px; max-width: 540px; color: #ece5d6; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.hero-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.14);
    backdrop-filter: blur(16px);
    border-radius: 24px;
    padding: 24px;
    animation: floaty 4.5s ease-in-out infinite;
}
.hero-card strong { display: block; font-size: 34px; font-family: "Poppins", sans-serif; }
.award {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(198,160,53,0.45);
    background: rgba(198,160,53,0.12);
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold-soft);
}

.section { padding: 90px 0; }
.section-head { max-width: 640px; margin-bottom: 40px; }

.marquee {
    overflow: hidden;
    border-block: 1px solid var(--line);
    background: var(--cream);
    padding: 16px 0;
}
.marquee-track {
    display: flex;
    gap: 42px;
    width: max-content;
    animation: slide 32s linear infinite;
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    color: var(--forest);
}
@keyframes slide { to { transform: translateX(-50%); } }

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.stat {
    padding: 28px 22px;
    background: #fff;
    border-radius: 20px;
    border: 1px solid rgba(14,22,18,0.06);
}
.stat b {
    font-family: "Poppins", sans-serif;
    font-size: 42px;
    display: block;
    line-height: 1;
}

.grid-4, .grid-3, .grid-2 { display: grid; gap: 20px; }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: 1fr 1fr; }

.product-card, .value-card, .reason-card, .blog-card, .quote-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(14,22,18,0.06);
    transition: transform 0.45s cubic-bezier(.22,1,.36,1), box-shadow 0.45s ease, border-color 0.3s ease;
}
.product-card:hover, .blog-card:hover, .quote-card:hover, .value-card:hover, .reason-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    border-color: rgba(198,160,53,0.35);
}
.product-card .media, .blog-card .media, .gallery-card .media {
    aspect-ratio: 4/3;
    overflow: hidden;
    background: linear-gradient(145deg, #efe6d4, #d8ccb6);
    position: relative;
}
.product-card .media::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 42%;
    background: linear-gradient(transparent, rgba(14,22,18,0.45));
    pointer-events: none;
}
.media-tag {
    position: absolute;
    left: 14px;
    bottom: 14px;
    z-index: 2;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(251,247,239,0.92);
    color: var(--forest);
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 800;
}
.product-card img, .blog-card img, .gallery-card img, .shot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: 0.7s ease;
}
.product-shot img { transition: opacity 0.2s ease, transform 0.7s ease; }
.product-card:hover img, .blog-card:hover img, .gallery-card:hover img { transform: scale(1.08); }
.product-card .body, .blog-card .body, .value-card, .reason-card, .quote-card { padding: 20px; }
.chip {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--moss);
    margin-bottom: 8px;
}

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.shot {
    border-radius: 28px;
    overflow: hidden;
    min-height: 460px;
    position: relative;
}
.shot img { position: absolute; inset: 0; }
.shot-badge {
    position: absolute;
    left: 22px;
    bottom: 22px;
    background: #fff;
    color: var(--ink);
    padding: 16px 18px;
    border-radius: 16px;
    max-width: 220px;
}

.dark {
    background: var(--forest);
    color: #efe8d9;
}
.dark .muted { color: #c9c1b1; }

.gallery-section { overflow: hidden; }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    width: 100%;
    margin: 0;
}
.gallery-card {
    position: relative;
    margin: 0;
    border-radius: 22px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: #ddd4c4;
    min-width: 0;
}
.gallery-card .media {
    height: 100%;
    aspect-ratio: auto;
}
.gallery-card figcaption {
    position: absolute;
    inset: auto 0 0 0;
    z-index: 2;
    padding: 18px 18px 16px;
    color: #fff;
    background: linear-gradient(transparent, rgba(8,12,10,0.78));
}

.quote-card { min-height: 100%; }
.quote-card p { font-size: 17px; font-family: "Poppins", sans-serif; line-height: 1.45; }
.stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 12px; }

.page-hero {
    padding: 72px 0 48px;
    background:
        linear-gradient(120deg, rgba(20,48,40,0.92), rgba(20,48,40,0.72)),
        var(--hero, url("https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&w=1800&q=80")) center/cover;
    color: #fff;
}
.crumbs { font-size: 13px; color: #d8d0c0; margin-bottom: 10px; }
.crumbs a:hover { color: var(--gold-soft); }

.detail-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 36px; }
.spec-list { display: grid; gap: 10px; margin: 22px 0; padding: 0; list-style: none; }
.spec-list li {
    padding: 12px 14px;
    border-radius: 12px;
    background: var(--cream);
}
.thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 12px; }
.thumbs img {
    height: 110px;
    width: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 14px;
    border: 2px solid transparent;
}
.thumbs img.is-active { border-color: var(--gold); }

.form {
    display: grid;
    gap: 14px;
    background: #fff;
    padding: 28px;
    border-radius: 24px;
    border: 1px solid rgba(14,22,18,0.06);
}
.form input, .form select, .form textarea {
    width: 100%;
    border: 1px solid rgba(14,22,18,0.12);
    background: var(--paper);
    border-radius: 12px;
    padding: 13px 14px;
}
.form textarea { min-height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.alert {
    padding: 14px 16px;
    border-radius: 14px;
    background: #e7f4ea;
    color: #1d4638;
    border: 1px solid #b7d8bf;
}
.alert-warn { background: #fff6de; color: #5c4814; border-color: #ead48a; }
.error { color: #9a2d2d; font-size: 13px; }

.contact-cards { display: grid; gap: 14px; }
.contact-card {
    padding: 18px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(14,22,18,0.06);
}
.contact-card h3 { margin: 4px 0; font-size: 20px; }
.map {
    border: 0;
    width: 100%;
    min-height: 360px;
    border-radius: 24px;
}

.site-footer {
    background: var(--ink);
    color: #d7d0c4;
    padding: 64px 0 24px;
}
.foot-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 28px; }
.foot-grid > * { min-width: 0; }
.site-footer h4 { color: #fff; margin: 0 0 14px; font-size: 16px; }
.site-footer a { display: inline-flex; padding: 4px 0; color: #cfc7b8; }
.site-footer a:hover { color: var(--gold-soft); }
.site-footer .help-btn {
    display: inline-flex;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin-top: 16px;
    padding: 0 14px;
    min-height: 46px;
    font-size: 13px;
    white-space: nowrap;
    justify-content: center;
    color: var(--ink);
}
.site-footer .help-btn i { color: var(--ink); width: auto; }
.site-footer .help-btn:hover { color: var(--ink); }
@media (max-width: 1180px) {
    .site-footer .help-btn { white-space: normal; line-height: 1.25; padding: 10px 12px; min-height: 0; }
}
.legal {
    margin-top: 36px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    gap: 12px;
    font-size: 13px;
}

.floaters { position: fixed; right: 18px; bottom: 18px; z-index: 50; display: grid; gap: 10px; }
.floater {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    box-shadow: var(--shadow);
}
.floater.wa { background: #1ea855; }
.floater.call { background: var(--forest); }
.floater i { font-size: 20px; color: #fff; }

.reveal { opacity: 0; transform: translateY(22px); animation: rise 0.7s ease forwards; }
.reveal:nth-child(2) { animation-delay: 0.08s; }
.reveal:nth-child(3) { animation-delay: 0.16s; }
.reveal:nth-child(4) { animation-delay: 0.24s; }
@keyframes rise { to { opacity: 1; transform: none; } }

@media (max-width: 980px) {
    .topbar { display: none; }
    .site-header { position: sticky; }
    .hero-grid, .split, .detail-grid, .grid-4, .grid-3, .foot-grid, .stats { grid-template-columns: 1fr 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
    .wrap { width: min(1200px, calc(100% - 56px)); }
    .menu-btn { display: grid; place-items: center; }
    .nav {
        display: none;
        position: absolute;
        top: calc(100% + 8px);
        left: 0;
        right: 0;
        bottom: auto;
        background: #fffdf8;
        border: 1px solid var(--line);
        border-radius: 18px;
        padding: 12px;
        flex-direction: column;
        align-items: stretch;
        box-shadow: var(--shadow);
    }
    .nav.open { display: flex; }
    .mega {
        position: static;
        transform: none;
        width: 100%;
        display: none;
        grid-template-columns: 1fr;
        box-shadow: none;
        padding: 0;
        border: 0;
    }
    .drop.open .mega { display: grid; }
}
@media (max-width: 720px) {
    .topbar .wrap, .legal, .hero-grid, .split, .detail-grid, .grid-4, .grid-3, .grid-2, .foot-grid, .stats, .form-row {
        grid-template-columns: 1fr;
        flex-direction: column;
    }
    .hero { min-height: 86vh; }
    .section { padding: 64px 0; }
    .wrap { width: min(1200px, calc(100% - 40px)); }
    .gallery-grid { grid-template-columns: 1fr; gap: 16px; }
}

.preloader {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 18px;
    background: #fbf7ef;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
.preloader img { height: 92px; animation: pulse 1.2s ease-in-out infinite; }
.loader-bar {
    width: 140px;
    height: 3px;
    border-radius: 99px;
    background: rgba(198,160,53,0.2);
    overflow: hidden;
    position: relative;
}
.loader-bar::after {
    content: "";
    position: absolute;
    inset: 0 60% 0 0;
    background: var(--gold);
    animation: load 0.9s ease-in-out infinite;
}
.preloader.is-done { opacity: 0; visibility: hidden; pointer-events: none; }

.anim {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.7s ease, transform 0.8s cubic-bezier(.22,1,.36,1);
    transition-delay: var(--d, 0ms);
}
.anim.in { opacity: 1; transform: none; }

.hero { animation: heroZoom 18s ease-in-out infinite alternate; }
.hero-inner { animation: fadeUp 1s ease both; }
.page-hero { position: relative; overflow: hidden; }
.page-hero .wrap { position: relative; z-index: 1; animation: fadeUp 0.8s ease both; }

.logo img { transition: transform 0.4s ease; }
.logo:hover img { transform: scale(1.04); }

.mega {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
}
.drop:hover .mega, .drop:focus-within .mega {
    display: grid;
    opacity: 1;
    pointer-events: auto;
    animation: fadeUp 0.28s ease;
}

.product-card .body a,
.blog-card .body a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    color: var(--forest);
    transition: gap 0.25s ease, color 0.25s ease;
}
.product-card .body a:hover,
.blog-card .body a:hover { gap: 12px; color: var(--gold); }

.gallery-card { cursor: pointer; }
.gallery-card::after {
    content: "\f00e";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 22px;
    background: rgba(14,22,18,0.35);
    opacity: 0;
    transition: opacity 0.35s ease;
}
.gallery-card:hover::after { opacity: 1; }
.gallery-card:hover img { transform: scale(1.1); }

.stat { transition: transform 0.4s ease, box-shadow 0.4s ease; }
.stat:hover { transform: translateY(-6px); box-shadow: var(--shadow); }

.form input, .form select, .form textarea {
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.form input:focus, .form select:focus, .form textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(198,160,53,0.16);
    background: #fff;
}

.contact-card { transition: transform 0.4s ease, box-shadow 0.4s ease; }
.contact-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }

.thumbs img { transition: transform 0.35s ease, box-shadow 0.35s ease; cursor: pointer; }
.thumbs img:hover { transform: scale(1.04); box-shadow: var(--shadow); }

.floater { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.floater:hover { transform: translateY(-4px) scale(1.06); }
.floater.wa { animation: pulseRing 2.2s ease-in-out infinite; }
.floater.top { background: var(--gold); color: var(--ink); opacity: 0; pointer-events: none; transform: translateY(12px); }
.floater.top.is-show { opacity: 1; pointer-events: auto; transform: none; }
.floater.top i { color: var(--ink); }

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 70;
    background: rgba(8,12,10,0.82);
    display: none;
    place-items: center;
    padding: 40px 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease;
}
.lightbox.is-open {
    display: grid;
    opacity: 1;
    pointer-events: auto;
}
.lightbox img {
    max-width: min(920px, 92vw);
    max-height: 78vh;
    border-radius: 18px;
    box-shadow: var(--shadow);
    transform: scale(0.94);
    transition: transform 0.35s ease;
}
.lightbox.is-open img { transform: scale(1); }
.lightbox p { color: #fff; margin: 12px 0 0; text-align: center; }
.lightbox-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
}

.dark {
    background:
        radial-gradient(circle at 10% 20%, rgba(198,160,53,0.12), transparent 28%),
        var(--forest);
}

.topbar a { transition: color 0.25s ease, transform 0.25s ease; }
.topbar a:hover { transform: translateY(-1px); }

@keyframes shine { to { left: 140%; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
@keyframes heroZoom { from { background-size: 100% auto; } to { background-size: 112% auto; } }
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes load { 0% { left: -40%; } 100% { left: 100%; } }
@keyframes pulseRing {
    0%, 100% { box-shadow: 0 0 0 0 rgba(30,168,85,0.45); }
    70% { box-shadow: 0 0 0 14px rgba(30,168,85,0); }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation: none !important;
        transition: none !important;
    }
    .anim { opacity: 1; transform: none; }
    .preloader { display: none; }
}
