body {
    font-family: 'Georgia', serif;
    min-height: 100vh;
    background: #d7c6aa;
    color: #333;
    margin: 0;
    padding: 0;
    opacity: 0;
    animation: fadeInPage 1.0s ease forwards;
}

:root {
    --ab-teal: #003942;
    --ab-teal-mid: #005a6a;
    --ab-gold: #c9a96e;
    --ab-gold-deep: #a07840;
    --ab-cream: #faf8f4;
    --ab-dark: #0b1c1f;
    --ab-muted: #6b7c74;
    --ab-text: #2a3830;
}

.about-page {
    font-family: 'DM Sans', sans-serif;
    background: var(--ab-cream);
    color: var(--ab-text);
    margin: 0;
}

/* ── NAVBAR ── */
.ab-navbar {
    background: var(--ab-dark) !important;
    border-bottom: 1px solid rgba(201, 169, 110, .18);
    padding: 1rem 0;
}

.ab-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.45rem;
    font-weight: 400;
    color: var(--ab-gold) !important;
    letter-spacing: .04em;
    text-decoration: none;
}

.ab-nav-link {
    font-size: .75rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .65) !important;
    text-decoration: none;
    transition: color .2s;
    padding: .25rem 0;
}

.ab-nav-link:hover {
    color: var(--ab-gold) !important;
}

#serviceBox {
    border: 1px solid gray;
    border-radius: 10px;
    background: #fff8f0;
    position: relative;
    overflow: hidden;

}

.navbar.navbar-expand-lg.custom-navbar.sticky-top {
    background-color: #907f64;
}

.navbar navbar-light bg-light {
    background-color: #907f64;
}

.navText {
    color: burlywood;
    text-decoration: none;
    font-family: 'Cormorant Garamond', serif;
    font-size: large;
}

.navText:hover {
    color: white;
    font-style: italic;
}

/* ================================================================
   home.css — Iza's Craft homepage
   Save as style/home.css and link from index.html
   All classes prefixed home- to avoid conflicts with style.css
   ================================================================ */

:root {
    --home-teal: #003942;
    --home-teal-mid: #005a6a;
    --home-gold: #c9a96e;
    --home-gold-deep: #a07840;
    --home-cream: #d7c6aa;
    --home-dark: #0b1c1f;
    --home-muted: #6b7c74;
    --home-text: #2a3830;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--home-cream);
    color: var(--home-text);
}

/* ── NAVBAR ── */
.custom-navbar {
    background: var(--home-dark) !important;
    border-bottom: 1px solid rgba(201, 169, 110, .18);
    padding: 1rem 0;
}

.custom-navbar .navbar-brand,
.custom-navbar .navbar-brand .navText {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--home-gold) !important;
    letter-spacing: .04em;
}

.custom-navbar .navText,
.custom-navbar .navText a {
    font-family: 'DM Sans', sans-serif;
    font-size: .75rem;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .65) !important;
    text-decoration: none;
    font-weight: 400;
    transition: color .2s;
}

.custom-navbar .navText a:hover {
    color: var(--home-gold) !important;
}

/* ── HERO ── */
.home-hero {
    min-height: 92vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--home-dark);
    overflow: hidden;
}

.home-hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6rem 4rem 6rem 7rem;
    position: relative;
    z-index: 2;
}

.home-hero-left::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 0% 60%, rgba(201, 169, 110, .08) 0%, transparent 65%);
    pointer-events: none;
}

.home-hero-eyebrow {
    font-size: .7rem;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--home-gold);
    margin-bottom: 1.75rem;
    display: flex;
    align-items: center;
    gap: .8rem;
    opacity: 0;
    animation: homeFadeUp .7s .1s forwards;
}

.home-hero-eyebrow::before {
    content: '';
    display: inline-block;
    width: 36px;
    height: 1px;
    background: var(--home-gold);
}

.home-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 4.5vw, 5.8rem);
    font-weight: 300;
    line-height: 1.04;
    color: #fff;
    margin-bottom: 2rem;
    opacity: 0;
    animation: homeFadeUp .7s .25s forwards;
}

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

.home-hero-desc {
    font-size: .92rem;
    color: rgba(255, 255, 255, .5);
    line-height: 1.85;
    max-width: 360px;
    margin-bottom: 3rem;
    opacity: 0;
    animation: homeFadeUp .7s .4s forwards;
}

.home-hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: homeFadeUp .7s .55s forwards;
}

.home-hero-right {
    position: relative;
    overflow: hidden;
}

.home-hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    filter: brightness(.8) saturate(.85);
}

.home-hero-right::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--home-dark) 0%, rgba(11, 28, 31, .25) 40%, transparent 70%);
    z-index: 1;
}

