@import url('https://fonts.googleapis.com/css2?family=Amiri:ital,wght@0,400;0,700;1,400&family=Noto+Serif+Bengali:wght@300;400;500;600;700&family=Playfair+Display:wght@400;600;700&display=swap');

:root {
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --gold-dark: #9a7a2e;
  --green: #1a472a;
  --green-mid: #2d6a4f;
  --green-light: #40916c;
  --cream: #faf6ef;
  --cream-dark: #f0e8d8;
  --dark: #0d1f15;
  --dark-mid: #162b1e;
  --text-dark: #1a1a1a;
  --text-mid: #4a4a4a;
  --text-light: #888;
  --white: #ffffff;
  --shadow: 0 8px 32px rgba(26, 71, 42, 0.15);
  --shadow-gold: 0 4px 20px rgba(201, 168, 76, 0.3);
  --radius: 12px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
  margin: 0; padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Serif Bengali', 'Amiri', serif;
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.8;
  overflow-x: hidden;
}

/* ─── NAVBAR ─── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13, 31, 21, 0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.25);
  transition: var(--transition);
}

.nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}

.nav-brand {
  display: flex; align-items: center; gap: 0.75rem;
  text-decoration: none;
}

.nav-brand img {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 2px solid var(--gold);
}

.nav-brand-text {
  display: flex; flex-direction: column; line-height: 1.1;
}

.nav-brand-text span:first-child {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.5px;
}

.nav-brand-text span:last-child {
  font-size: 0.68rem; color: rgba(201,168,76,0.6);
  letter-spacing: 1px; text-transform: uppercase;
}

.nav-links {
  display: flex; align-items: center; gap: 0.2rem;
  list-style: none;
}

.nav-links a {
  display: block;
  padding: 0.4rem 0.8rem;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 0.85rem;
  border-radius: 6px;
  transition: var(--transition);
  font-family: 'Noto Serif Bengali', serif;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
}

.nav-contact-btn {
  padding: 0.45rem 1.1rem !important;
  background: var(--gold) !important;
  color: var(--dark) !important;
  font-weight: 600 !important;
  border-radius: 50px !important;
}

.nav-contact-btn:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}

.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-mid) 50%, #0a2a18 100%);
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 1.5rem 4rem;
}

.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(201,168,76,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(45,106,79,0.15) 0%, transparent 50%);
  pointer-events: none;
}

.hero-arabic {
  font-family: 'Amiri', serif;
  font-size: 1.6rem;
  color: rgba(201,168,76,0.7);
  letter-spacing: 2px;
  margin-bottom: 1rem;
  animation: fadeDown 0.8s ease both;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  font-size: 0.82rem;
  margin-bottom: 1.5rem;
  animation: fadeDown 0.9s ease both;
  letter-spacing: 0.5px;
}

.hero h1 {
  font-family: 'Noto Serif Bengali', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 0.5rem;
  animation: fadeDown 1s ease both;
}

.hero h1 span { color: var(--gold); }

.hero-tagline {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.5rem;
  animation: fadeDown 1.1s ease both;
}

.hero-desc {
  max-width: 580px; margin: 0 auto 2.5rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  animation: fadeDown 1.2s ease both;
}

.hero-buttons {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  animation: fadeDown 1.3s ease both;
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: var(--gold);
  color: var(--dark);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
  font-family: 'Noto Serif Bengali', serif;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-outline {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 2rem;
  border: 1.5px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  border-radius: 50px;
  font-size: 0.95rem;
  transition: var(--transition);
  font-family: 'Noto Serif Bengali', serif;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.08);
}

.hero-stats {
  display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  animation: fadeUp 1.4s ease both;
}

.stat-item { text-align: center; }
.stat-item .num {
  display: block;
  font-family: 'Noto Serif Bengali', serif;
  font-size: 2rem; font-weight: 700;
  color: var(--gold);
}
.stat-item .label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ─── PAGE HEADER ─── */
.page-header {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-mid) 100%);
  padding: 8rem 1.5rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 80%, rgba(201,168,76,0.1) 0%, transparent 60%);
}

.page-header .page-badge {
  display: inline-block;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  padding: 0.3rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.page-header h1 {
  font-family: 'Noto Serif Bengali', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--white);
  margin-bottom: 0.75rem;
}

.page-header p {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto;
}

/* ─── SECTIONS ─── */
section { padding: 5rem 1.5rem; }

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--green-light);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 24px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

h2.section-title {
  font-family: 'Noto Serif Bengali', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 0.75rem;
}

