/* ============================================================
   SANGEETHA — Page Sections
   Add section styles here as you build each section.
============================================================ */

/* ── Ticker / Marquee strip ──────────────────────────── */
@keyframes sng-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.sng-ticker {
    background: var(--maroon);
    overflow: hidden;
    padding: 10px 0;
}

.sng-ticker__track {
    display: flex;
    width: max-content;
    animation: sng-scroll 35s linear infinite;
}

.sng-ticker__track span {
    font-family: var(--font-body);
    color: var(--gold);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    white-space: nowrap;
    padding-right: 0;
}

/* ══════════════════════════════════════════════════════════
   STORY SECTION — desktop only
   Tablet / mobile styles added separately when required.
══════════════════════════════════════════════════════════ */

.story {
    display: flex;
    background: #F5EDD8;
    border-top: 1px solid rgba(212,164,55,0.55);
    padding: 48px max(clamp(1.5rem, 5vw, 5rem), calc((100% - var(--container-max)) / 2 + clamp(1.5rem, 5vw, 5rem)));
}

/* ── Image panel (left 48%) ──────────────────────────── */
.story-img-panel {
    width: 40%;
    flex-shrink: 0;
    padding: 20px 20px 20px 0;
}

.story-img-box {
    position: relative;
    width: 100%;
    height: calc(100% - 40px);
    min-height: 420px;
    border-radius: 16px;
    border: 2px solid rgba(212, 164, 55, 0.65);
    overflow: hidden;
}

.story-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

/* Badge */
.story-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 90px;
    height: 90px;
}

.story-badge svg {
    width: 100%;
    height: 100%;
}

/* Polaroid */
.story-polaroid {
    position: absolute;
    bottom: 28px;
    left: 20px;
    width: 148px;
    background: #FFFFFF;
    padding: 6px 6px 10px;
    box-shadow: 0 8px 28px rgba(0,0,0,0.28);
    transform: rotate(-8deg);
}

.story-polaroid img {
    width: 100%;
    height: 110px;
    object-fit: cover;
    display: block;
}

.story-polaroid-caption {
    font-family: Georgia, serif;
    font-size: 11px;
    font-style: italic;
    color: #5A1E1E;
    text-align: center;
    padding-top: 8px;
    line-height: 1.4;
}

/* ── Text panel (right 52%) ──────────────────────────── */
.story-text-panel {
    width: 60%;
    background: #F5EDD8;
    padding: 32px 0 32px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Label */
.story-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.story-label-line {
    display: block;
    width: 40px;
    flex-shrink: 0;
    height: 1px;
    background: var(--deep-maroon);
}

.story-label-text {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--deep-maroon);
    white-space: nowrap;
}

/* Heading */
.story-heading {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 2.6vw, 2.8rem);
    font-weight: 700;
    color: #3D1010;
    line-height: 1.2;
    margin-bottom: 12px;
    -webkit-text-stroke: 0.5px currentColor;
}

.story-heading em {
    font-style: italic;
    color: #3D1010;
}

/* Ornament */
.story-ornament {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.story-orn-line {
    display: block;
    flex: 1;
    max-width: 80px;
    height: 1px;
    background: rgba(212,164,55,0.5);
}

.story-orn-gem {
    color: var(--gold);
    font-size: 14px;
    line-height: 1;
}

/* Description */
.story-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #5A3E2B;
    margin-bottom: 12px;
}

/* Bullets */
.story-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.story-bullet {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.story-bullet-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    background: transparent;
    border: 1.5px solid rgba(200,152,52,0.8);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 17px;
}

.story-bullet-body strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #3D1010;
    margin-bottom: 4px;
}

.story-bullet-body p {
    font-size: 13px;
    color: #6B5040;
    line-height: 1.6;
    margin: 0;
}

/* Button */
.story-btn {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    width: auto;
    background: transparent;
    color: var(--maroon);
    border: 2px solid var(--maroon);
    border-radius: var(--radius-pill);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    padding: 13px 32px;
    margin-top: 16px;
    transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.story-btn:hover {
    background: var(--maroon);
    border-color: var(--maroon);
    color: var(--cream);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(90,1,21,0.25);
}

/* ══════════════════════════════════════════════════════════
   STORY — iPAD PRO  901px – 1100px
   Two-column like desktop — slightly tighter padding
══════════════════════════════════════════════════════════ */
@media (min-width: 901px) and (max-width: 1100px) {

    .story-text-panel {
        padding: 44px 40px 44px 32px;
    }

    .story-heading {
        font-size: clamp(2rem, 3.2vw, 2.8rem);
    }

    .story-desc {
        font-size: 14px;
    }
}

/* ══════════════════════════════════════════════════════════
   STORY — TABLET  768px – 900px
   Two-column layout, tighter spacing
══════════════════════════════════════════════════════════ */
@media (min-width: 768px) and (max-width: 900px) {

    .story {
        flex-direction: row;
        padding: 36px max(clamp(1.5rem, 5vw, 5rem), calc((100% - var(--container-max)) / 2 + clamp(1.5rem, 5vw, 5rem)));
    }

    .story-img-panel {
        width: 38%;
        padding: 16px 16px 16px 0;
    }

    .story-img-box {
        min-height: 360px;
    }

    .story-text-panel {
        padding: 16px 20px 16px 0;
    }

    .story-heading {
        font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    }

    .story-desc {
        font-size: 14px;
    }
}

/* ══════════════════════════════════════════════════════════
   STORY — MOBILE  ≤ 767px
   Single column, image top, text bottom
══════════════════════════════════════════════════════════ */
@media (max-width: 767px) {

    .story {
        flex-direction: column;
        padding: 40px 0 48px;
    }

    .story-img-panel {
        width: 100%;
        padding: 0 20px 24px;
    }

    .story-img-box {
        height: 460px;
        border-radius: 16px;
    }

    .story-main-img {
        object-position: center center;
    }

    .story-text-panel {
        width: 100%;
        padding: 4px 32px 0;
        justify-content: flex-start;
        align-items: center;
        text-align: center;
    }

    .story-label {
        justify-content: center;
        margin-bottom: 16px;
    }

    .story-heading {
        font-size: clamp(1.9rem, 4.5vw, 2.6rem);
        text-align: center;
        margin-bottom: 12px;
    }

    .story-ornament {
        text-align: center;
        margin-bottom: 10px;
    }

    .story-desc {
        font-size: 14px;
        text-align: center;
        max-width: 520px;
        margin-bottom: 16px;
    }

    .story-bullets {
        gap: 20px;
        width: 100%;
        text-align: left;
    }

    .story-btn {
        margin-top: 24px;
    }
}

/* ══════════════════════════════════════════════════════════
   STORY — MOBILE  ≤ 480px
   Tighter layout, shorter image, scaled polaroid
══════════════════════════════════════════════════════════ */
@media (max-width: 480px) {

    .story {
        padding: 28px 0 36px;
    }

    .story-img-panel {
        padding: 0 16px 16px;
    }

    .story-img-box {
        height: 300px;
        border-radius: 12px;
    }

    .story-text-panel {
        padding: 8px 20px 0;
    }

    .story-heading {
        font-size: clamp(1.8rem, 7vw, 2.2rem);
    }

    .story-desc {
        font-size: 13px;
        margin-bottom: 16px;
    }

    .story-bullets {
        gap: 14px;
    }

    .story-bullet-icon {
        width: 36px;
        height: 36px;
        font-size: 15px;
    }

    .story-bullet-body strong {
        font-size: 13px;
    }

    .story-bullet-body p {
        font-size: 12px;
    }

    .story-polaroid {
        width: 110px;
        padding: 4px 4px 22px;
        bottom: 18px;
        left: 14px;
        right: auto;
    }

    .story-polaroid img {
        height: 80px;
    }

    .story-polaroid-caption {
        font-size: 9px;
        padding-top: 6px;
    }

    .story-btn {
        font-size: 11px;
        padding: 15px 20px;
        letter-spacing: 2px;
    }
}

/* ── Placeholder style (remove when section is built) ── */
.section-placeholder {
    padding: 80px 0;
    text-align: center;
    background: var(--off-white);
    border-bottom: 1px dashed var(--cream-dark);
    color: var(--medium-brown);
    font-size: 14px;
    letter-spacing: 0.05em;
}

/* ── Footer ─────────────────────────────────────────── */
/* ── FOOTER ──────────────────────────────────────────────── */

.site-footer {
    background: #5A0015;
    color: var(--warm-linen);
    padding: 72px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.4fr 1fr;
    gap: 40px;
    padding-bottom: 56px;
    border-bottom: 1px solid #6B0418;
}

/* ── Brand column ──────────────────────────────────────── */
.footer-brand-name {
    font-family: var(--font-body);
    font-size: 2.8rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    color: var(--gold);
    text-transform: uppercase;
    line-height: 1;
    margin: 0 0 10px;
}

.footer-tagline {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--warm-taupe);
    margin: 0 0 20px;
}

