/* ============================================================
   SHREE AYYAPPA TEMPLE – JAIPUR  |  Shared Stylesheet
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Josefin+Sans:wght@300;400;600&display=swap');

/* --- Variables --- */
:root {
  --saffron:   #E8762A;
  --deep-gold: #C8860A;
  --gold:      #F5C842;
  --cream:     #FDF6E8;
  --ivory:     #FAF3E0;
  --dark:      #1A1108;
  --brown:     #3D1F08;
  --red:       #9B2335;
  --text:      #2A1A0A;
  --muted:     #7A6245;
  --white:     #FFFFFF;
  --border:    rgba(200,134,10,.18);
  --radius:    4px;
  --shadow-sm: 0 2px 12px rgba(0,0,0,.07);
  --shadow-md: 0 6px 28px rgba(0,0,0,.11);
  --shadow-lg: 0 16px 56px rgba(0,0,0,.15);
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-body:  'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Josefin Sans', sans-serif;
}

/* --- Reset --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: var(--saffron); text-decoration: none; }
a:hover { color: var(--deep-gold); }
ul { list-style: none; }

/* --- Noise texture overlay --- */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 9000; opacity: .6;
}

/* ============================================================
   TICKER
   ============================================================ */
.ticker-wrap {
  background: var(--brown);
  color: var(--gold);
  padding: 7px 0;
  overflow: hidden;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 1.8px;
}
.ticker {
  display: flex;
  white-space: nowrap;
  animation: tickerScroll 35s linear infinite;
}
.ticker span { padding: 0 56px; }
.ticker span::before { content: '✦  '; color: var(--saffron); }
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   HEADER / NAV  (matches jaipurayyappa.org logo + structure)
   ============================================================ */
.site-header {
  background: var(--white);
  border-bottom: 3px solid var(--saffron);
  position: sticky; top: 0; z-index: 500;
  box-shadow: 0 2px 16px rgba(0,0,0,.08);
}
.header-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 32px;
  min-height: 80px;
}
.site-logo img { height: 64px; width: auto; display: block; }
.site-logo { display: flex; align-items: center; }

/* Primary nav */
.primary-nav { display: flex; align-items: center; gap: 4px; }
.primary-nav > li { position: relative; }
.primary-nav > li > a {
  display: block;
  padding: 28px 16px;
  font-family: var(--font-sans);
  font-size: 11px; letter-spacing: 1.8px;
  text-transform: uppercase; font-weight: 600;
  color: var(--text);
  transition: color .2s;
  white-space: nowrap;
}
.primary-nav > li > a:hover,
.primary-nav > li > a.active { color: var(--saffron); }
.primary-nav > li > a.active { border-bottom: 3px solid var(--saffron); margin-bottom: -3px; }

/* Dropdown */
.primary-nav .has-dropdown > a::after {
  content: ' ▾'; font-size: 9px; opacity: .6;
}
.dropdown-menu {
  display: none;
  position: absolute; top: 100%; left: 0;
  background: var(--white);
  border-top: 3px solid var(--saffron);
  border: 1px solid var(--border);
  border-top: 3px solid var(--saffron);
  min-width: 220px;
  z-index: 600;
  box-shadow: var(--shadow-md);
}
.primary-nav .has-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu li a {
  display: block; padding: 11px 18px;
  font-family: var(--font-sans);
  font-size: 11px; letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text);
  border-bottom: 1px solid rgba(0,0,0,.05);
  transition: background .15s, color .15s;
}
.dropdown-menu li a:hover,
.dropdown-menu li a.active-sub { background: var(--cream); color: var(--saffron); }
.dropdown-menu li:last-child a { border-bottom: none; }

/* Header action buttons */
.header-actions { display: flex; align-items: center; gap: 10px; }
.btn-calendar, .btn-donate {
  padding: 9px 18px;
  font-family: var(--font-sans);
  font-size: 10px; letter-spacing: 2px;
  text-transform: uppercase; font-weight: 600;
  border-radius: var(--radius);
  transition: all .2s;
}
.btn-calendar {
  border: 2px solid var(--saffron);
  color: var(--saffron);
  background: transparent;
}
.btn-calendar:hover { background: var(--saffron); color: var(--white); }
.btn-donate {
  background: var(--saffron);
  color: var(--white) !important;
  border: 2px solid var(--saffron);
}
.btn-donate:hover { background: var(--deep-gold); border-color: var(--deep-gold); }

