:root {
    --brand: #c53c67;
    --brand-dark: #5a2133;
    --brand-soft: #fdf1f4;
    --accent: #f2a521;
    --text: #2a2226;
    --muted: #645760;
    --surface: #ffffff;
    --surface-dark: #201115;
    --line: rgba(72, 23, 37, 0.1);
    --shadow: 0 20px 60px rgba(82, 33, 48, 0.14);
}

body {
    font-family: 'Manrope', sans-serif;
    color: var(--text);
    overflow-x: hidden;
    background:
        radial-gradient(circle at top left, rgba(197, 60, 103, 0.08), transparent 24%),
        linear-gradient(180deg, #fff8f8 0%, #fff3ef 100%);
}

h1,
h2,
h3,
.site-brand__name {
    font-family: 'Cormorant Garamond', serif;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

.site-topbar {
    background: var(--brand-dark);
    color: #fbeff2;
}

.topbar-text,
.topbar-link {
    font-size: 0.92rem;
    color: #fbeff2;
}

.site-navbar {
    background: rgba(255, 249, 249, 0.93);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(90, 33, 51, 0.08);
}

.site-brand {
    display: grid;
    gap: 2px;
    color: var(--brand-dark);
    line-height: 1;
}

.site-brand__eyebrow,
.section-tag,
.mini-label,
.promo-card__number {
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-size: 0.74rem;
    font-weight: 800;
    color: var(--brand);
}

.site-brand__name {
    font-size: 1.85rem;
    font-weight: 700;
}

.nav-link {
    font-weight: 700;
    color: var(--muted);
    padding-left: 0.9rem !important;
    padding-right: 0.9rem !important;
}

.nav-link.active,
.nav-link:hover {
    color: var(--brand-dark);
}

.btn-call,
.btn-brand {
    background: linear-gradient(135deg, var(--accent), #f47c20);
    border: 0;
    color: #fff;
    font-weight: 800;
    border-radius: 999px;
    padding: 0.9rem 1.5rem;
    box-shadow: 0 16px 36px rgba(242, 165, 33, 0.22);
}

.btn-brand:hover,
.btn-call:hover {
    color: #fff;
}

.btn-hero {
    border-radius: 999px;
    padding: 0.9rem 1.5rem;
    font-weight: 700;
}

.hero-slider-wrap {
    padding: 1.25rem 0 0;
}

.hero-slide {
    position: relative;
    background-size: cover;
    background-position: center;
}

.hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(21, 10, 13, 0.82) 0%, rgba(65, 24, 39, 0.68) 45%, rgba(197, 60, 103, 0.38) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.2));
}

.min-vh-75 {
    min-height: 75vh;
}

.hero-copy,
.hero-badge-card {
    position: relative;
    z-index: 1;
}

.hero-copy {
    max-width: 720px;
    color: #fff7f7;
}

.hero-copy h1 {
    margin: 0.6rem 0 1rem;
    font-size: clamp(3rem, 6vw, 5.3rem);
    line-height: 0.9;
}

.hero-copy p {
    max-width: 620px;
    font-size: 1.08rem;
    line-height: 1.85;
    color: rgba(255, 248, 248, 0.92);
}

.hero-badge-card {
    background: rgba(255, 255, 255, 0.94);
    color: var(--text);
    border-radius: 2rem;
    padding: 2rem;
    box-shadow: var(--shadow);
}

