/* ==================================================================
   Vigneshwara Caterers — Design system
   ------------------------------------------------------------------
   1.  Tokens
   2.  Base & typography
   3.  Utilities & buttons
   4.  Ornaments (gold rule, kolam pattern, arch frame)
   5.  Top bar & sticky header
   6.  Mobile offcanvas menu
   7.  Hero (home)
   8.  Page banner (inner pages)
   9.  Section components
   10. Enquiry form
   11. Footer & footer CTA
   12. Floating actions & back-to-top
   13. Motion & accessibility
   ================================================================== */

/* ------------------------------------------------------------------
   1. Tokens — colours taken from the logo
   ------------------------------------------------------------------ */
:root {
    --vc-red:          #A3131A;   /* kumkum red of the wordmark   */
    --vc-red-dark:     #7A0E13;
    --vc-maroon:       #5A0B10;
    --vc-gold:         #B8862B;   /* temple gold of "CATERERS"    */
    --vc-gold-bright:  #DDB04A;
    --vc-gold-soft:    #EBD7A6;
    --vc-leaf:         #2F6B2A;   /* banana leaf green            */
    --vc-leaf-soft:    #E4EEDC;
    --vc-paper:        #FFFDF8;
    --vc-sandal:       #F8EFDF;   /* sandalwood tint for alt bands */
    --vc-ink:          #2B1D16;
    --vc-muted:        #6B5A4E;
    --vc-line:         #E7D8BC;

    --font-display: "Rozha One", "Georgia", "Times New Roman", serif;
    --font-body:    "Mukta", "Segoe UI", "Helvetica Neue", Arial, sans-serif;

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 22px;
    --shadow-warm: 0 18px 40px -22px rgba(90, 11, 16, .45);

    --header-h: 84px;
    --section-y: clamp(2.5rem, 8vw, 4rem);

    /* Bootstrap overrides */
    --bs-body-font-family: var(--font-body);
    --bs-body-color: var(--vc-ink);
    --bs-body-bg: var(--vc-paper);
    --bs-link-color-rgb: 163, 19, 26;
    --bs-link-hover-color-rgb: 122, 14, 19;
    --bs-border-color: var(--vc-line);
    --bs-focus-ring-color: rgba(184, 134, 43, .45);
}

/* ------------------------------------------------------------------
   2. Base & typography
   ------------------------------------------------------------------ */
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }

body {
    overflow-x: hidden;            /* safety net: nothing may cause sideways scrolling */
    font-size: 1.0625rem;
    line-height: 1.65;
    background: var(--vc-paper);
    color: var(--vc-ink);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

h1, h2, .display-title {
    font-family: var(--font-display);
    font-weight: 400;              /* Rozha One ships one heavy weight */
    line-height: 1.12;
    color: var(--vc-red-dark);
    letter-spacing: .005em;
}
h1 { font-size: clamp(2.35rem, 5vw, 3.9rem); }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.75rem); margin-bottom: 1rem; }
h3, h4 { font-family: var(--font-body); font-weight: 700; color: var(--vc-ink); line-height: 1.3; }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.1rem; }

p { max-width: 68ch; }
.lead { font-size: 1.2rem; line-height: 1.6; color: var(--vc-muted); }

a { text-decoration-thickness: 1px; text-underline-offset: 3px; }
img { max-width: 100%; height: auto; }

/* 'clip' blocks sideways scroll without breaking the sticky header */
@supports (overflow: clip) {
    body { overflow-x: clip; }
}

::selection { background: var(--vc-gold-soft); color: var(--vc-maroon); }

/* Small sentence-case kicker that sits above some headings.
   Used only where it adds context (e.g. the Telugu term). */
.kicker {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    font-weight: 600;
    color: var(--vc-gold);
    margin-bottom: .6rem;
    font-size: 1rem;
}
.kicker::before {
    content: "";
    width: 26px;
    height: 2px;
    background: currentColor;
}

/* ------------------------------------------------------------------
   3. Utilities & buttons
   ------------------------------------------------------------------ */
.section    { padding-block: var(--section-y); position: relative; }
.bg-sandal  { background: var(--vc-sandal); }
.bg-maroon  { background: var(--vc-maroon); color: #F6E9D2; }
.text-gold  { color: var(--vc-gold) !important; }
.text-muted-warm { color: var(--vc-muted); }
.section-head { max-width: 720px; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head.text-center { margin-inline: auto; }
.section-head.text-center p { margin-inline: auto; }

.btn {
    font-weight: 600;
    border-radius: 999px;
    padding: .7rem 1.5rem;
    letter-spacing: .01em;
    transition: background-color .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.btn-lg { padding: .85rem 1.8rem; font-size: 1.05rem; }
.btn:active { transform: translateY(1px); }

.btn-brand {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--vc-red);
    --bs-btn-border-color: var(--vc-red);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--vc-red-dark);
    --bs-btn-hover-border-color: var(--vc-red-dark);
    --bs-btn-active-bg: var(--vc-maroon);
    --bs-btn-active-border-color: var(--vc-maroon);
    --bs-btn-disabled-bg: var(--vc-red);
    --bs-btn-disabled-border-color: var(--vc-red);
}
.btn-gold {
    --bs-btn-color: var(--vc-maroon);
    --bs-btn-bg: var(--vc-gold-bright);
    --bs-btn-border-color: var(--vc-gold-bright);
    --bs-btn-hover-color: var(--vc-maroon);
    --bs-btn-hover-bg: #E9C36A;
    --bs-btn-hover-border-color: #E9C36A;
    --bs-btn-active-bg: var(--vc-gold);
}
.btn-outline-brand {
    --bs-btn-color: var(--vc-red);
    --bs-btn-border-color: var(--vc-red);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--vc-red);
    --bs-btn-hover-border-color: var(--vc-red);
    --bs-btn-active-bg: var(--vc-red-dark);
    border-width: 1.5px;
}
.btn-wa {
    --bs-btn-color: #fff;
    --bs-btn-bg: #1FA855;
    --bs-btn-border-color: #1FA855;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #178A45;
    --bs-btn-hover-border-color: #178A45;
}

.link-arrow {
    font-weight: 600;
    color: var(--vc-red);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: .35rem;
}
.link-arrow i { transition: transform .2s ease; }
.link-arrow:hover i { transform: translateX(4px); }

/* ------------------------------------------------------------------
   4. Ornaments
   ------------------------------------------------------------------ */

/* Gold rule with the small flourish from the logo */
.gold-rule {
    display: flex;
    align-items: center;
    gap: .9rem;
    color: var(--vc-gold);
    margin: 1.1rem 0 1.4rem;
    max-width: 260px;
}
.gold-rule::before,
.gold-rule::after {
    content: "";
    flex: 1;
    height: 1.5px;
    background: linear-gradient(90deg, transparent, var(--vc-gold) 30%, var(--vc-gold) 70%, transparent);
}
.gold-rule svg { width: 34px; height: 18px; flex: none; }
.text-center .gold-rule,
.gold-rule.mx-auto { margin-inline: auto; }

/* Rice-flour kolam dot grid — used very lightly as texture */
.kolam-bg {
    background-image: radial-gradient(circle, rgba(184, 134, 43, .22) 1.3px, transparent 1.6px);
    background-size: 26px 26px;
}