/* ── BUTTONS ── */
.home-btn-primary {
    display: inline-block;
    background: var(--home-gold);
    color: var(--home-dark);
    padding: .9rem 2.4rem;
    font-size: .78rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-weight: 500;
    text-decoration: none;
    border: none;
    font-family: 'DM Sans', sans-serif;
    transition: background .25s, transform .2s, color .2s;
}

.home-btn-primary:hover {
    background: var(--home-gold-deep);
    color: #fff;
    transform: translateY(-2px);
}

.home-btn-ghost {
    display: inline-block;
    background: transparent;
    color: rgba(255, 255, 255, .7);
    border: 1px solid rgba(201, 169, 110, .35);
    padding: .9rem 2.4rem;
    font-size: .78rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    text-decoration: none;
    font-family: 'DM Sans', sans-serif;
    transition: border-color .25s, color .25s;
}

.home-btn-ghost:hover {
    border-color: var(--home-gold);
    color: var(--home-gold);
}



/* ── MARQUEE ── */
.home-marquee-strip {
    background: var(--home-gold);
    overflow: hidden;
    padding: .7rem 0;
}

.home-marquee-track {
    display: flex;
    width: max-content;
    animation: homeMarquee 24s linear infinite;
}

.home-marquee-item {
    white-space: nowrap;
    font-size: .7rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--home-dark);
    font-weight: 500;
    padding: 0 2rem;
    font-family: 'DM Sans', sans-serif;
}

.home-marquee-dot {
    color: var(--home-dark);
    opacity: .35;
}

/* ── SHARED SECTION HELPERS ── */
.home-section-tag {
    font-size: .68rem;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--home-gold);
    margin-bottom: 1rem;
    font-family: 'DM Sans', sans-serif;
    display: block;
}

.home-section-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--home-teal);
    margin-bottom: 1.5rem;
}

.home-section-heading em {
    font-style: italic;
    color: var(--home-gold);
}

.home-section-heading--light {
    color: #fff;
}

.home-section-body {
    font-size: .92rem;
    color: var(--home-muted);
    line-height: 1.9;
    margin-bottom: 1.25rem;
}

/* ── ABOUT ── */
.home-about-section {
    padding: 8rem 0;
    background: var(--home-cream);
}

.home-about-grid {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.home-about-img-wrap {
    position: relative;
}

.home-about-img-wrap img {
    width: 100%;
    height: 540px;
    object-fit: cover;
    object-position: top;
    display: block;
    border: 3px solid var(--home-teal);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .15);
}

.home-about-img-wrap::before {
    content: '';
    position: absolute;
    top: -16px;
    left: -16px;
    right: 16px;
    bottom: 16px;
    border: 1px solid var(--home-gold);
    opacity: .3;
    border-radius: 12px;
}

/* ── SERVICES ── */
.home-services-section {
    padding: 8rem 0;
    background: var(--home-dark);
}

.home-services-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

.home-services-sub {
    font-size: .85rem;
    color: rgba(255, 255, 255, .4);
    margin-bottom: 3rem;
    font-family: 'DM Sans', sans-serif;
}

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

.home-service-card {
    border: 1px solid rgba(201, 169, 110, .13);
    padding: 2rem 1.75rem;
    background: rgba(255, 255, 255, .03);
    transition: all .3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.home-service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--home-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s ease;
}

.home-service-card:hover {
    background: rgba(201, 169, 110, .06);
    transform: translateY(-4px);
    text-decoration: none;
}

.home-service-card:hover::after {
    transform: scaleX(1);
}

.home-service-icon {
    font-size: 1.6rem;
}

.home-service-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: #fff;
    font-weight: 400;
}

.home-service-details {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: .3rem;
    flex: 1;
}

.home-service-details li {
    font-size: .8rem;
    color: rgba(255, 255, 255, .45);
    font-family: 'DM Sans', sans-serif;
    padding-left: .75rem;
    position: relative;
}

.home-service-details li::before {
    content: '–';
    position: absolute;
    left: 0;
    color: var(--home-gold);
    opacity: .6;
}

.home-service-cta {
    font-size: .72rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--home-gold);
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    margin-top: .5rem;
    transition: letter-spacing .2s;
}

.home-service-card:hover .home-service-cta {
    letter-spacing: .18em;
}

/* CTA card variant */
.home-service-card--cta {
    background: rgba(201, 169, 110, .07);
    border-color: rgba(201, 169, 110, .3);
    justify-content: center;
    align-items: flex-start;
    text-align: left;
}

.home-service-book-text {
    font-size: .82rem;
    color: rgba(255, 255, 255, .45);
    line-height: 1.7;
    margin: 0;
    font-family: 'DM Sans', sans-serif;
    flex: 1;
}

.home-service-cta--bold {
    font-size: .78rem;
    letter-spacing: .14em;
    color: var(--home-gold);
    font-weight: 600;
}

