/* ================================================================
   EMERALD HILLS HOA — "Shenandoah Meadow" Design System
   Rich forest green dominant aesthetic
   Fonts: Cormorant Garamond (display) + Source Serif 4 (body)
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Source+Serif+4:ital,opsz,wght@0,8..60,300;0,8..60,400;0,8..60,600;1,8..60,300;1,8..60,400&display=swap');

:root {
  /* Forest greens replace all walnut/bark/brown tones */
  --walnut:         #122b1e;  /* deep forest — was dark brown */
  --bark:           #1a3d2b;  /* rich forest — was medium brown */
  --moss:           #2e6b42;  /* true moss green */
  --moss-mid:       #4a9e6a;  /* mid forest green */
  --moss-light:     #c8e8d0;  /* light mint */
  --sienna:         #c87828;  /* harvest orange — replaces rust sienna */
  --sienna-light:   #f5deb0;  /* light amber cream */
  --parchment:      #f2f8f4;  /* green-tinted cream */
  --parchment-dark: #d8edde;  /* green-tinted parchment dark */
  --cream:          #f5faf6;  /* green-tinted off-white */
  --amber:          #c8902a;  /* golden amber stays */
  --amber-glow:     #f0d080;  /* warm gold glow stays */
  --white:          #ffffff;
  --text-dark:      #0e1f16;  /* deep forest text */
  --text-mid:       #254535;  /* mid forest text */
  --text-muted:     #5a7a65;  /* muted green-gray */

  --radius:    16px;
  --radius-sm: 8px;

  --shadow-warm-sm: 0 2px 12px rgba(18,43,30,0.10);
  --shadow-warm-md: 0 8px 32px rgba(18,43,30,0.16);
  --shadow-warm-lg: 0 20px 60px rgba(18,43,30,0.22);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Source Serif 4', Georgia, serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.75;
  overflow-x: hidden;
}

/* Subtle grain overlay */
body::after {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.025;
  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.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

a { color: var(--moss); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--sienna); }
img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 28px; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  padding: 13px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: transform 0.18s, box-shadow 0.18s, background 0.2s, color 0.2s;
  text-decoration: none !important;
  border: none;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--sienna);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(30,80,50,0.38);
}
.btn-primary:hover { background: #0e5c30; color: var(--white); box-shadow: 0 8px 28px rgba(30,80,50,0.48); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.65);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); color: var(--white); }

.btn-secondary {
  background: var(--moss-light);
  color: var(--moss);
}
.btn-secondary:hover { background: #a0d8b4; color: var(--moss); }

.btn-ghost {
  background: transparent;
  color: var(--sienna);
  border: 2px solid var(--sienna);
}
.btn-ghost:hover { background: var(--sienna); color: var(--white); }


/* ================================================================
   HEADER
   ================================================================ */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: var(--walnut);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.site-header::before {
  content: '';
  display: block; height: 3px;
  background: linear-gradient(90deg, var(--sienna), var(--amber), var(--moss-mid), var(--sienna));
}
.header-inner {
  max-width: 1140px; margin: 0 auto;
  padding: 0 28px;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px; gap: 16px;
}
.logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none !important; flex-shrink: 0;
}
.logo-emblem {
  width: 48px; height: 48px;
  background: var(--walnut);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  flex-shrink: 0;
  overflow: hidden;
}
.logo-emblem img {
  width: 100%; height: 100%;
  object-fit: cover; border-radius: 8px;
  display: block;
}
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-name {
  font-family: var(--font-display);
  font-size: 1.25rem; font-weight: 600;
  color: var(--parchment); letter-spacing: 0.02em;
}
.logo-sub {
  font-size: 0.60rem; color: var(--amber-glow);
  letter-spacing: 0.18em; text-transform: uppercase;
  margin-top: 3px; font-weight: 300;
}
.site-nav { display: flex; align-items: center; gap: 2px; }
.site-nav a {
  color: rgba(245,239,228,0.75);
  font-size: 0.86rem; font-weight: 400;
  letter-spacing: 0.02em;
  padding: 7px 12px; border-radius: 6px;
  transition: background 0.15s, color 0.15s;
  text-decoration: none; white-space: nowrap;
}
.site-nav a:hover, .site-nav a.active {
  background: rgba(255,255,255,0.09); color: var(--parchment);
}
.site-nav .nav-cta {
  background: var(--sienna) !important;
  color: var(--white) !important;
  border-radius: 50px; padding: 7px 18px;
  margin-left: 8px; font-weight: 600;
}
.site-nav .nav-cta:hover { background: #0e5c30 !important; }

.nav-toggle {
  display: none; background: none; border: none;
  color: var(--parchment); font-size: 1.6rem;
  cursor: pointer; padding: 4px 8px; line-height: 1;
}

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .site-nav {
    display: none; position: absolute;
    top: 73px; left: 0; right: 0;
    background: var(--walnut);
    flex-direction: column; align-items: stretch;
    padding: 12px 20px 24px; gap: 2px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.3);
    border-top: 1px solid rgba(255,255,255,0.07);
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 11px 14px; font-size: 1rem; }
  .site-nav .nav-cta { margin-left: 0; margin-top: 8px; text-align: center; }
}


