/* System fonts — works fully offline */

:root {
  --forest: #2d5016;
  --forest-mid: #3d6b1f;
  --forest-light: #f0f5eb;
  --slate: #3a5068;
  --slate-light: #eef2f6;
  --stone: #f4f1ec;
  --white: #ffffff;
  --text: #1e2a1e;
  --text-muted: #5a6b5a;
  --border: #dde5d8;
  --card-bg: #ffffff;
  --shadow: 0 2px 12px rgba(45,80,22,0.08);
  --shadow-hover: 0 6px 24px rgba(45,80,22,0.15);
  --accent: #7a9e4e;
}

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

body {
  font-family: -apple-system, 'Helvetica Neue', Arial, sans-serif;
  background: var(--stone);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* NAV */
nav {
  background: var(--forest);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 62px;
}

.nav-brand {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.05rem;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: 0.15rem;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 400;
  padding: 0.5rem 0.9rem;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #ffffff;
  background: rgba(255,255,255,0.15);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
}

/* HERO */
.hero {
  background: var(--forest);
  position: relative;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center center;
  display: block;
  opacity: 0.75;
}

.hero-img-placeholder {
  width: 100%;
  height: 300px;
  background: linear-gradient(160deg, #2d5016 0%, #3d6b1f 40%, #5a8a30 70%, #7aaa48 100%);
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(20,40,10,0.25) 0%, rgba(20,40,10,0.65) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.9);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.hero h1 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.9rem, 5vw, 3rem);
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.hero-sub {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  max-width: 460px;
  line-height: 1.6;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

/* INFO STRIP */
.info-strip {
  background: var(--white);
  border-bottom: 2px solid var(--border);
  padding: 0.85rem 2rem;
}

.info-strip-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--forest);
  font-size: 0.85rem;
  font-weight: 500;
}

.info-item svg { flex-shrink: 0; color: var(--accent); }

/* PAGE HEADER */
main { flex: 1; }

.page-header {
  background: var(--forest);
  padding: 2.75rem 2rem 2.25rem;
  text-align: center;
}

.page-header h1 {
  font-family: Georgia, 'Times New Roman', serif;
  color: #ffffff;
  font-size: clamp(1.6rem, 4vw, 2.25rem);
  margin-bottom: 0.4rem;
}

.page-header p {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.5rem 2rem;
}

/* QUICK LINKS */
.quick-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.quick-link {
  background: var(--card-bg);
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 1.6rem 1.4rem;
  text-decoration: none;
  color: var(--text);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  border-top: 3px solid var(--forest);
  transition: box-shadow 0.2s, transform 0.2s;
}

.quick-link:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.quick-link-icon {
  width: 38px;
  height: 38px;
  background: var(--forest-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--forest);
}

.quick-link h3 {
  font-size: 0.975rem;
  font-weight: 600;
  color: var(--forest);
}

.quick-link p {
  font-size: 0.825rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* DOCUMENT SECTIONS */
.doc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.4rem;
}

.doc-section {
  background: var(--card-bg);
  border-radius: 10px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.doc-section-header {
  background: var(--forest);
  padding: 0.9rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.doc-section-header h2 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 0.975rem;
  color: #ffffff;
  font-weight: 600;
}

.doc-section-header svg { color: rgba(255,255,255,0.7); flex-shrink: 0; }

.doc-list { padding: 0.5rem 0; }

.doc-link {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.55rem 1.4rem;
  text-decoration: none;
  color: var(--text);
  font-size: 0.855rem;
  transition: background 0.15s, color 0.15s;
  border-bottom: 1px solid var(--border);
}

.doc-link:last-child { border-bottom: none; }

.doc-link:hover {
  background: var(--forest-light);
  color: var(--forest);
}

.doc-link svg { color: var(--accent); flex-shrink: 0; }

/* VENDOR CARDS */
.vendor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.2rem;
}

.vendor-card {
  background: var(--card-bg);
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 1.4rem;
  border-left: 4px solid var(--forest);
}

.vendor-name {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1rem;
  color: var(--forest);
  margin-bottom: 0.2rem;
  font-weight: 600;
}

.vendor-location {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0.7rem;
}

.vendor-contacts { display: flex; flex-direction: column; gap: 0.3rem; }

.vendor-contact {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.845rem;
  color: var(--text);
  text-decoration: none;
}

.vendor-contact:hover { color: var(--forest); }
.vendor-contact svg { color: var(--accent); flex-shrink: 0; }

/* INFO BLOCKS */
.info-block {
  background: var(--card-bg);
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 1.75rem;
  margin-bottom: 1.4rem;
}

.info-block h2 {
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--forest);
  font-size: 1.15rem;
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--border);
}

.info-block p, .info-block li {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.info-block ul { padding-left: 1.25rem; }
.info-block a { color: var(--slate); }

.highlight-box {
  background: var(--forest-light);
  border-left: 3px solid var(--forest);
  border-radius: 0 6px 6px 0;
  padding: 0.9rem 1.1rem;
  margin: 1rem 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text);
}

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.4rem;
}

.contact-card {
  background: var(--card-bg);
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 1.75rem;
  text-align: center;
  border-top: 3px solid var(--forest);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  background: var(--forest-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--forest);
}

.contact-card h3 {
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--forest);
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}

.contact-card p, .contact-card a {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-decoration: none;
  line-height: 1.6;
}

.contact-card a:hover { color: var(--forest); }

/* NOTICE */
.notice {
  background: var(--forest-light);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.9rem 1.1rem;
  font-size: 0.865rem;
  color: var(--text);
  margin-bottom: 1.75rem;
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  line-height: 1.5;
}

.notice svg { color: var(--forest); flex-shrink: 0; margin-top: 1px; }

/* FOOTER */
footer {
  background: var(--forest);
  color: rgba(255,255,255,0.55);
  text-align: center;
  padding: 1.75rem 2rem;
  font-size: 0.8rem;
  margin-top: auto;
}

footer strong { color: rgba(255,255,255,0.9); font-weight: 500; }

/* MOBILE */
@media (max-width: 768px) {
  .hamburger { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 62px;
    left: 0;
    right: 0;
    background: var(--forest);
    flex-direction: column;
    padding: 0.75rem;
    gap: 0.15rem;
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  .nav-links.open { display: flex; }
  .nav-links a { padding:0.1rem 1rem; }
  .hero-img-placeholder { height: 220px; }
  .info-strip-inner { gap: 1.25rem; }
  .container { padding: 1.75rem 1.25rem; }
}
