/* =========================================================
   TIRTHA BHARAT — Main Stylesheet
   Spiritual travel guide to India's sacred destinations
   ========================================================= */

/* --- Variables --- */
:root {
  --saffron:     #E8751A;
  --saffron-dk:  #C45E0E;
  --temple-red:  #8B1A1A;
  --gold:        #C9A84C;
  --gold-light:  #FFF3E0;
  --night:       #1A1A2E;
  --night-mid:   #2D2D44;
  --cream:       #FAFAF5;
  --off-white:   #F5F0E8;
  --stone:       #6B6B6B;
  --text:        #1A1A1A;
  --muted:       #7A7A7A;
  --border:      #E5E0D8;
  --shadow:      0 4px 20px rgba(0,0,0,0.08);
  --shadow-h:    0 8px 32px rgba(232,117,26,0.18);
  --radius:      8px;
  --radius-lg:   14px;
  --t:           0.28s ease;
  --font-d:      'Playfair Display', Georgia, serif;
  --font-b:      'Inter', system-ui, sans-serif;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-b); background: var(--cream); color: var(--text); line-height: 1.7; font-size: 16px; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--t); }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* --- Header --- */
.main-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(26,26,46,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-text { font-family: var(--font-d); font-size: 1.3rem; font-weight: 700; color: var(--gold); }
.logo-text em { font-style: normal; color: #fff; }
.desktop-nav { display: flex; align-items: center; gap: 2px; }
.desktop-nav a { color: rgba(255,255,255,0.82); padding: 6px 13px; border-radius: var(--radius); font-size: 0.88rem; font-weight: 500; letter-spacing: 0.01em; }
.desktop-nav a:hover, .desktop-nav a.active { color: var(--gold); background: rgba(201,168,76,0.1); }
.mobile-toggle { display: none; background: none; border: 1px solid rgba(255,255,255,0.2); color: #fff; width: 40px; height: 40px; border-radius: var(--radius); cursor: pointer; font-size: 18px; }
.mobile-toggle:hover { border-color: var(--gold); color: var(--gold); }

/* --- Mobile Menu --- */
.mobile-menu { display: none; position: fixed; top: 68px; left: 0; right: 0; background: var(--night); border-bottom: 2px solid var(--gold); z-index: 999; padding: 12px 0; }
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: 11px 24px; color: rgba(255,255,255,0.82); font-size: 0.95rem; border-left: 3px solid transparent; }
.mobile-menu a:hover { color: var(--gold); border-left-color: var(--gold); background: rgba(201,168,76,0.06); }

/* --- Hero --- */
.page-hero {
  position: relative; min-height: 480px;
  display: flex; align-items: center; text-align: center;
  padding: 110px 0 70px; overflow: hidden;
  background: linear-gradient(150deg, #0F0F23 0%, var(--temple-red) 45%, var(--saffron) 80%, var(--gold) 100%);
}
.page-hero.small-hero { min-height: 320px; padding: 90px 0 55px; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(15,15,35,0.65) 0%, rgba(139,26,26,0.45) 100%); }
.hero-content { position: relative; z-index: 2; color: #fff; max-width: 780px; margin: 0 auto; }
.hero-subtitle { display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); background: rgba(201,168,76,0.14); border: 1px solid rgba(201,168,76,0.3); padding: 5px 15px; border-radius: 100px; margin-bottom: 18px; }
.hero-content h1 { font-family: var(--font-d); font-size: clamp(2rem, 5vw, 3.6rem); font-weight: 700; line-height: 1.15; margin-bottom: 18px; }
.hero-content p { font-size: clamp(0.95rem, 1.8vw, 1.15rem); color: rgba(255,255,255,0.83); max-width: 580px; margin: 0 auto 26px; }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* --- Buttons --- */
.btn-primary { display: inline-block; background: var(--saffron); color: #fff; padding: 12px 26px; border-radius: var(--radius); font-weight: 600; font-size: 0.9rem; border: 2px solid var(--saffron); transition: all var(--t); }
.btn-primary:hover { background: var(--saffron-dk); border-color: var(--saffron-dk); transform: translateY(-2px); }
.btn-outline { display: inline-block; background: transparent; color: #fff; padding: 12px 26px; border-radius: var(--radius); font-weight: 600; font-size: 0.9rem; border: 2px solid rgba(255,255,255,0.45); transition: all var(--t); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-white { display: inline-block; background: #fff; color: var(--saffron-dk); padding: 12px 28px; border-radius: var(--radius); font-weight: 700; font-size: 0.92rem; transition: all var(--t); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.18); }
.center-cta { text-align: center; margin-top: 44px; }

/* --- Sections --- */
.section-wrap { padding: 80px 0; }
.section-wrap.alt-bg { background: var(--off-white); }
.section-header { margin-bottom: 48px; }
.section-header.centered { text-align: center; }
.section-subtitle { display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--saffron); margin-bottom: 10px; }
.section-header h2 { font-family: var(--font-d); font-size: clamp(1.7rem, 3.2vw, 2.6rem); font-weight: 700; line-height: 1.2; margin-bottom: 10px; }
.section-header p { color: var(--muted); font-size: 1rem; max-width: 580px; }
.section-header.centered p { margin: 0 auto; }

/* --- Destination Cards --- */
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 26px; }
.dest-card { background: #fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--border); transition: all var(--t); }
.dest-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-h); border-color: rgba(232,117,26,0.25); }
.dest-card-img { position: relative; height: 210px; overflow: hidden; }
.dest-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.dest-card:hover .dest-card-img img { transform: scale(1.07); }
.dest-card-badge { position: absolute; top: 12px; left: 12px; background: var(--saffron); color: #fff; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 10px; border-radius: 100px; }
.dest-card-body { padding: 20px; }
.dest-card-body h3 { font-family: var(--font-d); font-size: 1.2rem; font-weight: 700; margin-bottom: 5px; }
.dest-card-location { font-size: 0.8rem; color: var(--stone); margin-bottom: 9px; }
.dest-card-body p { color: var(--stone); font-size: 0.87rem; line-height: 1.6; }
.dest-card-link { display: inline-flex; align-items: center; gap: 5px; color: var(--saffron); font-size: 0.85rem; font-weight: 600; margin-top: 13px; transition: gap var(--t); }
.dest-card-link:hover { gap: 10px; color: var(--saffron-dk); }

/* --- Category Cards --- */
.cat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 22px; }
.cat-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 30px 22px; text-align: center; position: relative; overflow: hidden; transition: all var(--t); }
.cat-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--saffron), var(--gold)); transform: scaleX(0); transition: transform var(--t); }
.cat-card:hover::after { transform: scaleX(1); }
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-h); }
.cat-icon { width: 60px; height: 60px; background: var(--gold-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; font-size: 26px; }
.cat-card h3 { font-family: var(--font-d); font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; }
.cat-card p { color: var(--stone); font-size: 0.85rem; line-height: 1.6; }

/* --- Festival Cards --- */
.fest-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 22px; }
.fest-card { background: #fff; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); transition: all var(--t); }
.fest-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-h); }
.fest-card-img { height: 190px; overflow: hidden; }
.fest-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.fest-card:hover .fest-card-img img { transform: scale(1.06); }
.fest-card-body { padding: 18px; }
.fest-date { font-size: 0.73rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--saffron); margin-bottom: 6px; }
.fest-card-body h3 { font-family: var(--font-d); font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; }
.fest-card-body p { color: var(--stone); font-size: 0.85rem; line-height: 1.6; }