.footer-about {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--warm-taupe);
    line-height: 1.85;
    max-width: 300px;
    margin: 0 0 24px;
}

.footer-credit {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--warm-taupe);
    margin: 0;
}

.footer-credit-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    transition: color var(--transition);
}

.footer-credit-link:hover { color: var(--cream); }

/* ── Column headings ───────────────────────────────────── */
.footer-heading {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 0 0 20px;
}

/* ── Nav links ─────────────────────────────────────────── */
.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--warm-linen);
    text-decoration: none;
    transition: color var(--transition);
}

.footer-links a:hover { color: var(--gold); }

/* ── Info items (Visit Us / Contact) ───────────────────── */
.footer-info {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-info-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--warm-linen);
    line-height: 1.65;
}

.footer-info-item span {
    white-space: nowrap;
}


.footer-info-icon {
    color: var(--gold);
    font-size: 15px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Book a Table link */
.footer-book-link {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-body);
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--gold);
    text-decoration: none;
    margin-top: 4px;
    transition: color var(--transition);
}

.footer-book-link:hover { color: var(--cream); }

/* ── Bottom bar ────────────────────────────────────────── */
.footer-bottom {
    background: #3D000E;
    border-top: 1px solid #6B0418;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-block: 20px;
    flex-wrap: wrap;
}

.footer-copy {
    font-family: var(--font-body);
    font-size: 13px;
    color: #8B7355;
    margin: 0;
}

.footer-nehrux {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    transition: color var(--transition);
}

.footer-nehrux:hover { color: var(--cream); }

/* Social icons */
.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #6B0418;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--warm-taupe);
    font-size: 15px;
    transition: background var(--transition), color var(--transition);
}

.footer-social a:hover {
    background: var(--maroon);
    color: var(--cream);
}

/* ══════════════════════════════════════════════════════════
   STATS BAR
   Desktop: 4-col row | iPad Pro: same, tighter | Tablet/Mobile: 2×2
══════════════════════════════════════════════════════════ */

.sng-stats {
    background: var(--cream);
    border-top: 2px solid rgba(212,164,55,0.55);
    border-bottom: 2px solid rgba(212,164,55,0.55);
    padding: 40px 0 32px;
}

.sng-stats__grid {
    display: flex;
    align-items: stretch;
}

.sng-stats__item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 16px 24px;
    border-right: 1px solid rgba(212,164,55,0.45);
}

.sng-stats__item:last-child {
    border-right: none;
}

.sng-stats__number {
    display: flex;
    align-items: flex-start;
    gap: 2px;
    margin-bottom: 12px;
    line-height: 1;
}

.sng-stats__val {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 4.5vw, 5rem);
    font-weight: 600;
    color: var(--deep-maroon);
    line-height: 1;
}

.sng-stats__sup {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 2vw, 2.2rem);
    font-weight: 600;
    color: var(--deep-maroon);
    line-height: 1;
    margin-top: 8px;
}

.sng-stats__label {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--maroon);
}

/* ── iPad Pro  901px – 1100px ──────────────────────────── */
@media (min-width: 901px) and (max-width: 1100px) {

    .sng-stats {
        padding: 44px 0;
    }

    .sng-stats__item {
        padding: 12px 16px;
    }

    .sng-stats__val {
        font-size: clamp(2.6rem, 4vw, 3.6rem);
    }

    .sng-stats__sup {
        font-size: clamp(1.2rem, 1.8vw, 1.7rem);
        margin-top: 6px;
    }
}

/* ── Tablet ≤ 900px — 2 × 2 grid ──────────────────────── */
@media (max-width: 900px) {

    .sng-stats {
        padding: 36px 0;
    }

    .sng-stats__grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .sng-stats__item {
        padding: 28px 20px;
        border-right: none;
        border-bottom: 1px solid rgba(212,164,55,0.2);
    }

    /* Left column gets right divider */
    .sng-stats__item:nth-child(odd) {
        border-right: 1px solid rgba(212,164,55,0.2);
    }

    /* Bottom row — no bottom border */
    .sng-stats__item:nth-last-child(-n+2) {
        border-bottom: none;
    }
}

/* ── Mobile ≤ 480px ─────────────────────────────────────── */
@media (max-width: 480px) {

    .sng-stats {
        padding: 24px 0;
    }

    .sng-stats__item {
        padding: 20px 10px;
    }

    .sng-stats__val {
        font-size: clamp(2.2rem, 8vw, 3rem);
    }

    .sng-stats__sup {
        font-size: clamp(1rem, 4vw, 1.4rem);
        margin-top: 5px;
    }

    .sng-stats__label {
        font-size: 0.6rem;
        letter-spacing: 2.5px;
    }
}

/* ══════════════════════════════════════════════════════════
   SIGNATURE MENU SECTION
   Desktop: 40/60 side-by-side | iPad Pro: same, tighter
   Tablet ≤ 900px: stacked, featured card horizontal
   Mobile ≤ 600px: featured card vertical, grid 2-col
══════════════════════════════════════════════════════════ */

