/* ========================================
   Jessica Hernandez — Real Estate Website
   Bold Editorial Style | Plum + Amber
   ======================================== */

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #6B6560;
    background-color: #FAF7F2;
    overflow-x: hidden;
}

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

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

ul { list-style: none; }

.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    background: #5B2C6F;
    color: #fff;
    padding: 0.5rem 1rem;
    z-index: 1000;
    border-radius: 0 0 4px 4px;
    font-size: 0.875rem;
}
.skip-link:focus {
    top: 0;
}

/* ---------- Container ---------- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (min-width: 768px) {
    .container { padding: 0 2rem; }
}

@media (min-width: 1024px) {
    .container { padding: 0 3rem; }
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    line-height: 1.15;
    color: #5B2C6F;
}

em {
    font-style: italic;
    color: #E6A817;
}

/* ---------- Section ---------- */
.section {
    padding: 5rem 0;
}

@media (min-width: 768px) {
    .section { padding: 7rem 0; }
}

@media (min-width: 1024px) {
    .section { padding: 9rem 0; }
}

.section--plum {
    background-color: #5B2C6F;
}

.section--cream {
    background-color: #FAF7F2;
}

.section--white {
    background-color: #fff;
}

.section__header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 4rem;
}

.section__eyebrow {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #E6A817;
    margin-bottom: 1.25rem;
}

.section__eyebrow-line {
    width: 32px;
    height: 2px;
    background: #E6A817;
    flex-shrink: 0;
}

.section__eyebrow--light {
    color: #FFDB6B;
}

.section__eyebrow-line--light {
    background: #FFDB6B;
}

.section__title {
    font-size: clamp(2rem, 5vw, 3.25rem);
    margin-bottom: 1rem;
}

.section__title--light em {
    color: #FFDB6B;
}

.section__subtitle {
    font-size: 1.125rem;
    color: #9B8B85;
    line-height: 1.7;
}

.section__subtitle--light {
    color: #c4a8c8;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    padding: 0.875rem 2rem;
    border-radius: 4px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn--primary {
    background: #E6A817;
    color: #1a0d1f;
    border-color: #E6A817;
}

.btn--primary:hover,
.btn--primary:focus {
    background: #bf850e;
    border-color: #bf850e;
    color: #1a0d1f;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(230, 168, 23, 0.35);
}

.btn--ghost {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.5);
}

.btn--ghost:hover,
.btn--ghost:focus {
    border-color: #fff;
    background: rgba(255,255,255,0.1);
    color: #fff;
    transform: translateY(-2px);
}

.btn--outline {
    background: transparent;
    color: #5B2C6F;
    border-color: #5B2C6F;
}

.btn--outline:hover,
.btn--outline:focus {
    background: #5B2C6F;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(91, 44, 111, 0.3);
}

.btn--lg {
    padding: 1.125rem 2.5rem;
    font-size: 1rem;
}

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

/* ---------- Navigation ---------- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(250, 247, 242, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(91, 44, 111, 0.08);
    transition: box-shadow 0.3s ease;
}

.nav.scrolled {
    box-shadow: 0 4px 20px rgba(91, 44, 111, 0.1);
}

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

@media (min-width: 768px) {
    .nav__inner { padding: 0 2rem; }
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #5B2C6F;
}

.nav__logo-text {
    letter-spacing: -0.01em;
}

.nav__links {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav__links { display: flex; }
}

.nav__link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: #6B6560;
    transition: color 0.2s ease;
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #E6A817;
    transition: width 0.3s ease;
}

.nav__link:hover {
    color: #5B2C6F;
}

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

.nav__link--cta {
    background: #5B2C6F;
    color: #fff;
    padding: 0.625rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
}

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

.nav__link--cta:hover {
    background: #4a2359;
    color: #fff;
}

/* Mobile Toggle */
.nav__toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 110;
}

@media (min-width: 768px) {
    .nav__toggle { display: none; }
}

.nav__bar {
    width: 24px;
    height: 2px;
    background: #5B2C6F;
    transition: all 0.3s ease;
    transform-origin: center;
}

.nav__toggle[aria-expanded="true"] .nav__bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav__toggle[aria-expanded="true"] .nav__bar:nth-child(2) {
    opacity: 0;
}

