:root {
    --black: #1c1b18;
    --red: #cf141b;
    --gold: #c79321;
    --paper: #fdfcf8;
    --paper2: #f6f2e8;
    --card: #ffffff;
    --ink: #2c2a25;
    --muted: #6c6657;
    --line: #e3ddce;
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; scroll-padding-top: 84px; }
  body {
    font-family: 'EB Garamond', Georgia, serif;
    color: var(--ink); background: var(--paper);
    line-height: 1.7; font-size: 20px;
    -webkit-font-smoothing: antialiased;
  }
  img { max-width: 100%; display: block; }
  a { color: var(--red); }
  em, i, cite, address { font-style: normal; }
  h1, h2, h3 {
    font-family: 'Cormorant Garamond', 'EB Garamond', serif;
    font-weight: 700; line-height: 1.2; color: var(--black);
  }
  section { padding: 94px 32px; position: relative; }
  .wrap { max-width: 1080px; margin: 0 auto; }

  /* ---- Nav ---- */
  header {
    position: sticky; top: 0; z-index: 50;
    background: rgba(253,252,248,0.98);
    border-bottom: 1px solid var(--line);
  }
  .nav {
    max-width: 1140px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 32px;
  }
  .brand { display: flex; align-items: center; gap: 14px; text-decoration: none; color: var(--black); }
  .brand-logo { height: 50px; width: auto; }
  .brand b { font-family: 'Cormorant Garamond', serif; font-weight: 700; font-size: 1.5rem; }
  .nav-links { display: flex; gap: 30px; flex-wrap: wrap; }
  .nav-links a {
    text-decoration: none; color: var(--ink);
    font-size: 1.05rem; letter-spacing: 0.02em;
    padding-bottom: 2px; border-bottom: 1.5px solid transparent;
    transition: color 0.15s, border-color 0.15s;
  }
  .nav-links a:hover { color: var(--red); border-color: var(--red); }

  /* ---- Mobile nav: hamburger + slide-in sidebar ---- */
  .nav-toggle {
    display: none;
    position: relative; z-index: 3;
    flex-direction: column; justify-content: center; gap: 5px;
    width: 44px; height: 44px; padding: 0;
    background: none; border: none; cursor: pointer;
  }
  .nav-toggle span {
    display: block; width: 26px; height: 2.5px;
    background: var(--black); border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.2s ease;
  }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
  .nav-overlay {
    display: none;
    position: fixed; inset: 0; z-index: 1;
    background: rgba(28,27,24,0.45);
    opacity: 0; visibility: hidden;
    transition: opacity 0.28s ease, visibility 0.28s ease;
  }
  .nav-overlay.open { opacity: 1; visibility: visible; }

  /* ---- Hero ---- */
  .hero { padding: 0; text-align: center; }
  .hero-inner { padding: 72px 32px 24px; }
  .hero-logo { height: 240px; width: auto; margin: 0 auto 22px; }
  .hero h1 { font-size: clamp(2.8rem, 6vw, 4.4rem); font-weight: 700; }
  .hero p.lead {
    max-width: 624px; margin: 16px auto 34px;
    font-size: 1.34rem; color: var(--muted);
  }
  .btn-row { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }

  /* ---- Flag swatches (hand-drawn accent) ---- */
  .flag-bar { display: flex; gap: 14px; justify-content: center; padding: 8px 32px 66px; }
  .flag-bar span { display: block; width: 84px; height: 30px; }

  /* ---- Buttons ---- */
  .btn {
    display: inline-block; text-decoration: none; cursor: pointer;
    -webkit-appearance: none; appearance: none;
    font-family: 'EB Garamond', serif; font-weight: 600; font-size: 1.14rem;
    letter-spacing: 0.03em;
    background: var(--red); color: #fff; border: 1.5px solid var(--red);
    padding: 13px 36px; border-radius: 2px;
    transition: background 0.15s, transform 0.12s, box-shadow 0.15s;
  }
  .btn:hover { background: #b3101a; transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0,0,0,0.13); }
  .btn.ghost { background: transparent; color: var(--black); border-color: var(--black); }
  .btn.ghost:hover { background: var(--black); color: #fff; }

  /* ---- Section headings ---- */
  .eyebrow {
    font-weight: 600; text-transform: uppercase;
    letter-spacing: 0.22em; font-size: 0.82rem;
    color: var(--red); margin-bottom: 12px;
  }
  h2.section-title {
    display: inline-block;
    font-size: clamp(2.2rem, 4.5vw, 3.1rem);
    margin-bottom: 20px; padding-bottom: 18px;
  }
  .section-sub { color: var(--muted); margin-bottom: 48px; max-width: 644px; font-size: 1.22rem; }

  .alt { background: var(--paper2); }

  /* ---- About ---- */
  .about-grid { display: grid; grid-template-columns: 1.25fr 1fr; gap: 60px; align-items: start; }
  .about-grid p { margin-bottom: 16px; }
  .facts { display: grid; gap: 22px; }
  .fact {
    background: var(--card); border: 1px solid var(--line);
    border-top: 3px solid var(--gold);
    border-radius: 3px; padding: 22px 28px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
  }
  .fact:nth-child(2) { border-top-color: var(--red); }
  .fact:nth-child(3) { border-top-color: var(--black); }
  .fact h3 { font-size: 1.42rem; font-weight: 600; margin-bottom: 4px; }
  .fact p { color: var(--muted); font-size: 1.06rem; margin: 0; }

  /* ---- Board ---- */
  .board-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; }
  .card {
    background: var(--card); border: 1px solid var(--line);
    border-radius: 4px; padding: 46px 40px; text-align: center;
    box-shadow: 0 3px 18px rgba(0,0,0,0.04);
  }
  .avatar {
    width: 106px; height: 106px; border-radius: 50%;
    margin: 0 auto 20px;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; font-weight: 700; color: #fff;
    background: var(--black);
  }
  .card:nth-child(2) .avatar { background: var(--red); }
  .card h3 { font-size: 1.62rem; font-weight: 700; }
  .role {
    display: block; margin: 6px 0 15px;
    font-family: 'EB Garamond', serif; font-weight: 600; font-size: 0.82rem;
    text-transform: uppercase; letter-spacing: 0.2em; color: var(--red);
  }
  .card p { color: var(--muted); font-size: 1.07rem; }

  /* ---- Events ---- */
  .events { display: grid; gap: 20px; }
  .event {
    display: grid; grid-template-columns: 90px 1fr; gap: 30px; align-items: center;
    background: var(--card); border: 1px solid var(--line);
    border-radius: 4px; padding: 24px 32px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
  }
  .date-chip { text-align: center; padding: 10px 4px; color: #fff; border-radius: 3px; background: var(--black); }
  .date-chip .mon { font-size: 0.78rem; letter-spacing: 0.15em; text-transform: uppercase; }
  .date-chip .day { font-family: 'Cormorant Garamond', serif; font-size: 2.15rem; font-weight: 700; line-height: 1.05; }
  .date-chip .yr { font-size: 0.78rem; opacity: 0.78; }
  .event:nth-child(odd) .date-chip { background: var(--red); }
  .event:nth-child(3n) .date-chip { background: var(--gold); }
  .event h3 { font-size: 1.44rem; font-weight: 600; margin-bottom: 4px; }
  .event p { color: var(--muted); font-size: 1.06rem; margin: 0; }

  /* ---- Contact ---- */
  .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
  .contact-item { margin-bottom: 24px; }
  .contact-item .label {
    font-weight: 600; font-size: 0.8rem; text-transform: uppercase;
    letter-spacing: 0.2em; color: var(--red); margin-bottom: 1px;
  }
  .contact-item .val { font-size: 1.22rem; }
  form { display: grid; gap: 18px; }
  form input, form textarea {
    font-family: 'EB Garamond', serif; font-size: 1.1rem;
    padding: 13px 17px; border: 1px solid var(--line);
    border-radius: 3px; background: var(--card); color: var(--ink);
  }
  form input:focus, form textarea:focus { outline: none; border-color: var(--red); }
  form textarea { resize: vertical; min-height: 132px; }
  form button.btn { justify-self: start; }
  .note { font-size: 1rem; color: var(--muted); }

  /* ---- Footer ---- */
  footer {
    background: var(--black); color: #d8d3c4;
    text-align: center; padding: 62px 32px 46px;
  }
  footer .flag-bar { padding: 0; margin-bottom: 34px; }
  .footer-logo {
    height: 92px; width: auto; margin: 0 auto 18px;
    background: var(--paper); padding: 14px 26px; border-radius: 3px;
  }
  footer a { color: var(--gold); text-decoration: none; }
  footer p { font-size: 1.05rem; margin-top: 6px; }
  footer p strong { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; color: #fff; }

  /* ---- Sketch accents ---- */
  svg.sk { position: absolute; left: 0; top: 0; overflow: visible; pointer-events: none; }

  @media (max-width: 760px) {
    body { font-size: 18px; }
    section { padding: 64px 22px; }
    .about-grid, .board-grid, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
    .nav { padding: 12px 20px; }
    .brand-logo { height: 42px; }
    .brand b { font-size: 1.3rem; }
    .nav-toggle { display: flex; }
    .nav-overlay { display: block; }
    .nav-links {
      position: fixed; top: 0; right: 0; z-index: 2;
      height: 100vh; height: 100dvh;
      width: min(80vw, 300px);
      flex-direction: column; flex-wrap: nowrap; align-items: stretch; gap: 0;
      padding: 88px 30px 34px;
      background: var(--paper);
      border-left: 1px solid var(--line);
      box-shadow: -10px 0 34px rgba(0,0,0,0.14);
      transform: translateX(100%);
      transition: transform 0.28s ease;
      overflow-y: auto;
    }
    .nav-links.open { transform: translateX(0); }
    .nav-links a {
      font-size: 1.18rem; padding: 15px 2px;
      border-bottom: 1px solid var(--line);
    }
    .nav-links a:hover { color: var(--red); border-color: var(--line); }
    .event { grid-template-columns: 72px 1fr; gap: 18px; padding: 18px 20px; }
    .hero-logo { height: 172px; }
    .contact-grid { gap: 34px; }
  }
