:root {
  --ink: #1c1b15;
  --forest: #24352a;
  --forest-light: #3a4f3e;
  --honey: #d6a227;
  --honey-dark: #9c7010;
  --parchment: #f6efdd;
  --parchment-alt: #eee3c4;
  --white: #fffdf8;
  --line: rgba(28, 27, 21, 0.14);
  --line-strong: rgba(28, 27, 21, 0.28);
  --danger: #a13b2c;

  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Work Sans", "Segoe UI", sans-serif;

  --radius-sm: 6px;
  --radius-md: 14px;
  --container: 1180px;
  --section-pad: clamp(4rem, 8vw, 7rem);
}

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

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  background: var(--parchment);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
svg { width: 100%; height: 100%; fill: currentColor; }

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  background: var(--forest);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  z-index: 999;
}
.skip-link:focus { left: 1rem; top: 1rem; }

:focus-visible {
  outline: 2px solid var(--honey-dark);
  outline-offset: 3px;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.12;
  margin: 0 0 0.6em;
  color: var(--forest);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 5vw, 4.1rem); font-weight: 400; }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.7rem); }
h3 { font-size: 1.25rem; margin-bottom: 0.5em; }
p { margin: 0 0 1.1em; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--honey-dark);
  margin: 0 0 0.9em;
}
em { font-style: italic; color: var(--honey-dark); }

.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.9rem 1.7rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary { background: var(--forest); color: var(--white); }
.btn-primary:hover { background: var(--forest-light); }

.btn-ghost { background: transparent; border-color: var(--line-strong); color: var(--forest); }
.btn-ghost:hover { border-color: var(--forest); background: rgba(36, 53, 42, 0.05); }

.text-link {
  display: inline-block;
  font-weight: 600;
  color: var(--forest);
  text-decoration: none;
  border-bottom: 1.5px solid var(--honey);
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.text-link:hover { color: var(--honey-dark); border-color: var(--honey-dark); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 239, 221, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px rgba(28, 27, 21, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.logo { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; color: var(--forest); }
.logo-mark { width: 34px; height: 34px; color: var(--honey); flex-shrink: 0; }
.logo-mark.small { width: 30px; height: 30px; }
.logo-text { font-family: var(--font-display); font-size: 1.02rem; line-height: 1.2; }
.logo-text em { font-style: italic; }

.main-nav ul { list-style: none; display: flex; align-items: center; gap: 2.1rem; margin: 0; padding: 0; }
.main-nav a { text-decoration: none; font-weight: 500; font-size: 0.95rem; color: inherit; position: relative; padding: 0.3rem 0; }
.main-nav a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -2px; height: 2px; background: var(--honey); transition: right 0.2s ease;
}
.main-nav a:not(.nav-cta):hover::after { right: 0; }

.nav-cta { background: var(--forest); color: var(--white) !important; padding: 0.55rem 1.2rem; border-radius: var(--radius-sm); }
.nav-cta:hover { background: var(--forest-light); }

.menu-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 42px; height: 42px; background: transparent; border: 1px solid var(--line-strong); border-radius: var(--radius-sm); cursor: pointer; }
.menu-toggle span { display: block; height: 2px; margin: 0 8px; background: var(--forest); transition: transform 0.25s ease, opacity 0.25s ease; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero { padding-top: clamp(3rem, 7vw, 5.5rem); overflow: hidden; }
.hero-inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 3rem; align-items: center; }
.hero-lead { max-width: 46ch; font-size: 1.08rem; color: var(--forest-light); }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.6rem; }
.hero-visual { display: flex; justify-content: center; }

.honeycomb-grid {
  --hex: 92px;
  display: grid;
  grid-template-columns: repeat(3, var(--hex));
  gap: 10px;
}
.honeycomb-grid span { width: var(--hex); height: calc(var(--hex) * 1.12); background: var(--white); border: 1.5px solid var(--line-strong); clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%); }
.honeycomb-grid span:nth-child(2n) { margin-top: 1.4rem; }
.honeycomb-grid span.fill { background: var(--honey); border-color: var(--honey-dark); }

.stats-strip { margin-top: clamp(3.5rem, 7vw, 5.5rem); padding: 2.2rem 1.5rem; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; text-align: center; }
.stat-num { display: block; font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.4rem); color: var(--forest); }
.stat-label { display: block; font-size: 0.85rem; color: var(--forest-light); margin-top: 0.2rem; }

.section { padding: var(--section-pad) 0; }
.section-alt { background: var(--parchment-alt); }
.section-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.section-heading.center { text-align: center; max-width: 640px; margin: 0 auto clamp(2.5rem, 5vw, 3.5rem); }
.section-heading.center .eyebrow { display: block; }
.section-lead { color: var(--forest-light); max-width: 44ch; }