/* ================================================================
   HERO
   ================================================================ */
.hero {
  position: relative;
  min-height: 640px;
  display: flex; align-items: center; justify-content: flex-start;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
/* Diagonal bottom cut */
.hero::after {
  content: '';
  position: absolute; bottom: -2px; left: 0; right: 0;
  height: 100px; background: var(--cream);
  clip-path: polygon(0 55%, 100% 0%, 100% 100%, 0% 100%);
}
.hero-content {
  position: relative; z-index: 2;
  padding: 88px 28px 140px;
  max-width: 680px;
  margin-left: max(28px, calc((100vw - 1140px) / 2 + 28px));
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 0.76rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--amber-glow); margin-bottom: 18px; font-weight: 600;
  animation: fadeUp 0.6s ease both;
}
.hero-eyebrow::before {
  content: ''; display: block;
  width: 36px; height: 1px; background: var(--amber-glow);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 7.5vw, 6rem);
  color: var(--white); line-height: 1.0; font-weight: 700;
  margin-bottom: 4px;
  animation: fadeUp 0.7s 0.1s ease both;
  letter-spacing: -0.01em;
}
.hero-title em {
  font-style: italic; color: var(--amber-glow); font-weight: 400;
}
.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: rgba(245,239,228,0.75); font-style: italic; font-weight: 400;
  margin-bottom: 22px;
  animation: fadeUp 0.7s 0.15s ease both;
}
.hero-divider {
  width: 64px; height: 2px;
  background: linear-gradient(90deg, var(--amber), transparent);
  margin-bottom: 22px;
  animation: fadeUp 0.7s 0.2s ease both;
}
.hero-tagline {
  font-size: 1.05rem; color: rgba(245,239,228,0.80);
  margin-bottom: 42px; font-weight: 300; max-width: 480px; line-height: 1.75;
  animation: fadeUp 0.7s 0.25s ease both;
}
.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  animation: fadeUp 0.7s 0.32s ease both;
}

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


/* ================================================================
   QUICK LINKS
   ================================================================ */
.quick-links { background: var(--cream); padding: 16px 0 88px; }
.ql-intro { text-align: center; margin-bottom: 52px; }
.ql-intro h2 {
  font-family: var(--font-display);
  font-size: 2.6rem; color: var(--walnut); margin-bottom: 8px;
}
.ql-intro p { color: var(--text-muted); font-style: italic; font-size: 1rem; }

.ql-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .ql-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .ql-grid { grid-template-columns: 1fr; } }

.ql-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px 30px;
  display: flex; flex-direction: column; gap: 10px;
  text-decoration: none !important; color: var(--text-dark);
  border: 1.5px solid var(--parchment-dark);
  box-shadow: var(--shadow-warm-sm);
  transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s;
  position: relative; overflow: hidden;
}
.ql-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; width: 4px; height: 100%;
  background: linear-gradient(180deg, var(--sienna), var(--amber));
  opacity: 0; transition: opacity 0.22s;
}
.ql-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-warm-md); border-color: var(--sienna-light); }
.ql-card:hover::before { opacity: 1; }

.ql-icon-wrap {
  width: 54px; height: 54px;
  background: var(--parchment);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin-bottom: 4px;
  transition: background 0.2s;
}
.ql-card:hover .ql-icon-wrap { background: var(--sienna-light); }
.ql-card h3 { font-family: var(--font-display); font-size: 1.25rem; color: var(--walnut); font-weight: 600; }
.ql-card p  { font-size: 0.90rem; color: var(--text-muted); line-height: 1.6; flex: 1; }
.ql-arrow {
  font-size: 0.82rem; color: var(--sienna); font-weight: 600;
  letter-spacing: 0.05em; margin-top: 6px;
  display: flex; align-items: center; gap: 5px; transition: gap 0.2s;
}
.ql-card:hover .ql-arrow { gap: 10px; }

