/*
Theme Name: AgratasMUN
Theme URI: https://agratasmun.com
Author: AgratasMUN Secretariat
Author URI: https://agratasmun.com
Description: Official theme for AgratasMUN — Bangalore's inaugural independent Model United Nations conference, 12–14 June 2026. Elegant, responsive, and built for diplomacy.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: agratasmun
Tags: one-page, responsive-layout, custom-menu, custom-colors, featured-images, full-width-template
*/

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --cream:        #ede9e0;
  --cream-dark:   #e3ddd3;
  --cream-mid:    #d8d2c6;
  --forest:       #1e3327;
  --forest-mid:   #2a4438;
  --forest-light: #3d5c4a;
  --gold:         #b09a72;
  --gold-light:   #c8ae88;
  --text:         #1a1a18;
  --text-mid:     #4a4a44;
  --text-light:   #8a8a80;
  --white:        #faf9f6;
  --radius:       0px;
  --transition:   0.3s ease;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--cream);
  color: var(--text);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity var(--transition);
}

ul, ol { list-style: none; }

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--cream-dark); }
::-webkit-scrollbar-thumb { background: var(--forest); }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  line-height: 1.05;
}

.display-serif {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
}

.label-caps {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-light);
}

/* ============================================================
   LAYOUT HELPERS
   ============================================================ */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 44px;
}

.section-header {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 56px;
}
.section-header::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(30,51,39,0.15);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   NAVIGATION
   ============================================================ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(237,233,224,0.93);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(30,51,39,0.08);
  transition: padding 0.35s ease;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 44px;
  transition: padding 0.35s ease;
}

#site-header.scrolled .nav-inner {
  padding-top: 10px;
  padding-bottom: 10px;
}

/* Brand */
.site-branding {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-monogram {
  width: 40px;
  height: 40px;
  background: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant SC', serif;
  color: var(--gold);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  flex-shrink: 0;
  border-radius: 3px;
}

/* Logo image in navbar */
.brand-logo-img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 50%;
  flex-shrink: 0;
  border: 1.5px solid var(--gold);
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.brand-text-name {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.5px;
  line-height: 1;
}

.brand-text-sub {
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--text-light);
  text-transform: uppercase;
  margin-top: 2px;
}

/* Desktop menu */
#primary-menu {
  display: flex;
  align-items: center;
  gap: 0;
}

#primary-menu li a {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-mid);
  padding: 8px 18px;
  transition: color 0.2s;
}

#primary-menu li a:hover { color: var(--forest); }

#primary-menu li.menu-cta a {
  background: var(--forest);
  color: var(--cream);
  padding: 10px 22px;
  margin-left: 10px;
  font-size: 11px;
  letter-spacing: 2px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s;
}

#primary-menu li.menu-cta a::after {
  content: '↗';
  font-size: 13px;
}

#primary-menu li.menu-cta a:hover {
  background: var(--forest-light);
  opacity: 1;
}

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--text);
  transition: all 0.3s;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--cream);
  border-top: 1px solid rgba(30,51,39,0.1);
  padding: 16px 24px 24px;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-mid);
  padding: 14px 0;
  border-bottom: 1px solid rgba(30,51,39,0.08);
}

.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--forest); }

.mobile-menu-cta {
  margin-top: 8px;
  background: var(--forest);
  color: var(--cream) !important;
  padding: 14px 18px !important;
  text-align: center;
  border-bottom: none !important;
  border-radius: 2px;
  font-weight: 500;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: 72px;
  overflow: hidden;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1541872703-74c5e44368f9?w=1600&q=80');
  background-size: cover;
  background-position: center top;
  filter: grayscale(100%) brightness(1.2);
  opacity: 0.15;
  z-index: 0;
}

.hero-meta {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  padding: 28px 44px 0;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-light);
  animation: fadeDown 0.9s ease both;
}

