/* ============================================================
   Lalsot home page — redesigned with a richer Rajasthani palette.
   All styles for /Views/Home/Index.cshtml live here.
   Class prefix: .lh-
   ============================================================ */

.lh-root {
    --lh-maroon:      #8B1A1A;
    --lh-maroon-dark: #5C0F0F;
    --lh-saffron:     #E8861A;
    --lh-saffron-soft:#F5A742;
    --lh-gold:        #C9A227;
    --lh-cream:       #FFF8EC;
    --lh-cream-2:     #FBEFD7;
    --lh-ink:         #2C1810;
    --lh-ink-soft:    #4B3A2F;
    --lh-mute:        #7A6A5E;
    --lh-line:        #E8DBC4;
    --lh-line-soft:   #F2E6CE;
    --lh-white:       #ffffff;

    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    color: var(--lh-ink);
}

.lh-root img { max-width: 100%; display: block; }

/* ============================================================
   Decorative dividers
   ============================================================ */
.lh-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    color: var(--lh-saffron);
    margin: 12px 0 28px;
}
.lh-ornament::before,
.lh-ornament::after {
    content: "";
    flex: 0 0 56px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--lh-saffron), transparent);
}
.lh-ornament-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--lh-saffron);
    box-shadow: 0 0 0 4px rgba(232,134,26,.15);
}

/* ============================================================
   HERO
   ============================================================ */
.lh-hero {
    position: relative;
    min-height: 88vh;
    color: #fff;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(92,15,15,.92) 0%, rgba(139,26,26,.85) 45%, rgba(232,134,26,.75) 100%),
        radial-gradient(at top right, rgba(201,162,39,.45), transparent 60%),
        linear-gradient(135deg, #5C0F0F, #8B1A1A 60%, #E8861A);
}
.lh-hero::before {
    content: "";
    position: absolute; inset: 0;
    background-image:
        radial-gradient(circle at 20% 20%, rgba(255,255,255,.08) 0, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(255,255,255,.06) 0, transparent 45%);
    pointer-events: none;
}
.lh-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(45deg, transparent 0 24px, rgba(255,255,255,.025) 24px 25px);
    pointer-events: none;
}

.lh-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1240px;
    margin: 0 auto;
    padding: 120px 24px 110px;
    text-align: center;
}

.lh-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.25);
    letter-spacing: .22em;
    font-size: .72rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 26px;
    backdrop-filter: blur(6px);
}
.lh-hero-badge::before,
.lh-hero-badge::after {
    content: "✦";
    color: var(--lh-gold);
    font-size: .8rem;
}

.lh-hero-title {
    margin: 0 0 18px;
    line-height: .95;
    font-weight: 800;
    font-size: clamp(3.6rem, 11vw, 8.5rem);
    letter-spacing: -.03em;
    text-shadow: 0 8px 30px rgba(0,0,0,.25);
}
.lh-hero-title span {
    display: inline-block;
    background: linear-gradient(180deg, #FFFFFF 0%, #FBEFD7 60%, #E8861A 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.lh-hero-sub {
    font-size: clamp(1rem, 1.8vw, 1.3rem);
    line-height: 1.6;
    max-width: 720px;
    margin: 0 auto 18px;
    opacity: .94;
}
.lh-hero-kicker {
    font-size: clamp(1.05rem, 2vw, 1.4rem);
    color: var(--lh-cream-2);
    margin: 0 auto 32px;
    max-width: 700px;
    font-style: italic;
    opacity: .92;
}

.lh-hero-cta {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

.lh-hero-scroll {
    position: absolute;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
    font-size: 1.4rem;
    color: rgba(255,255,255,.7);
    z-index: 3;
    animation: lh-bounce 2.4s infinite;
}
@keyframes lh-bounce {
    0%, 100% { transform: translate(-50%, 0); opacity: .5; }
    50%      { transform: translate(-50%, 10px); opacity: 1; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.lh-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    border-radius: 999px;
    font-weight: 600;
    font-size: .98rem;
    letter-spacing: .02em;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.lh-btn-primary {
    background: linear-gradient(135deg, #FBEFD7, #ffffff);
    color: var(--lh-maroon);
    box-shadow: 0 10px 26px rgba(0,0,0,.18);
}
.lh-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(0,0,0,.28);
    color: var(--lh-maroon-dark);
}
.lh-btn-ghost {
    background: rgba(255,255,255,.12);
    color: #fff;
    border-color: rgba(255,255,255,.45);
    backdrop-filter: blur(6px);
}
.lh-btn-ghost:hover {
    background: rgba(255,255,255,.22);
    color: #fff;
    transform: translateY(-2px);
}
.lh-btn-solid {
    background: linear-gradient(135deg, var(--lh-maroon), var(--lh-maroon-dark));
    color: #fff;
    box-shadow: 0 10px 26px rgba(139,26,26,.3);
}
.lh-btn-solid:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(139,26,26,.42);
    color: #fff;
}
.lh-btn-lg { padding: 16px 36px; font-size: 1.05rem; }

/* ============================================================
   QUICK FACTS strip
   ============================================================ */
.lh-facts {
    background: linear-gradient(180deg, #fff 0%, var(--lh-cream) 100%);
    border-bottom: 1px solid var(--lh-line);
    padding: 36px 0;
}
.lh-facts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}
.lh-fact {
    text-align: center;
    padding: 12px 6px;
    position: relative;
}
.lh-fact + .lh-fact::before {
    content: "";
    position: absolute;
    left: -12px; top: 14px; bottom: 14px;
    width: 1px;
    background: var(--lh-line);
}
.lh-fact-label {
    font-size: .74rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--lh-mute);
    margin-bottom: 4px;
}
.lh-fact-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--lh-maroon);
}