.ql-card--featured {
  background: var(--walnut); border-color: var(--walnut);
}
.ql-card--featured .ql-icon-wrap { background: rgba(255,255,255,0.10); }
.ql-card--featured:hover .ql-icon-wrap { background: rgba(255,255,255,0.18); }
.ql-card--featured h3 { color: var(--amber-glow); }
.ql-card--featured p  { color: rgba(245,239,228,0.68); }
.ql-card--featured .ql-arrow { color: var(--amber-glow); }
.ql-card--featured::before { background: linear-gradient(180deg, var(--amber), var(--amber-glow)); }
.ql-card--featured:hover { border-color: var(--amber); }


/* ================================================================
   WELCOME SECTION
   ================================================================ */
.welcome-section {
  background: var(--parchment);
  padding: 110px 0 120px;
  position: relative; overflow: hidden;
}
.welcome-section::before {
  content: ''; position: absolute;
  top: -2px; left: 0; right: 0; height: 80px;
  background: var(--cream);
  clip-path: polygon(0 0, 100% 0, 100% 35%, 0 100%);
}
.welcome-section::after {
  content: ''; position: absolute;
  bottom: -2px; left: 0; right: 0; height: 80px;
  background: var(--white);
  clip-path: polygon(0 65%, 100% 0, 100% 100%, 0 100%);
}
.welcome-watermark {
  position: absolute; right: -20px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 20rem; font-weight: 700;
  color: rgba(18,43,30,0.05);
  user-select: none; pointer-events: none; line-height: 1;
  letter-spacing: -0.05em;
}
.welcome-inner {
  display: grid; grid-template-columns: 1fr 360px;
  gap: 72px; align-items: center; position: relative; z-index: 1;
}
@media (max-width: 860px) { .welcome-inner { grid-template-columns: 1fr; gap: 40px; } }

.welcome-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.73rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--sienna); font-weight: 600; margin-bottom: 16px;
}
.welcome-label::after { content: ''; display: block; width: 28px; height: 1px; background: var(--sienna); }

.welcome-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  color: var(--walnut); line-height: 1.15; margin-bottom: 24px; font-weight: 600;
}
.welcome-text h2 em { font-style: italic; color: var(--moss); font-weight: 400; }
.welcome-text p { color: var(--text-mid); font-size: 1.02rem; margin-bottom: 18px; line-height: 1.82; }

.info-card {
  background: var(--walnut); border-radius: var(--radius);
  padding: 36px 32px; color: var(--parchment);
  box-shadow: var(--shadow-warm-lg); position: relative; overflow: hidden;
}
.info-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--sienna), var(--amber), var(--moss-mid));
}
.info-card-label {
  font-size: 0.70rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--amber-glow); font-weight: 600; margin-bottom: 24px;
  display: flex; align-items: center; gap: 8px;
}
.info-card-label::before { content: '◆'; font-size: 0.45rem; }
.info-list { list-style: none; }
.info-list li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(245,239,228,0.09);
  display: flex; flex-direction: column; gap: 2px;
}
.info-list li:last-child { border-bottom: none; }
.il-label {
  font-size: 0.68rem; text-transform: uppercase;
  letter-spacing: 0.12em; color: rgba(245,239,228,0.40); font-weight: 600;
}
.il-value { font-size: 0.95rem; color: var(--parchment); }
.info-list a { color: var(--amber-glow); }
.info-list a:hover { color: var(--white); }


/* ================================================================
   PAGE HEADER (inner pages)
   ================================================================ */
.page-header {
  position: relative; background: var(--walnut);
  padding: 80px 28px 90px; text-align: center; overflow: hidden;
}
.page-header::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 75% 40%, rgba(18,43,30,0.35) 0%, transparent 60%),
    radial-gradient(ellipse at 15% 80%, rgba(30,80,50,0.15) 0%, transparent 55%);
}
.page-header::after {
  content: ''; position: absolute;
  bottom: -2px; left: 0; right: 0; height: 64px;
  background: var(--cream);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}