.section-desc {
  color: var(--text-mid);
  font-size: 0.95rem;
  max-width: 520px;
  margin-bottom: 3rem;
}

/* ─── CARDS ─── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid rgba(201,168,76,0.12);
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(26,71,42,0.15);
  border-color: rgba(201,168,76,0.3);
}

.card:hover::before { transform: scaleX(1); }

.card-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--green), var(--green-mid));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 12px rgba(26,71,42,0.2);
}

.card h3 {
  font-family: 'Noto Serif Bengali', serif;
  font-size: 1.15rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.card p { font-size: 0.88rem; color: var(--text-mid); }

.tag {
  display: inline-block;
  padding: 0.2rem 0.7rem;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.tag-active { background: rgba(64,145,108,0.15); color: var(--green-light); }
.tag-next { background: rgba(201,168,76,0.15); color: var(--gold-dark); }
.tag-future { background: rgba(74,74,74,0.1); color: var(--text-mid); }

/* ─── STEPS ─── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
}

.step {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(201,168,76,0.12);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.step:hover {
  transform: translateY(-4px);
  border-color: rgba(201,168,76,0.3);
}

.step-num {
  display: inline-block;
  width: 36px; height: 36px;
  background: var(--green);
  color: var(--gold);
  border-radius: 50%;
  line-height: 36px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.step-icon { font-size: 2rem; margin-bottom: 0.75rem; display: block; }

.step h3 {
  font-size: 0.95rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
  font-family: 'Noto Serif Bengali', serif;
}

.step p { font-size: 0.82rem; color: var(--text-mid); }

/* ─── MEMBERS ─── */
.members-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}

.member-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  border: 1px solid rgba(201,168,76,0.15);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.member-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.member-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-mid));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; font-weight: 700;
  color: var(--gold);
  margin: 0 auto 1.25rem;
  border: 3px solid rgba(201,168,76,0.3);
}

.member-card h3 {
  font-family: 'Noto Serif Bengali', serif;
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 0.3rem;
}

.member-role {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 0.75rem;
}

.member-badge {
  display: inline-flex; align-items: center; gap: 0.3rem;
  background: rgba(64,145,108,0.12);
  color: var(--green-light);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* ─── FAQ ─── */
.faq-list { max-width: 750px; }

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(201,168,76,0.12);
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(26,71,42,0.06);
}

.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  padding: 1.25rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  text-align: left;
  font-family: 'Noto Serif Bengali', serif;
  font-size: 0.95rem;
  color: var(--dark);
  font-weight: 600;
  transition: var(--transition);
}

.faq-q:hover { color: var(--green); }

.faq-q .arrow {
  width: 28px; height: 28px; flex-shrink: 0;
  border-radius: 50%;
  background: rgba(201,168,76,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  color: var(--gold);
  transition: var(--transition);
}

.faq-q[aria-expanded="true"] .arrow {
  background: var(--gold);
  color: var(--dark);
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 1.5rem;
  font-size: 0.88rem;
  color: var(--text-mid);
}

.faq-a.open {
  max-height: 300px;
  padding: 0 1.5rem 1.25rem;
}

/* ─── NOTICE ─── */
.notice-list { display: flex; flex-direction: column; gap: 1.25rem; max-width: 800px; }

.notice-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex; gap: 1.25rem;
  border: 1px solid rgba(201,168,76,0.12);
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-left: 4px solid var(--gold);
}

.notice-item:hover { transform: translateX(4px); border-left-color: var(--green); }

.notice-date {
  flex-shrink: 0; text-align: center;
  background: rgba(26,71,42,0.06);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  min-width: 80px;
}

.notice-date .month {
  display: block; font-size: 0.7rem;
  color: var(--green);
  text-transform: uppercase; letter-spacing: 1px;
  font-weight: 700; margin-bottom: 0.2rem;
}

.notice-date .year {
  display: block; font-family: 'Noto Serif Bengali', serif;
  font-size: 1.2rem; color: var(--dark); font-weight: 700;
}

.notice-content h3 {
  font-family: 'Noto Serif Bengali', serif;
  font-size: 1rem; color: var(--dark);
  margin-bottom: 0.4rem;
}

.notice-content p { font-size: 0.86rem; color: var(--text-mid); }

/* ─── TABLE ─── */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
}

thead {
  background: linear-gradient(135deg, var(--green), var(--green-mid));
}

thead th {
  padding: 1rem 1.25rem;
  color: var(--gold);
  font-size: 0.82rem;
  text-align: right;
  font-weight: 600;
  letter-spacing: 0.5px;
}