.hero-main-content {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  align-items: flex-start;
  padding: 36px 44px 0;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(80px, 13vw, 195px);
  font-weight: 300;
  line-height: 0.88;
  letter-spacing: -2px;
  animation: fadeDown 0.9s ease 0.15s both;
}

.hero-title .line-agratas { display: block; }

.hero-title .line-mun {
  display: block;
  color: var(--forest);
  position: relative;
}

.hero-dot {
  display: inline-block;
  width: clamp(12px, 1.4vw, 20px);
  height: clamp(12px, 1.4vw, 20px);
  border-radius: 50%;
  background: var(--gold);
  vertical-align: super;
  margin-left: 4px;
}

/* Hero stats bar */
.hero-stats-bar {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(30,51,39,0.15);
  margin: 0 44px;
  animation: fadeDown 0.9s ease 0.3s both;
}

.hero-stat {
  padding: 26px 24px;
  border-right: 1px solid rgba(30,51,39,0.12);
}

.hero-stat:first-child { padding-left: 0; }
.hero-stat:last-child { border-right: none; }

.hero-stat-label {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-stat-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 300;
  line-height: 1;
}

.hero-stat-value.italic-val { font-style: italic; }
.hero-stat-sub { font-size: 11px; color: var(--text-light); margin-top: 3px; letter-spacing: 1px; }

/* Countdown */
.countdown-wrap {
  display: flex;
  align-items: baseline;
  gap: 0;
}

.cd-block { text-align: center; }

.cd-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  font-weight: 300;
  line-height: 1;
}

.cd-sep {
  font-size: 22px;
  color: var(--text-light);
  margin: 0 3px;
  padding-bottom: 8px;
}

.cd-label {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 2px;
}

.hero-brief-text {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--text-mid);
  padding-top: 4px;
}

/* Scroll cue */
.hero-scroll-cue {
  position: relative;
  z-index: 1;
  padding: 14px 44px 26px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-light);
  animation: fadeDown 0.9s ease 0.45s both;
}

.scroll-line {
  width: 52px;
  height: 1px;
  background: var(--text-light);
}

/* ============================================================
   TICKER
   ============================================================ */
.ticker-wrap {
  background: var(--forest);
  padding: 15px 0;
  overflow: hidden;
}

.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: ticker-scroll 30s linear infinite;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 0 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  letter-spacing: 1.5px;
  color: var(--cream);
  flex-shrink: 0;
}

.ticker-diamond { color: var(--gold); font-size: 10px; }

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   SECTION: ABOUT (#01)
   ============================================================ */
#about {
  padding: 100px 0;
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 80px;
}

.about-headline {
  font-size: clamp(38px, 4.5vw, 66px);
  line-height: 1.05;
}

.about-headline em {
  font-style: italic;
  color: var(--forest);
}

.about-origin {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 24px;
}

.about-dropcap {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.dropcap-letter {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px;
  line-height: 0.8;
  font-weight: 300;
  color: var(--forest);
  flex-shrink: 0;
  margin-top: 6px;
}

.about-p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-mid);
  margin-bottom: 18px;
}

.about-p strong {
  color: var(--text);
  font-weight: 500;
}

/* Stats row */
.about-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(30,51,39,0.15);
}

.about-stat-item {
  padding: 30px 32px 30px 0;
  border-right: 1px solid rgba(30,51,39,0.12);
}

.about-stat-item:first-child { padding-left: 0; }
.about-stat-item:last-child { border-right: none; }

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 54px;
  font-weight: 300;
  line-height: 1;
}

.stat-label-text {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 6px;
}

/* ============================================================
   SECTION: COMMITTEES (#02)
   ============================================================ */
#committees {
  padding: 100px 0;
  background: var(--cream-dark);
}

.committees-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 56px;
  align-items: end;
}

.committees-headline {
  font-size: clamp(36px, 4.5vw, 62px);
  line-height: 1.05;
}

.committees-headline em {
  color: var(--forest);
  font-style: italic;
}

.committees-body-text {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-mid);
  padding-top: 8px;
}