/* --- Blog Cards --- */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 26px; }
.blog-card { background: #fff; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); transition: all var(--t); }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-h); }
.blog-card-img-wrap { display: block; }
.blog-card-img { height: 200px; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-card-body { padding: 22px; }
.blog-meta { display: flex; gap: 10px; align-items: center; margin-bottom: 10px; flex-wrap: wrap; }
.blog-tag { background: var(--gold-light); color: var(--saffron-dk); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 3px 9px; border-radius: 100px; }
.blog-date { font-size: 0.78rem; color: var(--stone); }
.blog-card-body h3 { font-family: var(--font-d); font-size: 1.08rem; font-weight: 700; margin-bottom: 8px; line-height: 1.35; }
.blog-card-body h3 a { color: var(--text); }
.blog-card-body h3 a:hover { color: var(--saffron); }
.blog-card-body p { color: var(--stone); font-size: 0.85rem; line-height: 1.6; }

/* --- Stats Bar --- */
.stat-bar { background: var(--off-white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 36px 0; }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat-item h3 { font-family: var(--font-d); font-size: 2.4rem; font-weight: 700; color: var(--saffron); margin-bottom: 4px; }
.stat-item p { color: var(--stone); font-size: 0.85rem; font-weight: 500; }

/* --- Newsletter --- */
.newsletter-wrap { background: linear-gradient(135deg, var(--night) 0%, var(--night-mid) 100%); border-radius: var(--radius-lg); padding: 56px 48px; display: flex; align-items: center; justify-content: space-between; gap: 36px; flex-wrap: wrap; border: 1px solid rgba(201,168,76,0.18); }
.newsletter-content { flex: 1 1 340px; }
.newsletter-content .section-subtitle { color: var(--gold); }
.newsletter-content h2 { font-family: var(--font-d); font-size: 1.9rem; color: #fff; margin: 10px 0 12px; }
.newsletter-content p { color: rgba(255,255,255,0.68); font-size: 0.93rem; }
.newsletter-form-wrap { flex: 0 0 auto; }
.newsletter-form { display: flex; }
.newsletter-form input { width: 240px; padding: 13px 16px; border: 1px solid rgba(255,255,255,0.18); border-right: none; border-radius: var(--radius) 0 0 var(--radius); background: rgba(255,255,255,0.07); color: #fff; font-family: var(--font-b); font-size: 0.88rem; outline: none; }
.newsletter-form input::placeholder { color: rgba(255,255,255,0.38); }
.newsletter-form input:focus { border-color: var(--gold); }
.newsletter-form button { padding: 13px 22px; background: var(--saffron); color: #fff; border: none; border-radius: 0 var(--radius) var(--radius) 0; font-weight: 600; font-size: 0.88rem; cursor: pointer; transition: background var(--t); white-space: nowrap; }
.newsletter-form button:hover { background: var(--saffron-dk); }

/* --- Quote Section --- */
.quote-section { background: linear-gradient(140deg, var(--temple-red) 0%, var(--saffron) 100%); padding: 80px 0; text-align: center; color: #fff; }
.quote-section h2 { font-family: var(--font-d); font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 16px; max-width: 780px; margin-left: auto; margin-right: auto; }
.quote-section p { font-size: 1.05rem; color: rgba(255,255,255,0.84); max-width: 580px; margin: 0 auto 30px; }

/* --- Footer --- */
.site-footer { background: var(--night); color: rgba(255,255,255,0.72); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand .footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand .gold .logo-text { color: var(--gold); }
.footer-brand p { color: rgba(255,255,255,0.55); font-size: 0.87rem; line-height: 1.75; max-width: 240px; }
.footer-col h4 { color: #fff; font-family: var(--font-d); font-size: 0.96rem; font-weight: 600; margin-bottom: 18px; padding-bottom: 8px; border-bottom: 1px solid rgba(201,168,76,0.25); }
.footer-col li { margin-bottom: 9px; }
.footer-col li a { color: rgba(255,255,255,0.58); font-size: 0.86rem; }
.footer-col li a:hover { color: var(--gold); }
.footer-col li span { color: rgba(255,255,255,0.48); font-size: 0.86rem; }
.footer-bottom { padding: 20px 0; text-align: center; color: rgba(255,255,255,0.36); font-size: 0.8rem; }

/* --- Back to Top --- */
#backToTop { display: none; position: fixed; bottom: 28px; right: 28px; width: 44px; height: 44px; background: var(--saffron); color: #fff; border: none; border-radius: 50%; font-size: 20px; cursor: pointer; box-shadow: 0 4px 14px rgba(232,117,26,0.38); transition: all var(--t); z-index: 9999; align-items: center; justify-content: center; }
#backToTop.visible { display: flex; }
#backToTop:hover { background: var(--saffron-dk); transform: translateY(-2px); }

/* --- Detail Grid --- */
.detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.detail-grid.reverse { direction: rtl; }
.detail-grid.reverse > * { direction: ltr; }
.detail-img img { width: 100%; height: 360px; object-fit: cover; border-radius: var(--radius-lg); }
.detail-text .section-subtitle { margin-bottom: 10px; }
.detail-text h2 { font-family: var(--font-d); font-size: clamp(1.6rem, 2.8vw, 2.2rem); margin: 12px 0 16px; }
.detail-text p { color: var(--stone); line-height: 1.8; margin-bottom: 14px; }

/* --- Contact --- */
.contact-wrapper { display: grid; grid-template-columns: 1fr 0.85fr; gap: 48px; align-items: start; }
.contact-form-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.83rem; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 11px 14px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--cream); font-family: var(--font-b); font-size: 0.88rem; color: var(--text); outline: none; transition: border-color var(--t); appearance: none; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--saffron); box-shadow: 0 0 0 3px rgba(232,117,26,0.09); }
.form-group textarea { resize: vertical; min-height: 130px; }
.contact-info-card { background: linear-gradient(140deg, var(--night) 0%, var(--night-mid) 100%); border-radius: var(--radius-lg); padding: 36px; color: #fff; margin-bottom: 20px; }
.contact-info-card h3 { font-family: var(--font-d); font-size: 1.45rem; margin-bottom: 22px; }
.info-item { display: flex; gap: 13px; align-items: flex-start; margin-bottom: 18px; }
.info-icon { width: 40px; height: 40px; background: rgba(232,117,26,0.18); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 17px; flex-shrink: 0; }
.info-text { color: rgba(255,255,255,0.78); font-size: 0.88rem; }
.info-text strong { display: block; color: #fff; margin-bottom: 2px; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.05em; }

/* --- FAQ --- */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-question { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 17px 22px; background: none; border: none; cursor: pointer; text-align: left; font-size: 0.96rem; font-weight: 600; color: var(--text); font-family: var(--font-b); gap: 12px; }
.faq-question:hover { color: var(--saffron); }
.faq-icon { font-size: 20px; transition: transform var(--t); color: var(--saffron); flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 22px 18px; color: var(--stone); font-size: 0.9rem; line-height: 1.75; }
.faq-item.open .faq-answer { display: block; }

/* --- Map --- */
.map-container { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); height: 380px; }
.map-container iframe { width: 100%; height: 100%; border: none; }

/* --- Timeline --- */
.route-timeline { display: flex; justify-content: space-between; gap: 0; position: relative; }
.route-timeline::before { content: ''; position: absolute; top: 23px; left: 30px; right: 30px; height: 2px; background: var(--border); }
.route-step { flex: 1; text-align: center; position: relative; }
.step-num { width: 46px; height: 46px; background: var(--saffron); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; margin: 0 auto 10px; border: 3px solid var(--cream); position: relative; z-index: 1; }
.step-label { font-size: 0.8rem; color: var(--stone); font-weight: 500; padding: 0 6px; }

/* --- Tags --- */
.tags-wrap { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.sig-tag { background: var(--gold-light); border: 1px solid rgba(232,117,26,0.2); color: var(--saffron-dk); font-size: 0.78rem; font-weight: 600; padding: 5px 14px; border-radius: 100px; }

/* --- Legal --- */
.legal-content { max-width: 800px; margin: 0 auto; }
.legal-content h2 { font-family: var(--font-d); font-size: 1.45rem; color: var(--text); margin: 38px 0 13px; padding-bottom: 9px; border-bottom: 1px solid var(--border); }
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { font-family: var(--font-d); font-size: 1.08rem; color: var(--text); margin: 22px 0 9px; }
.legal-content p { color: var(--stone); margin-bottom: 13px; line-height: 1.8; }
.legal-content ul { color: var(--stone); padding-left: 22px; margin-bottom: 13px; list-style: disc; }
.legal-content ul li { margin-bottom: 6px; line-height: 1.7; }
.contact-info-box { background: var(--off-white); border: 1px solid var(--border); border-left: 3px solid var(--saffron); border-radius: var(--radius); padding: 18px 22px; margin: 18px 0; }
.contact-info-box p { margin-bottom: 5px; color: var(--stone); font-size: 0.9rem; }

/* --- Error Page --- */
.error-page { min-height: 65vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 80px 24px; }
.error-number { font-family: var(--font-d); font-size: clamp(80px, 16vw, 150px); font-weight: 700; color: var(--saffron); line-height: 1; margin-bottom: 10px; }
.error-page h1 { font-family: var(--font-d); font-size: 2rem; margin-bottom: 14px; }
.error-page p { color: var(--stone); margin-bottom: 30px; font-size: 1.05rem; }
.error-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.quick-links { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 20px; }
.quick-links a { background: var(--off-white); border: 1px solid var(--border); color: var(--text); padding: 8px 16px; border-radius: var(--radius); font-size: 0.86rem; font-weight: 500; transition: all var(--t); }
.quick-links a:hover { background: var(--gold-light); border-color: var(--saffron); color: var(--saffron); }

/* ── Breadcrumb ─────────────────────────────────────────────────────────── */
.breadcrumb-nav { background: var(--cream); border-bottom: 1px solid rgba(139,26,26,.08); padding: .6rem 0; }
.breadcrumb-list { list-style: none; display: flex; gap: .5rem; flex-wrap: wrap; margin: 0; padding: 0; }
.breadcrumb-list li { font-size: .8rem; color: var(--night); opacity: .65; }
.breadcrumb-list li:not(:last-child)::after { content: "›"; margin-left: .5rem; }
.breadcrumb-list a { color: var(--saffron); text-decoration: none; }
.breadcrumb-list a:hover { text-decoration: underline; }
.breadcrumb-list li[aria-current] { opacity: 1; font-weight: 500; }

/* ── Practical info grid ─────────────────────────────────────────────────── */
.info-grid { display: grid; gap: 1rem; margin-top: 1.25rem; }
.info-item { display: flex; gap: .9rem; align-items: flex-start; padding: .85rem 1rem; background: var(--cream); border-radius: 8px; border-left: 3px solid var(--saffron); }
.info-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: .1rem; }
.info-item strong { display: block; font-size: .8rem; text-transform: uppercase; letter-spacing: .06em; color: var(--saffron); margin-bottom: .2rem; }
.info-item p { margin: 0; font-size: .9rem; color: var(--night); opacity: .85; line-height: 1.5; }

/* ── State hub pages ─────────────────────────────────────────────────────── */
.state-stats { display: flex; gap: 1.5rem; margin-top: 1.5rem; flex-wrap: wrap; }
.state-stat { text-align: center; flex: 1; min-width: 80px; }
.stat-num { display: block; font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--saffron); line-height: 1; }
.stat-lbl { display: block; font-size: .75rem; color: var(--night); opacity: .65; margin-top: .3rem; text-transform: uppercase; letter-spacing: .06em; }

.season-table-wrap { overflow-x: auto; margin-bottom: 2rem; }
.season-table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.season-table th { background: var(--saffron); color: #fff; padding: .7rem 1rem; text-align: left; font-weight: 600; font-size: .8rem; text-transform: uppercase; letter-spacing: .06em; }
.season-table td { padding: .7rem 1rem; border-bottom: 1px solid rgba(139,26,26,.07); vertical-align: top; }
.season-table tbody tr:nth-child(even) { background: var(--cream); }

.tips-grid { background: var(--cream); border-radius: 10px; padding: 1.5rem 2rem; }
.tips-grid h3 { font-size: 1.1rem; color: var(--temple-red); margin-bottom: 1rem; }
.tips-list { padding-left: 1.2rem; margin: 0; }
.tips-list li { margin-bottom: .6rem; font-size: .9rem; line-height: 1.6; color: var(--night); }
.tips-list li::marker { color: var(--saffron); }

.state-links-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1rem; }
.state-link-card { display: flex; flex-direction: column; padding: 1.2rem 1.4rem; background: var(--cream); border: 1px solid rgba(139,26,26,.1); border-radius: 10px; text-decoration: none; transition: border-color .2s, transform .2s; }
.state-link-card:hover { border-color: var(--saffron); transform: translateY(-2px); }
.state-link-name { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--night); font-weight: 600; margin-bottom: .3rem; }
.state-link-desc { font-size: .8rem; color: var(--night); opacity: .6; }

/* ── Deity pages ─────────────────────────────────────────────────────────── */
.mantra-block { margin: 1rem 0 1.5rem; padding: 1rem 1.25rem; background: linear-gradient(135deg,var(--cream) 0%,#fff8f0 100%); border-left: 4px solid var(--sacred-gold); border-radius: 0 8px 8px 0; }
.mantra-text { font-family: 'Playfair Display', serif; font-size: 1rem; font-style: italic; color: var(--temple-red); margin: 0; line-height: 1.6; }

.deity-attrs { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: .75rem; margin-top: 1rem; }
.deity-attr { display: flex; flex-direction: column; align-items: center; text-align: center; padding: .75rem .5rem; background: var(--cream); border-radius: 8px; gap: .25rem; }
.deity-attr-icon { font-size: 1.5rem; }
.deity-attr strong { font-size: .7rem; text-transform: uppercase; letter-spacing: .08em; color: var(--saffron); }
.deity-attr span { font-size: .85rem; color: var(--night); }

.iconography-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.25rem; }
.icon-item { display: flex; gap: 1rem; align-items: flex-start; padding: 1rem 1.25rem; background: var(--cream); border-radius: 10px; border: 1px solid rgba(139,26,26,.08); }
.icon-symbol { font-size: 2rem; flex-shrink: 0; margin-top: .1rem; }
.icon-item strong { display: block; font-size: .9rem; color: var(--temple-red); margin-bottom: .3rem; }
.icon-item p { font-size: .85rem; color: var(--night); opacity: .8; margin: 0; line-height: 1.5; }

.deity-fests-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.25rem; }
.deity-fest { padding: 1.25rem 1.4rem; background: var(--cream); border-radius: 10px; border-top: 3px solid var(--saffron); }
.deity-fest h4 { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--temple-red); margin-bottom: .25rem; }
.deity-fest .fest-date { font-size: .75rem; text-transform: uppercase; letter-spacing: .06em; color: var(--saffron); margin-bottom: .5rem; }
.deity-fest p:last-child { font-size: .85rem; color: var(--night); opacity: .8; margin: 0; line-height: 1.5; }

/* ── River & Shakti Peetha pages ─────────────────────────────────────────── */
.rivers-list { display: flex; flex-direction: column; gap: 2rem; }
.river-entry { padding: 1.5rem 1.75rem; background: var(--cream); border-radius: 12px; border-left: 4px solid var(--saffron); }
.river-header { display: flex; align-items: flex-start; gap: 1.25rem; margin-bottom: .75rem; }
.river-num { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 700; color: var(--saffron); opacity: .35; line-height: 1; flex-shrink: 0; margin-top: -.2rem; }
.river-header h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--temple-red); margin: 0 0 .2rem; }
.river-stats { font-size: .75rem; text-transform: uppercase; letter-spacing: .07em; color: var(--night); opacity: .5; margin: 0; }
.river-entry p { font-size: .9rem; line-height: 1.7; color: var(--night); margin: 0; }
.river-entry a { color: var(--saffron); text-decoration: underline; text-underline-offset: 2px; }

.peetha-region-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.25rem; }
.peetha-region { padding: 1.25rem 1.4rem; background: var(--cream); border-radius: 10px; }
.peetha-region h3 { font-size: 1rem; color: var(--temple-red); margin-bottom: .75rem; font-family: 'Playfair Display', serif; }
.peetha-region ul { list-style: disc; padding-left: 1.1rem; margin: 0; }
.peetha-region li { font-size: .85rem; color: var(--night); line-height: 1.6; margin-bottom: .2rem; }
.peetha-region a { color: var(--saffron); text-decoration: underline; text-underline-offset: 2px; }

/* ── Shakti Peetha individual pages ─────────────────────────────────────── */
.peetha-attrs { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; margin-top: 1rem; }
.peetha-attr { padding: .65rem .85rem; background: var(--cream); border-radius: 7px; border-left: 3px solid var(--saffron); }
.peetha-attr strong { display: block; font-size: .7rem; text-transform: uppercase; letter-spacing: .07em; color: var(--saffron); margin-bottom: .15rem; }
.peetha-attr span { font-size: .85rem; color: var(--night); line-height: 1.4; }
@media (max-width:480px) { .peetha-attrs { grid-template-columns: 1fr; } }

/* ── Shakti Peetha individual pages ─────────────────────────────────────── */
.peetha-attrs { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; margin-top: 1rem; }
.peetha-attr { padding: .65rem .85rem; background: var(--cream); border-radius: 7px; border-left: 3px solid var(--saffron); }
.peetha-attr strong { display: block; font-size: .7rem; text-transform: uppercase; letter-spacing: .07em; color: var(--saffron); margin-bottom: .15rem; }
.peetha-attr span { font-size: .85rem; color: var(--night); line-height: 1.4; }
@media (max-width:480px) { .peetha-attrs { grid-template-columns: 1fr; } }

/* ── Shakti Peetha individual pages ─────────────────────────────────────── */
.peetha-attrs { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; margin-top: 1rem; }
.peetha-attr { padding: .65rem .85rem; background: var(--cream); border-radius: 7px; border-left: 3px solid var(--saffron); }
.peetha-attr strong { display: block; font-size: .7rem; text-transform: uppercase; letter-spacing: .07em; color: var(--saffron); margin-bottom: .15rem; }
.peetha-attr span { font-size: .85rem; color: var(--night); line-height: 1.4; }
@media (max-width:480px) { .peetha-attrs { grid-template-columns: 1fr; } }

/* ── Shakti Peetha nav grid (all-51 directory) ───────────────────────────── */
.peetha-nav-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: .6rem; }
.peetha-nav-item { display: flex; flex-direction: column; padding: .7rem .9rem; background: var(--cream); border: 1px solid rgba(139,26,26,.1); border-radius: 8px; text-decoration: none; transition: border-color .15s, transform .15s; }
.peetha-nav-item:hover { border-color: var(--saffron); transform: translateY(-2px); }
.peetha-nav-num { font-size: .65rem; text-transform: uppercase; letter-spacing: .08em; color: var(--saffron); margin-bottom: .15rem; }
.peetha-nav-name { font-family: 'Playfair Display', serif; font-size: .95rem; font-weight: 600; color: var(--temple-red); line-height: 1.2; }
.peetha-nav-loc { font-size: .75rem; color: var(--night); opacity: .55; margin-top: .2rem; }

/* ── Peetha region header in directory ──────────────────────────────────── */
.peetha-region-header { grid-column: 1 / -1; font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 600; color: var(--temple-red); padding: .75rem 0 .25rem; border-bottom: 1px solid rgba(139,26,26,.15); margin-top: .5rem; }