.hero-badge-card--warm {
    background: linear-gradient(180deg, #ffe0aa, #ffca74);
}

.hero-badge-card h3 {
    font-size: 2.2rem;
    margin: 0.4rem 0 0.8rem;
}

.carousel-control-prev,
.carousel-control-next {
    width: 7%;
}

.section-space {
    padding: 5.5rem 0;
}

.section-soft {
    background: linear-gradient(180deg, #fff5f6 0%, #fff0eb 100%);
}

.section-heading {
    max-width: 840px;
    margin-bottom: 2.5rem;
}

.section-heading h2,
.content-panel h2,
.page-hero h1 {
    font-size: clamp(2.4rem, 4vw, 4rem);
    line-height: 0.94;
    margin-top: 0.5rem;
}

.content-panel,
.feature-panel,
.food-tile,
.promo-card,
.poster-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 1.8rem;
    box-shadow: var(--shadow);
}

.content-panel,
.feature-panel,
.promo-card {
    padding: 2rem;
}

.content-panel--feature h2 {
    font-size: clamp(2.6rem, 4.4vw, 4.4rem);
    line-height: 0.92;
}

.feature-points {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 1.5rem 0 1.25rem;
}

.feature-points span,
.mini-stat {
    border: 1px solid var(--line);
    border-radius: 1.2rem;
    background: rgba(255, 255, 255, 0.75);
    box-shadow: var(--shadow);
}

.feature-points span {
    padding: 0.7rem 1rem;
    font-weight: 700;
    color: var(--brand-dark);
}

.mini-stat {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.15rem 1.25rem;
}

.mini-stat strong {
    font-size: 1.6rem;
    line-height: 1;
    color: var(--brand-dark);
}

.mini-stat span {
    color: var(--muted);
    font-weight: 700;
}

.feature-panel h3,
.food-tile__body h3,
.promo-card h3 {
    font-size: 2rem;
    margin-bottom: 0.85rem;
}

.feature-panel p,
.content-panel p,
.food-tile__body p,
.promo-card p,
.page-hero__lead,
.menu-list p,
.footer-copy,
.footer-links li {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.8;
}

.text-link {
    color: var(--brand-dark);
    font-weight: 800;
}

.food-tile {
    overflow: hidden;
    height: 100%;
}

.food-tile img,
.poster-card img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.food-tile img {
    height: 260px;
}

.food-tile__body {
    padding: 1.6rem;
}

.page-hero {
    padding: 5rem 0 2rem;
}

.page-hero__lead {
    max-width: 780px;
}

.menu-list {
    display: grid;
    gap: 1rem;
    margin-top: 1.4rem;
}

.menu-list strong {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 1.05rem;
    color: var(--brand-dark);
}

.poster-card {
    overflow: hidden;
}

.promo-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.promo-card__number {
    color: var(--accent);
}

.contact-list {
    margin: 1.2rem 0 0;
    padding-left: 1.25rem;
    color: var(--muted);
    line-height: 1.9;
}

.menu-block {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 1.8rem;
    box-shadow: var(--shadow);
    padding: 2rem;
}

.menu-block__title {
    display: block;
    margin-bottom: 1rem;
    color: var(--brand-dark);
    font-size: 1.15rem;
    font-weight: 800;
}

.menu-bullets {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--muted);
    line-height: 1.9;
}

.site-footer {
    background: var(--surface-dark);
    color: #f7e9ed;
    padding: 4rem 0 2rem;
    margin-top: 3rem;
}

.footer-title {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.8rem;
    font-weight: 800;
    color: #ffbfd0;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.55rem;
    color: #e7d2d8;
}

.footer-links a {
    color: #f9e7ec;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 2rem;
    padding-top: 1.25rem;
    color: #ddc6cd;
}

.venue-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.venue-grid img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 1.5rem;
    box-shadow: var(--shadow);
}

.venue-grid--wide img {
    height: 280px;
}

@media (max-width: 991.98px) {
    .site-topbar .container {
        justify-content: center !important;
        text-align: center;
    }

    .site-brand {
        max-width: 220px;
    }

    .site-brand__name {
        font-size: 1.35rem;
    }

    .navbar-collapse {
        margin-top: 0.85rem;
        padding: 1rem;
        border-radius: 1.25rem;
        background: rgba(255, 255, 255, 0.92);
        box-shadow: var(--shadow);
    }

    .navbar-nav {
        align-items: stretch !important;
    }

    .nav-link {
        padding: 0.8rem 0.25rem !important;
    }

    .btn-call {
        width: 100%;
        justify-content: center;
    }

    .min-vh-75 {
        min-height: auto;
    }

    .hero-copy,
    .hero-badge-card {
        margin-top: 1rem;
    }
}

@media (max-width: 767.98px) {
    .topbar-text,
    .topbar-link {
        font-size: 0.84rem;
    }

    .site-brand__eyebrow {
        font-size: 0.65rem;
    }

    .site-brand__name {
        font-size: 1.1rem;
    }

    .hero-copy h1 {
        font-size: 2.6rem;
    }

    .hero-copy p,
    .page-hero__lead,
    .menu-list p,
    .menu-bullets,
    .content-panel p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .section-space,
    .page-hero {
        padding: 4rem 0 1.5rem;
    }

    .content-panel,
    .feature-panel,
    .promo-card,
    .hero-badge-card {
        padding: 1.5rem;
    }

    .content-panel--feature h2 {
        font-size: 2.5rem;
    }

    .food-tile img {
        height: 220px;
    }

    .food-tile__body {
        padding: 1.25rem;
    }

    .food-tile__body h3,
    .feature-panel h3,
    .promo-card h3 {
        font-size: 1.6rem;
    }

    .menu-block {
        padding: 1.5rem;
    }

    .mini-stat {
        align-items: flex-start;
        flex-direction: column;
    }

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

    .venue-grid img,
    .venue-grid--wide img {
        height: 220px;
    }
}