.structure-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: center;
}

.main-board-card {
  width: 100%;
  max-width: 600px;
}

.card-featured {
  background: var(--white);
  border: 2px solid var(--honey);
  border-radius: var(--radius-md);
  padding: 2.2rem 2rem;
  text-align: center;
  box-shadow: 0 12px 28px rgba(28, 27, 21, 0.08);
}
.card-featured .card-icon {
  margin: 0 auto 1rem;
  width: 42px;
  height: 42px;
  color: var(--honey-dark);
}
.card-featured h3 {
  font-size: 1.4rem;
  color: var(--forest);
}

.sub-branches-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  width: 100%;
}

.card-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 2rem 1.6rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.card:hover { transform: translateY(-4px); border-color: var(--honey); box-shadow: 0 16px 32px rgba(28, 27, 21, 0.06); }
.card-icon { display: block; width: 34px; height: 34px; color: var(--honey); margin-bottom: 1.1rem; }
.card p { font-size: 0.94rem; color: var(--forest-light); margin-bottom: 0; }

.card-contact {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.card-contact .person {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--forest);
}
.card-contact .phone {
  font-size: 0.9rem;
  color: var(--honey-dark);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}
.card-contact .phone:hover {
  color: var(--forest);
  text-decoration: underline;
}

.event-list { list-style: none; margin: 0 auto; padding: 0; max-width: 760px; border-top: 1px solid var(--line); }
.event { display: flex; gap: 1.6rem; align-items: center; padding: 1.6rem 0; border-bottom: 1px solid var(--line); }
.event-date { flex-shrink: 0; width: 68px; text-align: center; background: var(--forest); color: var(--white); border-radius: var(--radius-sm); padding: 0.6rem 0; }
.event-date .day { display: block; font-family: var(--font-display); font-size: 1.5rem; line-height: 1; }
.event-date .month { display: block; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--honey); margin-top: 0.3rem; }
.event-body h3 { margin-bottom: 0.25em; }
.event-body p { margin: 0; color: var(--forest-light); font-size: 0.94rem; }

.fb-widget-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  overflow: hidden;
}
.fb-widget-wrap .fb-page {
  max-width: 100%;
}

.contact-list { margin: 2rem 0 0; display: grid; gap: 1.3rem; }
.center-list { text-align: center; justify-content: center; margin: 0 auto; }
.contact-list dt { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--honey-dark); font-weight: 600; margin-bottom: 0.2rem; }
.contact-list dd { margin: 0; font-size: 1.02rem; }
.contact-list a { text-decoration: none; border-bottom: 1px solid var(--line-strong); }
.contact-list a:hover { border-color: var(--forest); }

.site-footer { background: var(--forest); color: var(--parchment); padding: 4rem 0 1.5rem; margin-top: 4rem; }
.footer-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 3rem; margin-bottom: 3rem; }
.footer-brand { max-width: 300px; display: flex; gap: 1rem; align-items: flex-start; }
.footer-name { font-family: var(--font-display); font-size: 1.1rem; color: var(--white); margin-bottom: 0.3rem; }
.footer-tagline { font-size: 0.9rem; color: rgba(246, 239, 221, 0.7); margin: 0; }
.footer-nav { list-style: none; display: flex; gap: 1.5rem; flex-wrap: wrap; margin: 0; padding: 0; }
.footer-nav a { text-decoration: none; color: rgba(246, 239, 221, 0.9); font-size: 0.95rem; transition: color 0.2s; }
.footer-nav a:hover { color: var(--honey); }
.footer-bottom { border-top: 1px solid rgba(246, 239, 221, 0.15); padding-top: 1.5rem; font-size: 0.85rem; text-align: center; color: rgba(246, 239, 221, 0.6); }

@media (max-width: 1024px) {
  .hero-inner, .section-grid { grid-template-columns: 1fr; text-align: center; gap: 3rem; }
  .hero-actions { justify-content: center; }
  .section-lead { margin-left: auto; margin-right: auto; }
  .card-grid, .sub-branches-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .stats-strip { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .main-nav { display: none; }
  .main-nav.is-open {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--parchment);
    padding: 1.5rem;
    border-bottom: 1px solid var(--line-strong);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  }
  .main-nav.is-open ul {
    flex-direction: column;
    gap: 1.2rem;
    align-items: flex-start;
  }
  .menu-toggle { display: flex; }
  .card-grid, .sub-branches-grid { grid-template-columns: 1fr; }
  h1 { font-size: 2.4rem; }
  .footer-inner { flex-direction: column; align-items: center; text-align: center; }
  .footer-brand { flex-direction: column; align-items: center; }
  .footer-nav { justify-content: center; }
}