:root {
  --green: #0A983B;
  --green-dark: #077A2F;
  --yellow: #FFC20E;
  --ink: #1c2420;
  --paper: #fbfaf6;
  --muted: #5c6862;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: "Source Sans 3", system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
}
h1, h2, h3 {
  font-family: "Oswald", system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
a { color: var(--green-dark); }

/* Nav */
nav.top {
  background: var(--green);
  padding: 0.8rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.2rem 1.6rem;
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
nav.top .brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  margin-right: auto;
}
nav.top .brand img { width: 34px; height: 34px; border-radius: 50%; border: 2px solid #fff; }
nav.top a.item {
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  padding: 0.2rem 0;
  border-bottom: 2px solid transparent;
}
nav.top a.item:hover, nav.top a.item[aria-current="page"] { border-bottom-color: var(--yellow); }

/* Hero (home) */
header.hero {
  background-color: var(--green);
  background-image:
    repeating-linear-gradient(-45deg, rgba(255,255,255,0.045) 0 18px, transparent 18px 36px),
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(0,0,0,0.08));
  color: #fff;
  padding: 4rem 1.5rem 4rem;
  text-align: center;
}
header.hero img.mascot {
  width: 130px; height: 130px;
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: 0 4px 18px rgba(0,0,0,0.25);
}
header.hero h1 {
  font-size: clamp(2.2rem, 6vw, 3.4rem);
  font-weight: 600;
  margin-top: 1.2rem;
}
header.hero .tagline { font-size: 1.15rem; opacity: 0.92; margin-top: 0.6rem; }
/* Hero clocks */
.clocks {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.6rem;
  flex-wrap: wrap;
}
.clock {
  background: rgba(0,0,0,0.22);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 10px;
  padding: 0.7rem 1.6rem 0.65rem;
  min-width: 172px;
}
.clock .clk-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.85;
}
.clock .clk-time {
  display: block;
  font-family: "Oswald", sans-serif;
  font-size: 1.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  font-variant-numeric: tabular-nums;
  line-height: 1.2;
}
.clock .clk-tz {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.7;
}

/* Hazard-stripe divider */
.stripe {
  height: 10px;
  background: repeating-linear-gradient(-45deg, var(--yellow) 0 14px, var(--ink) 14px 28px);
}

/* Handling profile tiles */
.tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1.4rem;
}
.tile {
  background: #fff;
  border: 1px solid #e4e6e0;
  border-radius: 10px;
  padding: 1.15rem 1.15rem 1rem;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}
.tile:hover { box-shadow: 0 6px 18px rgba(0,0,0,0.1); transform: translateY(-2px); }
.tile .icon {
  width: 46px; height: 46px;
  border-radius: 10px;
  background: #e8f4ec;
  color: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.7rem;
}
.tile .icon svg { width: 27px; height: 27px; }
.tile h3 { margin: 0 0 0.25rem; font-size: 0.98rem; }
.tile p { font-size: 0.88rem; color: var(--muted); }
.tiles + .quiet { margin-top: 1.2rem; }

/* Page header (inner pages) */
header.page {
  background: var(--green);
  color: #fff;
  padding: 2.6rem 1.5rem;
  text-align: center;
}
header.page h1 { font-size: clamp(1.7rem, 4.5vw, 2.4rem); font-weight: 600; }
header.page p.sub { opacity: 0.92; margin-top: 0.4rem; }

main { max-width: 720px; margin: 0 auto; padding: 2.8rem 1.5rem 2rem; }
section { margin-bottom: 2.8rem; }
section h2 {
  font-size: 1.3rem;
  color: var(--green-dark);
  margin-bottom: 0.9rem;
}
section h2::after {
  content: "";
  display: block;
  width: 44px; height: 4px;
  background: var(--yellow);
  margin-top: 0.4rem;
  border-radius: 2px;
}
section h3 { font-size: 1.05rem; color: var(--ink); margin: 1.3rem 0 0.4rem; }
p + p { margin-top: 0.9rem; }
ul, ol { margin: 0.6rem 0 0.6rem 1.4rem; }
li + li { margin-top: 0.35rem; }
.quiet { color: var(--muted); font-size: 0.95rem; font-style: italic; }

/* Cards (home) */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1rem;
  margin-top: 1.2rem;
}
.card {
  background: #fff;
  border: 1px solid #e4e6e0;
  border-top: 4px solid var(--green);
  border-radius: 10px;
  padding: 1.2rem 1.2rem 1.1rem;
  text-decoration: none;
  color: var(--ink);
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}
.card:hover { box-shadow: 0 6px 18px rgba(0,0,0,0.1); transform: translateY(-2px); }
.card h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
  color: var(--green-dark);
}
.card p { font-size: 0.92rem; color: var(--muted); }

/* Partners */
.partners { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.2rem; }
.partner-chip {
  background: #2b3153;
  border-radius: 10px;
  padding: 1rem 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.partner-chip img { max-height: 84px; display: block; }

/* Footprint map */
figure.map { margin: 1.4rem 0 0; }
figure.map img { width: 100%; display: block; }
figure.map figcaption {
  margin-top: 0.7rem;
  text-align: center;
  font-size: 0.82rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Sign figure */
figure.sign { margin: 1.4rem 0 0; text-align: center; }
figure.sign img { max-width: 100%; border-radius: 10px; box-shadow: 0 6px 24px rgba(0,0,0,0.18); }
figure.sign figcaption { margin-top: 0.6rem; font-size: 0.88rem; color: var(--muted); }

/* Contact blocks */
.contact-block {
  background: #fff;
  border: 1px solid #e4e6e0;
  border-left: 4px solid var(--yellow);
  border-radius: 8px;
  padding: 1.1rem 1.3rem;
  margin-top: 1rem;
}
.contact-block h3 { margin: 0 0 0.3rem; }
.contact-block a { font-weight: 600; }

/* Footer */
footer {
  background: var(--ink);
  color: #b9c2bd;
  text-align: center;
  padding: 2.2rem 1.5rem;
  font-size: 0.85rem;
  line-height: 1.7;
}
footer .locations {
  color: #fff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 0.8rem;
}
footer .fnav { margin-bottom: 0.8rem; }
footer .fnav a { color: #d7ddd9; text-decoration: none; margin: 0 0.6rem; }
footer .fnav a:hover { text-decoration: underline; }
footer .disclaimer { max-width: 580px; margin: 0 auto; }