/* Mobile hamburger */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--text); margin: 5px 0; transition: .3s; }

/* ============================================================
   FOOTER  (matches jaipurayyappa.org footer)
   ============================================================ */
.site-footer {
  background: var(--dark);
  border-top: 3px solid var(--saffron);
  padding: 60px 32px 0;
  color: rgba(253,246,232,.7);
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(245,200,66,.12);
}
.footer-brand-logo { margin-bottom: 18px; }
.footer-brand-logo img { height: 54px; }
.footer-tagline {
  font-size: 13px; line-height: 1.85; font-style: italic;
  color: rgba(253,246,232,.5);
  margin-bottom: 20px;
}
.footer-col h5 {
  font-family: var(--font-sans);
  font-size: 10px; letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(245,200,66,.15);
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  font-family: var(--font-sans); font-weight: 300;
  font-size: 12px; letter-spacing: .8px;
  color: rgba(253,246,232,.5);
  transition: color .2s;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-hours p {
  font-family: var(--font-sans); font-size: 12px; font-weight: 300;
  color: rgba(253,246,232,.5); line-height: 1.9;
}
.footer-contact-line {
  font-family: var(--font-sans); font-size: 12px; font-weight: 300;
  color: rgba(253,246,232,.5); line-height: 1.9; margin-bottom: 4px;
}
.footer-contact-line a { color: rgba(253,246,232,.5); }
.footer-contact-line a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0;
  flex-wrap: wrap; gap: 10px;
}
.footer-copy {
  font-family: var(--font-sans); font-size: 11px; font-weight: 300;
  color: rgba(253,246,232,.3);
}
.footer-copy a { color: rgba(253,246,232,.3); }
.footer-copy a:hover { color: var(--gold); }
.footer-btn-contact {
  padding: 8px 22px;
  border: 1px solid rgba(245,200,66,.3);
  border-radius: var(--radius);
  font-family: var(--font-sans); font-size: 10px; letter-spacing: 2px;
  text-transform: uppercase; font-weight: 600;
  color: var(--gold);
  transition: all .2s;
}
.footer-btn-contact:hover { background: var(--saffron); border-color: var(--saffron); color: var(--white); }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb-bar {
  background: var(--ivory);
  border-bottom: 1px solid var(--border);
  padding: 12px 32px;
}
.breadcrumb-bar nav {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-sans); font-size: 11px;
  letter-spacing: 1px; text-transform: uppercase; color: var(--muted);
}
.breadcrumb-bar nav a { color: var(--muted); }
.breadcrumb-bar nav a:hover { color: var(--saffron); }
.breadcrumb-bar nav .sep { opacity: .5; }
.breadcrumb-bar nav .current { color: var(--saffron); }

/* ============================================================
   PAGE HERO BANNER
   ============================================================ */
.page-hero {
  background: var(--dark);
  position: relative; overflow: hidden;
  padding: 80px 32px 64px;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 60% 110%, rgba(200,134,10,.3) 0%, transparent 70%),
              linear-gradient(160deg, #0D0804 0%, #1A1108 45%, #2A1808 100%);
}
.page-hero-pattern {
  position: absolute; inset: 0; opacity: .05;
  background-image: repeating-linear-gradient(45deg, var(--gold) 0, var(--gold) 1px, transparent 0, transparent 44px);
  background-size: 44px 44px;
}
.page-hero-inner {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto;
}
.page-tag {
  font-family: var(--font-sans);
  font-size: 10px; letter-spacing: 4px;
  text-transform: uppercase; color: var(--saffron);
  margin-bottom: 12px;
}
.page-title {
  font-family: var(--font-serif);
  font-size: clamp(34px, 5.5vw, 64px);
  font-weight: 700; color: var(--cream);
  line-height: 1.1; margin-bottom: 14px;
}
.page-title em { color: var(--gold); font-style: italic; }
.page-divider {
  width: 60px; height: 2px;
  background: var(--saffron); margin-bottom: 18px;
}
.page-lead {
  font-size: 18px; line-height: 1.85;
  color: rgba(253,246,232,.7);
  font-style: italic; font-weight: 300;
  max-width: 600px;
}

