/* =============================================
   DREAMIN' OF SUNSETS — Stylesheet
   Sunset Beach, NC Vacation Rental
   ============================================= */

/* =============================================
   CUSTOM PROPERTIES
   ============================================= */

:root {
    /* Colors */
    --cream:        #FAF8F4;
    --sand:         #EDE4D5;
    --sand-dark:    #DDD0BA;
    --gold:         #C9A96E;
    --gold-light:   #E4C98A;
    --ocean:        #3B7EA1;
    --ocean-dark:   #2A6080;
    --ocean-light:  #EBF4FA;
    --dark:         #1A2730;
    --dark-mid:     #2C3E50;
    --body-text:    #526070;
    --border:       #E0D5C5;

    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body:    'Inter', system-ui, -apple-system, sans-serif;

    /* Spacing */
    --nav-h:        72px;
    --section-py:   clamp(72px, 9vw, 128px);
    --container:    1200px;
    --narrow:       800px;
    --gap:          clamp(20px, 4vw, 48px);

    /* Shadows */
    --shadow-xs:    0 1px 4px rgba(26, 39, 48, 0.07);
    --shadow-sm:    0 2px 10px rgba(26, 39, 48, 0.09);
    --shadow-md:    0 8px 32px rgba(26, 39, 48, 0.13);
    --shadow-lg:    0 20px 60px rgba(26, 39, 48, 0.18);

    /* Misc */
    --radius:       14px;
    --radius-sm:    7px;
    --ease:         0.3s ease;
}

/* =============================================
   RESET & BASE
   ============================================= */

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

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

body {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--body-text);
    line-height: 1.72;
    overflow-x: hidden;
}

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

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* =============================================
   TYPOGRAPHY
   ============================================= */

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--dark);
    line-height: 1.18;
}

h1 { font-size: clamp(2.6rem, 6.5vw, 4.8rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4vw, 3rem);   font-weight: 600; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; }

p {
    margin-bottom: 1rem;
    max-width: 66ch;
}
p:last-child { margin-bottom: 0; }

.section-label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ocean);
    margin-bottom: 0.6rem;
}

.section-label--light { color: var(--gold); }

/* =============================================
   LAYOUT
   ============================================= */

.container {
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: clamp(20px, 5vw, 52px);
}

.container--narrow { max-width: var(--narrow); }

.section       { padding-block: var(--section-py); }
.section-alt   { background: var(--sand); }

.section-dark {
    background: var(--dark);
    color: #fff;
}
.section-dark h2     { color: #fff; }
.section-dark p      { color: rgba(255,255,255,0.72); }

.section-header {
    text-align: center;
    margin-bottom: clamp(44px, 6vw, 80px);
}
.section-header h2   { margin-block: 0.3em 0; }
.section-header p    { margin: 0.9rem auto 0; max-width: 52ch; color: var(--body-text); }
.section-dark .section-header p { color: rgba(255,255,255,0.65); }

/* =============================================
   BUTTONS
   ============================================= */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 36px;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.025em;
    cursor: pointer;
    transition: all var(--ease);
    border: none;
    line-height: 1;
}

.btn-primary {
    background: var(--ocean);
    color: #fff;
    box-shadow: 0 4px 16px rgba(59, 126, 161, 0.35);
}
.btn-primary:hover {
    background: var(--ocean-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(59, 126, 161, 0.45);
}

/* =============================================
   NAVIGATION
   ============================================= */

#navbar {
    position: fixed;
    inset-block-start: 0;
    inset-inline: 0;
    z-index: 900;
    height: var(--nav-h);
    transition: background var(--ease), box-shadow var(--ease);
}

#navbar.scrolled {
    background: rgba(250, 248, 244, 0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: clamp(20px, 5vw, 52px);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    transition: color var(--ease);
    flex-shrink: 0;
}
#navbar.scrolled .nav-logo { color: var(--dark); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.8rem;
}

.nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255,255,255,0.88);
    transition: color var(--ease);
    white-space: nowrap;
}
#navbar.scrolled .nav-links a { color: var(--body-text); }

.nav-links a:hover,
.nav-links a.active { color: var(--ocean); }
#navbar.scrolled .nav-links a:hover,
#navbar.scrolled .nav-links a.active { color: var(--ocean); }

.nav-cta {
    background: var(--ocean) !important;
    color: #fff !important;
    padding: 9px 22px;
    border-radius: var(--radius-sm);
}
.nav-cta:hover {
    background: var(--ocean-dark) !important;
    color: #fff !important;
}

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    flex-shrink: 0;
}
.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all var(--ease);
}
#navbar.scrolled .nav-toggle span { background: var(--dark); }

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =============================================
   HERO
   ============================================= */