.sng-menu {
    background: var(--off-white);
    border-top: 1px solid rgba(212,164,55,0.55);
    border-bottom: 1px solid rgba(212,164,55,0.55);
    padding: 56px 0;
    position: relative;
    overflow: hidden;
}

/* ── Full-width header ──────────────────────────────────── */
.sng-menu__header {
    width: 100%;
    max-width: var(--container-max);
    margin-inline: auto;
    padding-inline: clamp(1.5rem, 5vw, 5rem);
    text-align: center;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}

.sng-menu__eyebrow {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--medium-brown);
    margin-bottom: 8px;
}

.sng-menu__heading {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--deep-maroon);
    line-height: 1.05;
    text-transform: uppercase;
    margin-bottom: 8px;
}

/* ── Ornamental divider ─────────────────────────────────── */
.sng-menu__ornament {
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 480px;
    margin-inline: auto;
    margin-bottom: 10px;
}

.sng-menu__orn-line {
    flex: 1;
    height: 1px;
    background: rgba(212, 164, 55, 0.4);
}

.sng-menu__orn-gem {
    color: var(--gold);
    font-size: 16px;
    line-height: 1;
}

.sng-menu__desc {
    font-size: 15px;
    line-height: 1.7;
    color: var(--medium-brown);
    max-width: 600px;
    margin-inline: auto;
}

/* ── Cards row ──────────────────────────────────────────── */
.sng-menu__inner {
    width: 100%;
    max-width: var(--container-max);
    margin-inline: auto;
    padding-inline: clamp(1.5rem, 5vw, 5rem);
    display: grid;
    grid-template-columns: 50% 1fr;
    gap: 28px;
    align-items: stretch;
    position: relative;
    z-index: 1;
}

/* ── Featured card ──────────────────────────────────────── */
.sng-menu__featured {
    border-radius: 14px;
    overflow: hidden;
    border: 1.5px solid rgba(90, 1, 21, 0.18);
    display: flex;
    flex-direction: column;
    transition: box-shadow var(--transition), border-color var(--transition);
}

.sng-menu__featured:hover {
    border-color: var(--maroon);
    box-shadow: 0 8px 28px rgba(90, 1, 21, 0.14);
}

.sng-menu__feat-img {
    width: 100%;
    flex: 1;
    min-height: 270px;
    object-fit: cover;
    object-position: center;
    display: block;
    background: var(--cream-dark);
}

.sng-menu__feat-bar {
    flex-shrink: 0;
    background: var(--maroon);
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 10px 22px;
}

.sng-menu__feat-name {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    font-style: italic;
    color: var(--cream);
    flex: 1;
    margin: 0;
}

.sng-menu__feat-price {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--gold);
    white-space: nowrap;
    margin: 0;
}

.sng-menu__bar-sep {
    display: block;
    width: 1px;
    height: 30px;
    background: rgba(212, 164, 55, 0.45);
    flex-shrink: 0;
}

/* ── Right panel ────────────────────────────────────────── */
.sng-menu__right {
    display: flex;
    flex-direction: column;
}

.sng-menu__grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr 1fr;
    gap: 16px;
}

/* ── Menu cards ─────────────────────────────────────────── */
.sng-menu__card {
    border-radius: 12px;
    overflow: hidden;
    border: 1.5px solid rgba(90, 1, 21, 0.18);
    display: flex;
    flex-direction: column;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.sng-menu__card:hover {
    transform: translateY(-4px);
    border-color: var(--maroon);
    box-shadow: 0 8px 20px rgba(90, 1, 21, 0.14);
}

.sng-menu__card-img {
    width: 100%;
    flex: 1;
    min-height: 130px;
    object-fit: cover;
    object-position: center;
    display: block;
    background: var(--cream-dark);
}

.sng-menu__card-bar {
    flex-shrink: 0;
    background: var(--maroon);
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 7px 16px;
}

.sng-menu__card-name {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    font-style: italic;
    color: var(--cream);
    flex: 1;
    margin: 0;
}

.sng-menu__card-price {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    color: var(--gold);
    white-space: nowrap;
}

/* ── View Full Menu CTA ─────────────────────────────────── */
.sng-menu__cta-wrap {
    display: flex;
    justify-content: center;
    padding-top: 22px;
    position: relative;
    z-index: 1;
}

.sng-menu__cta {
    display: inline-flex;
    align-items: center;
    background: transparent;
    border: 2px solid var(--maroon);
    border-radius: var(--radius-pill);
    padding: 15px 44px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--maroon);
    text-decoration: none;
    transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.sng-menu__cta:hover {
    background: var(--maroon);
    border-color: var(--maroon);
    color: var(--cream);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(90,1,21,0.28);
}

/* ── Corner mandala overlays ────────────────────────────── */
.sng-menu::before,
.sng-menu::after {
    content: '';
    position: absolute;
    width: 440px;
    height: 440px;
    background: url('../images/mandala-corner.svg') center / contain no-repeat;
    opacity: 0.04;
    pointer-events: none;
    z-index: 0;
}

.sng-menu::before {
    top: -80px;
    left: -80px;
}

.sng-menu::after {
    bottom: -80px;
    right: -80px;
}

/* ══ iPad Pro  901px – 1100px ═══════════════════════════ */
@media (min-width: 901px) and (max-width: 1100px) {
    .sng-menu { padding: 64px 0; }
    .sng-menu__inner { grid-template-columns: 52% 1fr; gap: 24px; }
    .sng-menu__heading { font-size: clamp(2.2rem, 4.2vw, 3rem); }
    .sng-menu__feat-img { min-height: 270px; }
    .sng-menu__card-img { flex: 1; min-height: 120px; }
    .sng-menu__feat-name, .sng-menu__feat-price { font-size: 19px; }
    .sng-menu__card-name { font-size: 13px; }
    .sng-menu__card-price { font-size: 14px; }
}

/* ══ Tablet 768px – 900px — 2-column kept ════════════════ */
@media (min-width: 768px) and (max-width: 900px) {
    .sng-menu { padding: 48px 0; }
    .sng-menu__feat-img { min-height: 220px; }
    .sng-menu__card-img { flex: 1; min-height: 105px; }
    .sng-menu__heading { font-size: clamp(1.8rem, 3.5vw, 2.4rem); }
}

/* ══ Tablet ≤ 767px — stacked ════════════════════════════ */
@media (max-width: 767px) {
    .sng-menu { padding: 56px 0; }
    .sng-menu__header { margin-bottom: 28px; }
    .sng-menu__inner { grid-template-columns: 1fr; gap: 24px; }
    .sng-menu__heading { font-size: clamp(2.4rem, 6vw, 3.4rem); }
    .sng-menu__featured { max-width: 540px; margin-inline: auto; }
    .sng-menu__feat-img { flex: none; min-height: 0; height: 280px; }
    .sng-menu__right { width: 100%; }
    .sng-menu__grid { gap: 12px; }
    .sng-menu__card-img { flex: none; height: 160px; }
}

/* ══ Mobile ≤ 480px ══════════════════════════════════════ */
@media (max-width: 480px) {
    .sng-menu { padding: 44px 0; }
    .sng-menu__heading { font-size: clamp(2.6rem, 9vw, 3.6rem); }
    .sng-menu__feat-img { flex: none; min-height: 0; height: 240px; }
    .sng-menu__feat-name, .sng-menu__feat-price { font-size: 18px; }
    .sng-menu__card-img { flex: none; height: 130px; }
    .sng-menu__card-name { font-size: 12px; }
    .sng-menu__card-price { font-size: 13px; }
    .sng-menu__grid { gap: 10px; }
    .sng-menu__cta { padding: 13px 28px; font-size: 11px; letter-spacing: 0.16em; }
}

/* ══════════════════════════════════════════════════════════
   JAIN & SATVIK SECTION
   Desktop: 45/55 split | iPad Pro: same, tighter
   Tablet ≤ 900px: stacked | Mobile ≤ 600px: cards 2-col
══════════════════════════════════════════════════════════ */

.js-section {
    display: flex;
    background: #F5EDD8;
    border-top: 1px solid rgba(212,164,55,0.55);
    border-bottom: 1px solid rgba(212,164,55,0.55);
    overflow: hidden;
}

.js-inner {
    display: flex;
    width: 100%;
    min-height: 0;
    align-items: center;
    padding-left: max(clamp(1.5rem, 5vw, 5rem), calc((100% - var(--container-max)) / 2 + clamp(1.5rem, 5vw, 5rem)));
}

/* ── Left panel ─────────────────────────────────────────── */
.js-left {
    width: 45%;
    flex-shrink: 0;
    background: #F5EDD8;
    padding: 48px 52px 48px 0;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
}

/* CSS mandala — concentric decorative rings */
.js-mandala {
    position: absolute;
    top: -100px;
    left: calc(-100px - clamp(1.5rem, 5vw, 5rem));
    width: 380px;
    height: 380px;
    border-radius: 50%;
    border: 1px solid rgba(212,164,55,0.28);
    box-shadow:
        0 0 0 28px rgba(212,164,55,0.13),
        0 0 0 56px rgba(212,164,55,0.08),
        0 0 0 84px rgba(212,164,55,0.05),
        0 0 0 112px rgba(212,164,55,0.02);
    pointer-events: none;
    z-index: 0;
}

.js-left > *:not(.js-mandala) {
    position: relative;
    z-index: 1;
}

/* Tagline */
.js-tagline {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--medium-brown);
}