tbody td {
  padding: 0.9rem 1.25rem;
  font-size: 0.88rem;
  color: var(--text-dark);
  border-bottom: 1px solid rgba(201,168,76,0.08);
  text-align: right;
}

tbody tr:hover { background: rgba(201,168,76,0.04); }

/* ─── CONTACT ─── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(201,168,76,0.12);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.contact-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.contact-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-mid));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 1rem;
}

.contact-card h3 {
  font-family: 'Noto Serif Bengali', serif;
  font-size: 1.05rem; color: var(--dark);
  margin-bottom: 0.5rem;
}

.contact-card a {
  color: var(--green-light);
  text-decoration: none;
  font-size: 0.88rem;
  transition: var(--transition);
}

.contact-card a:hover { color: var(--gold); }

.contact-card p { font-size: 0.88rem; color: var(--text-mid); }

/* ─── NOTICE BOX ─── */
.alert-box {
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  display: flex; gap: 1rem; align-items: flex-start;
  margin-top: 2rem;
}

.alert-box .alert-icon { font-size: 1.25rem; flex-shrink: 0; }
.alert-box p { font-size: 0.88rem; color: var(--text-mid); }
.alert-box strong { color: var(--dark); }

/* ─── CONSTITUTION ─── */
.constitution-section {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  border: 1px solid rgba(201,168,76,0.12);
  box-shadow: var(--shadow);
  margin-bottom: 1.5rem;
}

.constitution-section h3 {
  font-family: 'Noto Serif Bengali', serif;
  font-size: 1.2rem;
  color: var(--green);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(201,168,76,0.15);
  display: flex; align-items: center; gap: 0.75rem;
}

.constitution-section h3 .num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px;
  background: var(--green);
  color: var(--gold);
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 700; flex-shrink: 0;
}

.constitution-section ul {
  list-style: none;
  padding: 0;
}

.constitution-section ul li {
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(201,168,76,0.07);
  font-size: 0.9rem;
  color: var(--text-mid);
  display: flex; align-items: flex-start; gap: 0.6rem;
}

.constitution-section ul li::before {
  content: '◆';
  color: var(--gold);
  font-size: 0.5rem;
  margin-top: 0.45rem;
  flex-shrink: 0;
}

/* ─── FOOTER ─── */
footer {
  background: var(--dark);
  padding: 4rem 1.5rem 2rem;
  border-top: 1px solid rgba(201,168,76,0.15);
}

.footer-inner {
  max-width: 1100px; margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand img {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  margin-bottom: 1rem;
}

.footer-brand h3 {
  font-family: 'Noto Serif Bengali', serif;
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

.footer-brand p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.3rem;
}

.footer-col h4 {
  color: var(--gold);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1rem;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.85rem;
  transition: var(--transition);
}

.footer-col ul li a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 0.5rem;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

.footer-bottom .halal-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  color: var(--gold);
  padding: 0.25rem 0.8rem;
  border-radius: 50px;
  font-size: 0.75rem;
}

/* ─── HIGHLIGHT BOX ─── */
.highlight-box {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-mid) 100%);
  border-radius: var(--radius);
  padding: 3rem;
  text-align: center;
  color: var(--white);
  margin-top: 3rem;
}

.highlight-box h3 {
  font-family: 'Noto Serif Bengali', serif;
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
}

.highlight-box p {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 1.5rem;
}

/* ─── BREADCRUMB ─── */
.breadcrumb {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.75rem;
  justify-content: center;
}

.breadcrumb a { color: rgba(201,168,76,0.7); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.3); }

/* ─── ANIMATIONS ─── */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 70px; left: 0; right: 0;
    background: rgba(13,31,21,0.98);
    padding: 1.5rem;
    gap: 0.25rem;
    border-bottom: 1px solid rgba(201,168,76,0.2);
  }
  .nav-links.open a { padding: 0.75rem 1rem; font-size: 1rem; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-stats { gap: 2rem; }
}

/* ─── BG VARIANTS ─── */
.bg-cream { background: var(--cream); }
.bg-white { background: var(--white); }
.bg-dark { background: var(--dark); color: var(--white); }
.bg-green {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-mid) 100%);
}

/* ─── UTILITY ─── */
.text-gold { color: var(--gold); }
.text-green { color: var(--green-light); }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.flex { display: flex; }
.gap-1 { gap: 1rem; }
.flex-wrap { flex-wrap: wrap; }
.text-center { text-align: center; }
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.3), transparent);
  margin: 3rem 0;
}