/* ── POLICIES ── */
.home-policies-section {
    padding: 8rem 0;
    background: #eef4f4;
}

.home-policies-inner {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 2rem;
}

.home-policies-list {
    list-style: none;
    margin-top: 3rem;
    padding: 0;
}

.home-policies-list li {
    display: flex;
    gap: 1.25rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(0, 57, 66, .09);
    font-size: .9rem;
    color: var(--home-text);
    line-height: 1.75;
}

.home-policies-list li:last-child {
    border-bottom: none;
}

.home-pol-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--home-gold);
    font-weight: 300;
    min-width: 28px;
    margin-top: .05rem;
    flex-shrink: 0;
}

/* ── HOURS + CTA ── */
.home-hours-section {
    padding: 8rem 0;
    background: var(--home-cream);
}

.home-hours-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.home-hours-rows {
    margin-top: 2.5rem;
}

.home-hours-row {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, .07);
    font-size: .9rem;
}

.home-hours-row:last-child {
    border-bottom: none;
}

.home-h-day {
    color: var(--home-text);
}

.home-h-time {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--home-teal);
}

.home-h-closed {
    font-size: .72rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #c0392b;
    font-family: 'DM Sans', sans-serif;
}

.home-cta-card {
    background: var(--home-teal);
    padding: 3.5rem;
    border-radius: 4px;
}

.home-cta-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 300;
    color: #fff;
    margin-bottom: .75rem;
}

.home-cta-body {
    font-size: .88rem;
    color: rgba(255, 255, 255, .55);
    line-height: 1.75;
    margin-bottom: 2.25rem;
}

/* ── REVEAL ── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .65s ease, transform .65s ease;
}

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

/* ── KEYFRAMES ── */
@keyframes homeFadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes homeMarquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .home-hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .home-hero-left {
        padding: 4rem 2rem;
        order: 2;
    }

    .home-hero-right {
        height: 55vw;
        order: 1;
    }

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

    .home-hero-right::before {
        background: linear-gradient(to top, var(--home-dark) 0%, transparent 50%);
    }

    .home-hero-badge {
        left: 1rem;
        bottom: 1rem;
    }

    .home-about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .home-about-img-wrap img {
        height: 380px;
    }

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

    .home-hours-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 600px) {
    .home-services-grid {
        grid-template-columns: 1fr;
    }

    .home-hero-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .col-md-10 {
        padding: 0 1rem;
    }

    .stepper {
        gap: 0.5rem;
    }

    .stepper p {
        font-size: .7rem;
    }

    #step2-content {
        max-width: 100%;
        padding: 0 1rem;
    }

    .flatpickr-calendar {
        min-width: 0 !important;
        width: 98vw !important;
    }

    .continueButton {
        width: calc(100% - 2rem);
        margin: 16px auto;
    }

    #emailFormContainer {
        padding: 0 1rem;
    }
}

/* ── HERO BANNER ── */
.ab-hero {
    background: var(--ab-dark);
    text-align: center;
    padding: 6rem 2rem 5rem;
    position: relative;
    overflow: hidden;

}

.ab-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(201, 169, 110, .07) 0%, transparent 65%);
    pointer-events: none;
}

.ab-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--ab-gold), transparent);
}

.ab-hero-eyebrow {
    font-size: .68rem;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--ab-gold);
    margin-bottom: 1rem;
    font-family: 'DM Sans', sans-serif;
    opacity: 0;
    animation: abFadeUp .6s .1s forwards;
}

.ab-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 300;
    color: #fff;
    line-height: 1.05;
    margin-bottom: .75rem;
    opacity: 0;
    animation: abFadeUp .6s .25s forwards;
}

.aboutBody {
    font-size: .90rem;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--ab-gold);
    margin-bottom: 1rem;
    font-family: 'DM Sans', sans-serif;
    display: block;
}

.ab-section {
    padding: 8rem 0;
    background: #0b1c1f;
}

.about-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

.ab-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 300;
    line-height: 1.15;
    color: white;
    margin-bottom: 1.5rem;
}

.ab-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6rem;
    align-items: center;
    margin-top: 3.5rem;
}

.ab-card {
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(201, 169, 110, .13);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    transition: box-shadow .3s, transform .3s;
    position: relative;
}

.ab-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: var(--ab-gold);
    font-weight: 300;
    margin-bottom: .5rem;
}

.ab-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: #fff;
}

.ab-text {
    font-size: 1rem;
    color: #fff;
    line-height: 1.75;
    margin-top: .75rem;
}

.ab-banner {
    background: var(--ab-teal);
    color: #fff;
    padding: 3.5rem 2rem;
    text-align: center;
}

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