.js-tagline-line {
    display: block;
    width: 36px;
    height: 1px;
    background: var(--gold);
    flex-shrink: 0;
}

/* Main heading */
.js-heading {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 4.8vw, 5.4rem);
    font-weight: 700;
    color: var(--deep-maroon);
    line-height: 1.0;
    text-transform: uppercase;
    margin: 0;
}

/* Ornament */
.js-ornament {
    font-size: 15px;
    letter-spacing: 6px;
    color: var(--maroon);
    margin: -6px 0;
}

/* Description */
.js-desc {
    font-size: 15px;
    line-height: 1.85;
    color: var(--medium-brown);
    max-width: 420px;
}

/* Badge pills */
.js-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.js-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(90,1,21,0.28);
    border-radius: 100px;
    padding: 7px 16px;
    font-family: var(--font-body);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--dark-brown);
    background: rgba(90,1,21,0.05);
    transition: border-color var(--transition), background var(--transition);
}

.js-badge:hover {
    border-color: var(--maroon);
    background: rgba(90,1,21,0.1);
}

/* Dish 2×2 grid */
.js-dishes {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.js-dish {
    border-left: 2px solid var(--gold);
    border-bottom: 1px solid rgba(139,58,82,0.3);
    padding: 13px 0 13px 18px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    background: transparent;
    transition: border-left-color var(--transition), background var(--transition);
}

.js-dish:last-child {
    border-bottom: none;
}

.js-dish:hover {
    border-left-color: var(--cream);
    background: rgba(212,164,55,0.05);
}

.js-dish-name {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--cream);
    line-height: 1.3;
}

.js-dish-desc {
    font-size: 12px;
    color: var(--warm-taupe);
    line-height: 1.6;
}

/* CTA button */
.js-cta {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    border: 2px solid var(--maroon);
    border-radius: var(--radius-pill);
    padding: 15px 44px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--maroon);
    text-decoration: none;
    transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.js-cta:hover {
    background: var(--maroon);
    border-color: var(--maroon);
    color: var(--cream);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(90,1,21,0.25);
}

/* ── Right panel ────────────────────────────────────────── */
.js-right {
    flex: 1;
    background: #F5EDD8;
    padding: 48px max(clamp(1.5rem, 5vw, 5rem), calc((100vw - var(--container-max)) / 2 + clamp(1.5rem, 5vw, 5rem))) 48px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    position: relative;
}

/* Right header */
.js-right-header {
    text-align: center;
}

.js-right-eyebrow {
    font-family: var(--font-heading);
    font-size: 16px;
    font-style: italic;
    color: var(--medium-brown);
    letter-spacing: 0.04em;
    margin-bottom: 12px;
}

.js-right-heading {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 2.8vw, 2.6rem);
    font-weight: 700;
    color: var(--deep-maroon);
    margin-bottom: 14px;
}

.js-right-rule {
    width: 100px;
    height: 1px;
    background: var(--gold);
    margin-inline: auto;
    position: relative;
}

.js-right-rule::before,
.js-right-rule::after {
    content: '◆';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 7px;
    color: var(--gold);
    line-height: 1;
}

.js-right-rule::before { right: calc(100% + 6px); }
.js-right-rule::after  { left:  calc(100% + 6px); }

/* Cards — 2×2 grid */
.js-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    overflow: visible;
}

.js-card {
    min-height: 180px;
}

/* Card base — overlay bar style (matches sng-menu__card) */
.js-card {
    position: relative;
    border: 1.5px solid rgba(90,1,21,0.18);
    border-radius: 12px;
    overflow: hidden;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.js-card:hover {
    transform: translateY(-4px);
    border-color: var(--maroon);
    box-shadow: 0 8px 20px rgba(90,1,21,0.16);
}

.js-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    background: var(--cream-dark);
}

.js-card-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--maroon);
    padding: 7px 14px;
}

.js-card-name {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    font-style: italic;
    color: var(--cream);
    margin: 0;
}

/* Bottom soul line */
.js-soul {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 17px;
    font-style: italic;
    color: var(--maroon);
    text-align: right;
    letter-spacing: 0.02em;
    opacity: 0.85;
}

/* ══ iPad Pro  901px – 1100px ═══════════════════════════ */
@media (min-width: 901px) and (max-width: 1100px) {

    .js-left {
        padding: 52px 36px 52px 44px;
        width: 46%;
    }

    .js-right {
        padding: 52px 36px 48px 32px;
    }

    .js-heading {
        font-size: clamp(2.6rem, 4vw, 4rem);
    }

    .js-card-name {
        font-size: 14px;
    }
}

