/* ============================================================
   Chetna Samiti — v1 "Paper & Sindoor" (light)
   Source of truth: design handoff "Chetna Samiti Website v1.dc.html"
   ============================================================ */

:root {
  --acc: #A93B2A;
  --accDeep: #7E2A1E;
  --paper: #F8F0DF;
  --card: #FFF9EC;
  --card-border: #E6D5B0;
  --panel-border: #E3D2AC;
  --ink: #2B1B12;
  --body: #4A3826;
  --muted: #7A6749;
  --muted2: #6B563B;
  --gold: #C9912E;
  --gold2: #C9A35B;
  --gold-dark: #7E5B12;
  --gold-tint: #F6E9CF;
  --umber: #2E1C12;
}

html, body { margin: 0; padding: 0; background: var(--paper); color: var(--ink); }
body { font-family: 'Mukta', sans-serif; -webkit-font-smoothing: antialiased; }
a { color: var(--acc); }
a:hover { color: var(--accDeep); }
input, select, textarea, button { font-family: 'Mukta', sans-serif; }
img { max-width: 100%; }

@keyframes rise { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

.page { min-height: 100vh; display: flex; flex-direction: column; background: var(--paper); }
.woven-band { height: 7px; background: repeating-linear-gradient(90deg, var(--acc) 0 20px, #D9A032 20px 34px, #2E1C12 34px 40px, #D9A032 40px 54px); }

.wrap { max-width: 1200px; margin: 0 auto; padding-left: 24px; padding-right: 24px; }

/* ---------- Notice bar ---------- */
.notice-bar { background: var(--umber); color: #EAD9B4; font-size: 15px; padding: 9px 24px; display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; text-align: center; }
.notice-bar b { color: #E4B45B; font-weight: 700; }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 50; background: var(--paper); border-bottom: 1px solid var(--panel-border); box-shadow: 0 2px 14px rgba(46,28,18,.06); }
.site-header .inner { max-width: 1200px; margin: 0 auto; padding: 12px 24px; display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.brand { display: flex; align-items: center; gap: 14px; text-decoration: none; color: var(--ink); }
.brand img { width: 54px; height: 54px; border-radius: 50%; object-fit: cover; background: #EFE1C2; border: 1px solid #D9C08D; }
.brand .name { display: flex; flex-direction: column; }
.brand .name .title { font-family: 'Rozha One', serif; font-size: 26px; line-height: 1.1; }
.brand .name .sub { font-size: 12.5px; color: var(--muted); letter-spacing: .02em; }
.site-nav { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.site-nav a.nav-link { padding: 6px 2px; font-size: 16.5px; font-weight: 600; text-decoration: none; color: var(--ink); border-bottom: 2.5px solid transparent; }
.site-nav a.nav-link:hover { color: var(--acc); }
.site-nav a.nav-link.active { color: var(--acc); border-bottom-color: var(--acc); }
.nav-toggle { display: none; }

/* ---------- Buttons & chips ---------- */
.btn-primary { display: inline-block; background: var(--acc); color: #FFF6E6; text-decoration: none; font-weight: 700; font-size: 17px; padding: 14px 30px; border-radius: 999px; border: 0; cursor: pointer; }
.btn-primary:hover { background: var(--accDeep); color: #FFF6E6; }
.btn-primary.sm { font-size: 16px; padding: 12px 26px; }
.btn-primary.nav-cta { font-size: 16px; padding: 11px 24px; }
.btn-ghost { display: inline-block; border: 1.5px solid var(--gold2); color: var(--ink); text-decoration: none; font-weight: 600; font-size: 17px; padding: 13px 28px; border-radius: 999px; background: transparent; cursor: pointer; }
.btn-ghost:hover { background: #F3E7CB; color: var(--ink); }
.btn-ghost.sm { font-size: 16px; padding: 11px 24px; }
.btn-ghost-dark { display: inline-block; border: 1.5px solid rgba(228,180,91,.6); color: #E9C87E; text-decoration: none; font-weight: 600; font-size: 17px; padding: 13px 30px; border-radius: 999px; }
.btn-ghost-dark:hover { background: rgba(228,180,91,.12); color: #E9C87E; }
.chip-upcoming { align-self: flex-start; border: 1px solid var(--gold); color: var(--gold-dark); font-weight: 700; font-size: 13px; padding: 3px 12px; border-radius: 999px; letter-spacing: .02em; }
.chip-done { border: 1px solid #B9A379; color: var(--muted2); font-weight: 700; font-size: 13px; padding: 3px 12px; border-radius: 999px; }

/* ---------- Section label ---------- */
.section-label { display: flex; align-items: center; gap: 12px; }
.section-label .rule { width: 32px; height: 2px; background: var(--gold); display: inline-block; }
.section-label .text { color: var(--acc); font-weight: 700; font-size: 15.5px; }

h1, h2, h3 { font-family: 'Rozha One', serif; font-weight: 400; }

/* ---------- Home: hero ---------- */
.hero { max-width: 1200px; margin: 0 auto; padding: 64px 24px 56px; display: grid; grid-template-columns: repeat(auto-fit, minmax(min(340px, 100%), 1fr)); gap: 56px; align-items: center; }
.hero-copy { animation: rise .6s ease both; }
.hero-copy h1 { font-size: clamp(40px, 6.5vw, 56px); line-height: 1.22; margin: 14px 0 18px; }
.hero-copy .intro { font-size: 19px; line-height: 1.75; color: var(--body); margin: 0 0 30px; max-width: 520px; text-wrap: pretty; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-photo { animation: rise .6s .12s ease both; position: relative; max-width: 460px; justify-self: center; width: 100%; }
.arch-frame { padding: 12px; border: 1px solid var(--gold2); border-radius: 250px 250px 22px 22px; background: var(--card); box-shadow: 0 24px 50px -20px rgba(46,28,18,.35); }
.arch-frame img { width: 100%; height: 600px; object-fit: cover; border-radius: 240px 240px 14px 14px; display: block; background: #E8D8B8; }
.hero-caption { position: absolute; bottom: -18px; left: 26px; background: var(--umber); color: #E9C87E; padding: 10px 18px; border-radius: 10px; font-size: 14.5px; box-shadow: 0 10px 24px rgba(46,28,18,.3); }

/* ---------- Stats band ---------- */
.stats-band { background: var(--umber); }
.stats-band .inner { max-width: 1200px; margin: 0 auto; padding: 34px 24px; display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 26px; }
.stat { border-left: 2px solid rgba(228,180,91,.45); padding-left: 20px; }
.stat .num { font-family: 'Rozha One', serif; font-size: 34px; color: #E4B45B; line-height: 1.1; }
.stat .lbl { font-size: 14.5px; color: rgba(240,226,196,.8); margin-top: 4px; }

/* ---------- Home: purpose cards ---------- */
.section-purpose { max-width: 1200px; margin: 0 auto; padding: 72px 24px 10px; }
.section-purpose h2 { font-size: 36px; margin: 10px 0 30px; line-height: 1.3; }
.purpose-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr)); gap: 20px; }
.purpose-card { background: var(--card); border: 1px solid var(--card-border); border-radius: 18px; padding: 28px; }
.purpose-card .num { font-family: 'Rozha One', serif; font-size: 20px; color: var(--gold-dark); }
.purpose-card h3 { font-size: 23px; margin: 10px 0 8px; }
.purpose-card p { font-size: 16px; line-height: 1.7; color: var(--body); margin: 0; text-wrap: pretty; }

/* ---------- Home: events preview ---------- */
.section-events-preview { max-width: 1200px; margin: 0 auto; padding: 64px 24px 10px; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 18px; flex-wrap: wrap; margin-bottom: 28px; }
.section-head h2 { font-size: 36px; margin: 10px 0 0; line-height: 1.3; }
.link-more { font-weight: 700; font-size: 16.5px; color: var(--acc); text-decoration: none; border-bottom: 2px solid var(--acc); padding-bottom: 2px; }
.event-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(400px, 100%), 1fr)); gap: 20px; }
.event-card { background: var(--card); border: 1px solid var(--card-border); border-radius: 18px; padding: 20px; display: flex; gap: 18px; align-items: stretch; }
.event-card .poster { width: 112px; height: 148px; object-fit: cover; border-radius: 12px; flex-shrink: 0; background: #E8D8B8; border: 1px solid #E0CBA4; }
.event-card .info { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.event-card h3 { font-size: 22px; margin: 2px 0 0; line-height: 1.35; }
.event-card .when { font-size: 15.5px; font-weight: 600; color: var(--acc); }
.event-card .where { font-size: 15px; color: var(--muted2); }

/* ---------- Home: bhavan teaser ---------- */
.section-bhavan { max-width: 1200px; margin: 0 auto; padding: 64px 24px 0; }
.bhavan-card { border: 1px solid #E0CBA4; border-radius: 22px; background: var(--card); display: grid; grid-template-columns: repeat(auto-fit, minmax(min(340px, 100%), 1fr)); overflow: hidden; }
.bhavan-card .photo { position: relative; min-height: 320px; }
.bhavan-card .copy { padding: 38px 36px; }
.bhavan-card h2 { font-size: 32px; margin: 10px 0 14px; line-height: 1.3; }
.rate-mini { display: flex; flex-direction: column; gap: 10px; margin-bottom: 18px; }
.rate-mini .row { display: flex; justify-content: space-between; gap: 14px; border-bottom: 1px dashed #DFC9A0; padding-bottom: 10px; }
.rate-mini .row:last-child { border-bottom: 0; padding-bottom: 0; }
.rate-mini .row span { font-size: 16px; }
.rate-mini .row b { font-size: 16px; white-space: nowrap; }
.discount-note { font-size: 15px; color: var(--gold-dark); background: var(--gold-tint); border-radius: 10px; padding: 10px 14px; margin: 0 0 22px; }
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* Placeholder slot for missing client photos */
.image-slot { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; text-align: center; padding: 20px; background: repeating-linear-gradient(45deg, #F3E7CB 0 14px, #EFE0BE 14px 28px); color: var(--gold-dark); font-size: 15.5px; font-weight: 600; }
.image-slot.rounded { position: static; height: 100%; border-radius: 14px; border: 1px dashed var(--gold2); box-sizing: border-box; }

/* ---------- CTA band ---------- */
.cta-band { margin-top: 72px; background: var(--umber); }
.cta-band .inner { max-width: 840px; margin: 0 auto; padding: 64px 24px; text-align: center; }
.cta-band .kicker { color: #E4B45B; font-weight: 700; font-size: 15.5px; letter-spacing: .04em; margin-bottom: 12px; }
.cta-band h2 { font-size: 38px; color: #F5E7C8; margin: 0 0 14px; line-height: 1.35; }
.cta-band p { font-size: 17px; color: rgba(240,226,196,.8); margin: 0 0 30px; }
.cta-band .actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-band .btn-primary { padding: 14px 32px; }

/* ---------- Inner-page title ---------- */
.page-title { max-width: 1200px; margin: 0 auto; padding: 60px 24px 0; }
.page-title h1 { font-size: clamp(34px, 5.5vw, 44px); margin: 12px 0 10px; line-height: 1.25; }
.page-title .lede { font-size: 18px; color: var(--body); margin: 0; }

/* ---------- About ---------- */
.about-intro { font-size: 18px; line-height: 1.8; color: var(--body); max-width: 820px; margin: 0; text-wrap: pretty; }
.motto-strip { margin: 44px 0 0; border-top: 1px solid var(--panel-border); border-bottom: 1px solid var(--panel-border); padding: 30px 10px; text-align: center; }
.motto-strip .motto { font-family: 'Rozha One', serif; font-size: 30px; color: var(--acc); }
.motto-strip .cap { font-size: 14.5px; color: var(--muted); margin-top: 6px; }
.section-bearers { max-width: 1200px; margin: 0 auto; padding: 56px 24px 72px; }
.section-bearers .section-head { margin-bottom: 30px; }
.section-bearers .addr { font-size: 15px; color: var(--muted); }
.bearer-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 22px; }
.bearer { text-align: center; }
.bearer .frame { padding: 8px; border: 1px solid #DFC9A0; border-radius: 130px 130px 16px 16px; background: var(--card); }
.bearer .frame img { width: 100%; height: 210px; object-fit: cover; border-radius: 122px 122px 10px 10px; display: block; background: #E8D8B8; }
.bearer .nm { font-family: 'Rozha One', serif; font-size: 19px; margin-top: 12px; line-height: 1.35; }
.bearer .role { font-size: 15px; font-weight: 600; color: var(--acc); margin-top: 2px; }
.footnote { font-size: 15px; color: var(--muted); margin: 34px 0 0; }
.footnote a { font-weight: 600; }

/* ---------- Events page ---------- */
.section-upcoming { max-width: 1200px; margin: 0 auto; padding: 40px 24px 0; }
.section-upcoming h2, .section-past h2 { font-size: 28px; margin: 0 0 20px; }
.event-card.lg { padding: 22px; gap: 20px; }
.event-card.lg .poster { width: 128px; height: 168px; }
.event-card.lg h3 { font-size: 23px; }
.event-card.lg .when { font-size: 16px; }
.event-card.lg .where { font-size: 15.5px; }
.event-card.lg .note { font-size: 15px; color: var(--muted2); }
.section-past { max-width: 1200px; margin: 0 auto; padding: 52px 24px 72px; }
.past-card { background: var(--card); border: 1px solid var(--card-border); border-radius: 22px; display: grid; grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr)); overflow: hidden; }
.past-card > img { width: 100%; height: 100%; min-height: 340px; object-fit: cover; display: block; background: #E8D8B8; }
.past-card .report { padding: 34px 34px 30px; }
.past-card h3 { font-size: 28px; margin: 14px 0 12px; line-height: 1.35; }
.past-card p { font-size: 16px; line-height: 1.75; color: var(--body); margin: 0 0 12px; text-wrap: pretty; }
.past-card .sig { font-size: 15.5px; font-weight: 600; color: var(--muted2); }

/* ---------- Hall rates ---------- */
.section-rates { max-width: 1200px; margin: 0 auto; padding: 36px 24px 0; }
.rate-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr)); gap: 20px; align-items: start; }
.rate-card { background: var(--card); border: 1px solid var(--card-border); border-radius: 18px; padding: 26px; }
.rate-card .head { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.rate-card h3 { font-size: 23px; margin: 0; line-height: 1.3; }
.rate-card .seats { font-size: 13.5px; font-weight: 700; color: var(--gold-dark); border: 1px solid var(--gold); border-radius: 999px; padding: 2px 12px; white-space: nowrap; }
.rate-card .ac { font-size: 14px; color: var(--muted); margin: 4px 0 14px; }
.rate-card .row { display: flex; justify-content: space-between; gap: 14px; padding: 10px 0; border-bottom: 1px dashed #DFC9A0; }
.rate-card .row .lbl { font-size: 16px; }
.rate-card .row .val { font-family: 'Rozha One', serif; font-size: 18px; }
.rate-card .offers { background: var(--gold-tint); border-radius: 12px; padding: 12px 16px; margin-top: 16px; }
.rate-card .offers div { font-size: 15px; color: var(--gold-dark); font-weight: 600; padding: 3px 0; }
.rate-card .dep { font-size: 14.5px; color: var(--muted); margin-top: 14px; }
.section-hall-info { max-width: 1200px; margin: 0 auto; padding: 40px 24px 72px; }
.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr)); gap: 20px; }
.info-card { border: 1px solid var(--panel-border); border-radius: 18px; padding: 26px; }
.info-card h3 { font-size: 22px; margin: 0 0 12px; }
.info-card .body { font-size: 15.5px; line-height: 1.9; color: var(--body); }
.info-card.contact { display: flex; flex-direction: column; justify-content: center; gap: 14px; }
.info-card.contact h3 { margin: 0; }
.info-card.contact .btn-primary { text-align: center; padding: 13px 26px; }
.info-card.contact .btn-ghost { text-align: center; font-size: 16px; padding: 12px 24px; }

/* ---------- Gallery ---------- */
.section-gallery { max-width: 1200px; margin: 0 auto; padding: 60px 24px 72px; }
.section-gallery .lede { margin-bottom: 34px; }
.masonry { columns: 3 300px; column-gap: 18px; }
.masonry .item { break-inside: avoid; margin-bottom: 18px; }
.masonry .item img { width: 100%; display: block; border-radius: 14px; border: 1px solid #E0CBA4; background: #E8D8B8; }

/* ---------- Membership ---------- */
.section-member { max-width: 1200px; margin: 0 auto; padding: 60px 24px 72px; }
.section-member .lede { margin-bottom: 40px; max-width: 720px; text-wrap: pretty; }
.member-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(360px, 100%), 1fr)); gap: 36px; align-items: start; }
.member-grid h2 { font-size: 26px; margin: 0 0 16px; }
.benefits { display: flex; flex-direction: column; gap: 12px; margin-bottom: 34px; }
.benefits .item { display: flex; gap: 12px; font-size: 16.5px; line-height: 1.6; }
.benefits .item .dia { color: var(--gold); }
.cat-list { display: flex; flex-direction: column; gap: 12px; }
.cat-option { display: flex; flex-direction: column; gap: 2px; text-decoration: none; color: var(--ink); padding: 14px 18px; border-radius: 14px; border: 1.5px solid #DFC9A0; background: transparent; cursor: pointer; text-align: left; font-family: 'Mukta', sans-serif; }
.cat-option.selected { border: 2px solid var(--acc); background: var(--card); padding: 13.5px 17.5px; }
.cat-option .nm { font-size: 17px; font-weight: 700; }
.cat-option .note { font-size: 14.5px; color: var(--muted); }
.member-note { font-size: 14.5px; color: var(--muted); margin: 18px 0 0; }
.member-note a { font-weight: 600; }
.form-card { background: var(--card); border: 1px solid var(--card-border); border-radius: 20px; padding: 32px; }
.form-card h2 { font-size: 26px; margin: 0 0 6px; }
.form-card .cat-echo { font-size: 15px; color: var(--muted); margin: 0 0 22px; }
.form-card .cat-echo b { color: var(--acc); }
.form-fields { display: flex; flex-direction: column; gap: 16px; }
.form-fields label { display: flex; flex-direction: column; gap: 6px; }
.form-fields label > span { font-size: 14.5px; font-weight: 700; }
.form-fields input, .form-fields textarea { width: 100%; box-sizing: border-box; padding: 12px 14px; font-size: 16px; border: 1.5px solid #D8C49B; border-radius: 10px; background: #FFFDF6; outline: none; }
.form-fields textarea { resize: vertical; }
.form-fields input:focus, .form-fields textarea:focus { border-color: var(--acc); }
.form-error { background: #F9E3DC; border: 1px solid #D89A8A; color: var(--accDeep); font-size: 15px; font-weight: 600; border-radius: 10px; padding: 10px 14px; }
.form-fields .btn-primary { text-align: center; padding: 14px 26px; }
.form-fields .btn-print { border: 1.5px solid var(--gold2); color: var(--ink); text-decoration: none; font-weight: 600; font-size: 15.5px; padding: 12px 24px; border-radius: 999px; text-align: center; }
.form-fields .btn-print:hover { background: #F3E7CB; }
.form-privacy { font-size: 13.5px; color: var(--muted); margin: 0; text-align: center; }
.form-success { text-align: center; padding: 30px 10px; }
.form-success .thanks { font-family: 'Rozha One', serif; font-size: 34px; color: var(--acc); margin-bottom: 10px; }
.form-success p.main { font-size: 16.5px; line-height: 1.75; color: var(--body); margin: 0 0 8px; }
.form-success p.sub { font-size: 15.5px; line-height: 1.75; color: var(--muted); margin: 0 0 26px; }
.form-success .btn-ghost { font-size: 15.5px; padding: 11px 24px; }
[hidden] { display: none !important; }

/* ---------- Footer ---------- */
.site-footer { background: var(--umber); margin-top: auto; }
.site-footer .cols { max-width: 1200px; margin: 0 auto; padding: 56px 24px 40px; display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 36px; }
.site-footer .brand-row { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.site-footer .brand-row img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; background: #EFE1C2; }
.site-footer .brand-row .nm { font-family: 'Rozha One', serif; font-size: 23px; color: #F5E7C8; }
.site-footer .tag { font-size: 15px; line-height: 1.75; color: rgba(240,226,196,.75); margin: 0 0 14px; }
.site-footer .motto { color: #E4B45B; font-size: 14.5px; font-weight: 600; }
.site-footer .col-title { font-size: 14px; font-weight: 700; color: #E4B45B; letter-spacing: .06em; margin-bottom: 14px; }
.site-footer .links { display: flex; flex-direction: column; gap: 9px; }
.site-footer .links a, .site-footer .contact a { color: #EAD9B4; text-decoration: none; font-size: 15.5px; }
.site-footer .links a:hover, .site-footer .contact a:hover { color: #E4B45B; }
.site-footer .contact { display: flex; flex-direction: column; gap: 9px; font-size: 15.5px; color: #EAD9B4; }
.site-footer .social { display: flex; gap: 14px; margin-top: 6px; }
.site-footer .social a { color: #E4B45B; text-decoration: none; font-weight: 600; }
.site-footer .social a:hover { color: #F5E7C8; }
.site-footer .legal { border-top: 1px solid rgba(228,180,91,.25); }
.site-footer .legal .inner { max-width: 1200px; margin: 0 auto; padding: 18px 24px; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: 14px; color: rgba(240,226,196,.6); }

/* ---------- Mobile ---------- */
@media (max-width: 760px) {
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; border: 1.5px solid var(--gold2); border-radius: 12px; background: transparent; cursor: pointer; padding: 0; }
  .nav-toggle svg { display: block; }
  .nav-toggle .icon-close { display: none; }
  .nav-toggle[aria-expanded="true"] .icon-open { display: none; }
  .nav-toggle[aria-expanded="true"] .icon-close { display: block; }
  .site-header .inner { flex-wrap: nowrap; }
  .site-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--paper); border-bottom: 1px solid var(--panel-border); box-shadow: 0 18px 30px -18px rgba(46,28,18,.35); flex-direction: column; align-items: stretch; gap: 0; padding: 10px 24px 20px; }
  .site-nav.open { display: flex; }
  .site-nav a.nav-link { padding: 12px 2px; border-bottom: 1px solid #EFE0BE; }
  .site-nav a.nav-link.active { border-bottom: 2.5px solid var(--acc); }
  .site-nav .btn-primary.nav-cta { margin-top: 14px; text-align: center; }
  .hero { padding-top: 44px; gap: 44px; }
  .arch-frame img { height: 440px; }
  .event-card .poster { width: 96px; height: 128px; }
  .bhavan-card .copy { padding: 30px 24px; }
  .past-card .report { padding: 26px 22px; }
  .form-card { padding: 24px 20px; }
}
