:root {
    --maroon: #7f171d;
    --maroon-dark: #4e0d13;
    --gold: #d9a441;
    --cream: #fff8ec;
    --ink: #241b18;
    --muted: #6f625d;
    --leaf: #28664a;
    --line: #ead8be;
    --white: #ffffff;
    --shadow: 0 18px 45px rgba(50, 22, 12, 0.16);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, "Noto Sans Devanagari", "Mangal", sans-serif;
    color: var(--ink);
    background: #fffaf2;
    line-height: 1.6;
}

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

img,
video {
    display: block;
    max-width: 100%;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 14px clamp(16px, 4vw, 56px);
    background: rgba(255, 248, 236, 0.95);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(12px);
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 220px;
}

.brand-mark {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border-radius: 50%;
    background: var(--maroon);
    color: var(--gold);
    font-weight: 800;
}

.brand strong,
.brand small {
    display: block;
}

.brand small {
    max-width: 330px;
    color: var(--muted);
    font-size: 12px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
}

.main-nav a {
    padding: 9px 12px;
    border-radius: 8px;
}

.main-nav a:hover,
.language-link {
    background: #f2dfbd;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: var(--maroon);
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: clamp(22px, 4vw, 56px);
    align-items: center;
    padding: clamp(24px, 5vw, 70px) clamp(16px, 4vw, 56px);
    background:
        linear-gradient(115deg, rgba(127, 23, 29, 0.95), rgba(78, 13, 19, 0.88)),
        url("../images/sheru-poster.jpeg") center/cover;
    color: var(--white);
}

.hero-media img {
    width: 100%;
    border: 8px solid rgba(255, 255, 255, 0.72);
    box-shadow: var(--shadow);
}

.hero h1,
.page-title h1 {
    margin: 0 0 16px;
    font-size: clamp(34px, 5vw, 68px);
    line-height: 1.1;
}

.hero p {
    max-width: 720px;
    font-size: clamp(16px, 2vw, 20px);
}

.eyebrow {
    margin: 0 0 10px;
    color: var(--gold);
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hero-actions,
.footer-actions,
.phone-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 11px 18px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-weight: 800;
}

.btn.primary {
    background: var(--gold);
    color: var(--maroon-dark);
}

.btn.ghost {
    border-color: rgba(255, 255, 255, 0.65);
    color: var(--white);
}

.btn.light {
    background: var(--white);
    color: var(--maroon);
}

.stats-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
}

.stats-strip article {
    padding: 26px clamp(16px, 4vw, 56px);
    background: var(--cream);
}

.stats-strip strong {
    display: block;
    color: var(--maroon);
    font-size: clamp(26px, 3vw, 38px);
}

.section {
    padding: clamp(34px, 5vw, 70px) clamp(16px, 4vw, 56px);
}

.two-column,
.rules-panel,
.form-layout,
.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: clamp(24px, 5vw, 56px);
    align-items: start;
}

.section h2,
.amenity-card h2,
.amenity-card h3 {
    margin: 0 0 10px;
    line-height: 1.2;
}

.check-list,
.terms-list {
    padding-left: 22px;
}

.check-list li {
    margin: 10px 0;
}

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

.event-grid span,
.phone-list a {
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    font-weight: 800;
}

.section-heading {
    margin-bottom: 22px;
}

.amenity-preview,
.amenity-grid,
.gallery-layout {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

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

.amenity-card,
.contact-card,
.booking-note,
.smart-form,
.gallery-layout article {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 10px 28px rgba(50, 22, 12, 0.08);
}

.amenity-card {
    overflow: hidden;
}

.amenity-card h2,
.amenity-card h3,
.amenity-card p {
    padding-inline: 16px;
}

.amenity-card p {
    padding-bottom: 16px;
    color: var(--muted);
}

.photo-placeholder {
    display: grid;
    min-height: 170px;
    place-items: center;
    padding: 18px;
    background: repeating-linear-gradient(135deg, #fbecd0 0 12px, #fff8ec 12px 24px);
    color: var(--maroon);
    font-weight: 800;
    text-align: center;
}

.cta-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: clamp(28px, 5vw, 52px) clamp(16px, 4vw, 56px);
    background: var(--leaf);
    color: var(--white);
}

.cta-band h2 {
    margin: 0 0 6px;
}

.page-title {
    padding: clamp(36px, 6vw, 82px) clamp(16px, 4vw, 56px);
    background: linear-gradient(135deg, var(--maroon), var(--maroon-dark));
    color: var(--white);
}

.page-title p {
    max-width: 850px;
}

.rules-panel {
    background: var(--cream);
}

.rules-panel img {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.terms-list li {
    margin: 9px 0;
}

.form-layout {
    grid-template-columns: 360px minmax(0, 1fr);
}

.booking-note,
.contact-card,
.smart-form {
    padding: clamp(18px, 3vw, 28px);
}

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

label {
    display: grid;
    gap: 6px;
    color: var(--ink);
    font-weight: 800;
}

label span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 600;
}

input,
select,
textarea {
    width: 100%;
    min-height: 46px;
    padding: 11px 12px;
    border: 1px solid #ddc8a8;
    border-radius: 8px;
    background: #fffdf8;
    color: var(--ink);
    font: inherit;
}

textarea {
    resize: vertical;
}

.full {
    grid-column: 1 / -1;
}

.smart-form .btn {
    margin-top: 18px;
}

.notice {
    margin-bottom: 16px;
    padding: 14px 16px;
    border-radius: 8px;
    font-weight: 800;
}

.notice.success {
    background: #e6f5ec;
    color: #155d39;
}

.notice.error {
    background: #fff0ee;
    color: #a11e25;
}

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

.gallery-layout article {
    overflow: hidden;
}

.gallery-layout img,
.gallery-layout video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-card {
    grid-column: 1 / -1;
}

.contact-layout {
    grid-template-columns: 420px minmax(0, 1fr);
}

.contact-card iframe {
    width: 100%;
    height: 280px;
    margin-top: 18px;
    border: 0;
    border-radius: 8px;
}

.site-footer {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding: 30px clamp(16px, 4vw, 56px);
    background: var(--maroon-dark);
    color: var(--white);
}

.site-footer p {
    margin: 6px 0 0;
    color: #f3d9a8;
}

.footer-actions a {
    color: #ffe8b4;
}

.floating-call {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 9;
    padding: 12px 18px;
    border-radius: 999px;
    background: var(--gold);
    color: var(--maroon-dark);
    box-shadow: var(--shadow);
    font-weight: 900;
}

@media (max-width: 980px) {
    .nav-toggle {
        display: block;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        right: 16px;
        left: 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 12px;
        border: 1px solid var(--line);
        border-radius: 8px;
        background: var(--white);
        box-shadow: var(--shadow);
    }

    .main-nav.open {
        display: flex;
    }

    .hero,
    .two-column,
    .rules-panel,
    .form-layout,
    .contact-layout,
    .site-footer {
        grid-template-columns: 1fr;
    }

    .site-footer {
        display: grid;
    }

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

@media (max-width: 700px) {
    .brand small {
        display: none;
    }

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

    .stats-strip,
    .event-grid,
    .amenity-preview,
    .amenity-grid,
    .gallery-layout,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .cta-band {
        align-items: stretch;
        flex-direction: column;
    }

    .floating-call {
        right: 12px;
        bottom: 12px;
    }
}