/* ============================================================
   SECTION UTILITIES
   ============================================================ */
.section { padding: 80px 32px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section--ivory { background: var(--ivory); }
.section--dark  { background: var(--dark); }
.section--brown { background: var(--brown); }
.section--white { background: var(--white); }

.s-tag {
  font-family: var(--font-sans);
  font-size: 10px; letter-spacing: 4px;
  text-transform: uppercase; color: var(--saffron);
  margin-bottom: 8px;
}
.s-title {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.8vw, 44px);
  font-weight: 700; color: var(--brown);
  line-height: 1.15; margin-bottom: 14px;
}
.s-title em { color: var(--saffron); font-style: italic; }
.s-title--light { color: var(--cream); }
.s-divider { width: 48px; height: 2px; background: var(--gold); margin-bottom: 26px; }
.s-divider--saffron { background: var(--saffron); }
.s-body {
  font-size: 17px; line-height: 1.9; color: var(--muted); font-weight: 300;
}
.s-body p { margin-bottom: 18px; }
.s-body strong { color: var(--brown); font-weight: 600; }
.s-body--light { color: rgba(253,246,232,.65); }
.s-body--light strong { color: var(--gold); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  padding: 12px 32px;
  font-family: var(--font-sans);
  font-size: 10px; letter-spacing: 2.5px;
  text-transform: uppercase; font-weight: 600;
  border-radius: var(--radius);
  transition: all .22s;
  cursor: pointer; border: none;
}
.btn-primary {
  background: var(--saffron); color: var(--white);
  border: 2px solid var(--saffron);
}
.btn-primary:hover {
  background: var(--deep-gold); border-color: var(--deep-gold);
  transform: translateY(-2px); box-shadow: 0 6px 22px rgba(232,118,42,.3);
  color: var(--white);
}
.btn-outline {
  background: transparent; color: var(--saffron);
  border: 2px solid var(--saffron);
}
.btn-outline:hover { background: var(--saffron); color: var(--white); }
.btn-white {
  background: var(--white); color: var(--saffron);
  border: 2px solid var(--white);
}
.btn-white:hover { background: transparent; color: var(--white); }
.btn-gold {
  background: var(--gold); color: var(--brown);
  border: 2px solid var(--gold);
}
.btn-gold:hover { background: var(--deep-gold); border-color: var(--deep-gold); color: var(--white); }

/* ============================================================
   ABOUT INDEX – CARD GRID
   ============================================================ */
.about-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.about-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .3s, box-shadow .3s;
  display: flex; flex-direction: column;
}
.about-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.about-card__thumb {
  width: 100%; height: 200px;
  object-fit: cover;
  background: var(--ivory);
  position: relative; overflow: hidden;
}
.about-card__thumb-placeholder {
  width: 100%; height: 200px;
  display: flex; align-items: center; justify-content: center;
  font-size: 64px;
}
.about-card__thumb-placeholder.saffron { background: linear-gradient(135deg, rgba(232,118,42,.2), rgba(200,134,10,.15)), var(--ivory); }
.about-card__thumb-placeholder.dark   { background: linear-gradient(135deg, rgba(26,17,8,.9), rgba(61,31,8,.8)); }
.about-card__thumb-placeholder.green  { background: linear-gradient(135deg, rgba(30,58,47,.3), rgba(13,26,18,.2)), var(--ivory); }
.about-card__body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.about-card__tag {
  font-family: var(--font-sans);
  font-size: 9px; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--saffron);
  margin-bottom: 8px;
}
.about-card__title {
  font-family: var(--font-serif);
  font-size: 20px; font-weight: 700;
  color: var(--brown); margin-bottom: 10px;
  line-height: 1.25;
}
.about-card__text {
  font-size: 14px; line-height: 1.75;
  color: var(--muted); font-family: var(--font-sans); font-weight: 300;
  flex: 1; margin-bottom: 18px;
}
.about-card__link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-sans); font-size: 10px;
  letter-spacing: 2px; text-transform: uppercase; font-weight: 600;
  color: var(--saffron); transition: gap .2s;
}
.about-card__link:hover { gap: 10px; color: var(--deep-gold); }

