/* ── Reset & Base ── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --midnight: #0F4C75;
    --midnight-deep: #0a3656;
    --midnight-light: #1b6a99;
    --mint: #A8E6CF;
    --mint-light: #d4f5e4;
    --mint-pale: #eaf8f0;
    --cream: #FDF8F4;
    --cream-warm: #FAF5F0;
    --sand: #E8DDD3;
    --sand-light: #F2EBE4;
    --text-dark: #1a2a38;
    --text-mid: #4a5e6e;
    --text-light: #7a8e9e;
    --white: #ffffff;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --shadow-sm: 0 2px 8px rgba(15, 76, 117, 0.06);
    --shadow-md: 0 8px 30px rgba(15, 76, 117, 0.10);
    --shadow-lg: 0 20px 60px rgba(15, 76, 117, 0.12);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

h1, h2, h3, h4, h5 {
    font-family: 'Lora', Georgia, serif;
    font-weight: 500;
    line-height: 1.25;
    color: var(--text-dark);
}

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

a {
    color: inherit;
    text-decoration: none;
}

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

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

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

.nav__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__logo {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--midnight);
    display: flex;
    align-items: center;
    gap: 8px;
}

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

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

.nav__link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-mid);
    transition: var(--transition);
    position: relative;
}

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

.nav__link:hover {
    color: var(--midnight);
}

.nav__link:hover::after {
    width: 100%;
}

.nav__link--cta {
    background: var(--midnight);
    color: var(--white) !important;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 0.85rem;
}

.nav__link--cta::after {
    display: none;
}

.nav__link--cta:hover {
    background: var(--midnight-deep);
    transform: translateY(-1px);
}

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

.nav__toggle span {
    width: 22px;
    height: 2px;
    background: var(--midnight);
    border-radius: 2px;
    transition: var(--transition);
}

/* ── Hero ── */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 24px 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--cream) 0%, var(--mint-pale) 50%, var(--sand-light) 100%);
}

.hero__bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(ellipse 80% 50% at 70% 20%, rgba(168, 230, 207, 0.3) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 20% 80%, rgba(15, 76, 117, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero__eyebrow {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--midnight);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero__eyebrow::before {
    content: '';
    width: 32px;
    height: 2px;
    background: var(--mint);
    border-radius: 2px;
}

.hero__headline {
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 500;
    color: var(--midnight);
    margin-bottom: 24px;
    line-height: 1.15;
}

.hero__subheadline {
    font-size: 1.1rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 480px;
}

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

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

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

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 30px;
    border-radius: 50px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-decoration: none;
}

.btn--primary {
    background: var(--midnight);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(15, 76, 117, 0.3);
}

.btn--primary:hover {
    background: var(--midnight-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(15, 76, 117, 0.35);
}

.btn--ghost {
    background: var(--white);
    color: var(--midnight);
    border: 2px solid rgba(15, 76, 117, 0.15);
}

.btn--ghost:hover {
    border-color: var(--midnight);
    background: rgba(15, 76, 117, 0.04);
}

.btn--outline {
    background: transparent;
    color: var(--midnight);
    border: 2px solid var(--midnight);
    padding: 12px 26px;
    font-size: 0.85rem;
}

.btn--outline:hover {
    background: var(--midnight);
    color: var(--white);
}

.btn--full {
    width: 100%;
}

/* Hero Image Stack */
.hero__image-stack {
    position: relative;
    height: 680px;
}

.hero__image {
    position: absolute;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.hero__image:hover img {
    transform: scale(1.03);
}

.hero__image--main {
    width: 380px;
    height: 500px;
    top: 0;
    right: 0;
    z-index: 2;
}

.hero__image--accent {
    width: 260px;
    height: 190px;
    bottom: 160px;
    right: 280px;
    z-index: 3;
    border: 4px solid var(--white);
}

.hero__image--detail {
    width: 220px;
    height: 170px;
    bottom: 20px;
    right: 40px;
    z-index: 1;
}

.hero__scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
    z-index: 1;
    animation: float 2s ease-in-out infinite;
}

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

/* ── Section Shared ── */
.section-eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--midnight);
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
    color: var(--midnight);
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-mid);
    line-height: 1.8;
    max-width: 520px;
}

/* ── Rooms ── */
.rooms {
    padding: 120px 0;
    background: var(--white);
}

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

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

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

.room-card {
    background: var(--cream);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.room-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.room-card__image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

.room-card:hover .room-card__image img {
    transform: scale(1.06);
}

.room-card__tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--mint);
    color: var(--midnight-deep);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 50px;
}

.room-card__body {
    padding: 28px;
}

.room-card__title {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.room-card__desc {
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 20px;
}

.room-card__features {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.room-card__features li {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-mid);
    background: var(--white);
    padding: 6px 12px;
    border-radius: 50px;
    border: 1px solid var(--sand);
}

.room-card__body .btn {
    width: 100%;
    text-align: center;
}

/* ── Amenities ── */
.amenities {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--cream) 0%, var(--mint-pale) 100%);
}

.amenities__layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: start;
}

.amenities__text .section-desc {
    margin-bottom: 40px;
}

.amenities__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.amenity-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 28px;
    transition: var(--transition);
    border: 1px solid transparent;
}

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

.amenity-card__icon {
    width: 48px;
    height: 48px;
    background: var(--mint-pale);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--midnight);
    margin-bottom: 16px;
}