/* ══ Tablet 768px – 900px — side-by-side kept ═══════════ */
@media (min-width: 768px) and (max-width: 900px) {

    .js-left {
        width: 45%;
        padding: 40px 24px 40px 0;
    }

    .js-heading {
        font-size: clamp(1.9rem, 3.5vw, 2.6rem);
    }
}

/* ══ Tablet ≤ 767px — stacked ════════════════════════════ */
@media (max-width: 767px) {

    .js-inner {
        flex-direction: column;
        min-height: auto;
    }

    .js-left {
        width: 100%;
        padding: 56px 28px 48px;
        align-items: center;
        text-align: center;
    }

    .js-tagline  { justify-content: center; }
    .js-badges   { justify-content: center; }
    .js-desc     { text-align: center; max-width: 560px; }
    .js-ornament { text-align: center; }
    .js-cta      { align-self: center; }

    .js-mandala {
        left: 50%;
        transform: translateX(-50%);
    }

    .js-right {
        padding: 52px 28px 48px;
    }

    /* 2×2 stays intact on tablet */
    .js-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
        max-width: 600px;
        margin-inline: auto;
        width: 100%;
    }

}

/* ══ Mobile ≤ 600px ══════════════════════════════════════ */
@media (max-width: 600px) {

    .js-left {
        padding: 48px 20px 40px;
        gap: 18px;
    }

    .js-right {
        padding: 44px 20px 40px;
        gap: 22px;
    }

    .js-cards {
        max-width: 100%;
        gap: 12px;
    }

    .js-soul {
        text-align: center;
    }
}

/* ══ Mobile ≤ 480px ══════════════════════════════════════ */
@media (max-width: 480px) {

    .js-heading {
        font-size: clamp(2.4rem, 9vw, 3.4rem);
    }

    .js-card-name {
        font-size: 13px;
    }

    .js-cta {
        padding: 13px 26px;
        font-size: 10.5px;
    }

}

/* ══════════════════════════════════════════════════════════
   TESTIMONIALS SECTION
   Desktop: 3-col equal height | iPad Pro: same, tighter
   Tablet ≤ 900px: 1-col centred stack | Mobile: compact
══════════════════════════════════════════════════════════ */

.tmn-section {
    background: var(--off-white);
    border-top: 1px solid rgba(212,164,55,0.55);
    border-bottom: 1px solid rgba(212,164,55,0.55);
    padding: 64px 0 72px;
    position: relative;
    overflow: hidden;
}

.tmn-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(139,105,20,0.18) 1px, transparent 1px);
    background-size: 22px 22px;
    pointer-events: none;
    z-index: 0;
}

.tmn-header,
.tmn-section .sg-container {
    position: relative;
    z-index: 1;
}

/* Header */
.tmn-header {
    text-align: center;
    margin-bottom: 56px;
    padding-inline: 1.5rem;
}

.tmn-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #8B6914;
    margin-bottom: 20px;
}

.tmn-eyebrow-line {
    display: block;
    width: 44px;
    height: 1px;
    background: #8B6914;
    flex-shrink: 0;
}

.tmn-heading {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4.5vw, 4rem);
    font-weight: 700;
    color: var(--dark-brown);
    text-transform: none;
    line-height: 1.05;
    -webkit-text-stroke: 0.5px currentColor;
}

/* 3-col grid */
.tmn-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

/* ── Card base (side cards) ─────────────────────────────── */
.tmn-card {
    background: rgba(212,164,55,0.07);
    border-radius: 12px;
    border: 1px solid rgba(212,164,55,0.15);
    padding: 28px 26px 24px;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-height: 320px;
    transition: transform var(--transition), background var(--transition);
}

.tmn-card:not(.tmn-card--featured):hover {
    transform: translateY(-4px);
    background: rgba(212,164,55,0.11);
}

/* ── Featured card (centre) ─────────────────────────────── */
.tmn-card--featured {
    background: #2C1008;
    border-bottom: none;
    border-radius: 16px;
    padding: 36px 30px 28px;
    min-height: 320px;
    box-shadow: 0 10px 40px rgba(44,16,8,0.32), 0 2px 8px rgba(44,16,8,0.14);
}

/* Quotation mark */
.tmn-quote {
    font-family: Georgia, serif;
    font-size: 68px;
    line-height: 0.55;
    color: var(--gold-warm);
    font-weight: 700;
    user-select: none;
}

/* Stars */
.tmn-stars {
    display: flex;
    gap: 3px;
    font-size: 16px;
    color: var(--gold-warm);
}

/* Review text */
.tmn-text {
    font-family: var(--font-heading);
    font-size: 15px;
    font-style: italic;
    color: var(--dark-brown);
    line-height: 1.9;
    flex: 1;
}

.tmn-card--featured .tmn-text {
    color: var(--cream);
}

/* Reviewer row */
.tmn-reviewer {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 16px;
    border-top: 1px dashed rgba(212,164,55,0.55);
    margin-top: auto;
}

.tmn-card--featured .tmn-reviewer {
    border-top-color: rgba(246,231,200,0.18);
}

/* Avatar circle */
.tmn-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    color: #FFFFFF;
    flex-shrink: 0;
    letter-spacing: 0.05em;
}