.nav__toggle[aria-expanded="true"] .nav__bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.nav__links.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(250, 247, 242, 0.98);
    backdrop-filter: blur(12px);
    padding: 2rem;
    gap: 1.5rem;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.nav__links.mobile-open .nav__link {
    font-size: 1.25rem;
    color: #5B2C6F;
}

.nav__links.mobile-open .nav__link::after { display: none; }

.nav__links.mobile-open .nav__link--cta {
    display: inline-flex;
    justify-content: center;
    margin-top: 1rem;
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(26, 13, 31, 0.82) 0%,
        rgba(91, 44, 111, 0.72) 50%,
        rgba(26, 13, 31, 0.85) 100%
    );
}

.hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 820px;
    padding: 2rem;
    padding-top: 5rem;
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #FFDB6B;
    margin-bottom: 1.5rem;
}

.hero__eyebrow-line {
    width: 48px;
    height: 2px;
    background: #FFDB6B;
}

.hero__title {
    font-size: clamp(2.25rem, 6vw, 4.5rem);
    color: #fff;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero__title-accent {
    color: #FFDB6B;
    font-style: italic;
}

.hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #d4b8d8;
    max-width: 560px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
}

.hero__stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 2rem;
}

.hero__stat {
    text-align: center;
    padding: 0 2rem;
}

.hero__stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #FFDB6B;
    line-height: 1.2;
}

.hero__stat-label {
    font-size: 0.8125rem;
    color: #c4a8c8;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 0.25rem;
}

.hero__stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    align-self: center;
}

.hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.6);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(8px); }
    60% { transform: translateX(-50%) translateY(4px); }
}

/* ---------- About ---------- */
.about__grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .about__grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.about__image-wrap {
    position: relative;
}

.about__image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    aspect-ratio: 4/5;
}

.about__image-accent {
    position: absolute;
    bottom: -16px;
    right: -16px;
    width: 60%;
    height: 40%;
    border: 3px solid #E6A817;
    border-radius: 8px;
    z-index: -1;
}

@media (min-width: 768px) {
    .about__image-accent {
        bottom: -24px;
        right: -24px;
    }
}

.about__content h2 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    color: #fff;
    margin-bottom: 1.5rem;
}

.about__content p {
    color: #c4a8c8;
    margin-bottom: 1rem;
    font-size: 1.0625rem;
}

.about__credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.credential {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #fff;
}

/* ---------- Services ---------- */
.services {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .services { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .services { grid-template-columns: repeat(4, 1fr); }
}

.service-card {
    background: #fff;
    border-radius: 8px;
    padding: 2rem;
    border: 1px solid rgba(91, 44, 111, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(91, 44, 111, 0.12);
    border-color: rgba(91, 44, 111, 0.15);
}

.service-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: rgba(91, 44, 111, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5B2C6F;
    margin-bottom: 1.25rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-card__icon {
    background: #5B2C6F;
    color: #FFDB6B;
}

.service-card__title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #5B2C6F;
}

.service-card__body {
    font-size: 0.9375rem;
    color: #6B6560;
    line-height: 1.7;
    flex: 1;
    margin-bottom: 1.25rem;
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #E6A817;
    transition: gap 0.2s ease;
}

.service-card__link:hover {
    gap: 0.625rem;
}

/* ---------- Areas ---------- */
.areas {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) {
    .areas { grid-template-columns: repeat(3, 1fr); }
}

.area-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 3/2;
    display: block;
}

.area-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.area-card:hover img {
    transform: scale(1.08);
}

.area-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 13, 31, 0.8) 0%, transparent 60%);
    transition: background 0.3s ease;
}

.area-card:hover .area-card__overlay {
    background: linear-gradient(to top, rgba(91, 44, 111, 0.85) 0%, rgba(91, 44, 111, 0.2) 60%);
}

.area-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    z-index: 1;
}

.area-card__title {
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 0.25rem;
}

.area-card__desc {
    font-size: 0.875rem;
    color: #d4b8d8;
}

/* ---------- Testimonials ---------- */
.testimonials {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .testimonials { grid-template-columns: repeat(3, 1fr); }
}

.testimonial {
    background: #fff;
    border-radius: 8px;
    padding: 2rem;
    border: 1px solid rgba(91, 44, 111, 0.08);
    position: relative;
    transition: all 0.3s ease;
}

.testimonial:hover {
    box-shadow: 0 12px 36px rgba(91, 44, 111, 0.1);
    transform: translateY(-2px);
}

