:root {
    --navy: #1e3a5f;
    --navy-dark: #142844;
    --navy-deep: #0d1e33;
    --gold: #c9a961;
    --gold-light: #e0c98a;
    --gold-dark: #a8893f;
    --cream: #faf7f0;
    --cream-dark: #f0ebe0;
    --paper: #ffffff;
    --ink: #1a1a1a;
    --ink-light: #3a3a3a;
    --muted: #6b6559;
    --border: #e2dbd0;
    --shadow: 0 4px 24px rgba(20, 40, 68, 0.09);
    --shadow-lg: 0 12px 48px rgba(20, 40, 68, 0.16);
    --shadow-card: 0 2px 12px rgba(20, 40, 68, 0.07);
}

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

body {
    font-family: 'DM Sans', -apple-system, sans-serif;
    color: var(--ink);
    background: var(--cream);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

  h1, h2, h3, h4 {
    font-family: 'Libre Baskerville', Georgia, serif;
    line-height: 1.2;
    color: var(--navy);
  }

  a { color: var(--navy); text-decoration: none; transition: color 0.18s; }
  a:hover { color: var(--gold-dark); }

  .container { max-width: 1120px; margin: 0 auto; padding: 0 1.5rem; }

  /* ---- Announcement Bar ---- */
  .announce {
    background: var(--navy-deep);
    color: rgba(250,247,240,0.88);
    text-align: center;
    padding: 0.55rem 1rem;
    font-size: 0.875rem;
    letter-spacing: 0.01em;
    border-bottom: 1px solid rgba(201,169,97,0.25);
  }
  .announce strong { color: var(--gold-light); font-weight: 600; }

  /* ---- Header / Nav ---- */
  header {
    background: var(--paper);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 8px rgba(20,40,68,0.06);
  }
  .nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.9rem 1.5rem;
    max-width: 1120px;
    margin: 0 auto;
  }
  .logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: 'Libre Baskerville', serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--navy);
  }
  .logo-mark {
    width: 42px;
    height: 42px;
    border: 2px dashed var(--gold);
    border-radius: 4px;
    background: var(--cream);
    display: grid;
    place-items: center;
    font-size: 1.4rem;
    flex-shrink: 0;
  }
  .nav-links {
    display: flex;
    gap: 1.75rem;
    list-style: none;
    align-items: center;
  }
  .nav-links a {
    font-weight: 500;
    color: var(--ink-light);
    font-size: 0.9rem;
    letter-spacing: 0.01em;
  }
  .nav-links a:hover { color: var(--navy); }

  .btn {
    display: inline-block;
    padding: 0.65rem 1.35rem;
    background: var(--gold);
    color: var(--navy-dark);
    border-radius: 3px;
    font-weight: 600;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.9rem;
    font-family: 'DM Sans', sans-serif;
    letter-spacing: 0.01em;
  }
  .btn:hover { background: var(--gold-dark); color: var(--paper); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(168,137,63,0.35); }
  .btn-outline {
    background: transparent;
    color: var(--cream);
    border: 2px solid rgba(250,247,240,0.6);
  }
  .btn-outline:hover { background: var(--cream); color: var(--navy-dark); }
  .btn-navy {
    background: var(--navy);
    color: var(--paper);
  }
  .btn-navy:hover { background: var(--navy-dark); color: var(--paper); box-shadow: 0 4px 14px rgba(20,40,68,0.35); }

  .menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--navy);
    cursor: pointer;
  }

  /* ---- Hero ---- */
  .hero {
    background: linear-gradient(140deg, var(--navy) 0%, var(--navy-dark) 55%, var(--navy-deep) 100%);
    color: var(--cream);
    padding: 5rem 1.5rem 6rem;
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
      radial-gradient(ellipse at 15% 25%, rgba(201,169,97,0.1) 0%, transparent 55%),
      radial-gradient(ellipse at 85% 75%, rgba(201,169,97,0.07) 0%, transparent 50%);
    pointer-events: none;
  }
  /* Subtle postage stamp perforations top edge */
  .hero::after {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: repeating-linear-gradient(90deg, transparent 0px, transparent 8px, var(--gold) 8px, var(--gold) 14px);
    opacity: 0.35;
  }

  .hero-grid {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
  }
  .hero h1 {
    color: var(--cream);
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    margin-bottom: 1.25rem;
    font-style: italic;
    line-height: 1.25;
  }
  .hero .lede {
    font-size: 1.05rem;
    opacity: 0.88;
    margin-bottom: 2rem;
    max-width: 31rem;
    line-height: 1.7;
    font-weight: 300;
  }
  .hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }

  .next-meeting {
    background: var(--paper);
    color: var(--ink);
    border-radius: 6px;
    padding: 1.75rem;
    box-shadow: var(--shadow-lg);
    border-top: 4px solid var(--gold);
    position: relative;
  }
  .next-meeting::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid var(--border);
    border-radius: 6px;
    pointer-events: none;
  }
  .next-meeting .label {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.7rem;
    color: var(--gold-dark);
    font-weight: 700;
    margin-bottom: 0.5rem;
  }
  .next-meeting h3 { font-size: 1.4rem; margin-bottom: 1rem; }
  .meeting-detail {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
  }
  .meeting-detail .icon { color: var(--gold-dark); flex-shrink: 0; margin-top: 2px; }
  .meeting-detail strong { color: var(--navy); display: block; font-size: 0.9rem; }
  .meeting-detail span { color: var(--muted); font-size: 0.875rem; }
  .see-all { display: inline-block; margin-top: 0.5rem; color: var(--gold-dark); font-weight: 600; font-size: 0.9rem; }
  .see-all:hover { color: var(--navy); }

  /* ---- Sections ---- */
  section { padding: 5.5rem 0; }
  .section-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.72rem;
    color: var(--gold-dark);
    font-weight: 700;
    margin-bottom: 0.75rem;
  }
  .section-title {
    font-size: clamp(1.7rem, 3.2vw, 2.4rem);
    margin-bottom: 1rem;
  }
  .section-intro {
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 37rem;
    margin-bottom: 3rem;
    line-height: 1.7;
    font-weight: 300;
  }

  /* ---- About ---- */
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4.5rem;
    align-items: center;
  }
  .about-text p { margin-bottom: 1rem; color: var(--muted); font-weight: 300; line-height: 1.75; }
  .stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-top: 2rem;
  }
  .stat {
    background: var(--paper);
    padding: 1.4rem 1.25rem;
    border-radius: 5px;
    border: 1px solid var(--border);
    text-align: center;
    transition: box-shadow 0.2s;
  }
  .stat:hover { box-shadow: var(--shadow-card); }
  .stat-num {
    font-family: 'Libre Baskerville', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--gold-dark);
    line-height: 1;
    margin-bottom: 0.35rem;
  }
  .stat-label { font-size: 0.8rem; color: var(--muted); letter-spacing: 0.03em; }

  /* Stamp collage */
  .stamp-collage {
    position: relative;
    aspect-ratio: 1 / 1;
    background: var(--cream-dark);
    border-radius: 6px;
    box-shadow: var(--shadow);
    padding: 2rem;
    overflow: hidden;
    border: 1px solid var(--border);
  }
  .stamp {
    position: absolute;
    background: var(--cream);
    border: 2px dashed var(--navy);
    padding: 0.5rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    transition: transform 0.25s;
  }
  .stamp:hover { transform: scale(1.04) rotate(0deg) !important; z-index: 2; }
  .stamp-inner {
    background: var(--gold);
    color: var(--navy-dark);
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    font-family: 'Libre Baskerville', serif;
    font-weight: 700;
    text-align: center;
    padding: 0.5rem;
    font-size: 0.85rem;
    line-height: 1.4;
  }
  .stamp-1 { top: 8%; left: 8%; width: 38%; height: 42%; transform: rotate(-6deg); }
  .stamp-1 .stamp-inner { background: #c44536; color: var(--cream); }
  .stamp-2 { top: 12%; right: 10%; width: 34%; height: 38%; transform: rotate(4deg); }
  .stamp-2 .stamp-inner { background: var(--navy); color: var(--cream); }
  .stamp-3 { bottom: 10%; left: 18%; width: 36%; height: 40%; transform: rotate(8deg); }
  .stamp-3 .stamp-inner { background: var(--gold); color: var(--navy-dark); }
  .stamp-4 { bottom: 8%; right: 8%; width: 32%; height: 36%; transform: rotate(-4deg); }
  .stamp-4 .stamp-inner { background: #2d5a3d; color: var(--cream); }
  .stamp-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

  /* ---- Cards ---- */
  .cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
  .card {
    background: var(--paper);
    padding: 2rem 1.75rem;
    border-radius: 5px;
    border: 1px solid var(--border);
    transition: all 0.22s;
  }
  .card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: var(--gold);
  }
  .card-icon {
    width: 48px;
    height: 48px;
    background: var(--cream);
    border-radius: 5px;
    display: grid;
    place-items: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    border: 1px solid var(--border);
  }
  .card h3 { font-size: 1.15rem; margin-bottom: 0.65rem; font-family: 'DM Sans', sans-serif; font-weight: 600; }
  .card p { color: var(--muted); font-size: 0.9rem; line-height: 1.65; font-weight: 300; }

  /* ---- EVANSPEX ---- */
  .evanspex-section { background: var(--cream); }
  .evanspex {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    color: var(--cream);
    border-radius: 10px;
    padding: 4rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: center;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
  }
  .evanspex::before {
    content: "";
    position: absolute;
    top: -60px; right: -60px;
    width: 220px; height: 220px;
    border: 3px dashed var(--gold);
    border-radius: 50%;
    opacity: 0.18;
  }
  .evanspex::after {
    content: "";
    position: absolute;
    bottom: -40px; left: -40px;
    width: 140px; height: 140px;
    border: 2px dashed var(--gold);
    border-radius: 50%;
    opacity: 0.1;
  }
  .evanspex h2 { color: var(--cream); font-style: italic; font-size: clamp(1.5rem, 2.8vw, 2.1rem); }
  .evanspex .section-eyebrow { color: var(--gold); }
  .evanspex p { opacity: 0.88; margin-bottom: 1.5rem; font-weight: 300; line-height: 1.7; font-size: 1rem; }
  .evanspex-meta {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
  }
  .evanspex-meta div {
    border-left: 2px solid var(--gold);
    padding-left: 1rem;
  }
  .evanspex-meta strong {
    display: block;
    color: var(--gold-light);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 0.25rem;
  }
  .evanspex-meta span { font-size: 0.92rem; opacity: 0.88; }

  .evanspex-card {
    background: var(--paper);
    color: var(--ink);
    border-radius: 6px;
    padding: 2.25rem;
    text-align: center;
    border: 1px solid var(--border);
    position: relative;
    z-index: 1;
  }
  .evanspex-card .show-num {
    font-family: 'Libre Baskerville', serif;
    font-size: 4.5rem;
    color: var(--gold-dark);
    line-height: 1;
    font-style: italic;
  }
  .evanspex-card .show-label {
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.7rem;
    color: var(--muted);
    margin: 0.5rem 0 1rem;
  }
  .evanspex-card hr {
    border: none;
    border-top: 1px solid var(--border);
    margin: 1rem 0;
  }
  .evanspex-card .show-date {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.5rem;
    color: var(--navy);
    font-weight: 700;
  }

  /* ---- Events ---- */
  .events { display: grid; gap: 1rem; }
  .event {
    background: var(--paper);
    border: 1px solid var(--border);
    border-radius: 5px;
    padding: 1.5rem;
    display: grid;
    grid-template-columns: 88px 1fr auto;
    gap: 1.5rem;
    align-items: center;
    transition: box-shadow 0.2s, border-color 0.2s;
  }
  .event:hover { box-shadow: var(--shadow-card); border-color: rgba(201,169,97,0.4); }
  .event-date {
    text-align: center;
    background: var(--cream);
    border-radius: 5px;
    padding: 0.75rem 0.5rem;
    border: 1px solid var(--border);
  }
  .event-date .month {
    text-transform: uppercase;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--gold-dark);
    letter-spacing: 0.1em;
  }
  .event-date .day {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.75rem;
    color: var(--navy);
    line-height: 1;
    margin: 2px 0;
  }
  .event-date .year { font-size: 0.7rem; color: var(--muted); }
  .event-info h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    color: var(--navy);
    margin-bottom: 0.3rem;
    font-weight: 600;
  }
  .event-info p { font-size: 0.875rem; color: var(--muted); margin: 0; font-weight: 300; }
  .event-time { font-size: 0.875rem; color: var(--muted); text-align: right; }

  /* ---- Join ---- */
  .join-section { background: var(--paper); }
  .join-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
  }
  .join-grid .section-intro { margin-bottom: 1rem; }
  .pricing {
    background: var(--cream);
    padding: 2.5rem;
    border-radius: 6px;
    border: 1px solid var(--border);
  }
  .pricing-eyebrow {
    color: var(--gold-dark);
    text-transform: uppercase;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    font-weight: 700;
    margin-bottom: 0.5rem;
  }
  .price {
    font-family: 'Libre Baskerville', serif;
    font-size: 3rem;
    color: var(--navy);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 0.25rem;
  }
  .price small { font-size: 1rem; color: var(--muted); font-weight: 400; }
  .perks { list-style: none; margin: 1.5rem 0; }
  .perks li {
    padding: 0.55rem 0;
    color: var(--muted);
    border-bottom: 1px solid var(--border);
    display: flex;
    gap: 0.75rem;
    font-size: 0.925rem;
    font-weight: 300;
  }
  .perks li::before { content: "✓"; color: var(--gold-dark); font-weight: bold; flex-shrink: 0; }

  /* ---- Contact ---- */
  .contact-section { background: var(--cream); }
  .contact-info {
    background: var(--paper);
    padding: 2.5rem;
    border-radius: 6px;
    border: 1px solid var(--border);
  }
  .contact-info h3 { margin-bottom: 1.5rem; font-size: 1.3rem; }
  .contact-row {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--border);
  }
  .contact-row:last-child { border: none; padding-bottom: 0; margin-bottom: 0; }
  .contact-row .icon {
    width: 36px; height: 36px;
    background: var(--cream);
    border-radius: 5px;
    display: grid; place-items: center;
    flex-shrink: 0;
    border: 1px solid var(--border);
    font-size: 1rem;
  }
  .contact-row strong { display: block; color: var(--navy); margin-bottom: 0.2rem; font-size: 0.9rem; }
  .contact-row span, .contact-row a { color: var(--muted); font-size: 0.88rem; font-weight: 300; line-height: 1.5; }

  form { background: var(--paper); padding: 2.5rem; border-radius: 6px; border: 1px solid var(--border); }
  .form-row { margin-bottom: 1.25rem; }
  label {
    display: block;
    font-weight: 600;
    color: var(--navy);
    font-size: 0.82rem;
    margin-bottom: 0.4rem;
    letter-spacing: 0.01em;
    text-transform: uppercase;
  }
  input, textarea, select {
    width: 100%;
    padding: 0.7rem 0.85rem;
    border: 1px solid var(--border);
    border-radius: 3px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    background: var(--cream);
    color: var(--ink);
    transition: border-color 0.18s, background 0.18s;
    appearance: auto;
  }
  input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--paper);
    box-shadow: 0 0 0 3px rgba(201,169,97,0.12);
  }
  textarea { resize: vertical; min-height: 100px; }

  /* ---- Footer ---- */
  footer {
    background: var(--navy-deep);
    color: var(--cream);
    padding: 3.5rem 0 1.5rem;
    border-top: 3px solid var(--navy-dark);
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
  }
  .footer-grid h4 {
    color: var(--gold);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 1.1rem;
    font-weight: 700;
  }
  .footer-grid ul { list-style: none; }
  .footer-grid li { margin-bottom: 0.55rem; }
  .footer-grid a { color: rgba(250,247,240,0.65); font-size: 0.875rem; font-weight: 300; }
  .footer-grid a:hover { color: var(--gold-light); }
  .footer-grid p { color: rgba(250,247,240,0.6); font-size: 0.875rem; font-weight: 300; line-height: 1.7; }
  .footer-bottom {
    border-top: 1px solid rgba(250,247,240,0.08);
    padding-top: 1.5rem;
    text-align: center;
    color: rgba(250,247,240,0.45);
    font-size: 0.8rem;
  }

  /* ---- Responsive ---- */
  @media (max-width: 860px) {
    .nav-links {
      display: none;
      position: absolute;
      top: 100%; left: 0; right: 0;
      background: var(--paper);
      flex-direction: column;
      padding: 1rem 1.5rem;
      gap: 0;
      border-bottom: 1px solid var(--border);
      box-shadow: var(--shadow);
    }
    .nav-links.open { display: flex; }
    .nav-links li { width: 100%; padding: 0.75rem 0; border-bottom: 1px solid var(--border); }
    .nav-links li:last-child { border: none; }
    .menu-toggle { display: block; }
    .hero-grid,
    .about-grid,
    .join-grid,
    .contact-grid,
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .evanspex { grid-template-columns: 1fr; padding: 2rem; }
    .evanspex-meta { grid-template-columns: 1fr; gap: 0.75rem; }
    .cards { grid-template-columns: 1fr; }
    .event { grid-template-columns: 70px 1fr; }
    .event-time { grid-column: 2; text-align: left; }
    section { padding: 3.5rem 0; }
    .stats { grid-template-columns: 1fr 1fr; }
  }