:root {
    --bg: #f6f1eb;
    --ink: #1f1f1f;
    --accent: #c85a28;
    --accent-dark: #9a3f18;
    --card: #fffaf6;
    --muted: #6d625a;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Trebuchet MS", "Segoe UI", sans-serif;
    color: var(--ink);
    background-image: url("https://images.unsplash.com/photo-1445205170230-053b83016050?auto=format&fit=crop&w=1600&q=80");
    background-size: cover;
    background-position: center top;
    background-attachment: fixed;
}

.hero {
    position: relative;
    min-height: 100vh;
    padding: 24px 24px 56px;
    background: transparent;
}

.hero-overlay {
    position: fixed;
    inset: 0;
    background: linear-gradient(120deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.35));
    z-index: 1;
    pointer-events: none;
}

.topbar,
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
}

.hero-stage {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 72px auto 0;
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
    gap: 22px;
    align-items: center;
}

.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    color: #ffffff;
    letter-spacing: 1px;
    font-size: 1.8rem;
}

.hero-content {
    margin-top: 0;
    max-width: 650px;
    color: #ffffff;
    animation: reveal 650ms ease-out;
}

.hero-mini-highlights {
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hero-mini-highlights span {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 0.84rem;
}

.hero-stats {
    margin-top: 14px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.hero-stats article {
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 10px;
    padding: 10px;
}

.hero-stats strong {
    font-size: 1.1rem;
}

.hero-stats p {
    margin: 4px 0 0;
    font-size: 0.84rem;
    line-height: 1.2;
    color: rgba(255, 255, 255, 0.86);
}

.badge {
    display: inline-block;
    background: rgba(200, 90, 40, 0.95);
    color: #fff;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.78rem;
    letter-spacing: 0.8px;
    margin-bottom: 14px;
}

.hero-content h2 {
    font-size: clamp(2.3rem, 4.9vw, 4.1rem);
    line-height: 1.1;
    margin-bottom: 14px;
    text-shadow: 0 6px 20px rgba(0, 0, 0, 0.45);
}

.hero-content p {
    font-size: 1.12rem;
    line-height: 1.7;
    margin-bottom: 22px;
}

.hero-spotlight {
    position: relative;
    min-height: 360px;
    animation: reveal 850ms ease-out;
}

.spotlight-card {
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.07));
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 14px;
    backdrop-filter: blur(3px);
    padding: 16px;
    color: #fff;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
    opacity: 0;
    transform: translateY(10px) scale(0.98);
    transition: opacity 0.55s ease, transform 0.55s ease;
    pointer-events: none;
    overflow: hidden;
}

.spotlight-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: saturate(0.95) brightness(0.58) contrast(1.05);
}

.spotlight-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(150deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.5));
    z-index: 1;
}

.spotlight-card > *:not(.spotlight-media) {
    position: relative;
    z-index: 2;
}

.spotlight-card.is-active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.spotlight-card h3 {
    font-size: 1.55rem;
    margin-bottom: 8px;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.55);
}

.spotlight-card p {
    margin-bottom: 10px;
    line-height: 1.55;
    font-size: 1.03rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}

.spotlight-card a {
    display: inline-block;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    font-size: 1rem;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.85);
    padding-bottom: 2px;
}

.spotlight-tag {
    width: fit-content;
    font-size: 0.8rem;
    letter-spacing: 0.7px;
    background: rgba(200, 90, 40, 0.95);
    border-radius: 999px;
    padding: 5px 9px;
    margin-bottom: 10px;
}

.spotlight-card.pulse {
    animation: pulseGlow 2.3s ease-in-out infinite;
}

.spotlight-card.float {
    animation: floatCard 3.6s ease-in-out infinite;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-ghost,
.btn-outline {
    text-decoration: none;
    display: inline-block;
    padding: 10px 18px;
    border-radius: 10px;
    font-weight: 700;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
}

.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.38);
    color: #fff;
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.26);
}

.btn-outline {
    border: 1px solid #fff;
    color: #fff;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
}