.ab-btn {
    display: inline-block;
    background: var(--ab-gold);
    color: var(--ab-dark);
    padding: .9rem 2.4rem;
    font-size: .78rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-weight: 500;
    text-decoration: none;
    border: none;
    font-family: 'DM Sans', sans-serif;
    transition: background .25s, transform .2s, color .2s;
}

.ab-btn:hover {
    background: var(--ab-gold-deep);
    color: #fff;
    transform: translateY(-2px);
    transition: background .25s, transform .2s, color .2s, font-size .2s;
}

.ab-intro-grid {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.ab-hero-sub {
    font-size: .9rem;
    color: rgba(255, 255, 255, .4);
    font-family: 'DM Sans', sans-serif;
    letter-spacing: .08em;
    opacity: 0;
    animation: abFadeUp .6s .4s forwards;
}

/* ── KEYFRAMES ── */
@keyframes abFadeUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ab-img-wrap img {
    width: 100%;
    height: 580px;
    object-fit: cover;
    object-position: top;
    display: block;
    border: 3px solid #003942;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .15);
}

@media (max-width: 900px) {
    .rv-reviews-grid {
        grid-template-columns: 1fr 1fr;
    }

    .rv-main {
        padding: 0 1.5rem;
    }

    .rv-form-inner {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 600px) {
    .rv-reviews-grid {
        grid-template-columns: 1fr;
    }

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

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

    .rv-form-section {
        padding: 3rem 0 4rem;
    }

    .rv-reviews-section {
        padding: 3rem 0 2rem;
    }

    .rv-main {
        padding: 0 1rem;
    }

    .rv-form-inner {
        padding: 1.5rem 1rem;
        margin: 0 1rem;
    }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .ab-intro-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .ab-img-wrap img {
        height: 400px;
    }

    .ab-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 600px) {
    .ab-hero {
        padding: 4rem 1.5rem 4rem;
    }

    .ab-intro-section {
        padding: 5rem 0;

    }


    .ab-cta-banner {
        padding: 4rem 1.5rem;
    }

    .ab-hero {
        padding: 4rem 1.5rem 3.5rem;
    }

    .ab-section {
        padding: 4rem 0;
    }

    .ab-banner {
        padding: 3rem 1.5rem;
    }

    .about-inner {
        padding: 0 1.5rem;
    }
}

.aboutMeText {
    font-family: 'Cormorant Garamond', serif;
}

.rv-review-count {
    display: inline-block;
    font-size: .7rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    background: var(--ab-gold);
    padding: .45rem 1rem;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    opacity: 0;
    animation: rvFadeUp .6s .55s forwards;
}

.rv-main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

.rv-reviews-section {
    padding: 6rem 0 3rem;
}

.rv-reviews-inner {
    max-width: 100%;
}

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

.rv-card {
    background: #fff;
    border: 1px solid rgba(0, 57, 66, .09);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 57, 66, .06);
    transition: box-shadow .3s, transform .3s;
    display: flex;
    flex-direction: column;
}

.rv-card:hover {
    box-shadow: 0 12px 40px rgba(0, 57, 66, .13);
    transform: translateY(-4px);
}

.rv-card-photo {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: #f0ece4;
    flex-shrink: 0;
}

.rv-card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform .4s ease;
}

.rv-card:hover .rv-card-photo img {
    transform: scale(1.04);
}

.rv-card-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.rv-card-body--no-photo {
    padding-top: 1.5rem;
}

.rv-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: .5rem;
}

.rv-reviewer-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--ab-teal);
    margin: 0 0 .2rem;
}

.rv-date {
    font-size: .72rem;
    color: var(--ab-muted);
    letter-spacing: .05em;
    font-family: 'DM Sans', sans-serif;
}

.rv-stars {
    font-size: 1rem;
    color: #c69f35;
    letter-spacing: .05em;
    flex-shrink: 0;
}

.rv-review-text {
    font-size: .88rem;
    color: var(--ab-muted);
    line-height: 1.75;
    margin: 0;
    flex: 1;
}

.rv-form-section {
    padding: 6rem 0 8rem;
}

.rv-form-inner {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid rgba(0, 57, 66, .09);
    border-radius: 4px;
    padding: 3rem;
    box-shadow: 0 4px 24px rgba(0, 57, 66, .07);
}

.rv-form-header {
    margin-bottom: 2.5rem;
}

.rv-form-eyebrow {
    font-size: .68rem;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--ab-gold);
    margin-bottom: .75rem;
    font-family: 'DM Sans', sans-serif;
    display: block;
}

.rv-form-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--ab-teal);
    margin-bottom: .5rem;
}

.rv-form-title em {
    font-style: italic;
    color: var(--ab-gold);
}

.rv-form-sub {
    font-size: .85rem;
    color: var(--ab-muted);
    margin: 0;
}

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

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