.amenity-card__title {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.amenity-card__desc {
    font-size: 0.85rem;
    color: var(--text-mid);
    line-height: 1.7;
}

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

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

.about__images {
    position: relative;
    height: 620px;
}

.about__img-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;
    height: 80%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about__img-secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    height: 45%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 5px solid var(--white);
}

.about__img-main img,
.about__img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about__content .section-desc {
    margin-bottom: 24px;
}

.about__body {
    font-size: 1rem;
    color: var(--text-mid);
    line-height: 1.85;
    margin-bottom: 20px;
}

.about__stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--sand);
}

.about__stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.about__stat-number {
    font-family: 'Lora', Georgia, serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--midnight);
}

.about__stat-label {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 600;
}

/* ── Location ── */
.location {
    padding: 120px 0;
    background: var(--cream);
}

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

.location__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: stretch;
}

.location__info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.location__card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.location__card:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.location__card-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: var(--mint-pale);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--midnight);
}

.location__card h4 {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.location__card p {
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.6;
}

.location__card a {
    color: var(--midnight);
    font-weight: 600;
    transition: var(--transition);
}

.location__card a:hover {
    color: var(--midnight-light);
}

.location__map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 400px;
    box-shadow: var(--shadow-md);
}

/* ── Contact ── */
.contact {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--midnight) 0%, var(--midnight-deep) 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(ellipse 50% 80% at 80% 20%, rgba(168, 230, 207, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse 40% 60% at 10% 90%, rgba(168, 230, 207, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.contact__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact .section-eyebrow {
    color: var(--mint);
}

.contact .section-title {
    color: var(--white);
    margin-bottom: 16px;
}

.contact .section-desc {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 36px;
}

.contact__direct {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact__phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Lora', Georgia, serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--mint);
    transition: var(--transition);
}

.contact__phone:hover {
    color: var(--mint-light);
}

.contact__address {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Form */
.contact__form-wrap {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.contact__form-title {
    font-size: 1.4rem;
    margin-bottom: 28px;
    color: var(--midnight);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

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

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-mid);
    margin-bottom: 6px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--sand);
    border-radius: var(--radius-sm);
    font-family: 'Nunito Sans', sans-serif;
    font-size: 0.9rem;
    color: var(--text-dark);
    background: var(--cream);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--mint);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(168, 230, 207, 0.3);
}

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

.contact__success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 48px 24px;
    gap: 16px;
}

.contact__success svg {
    color: var(--mint);
}

.contact__success h4 {
    font-size: 1.4rem;
    color: var(--midnight);
}

.contact__success p {
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.7;
}

.contact__success a {
    color: var(--midnight);
    font-weight: 700;
}

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

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer__logo {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.footer__logo svg {
    color: var(--mint);
}

.footer__brand p {
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer__brand a {
    color: var(--mint);
    font-weight: 600;
}

.footer h5 {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--mint);
    margin-bottom: 16px;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.footer__links a:hover {
    color: var(--white);
    padding-left: 4px;
}

.footer__hours p {
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.footer__hours-note {
    margin-top: 12px !important;
    font-size: 0.8rem !important;
    color: rgba(255, 255, 255, 0.4) !important;
}

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

.footer__bottom a {
    color: var(--mint);
}

/* ── Mobile Menu ── */
.nav__toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

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

/* ── Responsive ── */
@media (max-width: 1024px) {
    .hero__inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero__image-stack {
        height: 420px;
        max-width: 500px;
        margin: 0 auto;
    }

    .hero__image--main {
        width: 280px;
        height: 360px;
    }

    .hero__image--accent {
        width: 180px;
        height: 130px;
        right: 200px;
    }

    .hero__image--detail {
        width: 160px;
        height: 120px;
        right: 20px;
    }

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

    .amenities__layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about__layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about__images {
        height: 400px;
        max-width: 500px;
    }

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

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

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

@media (max-width: 768px) {
    .nav__links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(253, 248, 244, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 32px 24px;
        gap: 20px;
        transform: translateY(-120%);
        transition: var(--transition);
        box-shadow: var(--shadow-md);
    }

    .nav__links.open {
        transform: translateY(0);
    }

    .nav__toggle {
        display: flex;
    }

    .hero {
        padding: 100px 24px 80px;
        min-height: auto;
    }

    .hero__image-stack {
        height: 320px;
    }

    .hero__image--main {
        width: 200px;
        height: 260px;
    }

    .hero__image--accent {
        width: 140px;
        height: 100px;
        right: 140px;
    }

    .hero__image--detail {
        width: 130px;
        height: 100px;
        right: 10px;
    }

    .hero__trust {
        gap: 16px;
    }

    .rooms__grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

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

    .about__images {
        height: 320px;
    }

    .about__stats {
        flex-wrap: wrap;
        gap: 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact__form-wrap {
        padding: 28px;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero__actions {
        flex-direction: column;
    }

    .hero__actions .btn {
        width: 100%;
        text-align: center;
    }

    .hero__image-stack {
        height: 260px;
    }

    .hero__image--main {
        width: 160px;
        height: 210px;
    }

    .hero__image--accent {
        width: 120px;
        height: 85px;
        right: 110px;
        bottom: 80px;
    }

    .hero__image--detail {
        width: 110px;
        height: 85px;
        right: 5px;
        bottom: 5px;
    }
}

/* ── Animations ── */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