/* ============================================================
   Generic section
   ============================================================ */
.lh-section {
    padding: 96px 0;
    background: #fff;
    position: relative;
}
.lh-section-alt {
    background: var(--lh-cream);
}
.lh-section-warm {
    background:
        radial-gradient(60% 50% at 50% 0%, rgba(232,134,26,.08), transparent 70%),
        var(--lh-cream-2);
}
.lh-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}
.lh-section-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 56px;
}
.lh-kicker {
    display: inline-block;
    font-size: .76rem;
    letter-spacing: .22em;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--lh-saffron);
    margin-bottom: 12px;
}
.lh-h2 {
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -.02em;
    color: var(--lh-ink);
    margin: 0 0 14px;
    line-height: 1.15;
}
.lh-h2 em {
    font-style: normal;
    color: var(--lh-maroon);
    position: relative;
}
.lh-h2 em::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: -4px;
    height: 3px;
    background: linear-gradient(90deg, var(--lh-saffron), var(--lh-gold));
    border-radius: 2px;
}
.lh-lead {
    font-size: 1.1rem;
    color: var(--lh-mute);
    line-height: 1.7;
    margin: 0;
}

/* ============================================================
   WELCOME / About — two-column intro
   ============================================================ */
.lh-welcome {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 56px;
    align-items: center;
}
.lh-welcome-text p {
    font-size: 1.04rem;
    line-height: 1.8;
    color: var(--lh-ink-soft);
    margin: 0 0 16px;
}
.lh-welcome-text p:first-of-type::first-letter {
    font-size: 3.4rem;
    font-weight: 800;
    color: var(--lh-maroon);
    float: left;
    line-height: 1;
    padding: 4px 12px 0 0;
    font-family: Georgia, 'Times New Roman', serif;
}

.lh-welcome-art {
    position: relative;
    aspect-ratio: 4/5;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(92,15,15,.25);
}
.lh-welcome-art img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================================
   HISTORY callout — Battle of Lalsot
   ============================================================ */
.lh-history {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}
.lh-history-body p {
    font-size: 1.02rem;
    line-height: 1.78;
    color: var(--lh-ink-soft);
    margin: 0 0 16px;
}

.lh-battle-card {
    position: relative;
    background: linear-gradient(160deg, var(--lh-maroon) 0%, var(--lh-maroon-dark) 70%, #2a0606 100%);
    color: #fff;
    padding: 44px 38px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(92,15,15,.32);
}
.lh-battle-card::before {
    content: "";
    position: absolute;
    top: -40px; right: -40px;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(232,134,26,.4), transparent 65%);
    border-radius: 50%;
}
.lh-battle-year {
    font-size: clamp(4rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -.03em;
    background: linear-gradient(180deg, #FBEFD7, var(--lh-saffron));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 12px;
    position: relative;
}
.lh-battle-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0 0 12px;
    position: relative;
}
.lh-battle-text {
    font-size: 1rem;
    line-height: 1.65;
    opacity: .92;
    margin: 0;
    position: relative;
}
.lh-battle-divider {
    width: 60px;
    height: 3px;
    background: var(--lh-saffron);
    margin: 16px 0;
    border-radius: 3px;
    position: relative;
}

/* ============================================================
   CULTURE + Hela Khyal feature
   ============================================================ */
.lh-feature {
    background: linear-gradient(135deg, #fff 0%, var(--lh-cream) 100%);
    border: 1px solid var(--lh-line);
    border-radius: 22px;
    padding: 52px 48px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(139,26,26,.08);
}
.lh-feature::before {
    content: "♪";
    position: absolute;
    top: -30px; right: -10px;
    font-size: 16rem;
    color: rgba(232,134,26,.08);
    font-family: Georgia, serif;
    line-height: 1;
    pointer-events: none;
}
.lh-feature-tag {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--lh-saffron), var(--lh-gold));
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.lh-feature h3 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--lh-maroon);
    margin: 0 0 16px;
    letter-spacing: -.01em;
    position: relative;
}
.lh-feature p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--lh-ink-soft);
    margin: 0 0 14px;
    position: relative;
    max-width: 880px;
}