.page-header-inner { position: relative; z-index: 1; }
.page-header-eyebrow {
  font-size: 0.73rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--amber-glow); font-weight: 600; margin-bottom: 14px;
}
.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4rem);
  color: var(--white); font-weight: 700; line-height: 1.05; margin-bottom: 12px;
}
.page-header p {
  font-family: var(--font-display); font-style: italic;
  color: rgba(245,239,228,0.68); font-size: 1.2rem; font-weight: 400;
}


/* ================================================================
   PAGE CONTENT
   ================================================================ */
.page-content { padding: 56px 0 100px; }

.section-heading {
  font-family: var(--font-display);
  font-size: 2rem; color: var(--walnut); font-weight: 600;
  margin-bottom: 28px;
  display: flex; align-items: center; gap: 14px;
}
.section-heading::after {
  content: ''; flex: 1; height: 1px;
  background: linear-gradient(90deg, var(--parchment-dark), transparent);
}


/* ================================================================
   NEWS PAGE
   ================================================================ */
.news-grid { display: grid; gap: 22px; }

.news-item {
  background: var(--white); border-radius: var(--radius);
  padding: 32px 36px;
  border: 1px solid var(--parchment-dark); box-shadow: var(--shadow-warm-sm);
  display: grid; grid-template-columns: 68px 1fr;
  gap: 28px; align-items: start;
  transition: box-shadow 0.2s, transform 0.2s;
}
.news-item:hover { box-shadow: var(--shadow-warm-md); transform: translateY(-2px); }

.news-date-block {
  background: var(--walnut); border-radius: var(--radius-sm);
  text-align: center; padding: 12px 6px; color: var(--parchment);
}
.nd-month { font-size: 0.64rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--amber-glow); font-weight: 600; }
.nd-day   { font-family: var(--font-display); font-size: 2rem; line-height: 1; font-weight: 700; }
.nd-year  { font-size: 0.62rem; color: rgba(245,239,228,0.45); }

.news-tag {
  display: inline-block;
  background: var(--moss-light); color: var(--moss);
  font-size: 0.67rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; padding: 3px 12px; border-radius: 50px; margin-bottom: 10px;
}
.news-body h3 { font-family: var(--font-display); font-size: 1.35rem; color: var(--walnut); margin-bottom: 8px; font-weight: 600; }
.news-body p  { font-size: 0.94rem; color: var(--text-mid); line-height: 1.72; }

@media (max-width: 560px) { .news-item { grid-template-columns: 1fr; gap: 16px; } }


/* ================================================================
   DOCUMENTS PAGE
   ================================================================ */
.doc-section { margin-bottom: 56px; }

.doc-list { display: grid; gap: 10px; }

.doc-item {
  background: var(--white); border: 1px solid var(--parchment-dark);
  border-radius: var(--radius-sm); padding: 18px 22px;
  display: flex; align-items: center; gap: 16px;
  transition: border-color 0.18s, box-shadow 0.18s, transform 0.18s;
}
.doc-item:hover { border-color: var(--sienna-light); box-shadow: var(--shadow-warm-sm); transform: translateX(4px); }
.doc-item-icon { font-size: 1.6rem; flex-shrink: 0; width: 42px; text-align: center; }
.doc-item-info { flex: 1; }
.doc-item-info strong { color: var(--text-dark); display: block; font-size: 0.97rem; }
.doc-item-info span  { font-size: 0.82rem; color: var(--text-muted); }
.doc-download {
  background: var(--parchment); color: var(--walnut);
  font-size: 0.80rem; font-weight: 600;
  padding: 7px 16px; border-radius: 50px; flex-shrink: 0;
  text-decoration: none; border: 1px solid var(--parchment-dark);
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.doc-download:hover { background: var(--sienna); color: var(--white); border-color: var(--sienna); }


/* ================================================================
   BOARD PAGE
   ================================================================ */
.board-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px; margin-bottom: 56px;
}
.board-card {
  background: var(--white); border-radius: var(--radius);
  padding: 36px 24px 28px; text-align: center;
  border: 1px solid var(--parchment-dark); box-shadow: var(--shadow-warm-sm);
  transition: transform 0.2s, box-shadow 0.2s; position: relative; overflow: hidden;
}
.board-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--sienna), var(--amber));
  transform: scaleX(0); transition: transform 0.25s; transform-origin: left;
}
.board-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-warm-md); }
.board-card:hover::after { transform: scaleX(1); }

