* {
    box-sizing: border-box;
}

:root {
    --landing-bg: #0d0b12;
    --landing-bg-soft: #17131d;
    --landing-surface: rgba(24, 19, 31, 0.74);
    --landing-surface-strong: rgba(255, 255, 255, 0.08);
    --landing-text: #f6efe6;
    --landing-muted: #c6b7ab;
    --landing-accent: #d89b43;
    --landing-accent-strong: #f3c46d;
    --landing-border: rgba(255, 255, 255, 0.1);
    --landing-shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
    --landing-max: 1180px;
    --landing-transition: 220ms ease;
    --landing-spot-x: 50%;
    --landing-spot-y: 20%;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", sans-serif;
    color: var(--landing-text);
    background:
        radial-gradient(circle at top left, rgba(216, 155, 67, 0.22), transparent 28%),
        radial-gradient(circle at 80% 20%, rgba(124, 52, 125, 0.14), transparent 25%),
        linear-gradient(180deg, #0b0910 0%, #120d18 45%, #0d0b12 100%);
}

.landing-page {
    overflow-x: hidden;
}

.landing-spotlight {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(circle 260px at var(--landing-spot-x) var(--landing-spot-y), rgba(243, 196, 109, 0.14), transparent 70%),
        radial-gradient(circle 320px at calc(var(--landing-spot-x) + 8%) calc(var(--landing-spot-y) + 16%), rgba(95, 52, 126, 0.12), transparent 72%);
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.025)),
        repeating-linear-gradient(
            90deg,
            transparent 0,
            transparent 79px,
            rgba(255, 255, 255, 0.018) 80px
        );
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent);
}

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

.hero,
main,
footer {
    position: relative;
    z-index: 1;
    animation: landing-fade-up 0.8s ease both;
}

main {
    animation-delay: 0.12s;
}

footer {
    animation-delay: 0.2s;
}

.hero {
    min-height: 100vh;
    padding: 1.5rem 1.5rem 4rem;
}

.topbar,
.hero-content,
.stats,
.experience,
.menu,
.events,
footer {
    width: min(var(--landing-max), calc(100% - 2rem));
    margin: 0 auto;
}

.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.9rem 1.2rem;
    border: 1px solid var(--landing-border);
    border-radius: 999px;
    background: rgba(15, 11, 21, 0.66);
    backdrop-filter: blur(14px);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
    transition: background var(--landing-transition), border-color var(--landing-transition), transform var(--landing-transition);
}

.topbar.is-scrolled {
    background: rgba(12, 9, 17, 0.88);
    border-color: rgba(255, 255, 255, 0.16);
    transform: translateY(-2px);
}

.brand {
    font-family: "Playfair Display", serif;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.topbar-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: var(--landing-muted);
    font-size: 0.95rem;
}

.topbar-links a {
    position: relative;
    transition: color var(--landing-transition);
}

.topbar-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.35rem;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--landing-accent), var(--landing-accent-strong));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--landing-transition);
}

.topbar-links a:hover {
    color: var(--landing-text);
}

.topbar-links a:hover::after {
    transform: scaleX(1);
}

.hero-grid {
    width: min(var(--landing-max), calc(100% - 2rem));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.85fr);
    gap: 2rem;
    align-items: center;
}

.hero-content {
    padding: 7rem 0 5rem;
    max-width: 760px;
    animation: landing-fade-up 0.9s ease 0.08s both;
}

.eyebrow {
    margin: 0 0 1rem;
    color: var(--landing-accent-strong);
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 0.8rem;
    font-weight: 800;
}

.hero h1,
.section-heading h2,
.events-copy h2,
footer h2 {
    margin: 0;
    font-family: "Playfair Display", serif;
    line-height: 0.98;
}

.hero h1 {
    max-width: 11ch;
    font-size: clamp(3.5rem, 9vw, 6.8rem);
    text-wrap: balance;
}

.hero-copy,
.experience .card p,
.menu article p,
.events-copy p,
footer p {
    color: var(--landing-muted);
    line-height: 1.8;
}

.hero-copy {
    max-width: 54ch;
    margin: 1.5rem 0 0;
    font-size: 1.1rem;
}

.hero-actions,
.footer-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.4rem;
}

.hero-tags span {
    padding: 0.5rem 0.85rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: var(--landing-muted);
    font-size: 0.88rem;
    backdrop-filter: blur(12px);
}

.hero-visual {
    display: flex;
    justify-content: flex-end;
    animation: landing-fade-up 0.95s ease 0.16s both;
}

