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

:root {
    --green-900: #0B2218;
    --green-800: #1B4332;
    --green-700: #2D6A4F;
    --green-600: #40916C;
    --green-500: #52B788;
    --green-400: #74C69D;
    --green-300: #95D5B2;
    --green-200: #B7E4C7;
    --green-100: #D8F3DC;
    --cream: #FAF9F6;
    --cream-dark: #F5F4F0;
    --off-white: #FEFDFB;
    --text-primary: #1A1A1A;
    --text-secondary: #4A4A4A;
    --text-muted: #7A7A7A;
    --line: rgba(27, 67, 50, 0.12);
    --line-strong: rgba(27, 67, 50, 0.25);
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
}

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

body {
    font-family: var(--font-sans);
    font-weight: 300;
    color: var(--text-primary);
    background: var(--off-white);
    line-height: 1.7;
    letter-spacing: -0.01em;
    overflow-x: hidden;
}

img, svg {
    display: block;
    max-width: 100%;
}

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

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

.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    padding: 0.5rem 1rem;
    background: var(--green-800);
    color: #fff;
    border-radius: 0 0 4px 4px;
    z-index: 200;
    font-size: 0.875rem;
}
.skip-link:focus {
    top: 0;
}

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

/* ── Decorative Line ──────────────────────────────────────── */
.line-deco {
    position: fixed;
    top: 0;
    left: 3rem;
    width: 1px;
    height: 100vh;
    background: var(--line);
    pointer-events: none;
    z-index: 50;
}

/* ── Header ───────────────────────────────────────────────── */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0;
    transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.3s ease;
}

