:root {
  --forest: #0b3b2c;
  --green: #1f6e4a;
  --cream: #f8f5ed;
  --white: #ffffff;
  --gold: #c99a4b;
  --terracotta: #dd6b36;
  --text: #24352d;
  --border: rgba(11, 59, 44, 0.12);
  --shadow: 0 8px 30px rgba(11, 59, 44, 0.08);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--text);
  background: var(--cream);
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

/* ================= HEADER ================= */

.site-header {
  position: relative;
  z-index: 100;
  width: 100%;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--forest);
  font-size: 24px;
  font-weight: 700;
  white-space: nowrap;
}

.brand > span:last-child {
  color: var(--terracotta);
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--forest);
  font-size: 17px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  list-style: none;
  margin-left: auto;
}

.nav-links a {
  position: relative;
  color: #53645c;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.25s ease;
}

/* .nav-links a:hover,
.nav-links a.active {
  color: var(--forest);
} */

/* .nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  width: 5px;
  height: 5px;
  margin: auto;
  border-radius: 50%;
  background: var(--terracotta);
} */

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: 999px;
  color: var(--white);
  background: var(--forest);
  font-size: 14px;
  font-weight: 600;
  transition:
    transform 0.25s ease,
    background 0.25s ease;
}

.nav-cta:hover {
  color: var(--white);
  background: var(--green);
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--white);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 5px;
  background: var(--forest);
}

/* ================= BANNER / HERO ================= */

.hero {
  min-height: calc(100vh - 78px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 12% 20%,
      rgba(201, 154, 75, 0.12),
      transparent 30%
    ),
    radial-gradient(circle at 88% 75%, rgba(31, 110, 74, 0.1), transparent 32%),
    var(--cream);
}

.hero::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  top: -180px;
  right: -120px;
  border-radius: 50%;
  background: rgba(221, 107, 54, 0.08);
}

.hero::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  bottom: -150px;
  left: -100px;
  border-radius: 50%;
  background: rgba(31, 110, 74, 0.07);
}

.hero-grid {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-copy-col {
  max-width: 900px;
  margin: 0 auto;
}

.hero h1 {
  margin: 0;
  color: var(--forest);
  font-size: clamp(44px, 6vw, 88px);
  line-height: 1.08;
  letter-spacing: -2.5px;
  font-weight: 700;
}

.hero h1 span {
  color: var(--terracotta);
  /* font-style: italic; */
}

.eyebrow-badge {
  width: fit-content;
  margin: 28px auto 0;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 16px;
  border: 1px solid rgba(31, 110, 74, 0.16);
  border-radius: 999px;
  color: var(--green);
  background: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
}

.pulse-dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--terracotta);
}

.pulse-dot::after {
  content: "";
  position: absolute;
  inset: -4px;
  border: 1px solid rgba(221, 107, 54, 0.35);
  border-radius: 50%;
  animation: pulse 1.8s infinite;
}
.eyebrow-badge {
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 0 rgba(221, 107, 54, 0);
  }

  50% {
    opacity: 0.35;
    transform: scale(1.06);
    box-shadow: 0 0 18px rgba(221, 107, 54, 0.45);
  }
}
@keyframes pulse {
  0% {
    transform: scale(0.7);
    opacity: 0.9;
  }

  70% {
    transform: scale(1.4);
    opacity: 0;
  }

  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
  .nav-links {
    gap: 18px;
  }

  .nav-links a {
    font-size: 13px;
  }

  .hero h1 {
    font-size: clamp(42px, 8vw, 64px);
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 30px, 1180px);
  }

  .nav {
    min-height: 70px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 15px;
    right: 15px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    margin: 0;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 12px 14px;
  }

  .nav-links a.active::after {
    display: none;
  }

  .nav-cta {
    padding: 9px 14px;
    font-size: 13px;
  }

  .nav-toggle {
    display: block;
  }

  .hero {
    min-height: calc(100vh - 70px);
  }

  .hero h1 {
    font-size: clamp(38px, 10vw, 56px);
    line-height: 1.12;
    letter-spacing: -1.5px;
  }

  .eyebrow-badge {
    margin-top: 22px;
  }
}

@media (max-width: 480px) {
  .brand {
    font-size: 21px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    font-size: 15px;
  }

  .nav-actions {
    gap: 7px;
  }

  .nav-cta {
    padding: 8px 11px;
  }

  .hero h1 {
    font-size: 39px;
  }
}