.hero-visual__frame {
    position: relative;
    width: min(440px, 100%);
    min-height: 520px;
    padding: 1.4rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 36px;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
        linear-gradient(155deg, rgba(35, 24, 46, 0.9), rgba(14, 10, 20, 0.92));
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.5);
}

.hero-visual__frame::before {
    content: "";
    position: absolute;
    inset: 1rem;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    pointer-events: none;
}

.hero-visual__orbit {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(243, 196, 109, 0.14);
    animation: landing-rotate 18s linear infinite;
}

.hero-visual__orbit--one {
    width: 280px;
    height: 280px;
    top: -72px;
    right: -52px;
}

.hero-visual__orbit--two {
    width: 360px;
    height: 360px;
    bottom: -150px;
    left: -90px;
    animation-direction: reverse;
    animation-duration: 24s;
}

.hero-visual__card,
.hero-visual__metrics article {
    position: relative;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.hero-visual__card--primary {
    padding: 1.35rem;
    border-radius: 24px;
    margin: 1.2rem 0 1rem;
}

.hero-visual__card--primary span,
.hero-visual__metrics span {
    display: block;
    color: var(--landing-accent-strong);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.76rem;
    font-weight: 800;
}

.hero-visual__card--primary strong,
.hero-visual__metrics strong {
    display: block;
    margin-top: 0.65rem;
    font-size: 1.45rem;
    line-height: 1.05;
}

.hero-visual__card--primary p {
    margin: 0.8rem 0 0;
    color: var(--landing-muted);
    line-height: 1.65;
}

.hero-visual__metrics {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
    margin-top: 11rem;
}

.hero-visual__metrics article {
    padding: 1rem;
    border-radius: 20px;
}

.hero-visual__pulse {
    position: absolute;
    right: 1.25rem;
    bottom: 1.4rem;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.7rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-visual__pulse span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--landing-accent-strong);
    animation: landing-pulse 1.8s ease-in-out infinite;
}

.hero-visual__pulse span:nth-child(2) {
    animation-delay: 0.2s;
}

.hero-visual__pulse span:nth-child(3) {
    animation-delay: 0.4s;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.85rem 1.35rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 700;
    transition: transform var(--landing-transition), border-color var(--landing-transition), background var(--landing-transition), color var(--landing-transition), box-shadow var(--landing-transition), filter var(--landing-transition);
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    color: #25170a;
    background: linear-gradient(135deg, var(--landing-accent-strong), var(--landing-accent));
    box-shadow: 0 16px 34px rgba(216, 155, 67, 0.26);
}

.btn-primary:hover {
    box-shadow: 0 22px 40px rgba(216, 155, 67, 0.34);
    filter: saturate(1.08);
}

.btn-secondary,
.btn-ghost {
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.04);
    color: var(--landing-text);
}

.btn-secondary:hover,
.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.22);
}

.stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    margin-top: -2.5rem;
}

.stats article,
.experience .card,
.menu article,
.events-list div,
footer {
    border: 1px solid var(--landing-border);
    background: var(--landing-surface);
    backdrop-filter: blur(16px);
    box-shadow: var(--landing-shadow);
    transition: transform var(--landing-transition), border-color var(--landing-transition), background var(--landing-transition), box-shadow var(--landing-transition);
}

.stats article {
    padding: 1.4rem;
    border-radius: 22px;
    animation: landing-fade-up 0.7s ease both;
}

.stats article:nth-child(1) { animation-delay: 0.08s; }
.stats article:nth-child(2) { animation-delay: 0.14s; }
.stats article:nth-child(3) { animation-delay: 0.2s; }
.stats article:nth-child(4) { animation-delay: 0.26s; }

.stats article:hover,
.experience .card:hover,
.menu article:hover,
.events-list div:hover,
footer:hover {
    transform: translateY(-4px);
    border-color: rgba(216, 155, 67, 0.24);
    background: rgba(30, 23, 38, 0.88);
    box-shadow: 0 32px 90px rgba(0, 0, 0, 0.52);
}

.stats strong {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--landing-accent-strong);
}

.stats span {
    display: block;
    margin-top: 0.35rem;
    color: var(--landing-muted);
}

main {
    padding: 5rem 0 2rem;
}

.experience,
.menu,
.events {
    padding: 2rem 0;
}

.section-heading {
    display: grid;
    gap: 0.7rem;
    margin-bottom: 2rem;
}

.section-heading,
.events-copy,
.stats article,
.experience .card,
.menu article,
.events-list div,
footer {
    opacity: 0;
    transform: translateY(24px);
}

