* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    font-family: Inter, Arial, Helvetica, sans-serif;
    background: #f8f1ea;
    color: #181311;
    line-height: 1.5;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(1240px, calc(100% - 40px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(248, 241, 234, 0.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 6px 0;
}

.brand {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    gap: 14px;
}

.brand-full-logo {
    display: block;
    height: 250px;
    width: auto;
    max-width: 100%;
}

.nav {
    display: flex;
    gap: 36px;
    color: #5f514b;
    font-weight: 700;
    font-size: 14px;
    margin-left: auto;
    margin-right: 20px;
}

.nav a {
    transition: color 0.2s ease;
}

.nav a:hover {
    color: #d95a2b;
}

.header-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    flex: 0 0 auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 999px;
    padding: 12px 18px;
    font-weight: 800;
    font-size: 14px;
    border: 1px solid #e6d3c8;
    background: transparent;
    color: #342822;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(70, 40, 20, 0.08);
}

.btn-primary {
    background: #d95a2b;
    color: #fff;
    border-color: #d95a2b;
    box-shadow: 0 14px 30px rgba(217, 90, 43, 0.22);
    transition: all 0.2s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(217, 90, 43, 0.3);
}

.inline-form,
.movie-inline-form {
    display: inline-flex;
    margin: 0;
}

.page-flash {
    margin: 22px 0;
    padding: 14px 18px;
    border-radius: 18px;
    border: 1px solid #ead9cf;
    background: #fff;
    font-weight: 700;
}

.page-flash-success {
    background: #f4fff6;
    border-color: #b7dfbf;
    color: #275a32;
}

.page-flash-error {
    background: #fff6f4;
    border-color: #efc1b8;
    color: #8c2f1d;
}

.hero {
    padding: 44px 0 28px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 32px;
    align-items: stretch;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: #fff4ec;
    border: 1px solid #f0d7c8;
    border-radius: 999px;
    color: #985333;
    font-size: 14px;
    font-weight: 800;
}

.hero h1 {
    margin: 18px 0 12px;
    font-size: clamp(42px, 7vw, 78px);
    line-height: 0.95;
    letter-spacing: -0.05em;
    font-weight: 900;
    max-width: 760px;
}

.accent {
    color: #d95a2b;
    text-shadow: 0 2px 8px rgba(217, 90, 43, 0.15);
    font-weight: 800;
}

.hero p {
    margin: 0;
    max-width: 580px;
    font-size: 18px;
    color: #5e514b;
    line-height: 1.8;
}

.chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.chip {
    background: #fff8f3;
    border: 1px solid #efd8cc;
    border-radius: 999px;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 800;
    color: #4c3f39;
    box-shadow: 0 8px 18px rgba(70, 40, 20, 0.05);
    transition: all 0.15s ease;
}

.chip:hover {
    transform: translateY(-1px);
}

.stat-grid {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.stat-card,
.panel,
.menu-card,
.feature-card {
    background: #fff;
    border: 1px solid #ead9cf;
    border-radius: 28px;
    box-shadow: 0 14px 28px rgba(90, 58, 36, 0.06);
}

.stat-card {
    padding: 22px;
}

.stat-label {
    color: #8b776f;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.stat-value {
    margin-top: 8px;
    font-size: 28px;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.stat-text {
    margin-top: 8px;
    color: #665851;
    font-size: 14px;
}

.hero-panel {
    position: relative;
    padding: 18px;
    background: linear-gradient(180deg, #2d1c19 0%, #241715 60%, #1b1211 100%);
    color: #fff;
    border-radius: 34px;
    border: 1px solid #3a2823;
    box-shadow:
        0 20px 50px rgba(32, 21, 19, 0.35),
        0 0 0 1px rgba(255, 255, 255, 0.03) inset;
    min-height: 100%;
    transition: all 0.25s ease;
}

.hero-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 34px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 40%);
    pointer-events: none;
}

.hero-panel:hover {
    transform: translateY(-3px);
}

.panel-label {
    color: rgba(255, 255, 255, 0.62);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.panel-title {
    margin-top: 8px;
    font-size: 38px;
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.panel-grid {
    margin-top: 20px;
    display: grid;
    gap: 14px;
}

.panel-box {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 18px;
}

.panel-box strong {
    display: block;
    font-size: 18px;
    margin-top: 6px;
}

.panel-box small {
    color: rgba(255, 255, 255, 0.62);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 700;
}

.featured-pick {
    position: relative;
    z-index: 1;
    background: #fff;
    color: #181311;
    border-radius: 26px;
    padding: 18px;
    margin-top: 14px;
}

.featured-pick h3 {
    margin: 10px 0 6px;
    font-size: 30px;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: #fff3eb;
    border: 1px solid #efd1c0;
    font-size: 13px;
    font-weight: 800;
    color: #8b4a30;
}

.featured-pick p {
    color: #695b54;
    font-size: 15px;
    line-height: 1.7;
}

.section {
    padding: 28px 0;
}

.section-head {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: end;
    margin-bottom: 20px;
}

.section-kicker {
    color: #a15f40;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 13px;
    font-weight: 900;
}

.section-head h2 {
    margin: 8px 0 0;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1;
    letter-spacing: -0.04em;
    font-weight: 900;
}

.feed-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 24px;
}

.menu-list {
    display: grid;
    gap: 20px;
}

.menu-card {
    padding: 22px;
    transition: all 0.2s ease;
}

.menu-card:hover {
    transform: translateY(-4px);
}

.menu-top {
    display: flex;
    gap: 14px;
    align-items: start;
    justify-content: space-between;
}

.menu-card h3 {
    margin: 0;
    font-size: 30px;
    line-height: 1.05;
    letter-spacing: -0.04em;
    font-weight: 900;
}

.menu-meta {
    margin-top: 6px;
    color: #7b6961;
    font-size: 14px;
    font-weight: 700;
}

.poster-grid {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.poster {
    position: relative;
    overflow: hidden;
    min-height: 135px;
    border-radius: 22px;
    background: linear-gradient(160deg, #2f1e19 0%, #6e3020 55%, #dc6830 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.poster::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 30%, rgba(0, 0, 0, 0.15));
}

.poster span {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 12px;
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1.2;
}

.menu-note {
    margin-top: 16px;
    color: #5f524b;
    font-size: 16px;
}

.menu-actions {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid #f0dfd6;
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    color: #5a4d47;
    font-size: 14px;
    font-weight: 800;
}

.sidebar {
    display: grid;
    gap: 18px;
}

.panel,
.feature-card {
    padding: 22px;
}

.panel h3,
.feature-card h3 {
    margin: 8px 0 0;
    font-size: 26px;
    line-height: 1;
    letter-spacing: -0.04em;
    font-weight: 900;
}

.panel p,
.feature-card p {
    color: #665851;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 0;
}

.trending-list {
    margin-top: 14px;
    display: grid;
    gap: 12px;
}

.trend-item {
    background: #fff4ec;
    border-radius: 20px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.trend-item strong {
    display: block;
    font-size: 15px;
}

.trend-item small {
    color: #8a756b;
    font-weight: 700;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.feature-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: #fff4ec;
    font-size: 24px;
}

.empty-state {
    padding: 18px;
    border-radius: 18px;
    background: #fff6f0;
    color: #6d5b53;
    border: 1px solid #efd8cc;
}

.phones-section {
    padding: 36px 0 60px;
}

.phones-frame {
    background: linear-gradient(180deg, #fffaf6 0%, #f6ede6 100%);
    border: 1px solid #ead9cf;
    border-radius: 34px;
    padding: 24px;
    box-shadow: 0 20px 35px rgba(95, 63, 42, 0.08);
}

.phones-frame img {
    width: 100%;
    border-radius: 24px;
}

.footer {
    padding: 0 0 60px;
    color: #7f6c63;
    font-size: 14px;
    text-align: center;
}

@media (max-width: 1100px) {
    .hero-grid,
    .feed-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .stat-grid {
        grid-template-columns: 1fr;
    }

    .poster-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 860px) {
    .nav {
        display: none;
    }

    .header-inner {
        flex-wrap: wrap;
        padding: 14px 0;
        gap: 16px;
    }

    .brand-full-logo {
        height: 150px;
    }

    .section-head,
    .menu-top {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 24px, 1240px);
    }

    .hero {
        padding-top: 24px;
    }

    .brand-full-logo {
        height: 110px;
    }

    .header-actions {
        width: 100%;
        justify-content: flex-start;
    }

    .btn {
        padding: 11px 15px;
    }

    .poster-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero h1 {
        font-size: 42px;
    }
}