.rv-field {
    display: flex;
    flex-direction: column;
    gap: .4rem;
}

.rv-label {
    font-size: .75rem;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--ab-teal);
    font-family: 'DM Sans', sans-serif;
}

.rv-input,
.rv-select,
.rv-textarea {
    width: 100%;
    padding: .8rem 1rem;
    border: 1px solid rgba(0, 57, 66, .2);
    border-radius: 4px;
    background: #fff;
    color: var(--ab-text);
    font-size: .9rem;
    font-family: 'DM Sans', sans-serif;
    transition: border-color .2s, box-shadow .2s;
}

.rv-input:focus,
.rv-select:focus,
.rv-textarea:focus {
    outline: none;
    border-color: var(--ab-gold);
    box-shadow: 0 0 0 3px rgba(201, 169, 110, .15);
}

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

.rv-select {
    appearance: none;
    background-repeat: no-repeat;
    background-position: right 1rem center;
    cursor: pointer;
}

.rv-submit-btn {
    display: inline-block;
    background: var(--ab-teal);
    color: #fff;
    padding: .9rem 2.4rem;
    font-size: .78rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-weight: 500;
    border: none;
    border-radius: 4px;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    transition: background .25s, transform .2s;
    align-self: flex-start;
}

.rv-submit-btn:hover {
    background: var(--ab-teal-mid);
    transform: translateY(-2px);
}

.rv-success {
    margin-top: 1.25rem;
    padding: 1rem 1.25rem;
    background: rgba(47, 133, 90, .08);
    border: 1px solid rgba(47, 133, 90, .2);
    border-radius: 4px;
    color: #276749;
    font-size: .88rem;
    font-family: 'DM Sans', sans-serif;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .65s ease, transform .65s ease;
}

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

@keyframes rvFadeUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.admin {
    list-style-type: none;
}

.admin a {
    text-decoration: none;
    font-style: italic;

}

body::before,
body::after {
    content: '';
    position: fixed;
    top: 0;
    width: 200px;
    height: 100%;
    z-index: -1;
    background-image: linear-gradient(180deg, #003942, #003942);
    clip-path: polygon(0 0, 70% 10%, 100% 90%, 0% 100%);
    animation: floatSide 6s ease-in-out infinite alternate;
    opacity: 0.3;
}

body::after {
    right: 0;
    left: auto;
    clip-path: polygon(0 10%, 100% 0, 100% 100%, 0 90%);
    animation-delay: 3s;
}

.bookingPolicies {
    border: #003942;
    border: solid 2px black
}

.booking-card {
    background: linear-gradient(145deg, #fff8f0, #f0e6d2);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.booking-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.booking-title {
    text-align: center;
    font-size: 2rem;
    font-family: 'Georgia', serif;
    font-style: italic;
    color: #003942;
    margin-bottom: 2rem;
}

/* Form rows */
.form-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Inputs */
.form-select,
#datePicker,
#emailInput {
    padding: 0.75rem 1rem;
    border-radius: 10px;
    border: 1px solid #b0915e;
    transition: all 0.3s ease;
}

.form-select:focus,
#datePicker:focus,
#emailInput:focus {
    border-color: #a67c52;
    box-shadow: 0 0 8px rgba(166, 124, 82, 0.4);
    outline: none;
}

/* Buttons */
#sigInBtn,
#confirmEmailBtn {
    display: inline-block;
    font-size: 1.1rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

#sigInBtn:hover,
#confirmEmailBtn:hover {
    transform: scale(1.05) rotate(-1deg);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Price Display */
#priceDisplay {
    font-weight: bold;
    font-size: 1.2rem;
    color: #a67c52;
    margin-top: 0.5rem;
    text-align: center;
}

/* Email Form Fade-in */
#emailFormContainer {
    display: none;
    transition: opacity 0.5s ease;
}

#emailFormContainer.show {
    display: block;
    opacity: 1;
}

.links a {
    display: flex;
    justify-content: end;
    align-items: center;
    text-decoration: none;
    font-weight: bold;
    color: white;
    font-size: medium;
    font-family: 'Times New Roman', Times, serif;
}

#wtext {
    margin: 20px;
    text-align: center;
    font-family: cursive, ;
    font-style: italic;
    line-height: 0.65;
    color: #003942;
    font-size: xx-large;
    font-weight: bold;
}

.wtexts {
    margin: 20px;
    text-align: center;
    line-height: 0.65;
    color: #003942;
    font-size: xx-large;
    font-weight: bold;
}

.serviceText {
    margin: 20px;
    text-align: center;
    color: #003942;
    font-size: x-large;
    font-weight: bold;
    margin-left: 25px;
}