.testimonial__quote {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.testimonial__text {
    font-size: 1rem;
    line-height: 1.75;
    color: #6B6560;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial__author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testimonial__author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(91, 44, 111, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testimonial__author-name {
    display: block;
    font-weight: 600;
    color: #5B2C6F;
    font-size: 0.9375rem;
}

.testimonial__author-location {
    display: block;
    font-size: 0.8125rem;
    color: #9B8B85;
    margin-top: 0.125rem;
}

/* ---------- CTA ---------- */
.cta {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.cta__bg {
    position: absolute;
    inset: 0;
}

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

.cta__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(26, 13, 31, 0.88) 0%,
        rgba(91, 44, 111, 0.78) 100%
    );
}

.cta__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.cta__title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: #fff;
    margin-bottom: 1rem;
}

.cta__title em {
    color: #FFDB6B;
}

.cta__text {
    font-size: 1.125rem;
    color: #d4b8d8;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

/* ---------- Contact ---------- */
.contact {
    display: grid;
    gap: 3rem;
}

@media (min-width: 768px) {
    .contact {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.contact__info h2 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    margin-bottom: 1rem;
}

.contact__desc {
    font-size: 1.0625rem;
    color: #9B8B85;
    margin-bottom: 2rem;
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact__detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.contact__detail:hover {
    background: rgba(91, 44, 111, 0.04);
}

.contact__detail-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(91, 44, 111, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5B2C6F;
    flex-shrink: 0;
}

.contact__detail-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #9B8B85;
    margin-bottom: 0.125rem;
}

.contact__detail-value {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    color: #5B2C6F;
    line-height: 1.5;
}

/* Form */
.contact__form-wrap {
    background: #FAF7F2;
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(91, 44, 111, 0.08);
}

@media (min-width: 768px) {
    .contact__form-wrap { padding: 2.5rem; }
}

.contact__form-title {
    font-size: 1.5rem;
    color: #5B2C6F;
    margin-bottom: 1.5rem;
}

.form__row {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
}

@media (min-width: 480px) {
    .form__row { grid-template-columns: 1fr 1fr; }
}

.form__group {
    margin-bottom: 1rem;
}

.form__label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #6B6560;
    margin-bottom: 0.5rem;
}

.form__input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1.5px solid rgba(91, 44, 111, 0.15);
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    color: #1a0d1f;
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    outline: none;
}

.form__input::placeholder {
    color: #b8a8a2;
}

.form__input:focus {
    border-color: #5B2C6F;
    box-shadow: 0 0 0 3px rgba(91, 44, 111, 0.1);
}

.form__select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235B2C6F' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.form__textarea {
    resize: vertical;
    min-height: 120px;
}

.form__success {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 6px;
    background: rgba(91, 44, 111, 0.06);
    color: #5B2C6F;
    font-weight: 500;
    font-size: 0.9375rem;
}

/* ---------- Footer ---------- */
.footer {
    background: #1a0d1f;
    padding: 4rem 0 0;
    color: #c4a8c8;
}

.footer__grid {
    display: grid;
    gap: 2.5rem;
    grid-template-columns: 1fr;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

@media (min-width: 768px) {
    .footer__grid {
        grid-template-columns: 2fr 1fr 1.5fr;
        gap: 3rem;
    }
}

.footer__brand {
    max-width: 300px;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.footer__tagline {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #9B8B85;
}

.footer__heading {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #FFDB6B;
    margin-bottom: 1.25rem;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer__links a {
    font-size: 0.9375rem;
    color: #c4a8c8;
    transition: color 0.2s ease;
}

.footer__links a:hover {
    color: #FFDB6B;
}

.footer__contact-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer__contact-list a,
.footer__contact-list span {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    font-size: 0.9375rem;
    color: #c4a8c8;
    line-height: 1.5;
}

.footer__contact-list a:hover {
    color: #FFDB6B;
}

.footer__bottom {
    padding: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .footer__bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer__copy {
    font-size: 0.8125rem;
    color: #6B5B6B;
}

.footer__disclaimer {
    font-size: 0.75rem;
    color: #4a3a4a;
    max-width: 600px;
}

/* ---------- Reveal Animation ---------- */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Stagger children */
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }
.reveal:nth-child(5) { transition-delay: 0.4s; }
.reveal:nth-child(6) { transition-delay: 0.5s; }
