:root {
    --bg: #f6efe2;
    --bg-soft: #fbf6ef;
    --card: rgba(255, 249, 239, 0.88);
    --card-strong: #fffdf8;
    --text: #24190f;
    --muted: #6b5845;
    --line: rgba(104, 75, 42, 0.14);
    --accent: #b66a1e;
    --accent-dark: #7d4205;
    --accent-soft: #f1d1a8;
    --success: #2f6b45;
    --error: #9c2f26;
    --shadow: 0 18px 60px rgba(75, 48, 17, 0.12);
    --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(235, 190, 133, 0.28), transparent 28%),
        radial-gradient(circle at top right, rgba(187, 111, 30, 0.12), transparent 24%),
        linear-gradient(180deg, #f7f1e7 0%, #f6efe2 40%, #fcf8f1 100%);
    font-family: 'Manrope', sans-serif;
    line-height: 1.65;
}
body.locale-hi {
    font-family: 'Noto Serif Devanagari', serif;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
main { padding-bottom: 4rem; }
.container { width: min(1180px, calc(100vw - 2rem)); margin: 0 auto; }
.narrow { width: min(820px, calc(100vw - 2rem)); }
.center { text-align: center; }
.page-shell {
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 15% 20%, rgba(255,255,255,0.34), transparent 20%),
        radial-gradient(circle at 85% 10%, rgba(255, 214, 166, 0.26), transparent 16%);
}
.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(16px);
    background: rgba(252, 247, 239, 0.72);
    border-bottom: 1px solid var(--line);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    min-height: 84px;
}
.brand-mark {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
}
.brand-mark__symbol {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--accent) 0%, #d49c52 100%);
    color: #fff;
    font-size: 1.6rem;
    box-shadow: var(--shadow);
}
.brand-mark strong {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.65rem;
    line-height: 1;
}
.brand-mark small {
    display: block;
    color: var(--muted);
    max-width: 26rem;
}
.site-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.site-nav a {
    color: var(--muted);
    font-weight: 600;
}
.site-nav a.is-active,
.site-nav a:hover,
.lang-switch { color: var(--accent-dark); }
.lang-switch {
    padding: 0.7rem 1rem;
    border-radius: 999px;
    background: rgba(182, 106, 30, 0.1);
}
.menu-toggle {
    display: none;
    background: none;
    border: 0;
    padding: 0;
    width: 44px;
    height: 44px;
}
.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    margin: 5px auto;
    background: var(--accent-dark);
}
.hero-section { padding: 4rem 0 2rem; }
.hero-grid,
.detail-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
    align-items: start;
}
.hero-copy,
.hero-feature,
.service-card,
.detail-content,
.booking-panel,
.contact-card,
.bank-card,
.value-card,
.status-card {
    background: var(--card);
    border: 1px solid rgba(255,255,255,0.65);
    box-shadow: var(--shadow);
    border-radius: var(--radius);
}
.hero-copy,
.detail-content,
.booking-panel,
.contact-card,
.bank-card,
.value-card,
.status-card,
.service-card__body,
.package-card,
.stat-card { padding: 1.4rem; }
.eyebrow, .badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    background: rgba(182, 106, 30, 0.1);
    color: var(--accent-dark);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.hero-copy h1,
.section-copy h1,
.detail-content h1 {
    margin: 1rem 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 5vw, 4.9rem);
    line-height: 0.95;
}
.hero-copy p,
.section-copy p,
.service-card p,
.rich-content,
.contact-card p,
.bank-card p { color: var(--muted); }
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 48px;
    padding: 0.8rem 1.25rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 700;
}
.button-primary {
    background: linear-gradient(135deg, var(--accent-dark), var(--accent));
    color: #fff;
}
.button-ghost {
    border-color: var(--line);
    background: rgba(255,255,255,0.7);
}
.button-soft {
    background: rgba(255,255,255,0.86);
    color: var(--accent-dark);
}
.button-block { width: 100%; }
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1.5rem 0;
}
.center-actions { justify-content: center; }
.stats-grid,
.hero-mini-grid,
.card-grid,
.contact-grid,
.value-grid,
.package-grid,
.bank-grid {
    display: grid;
    gap: 1rem;
}
.stats-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); margin-top: 1.5rem; }
.stat-card {
    background: rgba(255,255,255,0.55);
    border: 1px solid var(--line);
    border-radius: 22px;
    text-align: center;
}
.stat-card strong {
    display: block;
    font-size: 2rem;
    font-family: 'Cormorant Garamond', serif;
}
.hero-feature {
    position: relative;
    min-height: 480px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}
