:root {
    --emerald: #059669;
    --emerald-dark: #065f46;
    --emerald-light: #d1fae5;
    --emerald-50: #ecfdf5;
    --cream: #fdf8f0;
    --cream-dark: #f5efe6;
    --cream-light: #fefcf7;
    --text-dark: #1a2e26;
    --text-mid: #374151;
    --text-light: #6b7280;
    --white: #ffffff;
    --shadow-sm: 0 1px 3px rgba(5, 150, 105, 0.08);
    --shadow-md: 0 4px 20px rgba(5, 150, 105, 0.1);
    --shadow-lg: 0 10px 40px rgba(5, 150, 105, 0.12);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --radius-xl: 36px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

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

h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    line-height: 1.2;
    font-weight: 600;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

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

/* ─── Buttons ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    white-space: nowrap;
}

.btn--emerald {
    background: var(--emerald);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(5, 150, 105, 0.3);
}

.btn--emerald:hover {
    background: var(--emerald-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(5, 150, 105, 0.4);
}

.btn--cream {
    background: var(--cream);
    color: var(--emerald-dark);
    box-shadow: var(--shadow-md);
}

.btn--cream:hover {
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn--outline {
    background: transparent;
    color: var(--emerald);
    border: 2px solid var(--emerald);
}

.btn--outline:hover {
    background: var(--emerald);
    color: var(--white);
    transform: translateY(-2px);
}

.btn--ghost {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.4);
}

.btn--ghost:hover {
    background: var(--white);
    color: var(--emerald-dark);
    border-color: var(--white);
}

.btn--small {
    padding: 10px 20px;
    font-size: 14px;
}

.btn--lg {
    padding: 16px 32px;
    font-size: 16px;
}

.btn--full {
    width: 100%;
    justify-content: center;
}

/* ─── Section Header ─── */
.section-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--emerald);
    background: var(--emerald-light);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(28px, 4vw, 44px);
    color: var(--text-dark);
    margin-bottom: 16px;
}

.section-desc {
    font-size: 17px;
    color: var(--text-light);
    max-width: 560px;
    line-height: 1.7;
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-header .section-desc {
    margin: 0 auto;
}

/* ─── Navigation ─── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 248, 240, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(5, 150, 105, 0.08);
    transition: var(--transition);
}

.nav.scrolled {
    background: rgba(253, 248, 240, 0.95);
    box-shadow: var(--shadow-sm);
}

.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    font-size: 18px;
    color: var(--emerald-dark);
}

.nav__logo-icon {
    color: var(--emerald);
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav__links a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-mid);
    position: relative;
}

.nav__links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--emerald);
    border-radius: 2px;
    transition: var(--transition);
}

.nav__links a:hover {
    color: var(--emerald);
}

.nav__links a:hover::after {
    width: 100%;
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.nav__toggle-bar {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
}

.nav__toggle.active .nav__toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.active .nav__toggle-bar:nth-child(2) {
    opacity: 0;
}

.nav__toggle.active .nav__toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ─── Hero ─── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 0;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding-bottom: 80px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--emerald-light);
    color: var(--emerald-dark);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.hero__headline {
    font-size: clamp(36px, 5vw, 58px);
    color: var(--text-dark);
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero__headline em {
    color: var(--emerald);
    font-style: italic;
}

.hero__sub {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 480px;
}

.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero__trust {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.hero__trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-mid);
}

.hero__trust-item svg {
    color: var(--emerald);
}

/* Hero Images */
.hero__image-wrap {
    position: relative;
    height: 600px;
}

.hero__image-hero {
    width: 100%;
    height: 100%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero__image-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__image-float {
    position: absolute;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--cream);
}

.hero__image-float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__image-float--1 {
    width: 160px;
    height: 120px;
    bottom: 60px;
    left: -40px;
    animation: float 4s ease-in-out infinite;
}

.hero__image-float--2 {
    width: 140px;
    height: 105px;
    top: 40px;
    right: -30px;
    animation: float 4s ease-in-out infinite 1s;
}

.hero__blob {
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--emerald-light);
    border-radius: 50%;
    top: 50%;
    right: -80px;
    transform: translateY(-50%);
    z-index: -1;
    opacity: 0.5;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.hero__wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

.hero__wave svg {
    display: block;
    width: 100%;
    height: 60px;
}

/* ─── Services ─── */
.services {
    padding: 80px 0 100px;
    background: var(--cream-light);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    transition: var(--transition);
    border: 1px solid rgba(5, 150, 105, 0.06);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-card__icon {
    width: 56px;
    height: 56px;
    background: var(--emerald-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald);
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card:hover .service-card__icon {
    background: var(--emerald);
    color: var(--white);
}

.service-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.service-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

/* ─── About ─── */
.about {
    padding: 100px 0;
    background: var(--cream);
}

.about__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about__image-col {
    position: relative;
}

.about__image-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about__image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about__image-accent {
    position: absolute;
    bottom: -30px;
    right: -30px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--cream);
}

.about__image-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about__experience-badge {
    position: absolute;
    top: -20px;
    left: -20px;
    background: var(--emerald);
    color: var(--white);
    padding: 20px 24px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.about__experience-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
}

.about__experience-text {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.9;
}

.about__text-col .section-title {
    margin-bottom: 24px;
}

.about__body {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about__values {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}

.about__value {
    display: flex;
    align-items: center;
    gap: 14px;
}

.about__value-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: var(--emerald-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald);
}

.about__value span {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-mid);
}

/* ─── Gallery ─── */
.gallery {
    padding: 100px 0;
    background: var(--cream-light);
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 190px);
    gap: 16px;
}