/* ============================================================
   RATE LIST / OFFERINGS PAGE
   ============================================================ */
.offerings-search-bar {
  background: var(--dark);
  padding: 36px 32px;
  border-bottom: 2px solid rgba(200,134,10,.2);
}
.offerings-search-bar-inner {
  max-width: 1200px; margin: 0 auto;
}
.search-title {
  font-family: var(--font-serif);
  font-size: 15px; color: var(--gold);
  margin-bottom: 14px; font-weight: 400; letter-spacing: .5px;
}
.search-row { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.search-input {
  flex: 1; min-width: 240px;
  padding: 12px 18px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(245,200,66,.25);
  border-radius: var(--radius);
  font-family: var(--font-sans); font-size: 12px; letter-spacing: 1px;
  color: var(--cream);
  outline: none; transition: border-color .2s;
}
.search-input::placeholder { color: rgba(253,246,232,.35); }
.search-input:focus { border-color: var(--saffron); }
.search-select {
  padding: 12px 16px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(245,200,66,.25);
  border-radius: var(--radius);
  font-family: var(--font-sans); font-size: 11px; letter-spacing: 1px;
  color: var(--cream); outline: none;
  cursor: pointer; transition: border-color .2s;
}
.search-select option { background: var(--dark); color: var(--cream); }
.search-select:focus { border-color: var(--saffron); }
.search-count {
  font-family: var(--font-sans); font-size: 11px; letter-spacing: 1px;
  color: rgba(253,246,232,.45); padding: 12px 0;
}
#searchClearBtn {
  padding: 12px 18px;
  background: transparent;
  border: 1px solid rgba(245,200,66,.25);
  border-radius: var(--radius);
  color: rgba(253,246,232,.5);
  font-family: var(--font-sans); font-size: 11px; letter-spacing: 1px;
  cursor: pointer; transition: all .2s;
}
#searchClearBtn:hover { border-color: var(--saffron); color: var(--saffron); }

/* Offering cards */
.offerings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.offering-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .3s, box-shadow .3s;
  display: flex; flex-direction: column;
}
.offering-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.offering-card[data-hidden="true"] { display: none; }
.offering-card__img {
  width: 100%; height: 160px;
  object-fit: cover;
  background: var(--ivory);
}
.offering-card__img-placeholder {
  width: 100%; height: 160px;
  display: flex; align-items: center; justify-content: center;
  font-size: 52px;
}
.offering-card__body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.offering-card__name {
  font-family: var(--font-serif);
  font-size: 18px; font-weight: 700;
  color: var(--brown); margin-bottom: 6px;
}
.offering-card__desc {
  font-size: 13px; line-height: 1.7;
  color: var(--muted); font-family: var(--font-sans); font-weight: 300;
  margin-bottom: 14px; flex: 1;
}
.offering-card__meta { display: flex; flex-direction: column; gap: 6px; }
.offering-card__row {
  display: flex; align-items: baseline; gap: 8px;
}
.offering-card__label {
  font-family: var(--font-sans); font-size: 9px;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted); min-width: 80px;
}
.offering-card__value {
  font-family: var(--font-sans); font-size: 12px;
  letter-spacing: .5px; color: var(--text);
}
.offering-card__rate {
  font-family: var(--font-serif); font-size: 22px; font-weight: 700;
  color: var(--saffron);
}
.offering-card__book-badge {
  display: inline-block;
  background: rgba(232,118,42,.1);
  color: var(--saffron);
  border: 1px solid rgba(232,118,42,.3);
  padding: 2px 9px;
  border-radius: 2px;
  font-family: var(--font-sans); font-size: 9px; letter-spacing: 1.5px;
  text-transform: uppercase;
}
.offering-card__divider { width: 100%; height: 1px; background: var(--border); margin: 12px 0; }
.offering-card__footer {
  padding: 14px 20px;
  border-top: 1px solid var(--border);
  background: var(--ivory);
}
.offering-card__book-btn {
  display: block; text-align: center;
  padding: 10px;
  background: var(--saffron); color: var(--white);
  border-radius: var(--radius);
  font-family: var(--font-sans); font-size: 10px;
  letter-spacing: 2px; text-transform: uppercase; font-weight: 600;
  transition: background .2s;
}
.offering-card__book-btn:hover { background: var(--deep-gold); color: var(--white); }

