:root {
  --green: #05a552;
  --green-deep: #041a0f;
  --green-mid: #0a3d24;
  --ink: #f4faf6;
  --muted: rgba(244, 250, 246, 0.72);
  --line: rgba(244, 250, 246, 0.16);
  --display: "Bebas Neue", Impact, sans-serif;
  --body: "Outfit", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--green-deep);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.35rem;
  font-family: var(--body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.35s var(--ease), background 0.3s, border-color 0.3s, color 0.3s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--solid {
  background: var(--green);
  color: #fff;
}

.btn--solid:hover {
  background: #12c466;
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.btn--ghost:hover {
  border-color: rgba(244, 250, 246, 0.45);
  background: rgba(255, 255, 255, 0.06);
}

.btn--lg {
  padding: 1rem 1.75rem;
  font-size: 1.02rem;
}

/* Nav */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1.25rem, 4vw, 3rem);
  transition: background 0.4s var(--ease), backdrop-filter 0.4s, padding 0.4s;
}

.nav.is-scrolled {
  background: rgba(4, 26, 15, 0.82);
  backdrop-filter: blur(14px);
  padding-block: 0.7rem;
}

.nav__brand img {
  width: 44px;
  height: auto;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.35));
}

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2rem);
}

.nav__links a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.25s;
}

.nav__links a:hover {
  color: var(--ink);
}

@media (max-width: 720px) {
  .nav__links {
    display: none;
  }
}

/* Hero — one composition, full-bleed */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: end start;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  transform: scale(1.08);
  animation: heroDrift 18s var(--ease) forwards;
}

.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 26, 15, 0.35) 0%, rgba(4, 26, 15, 0.15) 35%, rgba(4, 26, 15, 0.88) 78%, var(--green-deep) 100%),
    linear-gradient(90deg, rgba(4, 26, 15, 0.55) 0%, transparent 55%);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(720px, 92%);
  padding: 0 clamp(1.25rem, 4vw, 3rem) clamp(3.5rem, 8vh, 5.5rem);
}

.hero__crest {
  width: 72px;
  height: auto;
  margin-bottom: 1.1rem;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.45));
}

.hero__brand {
  font-family: var(--display);
  font-size: clamp(4.2rem, 14vw, 8.5rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  margin-bottom: 1rem;
}

.hero__lead {
  max-width: 28rem;
  font-size: clamp(1.02rem, 2.2vw, 1.2rem);
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 1.75rem;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Reveal motion */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  animation: rise 0.9s var(--ease) forwards;
}

.hero__crest.reveal { animation-delay: 0.15s; }
.hero__brand.reveal { animation-delay: 0.28s; }
.hero__lead.reveal { animation-delay: 0.42s; }
.hero__cta.reveal { animation-delay: 0.56s; }

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroDrift {
  to {
    transform: scale(1);
  }
}

/* Short strip */
.strip {
  position: relative;
  padding: clamp(4rem, 10vh, 6.5rem) clamp(1.25rem, 4vw, 3rem);
  background:
    radial-gradient(ellipse 80% 70% at 20% 0%, rgba(5, 165, 82, 0.22), transparent 55%),
    linear-gradient(180deg, var(--green-deep), var(--green-mid));
}

.strip__inner {
  width: min(640px, 100%);
}

.strip__title {
  font-family: var(--display);
  font-size: clamp(2.6rem, 7vw, 4rem);
  letter-spacing: 0.03em;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.strip__text {
  color: var(--muted);
  font-size: 1.08rem;
  margin-bottom: 1.75rem;
}

.strip__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.strip__phone a {
  font-weight: 600;
  color: var(--green);
  transition: color 0.25s;
}

.strip__phone a:hover {
  color: #7dffb0;
}

/* Footer */
.footer {
  border-top: 1px solid var(--line);
  padding: 1.5rem clamp(1.25rem, 4vw, 3rem) 2rem;
  background: var(--green-deep);
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer__inner img {
  width: 36px;
  height: auto;
}

.footer__inner p {
  font-size: 0.88rem;
  color: var(--muted);
}

.footer__social {
  display: flex;
  gap: 1.25rem;
}

.footer__social a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.25s;
}

.footer__social a:hover {
  color: var(--green);
}

@media (prefers-reduced-motion: reduce) {
  .hero__img,
  .reveal {
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero__img {
    transform: none;
  }

  .btn:hover {
    transform: none;
  }
}
