@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;1,400&family=IBM+Plex+Sans:wght@300;400;500&display=swap');

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

:root {
  --green:        #3B6D11;
  --green-dark:   #27500A;
  --green-deeper: #173404;
  --green-light:  #EAF3DE;
  --green-mid:    #97C459;
  --gray-bg:      #F1EFE8;
  --gray-text:    #5F5E5A;
  --gray-muted:   #888780;
  --gray-border:  #D3D1C7;
  --text:         #2C2C2A;
  --serif:        'Playfair Display', Georgia, serif;
  --sans:         'IBM Plex Sans', sans-serif;
}

html { font-size: 16px; }

body {
  font-family: var(--sans);
  color: var(--text);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ── NAV ── */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  border-bottom: 0.5px solid var(--gray-border);
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 100;
}

.logo-wrap { display: flex; flex-direction: column; gap: 4px; }
.logo-img {
  height: 36px;
  width: auto;
  display: block;
}
.logo-sub {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 400;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  font-size: 13px;
  color: var(--gray-text);
  letter-spacing: 0.04em;
}
.nav-links a {
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  border-bottom-color: var(--green);
}

/* ── BREADCRUMB ── */
.breadcrumb {
  padding: 0.85rem 2rem;
  border-bottom: 0.5px solid var(--gray-border);
  font-size: 12px;
  color: var(--gray-muted);
  display: flex;
  gap: 8px;
  align-items: center;
}
.breadcrumb a { color: var(--gray-muted); }
.breadcrumb a:hover { color: var(--green); }

/* ── FOOTER ── */
.footer {
  padding: 2rem 2rem 1rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2rem;
  border-top: 0.5px solid var(--gray-border);
}
.f-logo {
  font-family: var(--serif);
  font-size: 16px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.f-sub {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}
.f-desc { font-size: 12px; color: var(--gray-muted); line-height: 1.6; }
.f-col-title {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-muted);
  margin-bottom: 12px;
}
.f-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.f-links a { font-size: 13px; color: var(--gray-text); }
.f-links a:hover { color: var(--text); }
.f-bottom {
  padding: 1rem 2rem;
  border-top: 0.5px solid var(--gray-border);
  font-size: 11px;
  color: var(--gray-muted);
  display: flex;
  justify-content: space-between;
}

/* ── UTILITIES ── */
.btn-primary {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.06em;
  padding: 9px 22px;
  background: var(--green);
  color: var(--green-light);
  border: none;
  border-radius: 1px;
  cursor: pointer;
  font-family: var(--sans);
  transition: background 0.15s;
}
.btn-primary:hover { background: var(--green-dark); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  padding: 8px 18px;
  border: 0.5px solid var(--gray-border);
  border-radius: 1px;
  cursor: pointer;
  color: var(--green);
  background: transparent;
  font-family: var(--sans);
  transition: background 0.15s;
}
.btn-outline:hover { background: var(--green-light); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav { padding: 1rem; }
  .nav-links { gap: 1rem; font-size: 12px; }
  .footer { grid-template-columns: 1fr; gap: 1.5rem; }
  .f-bottom { flex-direction: column; gap: 4px; }
}