.hero-feature__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(33,21,11,0.14), rgba(33,21,11,0.82));
}
.hero-feature__content {
    position: absolute;
    inset: auto 0 0;
    padding: 2rem;
    color: #fff;
}
.hero-feature__content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    margin: 1rem 0 0.5rem;
}
.hero-mini-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 1rem; }
.hero-mini-card {
    display: grid;
    gap: 0.6rem;
    padding: 0.9rem;
    background: rgba(255,255,255,0.7);
    border: 1px solid var(--line);
    border-radius: 22px;
}
.hero-mini-card img {
    aspect-ratio: 1.3;
    object-fit: cover;
    border-radius: 16px;
}
.content-section,
.simple-page,
.detail-page { padding-top: 1.5rem; }
.section-head { margin-bottom: 1.25rem; }
.section-head h2,
.package-section h2 {
    margin: 0.35rem 0 0;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-family: 'Cormorant Garamond', serif;
}
.card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card-grid-home { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.service-card {
    overflow: hidden;
    display: grid;
}
.service-card__media img {
    width: 100%;
    aspect-ratio: 1.1;
    object-fit: cover;
}
.service-card__body { display: grid; gap: 0.8rem; }
.service-card__body h3 {
    margin: 0;
    font-size: 1.4rem;
    font-family: 'Cormorant Garamond', serif;
}
.price-line {
    color: var(--accent-dark);
    font-size: 1.05rem;
    font-weight: 800;
}
.text-link {
    color: var(--accent-dark);
    font-weight: 800;
}
.inner-hero { padding-top: 2.5rem; }
.section-copy h1 { margin-bottom: 0.75rem; }
.detail-cover img {
    width: 100%;
    max-height: 520px;
    object-fit: cover;
    border-radius: 24px;
    margin-bottom: 1.25rem;
}
.lead {
    font-size: 1.1rem;
    color: var(--muted);
}
.rich-content { font-size: 1rem; }
.rich-content b, .rich-content strong { color: var(--text); }
.booking-panel {
    position: sticky;
    top: 102px;
}
.booking-form {
    display: grid;
    gap: 1rem;
    margin: 1rem 0 1.25rem;
}
.booking-form label {
    display: grid;
    gap: 0.45rem;
    color: var(--muted);
    font-size: 0.95rem;
}
.booking-form input,
.booking-form textarea,
.booking-form select {
    width: 100%;
    min-height: 50px;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 0.85rem 1rem;
    background: rgba(255,255,255,0.84);
    font: inherit;
    color: var(--text);
}
.package-grid,
.contact-grid,
.value-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.package-card {
    background: var(--card-strong);
    border: 1px solid var(--line);
    border-radius: 24px;
}
.package-card.is-selected {
    border-color: rgba(182, 106, 30, 0.4);
    box-shadow: inset 0 0 0 1px rgba(182, 106, 30, 0.15);
}
.support-card {
    border-top: 1px solid var(--line);
    padding-top: 1rem;
}
.bank-grid { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.bank-card,
.contact-card,
.value-card,
.status-card { background: rgba(255, 252, 246, 0.88); }
.flash-wrap { padding-top: 1rem; }
.flash {
    padding: 1rem 1.2rem;
    border-radius: 20px;
    border: 1px solid transparent;
    box-shadow: var(--shadow);
}
.flash-info { background: #fff7e9; color: var(--accent-dark); border-color: rgba(182,106,30,0.2); }
.flash-error { background: #fff1ef; color: var(--error); border-color: rgba(156,47,38,0.2); }
.site-footer {
    margin-top: 4rem;
    padding: 2.5rem 0 1.5rem;
    border-top: 1px solid var(--line);
    background: rgba(255, 248, 236, 0.78);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 0.8fr;
    gap: 1.5rem;
}
.footer-grid h3,
.footer-grid h4 {
    margin-top: 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
}
.footer-bottom {
    margin-top: 1.5rem;
    padding-top: 1.2rem;
    border-top: 1px solid var(--line);
    color: var(--muted);
}
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}
@media (max-width: 960px) {
    .hero-grid,
    .detail-grid,
    .footer-grid,
    .card-grid,
    .card-grid-home,
    .contact-grid,
    .value-grid,
    .package-grid,
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    .detail-grid { grid-template-columns: 1fr; }
    .booking-panel { position: static; }
}
@media (max-width: 760px) {
    .menu-toggle { display: block; }
    .site-nav {
        position: absolute;
        left: 1rem;
        right: 1rem;
        top: calc(100% + 0.75rem);
        padding: 1rem;
        border-radius: 22px;
        background: rgba(255, 252, 247, 0.98);
        border: 1px solid var(--line);
        box-shadow: var(--shadow);
        display: none;
        flex-direction: column;
        align-items: flex-start;
    }
    .site-nav.is-open { display: flex; }
    .hero-grid,
    .card-grid,
    .card-grid-home,
    .contact-grid,
    .value-grid,
    .package-grid,
    .stats-grid,
    .hero-mini-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .header-inner { min-height: 74px; }
    .brand-mark strong { font-size: 1.3rem; }
    .hero-section { padding-top: 2rem; }
    .hero-copy h1,
    .section-copy h1,
    .detail-content h1 { font-size: clamp(2.2rem, 10vw, 3.4rem); }
    .container { width: min(100vw - 1.2rem, 1180px); }
}.footer-grid-wide { grid-template-columns: 1.3fr 0.9fr 0.9fr 1fr; }
.footer-grid-wide a { display: block; margin-bottom: 0.45rem; color: var(--muted); }
.policy-stack { display: grid; gap: 1rem; margin-top: 1.5rem; }
.policy-card {
    background: rgba(255, 252, 246, 0.9);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 1.4rem;
    box-shadow: var(--shadow);
}
.policy-card h2 {
    margin-top: 0;
    margin-bottom: 0.75rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
}
.policy-card p:last-child { margin-bottom: 0; }
.policy-list {
    margin: 0.75rem 0 0;
    padding-left: 1.2rem;
    color: var(--muted);
}
.policy-list li { margin-bottom: 0.55rem; }
.policy-list.numbered { padding-left: 1.35rem; }
@media (max-width: 760px) {
    .footer-grid-wide { grid-template-columns: 1fr; }
}