.board-avatar {
  width: 76px; height: 76px; border-radius: 50%;
  background: var(--parchment); border: 3px solid var(--parchment-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.2rem; margin: 0 auto 18px;
}
.board-card h3 { font-family: var(--font-display); font-size: 1.2rem; color: var(--walnut); margin-bottom: 8px; font-weight: 600; }
.board-role {
  display: inline-block; background: var(--sienna-light); color: var(--sienna);
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.10em;
  padding: 3px 13px; border-radius: 50px; margin-bottom: 12px; text-transform: uppercase;
}
.board-card p  { font-size: 0.87rem; color: var(--text-muted); margin-bottom: 8px; line-height: 1.6; }
.board-card a  { color: var(--moss); font-size: 0.87rem; }
.board-card a:hover { color: var(--sienna); }

.contact-box {
  background: var(--walnut); border-radius: var(--radius);
  padding: 60px 40px; color: var(--white);
  text-align: center; position: relative; overflow: hidden;
}
.contact-box::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(18,43,30,0.4) 0%, transparent 60%),
    radial-gradient(ellipse at 10% 90%, rgba(200,144,42,0.25) 0%, transparent 50%);
  pointer-events: none;
}
.contact-box h2 { font-family: var(--font-display); font-size: 2.3rem; margin-bottom: 14px; position: relative; z-index: 1; }
.contact-box p  { color: rgba(245,239,228,0.72); margin-bottom: 32px; max-width: 520px; margin-left: auto; margin-right: auto; position: relative; z-index: 1; }
.contact-box .btn { margin: 0 8px 8px; position: relative; z-index: 1; }


/* ================================================================
   REALTORS PAGE
   ================================================================ */
.realtor-banner {
  background: linear-gradient(135deg, var(--sienna-light) 0%, var(--amber-glow) 100%);
  border-radius: var(--radius); padding: 28px 32px; margin-bottom: 48px;
  border-left: 5px solid var(--sienna);
  display: flex; gap: 18px; align-items: flex-start;
}
.realtor-banner .rb-icon { font-size: 2rem; flex-shrink: 0; }
.realtor-banner h3 { font-family: var(--font-display); font-size: 1.2rem; color: var(--walnut); margin-bottom: 6px; }
.realtor-banner p { font-size: 0.92rem; color: var(--text-mid); }


/* ================================================================
   EVENTS PAGE
   ================================================================ */
.events-list { display: grid; gap: 22px; }

.event-card {
  background: var(--white); border-radius: var(--radius);
  padding: 28px 32px;
  border: 1px solid var(--parchment-dark); box-shadow: var(--shadow-warm-sm);
  display: flex; gap: 28px; align-items: flex-start;
  transition: box-shadow 0.2s, transform 0.2s;
}
.event-card:hover { box-shadow: var(--shadow-warm-md); transform: translateY(-2px); }

.event-date-badge {
  background: var(--sienna); color: var(--white);
  border-radius: var(--radius-sm); text-align: center;
  padding: 12px 14px; flex-shrink: 0; min-width: 64px;
  box-shadow: 0 4px 12px rgba(30,80,50,0.35);
}
.e-month { font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700; }
.e-day   { font-family: var(--font-display); font-size: 2.1rem; line-height: 1; font-weight: 700; }

.event-details h3 { font-family: var(--font-display); font-size: 1.32rem; color: var(--walnut); margin-bottom: 8px; font-weight: 600; }
.event-details p  { color: var(--text-mid); font-size: 0.93rem; line-height: 1.7; }
.event-meta { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 10px; font-size: 0.82rem; color: var(--text-muted); }

@media (max-width: 560px) { .event-card { flex-direction: column; gap: 16px; } }


/* ================================================================
   GALLERY PAGE
   ================================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius-sm); overflow: hidden;
  aspect-ratio: 4/3; background: var(--parchment-dark);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--parchment-dark);
  transition: transform 0.22s, box-shadow 0.22s;
  cursor: pointer; position: relative;
}
.gallery-item:hover { transform: scale(1.03); box-shadow: var(--shadow-warm-md); z-index: 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }


/* ================================================================
   DUES PAGE
   ================================================================ */
.dues-hero {
  background: linear-gradient(135deg, var(--moss) 0%, var(--moss-mid) 100%);
  border-radius: var(--radius); padding: 44px 44px;
  margin-bottom: 48px; color: var(--white);
  position: relative; overflow: hidden;
}
.dues-hero::before {
  content: '$'; position: absolute; right: 36px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display); font-size: 11rem; font-weight: 700;
  color: rgba(255,255,255,0.05); line-height: 1; pointer-events: none;
}
.dues-hero h2 { font-family: var(--font-display); font-size: 2.1rem; margin-bottom: 10px; font-weight: 600; }
.dues-hero p  { color: rgba(255,255,255,0.80); font-size: 0.97rem; }