/* ============================================================
   FESTIVALS — pill grid
   ============================================================ */
.lh-festivals {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
}
.lh-festival {
    background: #fff;
    border-radius: 14px;
    padding: 22px 18px;
    text-align: center;
    border: 1px solid var(--lh-line);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    position: relative;
    overflow: hidden;
}
.lh-festival::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--lh-saffron), var(--lh-maroon));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s ease;
}
.lh-festival:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(139,26,26,.12);
    border-color: var(--lh-saffron);
}
.lh-festival:hover::before { transform: scaleX(1); }
.lh-festival-name {
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--lh-ink);
}

/* ============================================================
   TEMPLES — editorial card grid (no header band)

   Each card reads as a heritage catalogue entry:
     - Vertical saffron-gold ribbon along the left edge
     - Decimal-leading-zero watermark number sitting in the top-right corner
       (rendered via CSS counter so the markup stays clean)
     - Small uppercase "Sacred Site" kicker, then a serif name in maroon,
       a gold underline ornament, and the descriptive copy
   ============================================================ */
.lh-temples {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    counter-reset: lh-temple;
}
.lh-temple {
    counter-increment: lh-temple;
    position: relative;
    background: #fff;
    border: 1px solid var(--lh-line);
    border-radius: 14px;
    padding: 30px 30px 28px 36px;
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.lh-temple::before {
    /* Vertical saffron→gold ribbon hugging the left edge */
    content: "";
    position: absolute;
    left: 0; top: 24px; bottom: 24px;
    width: 4px;
    border-radius: 0 4px 4px 0;
    background: linear-gradient(180deg, var(--lh-saffron), var(--lh-gold));
    transition: top .3s ease, bottom .3s ease;
}
.lh-temple::after {
    /* Big outlined-looking numeral in the top-right corner — a quiet
       editorial flourish that gives every card a unique anchor. */
    content: counter(lh-temple, decimal-leading-zero);
    position: absolute;
    top: 18px; right: 24px;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1;
    color: var(--lh-saffron);
    opacity: .14;
    letter-spacing: -.04em;
    pointer-events: none;
}
.lh-temple:hover {
    transform: translateY(-6px);
    border-color: var(--lh-saffron);
    box-shadow: 0 22px 44px rgba(139,26,26,.12);
}
.lh-temple:hover::before { top: 14px; bottom: 14px; }
.lh-temple:hover::after { opacity: .22; }

.lh-temple-body {
    display: flex;
    flex-direction: column;
    padding: 0;
    padding-right: 48px; /* leave room for the corner numeral */
}
.lh-temple-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--lh-saffron);
    margin-bottom: 12px;
}
.lh-temple-kicker::before {
    content: "";
    width: 18px;
    height: 1px;
    background: linear-gradient(90deg, var(--lh-saffron), var(--lh-gold));
}
.lh-temple-body h3 {
    font-family: Georgia, 'Cormorant Garamond', 'Times New Roman', serif;
    font-size: 1.32rem;
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 14px;
    color: var(--lh-maroon);
    position: relative;
    padding-bottom: 14px;
}
.lh-temple-body h3::after {
    /* Short gold underline that grows on hover */
    content: "";
    position: absolute;
    left: 0; bottom: 0;
    width: 36px;
    height: 2px;
    background: linear-gradient(90deg, var(--lh-saffron), var(--lh-gold), transparent);
    border-radius: 2px;
    transition: width .35s ease;
}
.lh-temple:hover .lh-temple-body h3::after { width: 64px; }
.lh-temple-body p {
    margin: 0;
    font-size: .95rem;
    color: var(--lh-mute);
    line-height: 1.7;
}