.continueButton {
    background: linear-gradient(90deg, #7d5e3e, #a67c52);
    color: white;
    border: none;
    border-radius: 6px;
    padding: 0.75rem 1.5rem;
    font-weight: bold;
    transition: all 0.3s ease;
    display: block;
    margin: 20px auto;
}

.continueButton:hover {
    background: linear-gradient(90deg, #003942, #a67c52);
    color: white;
    border: none;
    border-radius: 6px;
    padding: 0.75rem 1.5rem;
    font-weight: bold;
    transition: all 0.3s ease;
    display: block;
    margin: 20px auto;
    zoom: 1.05;
}

.btn-outline-secondary {
    background: linear-gradient(90deg, #a67c52, #7d5e3e);
    color: white;
    border: none;
    border-radius: 6px;
    padding: 0.75rem 1.5rem;
    font-weight: bold;
    transition: all 0.3s ease;
    display: block;
}

.btn-outline-secondary:hover {
    background: linear-gradient(90deg, #877767, #a67c52);
    color: white;
    border: none;
    border-radius: 6px;
    padding: 0.75rem 1.5rem;
    font-weight: bold;
    transition: all 0.3s ease;
    transform: scale(1.05);
    display: block;
}

.subtext {
    margin: 20px;
    text-align: center;
    font-family: cursive, ;
    line-height: 0.65;
    color: #000000;
    font-size: xx-large;
    font-weight: bold;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

#text {
    display: block;
    text-align: center;
    font-family: 'Times New Roman', Times, serif, ;
    font-style: italic;
    color: #003942;
    font-size: large;
    list-style-type: circle;
}

.navbar {
    background: linear-gradient(90deg, #0b1c1f, #0b1c1f);
}

.stepper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.step {
    text-align: center;
    flex: 1;
    position: relative;
}

.circle {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #ccc;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
    font-weight: bold;
    transition: 0.3s;
}

.step.active .circle {
    background: #c89b3c;
    /* gold */
}

.step.completed .circle {
    background: #2f855a;
    /* green */
}

.line {
    height: 4px;
    background: #ccc;
    flex: 1;
}

.step.completed+.line {
    background: #2f855a;
}

#optionalText {
    text-align: center;
    font-family: 'Times New Roman', Times, serif, ;
    font-style: italic;
    color: #696969;
    font-size: large;
}

#wtext:hover {
    animation: fontCycle 0.3s infinite, colorCycle 2s infinite alternate;
}

#confirmEmailBtn {
    background: linear-gradient(90deg, #a67c52, #d7c6aa);
    color: white;
    border: none;
    border-radius: 6px;
    padding: 0.75rem 1.5rem;
    font-weight: bold;
    transition: all 0.3s ease;
    display: block;
    margin: 20px auto;
}

.footerText {
    font-size: medium;
}

.footercustom {
    background-color: #003942;
    color: #f5f5f5;
    padding: 60px 20px;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Each column */
.footer-grid>div {
    flex: 1;
}

/* Bottom copyright line */
.footercustom .border-t {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

/* Hidden state */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

/* When visible */
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

#confirmEmailBtn:hover {
    background: linear-gradient(90deg, #aa8967, #8e7b67);
    transform: scale(1.05);
}

select option[value="MenHairstyles"] {
    background-color: #f0e6d2;
    color: black;
    font-size: 16px;
    font-style: italic;
}

@keyframes colorCycle {
    0% {
        color: #003942;
    }

    50% {
        color: #a67c52;
    }

    100% {
        color: #003942;
    }
}

@keyframes fadeInPage {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fontCycle {
    0% {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif
    }

    33% {
        font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif
    }

    66% {
        font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif
    }

    100% {
        font-family: 'Times New Roman', Times, serif
    }
}

@keyframes floatSide {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(20px) rotate(2deg);
    }

    100% {
        transform: translateY(0) rotate(-2deg);
    }
}

.aboutRow {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1000px;
    margin: 30px auto;
    width: 90%;
}

.aboutLeft {
    flex: 1;
    justify-content: flex-start;
    max-width: 400px;
    margin: 20px;
    min-width: 200px;
    padding-right: 50px;
}

.aboutRight {
    flex: 1;
    justify-content: flex-end;
    flex-direction: column;
    align-items: end;
    margin: 20px;
    max-width: 400px;
    max-height: 400px;
    padding-left: 50px;
}

nav {
    background: #b0915e;
    padding: 1em;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    color: white;
    font-size: large;
    font-weight: 525;
}

.navbar-brand:hover {
    color: #caa260;
}

.nav-link {
    color: white;
    font-size: medium;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #caa260;
}


nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
}

nav li:hover {
    color: #d7c6aa;
}

nav li {
    margin: 0 1.5em;
}

h1,
h2 {
    font-family: 'Georgia', serif;
    color: #a67c52;
    margin-top: 0;
}

/* Card Styling */
.card {
    border: 2px solid #003942;
    border-radius: 16px;
    background: #fff8f0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
}

.card-body {
    padding: 2rem;
}

.card reveal {
    display: flex;
    justify-content: center;
    align-items: center;
}

.rating {
    font-size: 1.18rem;
    letter-spacing: 0.05em;
    color: #c69f35;
    margin-bottom: 1rem;
}

/* Opening Hours Styling */
.hoursList {
    margin-top: 1rem;
}

.hoursItem {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
}

.hours-item:last-child {
    border-bottom: none;
}

.day {
    font-weight: bold;
    color: #003942;
}

.time {
    color: #a67c52;
    font-weight: 500;
}

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

.form-select {
    border: 1px solid #644f23;
    border-radius: 6px;
    padding: 0.75rem;
    font-family: inherit;
    background: #ffffff;
}

.form-label {
    font-weight: bold;
    color: #003942;
    margin-bottom: 0.5rem;
}

.Braids {
    background-color: #eee;
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
}

.btn-primary {
    background: linear-gradient(90deg, #a67c52, #d7c6aa);
    color: white;
    border: none;
    border-radius: 6px;
    padding: 0.75rem 1.5rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(90deg, #aa8967, #8e7b67);
    transform: scale(1.05);
}

/* Container visibility is now handled by JavaScript */
.bookingPolicies {
    border: 2px solid white;
    background-color: #d7c6aa;
}

.bookingPolicies li {
    list-style-type: none;
}

#hairlengthContainer {
    display: none;
}

#hairQuantityContainer {
    display: none;
}

#hairTypeContainer {
    display: none;
}

#twistTypeContainer {
    display: none;
}

#datePicker {
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 18px 20px;
    font-size: 1.35rem;
    border: 2px solid #e0e0e0;
    border-radius: 14px;
    transition: all 0.3s ease;
    margin: 0 auto;
    box-sizing: bor der-box;
    text-align: center;
}

.step2-date-input {
    width: 38%;
    min-width: 250px;
    margin: 0 10px;
    text-align: center;
}

#step2-content {
    display: none;
    max-width: 80vw;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    padding: 1rem;
}