#hero {
    position: relative;
    height: 100svh;
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background:
        url('images/651414757_10225190986601571_933038325625862231_n.jpg')
        center / cover no-repeat;
    color: #fff;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        rgba(18, 32, 46, 0.5) 0%,
        rgba(18, 32, 46, 0.45) 50%,
        rgba(18, 32, 46, 0.65) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 820px;
    padding-inline: 24px;
    animation: hero-fade-up 1.1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes hero-fade-up {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 0.9rem;
    max-width: none;
}

.hero-content h1 {
    color: #fff;
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 24px rgba(0,0,0,0.25);
}

.hero-tagline {
    font-size: clamp(1rem, 2.2vw, 1.3rem);
    font-weight: 300;
    color: rgba(255,255,255,0.82);
    margin-bottom: 2.5rem;
    letter-spacing: 0.02em;
    max-width: none;
}

/* Scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}
.hero-scroll-indicator span {
    display: block;
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 12px;
    position: relative;
}
.hero-scroll-indicator span::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: rgba(255,255,255,0.75);
    border-radius: 2px;
    animation: scroll-pulse 2.2s infinite;
}
@keyframes scroll-pulse {
    0%, 100% { opacity: 1;   transform: translateX(-50%) translateY(0);   }
    60%       { opacity: 0.2; transform: translateX(-50%) translateY(10px); }
}

.hero-scroll-finger {
    display: none;
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    font-size: 1.75rem;
    color: rgba(255,255,255,0.7);
    animation: finger-bounce 2.2s infinite;
}
@keyframes finger-bounce {
    0%, 100% { opacity: 1;   transform: translateX(-50%) translateY(0);   }
    60%       { opacity: 0.3; transform: translateX(-50%) translateY(10px); }
}

/* =============================================
   ABOUT
   ============================================= */

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 7vw, 96px);
    align-items: center;
}

.about-text .section-label { display: block; }

.about-text h2 { margin-bottom: 1.4rem; }

.about-text p { color: var(--body-text); }

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border);
}

.stat { text-align: center; }

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--ocean);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--body-text);
    opacity: 0.75;
}

.about-image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.65s ease;
}
.about-image:hover img { transform: scale(1.035); }

/* =============================================
   GALLERY
   ============================================= */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 230px;
    gap: 10px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-sm);
    cursor: pointer;
    background: var(--sand);
}

.gallery-item--tall { grid-row: span 2; }
.gallery-item--wide { grid-column: span 2; }

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 39, 48, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--ease);
}

.gallery-overlay span {
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity var(--ease), transform var(--ease);
}

.gallery-item:hover img            { transform: scale(1.06); }
.gallery-item:hover .gallery-overlay { background: rgba(26, 39, 48, 0.42); }
.gallery-item:hover .gallery-overlay span,
.gallery-item:focus-visible .gallery-overlay span {
    opacity: 1;
    transform: translateY(0);
}
.gallery-item:focus-visible { outline: 3px solid var(--ocean); outline-offset: 3px; }

/* =============================================
   LIGHTBOX
   ============================================= */

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(8, 14, 20, 0.95);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease;
}

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

.lightbox-inner {
    max-width: 90vw;
    max-height: 90vh;
    text-align: center;
}

.lightbox-inner img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    transition: opacity 0.2s ease;
}

.lightbox-inner p {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    margin-top: 1rem;
    max-width: none;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: fixed;
    width: 46px;
    height: 46px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.18);
    color: #fff;
    font-size: 1.3rem;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--ease), transform var(--ease);
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255,255,255,0.22);
}

.lightbox-close { top: 20px; right: 20px; font-size: 1.6rem; }
.lightbox-prev  { left: 20px;  top: 50%; transform: translateY(-50%); }
.lightbox-next  { right: 20px; top: 50%; transform: translateY(-50%); }

.lightbox-prev:hover { transform: translateY(-50%) translateX(-2px); }
.lightbox-next:hover { transform: translateY(-50%) translateX(2px); }

/* =============================================
   AMENITIES
   ============================================= */

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 14px;
}

.amenity-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 16px 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
    text-align: center;
}

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

.amenity-icon {
    font-size: 1.6rem;
    line-height: 1;
    color: var(--ocean);
}

.amenity-label {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--dark-mid);
}

/* =============================================
   LOCAL ATTRACTIONS
   ============================================= */

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

.attraction-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    transition: transform var(--ease), box-shadow var(--ease);
}

.attraction-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-md);
}

.attraction-img {
    height: 200px;
    overflow: hidden;
    flex-shrink: 0;
}

.attraction-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}

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

.attraction-body {
    padding: 22px 24px 26px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.attraction-tag {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--ocean);
}

.attraction-body h3 { margin: 0; }

.attraction-body p {
    font-size: 0.88rem;
    line-height: 1.65;
    color: var(--body-text);
    flex: 1;
    max-width: none;
    margin: 0;
}

.attraction-distance {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--gold);
    margin-top: 10px;
}

.attraction-map-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--ocean);
    padding: 6px 0;
    transition: color var(--ease);
}

.attraction-map-link:hover { color: var(--ocean-dark); }