/* ============================================================
   FOOD — cards
   ============================================================ */
.lh-foods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}
.lh-food {
    background: #fff;
    border-radius: 14px;
    padding: 24px 22px;
    border: 1px solid var(--lh-line);
    border-top: 4px solid var(--lh-saffron);
    transition: transform .2s ease, box-shadow .2s ease;
}
.lh-food:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(232,134,26,.16);
}
.lh-food h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 6px;
    color: var(--lh-ink);
}
.lh-food p {
    margin: 0;
    font-size: .9rem;
    color: var(--lh-mute);
    line-height: 1.55;
}

/* ============================================================
   ECONOMY / Agriculture
   ============================================================ */
.lh-econ {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}
.lh-econ-text p {
    font-size: 1.02rem;
    line-height: 1.78;
    color: var(--lh-ink-soft);
    margin: 0 0 16px;
}
.lh-crops {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}
.lh-crop {
    background: #fff;
    border: 1px solid var(--lh-line);
    border-radius: 12px;
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.lh-crop:hover {
    transform: translateY(-3px);
    border-color: var(--lh-saffron);
    box-shadow: 0 12px 26px rgba(201,162,39,.18);
}
.lh-crop-name {
    font-weight: 700;
    color: var(--lh-ink);
    font-size: 1rem;
}

/* ============================================================
   LIFESTYLE / EDUCATION two-col blocks
   ============================================================ */
.lh-twocol {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}
.lh-twocol-text p {
    font-size: 1.04rem;
    line-height: 1.78;
    color: var(--lh-ink-soft);
    margin: 0 0 16px;
}

.lh-quote-card {
    background: #fff;
    border-radius: 18px;
    padding: 40px 38px;
    border: 1px solid var(--lh-line);
    border-left: 5px solid var(--lh-saffron);
    box-shadow: 0 18px 36px rgba(0,0,0,.05);
    position: relative;
}
.lh-quote-card::before {
    content: "“";
    position: absolute;
    top: -10px; left: 20px;
    font-size: 6rem;
    color: var(--lh-saffron);
    font-family: Georgia, serif;
    line-height: 1;
    opacity: .35;
}
.lh-quote-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--lh-ink-soft);
    font-style: italic;
    margin: 0;
    position: relative;
}

/* ============================================================
   TOURISM — bullet list with icons
   ============================================================ */
.lh-tour {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
}
.lh-tour-item {
    background: #fff;
    border-radius: 14px;
    padding: 22px 22px;
    border: 1px solid var(--lh-line);
    display: flex;
    align-items: center;
    gap: 14px;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.lh-tour-item:hover {
    transform: translateY(-3px);
    border-color: var(--lh-saffron);
    box-shadow: 0 14px 28px rgba(139,26,26,.1);
}
.lh-tour-item span:last-child {
    font-weight: 600;
    color: var(--lh-ink);
}

/* ============================================================
   WHY VISIT — checklist hero
   ============================================================ */
.lh-why {
    background:
        radial-gradient(60% 60% at 0% 0%, rgba(232,134,26,.16), transparent 60%),
        radial-gradient(60% 60% at 100% 100%, rgba(201,162,39,.14), transparent 60%),
        linear-gradient(180deg, var(--lh-cream-2), var(--lh-cream));
    border-radius: 22px;
    padding: 60px 52px;
    border: 1px solid var(--lh-line);
}
.lh-why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
    margin-top: 36px;
}
.lh-why-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    background: rgba(255,255,255,.7);
    border-radius: 12px;
    border: 1px solid var(--lh-line-soft);
    backdrop-filter: blur(4px);
}
.lh-why-check {
    width: 30px; height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--lh-maroon), var(--lh-saffron));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    font-weight: 800;
    flex-shrink: 0;
}
.lh-why-item span:last-child {
    font-weight: 600;
    color: var(--lh-ink);
    font-size: .98rem;
}

/* ============================================================
   FINAL CTA / Welcome banner
   ============================================================ */