#datePicker {
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 18px 20px;
    font-size: 1.35rem;
    border: 2px solid #e0e0e0;
    border-radius: 14px;
    transition: all 0.3s ease;
    margin: 0 auto 1rem auto;
    box-sizing: border-box;
}

#step2-content .flatpickr-calendar {
    margin: 0 auto;
}

.flatpickr-calendar {
    width: min(900px, 97vw) !important;
    max-width: 980px !important;
    min-width: 520px !important;
    padding: 0 !important;
    box-sizing: border-box !important;
}

.flatpickr-months,
.flatpickr-weekdays,
.flatpickr-days,
.flatpickr-time {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: 0 !important;
    box-sizing: border-box !important;
}

.flatpickr-month {
    width: 100% !important;
    padding: 0.35rem 0.5rem 0.25rem 0.5rem !important;
    box-sizing: border-box !important;
}

.flatpickr-days .dayContainer {
    display: grid !important;
    grid-template-columns: repeat(7, minmax(0, 1fr)) !important;
    gap: 4px !important;
    padding: 0.3rem 0.2rem 0.5rem 0.2rem !important;
    margin: 0 !important;
}

.flatpickr-weekdays .flatpickr-weekday {
    padding: 0 0.05rem !important;
}

.flatpickr-day {
    margin: 0 !important;
}


/* Individual day */
.flatpickr-day {
    width: auto !important;
    min-width: 0 !important;
    height: 48px !important;
    line-height: 48px !important;
    border-radius: 10px !important;
    text-align: center !important;
    cursor: pointer !important;
    font-size: 1.15rem !important;
    transition: all 0.2s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}


/* Hover */
.flatpickr-day:hover {
    background: #f0f0f0;
}

/* Today */
.flatpickr-day.today {
    border: 1px solid #000;
}

/* Selected */
.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
    background: #000;
    color: #fff;
}

/* Disabled */
.flatpickr-day.disabled,
.flatpickr-day.flatpickr-disabled {
    color: #ccc;
    cursor: not-allowed;
}

/* Outside month */
.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay {
    color: #bbb;
}

/* Range middle */
.flatpickr-day.inRange {
    background: #e6e6e6;
}

/* Remove weird spacing issues */
.flatpickr-innerContainer {
    justify-content: center;
}

/* Optional: smooth animations */
.flatpickr-calendar.open {
    animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


#datePicker:focus {
    border-color: #ff7a59;
    box-shadow: 0 0 8px rgba(255, 122, 89, 0.3);
    outline: none;
}

#hairSizeContainer {
    display: none;
}

#fulaniHairstylesContainer {
    display: none;
}