.content {
    max-width: 1100px;
    margin: -36px auto 40px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

footer {
    position: relative;
    z-index: 2;
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.card {
    background: var(--card);
    border: 1px solid #e7d8ca;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
    animation: popin 700ms ease both;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover,
.slide-card:hover,
.mini-card:hover,
.quick-benefits article:hover,
.reviews article:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16);
}

.cards .card:nth-child(1) { animation-delay: 0.05s; }
.cards .card:nth-child(2) { animation-delay: 0.16s; }
.cards .card:nth-child(3) { animation-delay: 0.27s; }

.card h3 {
    margin-bottom: 8px;
}

.card p {
    color: var(--muted);
    margin-bottom: 10px;
    line-height: 1.5;
}

.card span {
    color: var(--accent-dark);
    font-weight: 700;
}

.promo {
    margin-top: 20px;
    background: #1f1f1f;
    color: #fff;
    border-radius: 14px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.showcase {
    margin-top: 26px;
    background: rgba(255, 255, 255, 0.68);
    border: 1px solid #e6d8ca;
    border-radius: 14px;
    padding: 18px;
    backdrop-filter: blur(3px);
}

.showcase.alt {
    background: #fff7f0;
}

.section-head {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: end;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.section-head p {
    color: var(--muted);
}

.carousel {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(280px, 280px);
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 6px;
}

.carousel::-webkit-scrollbar {
    height: 8px;
}

.carousel::-webkit-scrollbar-thumb {
    background: #ccb7a6;
    border-radius: 999px;
}

.slide-card,
.mini-card {
    scroll-snap-align: start;
}

.slide-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #eadfce;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    animation: popin 650ms ease both;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.carousel .slide-card:nth-child(1) { animation-delay: 0.03s; }
.carousel .slide-card:nth-child(2) { animation-delay: 0.11s; }
.carousel .slide-card:nth-child(3) { animation-delay: 0.19s; }
.carousel .slide-card:nth-child(4) { animation-delay: 0.27s; }

.slide-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
}

.slide-card div {
    padding: 12px;
}

.slide-card h4 {
    margin-bottom: 6px;
}

.slide-card p {
    color: var(--muted);
    line-height: 1.45;
}

.quick-benefits {
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.quick-benefits article {
    background: #fff;
    border: 1px solid #e8d9ca;
    border-radius: 12px;
    padding: 14px;
    animation: popin 700ms ease both;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.quick-benefits h4 {
    margin-bottom: 6px;
}

.quick-benefits p {
    color: var(--muted);
    line-height: 1.45;
}

.carousel.compact {
    grid-auto-columns: minmax(200px, 230px);
}

.mini-card {
    background: #fff;
    border: 1px solid #eadfce;
    border-radius: 12px;
    padding: 14px;
    display: grid;
    gap: 8px;
    animation: popin 650ms ease both;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.carousel.compact .mini-card:nth-child(1) { animation-delay: 0.03s; }
.carousel.compact .mini-card:nth-child(2) { animation-delay: 0.1s; }
.carousel.compact .mini-card:nth-child(3) { animation-delay: 0.17s; }
.carousel.compact .mini-card:nth-child(4) { animation-delay: 0.24s; }

.mini-card p {
    color: var(--muted);
    line-height: 1.4;
}

.mini-card strong {
    color: var(--accent-dark);
}

.tag {
    width: fit-content;
    font-size: 0.72rem;
    letter-spacing: 0.4px;
    background: #1f1f1f;
    color: #fff;
    border-radius: 999px;
    padding: 4px 8px;
}

.social-proof {
    margin-top: 24px;
    margin-bottom: 8px;
}

.social-proof h3 {
    margin-bottom: 12px;
    color: #f8f3ec;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.45);
}

.reviews {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.reviews article {
    background: #fff;
    border: 1px solid #eadfce;
    border-radius: 12px;
    padding: 16px;
    animation: popin 700ms ease both;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.reviews p {
    line-height: 1.5;
    margin-bottom: 10px;
}

.reviews span {
    color: var(--muted);
    font-size: 0.9rem;
}

@keyframes reveal {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes popin {
    from {
        opacity: 0;
        transform: translateY(14px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes floatCard {
    0% { transform: translateY(0); }
    50% { transform: translateY(-7px); }
    100% { transform: translateY(0); }
}

@keyframes pulseGlow {
    0% { box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2); }
    50% { box-shadow: 0 16px 34px rgba(200, 90, 40, 0.35); }
    100% { box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2); }
}

@media (max-width: 900px) {
    .cards {
        grid-template-columns: 1fr;
    }

    .quick-benefits,
    .reviews {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: 100vh;
    }

    .hero-content {
        margin-top: 0;
    }

    .hero-stage {
        margin-top: 44px;
        grid-template-columns: 1fr;
    }

    .hero-spotlight {
        min-height: 300px;
    }

    .spotlight-card h3 {
        font-size: 1.28rem;
    }

    .spotlight-card p {
        font-size: 0.98rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    body {
        background-attachment: scroll;
    }
}