/* No results */
.no-results {
  display: none; grid-column: 1 / -1;
  text-align: center; padding: 60px 20px;
  font-family: var(--font-sans); font-size: 14px;
  color: var(--muted); letter-spacing: 1px;
}
.no-results.visible { display: block; }

/* ============================================================
   CTA STRIP
   ============================================================ */
.cta-strip {
  background: linear-gradient(135deg, var(--saffron) 0%, var(--red) 100%);
  padding: 70px 32px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(255,255,255,.04) 0, rgba(255,255,255,.04) 1px, transparent 0, transparent 24px);
}
.cta-strip h2 {
  font-family: var(--font-serif);
  font-size: clamp(24px, 4vw, 42px); color: var(--white);
  margin-bottom: 12px; position: relative;
}
.cta-strip p {
  font-size: 17px; color: rgba(255,255,255,.8);
  font-style: italic; margin: 0 auto 30px;
  position: relative; max-width: 500px;
}
.cta-strip .btn-white { position: relative; margin: 0 8px; }
.cta-strip .btn-outline-white {
  position: relative; margin: 0 8px;
  display: inline-block; padding: 12px 32px;
  font-family: var(--font-sans); font-size: 10px;
  letter-spacing: 2.5px; text-transform: uppercase; font-weight: 600;
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,.5); border-radius: var(--radius);
  transition: all .22s;
}
.cta-strip .btn-outline-white:hover { border-color: var(--white); }

/* ============================================================
   ABOUT SUB-NAV TABS
   ============================================================ */
.about-subnav {
  background: var(--brown);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.about-subnav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; white-space: nowrap;
}
.about-subnav a {
  display: block; padding: 16px 28px;
  font-family: var(--font-sans); font-size: 10px;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(253,246,232,.5);
  border-bottom: 3px solid transparent;
  transition: color .2s, border-color .2s;
}
.about-subnav a:hover { color: var(--gold); }
.about-subnav a.active { color: var(--gold); border-bottom-color: var(--saffron); background: rgba(255,255,255,.06); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .about-cards { grid-template-columns: repeat(2, 1fr); }
  .offerings-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .header-inner { padding: 0 20px; min-height: 66px; }
  .site-logo img { height: 50px; }
  .primary-nav { display: none; flex-direction: column; gap: 0; }
  .primary-nav.open { display: flex; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); box-shadow: var(--shadow-md); z-index: 400; padding: 16px 0; }
  .primary-nav > li > a { padding: 13px 22px; border-bottom: 1px solid rgba(0,0,0,.05); }
  .primary-nav > li > a.active { border-bottom: 1px solid rgba(0,0,0,.05); color: var(--saffron); }
  .dropdown-menu { position: static; box-shadow: none; border: none; border-top: none; padding-left: 16px; display: none; }
  .primary-nav .has-dropdown.open .dropdown-menu { display: block; }
  .site-header { position: relative; }
  .nav-toggle { display: block; }
  .header-actions { gap: 6px; }
  .btn-calendar { display: none; }

  .section { padding: 56px 20px; }
  .page-hero { padding: 60px 20px 48px; }
  .breadcrumb-bar { padding: 10px 20px; }
  .about-cards { grid-template-columns: 1fr; }
  .offerings-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; padding-bottom: 32px; }
  .footer-bottom { padding: 16px 0; flex-direction: column; align-items: flex-start; gap: 8px; }
  .search-row { flex-direction: column; }
  .search-input, .search-select { width: 100%; }
}

/* ============================================================
   ABOUT INDEX — clickable card image fix
   ============================================================ */
.about-card__thumb-link {
  display: block;
  overflow: hidden;
  text-decoration: none;
}
.about-card__thumb-link img,
.about-card__thumb-link .about-card__thumb-placeholder {
  transition: transform .35s ease;
}
.about-card__thumb-link:hover img,
.about-card__thumb-link:hover .about-card__thumb-placeholder { transform: scale(1.04); }