/* Temple-arch image frame — the one bold shape of the site */
.arch-frame {
    position: relative;
    border-radius: 999px 999px var(--radius-md) var(--radius-md);
    padding: 10px;
    background: linear-gradient(160deg, var(--vc-gold-bright), var(--vc-gold) 55%, #8E6415);
    box-shadow: var(--shadow-warm);
}
.arch-frame img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 999px 999px calc(var(--radius-md) - 4px) calc(var(--radius-md) - 4px);
}
.arch-frame::after {                 /* inner hairline, like a temple doorway */
    content: "";
    position: absolute;
    inset: 22px;
    border: 1.5px solid rgba(255, 244, 214, .75);
    border-radius: 999px 999px 8px 8px;
    pointer-events: none;
}

/* ------------------------------------------------------------------
   5. Top bar & sticky header
   ------------------------------------------------------------------ */
.skip-link {
    position: absolute;
    left: -9999px;
    top: 8px;
    z-index: 2000;
    background: var(--vc-maroon);
    color: #fff;
    padding: .5rem 1rem;
    border-radius: var(--radius-sm);
}
.skip-link:focus { left: 8px; }

.topbar {
    background: var(--vc-maroon);
    color: #F2DFC0;
    font-size: .9rem;
    padding-block: .45rem;
}
.topbar__note { max-width: none; }
.topbar__note i { color: var(--vc-gold-bright); margin-right: .35rem; }
.topbar__links { gap: 1.5rem; }
.topbar__links a { color: #F2DFC0; text-decoration: none; }
.topbar__links a:hover { color: #fff; }
.topbar__links i { color: var(--vc-gold-bright); margin-right: .4rem; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: rgba(255, 253, 248, .97);
    border-bottom: 1px solid var(--vc-line);
    transition: box-shadow .25s ease;
}
/* Blur only on desktop. On mobile the offcanvas menu lives inside the header,
   and backdrop-filter would trap its position:fixed inside the header box
   (menu squashed to header height + page scrolling sideways). */
@media (min-width: 1200px) {
    @supports (backdrop-filter: blur(8px)) {
        .site-header { background: rgba(255, 253, 248, .9); backdrop-filter: blur(8px); }
    }
}
.site-header.is-scrolled { box-shadow: 0 8px 24px -18px rgba(43, 29, 22, .5); }

.site-header .navbar { padding-block: 0rem; min-height: var(--header-h); }
.brand-logo {
    width: auto;
    height: 90px;
    transition: height .25s ease;
}
.site-header.is-scrolled .brand-logo { height: 75px; }

.navbar-nav .nav-link {
    font-weight: 600;
    font-size: 1rem;
    color: var(--vc-ink);
    padding: .5rem .8rem !important;
    position: relative;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus-visible { color: var(--vc-red); }
.navbar-nav .nav-link.active { color: var(--vc-red); }

@media (min-width: 1200px) {
    /* Gold underline marks the current page */
    .navbar-nav .nav-link.active::before {
        content: "";
        position: absolute;
        left: .8rem;
        right: .8rem;
        bottom: .1rem;
        height: 2px;
        background: var(--vc-gold);
        border-radius: 2px;
    }
    .navbar-nav .dropdown-toggle.active::before { right: 1.6rem; }

    /* Open dropdowns on hover for mouse users */
    .navbar-nav .dropdown:hover > .dropdown-menu { display: block; }
    .navbar-nav .dropdown > .dropdown-menu { margin-top: 0; }
}

.dropdown-toggle::after {
    border: 0;
    content: "\F282";                      /* bootstrap-icons chevron-down */
    font-family: "bootstrap-icons";
    font-size: .7rem;
    vertical-align: middle;
    margin-left: .3rem;
}

.dropdown-menu {
    --bs-dropdown-border-color: var(--vc-line);
    --bs-dropdown-link-active-bg: var(--vc-sandal);
    --bs-dropdown-link-active-color: var(--vc-red);
    --bs-dropdown-link-hover-bg: var(--vc-sandal);
    --bs-dropdown-link-hover-color: var(--vc-red);
    border-top: 3px solid var(--vc-gold);
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    padding: .6rem;
    box-shadow: var(--shadow-warm);
    min-width: 260px;
}
.dropdown-item {
    border-radius: var(--radius-sm);
    padding: .5rem .8rem;
    font-weight: 500;
    white-space: normal;
}
@media (min-width: 1200px) {
    .dropdown-menu--wide {
        min-width: 520px;
        display: none;
        grid-template-columns: 1fr 1fr;
        column-gap: .25rem;
    }
    .dropdown-menu--wide.show,
    .navbar-nav .dropdown:hover > .dropdown-menu--wide { display: grid; }
}

/* Round call / WhatsApp icons in the header */
.header-actions { gap: .5rem; }
.icon-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    text-decoration: none;
    transition: transform .2s ease, filter .2s ease;
}
.icon-btn:hover { color: #fff; transform: translateY(-2px); filter: brightness(1.08); }
.icon-btn--call { background: var(--vc-red); }
.icon-btn--wa   { background: #1FA855; }

.navbar-toggler {
    border: 1.5px solid var(--vc-line);
    border-radius: var(--radius-sm);
    width: 46px;
    height: 44px;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin-left: .35rem;
    padding: 0;
}
.navbar-toggler:focus { box-shadow: 0 0 0 .2rem var(--bs-focus-ring-color); }
.toggler-bar { display: block; width: 22px; height: 2px; background: var(--vc-maroon); border-radius: 2px; }

/* ------------------------------------------------------------------
   6. Mobile offcanvas menu
   ------------------------------------------------------------------ */
@media (max-width: 1199.98px) {
    .brand-logo { height: 52px; }
    .site-header.is-scrolled .brand-logo { height: 48px; }
    :root { --header-h: 72px; }

    .offcanvas { background: var(--vc-paper); max-width: 340px; }
    .offcanvas-header { border-bottom: 1px solid var(--vc-line); }
    .offcanvas-logo { height: 52px; width: auto; }
    .offcanvas-body { display: flex; flex-direction: column; }
    .navbar-nav .nav-link { padding: .75rem .25rem !important; border-bottom: 1px solid var(--vc-line); font-size: 1.05rem; }
    .navbar-nav .dropdown-menu {
        border: 0;
        box-shadow: none;
        padding: .25rem 0 .5rem .75rem;
        background: transparent;
        border-left: 2px solid var(--vc-gold-soft);
        border-radius: 0;
        margin: .25rem 0 .5rem;
    }
    .offcanvas-contact { margin-top: auto; padding-top: 1.5rem; }
}
@media (max-width: 767px) {
    .brand-logo { height: 60px !important; }
    .icon-btn { width: 40px; height: 40px; font-size: 1rem; }
}


/* ------------------------------------------------------------------
   7. Hero (home)
   ------------------------------------------------------------------ */
.hero {
    position: relative;
    padding-block: clamp(3rem, 7vw, 5.5rem) clamp(2rem, 8vw, 3rem);
    background: linear-gradient(180deg, var(--vc-sandal) 0%, var(--vc-paper) 100%);
    overflow: hidden;
}
.hero::before {                    /* kolam texture fading out to the right */
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(184, 134, 43, .2) 1.3px, transparent 1.6px);
    background-size: 26px 26px;
    -webkit-mask-image: linear-gradient(100deg, #000 0%, transparent 55%);
            mask-image: linear-gradient(100deg, #000 0%, transparent 55%);
    pointer-events: none;
}
.hero .container { position: relative; }
.hero__om {
    font-family: var(--font-display);
    color: var(--vc-gold);
    font-size: 1.05rem;
    margin-bottom: 1rem;
    display: inline-block;
}
.hero h1 { margin-bottom: 1.25rem; max-width: 15ch; }
.hero .lead { max-width: 52ch; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2rem; }

.hero__facts {
    list-style: none;
    padding: 0;
    margin: 2.5rem 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: .75rem 2rem;
    border-top: 1px solid var(--vc-line);
    padding-top: 1.5rem;
}
.hero__facts li { display: flex; align-items: center; gap: .6rem; font-weight: 500; color: var(--vc-ink); }
.hero__facts i { color: var(--vc-leaf); font-size: 1.2rem; }
.hero__facts strong { color: var(--vc-red); font-weight: 700; }

.hero__visual { position: relative; max-width: 440px; margin-inline: auto; }
.hero__seal {                      /* round experience seal overlapping the arch */
    position: absolute;
    left: -28px;
    bottom: 48px;
    width: 128px;
    height: 128px;
    border-radius: 50%;
    background: var(--vc-red);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 4px solid var(--vc-paper);
    outline: 2px solid var(--vc-gold);
    box-shadow: var(--shadow-warm);
    line-height: 1.1;
}
.hero__seal b { font-family: var(--font-display); font-weight: 400; font-size: 2.3rem; }
.hero__seal span { font-size: .85rem; font-weight: 500; max-width: 9ch; }

.hero__leaf-note {
    position: absolute;
    right: -18px;
    top: 14%;
    background: var(--vc-paper);
    border: 1px solid var(--vc-line);
    border-left: 4px solid var(--vc-leaf);
    border-radius: var(--radius-sm);
    padding: .6rem .9rem;
    font-size: .92rem;
    font-weight: 600;
    box-shadow: var(--shadow-warm);
    max-width: 190px;
    line-height: 1.35;
}
.hero__leaf-note small { display: block; font-weight: 400; color: var(--vc-muted); }

@media (max-width: 991.98px) {
    .hero__visual { max-width: 360px; margin-top: 3rem; }
    .hero__seal { left: -8px; width: 108px; height: 108px; }
    .hero__seal b { font-size: 1.9rem; }
    .hero__leaf-note { right: -6px; }
}

/* ------------------------------------------------------------------
   8. Page banner (inner pages)
   ------------------------------------------------------------------ */
.page-banner {
    background: var(--vc-maroon);
    color: #F6E9D2;
    padding-block: clamp(2.75rem, 6vw, 4.25rem);
    position: relative;
    overflow: hidden;
}
.page-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(221, 176, 74, .18) 1.3px, transparent 1.6px);
    background-size: 26px 26px;
    -webkit-mask-image: linear-gradient(270deg, #000, transparent 70%);
            mask-image: linear-gradient(270deg, #000, transparent 70%);
}
.page-banner .container { position: relative; z-index: 1; }
.page-banner h1 { color: #fff; margin-bottom: .5rem; }
.page-banner p { color: #EAD6B4; }
.breadcrumb { --bs-breadcrumb-divider-color: var(--vc-gold-bright); --bs-breadcrumb-item-active-color: #EAD6B4; margin-bottom: 1rem; }
.breadcrumb a { color: var(--vc-gold-bright); text-decoration: none; }

/* ------------------------------------------------------------------
   9. Section components
   ------------------------------------------------------------------ */

/* 9a. Two ways we cook */
.mode-panel {
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--vc-line);
    background: #fff;
}
.mode-panel__img { aspect-ratio: 16 / 10; object-fit: cover; width: 100%; }
.mode-panel__body { padding: clamp(1.5rem, 3vw, 2.25rem); display: flex; flex-direction: column; flex: 1; }
.mode-panel__tag {
    align-self: flex-start;
    font-size: .9rem;
    font-weight: 600;
    padding: .2rem .8rem;
    border-radius: 999px;
    background: var(--vc-leaf-soft);
    color: var(--vc-leaf);
    margin-bottom: .9rem;
}
.mode-panel h3 { font-family: var(--font-display); font-weight: 400; font-size: 1.8rem; color: var(--vc-red-dark); }
.mode-panel ul { padding-left: 0; list-style: none; margin: 1rem 0 1.5rem; }
.mode-panel li { position: relative; padding-left: 1.6rem; margin-bottom: .45rem; }
.mode-panel li::before {
    content: "\F26E";                 /* bootstrap-icons check-lg */
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    color: var(--vc-gold);
}
.mode-panel .link-arrow { margin-top: auto; }

.mode-panel--dark { background: var(--vc-maroon); border-color: var(--vc-maroon); color: #F2E2C6; }
.mode-panel--dark h3 { color: #fff; }
.mode-panel--dark .mode-panel__tag { background: rgba(221, 176, 74, .18); color: var(--vc-gold-bright); }
.mode-panel--dark li::before { color: var(--vc-gold-bright); }
.mode-panel--dark .link-arrow { color: var(--vc-gold-bright); }

/* 9b. First-year timeline — the site's signature section */
.year-path { position: relative; list-style: none; padding: 0; margin: 0; counter-reset: step; }
.year-path::before {
    content: "";
    position: absolute;
    left: 23px;
    top: 10px;
    bottom: 48px;
    width: 2px;
    background: repeating-linear-gradient(to bottom, var(--vc-gold) 0 6px, transparent 6px 12px);
}
.year-path__item { position: relative; padding: 0 0 1.9rem 4.25rem; counter-increment: step; }
.year-path__item:last-child { padding-bottom: 0; }
.year-path__item::before {
    content: counter(step);
    position: absolute;
    left: 0;
    top: -2px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--vc-paper);
    border: 2px solid var(--vc-gold);
    color: var(--vc-red);
    font-family: var(--font-display);
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.year-path__when { font-weight: 600; color: var(--vc-gold); font-size: .95rem; margin-bottom: .1rem; }
.year-path__item h3 { font-size: 1.2rem; margin-bottom: .3rem; }
.year-path__item h3 a { color: inherit; text-decoration: none; }
.year-path__item h3 a:hover { color: var(--vc-red); }
.year-path__item p { margin-bottom: 0; color: var(--vc-muted); }
.year-path__item--key::before { background: var(--vc-red); border-color: var(--vc-red); color: #fff; }

.path-aside {
    position: sticky;
    top: calc(var(--header-h) + 24px);
}
.path-aside__note {
    margin-top: 1.5rem;
    background: var(--vc-leaf-soft);
    border-radius: var(--radius-md);
    padding: 1.1rem 1.25rem;
    font-size: .98rem;
    color: #24461F;
}
.path-aside__note i { margin-right: .35rem; }

/* 9c. Service index rows (mourning list) */
.svc-index { border-top: 1px solid var(--vc-line); }
.svc-row {
    display: grid;
    grid-template-columns: 96px 1fr auto;
    gap: 1.25rem;
    align-items: center;
    padding: 1.1rem .5rem;
    border-bottom: 1px solid var(--vc-line);
    text-decoration: none;
    color: inherit;
    transition: background-color .2s ease;
}
.svc-row:hover { background: #fff; color: inherit; }
.svc-row img { width: 96px; height: 72px; object-fit: cover; border-radius: var(--radius-sm); }
.svc-row h3 { font-size: 1.15rem; margin-bottom: .15rem; }
.svc-row p { margin: 0; color: var(--vc-muted); font-size: .98rem; }
.svc-row__go {
    width: 40px; height: 40px; border-radius: 50%;
    border: 1.5px solid var(--vc-line);
    display: flex; align-items: center; justify-content: center;
    color: var(--vc-red);
    transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}
.svc-row:hover .svc-row__go { background: var(--vc-red); border-color: var(--vc-red); color: #fff; }
@media (max-width: 575.98px) {
    .svc-row { grid-template-columns: 72px 1fr; }
    .svc-row img { width: 72px; height: 60px; }
    .svc-row__go { display: none; }
}

/* 9d. Masikam monthly highlight band */
.masikam-band { overflow: hidden; }
.masikam-band h2 { color: #fff; }
.masikam-band .lead { color: #EAD6B4; }
.month-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: .5rem;
    margin: 1.75rem 0 2rem;
    list-style: none;
    padding: 0;
    max-width: 520px;
}
.month-grid li {
    aspect-ratio: 1;
    border: 1.5px solid rgba(221, 176, 74, .45);
    border-radius: var(--radius-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: var(--vc-gold-bright);
    line-height: 1;
}
.month-grid li small { font-family: var(--font-body); font-size: .68rem; color: #D9C39C; margin-top: .25rem; }
.masikam-band__img {
    border-radius: var(--radius-lg);
    border: 8px solid rgba(221, 176, 74, .25);
    width: 100%;
    aspect-ratio: 9 / 10;
    object-fit: cover;
}

/* 9e. Ceremony chips (Brahmin samskaras) */
.chip-list { display: flex; flex-wrap: wrap; gap: .6rem; list-style: none; padding: 0; margin: 1.25rem 0 1.75rem; }
.chip-list li {
    padding: .4rem 1rem;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--vc-line);
    font-weight: 500;
}
.chip-list--area li { background: transparent; font-size: .95rem; }

.occasion-tile {
    position: relative;
    display: block;
    border-radius: var(--radius-md);
    overflow: hidden;
    color: #fff;
    text-decoration: none;
    aspect-ratio: 4 / 3;
}
.occasion-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.occasion-tile:hover img { transform: scale(1.04); }
.occasion-tile__cap {
    position: absolute;
    inset: auto 0 0 0;
    padding: 2.5rem 1.25rem 1.1rem;
    background: linear-gradient(0deg, rgba(58, 7, 10, .9), transparent);
}
.occasion-tile__cap h3 { color: #fff; font-size: 1.15rem; margin: 0; }
.occasion-tile__cap span { font-size: .92rem; color: #F0DDBA; }
.occasion-tile:hover { color: #fff; }
.occasion-tile--small { aspect-ratio: 3 / 4; }
.occasion-tile--small .occasion-tile__cap { padding: 2rem .8rem .8rem; }
.occasion-tile--small .occasion-tile__cap h3 { font-size: 1rem; }
.occasion-tile--tall { height: 100%; min-height: 360px; aspect-ratio: auto; }

/* 9f. Menu on the leaf */
.leaf-menu {
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--vc-line);
    padding: clamp(1.5rem, 4vw, 2.75rem);
    position: relative;
    overflow: hidden;
}
.leaf-menu::before {              /* banana-leaf strip along the top */
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 10px;
    background: linear-gradient(90deg, #235A20, var(--vc-leaf) 40%, #4C8B3A 70%, #235A20);
}
.leaf-menu__group h3 {
    font-size: 1rem;
    color: var(--vc-leaf);
    margin-bottom: .5rem;
    padding-bottom: .4rem;
    border-bottom: 1px dashed var(--vc-line);
}
.leaf-menu__group ul { list-style: none; padding: 0; margin: 0 0 1.5rem; }
.leaf-menu__group li { padding: .15rem 0; }
.leaf-menu__note {
    border-left: 3px solid var(--vc-gold);
    padding-left: 1rem;
    color: var(--vc-muted);
    font-size: .98rem;
    margin: .5rem 0 0;
}

/* 9g. Why families choose us */
.reason { display: flex; gap: 1rem; }
.reason__icon {
    flex: none;
    width: 52px; height: 52px;
    border-radius: 50%;
    background: var(--vc-sandal);
    color: var(--vc-red);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.35rem;
    border: 1px solid var(--vc-gold-soft);
}
.reason h3 { font-size: 1.12rem; margin-bottom: .25rem; }
.reason p { margin: 0; color: var(--vc-muted); font-size: 1rem; }

/* 9h. How booking works */
.steps { list-style: none; padding: 0; margin: 0; display: grid; gap: 1.5rem; grid-template-columns: repeat(4, 1fr); counter-reset: bstep; }
.steps li { counter-increment: bstep; position: relative; padding-top: 3.4rem; }
.steps li::before {
    content: counter(bstep, decimal-leading-zero);
    position: absolute;
    top: 0; left: 0;
    font-family: var(--font-display);
    font-size: 2.3rem;
    color: var(--vc-gold);
    line-height: 1;
}
.steps li::after {                /* connecting line between steps */
    content: "";
    position: absolute;
    top: 1.1rem;
    left: 3.6rem;
    right: -1rem;
    height: 1px;
    background: var(--vc-line);
}
.steps li:last-child::after { display: none; }
.steps h3 { font-size: 1.1rem; margin-bottom: .3rem; }
.steps p { margin: 0; color: var(--vc-muted); font-size: 1rem; }
@media (max-width: 991.98px) { .steps { grid-template-columns: repeat(2, 1fr); } .steps li::after { display: none; } }
@media (max-width: 575.98px) { .steps { grid-template-columns: 1fr; } }

/* 9i. Testimonials */
.quote {
    height: 100%;
    padding: 1.75rem;
    border-radius: var(--radius-md);
    background: var(--vc-paper);
    border: 1px solid var(--vc-line);
    display: flex;
    flex-direction: column;
}
.quote__mark { font-family: var(--font-display); color: var(--vc-gold); font-size: 3rem; line-height: .6; height: 1.4rem; }
.quote blockquote { margin: 0 0 1.25rem; font-size: 1.05rem; }
.quote figcaption { margin-top: auto; font-weight: 600; }
.quote figcaption span { display: block; font-weight: 400; color: var(--vc-muted); font-size: .92rem; }

/* 9j. FAQ accordion */
.faq .accordion {
    --bs-accordion-bg: transparent;
    --bs-accordion-border-color: var(--vc-line);
    --bs-accordion-btn-focus-box-shadow: 0 0 0 .2rem var(--bs-focus-ring-color);
    --bs-accordion-active-bg: transparent;
    --bs-accordion-active-color: var(--vc-red);
    --bs-accordion-btn-padding-x: 0;
    --bs-accordion-body-padding-x: 0;
    --bs-accordion-border-radius: 0;
    --bs-accordion-inner-border-radius: 0;
}
.faq .accordion-item { border-width: 0 0 1px 0; }
.faq .accordion-button { font-weight: 600; font-size: 1.08rem; color: var(--vc-ink); }
.faq .accordion-button:not(.collapsed) { box-shadow: none; }
.faq .accordion-body { color: var(--vc-muted); padding-top: 0; }

/* ------------------------------------------------------------------
   10. Enquiry form
   ------------------------------------------------------------------ */
.enquiry-card {
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--vc-line);
    padding: clamp(1.5rem, 4vw, 2.5rem);
    box-shadow: var(--shadow-warm);
}
.form-label { font-weight: 600; font-size: .98rem; margin-bottom: .35rem; }
.form-control, .form-select {
    border-radius: var(--radius-sm);
    border-color: #DCCBAA;
    padding: .7rem .9rem;
    background-color: var(--vc-paper);
}
.form-control:focus, .form-select:focus {
    border-color: var(--vc-gold);
    box-shadow: 0 0 0 .2rem var(--bs-focus-ring-color);
    background-color: #fff;
}
.hp-field { position: absolute !important; left: -10000px !important; width: 1px; height: 1px; overflow: hidden; }

.mode-toggle { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; }
.mode-toggle__opt {
    border: 1.5px solid #DCCBAA;
    border-radius: var(--radius-sm);
    padding: .7rem .8rem;
    display: flex;
    align-items: center;
    gap: .5rem;
    cursor: pointer;
    font-weight: 500;
    background: var(--vc-paper);
    transition: border-color .2s ease, background-color .2s ease;
}
.mode-toggle__opt i { color: var(--vc-gold); font-size: 1.15rem; }
.btn-check:checked + .mode-toggle__opt { border-color: var(--vc-red); background: #FBEDEA; color: var(--vc-red-dark); }
.btn-check:focus-visible + .mode-toggle__opt { box-shadow: 0 0 0 .2rem var(--bs-focus-ring-color); }
@media (max-width: 400px) { .mode-toggle { grid-template-columns: 1fr; } }

.form-alert { border-radius: var(--radius-sm); padding: .8rem 1rem; margin-bottom: 1rem; font-weight: 500; }
.form-alert--ok  { background: var(--vc-leaf-soft); color: #24461F; }
.form-alert--err { background: #FBE3E1; color: var(--vc-red-dark); }
.link-wa { color: #178A45; font-weight: 600; text-decoration: none; }
.link-wa:hover { color: #11703A; }

.contact-list { list-style: none; padding: 0; margin: 0; }
.contact-list li { display: flex; gap: .9rem; padding: .9rem 0; border-bottom: 1px solid rgba(221, 176, 74, .25); }
.contact-list li:last-child { border-bottom: 0; }
.contact-list i { color: var(--vc-gold-bright); font-size: 1.2rem; margin-top: .1rem; }
.contact-list a { color: #fff; text-decoration: none; }
.contact-list a:hover { text-decoration: underline; }
.contact-list small { display: block; color: #CDB690; font-size: .88rem; }

.contact-panel {
    background: var(--vc-maroon);
    color: #F2E2C6;
    border-radius: var(--radius-lg);
    padding: clamp(1.5rem, 4vw, 2.25rem);
    height: 100%;
}
.contact-panel__sub { color: var(--vc-gold-bright); font-size: 1rem; margin: 1.5rem 0 .6rem; }
.contact-panel .chip-list li { border-color: rgba(221, 176, 74, .35); color: #F2E2C6; }
.contact-panel h3 { color: #fff; font-family: var(--font-display); font-weight: 400; font-size: 1.7rem; }

/* ------------------------------------------------------------------
   11. Footer & footer CTA
   ------------------------------------------------------------------ */
.footer-cta { background: var(--vc-red); color: #fff; padding-block: 2.5rem; position: relative; overflow: hidden; }
.footer-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, .12) 1.3px, transparent 1.6px);
    background-size: 26px 26px;
}
.footer-cta__inner { position: relative; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem; }
.footer-cta__title { color: #fff; font-size: clamp(1.5rem, 2.6vw, 2.1rem); margin-bottom: .35rem; }
.footer-cta__text { color: #FBE0D6; }
.footer-cta__actions { display: flex; flex-wrap: wrap; gap: .75rem; }

.site-footer { background: #2A0507; color: #D6C3A5; padding-top: 4.5rem; font-size: .98rem; }
.footer-logo {
    background: var(--vc-paper);
    border-radius: var(--radius-md);
    padding: .6rem 1rem;
}
.footer-logo img { height: 60px; width: auto; }
.footer-about { max-width: 38ch; }
.footer-heading { color: var(--vc-gold-bright); font-size: 1.05rem; margin-bottom: 1.1rem; }
.footer-links li { margin-bottom: .5rem; }
.footer-links a, .footer-contact a { color: #D6C3A5; text-decoration: none; }
.footer-links a:hover, .footer-contact a:hover { color: #fff; }
.footer-contact p { display: flex; gap: .7rem; margin-bottom: .8rem; }
.footer-contact i { color: var(--vc-gold-bright); margin-top: .15rem; }
.footer-social a {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(221, 176, 74, .4);
    display: flex; align-items: center; justify-content: center;
    color: var(--vc-gold-bright);
    text-decoration: none;
    transition: background-color .2s ease, color .2s ease;
}
.footer-social a:hover { background: var(--vc-gold-bright); color: var(--vc-maroon); }
.footer-bottom {
    margin-top: 3.5rem;
    border-top: 1px solid rgba(221, 176, 74, .18);
    padding-block: 1.25rem;
    font-size: .9rem;
    color: #A8927A;
}
.footer-bottom a { color: var(--vc-gold-bright); text-decoration: none; }

/* ------------------------------------------------------------------
   12. Floating actions & back-to-top
   ------------------------------------------------------------------ */
.float-actions {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 1020;                 /* below the header, so the open mobile menu covers it */
    display: flex;
    flex-direction: column;
    gap: .7rem;
}
.float-btn {
    width: 56px; height: 56px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: 1.55rem;
    text-decoration: none;
    box-shadow: 0 10px 24px -8px rgba(0, 0, 0, .4);
    transition: transform .2s ease;
    position: relative;
}
.float-btn:hover { color: #fff; transform: scale(1.06); }
.float-btn--wa   { background: #1FA855; }
.float-btn--call { background: var(--vc-red); font-size: 1.3rem; }
.float-btn--wa::after {           /* one gentle pulse to draw the eye, then stops */
    content: "";
    position: absolute;
    width: 56px; height: 56px;
    border-radius: 50%;
    border: 2px solid #1FA855;
    animation: wa-pulse 2s ease-out 1.5s 3;
    opacity: 0;
}
@keyframes wa-pulse { 0% { transform: scale(1); opacity: .8; } 100% { transform: scale(1.6); opacity: 0; } }

.back-to-top {
    position: fixed;
    left: 18px;
    bottom: 18px;
    z-index: 1020;
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 1px solid var(--vc-gold);
    background: var(--vc-paper);
    color: var(--vc-red);
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, visibility .25s ease;
}
.back-to-top.is-visible { opacity: 1; visibility: visible; }
@media (max-width: 575.98px) { .float-btn { width: 50px; height: 50px; font-size: 1.35rem; } .float-btn--wa::after { width: 50px; height: 50px; } }

/* ------------------------------------------------------------------
   13. Motion & accessibility
   ------------------------------------------------------------------ */
:focus-visible { outline: 2px solid var(--vc-gold); outline-offset: 3px; }

/* The single orchestrated moment: hero content settles in on load. */
.hero [data-enter] { opacity: 0; transform: translateY(14px); animation: enter .8s cubic-bezier(.2, .7, .2, 1) forwards; }
.hero [data-enter="2"] { animation-delay: .12s; }
.hero [data-enter="3"] { animation-delay: .24s; }
.hero [data-enter="4"] { animation-delay: .36s; }
.hero__visual[data-enter] { transform: translateY(24px) scale(.98); animation-duration: 1.1s; animation-delay: .15s; }
@keyframes enter { to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation: none !important; transition: none !important; }
    .hero [data-enter] { opacity: 1; transform: none; }
}

@media print {
    .topbar, .site-header, .float-actions, .back-to-top, .footer-cta { display: none !important; }
}

/* Slightly roomier side gutters on phones */
@media (max-width: 575.98px) {
    .container { --bs-gutter-x: 2.25rem; }
}

/* ==================================================================
   14. About Us page
   ================================================================== */

/* 14a. Story image with offset gold outline */
.story-figure { position: relative; margin-right: 18px; margin-bottom: 18px; }
.story-figure::before {
    content: "";
    position: absolute;
    inset: 18px -18px -18px 18px;
    border: 2px solid var(--vc-gold);
    border-radius: var(--radius-lg);
}
.story-figure img {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 7;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-warm);
}
.story-figure figcaption {
    position: absolute;
    left: 16px;
    bottom: 16px;
    background: rgba(255, 253, 248, .95);
    padding: .35rem .8rem;
    border-radius: var(--radius-sm);
    font-size: .88rem;
    font-weight: 500;
    color: var(--vc-muted);
}

/* 14b. At-a-glance ledger */
.ledger-band { border-block: 1px solid var(--vc-line); background: #fff; }
.ledger {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin: 0;
}
.ledger__item { padding: 2rem 1.5rem; border-left: 1px solid var(--vc-line); }
.ledger__item:first-child { border-left: 0; padding-left: 0; }
.ledger dt {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(1.9rem, 3vw, 2.4rem);
    color: var(--vc-red);
    line-height: 1.1;
}
.ledger dd { margin: .25rem 0 0; color: var(--vc-muted); font-size: .98rem; max-width: 22ch; }
@media (max-width: 991.98px) {
    .ledger { grid-template-columns: repeat(2, 1fr); }
    .ledger__item { padding: 1.5rem 1rem; }
    .ledger__item:nth-child(odd) { border-left: 0; padding-left: 0; }
    .ledger__item:nth-child(n+3) { border-top: 1px solid var(--vc-line); }
}

/* 14c. Vision & mission panels */
.vm-panel {
    position: relative;
    height: 100%;
    border-radius: var(--radius-lg);
    padding: clamp(1.75rem, 4vw, 2.75rem);
    padding-top: clamp(2.5rem, 5vw, 3.25rem);
}
.vm-panel h3 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 1.9rem;
    margin-bottom: 1rem;
}
.vm-panel__icon {
    position: absolute;
    top: -26px;
    left: clamp(1.75rem, 4vw, 2.75rem);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    border: 3px solid var(--vc-sandal);
}
.vm-panel--vision {
    background: var(--vc-maroon);
    color: #EBD8B8;
    border-radius: 200px 200px var(--radius-lg) var(--radius-lg);   /* echoes the temple arch */
    text-align: center;
    padding-top: 4.5rem;
}
.vm-panel--vision .vm-panel__icon { left: 50%; transform: translateX(-50%); background: var(--vc-gold-bright); color: var(--vc-maroon); }
.vm-panel--vision h3 { color: #fff; }
.vm-panel--vision p { margin-inline: auto; }
.vm-panel__statement {
    font-family: var(--font-display);
    font-size: 1.35rem;
    line-height: 1.4;
    color: var(--vc-gold-bright);
    margin-bottom: 1.25rem;
}
.vm-panel--mission { background: #fff; border: 1px solid var(--vc-line); }
.vm-panel--mission .vm-panel__icon { background: var(--vc-red); color: #fff; }
.vm-panel--mission h3 { color: var(--vc-red-dark); }
.vm-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 2rem;
}
.vm-list li { padding-left: 1.1rem; border-left: 3px solid var(--vc-gold); }
.vm-list h4 { font-size: 1.05rem; margin-bottom: .3rem; }
.vm-list p { margin: 0; color: var(--vc-muted); font-size: .98rem; }
@media (max-width: 575.98px) { .vm-list { grid-template-columns: 1fr; } }
@media (max-width: 991.98px) { .vm-panel--vision { border-radius: 140px 140px var(--radius-lg) var(--radius-lg); } }

/* 14d. How we cook — principles */
.principles { display: grid; grid-template-columns: 1fr 1fr; gap: 0 2.5rem; }
.principle {
    display: flex;
    gap: 1rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--vc-line);
}
.principle > i { font-size: 1.5rem; color: var(--vc-gold); line-height: 1.2; }
.principle h3 { font-size: 1.12rem; margin-bottom: .3rem; }
.principle p { margin: 0; color: var(--vc-muted); font-size: 1rem; }
@media (max-width: 767.98px) { .principles { grid-template-columns: 1fr; } }

/* 14e. Why only 1–50 guests */
.small-why__lead { color: var(--vc-gold-bright); }
.small-why__cards { display: grid; gap: 1rem; }
.small-why__card {
    display: grid;
    grid-template-columns: 110px 1fr;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem 1.5rem;
    border: 1px solid rgba(221, 176, 74, .35);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, .04);
}
.small-why__card b { font-family: var(--font-display); font-weight: 400; font-size: 2rem; color: var(--vc-gold-bright); line-height: 1; }
.small-why__card span { color: #F2E2C6; }

/* 14f. Service link lists */
.list-heading { font-size: 1.1rem; color: var(--vc-leaf); margin-bottom: .75rem; }
.link-columns { list-style: none; padding: 0; margin: 0; columns: 2; column-gap: 2rem; }
.link-columns--single { columns: 1; }
.link-columns li { break-inside: avoid; }
.link-columns a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .8rem 0;
    border-bottom: 1px solid var(--vc-line);
    color: var(--vc-ink);
    font-weight: 600;
    text-decoration: none;
}
.link-columns a i { color: var(--vc-gold); transition: transform .2s ease; }
.link-columns a:hover { color: var(--vc-red); }
.link-columns a:hover i { transform: translateX(4px); color: var(--vc-red); }
@media (max-width: 575.98px) { .link-columns { columns: 1; } }

/* 14g. Kitchen note */
.kitchen-note {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
    padding: clamp(2rem, 5vw, 3rem) clamp(1.25rem, 4vw, 3rem);
    border-top: 1px solid var(--vc-line);
}
.kitchen-note__mark { font-family: var(--font-display); font-size: 4rem; color: var(--vc-gold); line-height: .5; display: block; height: 2rem; }
.kitchen-note blockquote p {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.6vw, 1.9rem);
    line-height: 1.4;
    color: var(--vc-red-dark);
    max-width: none;
    margin-bottom: 1rem;
}
.kitchen-note figcaption { color: var(--vc-muted); font-weight: 500; }

/* ==================================================================
   15. Live-on-Site Home Cooking page (and reusable pieces)
   ================================================================== */

/* 15a. Chips that are links */
.chip-list a { color: inherit; text-decoration: none; }
.chip-list li:has(a) { transition: border-color .2s ease, color .2s ease; }
.chip-list li:has(a:hover) { border-color: var(--vc-red); color: var(--vc-red); }

/* 15b. "We bring / you provide" panels */
.bring-panel {
    height: 100%;
    border-radius: var(--radius-lg);
    padding: clamp(1.5rem, 4vw, 2.25rem);
}
.bring-panel h3 {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: 1.3rem;
    margin-bottom: 1.25rem;
}
.bring-panel h3 i { font-size: 1.4rem; }
.bring-panel--ours { background: var(--vc-maroon); color: #F2E2C6; }
.bring-panel--ours h3 { color: #fff; }
.bring-panel--ours h3 i { color: var(--vc-gold-bright); }
.bring-panel--yours { background: var(--vc-leaf-soft); color: #24461F; }
.bring-panel--yours h3 { color: #1E3E1A; }
.bring-panel--yours h3 i { color: var(--vc-leaf); }

.bring-list { list-style: none; padding: 0; margin: 0; }
.bring-list li { position: relative; padding: .45rem 0 .45rem 1.7rem; }
.bring-list li::before {
    content: "\F26E";                  /* bootstrap-icons check-lg */
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    top: .45rem;
}
.bring-panel--ours .bring-list li::before  { color: var(--vc-gold-bright); }
.bring-panel--yours .bring-list li::before { color: var(--vc-leaf); }
.bring-list--two { columns: 2; column-gap: 2rem; }
.bring-list--two li { break-inside: avoid; }
@media (max-width: 991.98px) { .bring-list--two { columns: 1; } }
.bring-panel__note {
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px dashed rgba(47, 107, 42, .35);
    font-size: .98rem;
}

/* 15c. Comparison table */
.compare-wrap {
    overflow-x: auto;                  /* scrolls inside itself on narrow phones */
    border-radius: var(--radius-lg);
    border: 1px solid var(--vc-line);
    background: #fff;
    -webkit-overflow-scrolling: touch;
}
.compare-table { width: 100%; min-width: 560px; border-collapse: collapse; }
.compare-table th,
.compare-table td { padding: 1rem 1.25rem; text-align: left; vertical-align: top; border-bottom: 1px solid var(--vc-line); }
.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td { border-bottom: 0; }
.compare-table thead th {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 1.25rem;
    color: var(--vc-red-dark);
    background: var(--vc-paper);
}
.compare-table tbody th { font-weight: 600; width: 28%; color: var(--vc-ink); }
.compare-table td { color: var(--vc-muted); }
.compare-table .is-featured { background: #FDF5E6; color: var(--vc-ink); }
.compare-table thead .is-featured { background: var(--vc-red); color: #fff; }
.compare-table td i { color: var(--vc-leaf); }

/* On phones the table becomes stacked blocks — no hidden sideways swipe */
@media (max-width: 575.98px) {
    .compare-wrap { overflow: visible; }
    .compare-table { min-width: 0; }
    .compare-table thead { display: none; }
    .compare-table,
    .compare-table tbody,
    .compare-table tr,
    .compare-table th,
    .compare-table td { display: block; width: 100%; }
    .compare-table tbody tr { border-bottom: 1px solid var(--vc-line); padding: 1rem 1.1rem; }
    .compare-table tbody tr:last-child { border-bottom: 0; }
    .compare-table tbody th { width: 100%; padding: 0 0 .5rem; border: 0; color: var(--vc-red-dark); }
    .compare-table td {
        display: grid;
        grid-template-columns: 7.5rem 1fr;
        gap: .75rem;
        padding: .45rem .6rem;
        border: 0;
        border-radius: var(--radius-sm);
    }
    .compare-table td::before { content: attr(data-label); font-weight: 600; font-size: .9rem; color: var(--vc-muted); }
    .compare-table td.is-featured::before { color: var(--vc-red); }
}

/* ==================================================================
   16. Contact Us page
   ================================================================== */

/* 16a. Quick contact tiles — overlap the banner edge */
.contact-tiles-wrap { position: relative; z-index: 2; margin-top: -2.5rem; }
.page-banner:has(+ .contact-tiles-wrap) { padding-bottom: calc(clamp(2.75rem, 6vw, 4.25rem) + 2.5rem); }
.contact-tiles {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #fff;
    border: 1px solid var(--vc-line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-warm);
    overflow: hidden;
}
.contact-tile {
    display: flex;
    flex-direction: column;
    gap: .15rem;
    padding: 1.5rem 1.5rem 1.6rem;
    color: var(--vc-ink);
    text-decoration: none;
    border-left: 1px solid var(--vc-line);
    transition: background-color .2s ease;
    min-width: 0;
}
.contact-tile:first-child { border-left: 0; }
.contact-tile:hover { background: var(--vc-paper); color: var(--vc-ink); }
.contact-tile__icon {
    width: 44px; height: 44px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: var(--vc-sandal);
    color: var(--vc-gold);
    font-size: 1.15rem;
    margin-bottom: .6rem;
}
.contact-tile--call .contact-tile__icon { background: var(--vc-red); color: #fff; }
.contact-tile--wa .contact-tile__icon   { background: #1FA855; color: #fff; }
.contact-tile__label { font-size: .9rem; color: var(--vc-muted); }
.contact-tile strong { font-weight: 600; font-size: 1.02rem; line-height: 1.35; }
@media (max-width: 991.98px) {
    .contact-tiles { grid-template-columns: 1fr 1fr; }
    .contact-tile:nth-child(3) { border-left: 0; }
    .contact-tile:nth-child(n+3) { border-top: 1px solid var(--vc-line); }
}
@media (max-width: 575.98px) {
    .contact-tile { padding: 1.1rem 1rem; }
    .contact-tile strong { font-size: .95rem; }
}

/* 16b. Urgent note for families in mourning */
.urgent-note {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-md);
    background: #FBEDEA;
    border-left: 4px solid var(--vc-red);
}
.urgent-note > i { font-size: 1.4rem; color: var(--vc-red); line-height: 1.3; }
.urgent-note__title { font-family: var(--font-body); font-weight: 700; font-size: 1.1rem; color: var(--vc-red-dark); margin-bottom: .25rem; }
.urgent-note a { font-weight: 700; }

/* 16c. "Before you call" checklist */
.call-checklist { list-style: none; padding: 0; margin: 0; counter-reset: cc; }
.call-checklist li { position: relative; padding: .35rem 0 .35rem 2rem; counter-increment: cc; color: #F2E2C6; }
.call-checklist li::before {
    content: counter(cc);
    position: absolute;
    left: 0;
    top: .4rem;
    width: 22px; height: 22px;
    border-radius: 50%;
    border: 1px solid var(--vc-gold-bright);
    color: var(--vc-gold-bright);
    font-size: .78rem;
    font-weight: 700;
    display: flex; align-items: center; justify-content: center;
}
.contact-panel address { font-style: normal; }

/* 16d. Map */
.map-frame {
    height: 100%;
    min-height: 380px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 8px solid #fff;
    box-shadow: var(--shadow-warm);
    background: var(--vc-line);
}
.map-frame iframe { display: block; width: 100%; height: 100%; min-height: 364px; border: 0; }
.contact-tile__email { font-size: .9rem !important; overflow-wrap: anywhere; }

/* ==================================================================
   17. Service pages (Masikam and the other shradh pages)
   ================================================================== */

/* 17a. The masikams of the first year */
.masika-lead { color: #EAD6B4; }
.masika-grid {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: .75rem;
}
.masika {
    position: relative;
    padding: 1rem 1.1rem 1.1rem;
    border: 1px solid rgba(221, 176, 74, .3);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, .03);
    display: flex;
    flex-direction: column;
    gap: .1rem;
}
.masika__num {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: rgba(221, 176, 74, .7);
    line-height: 1;
    margin-bottom: .35rem;
}
.masika__name { font-weight: 700; color: #fff; font-size: 1.05rem; }
.masika__when { font-size: .9rem; color: #CDB690; }
.masika--special { background: var(--vc-gold-bright); border-color: var(--vc-gold-bright); }
.masika--special .masika__num  { color: var(--vc-red-dark); }
.masika--special .masika__name { color: var(--vc-maroon); }
.masika--special .masika__when { color: #6B4A10; }
@media (max-width: 991.98px) { .masika-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 575.98px) {
    .masika-grid { grid-template-columns: 1fr 1fr; gap: .5rem; }
    .masika { padding: .8rem .85rem; }
    .masika__name { font-size: .98rem; }
}
.masika-note {
    margin: 1.75rem 0 0;
    color: #D9C39C;
    font-size: .98rem;
    max-width: none;
}
.masika-note i { color: var(--vc-gold-bright); margin-right: .35rem; }

/* 17b. Small helpers for service pages */
.contact-panel > p { color: #EAD6B4; }
.mode-panel:not(:has(.mode-panel__img)) .mode-panel__body { padding-top: clamp(1.75rem, 3vw, 2.5rem); }

/* 17c. Menu size options (13th day and other feast pages) */
.menu-tier {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--vc-line);
    border-radius: var(--radius-lg);
    padding: 1.75rem 1.5rem 1.5rem;
    position: relative;
    overflow: hidden;
}
.menu-tier::before {                  /* banana-leaf strip, like the menu card */
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 6px;
    background: linear-gradient(90deg, #235A20, var(--vc-leaf) 40%, #4C8B3A 70%, #235A20);
}
.menu-tier__head { border-bottom: 1px dashed var(--vc-line); padding-bottom: 1rem; margin-bottom: 1rem; }
.menu-tier__for { font-size: .9rem; color: var(--vc-muted); margin-bottom: .25rem; }
.menu-tier h3 { font-family: var(--font-display); font-weight: 400; font-size: 1.9rem; color: var(--vc-red-dark); margin: 0; }
.menu-tier__count { font-weight: 700; color: var(--vc-gold); margin: .15rem 0 0; }
.menu-tier__list { list-style: none; padding: 0; margin: 0 0 1.5rem; }
.menu-tier__list li { position: relative; padding: .3rem 0 .3rem 1.4rem; }
.menu-tier__list li::before {
    content: "";
    position: absolute;
    left: .15rem;
    top: .85rem;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--vc-gold);
}
.menu-tier--featured { border: 2px solid var(--vc-red); box-shadow: var(--shadow-warm); }
.menu-tier--featured .menu-tier__for { color: var(--vc-red); font-weight: 600; }

/* 17d. "One kitchen for the whole period" journey (karma pages) */
.journey {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
}
.journey li { display: flex; align-items: center; }

.journey a,
.journey span {
    display: inline-block;
    padding: .45rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(221, 176, 74, .45);
    color: #F2E2C6;
    text-decoration: none;
    font-weight: 500;
    transition: background-color .2s ease, color .2s ease;
}
.journey a:hover { background: rgba(221, 176, 74, .15); color: #fff; }
.journey .is-current span { background: var(--vc-gold-bright); border-color: var(--vc-gold-bright); color: var(--vc-maroon); font-weight: 700; }

/* 17e. Calendar date vs tithi (aabdikam / taddinam pages) */
.date-tithi {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: stretch;
    gap: 1rem;
}
.date-tithi__box {
    background: #fff;
    border: 1px solid var(--vc-line);
    border-radius: var(--radius-lg);
    padding: 1.5rem 1.4rem;
    display: flex;
    flex-direction: column;
    gap: .2rem;
    color: var(--vc-muted);
}
.date-tithi__label { font-size: .9rem; font-weight: 600; color: var(--vc-muted); }
.date-tithi__box strong {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 1.6rem;
    line-height: 1.2;
    color: var(--vc-ink);
}
.date-tithi__box--tithi { background: var(--vc-maroon); border-color: var(--vc-maroon); color: #EAD6B4; }
.date-tithi__box--tithi .date-tithi__label { color: var(--vc-gold-bright); }
.date-tithi__box--tithi strong { color: #fff; }
.date-tithi__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--vc-gold);
    font-size: 1.5rem;
}
.date-tithi__foot { margin: 1.25rem 0 0; color: var(--vc-muted); font-size: .98rem; max-width: none; }
.date-tithi__foot i { color: var(--vc-leaf); margin-right: .35rem; }
@media (max-width: 575.98px) {
    .date-tithi { grid-template-columns: 1fr; gap: .5rem; }
    .date-tithi__arrow { transform: rotate(90deg); }
}

/* 17f. Ceremony directory (Brahmin Catering Services) */
.ceremony-jump {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-bottom: 2rem;
}
.ceremony-jump a {
    padding: .35rem .9rem;
    border-radius: 999px;
    border: 1px solid var(--vc-line);
    background: #fff;
    color: var(--vc-ink);
    font-weight: 500;
    font-size: .95rem;
    text-decoration: none;
    transition: border-color .2s ease, color .2s ease;
}
.ceremony-jump a:hover { border-color: var(--vc-red); color: var(--vc-red); }

.ceremony-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.ceremony {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--vc-line);
    border-top: 3px solid var(--vc-gold);
    border-radius: var(--radius-sm) var(--radius-sm) var(--radius-md) var(--radius-md);
    padding: 1.4rem 1.4rem 1.1rem;
    scroll-margin-top: calc(var(--header-h) + 24px);
}
.ceremony:target { border-color: var(--vc-red); border-top-color: var(--vc-red); box-shadow: var(--shadow-warm); }
.ceremony__alt { font-size: .9rem; color: var(--vc-gold); font-weight: 600; margin-bottom: .15rem; }
.ceremony h3 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 1.55rem;
    color: var(--vc-red-dark);
    margin-bottom: .5rem;
}
.ceremony__text { color: var(--vc-muted); font-size: 1rem; margin-bottom: 1.1rem; }
.ceremony__foot {
    margin-top: auto;
    padding-top: .9rem;
    border-top: 1px dashed var(--vc-line);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: .5rem;
    font-size: .92rem;
}
.ceremony__foot span { color: var(--vc-muted); display: inline-flex; align-items: center; gap: .35rem; }
.ceremony__foot a { font-weight: 600; color: #178A45; text-decoration: none; display: inline-flex; align-items: center; gap: .35rem; }
.ceremony__foot a:hover { color: #11703A; }
@media (max-width: 991.98px) { .ceremony-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 575.98px) { .ceremony-grid { grid-template-columns: 1fr; } }