.tmn-avatar--maroon { background: var(--maroon); }
.tmn-avatar--orange { background: #C4622D; }
.tmn-avatar--green  { background: #2D5A27; }

/* Reviewer name & detail */
.tmn-name {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    color: var(--dark-brown);
    margin-bottom: 3px;
}

.tmn-card--featured .tmn-name {
    color: var(--cream);
}

.tmn-detail {
    font-family: var(--font-body);
    font-size: 12px;
    color: #8B7355;
}

.tmn-card--featured .tmn-detail {
    color: var(--warm-taupe);
}

/* ══ iPad Pro  901px – 1100px ═══════════════════════════ */
@media (min-width: 901px) and (max-width: 1100px) {

    .tmn-section {
        padding: 56px 0 64px;
    }

    .tmn-card {
        padding: 28px 24px 22px;
    }

    .tmn-text {
        font-size: 14px;
    }

    .tmn-quote {
        font-size: 56px;
    }
}

/* ══ Tablet 581px – 900px — 2-column grid ═══════════════ */
@media (min-width: 581px) and (max-width: 900px) {

    .tmn-section {
        padding: 52px 0 60px;
    }

    .tmn-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* ══ Mobile ≤ 580px — single column centred ════════════ */
@media (max-width: 580px) {

    .tmn-section {
        padding: 52px 0 60px;
    }

    .tmn-header {
        margin-bottom: 40px;
    }

    .tmn-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin-inline: auto;
        gap: 20px;
    }
}

/* ══ Mobile ≤ 480px ══════════════════════════════════════ */
@media (max-width: 480px) {

    .tmn-section {
        padding: 44px 0 52px;
    }

    .tmn-heading {
        font-size: clamp(1.9rem, 8vw, 2.8rem);
    }

    .tmn-card {
        padding: 28px 22px 22px;
        gap: 12px;
    }

    .tmn-quote {
        font-size: 52px;
    }

    .tmn-text {
        font-size: 14px;
        line-height: 1.8;
    }

    .tmn-name {
        font-size: 13px;
    }
}

/* ══════════════════════════════════════════════════════════
   CELEBRATION / EVENTS SECTION
   Desktop: 45/55 two-panel | iPad Pro: tighter | Tablet: stacked | Mobile: compact
══════════════════════════════════════════════════════════ */

.ev-section {
    background: #F5EDD8;
    border-top: 1px solid rgba(212,164,55,0.55);
    border-bottom: 1px solid rgba(212,164,55,0.55);
    padding: 64px 0;
    position: relative;
    overflow: hidden;
}

/* ── Layout grid ──────────────────────────────────────── */
.ev-layout {
    display: grid;
    grid-template-columns: 45fr 55fr;
    gap: 64px;
    align-items: stretch;
}

/* ══ LEFT: IMAGE PANEL ═══════════════════════════════════ */

.ev-image-panel {
    position: relative;
    align-self: stretch;
}

.ev-img-wrap {
    position: absolute;
    inset: 0;
    border-radius: 20px;
    overflow: hidden;
    border: 1.5px solid #C8A87A;
    background: #D4B896;
}

.ev-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Circular badge — top-left */
.ev-badge {
    position: absolute;
    top: 24px;
    left: 24px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: var(--maroon);
    border: 2px solid var(--gold);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    z-index: 2;
    box-shadow: 0 4px 16px rgba(128,5,29,0.35);
}

.ev-badge-text {
    font-family: var(--font-body);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--cream);
    text-align: center;
    line-height: 1.3;
}

/* Circular stamp — bottom-right */
.ev-stamp {
    position: absolute;
    bottom: 24px;
    right: 24px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(246,231,200,0.94);
    border: 1.5px solid var(--gold-warm);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1px;
    z-index: 2;
    backdrop-filter: blur(4px);
}

.ev-stamp span {
    font-family: var(--font-body);
    font-size: 7.5px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--dark-brown);
    text-align: center;
    line-height: 1.2;
}

.ev-stamp-num {
    font-family: var(--font-heading) !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    color: var(--maroon) !important;
    letter-spacing: 0 !important;
    line-height: 1 !important;
}

/* Gold diamond connector — right edge of image panel */
.ev-diamond {
    position: absolute;
    right: -14px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 28px;
    height: 28px;
    background: var(--gold);
    border-radius: 3px;
    box-shadow: 0 2px 8px rgba(212,164,55,0.4);
    z-index: 3;
}

/* ══ RIGHT: CONTENT PANEL ════════════════════════════════ */

.ev-content {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

/* Eyebrow */
.ev-eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--medium-brown);
    margin: 0;
    margin-bottom: -14px;
}

.ev-eyebrow-line {
    display: block;
    flex: 1;
    height: 1px;
    background: var(--gold);
    max-width: 60px;
}

/* Heading */
.ev-heading {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 3.4vw, 3.2rem);
    font-weight: 700;
    color: var(--dark-brown);
    text-transform: uppercase;
    line-height: 1.05;
    letter-spacing: 0.01em;
    margin: 0;
    -webkit-text-stroke: 0.5px currentColor;
}

.ev-heading-accent {
    color: var(--maroon);
    font-weight: 700;
    -webkit-text-stroke: 0.5px var(--maroon);
}

/* Divider ornament */
.ev-ornament {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: -18px 0 -10px;
    user-select: none;
}

.ev-orn-line {
    display: block;
    flex: 1;
    max-width: 80px;
    height: 1px;
    background: rgba(212,164,55,0.55);
}

.ev-orn-gem {
    color: var(--gold);
    font-size: 12px;
    line-height: 1;
}

/* Body text */
.ev-body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.75;
    color: var(--medium-brown);
    margin: 0 0 -6px;
}

/* ── Event pills (flex row, wrapping) ────────────────── */
.ev-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ev-pill {
    background: var(--off-white);
    border: 1.5px solid rgba(128,5,29,0.3);
    border-radius: var(--radius-pill);
    padding: 6px 14px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    color: var(--dark-brown);
    white-space: nowrap;
}

/* ── Stats strip ─────────────────────────────────────── */
.ev-stats {
    background: #EDD5A8;
    border-radius: 14px;
    padding: 20px 24px;
    display: flex;
    gap: 0;
}

.ev-stat {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    padding-inline: 16px;
}

.ev-stat:first-child { padding-left: 0; }
.ev-stat:last-child  { padding-right: 0; }

.ev-stat:not(:last-child) {
    border-right: 1px solid rgba(61,31,13,0.15);
}

.ev-stat-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: transparent;
    border: 1.5px solid rgba(128,5,29,0.45);
    color: var(--maroon);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    flex-shrink: 0;
}

.ev-stat-num {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-brown);
    line-height: 1;
    margin-bottom: 4px;
}

.ev-stat-label {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    color: var(--medium-brown);
    letter-spacing: 0.02em;
    line-height: 1.3;
}

/* ── CTAs ────────────────────────────────────────────── */
.ev-ctas {
    display: flex;
    gap: 16px;
    align-items: center;
}

.ev-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 32px;
    border-radius: var(--radius-pill);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}

.ev-cta--primary {
    background: var(--maroon);
    color: var(--cream);
    border: 2px solid var(--maroon);
}

.ev-cta--primary:hover {
    background: var(--deep-maroon);
    border-color: var(--deep-maroon);
    color: var(--cream);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(90,1,21,0.28);
}

.ev-cta--secondary {
    background: transparent;
    color: var(--maroon);
    border: 2px solid var(--maroon);
}

.ev-cta--secondary:hover {
    background: var(--maroon);
    border-color: var(--maroon);
    color: var(--cream);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(90,1,21,0.28);
}

/* ══ iPad Pro  901px – 1100px ═══════════════════════════ */
@media (min-width: 901px) and (max-width: 1100px) {

    .ev-section {
        padding: 56px 0 64px;
    }

    .ev-layout {
        gap: 40px;
    }

    .ev-heading {
        font-size: clamp(2rem, 3.5vw, 2.8rem);
    }

    .ev-body {
        font-size: 15px;
    }

    .ev-stat-num {
        font-size: 19px;
    }

    .ev-pill {
        font-size: 11px;
        padding: 5px 12px;
    }

    .ev-content {
        gap: 22px;
    }
}

/* ══ Tablet 768px – 900px — 2-column kept ═══════════════ */
@media (min-width: 768px) and (max-width: 900px) {

    .ev-section {
        padding: 48px 0;
    }

    .ev-layout {
        grid-template-columns: 45fr 55fr;
        gap: 32px;
    }

    .ev-img-wrap {
        aspect-ratio: 4/5;
    }
}