/* Grid layout */
.committees-main-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 10px;
}

.committees-right-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.committees-bottom-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 10px;
}

/* Committee card */
.committee-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  cursor: pointer;
  text-decoration: none;
}

.committee-card.card-large { min-height: 620px; }
.committee-card.card-medium { min-height: 300px; }
.committee-card.card-small { min-height: 200px; }

.card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(50%) brightness(0.7);
  transition: transform 0.7s ease, filter 0.4s ease;
}

.committee-card:hover .card-bg {
  transform: scale(1.05);
  filter: grayscale(10%) brightness(0.6);
}

.card-overlay {
  position: relative;
  z-index: 2;
  padding: 24px;
  background: linear-gradient(to top, rgba(8,18,12,0.9) 0%, rgba(0,0,0,0) 100%);
}

.card-num {
  font-size: 10px;
  letter-spacing: 2.5px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 4px;
}

.card-level {
  display: inline-block;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
  color: #fff;
  padding: 3px 10px;
  margin-bottom: 8px;
}

.card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 300;
  color: #fff;
  line-height: 1;
}

.committee-card.card-medium .card-name,
.committee-card.card-small .card-name {
  font-size: 28px;
}

.card-fullname {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
}

.card-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  line-height: 1.55;
  margin-top: 8px;
}

.committee-card.card-small .card-desc { display: none; }

.card-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.15);
  transition: gap 0.25s;
}

.committee-card:hover .card-cta { gap: 14px; }

/* ============================================================
   SECTION: REGISTER (#03)
   ============================================================ */
#register {
  padding: 100px 0;
  background: var(--cream);
}

.register-intro {
  max-width: 740px;
  margin-bottom: 56px;
}

.register-headline {
  font-size: clamp(36px, 4.5vw, 62px);
  line-height: 1.05;
  margin-bottom: 18px;
}

.register-headline em {
  color: var(--forest);
  font-style: italic;
}

.register-sub {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.75;
}

.register-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.reg-card {
  padding: 44px;
  transition: transform 0.3s ease;
}

.reg-card:hover { transform: translateY(-4px); }

.reg-card.card-dark {
  background: var(--forest);
  color: var(--cream);
}

.reg-card.card-light {
  background: var(--cream-dark);
  color: var(--text);
}

.reg-icon-box {
  width: 52px;
  height: 52px;
  border: 1px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  opacity: 0.55;
}

.reg-icon-box svg { width: 22px; height: 22px; }

.reg-badge {
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  opacity: 0.55;
  margin-bottom: 20px;
}

.reg-badge::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 1px;
  background: currentColor;
  vertical-align: middle;
  margin-right: 10px;
}

.reg-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 14px;
}

.reg-desc {
  font-size: 14px;
  line-height: 1.75;
  opacity: 0.8;
  margin-bottom: 24px;
}

.reg-features {
  margin-bottom: 40px;
}

.reg-features li {
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(128,128,128,0.15);
  display: flex;
  align-items: center;
  gap: 10px;
}

.reg-features li::before {
  content: '■';
  font-size: 6px;
  opacity: 0.45;
  flex-shrink: 0;
}

.reg-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid rgba(128,128,128,0.2);
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: inherit;
  text-decoration: none;
}

.reg-link:hover { opacity: 0.65; }
.reg-link-arrow { color: var(--gold); font-size: 16px; }

/* ============================================================
   SECTION: FAQ (#04)
   ============================================================ */
#faq {
  padding: 100px 0;
  background: var(--cream-dark);
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 100px;
  align-items: start;
}

.faq-headline {
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.1;
  position: sticky;
  top: 100px;
}

.faq-headline em {
  color: var(--forest);
  font-style: italic;
}

.faq-accordion { display: flex; flex-direction: column; }

.faq-item {
  border-top: 1px solid rgba(30,51,39,0.15);
}

.faq-item:last-child {
  border-bottom: 1px solid rgba(30,51,39,0.15);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: var(--text);
  font-weight: 400;
  text-align: left;
  transition: color 0.2s;
}