/* =============================================
   FAQ / ACCORDION
   ============================================= */

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

.accordion-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: box-shadow var(--ease);
}

.accordion-item:has(.accordion-header[aria-expanded="true"]) {
    box-shadow: var(--shadow-sm);
    border-color: var(--ocean);
}

.accordion-header {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.98rem;
    font-weight: 500;
    color: var(--dark);
    text-align: left;
    transition: color var(--ease);
}

.accordion-header:hover { color: var(--ocean); }
.accordion-header[aria-expanded="true"] { color: var(--ocean); }

.accordion-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--ocean);
    transition: transform 0.32s ease;
}

.accordion-header[aria-expanded="true"] .accordion-icon {
    transform: rotate(180deg);
}

.accordion-body {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s ease;
}

.accordion-body.open {
    grid-template-rows: 1fr;
}

.accordion-body-inner {
    overflow: hidden;
}

.accordion-body p {
    padding: 0 24px 22px;
    font-size: 0.92rem;
    color: var(--body-text);
    max-width: none;
    margin: 0;
}

/* =============================================
   CONTACT
   ============================================= */

.contact-inner {
    text-align: center;
    max-width: 680px;
    margin-inline: auto;
}

.contact-inner h2  { margin-block: 0.4em 0.8em; }

.contact-methods {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 2.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.11);
    border-radius: var(--radius);
    padding: 20px 28px;
    min-width: 210px;
    transition: background var(--ease), border-color var(--ease), transform var(--ease);
}

.contact-item:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--gold);
    transform: translateY(-3px);
}

.contact-icon { font-size: 1.7rem; line-height: 1; flex-shrink: 0; }

.contact-details { text-align: left; }

.contact-type {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 3px;
}

.contact-value {
    display: block;
    font-size: 0.93rem;
    font-weight: 500;
    color: rgba(255,255,255,0.88);
    overflow-wrap: break-word;
    word-break: break-word;
}

/* =============================================
   FOOTER
   ============================================= */

.footer {
    background: #10181F;
    padding-block: 56px;
    text-align: center;
    color: rgba(255,255,255,0.4);
}

.footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
    max-width: none;
}

.footer-location {
    font-size: 0.82rem;
    margin-bottom: 1.8rem;
    max-width: none;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 22px;
    margin-bottom: 2rem;
}

.footer-nav a {
    font-size: 0.83rem;
    color: rgba(255,255,255,0.45);
    transition: color var(--ease);
}
.footer-nav a:hover { color: var(--gold); }

.footer-copy {
    font-size: 0.78rem;
    max-width: none;
}

/* =============================================
   SCROLL REVEAL
   ============================================= */

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.72s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.72s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right {
    transform: translateX(36px);
}

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

/* =============================================
   RESPONSIVE — 1024px (tablet landscape)
   ============================================= */

@media (max-width: 1024px) {
    .attractions-grid { grid-template-columns: repeat(2, 1fr); }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 200px;
    }
}

/* =============================================
   RESPONSIVE — 768px (tablet portrait)
   ============================================= */

@media (max-width: 768px) {
    .hero-scroll-indicator { display: none; }
    .hero-scroll-finger    { display: block; }

    /* Mobile nav */
    .nav-toggle { display: flex; }

    .nav-links {
        position: fixed;
        top: var(--nav-h);
        inset-inline: 0;
        background: var(--cream);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding-block: 8px;
        box-shadow: var(--shadow-md);
        transform: translateY(-110%);
        opacity: 0;
        pointer-events: none;
        transition: transform var(--ease), opacity var(--ease);
    }

    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-links li { border-bottom: 1px solid var(--border); }
    .nav-links li:last-child { border-bottom: none; }

    .nav-links a {
        display: block;
        padding: 14px 24px;
        color: var(--body-text) !important;
        font-size: 1rem;
    }

    .nav-cta {
        background: none !important;
        padding: 14px 24px !important;
        border-radius: 0 !important;
        color: var(--ocean) !important;
    }

    /* About */
    .about-grid {
        grid-template-columns: 1fr;
    }
    .about-image {
        order: -1;
        max-height: 380px;
    }
    .about-stats { grid-template-columns: repeat(2, 1fr); }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 210px;
    }
    .gallery-item--wide { grid-column: span 1; }
    .gallery-item--tall { grid-row: span 1; }

    /* Attractions */
    .attractions-grid { grid-template-columns: 1fr; }

    /* Contact */
    .contact-methods { flex-direction: column; align-items: stretch; }
    .contact-item { min-width: auto; }
}

/* =============================================
   RESPONSIVE — 480px (phone)
   ============================================= */

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 180px;
    }

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

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    .stat-number { font-size: 1.6rem; }

    .accordion-header { padding: 16px 18px; font-size: 0.93rem; }
    .accordion-body p  { padding: 0 18px 18px; }
}

/* =============================================
   REDUCED MOTION
   ============================================= */

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
    .reveal { opacity: 1; transform: none; }
}