.section-heading.is-visible,
.events-copy.is-visible,
.stats article.is-visible,
.experience .card.is-visible,
.menu article.is-visible,
.events-list div.is-visible,
footer.is-visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.section-heading h2,
.events-copy h2,
footer h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
}

.experience-grid,
.menu-grid {
    display: grid;
    gap: 1.2rem;
}

.experience-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.experience .card,
.menu article {
    padding: 1.6rem;
    border-radius: 24px;
    animation: landing-fade-up 0.8s ease both;
}

.experience .card:nth-child(1),
.menu article:nth-child(1) { animation-delay: 0.08s; }

.experience .card:nth-child(2),
.menu article:nth-child(2) { animation-delay: 0.15s; }

.experience .card:nth-child(3),
.menu article:nth-child(3) { animation-delay: 0.22s; }

.menu article:nth-child(4) { animation-delay: 0.29s; }

.experience .card h3,
.menu article h3 {
    margin: 0 0 0.75rem;
    font-size: 1.18rem;
}

.events {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
    gap: 1.4rem;
    align-items: stretch;
}

.events-copy,
.events-list {
    min-width: 0;
}

.events-list {
    display: grid;
    gap: 1rem;
}

.events-list div {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    padding: 1.25rem 1.35rem;
    border-radius: 22px;
    animation: landing-slide-in 0.7s ease both;
}

.events-list div:nth-child(1) { animation-delay: 0.08s; }
.events-list div:nth-child(2) { animation-delay: 0.15s; }
.events-list div:nth-child(3) { animation-delay: 0.22s; }
.events-list div:nth-child(4) { animation-delay: 0.29s; }

.events-list span {
    color: var(--landing-accent-strong);
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 800;
}

.events-list strong {
    font-size: 1.05rem;
    text-align: right;
}

footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.6rem;
    border-radius: 28px;
}

@keyframes landing-fade-up {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

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

@keyframes landing-slide-in {
    from {
        opacity: 0;
        transform: translateX(18px);
    }

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

@keyframes landing-rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes landing-pulse {
    0%, 100% {
        opacity: 0.35;
        transform: scale(0.85);
    }

    50% {
        opacity: 1;
        transform: scale(1.15);
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .hero,
    main,
    footer,
    .hero-content,
    .hero-visual,
    .stats article,
    .experience .card,
    .menu article,
    .events-list div {
        animation: none;
    }

    .section-heading,
    .events-copy,
    .stats article,
    .experience .card,
    .menu article,
    .events-list div,
    footer,
    .section-heading.is-visible,
    .events-copy.is-visible,
    .stats article.is-visible,
    .experience .card.is-visible,
    .menu article.is-visible,
    .events-list div.is-visible,
    footer.is-visible {
        opacity: 1;
        transform: none;
    }

    .topbar,
    .topbar-links a,
    .topbar-links a::after,
    .btn,
    .hero-visual__orbit,
    .hero-visual__pulse span,
    .stats article,
    .experience .card,
    .menu article,
    .events-list div,
    footer {
        transition: none;
    }
}

@media (max-width: 960px) {
    .topbar {
        border-radius: 28px;
        padding: 1rem;
        flex-wrap: wrap;
    }

    .topbar-links {
        order: 3;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.9rem 1.2rem;
    }

    .hero-grid,
    .stats,
    .experience-grid,
    .menu-grid,
    .events {
        grid-template-columns: 1fr;
    }

    .hero-content {
        padding-top: 5rem;
    }

    .hero h1 {
        max-width: 12ch;
    }

    .hero-visual {
        justify-content: flex-start;
    }

    .hero-visual__frame {
        min-height: 420px;
    }

    .hero-visual__metrics {
        margin-top: 8rem;
    }

    footer {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 1rem 1rem 3rem;
    }

    .topbar,
    .stats article,
    .experience .card,
    .menu article,
    .events-list div,
    footer {
        border-radius: 20px;
    }

    .hero-content {
        padding-top: 4rem;
    }

    .hero h1 {
        max-width: none;
        font-size: clamp(2.8rem, 16vw, 4.2rem);
    }

    .hero-visual__frame {
        min-height: 390px;
        padding: 1rem;
    }

    .hero-visual__metrics {
        grid-template-columns: 1fr;
        margin-top: 6rem;
    }

    .hero-actions,
    .footer-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
    }

    .events-list div {
        flex-direction: column;
        align-items: flex-start;
    }

    .events-list strong {
        text-align: left;
    }
}
