* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background:
        linear-gradient(180deg, rgba(255, 204, 0, 0.03), transparent 180px),
        linear-gradient(135deg, #060606 0%, #0b0b0b 45%, #040404 100%);
    color: #ffffff;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

.topbar {
    width: 100%;
    padding: 16px 7%;
    background:
        linear-gradient(180deg, rgba(255, 204, 0, 0.06), transparent 140%),
        rgba(10, 10, 10, 0.96);
    border-bottom: 1px solid rgba(255, 204, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.brand-icon {
    font-size: 18px;
    width: 46px;
    height: 46px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: linear-gradient(180deg, #ffd84d 0%, #ffcc00 100%);
    color: #111111;
    box-shadow: 0 12px 24px rgba(255, 204, 0, 0.18);
}

.brand-stack {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.brand a {
    color: #ffffff;
    letter-spacing: 0.02em;
    font-size: 22px;
    font-weight: 800;
}

.brand-subtitle {
    color: #c7b46a;
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.menu {
    display: flex;
    gap: 8px;
    align-items: center;
    padding: 8px;
    border: 1px solid rgba(255, 204, 0, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.025);
}

.menu a {
    font-size: 14px;
    color: #dddddd;
    transition: 0.3s;
    letter-spacing: 0.02em;
    padding: 10px 14px;
    border-radius: 999px;
}

.menu a:hover {
    color: #111111;
    background: linear-gradient(180deg, #ffd84d 0%, #ffcc00 100%);
}

.call-btn {
    background: linear-gradient(180deg, #ffd84d 0%, #ffcc00 100%);
    color: #111111;
    padding: 12px 20px;
    border-radius: 30px;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(255, 204, 0, 0.2);
}

#menu-toggle {
    display: none;
}

.menu-btn {
    display: none;
    font-size: 28px;
    color: #ffcc00;
    cursor: pointer;
}

.hero {
    min-height: 88vh;
    padding: 80px 7%;
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    align-items: center;
    gap: 40px;
    background:
        radial-gradient(circle at top left, rgba(255, 204, 0, 0.18), transparent 35%),
        linear-gradient(135deg, #080808 0%, #151515 55%, #0a0a0a 100%);
}

.badge,
.section-tag {
    display: inline-block;
    background:
        repeating-linear-gradient(
            -45deg,
            rgba(255, 204, 0, 0.16) 0 10px,
            rgba(255, 204, 0, 0.08) 10px 20px
        );
    color: #ffcc00;
    border: 1px solid rgba(255, 204, 0, 0.35);
    padding: 8px 14px;
    border-radius: 30px;
    font-size: 14px;
    margin-bottom: 18px;
    letter-spacing: 0.03em;
}

.hero h1 {
    font-size: 58px;
    line-height: 1.1;
    max-width: 760px;
    margin-bottom: 22px;
}

.hero p {
    max-width: 620px;
    color: #cfcfcf;
    font-size: 18px;
    margin-bottom: 30px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.primary-btn,
.secondary-btn {
    padding: 14px 24px;
    border-radius: 35px;
    font-weight: 800;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.primary-btn {
    background: linear-gradient(180deg, #ffd84d 0%, #ffcc00 100%);
    color: #111111;
    box-shadow: 0 14px 28px rgba(255, 204, 0, 0.16);
}

.secondary-btn {
    border: 1px solid rgba(255, 204, 0, 0.45);
    color: #ffcc00;
    background: rgba(255, 204, 0, 0.04);
}

.primary-btn:hover,
.secondary-btn:hover,
.call-btn:hover {
    transform: translateY(-2px);
}

.secondary-btn:hover {
    border-color: rgba(255, 204, 0, 0.72);
    box-shadow: 0 12px 24px rgba(255, 204, 0, 0.08);
}

.hero-card {
    background: linear-gradient(160deg, #1b1b1b, #0d0d0d);
    border: 1px solid rgba(255, 204, 0, 0.25);
    border-radius: 28px;
    padding: 34px;
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.5);
}

.hero-card h3 {
    color: #ffcc00;
    font-size: 30px;
    margin-bottom: 12px;
}

.hero-card p {
    color: #cfcfcf;
    margin-bottom: 24px;
}

.price-box {
    background: #ffcc00;
    color: #111111;
    padding: 20px;
    border-radius: 20px;
}

.price-box span {
    display: block;
    font-size: 38px;
    font-weight: 900;
}

.price-box strong {
    font-size: 15px;
}

.features {
    padding: 70px 7%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.feature,
.service-card,
.contact-card {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255, 204, 0, 0.06), transparent 42%),
        #111111;
    border: 1px solid rgba(255, 204, 0, 0.16);
    border-radius: 24px;
    padding: 28px;
    transition: 0.3s;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.feature::before,
.service-card::before,
.contact-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 8px;
    background:
        repeating-linear-gradient(
            -45deg,
            #ffcc00 0 14px,
            #111111 14px 28px
        );
    opacity: 0.75;
}

.feature:hover,
.service-card:hover,
.contact-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 204, 0, 0.55);
}

.feature span {
    color: #ffcc00;
    font-size: 36px;
    font-weight: 900;
}

.feature h3,
.service-card h3,
.contact-card h3 {
    margin: 12px 0;
    color: #ffffff;
}

.feature p,
.service-card p,
.contact-card p {
    color: #bbbbbb;
}

.split {
    padding: 70px 7%;
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 36px;
    align-items: center;
}

.split h2 {
    font-size: 42px;
    margin-bottom: 18px;
}

.split p {
    color: #cfcfcf;
    margin-bottom: 20px;
}

.split ul {
    list-style: none;
}

.split li {
    margin-bottom: 12px;
    color: #eeeeee;
}

.split li::before {
    content: "✓";
    color: #ffcc00;
    margin-right: 10px;
}

.dark-card {
    background:
        linear-gradient(150deg, rgba(255, 204, 0, 0.16), transparent),
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent),
        #111111;
    border: 1px solid rgba(255, 204, 0, 0.28);
    border-radius: 28px;
    padding: 34px;
    box-shadow: 0 22px 56px rgba(0, 0, 0, 0.24);
}

.dark-card h3 {
    color: #ffcc00;
    font-size: 30px;
    margin-bottom: 14px;
}

.dark-card a {
    display: inline-block;
    margin-top: 10px;
    background: #ffcc00;
    color: #111111;
    padding: 13px 22px;
    border-radius: 30px;
    font-weight: 800;
}

.page-hero {
    padding: 80px 7% 50px;
    background:
        radial-gradient(circle at top right, rgba(255, 204, 0, 0.18), transparent 32%),
        #0b0b0b;
    text-align: center;
}

.page-hero h1 {
    font-size: 46px;
    margin-bottom: 12px;
}

.page-hero p {
    color: #cfcfcf;
    max-width: 620px;
    margin: auto;
}

.content {
    padding: 60px 7%;
    max-width: 960px;
    margin: auto;
}

.content h2 {
    font-size: 36px;
    color: #ffcc00;
    margin-bottom: 18px;
}

.content p {
    color: #d0d0d0;
    margin-bottom: 18px;
}

.service-grid,
.contact-grid {
    padding: 60px 7%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.contact-grid {
    grid-template-columns: repeat(3, 1fr);
}

.service-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}

.service-card-top strong {
    color: #f0d86e;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.service-tag {
    min-width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(180deg, #ffd84d 0%, #ffcc00 100%);
    color: #111111;
    font-size: 14px;
    font-weight: 900;
    box-shadow: 0 10px 24px rgba(255, 204, 0, 0.16);
}

.service-list {
    list-style: none;
    margin-top: 18px;
    display: grid;
    gap: 10px;
}

.service-list li {
    color: #d9d9d9;
    font-size: 14px;
}

.service-list li::before {
    content: "•";
    color: #ffcc00;
    margin-right: 10px;
}

.service-cta-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: 28px 30px;
    border-radius: 28px;
    background:
        linear-gradient(145deg, rgba(255, 204, 0, 0.12), rgba(255, 204, 0, 0.03)),
        #111111;
    border: 1px solid rgba(255, 204, 0, 0.2);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.22);
}

.service-cta-strip strong {
    display: block;
    color: #ffffff;
    font-size: 26px;
    margin-bottom: 6px;
}

.service-cta-strip span {
    color: #d0d0d0;
}

.service-cta-strip a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    background: linear-gradient(180deg, #ffd84d 0%, #ffcc00 100%);
    color: #111111;
    padding: 14px 22px;
    border-radius: 999px;
    font-weight: 800;
    box-shadow: 0 12px 24px rgba(255, 204, 0, 0.16);
}

.reservation-box {
    padding: 60px 7%;
    max-width: 760px;
    margin: auto;
}

.reservation-form {
    background:
        linear-gradient(180deg, rgba(255, 204, 0, 0.06), transparent 35%),
        #111111;
    border: 1px solid rgba(255, 204, 0, 0.22);
    border-radius: 28px;
    padding: 28px;
    display: grid;
    gap: 15px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
}

.reservation-form input,
.reservation-form textarea {
    width: 100%;
    background: #080808;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 16px;
    padding: 15px;
    font-size: 16px;
    outline: none;
}

.reservation-form textarea {
    min-height: 120px;
    resize: vertical;
}

.reservation-form input:focus,
.reservation-form textarea:focus {
    border-color: #ffcc00;
}

.reservation-form button {
    background: linear-gradient(180deg, #ffd84d 0%, #ffcc00 100%);
    color: #111111;
    border: none;
    padding: 16px;
    border-radius: 18px;
    font-size: 16px;
    font-weight: 900;
    cursor: pointer;
}

.success {
    margin-top: 20px;
    background: rgba(43, 255, 135, 0.12);
    border: 1px solid rgba(43, 255, 135, 0.35);
    color: #8dffbd;
    padding: 16px;
    border-radius: 18px;
}

.footer {
    margin-top: 50px;
    padding: 42px 7% 24px;
    background:
        repeating-linear-gradient(
            -45deg,
            rgba(255, 204, 0, 0.08) 0 18px,
            rgba(18, 18, 18, 0.08) 18px 36px
        ),
        linear-gradient(180deg, rgba(255, 204, 0, 0.18), rgba(255, 204, 0, 0.05) 18%, transparent 42%),
        linear-gradient(180deg, #14110a 0%, #090909 100%);
    border-top: 1px solid rgba(255, 204, 0, 0.32);
    box-shadow: inset 0 1px 0 rgba(255, 204, 0, 0.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
    gap: 30px;
    align-items: start;
}

.footer-brand,
.footer-column {
    background: rgba(255, 204, 0, 0.05);
    border: 1px solid rgba(255, 204, 0, 0.14);
    border-radius: 22px;
    padding: 20px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.footer-brand h3,
.footer-column h4 {
    color: #ffcc00;
}

.footer-brand h3 {
    margin-bottom: 12px;
    font-size: 28px;
}

.footer-column h4 {
    margin-bottom: 14px;
    font-size: 18px;
}

.footer-brand p {
    color: #e0d5a6;
    max-width: 360px;
}

.footer-column {
    display: grid;
    gap: 12px;
}

.footer-column a,
.footer-column span {
    color: #f0e4ab;
    font-size: 15px;
}

.footer a {
    color: #ffcc00;
    transition: 0.25s;
}

.footer a:hover {
    color: #ffe27a;
}

.footer-seo-text {
    margin-top: 24px;
    padding: 18px 20px;
    border: 1px solid rgba(255, 204, 0, 0.22);
    border-radius: 22px;
    background:
        linear-gradient(180deg, rgba(255, 204, 0, 0.12), rgba(255, 204, 0, 0.04)),
        rgba(255, 255, 255, 0.02);
}

.footer-seo-text p {
    color: #f0e1a1;
    font-size: 14px;
    line-height: 1.7;
}

.footer-bottom {
    margin-top: 28px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 204, 0, 0.18);
}

.footer-bottom span {
    color: #d8be57;
    font-size: 14px;
}

.mobile-sticky {
    display: none;
}

@media (max-width: 992px) {
    .hero {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 44px;
    }

    .features,
    .service-grid,
    .contact-grid,
    .split {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    body {
        padding-bottom: 68px;
    }

    .topbar {
        padding: 16px 5%;
    }

    .brand-icon {
        width: 38px;
        height: 38px;
        font-size: 18px;
    }

    .brand a {
        font-size: 18px;
    }

    .brand-subtitle {
        font-size: 9px;
        letter-spacing: 0.16em;
    }

    .menu-btn {
        display: block;
    }

    .call-btn {
        display: none;
    }

    .menu {
        position: absolute;
        top: 68px;
        left: 5%;
        right: 5%;
        background:
            linear-gradient(180deg, rgba(255, 204, 0, 0.05), transparent 35%),
            #111111;
        border: 1px solid rgba(255, 204, 0, 0.25);
        border-radius: 20px;
        padding: 18px;
        display: none;
        flex-direction: column;
        gap: 14px;
    }

    #menu-toggle:checked ~ .menu {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding: 55px 5%;
        text-align: center;
    }

    .hero h1 {
        font-size: 34px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-actions {
        justify-content: center;
    }

    .features,
    .service-grid,
    .contact-grid,
    .split {
        grid-template-columns: 1fr;
        padding: 45px 5%;
    }

    .service-cta-strip {
        flex-direction: column;
        align-items: flex-start;
        padding: 22px 20px;
    }

    .service-cta-strip strong {
        font-size: 22px;
    }

    .page-hero {
        padding: 55px 5% 35px;
    }

    .page-hero h1 {
        font-size: 34px;
    }

    .content,
    .reservation-box {
        padding: 45px 5%;
    }

    .split h2 {
        font-size: 32px;
    }

    .footer {
        text-align: center;
        padding-bottom: 90px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-brand p {
        max-width: none;
    }

    .footer-seo-text {
        text-align: left;
    }

    .mobile-sticky {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        display: grid;
        grid-template-columns: 1fr 1fr;
        z-index: 2000;
    }

    .mobile-sticky a {
        background:
            repeating-linear-gradient(
                -45deg,
                #ffd84d 0 16px,
                #ffcc00 16px 32px
            );
        color: #111111;
        padding: 15px;
        text-align: center;
        font-weight: 900;
        border-right: 1px solid rgba(0,0,0,0.2);
    }

    .mobile-sticky a:last-child {
        background:
            linear-gradient(180deg, rgba(255, 204, 0, 0.24), rgba(255, 204, 0, 0.08)),
            #111111;
        color: #ffdc62;
        border-top: 1px solid rgba(255,204,0,0.45);
    }
}
.premium-hero {
    position: relative;
    overflow: hidden;
    min-height: 88vh;
    background:
        radial-gradient(circle at 76% 28%, rgba(255, 204, 0, 0.18), transparent 24%),
        radial-gradient(circle at 16% 16%, rgba(255, 204, 0, 0.08), transparent 22%),
        linear-gradient(135deg, #050505 0%, #111111 55%, #070707 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-highlights {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 30px;
    max-width: 720px;
}

.hero-highlight {
    position: relative;
    background:
        linear-gradient(180deg, rgba(255, 204, 0, 0.06), transparent 50%),
        rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 204, 0, 0.12);
    border-radius: 22px;
    padding: 18px 20px;
    backdrop-filter: blur(10px);
}

.hero-highlight strong {
    display: block;
    color: #ffcc00;
    font-size: 22px;
    margin-bottom: 8px;
}

.hero-highlight span {
    color: #d5d5d5;
    font-size: 14px;
}

.showcase-panel {
    position: relative;
    min-height: 520px;
    border: 1px solid rgba(255, 204, 0, 0.14);
    border-radius: 32px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 18%),
        radial-gradient(circle at 50% 18%, rgba(255, 204, 0, 0.14), transparent 28%),
        #111111;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
    padding: 24px 24px 18px;
    overflow: hidden;
}

.showcase-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 204, 0, 0.1);
    border: 1px solid rgba(255, 204, 0, 0.18);
    color: #ffcc00;
    font-size: 13px;
    font-weight: 700;
}

.showcase-copy {
    margin-top: 18px;
    position: relative;
    z-index: 2;
}

.showcase-copy strong {
    display: block;
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 8px;
    color: #ffffff;
}

.showcase-copy span {
    color: #d0d0d0;
    font-size: 15px;
}

.showcase-visual {
    position: relative;
    z-index: 2;
    margin-top: 26px;
    padding: 16px 0 4px;
    border-radius: 26px;
    background:
        radial-gradient(circle at 50% 40%, rgba(255, 204, 0, 0.18), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent),
        rgba(255, 255, 255, 0.015);
}

.showcase-visual img {
    display: block;
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
    filter: drop-shadow(0 26px 24px rgba(0, 0, 0, 0.62));
}

.showcase-pill-row {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
}

.showcase-pill-row span {
    background:
        repeating-linear-gradient(
            -45deg,
            rgba(255, 204, 0, 0.14) 0 10px,
            rgba(255, 204, 0, 0.08) 10px 20px
        );
    border: 1px solid rgba(255, 204, 0, 0.18);
    color: #ffcc00;
    border-radius: 999px;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 700;
}

@media (max-width: 768px) {
    .premium-hero {
        padding-top: 45px;
    }

    .hero-highlights {
        grid-template-columns: 1fr;
    }

    .showcase-panel {
        min-height: 360px;
        padding: 22px 16px 20px;
        border-radius: 26px;
    }

    .showcase-copy strong {
        font-size: 20px;
    }

    .showcase-copy span {
        font-size: 14px;
    }

    .showcase-visual {
        margin-top: 20px;
        padding: 14px 0 2px;
    }

    .showcase-pill-row {
        justify-content: center;
    }
}