.faq-question:hover { color: var(--forest); }

.faq-arrow {
  font-size: 18px;
  color: var(--text-light);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-arrow { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-mid);
}

.faq-item.open .faq-answer {
  max-height: 280px;
  padding-bottom: 22px;
}

/* ============================================================
   SECTION: CONTACT (#05)
   ============================================================ */
#contact {
  padding: 100px 0;
  background: var(--cream);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

.contact-headline {
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.1;
  margin-bottom: 44px;
}

.contact-headline em {
  color: var(--forest);
  font-style: italic;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: var(--text);
  transition: opacity 0.2s;
}

.contact-info-item:hover { opacity: 0.7; }

.contact-icon-box {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(30,51,39,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon-box svg { width: 18px; height: 18px; }

.contact-item-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
}

.contact-item-value { font-size: 15px; margin-top: 2px; }

/* Contact form */
.contact-form-box {
  background: var(--cream-dark);
  padding: 48px;
}

.form-top-label {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 32px;
}

.form-field { margin-bottom: 24px; }

.form-label {
  display: block;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 8px;
}

.form-input,
.form-textarea {
  width: 100%;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(30,51,39,0.25);
  padding: 10px 0;
  font-size: 15px;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
}

.form-input:focus,
.form-textarea:focus { border-color: var(--forest); }

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-light);
  font-style: italic;
}

.form-textarea { resize: none; height: 100px; font-size: 14px; }

.form-submit-btn {
  background: var(--forest);
  color: var(--cream);
  border: none;
  padding: 15px 36px;
  cursor: pointer;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: background 0.2s;
  margin-top: 8px;
}

.form-submit-btn:hover { background: var(--forest-light); }
.form-submit-btn svg { width: 14px; height: 14px; }

/* ============================================================
   FOOTER
   ============================================================ */
#colophon {
  background: var(--forest);
  padding: 72px 0 40px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 56px;
}

.footer-brand-col { }

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-monogram {
  width: 44px;
  height: 44px;
  background: rgba(237,233,224,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant SC', serif;
  color: var(--gold);
  font-size: 13px;
  border-radius: 3px;
}

/* Logo image in footer */
.footer-logo-img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 50%;
  flex-shrink: 0;
  border: 1.5px solid var(--gold);
  opacity: 0.92;
}

.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  color: var(--cream);
  line-height: 1;
}

.footer-brand-sub {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}

.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(237,233,224,0.6);
  font-style: italic;
  max-width: 380px;
}