#StitchBraidsAddContainer {
    display: none;
}

#locsHairstylesContainer {
    display: none;
}

#MenHairstylesContainer {
    display: none;
}

#designsContainer {
    display: none;
}

#alertContainer {
    color: #721c24;
    border-radius: 6px;
    margin-top: 1rem;
}

/* Contact Info Styling 
.contact-info p {
    margin-bottom: 1rem;
    color: #333;
}
*/
/* .contact-info i { 
    color: #a67c52;
    margin-right: 0.5rem;
    width: 20px;
}
*/
/* Responsive Design */
.carousel-inner {
    width: 100%;
    height: 400px;
    position: relative;
    /* background-image: url('../images/biege.jpg'); */
    background-size: cover;
    background-color: #003942;
    /* or 'contain' if you want the whole image visible */
    background-repeat: no-repeat;
    background-position: center;
    overflow: hidden;
}

.carousel-item.active {
    position: relative;
    opacity: 1;
    z-index: 1;
}

.carousel-item {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;

}

.carousel-item img {
    max-height: 100%;
    width: auto;
    object-fit: contain;
    object-position: center;
}

/* Optional: smaller on mobile */
@media (max-width: 768px) {
    .carousel-inner {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        flex-direction: column;
        gap: 2rem;
        padding: 0 1rem;
    }
}

.footer-grid>div {
    width: 100%;
}

.footercustom {
    padding: 40px 16px;
}

@media (max-width: 768px) {
    .aboutRow {
        flex-direction: column;
        align-items: center;
    }

    .aboutLeft,
    .aboutRight {
        padding: 0;
        margin: 10px;
        max-width: 100%;
    }

    :root {
        --teal: #003942;
        --teal-mid: #005a6a;
        --gold: #c9a96e;
        --gold-deep: #a07840;
        --cream: #f0e6d2;
        --dark: #0b1c1f;
        --muted: #6b7c74;
        --text: #2a3830;
    }

    /* ── BODY OVERRIDE for homepage ── */
    body {
        font-family: 'DM Sans', sans-serif;
        background: var(--cream);
        color: var(--text);
    }

    /* ── NAVBAR OVERRIDES ── */
    .custom-navbar {
        background: var(--dark) !important;
        border-bottom: 1px solid rgba(201, 169, 110, .18);
        padding: 1rem 0;
    }

    .custom-navbar .navbar-brand,
    .custom-navbar .navbar-brand .navText {
        font-family: 'Cormorant Garamond', serif;
        font-size: 1.5rem;
        color: var(--gold) !important;
        letter-spacing: .04em;
    }

    .custom-navbar .navText,
    .custom-navbar .navText a {
        font-family: 'DM Sans', sans-serif;
        font-size: .75rem;
        letter-spacing: .13em;
        text-transform: uppercase;
        color: rgba(255, 255, 255, .65) !important;
        text-decoration: none;
        font-weight: 400;
        transition: color .2s;
    }

    .custom-navbar .navText a:hover {
        color: var(--gold) !important;
    }

    /* ── HERO ── */
    .hero {
        min-height: 92vh;
        display: grid;
        grid-template-columns: 1fr 1fr;
        background: var(--dark);
        overflow: hidden;
        position: relative;
    }

    .hero-left {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 6rem 4rem 6rem 7rem;
        position: relative;
        z-index: 2;
    }

    .hero-left::after {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse at 0% 60%, rgba(201, 169, 110, .08) 0%, transparent 65%);
        pointer-events: none;
    }

    .hero-right {
        position: relative;
        overflow: hidden;
    }

    .hero-right img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top center;
        filter: brightness(.8) saturate(.85);
    }

    .hero-right::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(to right, var(--dark) 0%, rgba(11, 28, 31, .25) 40%, transparent 70%);
        z-index: 1;
    }

    /* ── MARQUEE ── */
    .marquee-strip {
        background: var(--gold);
        overflow: hidden;
        padding: .7rem 0;
    }

    .marquee-track {
        display: flex;
        width: max-content;
        animation: marquee 24s linear infinite;
    }

    .marquee-item {
        white-space: nowrap;
        font-size: .7rem;
        letter-spacing: .2em;
        text-transform: uppercase;
        color: var(--dark);
        font-weight: 500;
        padding: 0 2rem;
        font-family: 'DM Sans', sans-serif;
    }

    .marquee-dot {
        color: var(--dark);
        opacity: .35;
    }

    /* ── REVEAL ANIMATION ── */
    .reveal {
        opacity: 0;
        transform: translateY(28px);
        transition: opacity .65s ease, transform .65s ease;
    }

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

    /* ── KEYFRAMES ── */
    @keyframes fadeUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes marquee {
        from {
            transform: translateX(0);
        }

        to {
            transform: translateX(-50%);
        }
    }


}