.header.scrolled {
    background: rgba(254, 253, 251, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 var(--line);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    z-index: 101;
}

.logo-mark {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--green-700);
    letter-spacing: -0.02em;
    border: 1px solid var(--green-300);
    border-radius: 4px;
    padding: 0.2rem 0.45rem;
    line-height: 1;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-line-one {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--green-800);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.logo-line-two {
    font-size: 0.6875rem;
    font-weight: 400;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}

.nav ul {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav a {
    font-size: 0.8125rem;
    font-weight: 400;
    color: var(--text-secondary);
    letter-spacing: 0.02em;
    transition: color 0.25s ease;
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--green-600);
    transition: width 0.3s ease;
}

.nav a:hover {
    color: var(--green-700);
}

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

.nav-cta {
    font-weight: 500 !important;
    color: var(--green-700) !important;
    border: 1px solid var(--green-300);
    border-radius: 4px;
    padding: 0.45rem 1rem;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease !important;
}

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

.nav-cta:hover {
    background: var(--green-700);
    color: #fff !important;
    border-color: var(--green-700);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    padding: 4px;
    z-index: 101;
}

.mobile-toggle .bar {
    display: block;
    width: 100%;
    height: 1.5px;
    background: var(--green-800);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}

.mobile-toggle[aria-expanded="true"] .bar:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}
.mobile-toggle[aria-expanded="true"] .bar:nth-child(2) {
    opacity: 0;
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0B2218 0%, #1B4332 30%, #2D6A4F 60%, #40916C 100%);
    padding-top: 72px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 80%, rgba(82, 183, 136, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(116, 198, 157, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 50% 40% at 50% 50%, rgba(45, 106, 79, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.hero-content {
    max-width: 540px;
}

.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green-300);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 400;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-title em {
    font-style: italic;
    color: var(--green-200);
}

.hero-subtitle {
    font-size: 1.0625rem;
    font-weight: 300;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 2.5rem;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    padding: 0.875rem 1.75rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: #fff;
    color: var(--green-800);
    border: 1px solid #fff;
}

.btn-primary:hover {
    background: var(--green-100);
    border-color: var(--green-100);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.btn-ghost {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

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

.btn-full {
    width: 100%;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-trust span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.02em;
}

.trust-sep {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    flex-shrink: 0;
}

.hero-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 520 / 640;
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.25);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    pointer-events: none;
}

/* ── Section Shared ───────────────────────────────────────── */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 4rem;
}

.section-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green-600);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-title em {
    font-style: italic;
    color: var(--green-700);
}

.section-subtitle {
    font-size: 1.0625rem;
    font-weight: 300;
    line-height: 1.75;
    color: var(--text-muted);
}

/* ── Services ─────────────────────────────────────────────── */
.services {
    padding: 7rem 0;
    background: var(--off-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-card {
    padding: 2rem;
    border: 1px solid var(--line);
    border-radius: 6px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    background: #fff;
}

.service-card:hover {
    border-color: var(--green-200);
    box-shadow: 0 8px 32px rgba(27, 67, 50, 0.06);
    transform: translateY(-2px);
}

.service-icon {
    width: 40px;
    height: 40px;
    color: var(--green-600);
    margin-bottom: 1.25rem;
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-name {
    font-family: var(--font-serif);
    font-size: 1.1875rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.service-desc {
    font-size: 0.9375rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-muted);
}

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

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    border-radius: 6px;
    overflow: hidden;
    aspect-ratio: 560 / 680;
    box-shadow: 0 16px 48px rgba(27, 67, 50, 0.08);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-content .section-label {
    text-align: left;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
}

.about-content p {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
}

.about-values {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.value-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: start;
}

.value-label {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--green-700);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding-top: 0.15em;
}

.value-line {
    grid-column: 2;
    width: 100%;
    height: 1px;
    background: var(--line);
    margin-bottom: 0.25rem;
}

.value-desc {
    grid-column: 2;
    font-size: 0.9375rem;
    font-weight: 300;
    line-height: 1.6;
    color: var(--text-muted);
}

/* ── Why ──────────────────────────────────────────────────── */
.why {
    padding: 7rem 0;
    background: var(--off-white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.why-card {
    padding: 2.5rem;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: #fff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
    border-color: var(--green-200);
    box-shadow: 0 8px 32px rgba(27, 67, 50, 0.06);
}

.why-number {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--green-100);
    line-height: 1;
    margin-bottom: 1rem;
}

.why-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.why-desc {
    font-size: 0.9375rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-muted);
}

/* ── Testimonials ─────────────────────────────────────────── */
.testimonials {
    padding: 7rem 0;
    background: var(--green-800);
}

.testimonials .section-label {
    color: var(--green-400);
}

.testimonials .section-title {
    color: #fff;
}

.testimonials .section-title em {
    color: var(--green-300);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.testimonial-card {
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.03);
    transition: border-color 0.3s ease, background 0.3s ease;
}

.testimonial-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
}

.testimonial-quote {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    line-height: 1;
    color: var(--green-500);
    margin-bottom: 0.5rem;
}

.testimonial-text {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-source {
    font-size: 0.8125rem;
    font-weight: 400;
    color: var(--green-300);
    letter-spacing: 0.02em;
}

/* ── Contact ──────────────────────────────────────────────── */
.contact {
    padding: 7rem 0;
    background: var(--cream);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info .section-label {
    text-align: left;
}

.contact-info .section-title {
    text-align: left;
    margin-bottom: 1rem;
}

.contact-intro {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.75;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 20px;
    height: 20px;
    color: var(--green-600);
    flex-shrink: 0;
    margin-top: 0.2em;
}

.contact-icon svg {
    width: 100%;
    height: 100%;
}

.contact-label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.contact-link {
    font-size: 1rem;
    font-weight: 400;
    color: var(--green-700);
    transition: color 0.2s ease;
}

.contact-link:hover {
    color: var(--green-500);
}

.contact-text {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-primary);
    line-height: 1.6;
}

/* ── Form ─────────────────────────────────────────────────── */
.contact-form-wrap {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 2.5rem;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 300;
    color: var(--text-primary);
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 0.75rem 1rem;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--green-500);
    box-shadow: 0 0 0 3px rgba(82, 183, 136, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-success {
    text-align: center;
    padding: 2rem;
}

.success-icon {
    width: 48px;
    height: 48px;
    color: var(--green-500);
    margin: 0 auto 1rem;
}

.success-icon svg {
    width: 100%;
    height: 100%;
}

.success-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.success-text {
    font-size: 0.9375rem;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ── Footer ───────────────────────────────────────────────── */
.footer {
    background: var(--green-900);
    padding: 4rem 0 0;
}

.footer .container {
    padding: 0 1.5rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand .logo-mark {
    color: var(--green-400);
    border-color: var(--green-700);
}

.footer-brand .logo-line-one {
    color: #fff;
}

.footer-brand .logo-line-two {
    color: rgba(255, 255, 255, 0.4);
}

.footer-tagline {
    font-size: 0.875rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.7;
    margin-top: 1rem;
    max-width: 260px;
}

.footer-heading {
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 1.25rem;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.footer-links a,
.footer-links span {
    font-size: 0.875rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--green-300);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.footer-bottom p {
    font-size: 0.8125rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.3);
}

/* ── Mobile Overlay ───────────────────────────────────────── */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(11, 34, 24, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 99;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
    pointer-events: all;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-subtitle {
        max-width: 100%;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
    }

    .hero-image {
        max-width: 480px;
        margin: 0 auto;
        aspect-ratio: 4 / 3;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-image {
        max-width: 480px;
        margin: 0 auto;
        aspect-ratio: 4 / 3;
    }

    .about-content .section-label,
    .about-content .section-title {
        text-align: center;
    }

    .about-content p {
        text-align: center;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .contact-info .section-label,
    .contact-info .section-title {
        text-align: center;
    }

    .contact-intro {
        text-align: center;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .line-deco {
        left: 1.5rem;
    }

    .nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        background: var(--off-white);
        padding: 6rem 2rem 2rem;
        transform: translateX(100%);
        transition: transform 0.35s ease;
        box-shadow: -8px 0 32px rgba(0, 0, 0, 0.1);
        z-index: 100;
    }

    .nav.open {
        transform: translateX(0);
    }

    .nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .nav li {
        width: 100%;
        border-bottom: 1px solid var(--line);
    }

    .nav li:last-child {
        border-bottom: none;
    }

    .nav a {
        display: block;
        padding: 1rem 0;
        font-size: 1rem;
    }

    .nav a::after {
        display: none;
    }

    .nav-cta {
        margin-top: 0.5rem;
        border: none;
        padding: 0;
        text-align: left;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding: 8rem 0 4rem;
    }

    .hero-title {
        font-size: clamp(1.875rem, 8vw, 2.5rem);
    }

    .services {
        padding: 4rem 0;
    }

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

    .about {
        padding: 4rem 0;
    }

    .why {
        padding: 4rem 0;
    }

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

    .testimonials {
        padding: 4rem 0;
    }

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

    .contact {
        padding: 4rem 0;
    }

    .contact-form-wrap {
        padding: 1.5rem;
    }

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

    .footer {
        padding: 3rem 0 0;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

    .hero-actions .btn {
        width: 100%;
    }

    .hero-trust {
        flex-direction: column;
        gap: 0.5rem;
    }

    .trust-sep {
        display: none;
    }
}

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

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