.dues-options {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px; margin-bottom: 40px;
}
.dues-option {
  background: var(--white); border: 2px solid var(--parchment-dark);
  border-radius: var(--radius); padding: 40px 32px; text-align: center;
  transition: border-color 0.18s, box-shadow 0.18s, transform 0.18s;
}
.dues-option:hover { border-color: var(--sienna-light); box-shadow: var(--shadow-warm-md); transform: translateY(-3px); }
.dues-option-icon { font-size: 2.8rem; margin-bottom: 16px; }
.dues-option h3   { font-family: var(--font-display); font-size: 1.5rem; color: var(--walnut); margin-bottom: 8px; }
.dues-amount {
  font-family: var(--font-display); font-size: 3rem; color: var(--sienna);
  font-weight: 700; display: block; margin: 14px 0 16px; line-height: 1;
}
.dues-amount span { font-size: 1.2rem; font-weight: 400; color: var(--text-muted); }
.dues-option p { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 28px; line-height: 1.65; }

.dues-note {
  background: var(--parchment); border-radius: var(--radius-sm);
  padding: 24px 30px; border-left: 4px solid var(--amber);
  font-size: 0.93rem; color: var(--text-mid); line-height: 1.75;
}


/* ================================================================
   FOOTER
   ================================================================ */
.site-footer { background: var(--walnut); position: relative; overflow: hidden; }
.site-footer::before {
  content: ''; display: block; height: 3px;
  background: linear-gradient(90deg, var(--sienna), var(--amber), var(--moss-mid), var(--sienna));
}
.footer-body {
  max-width: 1140px; margin: 0 auto;
  padding: 60px 28px 40px;
  display: grid; grid-template-columns: 1fr auto;
  gap: 56px; align-items: start;
}
@media (max-width: 640px) { .footer-body { grid-template-columns: 1fr; gap: 32px; } }

.footer-logo {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 600;
  color: var(--parchment); display: flex; align-items: center; gap: 10px; margin-bottom: 10px;
}
.footer-tagline { font-family: var(--font-display); font-style: italic; color: rgba(245,239,228,0.38); font-size: 0.95rem; }

.footer-nav-grid {
  display: flex; flex-direction: column; gap: 4px; text-align: right;
}
@media (max-width: 640px) { .footer-nav-grid { text-align: left; flex-direction: row; flex-wrap: wrap; } }
.footer-nav-grid a {
  color: rgba(245,239,228,0.50); font-size: 0.87rem;
  padding: 3px 6px; border-radius: 4px; transition: color 0.15s; text-decoration: none;
}
.footer-nav-grid a:hover { color: var(--parchment); }

.footer-bottom {
  border-top: 1px solid rgba(245,239,228,0.07);
  max-width: 1140px; margin: 0 auto; padding: 18px 28px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 8px;
}
.footer-copy   { color: rgba(245,239,228,0.28); font-size: 0.80rem; }
.footer-domain { color: rgba(245,239,228,0.22); font-size: 0.76rem; font-family: monospace; }


/* ================================================================
   EMPTY STATE
   ================================================================ */
.empty-state {
  text-align: center; padding: 68px 24px;
  color: var(--text-muted); background: var(--white);
  border-radius: var(--radius); border: 2px dashed var(--parchment-dark);
}
.empty-state .empty-icon { font-size: 3rem; margin-bottom: 14px; opacity: 0.55; }
.empty-state p { font-style: italic; }


/* ================================================================
   LIGHTBOX
   ================================================================ */
.lightbox {
  display: none; position: fixed; inset: 0;
  background: rgba(30,20,10,0.93); z-index: 9000;
  align-items: center; justify-content: center; padding: 24px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius-sm); box-shadow: var(--shadow-warm-lg); }
.lightbox-close {
  position: fixed; top: 22px; right: 30px;
  color: rgba(245,239,228,0.65); font-size: 2rem;
  cursor: pointer; background: none; border: none; transition: color 0.15s;
}
.lightbox-close:hover { color: var(--white); }

/* ================================================================
   UTILITY
   ================================================================ */
.mt-8  { margin-top: 8px;  }
.mt-16 { margin-top: 16px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.text-center { text-align: center; }