.gallery__item {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery__item:hover img {
    transform: scale(1.08);
}

.gallery__item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5, 95, 70, 0.7) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
}

.gallery__item:hover .gallery__item-overlay {
    opacity: 1;
}

.gallery__item-overlay span {
    color: var(--white);
    font-weight: 600;
    font-size: 15px;
}

.gallery__item--large {
    grid-column: 1 / 6;
    grid-row: 1 / 3;
}

.gallery__item--wide {
    grid-column: 7 / 13;
    grid-row: 2 / 3;
}

.gallery__item:nth-child(3),
.gallery__item:nth-child(4) {
    grid-column: span 6;
    grid-row: 1 / 2;
}

.gallery__item:nth-child(3) { grid-column: 6 / 9; }
.gallery__item:nth-child(4) { grid-column: 9 / 13; }

/* ─── Testimonials ─── */
.testimonials {
    padding: 100px 0;
    background: var(--cream);
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    border: 1px solid rgba(5, 150, 105, 0.06);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.testimonial-card__stars {
    display: flex;
    gap: 4px;
    color: #f59e0b;
    margin-bottom: 20px;
}

.testimonial-card__text {
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-card__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
}

.testimonial-card__author span {
    font-weight: 600;
    font-size: 15px;
    color: var(--text-dark);
}

/* ─── CTA ─── */
.cta {
    padding: 100px 0;
    background: var(--emerald-dark);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
    top: -200px;
    right: -100px;
}

.cta::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
    bottom: -100px;
    left: -50px;
}

.cta__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.cta__content .section-tag {
    background: rgba(255,255,255,0.15);
    color: var(--emerald-light);
}

.cta__title {
    font-size: clamp(28px, 4vw, 44px);
    color: var(--white);
    margin-bottom: 20px;
}

.cta__text {
    font-size: 17px;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 440px;
}

.cta__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.cta__visual {
    display: flex;
    justify-content: flex-end;
}

.cta__image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    max-width: 400px;
    width: 100%;
}

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

/* ─── Contact ─── */
.contact {
    padding: 100px 0;
    background: var(--cream-light);
}

.contact__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact__info .section-title {
    margin-bottom: 16px;
}

.contact__desc {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 36px;
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}

.contact__detail {
    display: flex;
    gap: 16px;
}

