:root {
  --cream: #f8f4e8;
  --cream-dark: #f0ead4;

  --green-deep: #2d4a2d;
  --green-mid: #3d6b3d;
  --green-light: #5a8a3a;
  --green-muted: #7a9e6a;

  --gold: #c8893a;
  --gold-light: #d9a055;

  --text-dark: #1a2e1a;
  --text-body: #3a4a3a;
  --text-muted: #6b7c6b;

  --white: #ffffff;

}

/* Header */
#active-nav {
  color: rgb(190, 141, 35);
}


.aswa-nav {
  background: var(--cream);
  padding: 0 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(45, 74, 45, 0.1);
}

.aswa-nav .navbar-brand .logo-mark {
  font-size: 1.6rem;
  color: var(--green-deep);
}

.aswa-nav .navbar-item {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dark);
  letter-spacing: 0.02em;
  padding: 0.75rem 1rem;
}

.aswa-nav .navbar-item:hover {
  color: var(--green-mid);
  background: transparent;
}

.aswa-nav .aswa-header-img {
  all: unset;
  max-height: 5em;
}

.navbar-burger {
  height: auto;
}


.aswa-footer {
  font-family: 'Inter', sans-serif;
}

/* ── Top band ── */
.aswa-footer-top {
  background: var(--green-deep);
  padding: 4rem 0 3rem;
}

/* Brand */
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.footer-logo-mark {
  font-size: 1.4rem;
  color: var(--gold-light);
}

.footer-brand-name {
  font-family: 'Lora', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
}

.footer-tagline {
  font-size: 0.78rem;
  color: var(--gold-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-about-blurb {
  font-size: 0.84rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 1.5rem;
  max-width: 280px;
}

/* Social icons */
.footer-socials {
  display: flex;
  gap: 0.6rem;
}

.footer-social-link {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  text-decoration: none;
}

.footer-social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

/* Column headings */
.footer-col-heading {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.1rem;
}

/* Nav links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-links a {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.15s, padding-left 0.15s;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 4px;
}

/* Contact list */
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.footer-contact-list li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

.footer-contact-list .fci {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--gold-light);
  opacity: 0.8;
}

.footer-contact-list a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-contact-list a:hover {
  color: var(--white);
}

/* ── Bottom bar ── */
.aswa-footer-bottom {
  background: #1e341e;
  padding: 1rem 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-bottom-links a:hover {
  color: rgba(255, 255, 255, 0.7);
}

.footer-sep {
  color: rgba(255, 255, 255, 0.2);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .aswa-footer-top {
    padding: 3rem 0 2rem;
  }

  .footer-about-blurb {
    max-width: 100%;
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

.container .columns.is-variable.is-8 {
  --columnGap: unset;
}