/* ══ Tablet ≤ 767px — stacked ═══════════════════════════ */
@media (max-width: 767px) {

    .ev-section {
        padding: 52px 0 60px;
    }

    .ev-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ev-img-wrap {
        aspect-ratio: 16/9;
        max-height: 360px;
    }

    .ev-diamond {
        display: none;
    }

    .ev-heading {
        font-size: clamp(2rem, 6vw, 2.8rem);
    }

    .ev-content {
        gap: 22px;
    }
}

/* ══ Mobile ≤ 480px ══════════════════════════════════════ */
@media (max-width: 480px) {

    .ev-section {
        padding: 44px 0 52px;
    }

    .ev-pills {
        gap: 6px;
    }

    .ev-stats {
        flex-direction: column;
        gap: 0;
        padding: 18px 20px;
    }

    .ev-stat {
        padding-inline: 0;
        border-right: none !important;
        padding-block: 14px;
    }

    .ev-stat:first-child {
        padding-top: 0;
    }

    .ev-stat:last-child {
        padding-bottom: 0;
    }

    .ev-stat:not(:last-child) {
        border-bottom: 1px solid rgba(61,31,13,0.15);
    }

    .ev-ctas {
        flex-direction: column;
    }

    .ev-cta {
        width: 100%;
    }

    .ev-badge {
        width: 76px;
        height: 76px;
        top: 16px;
        left: 16px;
    }

    .ev-stamp {
        width: 68px;
        height: 68px;
        bottom: 16px;
        right: 16px;
    }

    .ev-content {
        gap: 20px;
    }
}

/* ══════════════════════════════════════════════════════════
   BLOG STRIP
   Desktop: 3-col cards | iPad Pro: 3-col compact | Tablet: 1-col | Mobile: compact
══════════════════════════════════════════════════════════ */

.blg-section {
    background: var(--off-white);
    border-top: 1px solid rgba(212,164,55,0.55);
    border-bottom: 1px solid rgba(212,164,55,0.55);
    padding: 56px 0 64px;
    position: relative;
    overflow: hidden;
}

/* ── Section header ──────────────────────────────────────── */
.blg-header {
    text-align: center;
    margin-bottom: 24px;
}

/* Category badge */
.blg-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.blg-badge-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--maroon);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.blg-badge-text {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--medium-brown);
}

/* Main heading */
.blg-heading {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    color: var(--deep-maroon);
    text-transform: none;
    line-height: 1.05;
    letter-spacing: 0.01em;
    margin: 0 0 14px;
    -webkit-text-stroke: 0.5px currentColor;
}

/* Tagline */
.blg-tagline {
    font-family: var(--font-heading);
    font-size: 17px;
    font-style: italic;
    color: var(--maroon);
    margin: 0 0 14px;
    letter-spacing: 0.04em;
}

/* Subtext */
.blg-subtext {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--medium-brown);
    max-width: 520px;
    margin-inline: auto;
    line-height: 1.7;
    margin-top: 0;
    margin-bottom: 0;
}

/* ── Cards grid ──────────────────────────────────────────── */
.blg-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* ── Card ────────────────────────────────────────────────── */
.blg-card {
    background: #FFFFFF;
    border: 1px solid rgba(90,1,21,0.10);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.blg-card:hover {
    transform: translateY(-6px);
    border-color: rgba(90,1,21,0.25);
    box-shadow: 0 16px 40px rgba(90,1,21,0.10);
}

/* Image wrap */
.blg-card-img-wrap {
    position: relative;
    overflow: hidden;
    height: 160px;
    background: var(--cream-dark);
    flex-shrink: 0;
}

.blg-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.blg-card:hover .blg-card-img {
    transform: scale(1.04);
}

/* Category tag — top left */
.blg-cat-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--maroon);
    color: var(--cream);
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: var(--radius-pill);
    z-index: 2;
}

/* Read time — bottom right */
.blg-read-time {
    position: absolute;
    bottom: 14px;
    right: 14px;
    background: rgba(0,0,0,0.5);
    color: var(--cream);
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 2;
    backdrop-filter: blur(4px);
}

/* Card body */
.blg-card-body {
    padding: 24px 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

/* Date */
.blg-date {
    display: flex;
    align-items: center;
    gap: 7px;
    font-family: var(--font-body);
    font-size: 11px;
    color: #8B7355;
    letter-spacing: 0.04em;
    margin: 0;
}

/* Blog title */
.blg-title {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    color: var(--dark-brown);
    line-height: 1.35;
    margin: 0;
}

/* Excerpt */
.blg-excerpt {
    font-family: var(--font-body);
    font-size: 13.5px;
    color: var(--medium-brown);
    line-height: 1.7;
    margin: 0;
    flex: 1;
}

/* Read More link */
.blg-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--maroon);
    text-decoration: none;
    margin-top: auto;
    transition: color var(--transition), gap var(--transition);
}

.blg-read-more:hover {
    color: var(--deep-maroon);
    gap: 10px;
}

/* ── Bottom CTA ──────────────────────────────────────────── */
.blg-footer {
    text-align: center;
    margin-top: 28px;
}

.blg-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 44px;
    background: transparent;
    color: var(--maroon);
    border: 2px solid var(--maroon);
    border-radius: var(--radius-pill);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.blg-btn:hover {
    background: var(--maroon);
    border-color: var(--maroon);
    color: var(--cream);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(90,1,21,0.28);
}

/* ══ iPad Pro  901px – 1100px ═══════════════════════════ */
@media (min-width: 901px) and (max-width: 1100px) {

    .blg-section {
        padding: 52px 0 60px;
    }

    .blg-heading {
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .blg-card-img-wrap {
        height: 185px;
    }

    .blg-title {
        font-size: 15px;
    }

    .blg-excerpt {
        font-size: 13px;
    }

    .blg-card-body {
        padding: 20px 20px 16px;
    }
}

/* ══ Tablet ≤ 900px — 2-col grid ════════════════════════ */
@media (max-width: 900px) {

    .blg-section {
        padding: 48px 0 56px;
    }

    .blg-header {
        margin-bottom: 40px;
    }

    .blg-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* ══ Mobile ≤ 580px — single col ════════════════════════ */
@media (max-width: 580px) {

    .blg-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-inline: auto;
    }
}

/* ══ Mobile ≤ 480px ══════════════════════════════════════ */
@media (max-width: 480px) {

    .blg-section {
        padding: 40px 0 48px;
    }

    .blg-card-img-wrap {
        height: 190px;
    }

    .blg-footer {
        margin-top: 36px;
    }

    .blg-btn {
        width: 100%;
    }
}

/* ══════════════════════════════════════════════════════════
   BOOK TABLE CTA
   Left-aligned header + full-width inline form bar below
══════════════════════════════════════════════════════════ */

.bkt-section {
    background: #F5EDD8;
    border-top: 1px solid rgba(212,164,55,0.55);
    padding: 64px 0;
    position: relative;
    overflow: hidden;
}

.bkt-section .sg-container {
    padding-inline: clamp(2rem, 5vw, 5rem);
}

/* Decorative concentric ring watermark — right side */
.bkt-section::after {
    content: '';
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
    border-radius: 50%;
    border: 1px solid rgba(200,150,12,0.06);
    box-shadow:
        0 0 0 40px rgba(200,150,12,0.025),
        0 0 0 80px rgba(200,150,12,0.018),
        0 0 0 120px rgba(200,150,12,0.012),
        0 0 0 160px rgba(200,150,12,0.007);
    pointer-events: none;
    opacity: 0.3;
}

/* ── Two-column layout ───────────────────────────────── */
.bkt-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 72px;
    align-items: center;
    margin-bottom: 56px;
}

