:root {
  --bg: #f5faf4;
  --panel: rgba(255, 255, 255, 0.76);
  --panel-border: rgba(37, 99, 51, 0.14);
  --text: #14301c;
  --muted: #486053;
  --green: #2f8f46;
  --green-deep: #186b34;
  --orange: #f28b24;
  --shadow: 0 28px 70px rgba(17, 44, 24, 0.14);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  width: 100%;
  min-height: 100%;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(47, 143, 70, 0.18), transparent 34%),
    radial-gradient(circle at top right, rgba(242, 139, 36, 0.18), transparent 28%),
    linear-gradient(160deg, #f8fcf7 0%, #eff7ee 48%, #fbf4ea 100%);
  overflow-x: hidden;
  overflow-y: auto;
}

.page-shell {
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto auto auto;
  align-content: start;
  gap: clamp(8px, 1.4vw, 14px);
  padding: clamp(8px, 1.6vw, 14px) clamp(10px, 2.2vw, 22px);
}

.topbar,
.footer {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 5px 8px;
  border-radius: 18px;
  background: linear-gradient(95deg, rgba(47, 143, 70, 0.12), rgba(242, 139, 36, 0.12));
  border: 1px solid rgba(20, 48, 28, 0.1);
  box-shadow: 0 8px 28px rgba(18, 54, 29, 0.08);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 6px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 6px 18px rgba(26, 61, 33, 0.08);
  backdrop-filter: blur(14px);
}

.logo {
  display: block;
  width: auto;
  max-width: 220px;
  max-height: 52px;
  object-fit: contain;
}

.hero {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  min-width: 0;
}

.hero-card,
.footer-card {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: clamp(16px, 2.4vw, 28px);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-card {
  width: 100%;
  min-width: 0;
  padding: clamp(12px, 1.9vw, 20px) clamp(12px, 2.2vw, 24px);
  position: relative;
  overflow: hidden;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: auto -60px -60px auto;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 139, 36, 0.24), transparent 68%);
}

.eyebrow {
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.68rem;
  color: var(--green-deep);
  font-weight: 700;
}

h1 {
  margin: 0;
  font-size: clamp(1.7rem, 4.6vw, 3.2rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
  font-weight: 700;
  max-width: 13ch;
}

.lead {
  margin: 10px 0 0;
  max-width: 60ch;
  font-size: clamp(0.86rem, 1.6vw, 0.96rem);
  line-height: 1.45;
  color: var(--muted);
}

.status-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
  position: relative;
  z-index: 1;
}

.status-pill,
.status-note {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 600;
}

.status-pill {
  background: linear-gradient(135deg, var(--green), var(--green-deep));
  color: white;
}

a.status-pill,
a.status-pill:visited,
a.status-pill:hover,
a.status-pill:active,
a.status-pill:focus {
  text-decoration: none;
}

.status-note {
  background: rgba(242, 139, 36, 0.14);
  color: #8a4b0f;
  border: 1px solid rgba(242, 139, 36, 0.2);
}

.footer-card h2 {
  margin: 0 0 10px;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.footer {
  padding-top: 0;
}

.footer-card {
  padding: clamp(12px, 2vw, 18px) clamp(12px, 2.2vw, 20px);
  border-top: 4px solid var(--green);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(8px, 1.2vw, 12px);
}

.contact-grid > div {
  min-width: 0;
  padding: clamp(10px, 1.4vw, 14px) clamp(11px, 1.5vw, 16px);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(24, 107, 52, 0.08);
}

.contact-label {
  display: block;
  margin-bottom: 4px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--green-deep);
  font-weight: 700;
}

.contact-grid a,
.contact-grid p {
  margin: 0;
  color: var(--text);
  line-height: 1.45;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.contact-grid a {
  text-decoration: none;
  font-weight: 600;
}

.contact-grid a:hover {
  color: var(--orange);
}

@media (max-width: 1024px) {
  .topbar {
    padding: 7px 10px;
  }

  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    padding: 16px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(1.55rem, 7vw, 2.25rem);
  }
}

@media (max-width: 640px) {
  .page-shell {
    min-height: 100dvh;
    grid-template-rows: auto minmax(0, 1fr) minmax(0, 1fr);
    align-content: stretch;
    padding: 8px;
    gap: 8px;
  }

  .hero,
  .footer {
    height: 100%;
  }

  .hero-card,
  .footer-card {
    height: 100%;
  }

  .hero-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .footer-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .topbar {
    padding: 7px 8px;
    border-radius: 14px;
  }

  .brand-mark {
    width: 100%;
    justify-content: center;
    padding: 5px 10px;
    border-radius: 10px;
  }

  .logo {
    width: clamp(150px, 52vw, 210px);
    max-height: 46px;
  }

  h1 {
    font-size: clamp(1.35rem, 7.6vw, 1.9rem);
  }

  .lead {
    margin-top: 8px;
    font-size: 0.82rem;
  }

  .footer-card {
    padding: 10px;
  }
}

@media (max-width: 430px) {
  .topbar {
    padding: 15px 7px;
  }

  .brand-mark {
    padding: 4px 8px;
  }

  .logo {
    width: clamp(145px, 56vw, 190px);
    max-height: 642px;
  }

}