/* ============================================================
   TWO-COLUMN CONTENT LAYOUT
   ============================================================ */
.content-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.content-two-col.reverse { direction: rtl; }
.content-two-col.reverse > * { direction: ltr; }
.content-img {
  width: 100%; border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  object-fit: cover;
}

/* ============================================================
   FEATURE GRID (3-col)
   ============================================================ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 26px;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--saffron);
  transition: transform .3s, box-shadow .3s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature-icon { font-size: 36px; margin-bottom: 14px; }
.feature-title {
  font-family: var(--font-serif);
  font-size: 19px; font-weight: 700;
  color: var(--brown); margin-bottom: 10px;
}
.feature-text {
  font-size: 14px; line-height: 1.8;
  color: var(--muted); font-family: var(--font-sans); font-weight: 300;
  margin-bottom: 14px;
}
.card-link {
  font-family: var(--font-sans); font-size: 10px;
  letter-spacing: 2px; text-transform: uppercase; font-weight: 600;
  color: var(--saffron); transition: color .2s;
}
.card-link:hover { color: var(--deep-gold); }

/* ============================================================
   TIMING PAGE
   ============================================================ */
.timing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.timing-season-card { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.timing-season-header {
  padding: 18px 24px;
  font-family: var(--font-sans); font-size: 13px;
  letter-spacing: 2px; text-transform: uppercase; font-weight: 600;
}
.timing-season-header.summer { background: linear-gradient(135deg, #E8762A, #C8860A); color: var(--white); }
.timing-season-header.winter { background: linear-gradient(135deg, #2A5298, #1a3a6e); color: var(--white); }
.timing-table-wrap { overflow-x: auto; }
.timing-table { width: 100%; border-collapse: collapse; background: var(--white); }
.timing-table th {
  background: var(--brown); color: var(--gold);
  font-family: var(--font-sans); font-size: 10px;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 12px 16px; text-align: left;
}
.timing-table td { padding: 13px 16px; border-bottom: 1px solid var(--border); font-size: 14px; vertical-align: top; }
.timing-table td.time { font-family: var(--font-sans); font-weight: 600; color: var(--saffron); white-space: nowrap; }
.timing-table tr:last-child td { border-bottom: none; }

.special-timing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }
.special-timing-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(245,200,66,.15);
  border-radius: var(--radius); padding: 28px 22px;
  transition: background .3s, border-color .3s;
}
.special-timing-card:hover { background: rgba(255,255,255,.1); border-color: rgba(245,200,66,.35); }
.st-icon { font-size: 32px; margin-bottom: 10px; }
.st-day { font-family: var(--font-sans); font-size: 9px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--saffron); margin-bottom: 8px; }
.st-title { font-family: var(--font-serif); font-size: 17px; font-weight: 700; color: var(--gold); margin-bottom: 8px; }
.st-text { font-size: 13px; line-height: 1.75; color: rgba(253,246,232,.55); font-family: var(--font-sans); font-weight: 300; }

.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.loc-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 22px; }
.loc-icon { font-size: 22px; margin-top: 2px; flex-shrink: 0; }
.loc-item strong { display: block; font-family: var(--font-sans); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.loc-item a { color: var(--saffron); }
.map-embed { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }

/* ============================================================
   DEITY CARDS
   ============================================================ */
.deity-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.deity-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .3s, box-shadow .3s; display: flex; flex-direction: column; }
.deity-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.deity-card.deity-main { border: 2px solid var(--gold); }
.deity-card.deity-wide { grid-column: span 3; flex-direction: row; }
.deity-card.deity-wide .deity-card-img { width: 280px; flex-shrink: 0; height: auto; }
.deity-card-img { height: 200px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.deity-emoji { font-size: 72px; }
.deity-card-body { padding: 22px; flex: 1; }
.deity-badge { display: inline-block; background: var(--saffron); color: var(--white); padding: 3px 10px; border-radius: 2px; font-family: var(--font-sans); font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 8px; }
.deity-badge.main { background: var(--gold); color: var(--brown); }
.deity-name { font-family: var(--font-serif); font-size: 20px; font-weight: 700; color: var(--brown); margin-bottom: 8px; }
.deity-card.deity-main .deity-name { font-size: 22px; }
.deity-desc { font-size: 14px; line-height: 1.75; color: var(--muted); font-family: var(--font-sans); font-weight: 300; }

/* ============================================================
   NAKSHATRA TABLE
   ============================================================ */
.nakshatra-search-row { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.nakshatra-input {
  flex: 1; max-width: 400px;
  padding: 11px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-sans); font-size: 12px; letter-spacing: 1px;
  color: var(--text); outline: none;
  transition: border-color .2s;
}
.nakshatra-input:focus { border-color: var(--saffron); }
.nakshatra-count { font-family: var(--font-sans); font-size: 11px; color: var(--saffron); letter-spacing: 1px; }
.nakshatra-table-wrap { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.nakshatra-table { width: 100%; border-collapse: collapse; background: var(--white); }
.nakshatra-table th { background: var(--brown); color: var(--gold); font-family: var(--font-sans); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; padding: 14px 18px; text-align: left; }
.nakshatra-table td { padding: 12px 18px; border-bottom: 1px solid var(--border); font-size: 15px; }
.nakshatra-table td.devanagari { font-size: 17px; color: var(--brown); }
.nakshatra-table tr:nth-child(even) td { background: var(--ivory); }
.nakshatra-table tr:hover td { background: rgba(232,118,42,.06); }
.nakshatra-table tr:last-child td { border-bottom: none; }

/* ============================================================
   TIMELINE (Who We Are)
   ============================================================ */
.timeline { position: relative; padding-left: 0; margin-top: 40px; }
.tl-item { display: grid; grid-template-columns: 120px 1fr; gap: 24px; margin-bottom: 0; border-bottom: 1px solid var(--border); padding: 32px 0; }
.tl-item:last-child { border-bottom: none; }
.tl-marker { display: flex; align-items: flex-start; justify-content: flex-end; padding-top: 4px; }
.tl-year { display: inline-block; background: var(--saffron); color: var(--white); padding: 6px 14px; border-radius: 2px; font-family: var(--font-sans); font-size: 12px; font-weight: 600; letter-spacing: 1px; white-space: nowrap; }
.tl-title { font-family: var(--font-serif); font-size: 20px; font-weight: 700; color: var(--brown); margin-bottom: 8px; }
.tl-text { font-size: 15px; line-height: 1.85; color: var(--muted); font-weight: 300; }
.tl-text a { color: var(--saffron); }

/* ============================================================
   PUNAPRATHISTHA — Info Steps
   ============================================================ */
.info-steps { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 40px; }
.info-step { display: flex; gap: 20px; background: rgba(255,255,255,.05); border: 1px solid rgba(245,200,66,.12); border-radius: var(--radius); padding: 28px 24px; }
.step-num { font-family: var(--font-serif); font-size: 40px; font-weight: 700; color: rgba(200,134,10,.3); line-height: 1; flex-shrink: 0; }
.step-title { font-family: var(--font-serif); font-size: 19px; font-weight: 700; color: var(--gold); margin-bottom: 8px; }
.step-text { font-size: 14px; line-height: 1.8; color: rgba(253,246,232,.6); font-family: var(--font-sans); font-weight: 300; }

/* ============================================================
   RESPONSIVE ADDITIONS
   ============================================================ */
@media (max-width: 1024px) {
  .content-two-col { grid-template-columns: 1fr; gap: 36px; }
  .content-two-col.reverse { direction: ltr; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .timing-grid { grid-template-columns: 1fr; }
  .special-timing-grid { grid-template-columns: repeat(2, 1fr); }
  .deity-cards { grid-template-columns: repeat(2, 1fr); }
  .deity-card.deity-wide { grid-column: span 2; flex-direction: column; }
  .deity-card.deity-wide .deity-card-img { width: 100%; height: 200px; }
  .info-steps { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .feature-grid { grid-template-columns: 1fr; }
  .special-timing-grid { grid-template-columns: 1fr; }
  .deity-cards { grid-template-columns: 1fr; }
  .deity-card.deity-wide { grid-column: span 1; }
  .tl-item { grid-template-columns: 80px 1fr; gap: 16px; padding: 22px 0; }
  .timing-hero-img img { max-height: 220px; }
}