/* ── Left text block ─────────────────────────────────── */
.bkt-left {
    max-width: 520px;
}

/* Eyebrow */
.bkt-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-warm);
    margin: 0 0 24px;
}

.bkt-eyebrow-line {
    display: block;
    width: 32px;
    height: 1px;
    background: var(--gold-warm);
    flex-shrink: 0;
}

.bkt-eyebrow-diamond {
    font-size: 10px;
    color: var(--gold-warm);
    flex-shrink: 0;
}

/* Heading */
.bkt-heading {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 4vw, 3.8rem);
    font-weight: 700;
    color: var(--dark-brown);
    text-transform: none;
    line-height: 1.0;
    letter-spacing: -0.01em;
    margin: 0 0 20px;
    -webkit-text-stroke: 0.5px currentColor;
}

/* Gold ornament below heading */
.bkt-ornament {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.bkt-orn-line {
    display: block;
    width: 40px;
    height: 1px;
    background: var(--gold-warm);
}

.bkt-orn-diamond {
    font-size: 11px;
    color: var(--gold-warm);
}

/* Body text */
.bkt-body {
    font-family: var(--font-body);
    font-size: 15.5px;
    line-height: 1.75;
    color: var(--medium-brown);
    margin: 0;
    max-width: 480px;
}

/* ── Right info block ────────────────────────────────── */
.bkt-info {
    background: rgba(200,150,12,0.07);
    border: 1px solid rgba(200,150,12,0.22);
    border-radius: 16px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bkt-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.bkt-info-icon {
    font-size: 20px;
    color: var(--gold-warm);
    flex-shrink: 0;
    margin-top: 2px;
}

.bkt-info-label {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #8B6914;
    margin-bottom: 5px;
}

.bkt-info-value {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-brown);
    line-height: 1.5;
}

.bkt-info-sep {
    height: 1px;
    background: rgba(200,150,12,0.25);
}

/* ── Form — 2-col grid (3 rows × 2 cols) ──────────────── */
.bkt-form {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: stretch;
}

/* Field wrapper — each field takes exactly half the row */
.bkt-field {
    position: relative;
    display: flex;
    align-items: center;
    flex: 1 1 calc(50% - 7px);
    min-width: 0;
    background: var(--off-white);
    border: 1px solid #E0C99A;
    border-radius: var(--radius-pill);
    padding: 0 22px;
    min-height: 62px;
    gap: 10px;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.bkt-field:focus-within {
    border-color: var(--gold-mid);
    box-shadow: 0 0 0 3px rgba(200,152,52,0.22);
}

/* Field icon */
.bkt-field-icon {
    font-size: 17px;
    color: var(--gold-warm);
    flex-shrink: 0;
}

/* Text / date / time inputs */
.bkt-input {
    flex: 1;
    border: none;
    background: transparent;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--dark-brown);
    outline: none;
    min-width: 0;
}

.bkt-input::placeholder {
    color: #A08060;
}

/* Tint browser date/time picker icons to match gold */
.bkt-input--date::-webkit-calendar-picker-indicator,
.bkt-input--time::-webkit-calendar-picker-indicator {
    opacity: 0.6;
    cursor: pointer;
    filter: invert(55%) sepia(70%) saturate(500%) hue-rotate(5deg);
}

/* Select field */
.bkt-field--select { cursor: pointer; }

.bkt-select {
    flex: 1;
    border: none;
    background: transparent;
    font-family: var(--font-body);
    font-size: 14px;
    color: #A08060;
    outline: none;
    cursor: pointer;
    appearance: none;
    min-width: 0;
    padding-right: 8px;
}

.bkt-select option { color: var(--dark-brown); }

.bkt-select-chevron {
    font-size: 13px;
    color: var(--gold-warm);
    flex-shrink: 0;
    pointer-events: none;
}

/* CTA wrap — centres the Reserve button */
.bkt-cta-wrap {
    display: flex;
    justify-content: flex-start;
    padding-top: 10px;
}

/* Confirm / Reserve CTA button */
.bkt-confirm {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 44px;
    background: var(--maroon);
    color: var(--cream);
    border: 2px solid var(--maroon);
    border-radius: var(--radius-pill);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
    transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.bkt-confirm:hover {
    background: var(--deep-maroon);
    border-color: var(--deep-maroon);
    color: var(--cream);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(90,1,21,0.28);
}

/* ══ iPad Pro  901px – 1100px ═══════════════════════════ */
@media (min-width: 901px) and (max-width: 1100px) {

    .bkt-section {
        padding: 56px 0 64px;
    }

    .bkt-heading {
        font-size: clamp(2.6rem, 5vw, 4rem);
    }

    .bkt-field {
        padding: 0 16px;
        min-height: 54px;
    }
}

/* ══ Tablet 768px – 900px — padding kept ════════════════ */
@media (min-width: 768px) and (max-width: 900px) {

    .bkt-section {
        padding: 52px 0 60px;
    }
}

/* ══ Tablet ≤ 767px — stacked ════════════════════════════ */
@media (max-width: 767px) {

    .bkt-section {
        padding: 52px 0 60px;
    }

    .bkt-section::after {
        display: none;
    }

    .bkt-layout {
        grid-template-columns: 1fr;
        gap: 36px;
        margin-bottom: 32px;
    }

    .bkt-info {
        padding: 24px 20px;
        flex-direction: row;
        gap: 0;
    }

    .bkt-info-item { flex: 1; }
    .bkt-info-sep { width: 1px; height: auto; background: rgba(200,150,12,0.25); margin-inline: 20px; }

    .bkt-field {
        flex: 1 1 calc(50% - 7px);
    }
}

/* ══ Mobile ≤ 480px — single col ════════════════════════ */
@media (max-width: 480px) {

    .bkt-section {
        padding: 44px 0 52px;
    }

    .bkt-header {
        margin-bottom: 36px;
    }

    .bkt-form {
        flex-direction: column;
        gap: 10px;
    }

    .bkt-field {
        flex: none;
        width: 100%;
    }

    .bkt-confirm {
        width: 100%;
    }

    .bkt-info {
        flex-direction: column;
        gap: 20px;
    }

    .bkt-info-sep {
        width: auto;
        height: 1px;
        margin-inline: 0;
    }

    .bkt-info-item {
        flex: none;
    }
}