.contact__detail-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--emerald-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald);
}

.contact__detail strong {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.contact__detail p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.contact__detail a {
    color: var(--emerald);
}

.contact__detail a:hover {
    color: var(--emerald-dark);
    text-decoration: underline;
}

.contact__map {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.contact__form-col {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(5, 150, 105, 0.06);
}

.contact__form h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.contact__form-note {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 28px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-mid);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #e5e7eb;
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: var(--text-dark);
    background: var(--cream-light);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--emerald);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-success {
    display: none;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--emerald-light);
    border-radius: var(--radius-sm);
    color: var(--emerald-dark);
    font-weight: 500;
    font-size: 15px;
    margin-top: 16px;
}

.form-success.show {
    display: flex;
}

.form-success svg {
    color: var(--emerald);
    flex-shrink: 0;
}

/* ─── Footer ─── */
.footer {
    background: var(--text-dark);
    color: rgba(255,255,255,0.7);
    padding: 64px 0 0;
}

.footer__top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__brand p {
    font-size: 14px;
    line-height: 1.7;
    margin-top: 16px;
    max-width: 280px;
}

.footer__logo {
    color: var(--white);
}

.footer__logo-icon {
    color: var(--emerald-light);
}

.footer__links h4,
.footer__hours h4 {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
}

.footer__links ul,
.footer__hours ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__links a {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}

.footer__links a:hover {
    color: var(--emerald-light);
}

.footer__hours li {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    gap: 16px;
}

.footer__hours li span:first-child {
    color: rgba(255,255,255,0.5);
}

.footer__hours li span:last-child {
    color: rgba(255,255,255,0.8);
    font-weight: 500;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    flex-wrap: wrap;
    gap: 12px;
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
    .hero__inner {
        gap: 40px;
    }
    .hero__image-wrap {
        height: 480px;
    }
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery__grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
    .gallery__item--large,
    .gallery__item--wide,
    .gallery__item:nth-child(3),
    .gallery__item:nth-child(4) {
        grid-column: span 1;
        grid-row: auto;
    }
    .gallery__item {
        height: 220px;
    }
}

@media (max-width: 768px) {
    .nav__links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(253, 248, 240, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 32px 24px;
        gap: 20px;
        border-bottom: 1px solid rgba(5, 150, 105, 0.08);
        transform: translateY(-120%);
        opacity: 0;
        transition: var(--transition);
        pointer-events: none;
    }
    .nav__links.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    .nav__toggle {
        display: flex;
    }
    .hero__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero__sub {
        margin-left: auto;
        margin-right: auto;
    }
    .hero__actions {
        justify-content: center;
    }
    .hero__trust {
        justify-content: center;
    }
    .hero__image-wrap {
        height: 400px;
        order: -1;
    }
    .hero__image-float--1 {
        width: 120px;
        height: 90px;
        left: -10px;
        bottom: 30px;
    }
    .hero__image-float--2 {
        width: 110px;
        height: 83px;
        right: -10px;
        top: 20px;
    }
    .hero__blob {
        width: 200px;
        height: 200px;
        right: -40px;
    }
    .about__inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .about__image-col {
        max-width: 480px;
        margin: 0 auto;
    }
    .services__grid {
        grid-template-columns: 1fr;
    }
    .testimonials__grid {
        grid-template-columns: 1fr;
    }
    .cta__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .cta__text {
        margin-left: auto;
        margin-right: auto;
    }
    .cta__actions {
        justify-content: center;
    }
    .cta__visual {
        justify-content: center;
    }
    .cta__image {
        max-width: 300px;
    }
    .contact__inner {
        grid-template-columns: 1fr;
    }
    .footer__top {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    .hero {
        padding: 90px 0 0;
    }
    .hero__image-wrap {
        height: 320px;
    }
    .contact__form-col {
        padding: 24px;
    }
    .gallery__grid {
        grid-template-columns: 1fr;
    }
}

/* ─── Animations ─── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