.lh-cta {
    position: relative;
    overflow: hidden;
    color: #fff;
    padding: 110px 0 120px;
    background:
        radial-gradient(60% 80% at 50% 30%, rgba(232,134,26,.4), transparent 70%),
        linear-gradient(135deg, var(--lh-maroon-dark) 0%, var(--lh-maroon) 60%, #6E1313 100%);
    text-align: center;
}
.lh-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(45deg, transparent 0 30px, rgba(255,255,255,.025) 30px 31px);
    pointer-events: none;
}
.lh-cta-inner { position: relative; z-index: 1; padding: 0 24px; }
.lh-cta-tag {
    font-size: 2rem;
    color: var(--lh-gold);
    margin-bottom: 12px;
    letter-spacing: .4em;
}
.lh-cta h2 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 18px;
    letter-spacing: -.02em;
}
.lh-cta-lines {
    font-size: 1.15rem;
    line-height: 2;
    opacity: .92;
    max-width: 640px;
    margin: 0 auto 32px;
    font-style: italic;
}
.lh-cta-welcome {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    background: linear-gradient(180deg, #FBEFD7, var(--lh-saffron));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0 0 32px;
}

/* ============================================================
   BLOG (preserve original styling but tied to lh-)
   ============================================================ */
.lh-blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.lh-blog-card {
    display: block;
    background: #fff;
    border: 1px solid var(--lh-line);
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform .25s ease, box-shadow .25s ease;
}
.lh-blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 44px rgba(0,0,0,.1);
    color: inherit;
}
.lh-blog-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    background-color: #f3f4f6;
}
.lh-blog-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--lh-maroon), var(--lh-saffron));
    color: #fff;
    font-weight: 700;
    font-size: 1.6rem;
    letter-spacing: .06em;
}
.lh-blog-body { padding: 22px; }
.lh-blog-date {
    font-size: .78rem;
    color: var(--lh-mute);
    margin-bottom: 6px;
    letter-spacing: .04em;
    text-transform: uppercase;
}
.lh-blog-body h3 {
    font-size: 1.08rem;
    font-weight: 700;
    margin: 0 0 8px;
    color: var(--lh-ink);
    line-height: 1.4;
}
.lh-blog-body p {
    font-size: .92rem;
    color: var(--lh-mute);
    margin: 0 0 12px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.lh-blog-more {
    font-size: .88rem;
    font-weight: 600;
    color: var(--lh-maroon);
}
.lh-blog-head {
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 36px;
}
.lh-blog-head .lh-h2 { margin: 0; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 992px) {
    .lh-welcome,
    .lh-history,
    .lh-econ,
    .lh-twocol {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .lh-welcome-art { aspect-ratio: 16/10; }
    .lh-feature { padding: 40px 32px; }
    .lh-why { padding: 44px 32px; }
}

@media (max-width: 768px) {
    .lh-hero { min-height: 78vh; }
    .lh-hero-inner { padding: 90px 20px 90px; }
    .lh-section { padding: 64px 0; }
    .lh-section-head { margin-bottom: 40px; }
    .lh-facts-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
    .lh-fact + .lh-fact::before { display: none; }
    .lh-battle-card { padding: 32px 24px; }
    .lh-feature { padding: 32px 22px; }
    .lh-feature::before { font-size: 12rem; }
    .lh-quote-card { padding: 32px 24px; }
    .lh-why { padding: 36px 22px; }
    .lh-cta { padding: 80px 0 90px; }
    .lh-crops { grid-template-columns: 1fr; }

    /* Temples: shrink the corner numeral and the padding it reserves so
       long temple names don't collide with it on phones. */
    .lh-temples { grid-template-columns: 1fr; gap: 18px; }
    .lh-temple { padding: 26px 22px 24px 28px; }
    .lh-temple::after { font-size: 2rem; top: 14px; right: 18px; }
    .lh-temple-body { padding-right: 38px; }
    .lh-temple-body h3 { font-size: 1.18rem; }
}

@media (max-width: 480px) {
    .lh-hero-cta { flex-direction: column; align-items: stretch; }
    .lh-btn { justify-content: center; }
    .lh-welcome-text p:first-of-type::first-letter {
        font-size: 2.6rem;
        padding-right: 8px;
    }
    /* Tight phones: tighten section padding so content doesn't get pushed
       too far down by huge vertical whitespace. */
    .lh-section { padding: 52px 0; }
    .lh-container { padding: 0 18px; }
    .lh-facts-grid { grid-template-columns: 1fr; gap: 14px; padding: 0 18px; }
    .lh-fact { padding: 8px 4px; }
    .lh-battle-year { font-size: clamp(3rem, 14vw, 5rem); }
    .lh-feature::before { font-size: 9rem; right: -16px; top: -16px; }
    .lh-cta-inner h2 { font-size: clamp(1.6rem, 6vw, 2.4rem); }
    /* Hide the watermark numeral altogether — at this width the corner is
       too cramped for it to read as decorative rather than as clutter. */
    .lh-temple::after { display: none; }
    .lh-temple-body { padding-right: 0; }
}