.footer-col-title {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-nav-list { display: flex; flex-direction: column; gap: 10px; }

.footer-nav-list a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  color: rgba(237,233,224,0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-nav-list a:hover { color: var(--cream); }

.footer-contact-line {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(237,233,224,0.6);
  margin-bottom: 12px;
  text-decoration: none;
}

.footer-contact-line svg { width: 14px; height: 14px; opacity: 0.45; flex-shrink: 0; }
.footer-contact-line:hover { color: var(--cream); }

.footer-bottom-bar {
  border-top: 1px solid rgba(237,233,224,0.1);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: rgba(237,233,224,0.35);
  letter-spacing: 1px;
}

/* ============================================================
   WORDPRESS DEFAULT ALIGNMENT CLASSES
   ============================================================ */
.alignleft  { float: left; margin: 0 1.5em 1em 0; }
.alignright { float: right; margin: 0 0 1em 1.5em; }
.aligncenter { display: block; margin: 0 auto 1em; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 12px; color: var(--text-light); margin-top: 6px; }

/* Screen reader text */
.screen-reader-text {
  border: 0; clip: rect(1px,1px,1px,1px);
  clip-path: inset(50%); height: 1px; margin: -1px;
  overflow: hidden; padding: 0; position: absolute; width: 1px;
  word-wrap: normal !important;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet: ≤1024px */
@media (max-width: 1024px) {
  .container { padding: 0 32px; }

  .nav-inner { padding: 14px 32px; }
  #primary-menu { display: none; }
  .nav-toggle { display: flex; }

  .hero-meta { padding: 24px 32px 0; }
  .hero-main-content { padding: 28px 32px 0; }
  .hero-stats-bar {
    grid-template-columns: 1fr 1fr;
    margin: 0 32px;
  }
  .hero-stat { border-right: none; }
  .hero-stat:nth-child(odd) { border-right: 1px solid rgba(30,51,39,0.12); }
  .hero-scroll-cue { padding: 14px 32px 22px; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-stats-row { grid-template-columns: repeat(2, 1fr); }
  .about-stat-item:nth-child(2) { border-right: none; }
  .about-stat-item:nth-child(3) { border-right: 1px solid rgba(30,51,39,0.12); }

  .committees-intro { grid-template-columns: 1fr; gap: 24px; }
  .committees-main-grid { grid-template-columns: 1fr; }
  .committee-card.card-large { min-height: 420px; }
  .committees-bottom-row { grid-template-columns: repeat(2, 1fr); }

  .register-cards { grid-template-columns: 1fr; }

  .faq-layout { grid-template-columns: 1fr; gap: 40px; }
  .faq-headline { position: static; }

  .contact-layout { grid-template-columns: 1fr; gap: 48px; }

  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand-col { grid-column: span 2; }
}

/* Mobile: ≤640px */
@media (max-width: 640px) {
  .container { padding: 0 20px; }

  .nav-inner { padding: 12px 20px; }
  .brand-text-sub { display: none; }
  .brand-logo-img { width: 36px; height: 36px; }
  .footer-logo-img { width: 44px; height: 44px; }

  .hero-meta {
    padding: 20px 20px 0;
    font-size: 9px;
    letter-spacing: 2px;
  }

  .hero-main-content { padding: 20px 20px 0; }

  .hero-title {
    font-size: clamp(56px, 16vw, 100px);
    letter-spacing: -1px;
  }

  .hero-stats-bar {
    grid-template-columns: 1fr 1fr;
    margin: 0 20px;
  }

  .hero-stat { padding: 18px 12px; }
  .hero-stat:first-child { padding-left: 0; }
  .cd-num { font-size: 22px; }
  .cd-sep { font-size: 16px; }
  .hero-stat-value { font-size: 20px; }
  .hero-brief-text { font-size: 12px; }

  .hero-scroll-cue { padding: 12px 20px 20px; }

  #about { padding: 64px 0; }
  .section-header { margin-bottom: 36px; }
  .about-stats-row { grid-template-columns: 1fr 1fr; }
  .stat-number { font-size: 40px; }

  #committees { padding: 64px 0; }
  .committee-card.card-large { min-height: 340px; }
  .committee-card.card-medium { min-height: 220px; }
  .committees-bottom-row { grid-template-columns: 1fr 1fr; }
  .committee-card.card-small { min-height: 160px; }

  #register { padding: 64px 0; }
  .reg-card { padding: 28px; }
  .reg-title { font-size: 34px; }

  #faq { padding: 64px 0; }
  .faq-question { font-size: 16px; }

  #contact { padding: 64px 0; }
  .contact-form-box { padding: 28px; }

  #colophon { padding: 52px 0 32px; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-brand-col { grid-column: span 1; }
  .footer-bottom-bar { flex-direction: column; gap: 8px; text-align: center; }
}

/* Very small: ≤400px */
@media (max-width: 400px) {
  .hero-stats-bar { grid-template-columns: 1fr; }
  .hero-stat { border-right: none; border-bottom: 1px solid rgba(30,51,39,0.1); }
  .hero-stat:last-child { border-bottom: none; }

  .about-stats-row { grid-template-columns: 1fr; }
  .about-stat-item { border-right: none !important; border-bottom: 1px solid rgba(30,51,39,0.1); padding-left: 0 !important; }
}
